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

/* Begin Navbar code */

#menu ul {
	color: #585656;	/*Use to be #FFFFFF. Changed so Corporate page can display green letters*/
	list-style: none;
	padding: 0;
	margin: 0;
	text-align:center;
}

#menu #nav a {
	font-weight:bold;
	color: #828282;	/*Medium Grey*/
	text-decoration: none;
	white-space: nowrap;
	height: 29px;
	line-height:29px;
	width:82px;
/*	width: 112px;	/*Tab bg-image width*/
	display: block;
	font-size:10px;	/*Font for tabs*/
	background-image: url(../images/navbar/nav_tab4.jpg);
	background-position:left;
}
#menu #nav a:hover {
	font-weight: bold;
	white-space: nowrap; 
	background-image: url(../images/navbar/nav_tab2.jpg);
	color:#585656;	/*Dark Grey*/
	text-decoration: none;
}
#menu #nav a:focus {
	font-weight: bold;
	white-space: nowrap; 
	background-image: url(../images/navbar/nav_tab3.jpg);
	color:#585656;	/*Dark Grey*/
	text-decoration: none;
}

#menu #nav li li a {
	font-size:12px;
	text-align:left;
	display: block;
	font-weight: normal;
	color:#585656;	/*Dark grey*/
	padding: 2px 4px;
	margin:0;
	line-height:18px;
	background-color:#D9D9D9;	/*Light grey bg-color within the inner drop down menu*/
	background-image: none;
	text-decoration: none;
	height: auto;
	width: auto;
	list-style-image:url(../images/navbar/small_orange_arrow.gif);
	list-style-position:inside;
	vertical-align: middle; 
}

#menu #nav li li a:hover {
	font-weight: normal;
	font-size:12px;
	background-image: none;
	background-color:#585656;	/*Dark grey*/
	color:#FFFFFF;
	list-style-image:url(../images/navbar/small_green_arrow3.gif);
	list-style-position:inside;
}

#menu li {
	float: left;
	position: relative;
	width:84px;
/*	width: 114px;	/*Tab Width, not bg-image width*/
	text-align: center;
	cursor: default;
	background-color: transparent;
	white-space: nowrap;
	padding: 0;
	margin: 0;
}

#menu li ul {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	font-weight: bold;
	background: #D9D9D9;	/*Light-grey - Bg-color within the outer drop down menu*/
	padding: 0.5em 0.1em 1em 0.1em;
	border: solid 1px #C0C0C0;	/*Medium grey - bg-color for outline*/
	vertical-align: middle; 
}

#menu li>ul {
	top: auto;
	left:0;
}

#menu li li {
	text-align: left;
	display: block;
	width: auto;
	float: none;
	background-color: transparent;
	white-space: nowrap;
	cursor:default;
}

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

/* End Navbar code */