

.divlink a {
display: block;
}

ul {
	list-style: none;
	padding: 0;
	margin-top: 0px;
	}

#nav a {
	font-weight: bold;
	color: #FFFFFF;
}

#nav a {
	text-decoration: none;
}

#nav li a { /* main navigation links properties */
font-size: 14px; 
padding: 4px;
}

#nav li a:hover { /* main navigation links hover properties */
color: #000000;
background-color: #EBE8A9; /* light tan */

}

#nav li li a { /*sub navigation links properties*/
	display: block;
	font-weight: normal;
	color: #ffffff;
	height: 18px;
	}

#nav li li a:hover { /* sub links hover properties */
	background: #EBE8A9; /* light tan */
	color: #000000;
}

li { /* main navigation tabs - link properties are listed above! */
	float: left;
	width: 166px;
	text-align: center;
	cursor: default;
	border: none;
	background: #6b863b; /* green */
	}

li ul { /* sub link tab properties */
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	font-weight: normal;
	border-bottom: solid 1px #000000;
}

li>ul { /* creates child sub list */ 
	top: auto;
	left: auto;
}

li li {
	display: block;
	float: none;
	border-bottom: 1px solid #000000;
	}

li:hover ul, li.over ul {
	display: block;
	text-indent: 0px;
}


