/* ==========================
    CSS STYLES FOR HouseMenu
   ==========================
*/

/* Horizontal Menu */
#houseMenuH { /* menu wrapper div */
	list-style: none;
	padding: 0;
	margin: 0;
	float: left;
}

#houseMenuH li a {
	/* all links, inside of list items */
	font-family: arial, tahoma, verdana;
	display: block;
	padding: 10px 15px 10px 15px;
	color: #ffffff;
	font-size: 11px;
	font-weight: bold;
	text-decoration: none;
	white-space: nowrap;
}

#houseMenuH li
{ 
	/* all list items */
	float: left;
	padding: 0;
	margin: 0;
	margin-top:20px;
	overflow: hidden; /* if text-resize, this'll keep the nav the same size */
 }

#houseMenuH li a:hover {
    BACKGROUND: url(bg_menu.gif) #006C4B repeat-x;
	text-decoration: none;
}

#houseMenuH li a#houseMenuCurrentLink {
	color: #3e5139;
	text-decoration:underline;
}