/* CSS Document */			
#nav {
	clear: both;
	float: left;
	width: 160px;
	background-color: #bdcbc6;
	margin: 0;
	padding-bottom: 10px;
}
	#nav ul {
		list-style-type: none;
		padding: 0;
		margin: 0;
		width: 100%;
		text-align: center;
	}
	#nav li {
		border-bottom: 1px solid #56A39B;
		display: block;
		position: relative;
	}
		#nav a {
			text-decoration: none;
			font-size: 12px;
			font-family: Verdana, Arial, Helvetica, sans-serif;
			color: #2F5547;
			display: block;
			width: 100%;
		}
		#nav a:hover {
			color: #7b3007;
			background-color: #EBFFD7;
		}
		#nav li:hover a {
			background-color: #EBFFD7;
		}
		#nav li div {
			display: none;			
			z-index: 100;
			margin-left: 115px;
			margin-top: -1px;
			background-color: #A1CCBC;
			width: 16em;
			border-style: solid;
			border-width: 1px 2px 2px 1px;
			border-color: #2F5547;
			position: absolute;
			top: 0;
			left: 20px;
		}
		#nav li:hover div, #nav li div:hover {
			position: absolute;
			display: block;
		}
			#nav li div a {
				background-color: #A1CCBC !important;
			}
			#nav li div a:hover {
				background-color: #EBFFD7 !important;
			}

