/* CSS Document */

#nav ,#nav ul { /* all lists */
	margin:10px;
	padding:5px;
	list-style:none;
	line-height: 1;
}

#nav ul { /* all lists */
	margin-left:5%;
}

#nav li { /* all list items */
	position: relative;
	float:left;
	width: 10%;
	height:25px;
	border:1px solid #666;
}
#nav a { /* all list items */
	font-size:10px;
    display: block;
	margin:0;
	width:100%;
	height:20px;
	text-decoration: none;
	line-height:20px;
	color: #666;
	/*background-color: #FFF;*/
	text-align:center;
}


#nav li ul li { /* all list items */
	position: relative;
	margin:0;
	padding:0;
	width: 100%; /* width needed or else Opera goes nuts */
	float:left;
	height:20px;
}
#nav li ul { /* second-level lists */
	position: absolute;
	margin:0;
	padding:0;
	width: 100%;
	/*background: #DBF078; /*#fff;*/
	top: 21px;
	height:21px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}


#nav li:hover ul ul, #nav li.sfhover ul ul,#subnav li:hover ul ul, #subnav li.sfhover ul ul {
	/*left: -999em;*/
}

#nav li:hover, #nav li.sfhover,#subnav li:hover, #subnav li.sfhover { /* lists nested under hovered list items */
	left: auto;	
}
#nav a:hover, #nav a.sfhover,#subnav a:hover, #subnav a.sfhover { /* lists nested under hovered list items */
	background: #666;
	color:#DBF078;
}

#nav li:hover ul, #nav li.sfhover ul,#subnav li:hover ul, #subnav li.sfhover ul{ /* lists nested under hovered list items */
	left: auto;
	
}


#subnav ,#subnav ul { /* all lists */
	margin:0;
	padding:0;
	list-style:none;
	
}


#subnav{
	height:3.1em;
	line-height:0.95em;
	font: 0.9em;
	font-weight:bold;
	font-style:italic;
	text-align:center;
	border:1px solid #666;
	border-bottom:0px;
	color:#666;
}



#subnav ul { /* second-level lists */
/*	width: 100%;*/
}
#subnavlast { /* all list items */
	border-bottom:1px solid #666;
}
#subnav li { /* all list items */
	/*position: relative;
	width: 100%; /* width needed or else Opera goes nuts */
	height:2em;
	border:1px solid #666;
	border-bottom:0px;	
}

#subnav a { /* all list items */
	display: block;
/*	width:100%;*/
	height:2em;
	text-decoration: none;
	line-height:0.95em;
	color: #666;
	font-weight:bold;
	background: #fff;
	text-align:center;
}
.breadcrumb {
	height:25px;
	color: red;
	font-style:italic;
	font-weight:semi-bold;
	line-height:1.2em;
	text-align:center;
}
#currpage {
	color: blue;
	font-weight:bold;
}