/* CSS Document */

	#nav, #nav ul { /* all lists */
		padding: 0;
		margin: 0;
		list-style: none;
		float : left;
		width : 11em;
	}
	
	#nav li { /* all list items */
		position : relative;
		float : left;
		line-height : 1.25em;
		margin-bottom : -1px;
		width: auto;
	}
	
	#nav li ul { /* second-level lists */
		position : absolute;
		left: -999em;
		/*margin-left controls the distance the second level is from the left*/
		margin-left : 11.05em;
		margin-top : -1.35em;
		z-index: 15;

	}
	
	#nav li ul ul { /* third-and-above-level lists */
		left: -999em;
		z-index: 20;
	}
	
	#nav li a {
	width: 10em !important;
	/*originally 11em but gap too big*/
	\width : 11.05em;
	display : block;
	color : #000000;
	font-weight: normal;
	text-decoration : none;
	background-color : #CCCCCC;
	border : 1px solid #999999;
	padding : 0 0.5em;
	/*width controls the width of the first-level nav*/

	}
	
	#nav li a:hover {
		color : #990000;
		background-color : #FFFFFF;
	}
	
	#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;
	}
#content {
		margin-left : 12em;
}
