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

/* "li" tag: list-style-type to none and display to inline; put borders and padding on the "a" tag and float it;
set the ul to catch the overflow */
#nav {
	position: relative;
	width: 805px;
	height: 110px;
}
#nav ul#primaryNav {
	position: absolute;
	left: 0;
	top: 85px;
	width: 100%;
	background-color: #74a0c2;
	overflow: hidden;
}

#nav #primaryNav li {
	list-style-type: none;
	display: inline;
	overflow: hidden;
}

#nav #primaryNav li a {
	padding: 8px 15px 8px 16px;
	float: left;
	background-color: #74a0c2;
	border-left: 2px solid #fff;
	font: bold 12px/1em Arial, Helvetica, sans-serif;
}
#nav #primaryNav li a#aboutNav {
	border-left: none;
}
#nav #primaryNav a:link, #nav #primaryNav a:visited { 
	color: #fff;
}
#nav #primaryNav a:hover {
	color: #68294d;
}
#nav #primaryNav a:active {
	color: #68294d;
}

#nav #auxilliaryNav {
	position: absolute;
	right: 0;
	top: 15px;
}
#nav #auxilliaryNav li {
	list-style-type: none;
}
#nav #auxilliaryNav a {
	font-size: 12px;
	line-height: 1.2em;
	color: #333;
}
#nav #auxilliaryNav a:hover {
	color: #83b0ce;
}
#nav #auxilliaryNav a:active {
	color: #e27917;
}


/* permutations */
#about #primaryNav a#aboutNav,
#why #primaryNav a#whyNav,
#residential #primaryNav a#residentialNav,
#commercial #primaryNav a#commercialNav,
#expectations #primaryNav a#expectationsNav,
#financing #primaryNav a#financingNav {
	background-color: #fbbb18;
	color: #68294d;
}

#resources a#resourcesNav, 
#news a#newsNav, 
#contact a#contactNav {
	color: #68294d;
}

/*financing is slightly shorter than width of ul, so change ul color to match the button color */
#financing #nav ul#primaryNav {
	background-color: #fbbb18;
}

