@charset "utf-8";
/* CSS Document */

#nav {
	padding: 0;
	margin-top: 35px;
	margin-left: 0;
	list-style: none;
	float : left;
	width : 6em;
	height: 275px;
	margin-bottom: 0px;
	padding-bottom: 0px;
}
#nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	float : left;
	width : 6em;
}
ul#nav li {
	position : relative;
	float : left;
	line-height : 1.25em;
	margin-bottom : 12px;
}
#nav li { /* all list items */
	position : relative;
	float : left;
	line-height : 1.25em;
	margin-bottom : -1px;
}
ul#nav ul li {
	position : relative;
	float : left;
	line-height : 1.25em;
	margin-bottom : -1px;
}
#nav li ul { /* second-level lists */
	position : absolute;
	left: -999em;
	margin-left : -170px;
	margin-top : -1.5em;
	background-color: #e6f0e8;
	padding: 4px;
	border: solid 1px #b1ceba;
	width: 160px;
	z-index: 10;
}
/* A CSS comment before the hack \*/
* html #nav li ul {
	padding-right: 2px;
	padding-left: 0px;
	margin-left : -164px;
	width: 160px;
}
/* Another CSS comment after the hack */

#nav li ul li {
	float: right;
	width: 100%;
}

#nav li ul li a { /* second-level list item anchor */
	font-weight: normal;
	text-align: right;
	font-size: 0.8em;
	width: 150px;
	padding-right: 5px;
	padding-left: 5px;
}
/* A CSS comment before the hack \*/
* html #nav li ul li a   {
	width: 150px;
	padding-right: 5px;
	padding-left: 5px;
}
/* Another CSS comment after the hack */
#nav li ul li a:hover {
	border: none;
}
#nav li ul ul { /* third-and-above-level lists */
	left: -999em;
}
#nav li a {
	width: 8.55em;
	display: block;
	color: #84b391;
	font-weight: bold;
	text-decoration: none;
	/*border : 1px solid black;*/
	padding: 0 0.8em;
	font-size: .9em;
}
#nav li a:hover {
	color: #0d6825;
	border-right : 8px solid #c9d2c1;
}
#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;
}
