/* <http://www.htmldog.com/articles/suckerfish/dropdowns/> */
/* 11-23-07  */

/************************/
/*	Menu Lists		*/
/************************/
/*	Side Menu		*/

#revdate {
	position: absolute;
	top: 70%;
	width: 12em;
	}

#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	float : left;
	width: 9em;
	}
	
#nav li { /* all list items */
	position: relative;
	float: left;
	line-height: 1.2em;
	margin-bottom: .2em;
	width: 9em;
	}
	
#nav li ul { /* second-level lists */
	position: absolute;
	left: -999em;
	margin-left: 9.1em;
	margin-top: -1.75em;
/*	width: 23em;	*/
	}

#nav li ul li {
	margin-bottom: -.2em;
	border: .1em solid navy;
	}

#nav li ul ul { /* third-and-above-level lists */
	left: -999em;
	}
	
#nav li a {
	width:  10em;
	w\idth : 9em;
	display: block;
	color: black;
	background-color : #87CEFA ;
	font-weight: bold; 	
	font-size: 95%;
	font-family: arial, helvetica, sans-serif;
	letter-spacing: .05em;
	height: auto;
	text-decoration : none;
	text-align: center;
	border: .1em solid navy;
	padding: 0.2em 0.25em;
	}

#nav li a:hover {
	color: white;
	font-weight: bold; 
	background-color: navy;
	background-position: 0 0; /* kicks IE 7 to fix hover bug*/
	}

/* Sub-menu properties */
#nav li ul a {
	color: white;
	background-color: navy;
	line-height : 1em;
/*	border: .01em solid white;	*/
/* #87CEFA; 			*/
/*	font-weight: normal;	*/
	font-size: 85%;	
	width: 10.1em;
	}
#nav li ul a:hover {
	color: navy;
	background-color: #87CEFA;
	font-weight: bold; 
	background-position: 0 0; /* kicks IE 7 to fix hover bug*/
	}

/* Fix for hover problem in IE 6 and below */
a:hover {background-position: 0 0;}
li:hover {background-position: 0 0;}

/* The following are for 3 levels of menus  */
#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li.sfhover ul ul, #nav li.sfhover ul ul ul  {
	left: -999em;
	}
#nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul, #nav li li li.sfhover ul { 
/* lists nested under hovered list items */
	left: auto;
}


