/* ==========================
    CSS STYLES FOR HouseMenu
   ==========================
*/

/* Vertical Menu */
#houseMenuV, #houseMenuV ul { /* all lists */
	margin: 0;
	padding: 0;
	border: 0px;
	list-style: none;
	float: left;
	width: 150px;
	font-family: Tahoma, Verdana, Arial, Helvetica,'sans serif';
	font-size: 11px;
	text-align:left;
	background: transparent;
}

#houseMenuV li { /* all list items */
	font-weight:bold;
	margin: 0;
	padding: 0;
	border: 0px;
	list-style: none;
	position: relative;
	float: left;
	width: 148px;
	/* hack for MacIE5 to ignore, while other browsers use \*/
	width: 142px;
	_width: 100%; /* width recognized by IE only to handle box model issues */
	/* end hack */
	line-height : 14px;
}


#houseMenuV li ul { /* second-level lists */
	font-weight:normal;
	text-align:left;
	position: absolute;
	left: -9999px;
	margin-left: 150px;
	_margin-left: 148px;
	margin-top: -17px;
	border: 1px solid #0D5A9E;
	z-index: 999;
}


#houseMenuV li ul ul { /* third-and-above-level lists */
	text-align:left;
	left: -9999px;
	z-index: 999;
}

#houseMenuV a {
	display: block;
	width: 148px;
	/* hack for MacIE5 to ignore, while other browsers use \*/
	width: 142px;
	_width: 100%; /* width recognized by IE only to handle box model issues */
	/* end hack */
	color: #000;
	text-decoration: none;
	text-align:left;
	background-color: #fff;
	padding: 1px 4px 2px 4px;
	opacity: 1;
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
}

#houseMenuV li a:hover {
	color: white;
	background-color: #0D5A9E;
	text-align:left;
}

#houseMenuV li:hover ul ul, 
#houseMenuV li:hover ul ul ul, 
#houseMenuV li.sfhover ul ul, 
#houseMenuV li.sfhover ul ul ul {
	text-align:left;
	left: -9999px;
}

#houseMenuV li:hover ul, 
#houseMenuV li li:hover ul, 
#houseMenuV li li li:hover ul, 
#houseMenuV li.sfhover ul, 
#houseMenuV li li.sfhover ul, 
#houseMenuV li li li.sfhover ul { /* lists nested under hovered list items */
	text-align:left;
	left: auto;
	z-index: 999;
}

#houseMenuV 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;
	text-align:left;
}

a#houseMenuParentLink
{ /* parent link itself */
	color: #eeeeee;
	background-color: #1b1e53;
	text-decoration: none;
	text-align:left;
}

a#houseMenuCurrentLink
{ /* current link itself */
	color: #ffffff;
	background-color: #6e84ad;
	text-decoration: none;
	text-align:left;
}

