@charset "UTF-8";/* CSS Document */#scifinav {		width:185px; 		float:left; 		margin:0px 0 20px 0;		background:#1e5779; 				}#scifinav ul {	margin: 0;	padding: 0;	list-style: none;	width: 185px; /* Width of Menu Items */	border-bottom: 1px solid #1e5779;	}#scifinav ul li {	position: relative;	}	#scifinav li ul {	position: absolute;	left: 184px; /* Set 1px less than menu width */	top: 0;	width: 200px;	display: none;	/*z-index: 10px;*/	}/* Styles for Menu Items */#scifinav ul li a {	display: block;	text-decoration: none;	color: #ffffff;	background: #1e5779; /* IE6 Bug */	padding: 5px 5px 5px 10px;	border: 1px solid #1e5779;	border-bottom: 0;	font-size: 14px;	font-family: Trebuchet MS, Helvetica, sans-serif; 	font-weight:bold;	}	#scifinav ul li.nolink {	display: block;	text-decoration: none;	color: #55839b;	background: #fff; /* IE6 Bug */	padding: 5px 5px 5px 10px;	border: 1px solid #1e5779;	border-bottom: 0;	font-size: 11px;	font-family: Trebuchet MS, Helvetica, sans-serif; 	font-weight:bold;	text-transform: uppercase;	position: relative;	width:165px;	}	/* Fix IE. Hide from IE Mac */* html #scifinav ul li { float: left; height: 1%; }* html #scifinav ul li a { height: 1%; }/* End *//*main menu:hover pseudo class used for modern browsersJS attaches .over dynamically--must make CSS declerations for both methods*/#scifinav ul li:hover a,#scifinav ul li.over a { color: #ffffff; background: #388bac; } /* Hover Styles *//* Sub menu styles */#scifinav ul li:hover ul li a,#scifinav li.over ul li a { background:#388bac; color:#ffffff; width:200px; font-size: 11px; }#scifinav ul li:hover ul li a:hover,#scifinav li.over ul li a:hover { background:#5098b5; color:#ffffff; width:200px; font-size: 11px; }/* makes submenus appear */#scifinav li:hover ul, #scifinav li.over ul { display: block; } 
