/* ==========================
    CSS STYLES FOR HouseMenu
   ==========================
*/

/* Vertical Menu */
#nav, #nav ul { /* all lists */
	margin: 0;
	padding: 0;
	padding:0;
	list-style: none;
	float: left;
	width: 170px;
	font-family: Verdana, Arial, Helvetica, Sans-Serif;
	font-size: 11px;
	background: transparent;
}

#nav { padding-bottom:20px; padding-top:20px; }

#nav li { /* all list items */
	margin: 0;
	padding: 0;
	border: 0;
	list-style: none;
	position: relative;
	float: left;
	width: 165px;
	/* hack for MacIE5 to ignore, while other browsers use \*/
	width: 170px;
	_width: 100%; /* width recognized by IE only to handle box model issues */
	/* end hack */
	line-height : 20px;
}

#nav li ul { /* second-level lists */
	position: absolute;
	left: -9999px;
	margin-left: 165px;
	_margin-left: 170px;
	margin-top: -27px;
	border: solid 1px #994D26;
	background-color:#D10100;
	z-index: 999;	
}

#nav li ul ul { /* third-and-above-level lists */
	left: -9999px;
	z-index: 999;
}

#nav a {
	display: block;
	width: 165px;
	/* hack for MacIE5 to ignore, while other browsers use \*/
	width: 132px;
	_width: 100%; /* width recognized by IE only to handle box model issues */
	/* end hack */
	color: #FEC900;
	font-weight: bold;
	text-decoration: none;
	padding: 1px 4px 2px 34px;
}

#nav li a:hover {
	color: #FEC900;
	background-color: #136A35;
	background-image:url(images/menu.gif);
	background-position:left center;
	background-repeat:no-repeat;
}

#nav li:hover ul ul, 
#nav li:hover ul ul ul, 
#nav li.sfhover ul ul, 
#nav li.sfhover ul ul ul {
	left: -9999px;
}

#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;
	z-index: 999;
}

#nav iframe {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 0;
	filter: progid:DXImageTransform.Microsoft.Alpha(style=0,opacity=0);
	display: block;
}


/* Applied to the parent item, if displayed, in either vertical or horizontal
   orientation. Must follow other styles. */
#houseMenuParentItem a
{ /* all links under the parent item (li) */
	color: #eeeeee;
	background-color: #666;
	text-decoration: none;
}

a#houseMenuParentLink
{ /* parent link itself */
	color: #eeeeee;
	background-color: #333;
	text-decoration: none;
}

a#houseMenuCurrentLink
{ /* current link itself */
	color: #ffffff;
	background-color: #600;
	text-decoration: none;
}
