/* ==========================
    CSS STYLES FOR HouseMenu
   ==========================
*/

/* Vertical Menu */
#houseMenuV, #houseMenuV ul { /* all lists */
	margin: 0;
	padding-top: 12px;
	border: solid 1px transparent;
	list-style: none;
	/*float: left;*/
	width: 200px;
	font-family: Arial;
	font-size: 11px;
	background: transparent;
	text-transform: uppercase; 
}

#houseMenuV li { /* all list items */
	margin: 0;
	padding-top: 12px;
	border: 0;
	list-style: none;
	position: relative;
	/*float: left;*/
	width: 158px;
	/* hack for MacIE5 to ignore, while other browsers use \*/
	width: 152px;
	_width: 100%; /* width recognized by IE only to handle box model issues */
	/* end hack */
	line-height : 15px;
	text-transform: uppercase; 
	color: #ffffff;
}

#houseMenuV li ul { /* second-level lists */
	position: absolute;
	left: -9999px;
	margin-left: 80px;
	_margin-left: 78px;
	margin-top: -21px;
	border: none;
	z-index: 999;
	font-size: 11px;
	background: transparent;
	text-transform: uppercase;
	color: #000000;
}

#houseMenuV li ul ul { /* third-and-above-level lists */
	left: -9999px;
	z-index: 999;
}

#houseMenuV a {
	display: block;
	width: 158px;
	/* hack for MacIE5 to ignore, while other browsers use \*/
	width: 152px;
	_width: 100%; /* width recognized by IE only to handle box model issues */
	/* end hack */
	color: #ffffff;
	font-weight: bold;
	text-decoration: none;
	background-color: transparent;
	padding: 1px 10px 2px 10px;
	/*opacity: .9;
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=90);*/
}

#houseMenuV li a:hover {
	color: #cccccc;
	background-color: transparent;
}
#houseMenuV li:hover ul ul {
	color: #cccccc;
	background-color: #000000;
}


/*Own style*/
#houseMenuV li:hover ul ul ul {
	color: #ffffff;
	background-color: black;

}
#houseMenuV li.sfhover ul ul {
	color: #ffffff;
	background-color: black;
} 
/* End*/



#houseMenuV li.sfhover ul ul ul {
	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 */
	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: #ffffff;
	background-color: #000000;
	text-decoration: none;
}

a#houseMenuParentLink
{ /* parent link itself */
	color: #ffffff;
	background-color: transparent;
	text-decoration: none;
}

a#houseMenuCurrentLink
{ /* current link itself */
	color: #ffffff;
	background-color: transparent;
	text-decoration: none;
}
