/* CSS Document */

	#nav, #nav ul { /* all lists */
		padding: 0;
		margin: 0;
		list-style: none;
		float : none;
		width : 12em;
		}
	
	#nav li { /* all list items */
	position : relative;
	float : left;
	line-height : 2em;
	margin-bottom : -1px;
	width: 12em;
	height: 2em;
	background-image: url(../images/button_bg.gif);
	background-repeat: repeat-x;
	border-top: 1px none #990000;
	border-right: 1px solid #990000;
	border-bottom: 1px none #990000;
	border-left: 1px none #990000;
	}
	
	#nav li ul { /* second-level lists */
		position : absolute;
		left: -999em;
		margin-left : 12.05em;
		margin-top : -1.75em;
	}
	
	#nav li ul ul { /* third-and-above-level lists */
		left: -999em;
	}

	#nav li a {
	width: 16em;
	display : block;
	font-size: 0.7em;
	font-weight: bolder;
	color: #000000;
	text-decoration: none;
	letter-spacing: 0.2em;
	white-space: normal;
	vertical-align: middle;
	text-align: left;
	text-indent: 13px;
	padding-right: 0.5em;
	padding-bottom: 0;
	padding-left: 0.5em;
	font-family: Arial, Helvetica, sans-serif;
	}
	
	#nav li a:hover {
		color : white;
		background-color : #990000;
		width: 16.2em;
	}
	
	#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;
	}
	
.nav_lft_button_bg {
	background-image: url(../images/nav_bullet.gif);
	background-position: 3px;
	background-repeat: no-repeat;
}

a.nav_lft_button_bg:hover {
	background-image: url(../images/nav_bullet_over.gif);
	background-position: 3px;
	background-repeat: no-repeat;
}
