@charset "UTF-8";
/* navbar.css  */

/* Menu item containers are a fixed width */
ul.hor_menu_bar li {
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	position: relative;
	text-align: center;
	cursor: pointer;
	width: 192px;					/* was 192px */
	float: left;
/*
	border: solid 1px #000;
*/	
	text-transform: uppercase;

}

ul.hor_menu_bar ul {
	border: 1px solid #CCC;		/* original value = CCC */
}

ul.hor_menu_bar a {
	display: block;
	cursor: pointer;
	background-color: #FFE87C;	/* original value = FBEF99  */
	padding: 0.5em 0.75em;
	color: #806517;				/* 000 = black; 806517 = osk brown */
	font-weight: normal;
	text-decoration: none;
}

ul.hor_menu_bar a:hover {
	background-color: #806517;		/* original value = 000; 806517 = osk brown*/
	color: #FFF;
	font-weight: bolder;
}

ul.hor_menu_bar {
	background-color: #000;
	color: #FFF;
}

/* nav submenu style */
#nav li ul {
	position: absolute;
	width: 10em;
	left: -999em;
	
}
#nav li ul li {
	font-size: 12pt;
}
#nav li:hover ul {
	left: auto;
	font-size: 12pt;	
}

/* Fix for IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
/*
ul.hor_menu_bar iframe {
	position: absolute;
	z-index: 1010;
	filter: alpha(opacity:0.1);
}
*/
/* Fix for IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
/*
@media screen, projection
{
	ul.hor_menu_bar	
	{
		display: inline;
		f\loat: left;
		background: #FFF;
	}
}
*/