

/*Drop-down Menus*/

#nav, #nav ul { /* all lists */
	padding: 0;     /* top, right, bottom, left */
	margin: 0;
	list-style: none;
	line-height: 1em;
}

#nav a {          
	display: block;
	padding: 0px;    /* padding: 1px; submenus spacing aroud words */
	margin: 0px;
	clear:both;
}

#nav2 a {          
	display: block;
	padding: 1px;    /* padding: 1px; submenus spacing aroud words */
	margin: 0px;
	clear:both;
}

#nav li { /* all list items - top level images*/
	float: left;
	font-size:11px;
}


#nav li ul { /* drop down list from images */
	position: absolute;
	xwidth: 10em;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	margin: 0px 0px 0px 0px;
	padding-bottom: 5px;
}


*html body #nav li ul { /* drop down list from images */
	position: absolute;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	margin: 0px 0px 0px 0px;
}


#nav li ul ul { /* third-and-above-level lists */
	margin: -19px 0 0 114px;
	padding: 5px 0px 3px 0px;
	border-left: none;
}


*html body #nav li ul ul { /* third-and-above-level lists */
	margin: -16px 0 0 104px;
	padding: 5px 0px 5px 0px;
}


#nav li:hover ul ul, #nav li.sfhover ul ul {
	left: -999em;
}

#nav li:hover ul, #nav li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}


#content {
	clear: left;
	color: #cccccc;
}

#content {
	clear: left;
}


/* DROP-DOWN */

ul.navVisitor {
	background-color:#f2f2f2;
	border: 1px solid #dee2e7;
	width: 180px;
} 

ul.navVisitor li {
	padding: 2px 0px 5px 5px;
}

.navVisitor a:link {
	color: #445860;
	text-decoration: none;
	display: block;
	width: 180px;
}

.navVisitor a:hover {
	color: #445860;
	font-weight:none;
	text-decoration:underline;
}

ul li ul#visitorSub {
	margin-left: 125px;
	margin-top: -15px;
	padding: 2px 0px 5px 5px;
	background-position: top right;
	background-repeat: repeat-y;
	background-color:#f2f2f2;
	border: 1px solid #dee2e7;
	border-left: none; 
}

ul li ul#visitorSub a:hover {
	color: #445860;
	font-weight:normal;
	text-decoration:underline; 
}
	

*html body ul li ul#visitorSub {
	margin-left: 180px;
	margin-top: -18px;
	padding: 3px 0px 5px 5px;
}

ul li ul#visitorSub li {
	padding-top: 2px;
}

.visitornolink {
	color: #445860;
	text-decoration: none;
}

.visitornolink a:hover {
	color: #445860;
	text-decoration: none;
	font-weight:bold;
}


.cursorarrow {
	cursor:inherit;
}

.cursorpointer {
	cursor:move; 
} 


