@charset "UTF-8";
/* CSS Document */


/* color scheme:
	orange: #f60;
	turquoise: #0072b3;
	gray: #4a4a4a
	red: #e108e1
 */

#nav {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	font: 18px "Trebuchet MS", Arial, Helvetica, sans-serif;
	color: #fff;
}
#nav a {
	display: block;
	padding-bottom: 8px;
}
#nav a:link, #nav a:visited { color: #555; }
#nav a:hover { color: #0072b3; text-decoration: none; }
#nav a:active { color: #900; }

/* PRIMARY NAV ==========================*/
#nav li {
	list-style-type: none;
	float: left;
	margin-right: 27px;
	position: relative;
}

/* SECONDARY NAV ==========================*/
#nav li ul {
	position: absolute; 
	left: 0px;
	top: 29px;
	display: none;
	margin: 0;
	padding: 0;
	z-index: 200;
}
#nav li ul li {
	background-color: #EAF7F7;
	border-top: 1px solid #fff;
	text-align: left;
	margin: 0;
	padding: 0;
	float: none;
}
/* the li.over is for when the javascript changes :hover to .over */
#nav li:hover ul, #nav li.over ul {
	display: block;
}
#nav li li a {
	display: block;
	padding: 7px;
	width: 220px;
	font-weight: normal;
	font-size: 14px;
}
#nav li li a:link, #nav li li a:visited {
	color: #333;
}
#nav li li a:hover {
	background-color: #0072b3;
	color: #fff;
}


/* CURRENT PAGE NAV COLOR ===================*/
#homepage #navHome,
#about #navAbout,
#services #navServices,
#resources #navResources,
#digital #navDigital,
#clients #navClients,
#contact #navContact {
	color: #0072b3;
}
