/* ILS Navigation Stylesheet 2008 */ 

/* Notes */

/* In IE, the flyout menu will appear behind any positioned image in the content area even if z-index is applied */

#nav, #nav ul {
	float: left;
	background-color: transparent; /*#fff;*/
	width: 200px;
	padding: 0;
	margin: -16px auto 1em 0;
	list-style: none;
	position: relative;
	z-index: 100;
}

#nav a {
	font-size: 0.75em;
	color: #000;
	display: block;
	background-color: #fff;
	background: url(/images/nav/nav_bullet.gif) 7px 7px no-repeat;
	text-decoration: none;
	padding: 3px 7px 3px 23px;
	line-height: 1.417em;
	margin-left: 0px;
	}

#nav a:hover {
	display: block;
	text-decoration: none;
}

#nav li {
	/* all list items */
	position: relative;
	float: left;
	width: 200px;
	border-bottom: 1px #b2c5dd solid;
	cursor: pointer;
}

#nav li ul { /* submenu add ul to front?*/
	background: #f9f9fd;
	position: absolute;
	left: -999em; /* i.e. offscreen */
	margin-left:200px; /* Required by Opera (with width:auto below) */
	border: 2px #b2c5dd solid;
	}

#nav li ul a { /* submenu decoration */
	background: url(/images/nav/sub_bullet.gif)  7px 7px no-repeat;	
	width: 170px;
	}

#nav li ul a:hover { /* submenu hover decoration */
	background: url(/images/nav/sub_bullet_hover.gif)  7px 7px no-repeat;	
	color: #fff;
}

#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
	left: auto; /* auto ather than 190px required by Opera */
	margin-top: -1.5em; /* compensates for nav a height, padding, line-height */
	padding-left:0px;
}

#nav li:hover, #nav li.sfhover /* latter sticks parent bg colour when child active */ {
	cursor: pointer;
	background: #b2c5dd;
}

ul#nav ul a {
	width:auto; /* IE5.x extra width for flyout menu text */
	}

/* Staff Navigation */

div#staffnav .currentstaff {
	text-decoration: none;
	color: #069;
}

div#staffNav {
	color: #069;
	font-weight: bold;
	font-size: 0.75em;
	line-height: 180%;
	text-align: center;
	margin-bottom: 10px;
	width: 900px;
	clear:both;
}

div#staffNav a {
	color: #069;
	font-weight: normal;
	text-decoration: underline;
	padding:0.2em 4px!important;
}

div#staffNav a:hover {
	color: #222;
	background: yellow;
	font-weight: normal;
	text-decoration: none;
}

div#staffNav strong { 
	font-weight:bold;
	color:#333;
}

