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

#navbar a:link, #navbar a:visited, #navbar a:active  {
	color: #FFFFFF;
	font-family: "Century Gothic", Arial, sans-serif;
	text-transform: uppercase;
	text-decoration: none;
}

#navbar a:hover {
	color: #FFFFFF;
}


#nav, #nav ul { /* all lists */
	margin: 0;
	list-style: none;
	/*padding-bottom: 15px; as far as i can tell, this does nothing...*/
	z-index: 1000;
	/*height: 30px; makes navbar bigger, but not second level lists*/
}

#nav a {
	display: block;
	height: 100%; /*height and width at 100% makes it so the rollover fills the whole box*/
	padding-bottom: 0px;	/*moves the first drop down menu up or down*/
	width: 100%; 
	text-transform: uppercase;
	/*border-top-width: 4px;
	border-bottom-style: solid; moves drop down lower, but adds bad color*/
	/*min-height: 20px; need this height or ie6 freeks out, max 20px or mozilla adds a space*/
}

#nav li { /* all list items */
	float: left;
	width: 130px; /* width needed or else Opera goes nuts */
	position: relative;
	z-index: 1003;
	/*height: 20px; puts space in between, not height of box*/

}

#nav li ul { /* second-level lists*/
	position: absolute;
	width: 138px;
	left: -999em;
	display: block;
	border-top-width: 1px; /*adds border to the top of the list*/
	border-top-style: solid;
	border-top-color: #999999;
	padding: 0px;
	margin-left: -5px;
	z-index: 1004;
}

#nav li ul a {/*puts border/background around each item in 2nd list*/
	background-color: #333333;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-top-style: none;
	border-right-style: solid;
	border-bottom-style: solid;
	border-right-color: #999999;
	border-bottom-color: #999999;
	border-left-color: #999999;
	border-top-color: #999999;
	padding-left: 6px;
	padding-bottom: 0px;
	padding-top: 4px; /*adds padding to move words down, but ie6 can't deal*/
	border-left-width: 1px;
	border-left-style: solid;
	background-image: url(../images/background/navbarbutton.gif);
	min-height:18px; /*sets height of drop down boxes!  ie recognizes*/
}
#nav li ul a:hover{
	/*background-color:#A4C2DB;*/
	color: #330066;
	background-image: url(../images/background/navbarbuttonhover.gif);
}


#nav li ul ul { /* third-and-above-level lists */
	margin-top: -1.5em;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 137px;
	z-index: 1005;
}

#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li.sfhover ul ul, #nav li.sfhover ul ul ul {
	left: -999em;
}

#nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul, #nav li li li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}

* html #nav4 li:hover ul, #nav4 li.sfhover ul {
display:inline-block;
position: static;
}

#nav li:hover, #nav li.hover {
    position: static;
}
