/* CSS Document */
#nav, #nav ul { /* all lists */
		padding: 0;
		margin: 5px;
		list-style: none;
		float : left;
		width : 104px;
}	
#nav li {
		position : relative;
		float : left;
		line-height : 1.25em;
		margin-bottom : 5px;
		width: 104px;
		color: 00592E;
}	
#nav li ul { /* second-and-above-level lists */ 
		position : absolute;
		left: -999em;
		margin-left : 105px;
		margin-top : -30px;
		z-index: 1;
}
#nav li ul ul { /* third-and-above-level lists */
		left: -999em;
		margin-left : 105px; /* third column hor distance */
		margin-top : -30px; /* third column vert distance */
		z-index: 2;
}
#nav li ul li, #nav li ul ul li {
		margin-bottom : 1px;
}	
#nav li a { /* font and box prefs */
		font-family: arial, helvetica, sans-serif;
		font-size: 11px;
		width: 103px;
		height: 30px;
		display : block;
		color : #00592E;
		font-weight : normal;
		text-decoration : none;
		padding : 0.25em 0.5em;
}
a#homebutton { /* rollover for home button */
		font-family: arial, helvetica, sans-serif;
		font-size: 11px;
		display : block;
		color : #00592E;
		font-weight : normal;
		text-decoration : none;
		background-image: url(images/home_rollover.jpg);
		background-repeat: no-repeat;
		background-position: 0 0;
		height: 30px;
		margin: 0; padding: 0;
		padding-left: 18px;
		padding-top: 10px;
}
a#homebutton:hover{ /* rollover font prefs for home button */
		background-position: 0 -40px;
		color: #FFFFFF;
}
#nav li a{
		background-color : white;
		border : 1px solid #00592E;
}
	
#nav li a:hover {
		color : white;
		background-color : #00592E;
		border : 1px solid #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;
}
#navbg {
		background-image: url(images/nav_bg.jpg);
		background-repeat: repeat-x;
		background-position: 0 0;
}
