#menu { white-space: nowrap; float: left; position: relative; top: -26px; left: 250px; }

#menu ul {  
	padding: 0;
	margin: 0; 
	list-style: none;
	
}

#menu li { /* all list items */
	float: left;
	position: relative;
	/*width: 10em;*/
	/* height: 24px;  */
}

#menu a {
	display: block;	
	padding: 8px 16px 6px 16px;
	color: white;
	text-decoration: none;
	margin-right: 0px;
	height: 12px; 
	
}

#menu a:hover {
	color: #2A434B;
	background: #EDB53D;
}
#menu a.selected {
	background: #959595;
	padding: 12px 12px 12px 12px;
	background-repeat: repeat-x;
	color: #263A7D;
}

#menu li ul { /* second-level lists */
	display: none;
	position: absolute;
	top: 1em;
	left: 0;
	background-color: #007F92;
	opacity: .9;
	/* filter: alpha(opacity=90); ie setting? */
	text-transform: none;
	
}
#menu li ul li{
	clear: left;
	
}
#menu li ul a{
	width: 7em;
}

#menu li>ul { /* 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 */
	top: auto;
	left: auto;
}

#menu li:hover ul, li.over ul { /* lists nested under hovered list items */
	display: block;
}

#notyetlogged {
	white-space: nowrap;
	float: left;
	position: relative;
	top: -19px;
	left: 312px;
	text-transform: uppercase;
	width: 120px;
	color:  #FFFFFF;	
}
#notyetlogged a {	
	color:  #FFFFFF; 	
}

#notyetlogged a:hover {
	text-decoration: underline;
}

#menu_right {
	/* font-family: sans-serif; */
	white-space: nowrap;
	float: left;
	position: relative;
	top: -26px;
	left: 300px;
	text-transform: uppercase;
	width: 120px;
	/* was 120px border: 1px solid red; */
}

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

#menu_right li { /* all list items */
	float: left;
	position: relative;
	/*width: 10em;*/
	/* height: 24px;  */
}

#menu_right a {
	display: block;	
	padding: 8px 16px 6px 16px;
	color: white;
	text-decoration: none;
	margin-right: 0px;
	height: 12px; 
	
}

#menu_right a:hover {
	color: #2A434B;
	background: #EDB53D;
}

#menu_right a.selected {
	background: #959595;
	padding: 12px 12px 12px 12px;
	background-repeat: repeat-x;
	color: #263A7D;
}

#menu_right li ul { /* second-level lists */
	display: none;
	position: absolute;
	top: 1em;
	left: 0;
	background-color: #007F92;
	opacity: .9;
	/* filter: alpha(opacity=90); moced to ie.css */
	text-transform: none;
	
}
#menu_right li ul li{
	clear: left;
	
}
#menu_right li ul a{
	width: 7em;
}

#menu_right li>ul { /* 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 */
	top: auto;
	left: auto;
}

#menu_right li:hover ul, li.over ul { /* lists nested under hovered list items */
	display: block;
}


