/* CSS Document */

/* use this structure to build the CSS for the *look* of the nav */



#nav {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #000000;
	background-color: #FFFF00;
	border-top: 1px solid #000000;
	border-bottom: 2px solid #000000;
	background-image: url(menubar.jpg);
	background-repeat: repeat-x;
	background-position: center;
	font-weight: normal;
}

#nav ul li a {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #000000;
	font-weight: normal;
	text-decoration:none;

}

#nav ul {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #000000;
	font-weight: normal;
}

#nav li ul {
	background-color: #FFFFFF;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px !important;
	border-right-width: 3px;
	border-bottom-width: 3px;
	border-left-width: 1px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-color: #000000;
	border-bottom-color: #000000;
	border-left-color: #000000;
	padding: 0px 5px 5px;
	background-image: url(dropdown.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	color: #000000;
}

#nav li ul li a {
	font-size: 12px !important;
	text-align: left !important;
	color: #000000;
	text-decoration: none;
	display:block;
	font-weight: normal;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #BF8955;
}

#nav li ul li a:hover {
	color: #000000;
	background-color: #FF6600;
}

#nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
}

#nav li { /* all list items */
	float: left;
	position: relative;
	width: 11em;
}

#nav li ul { /* second-level lists */
	display: none;
	position: absolute;
	top: 1.75em;
	left: 0;
}

/* to override top and left in browsers other than IE, which will position to the top right of the containing li, rather than bottom left */
/*ul > li > ul { 
	top: auto;
	left: auto;
}*/

#nav li:hover ul, #nav li.over ul {
	display: block;
}

#nav br {
	clear:left;
/*This is where a space between the nav bar and the rest of the body is inserted. Fix?*/
}