/* ==========================
    CSS STYLES FOR HouseMenu
   ==========================
*/

/* Vertical Menu */
#houseMenuV, #houseMenuV ul { /* all lists */
	margin: 20px 0px;
	padding: 0;

	list-style: none;
	float: left;
	width: 100%;
	font-family:Century Gothic,Verdana, Arial, Helvetica, Sans-Serif;
	font-size: 14px;
	background: transparent;
	
}

#houseMenuV li { /* all list items */
	margin: 0px 0;
	padding: 0;
	/*border: 1px solid #999;*/
	list-style: none;
	position: relative;
	float: left;
	width: 100%;
	/* hack for MacIE5 to ignore, while other browsers use \*/
	width: 100%;
	_width: 100%; /* width recognized by IE only to handle box model issues */
	/* end hack */
	line-height : 18px;
	z-index:997;
}

#houseMenuV li ul { /* second-level lists */
	position: absolute;
	left: -9999px;
	margin-left:200px;
	_margin-left: 200px;
	margin-top: -21px;
	border: solid 1px #999;
	z-index: 1000;
	width:180px !important;
	width:200px;
}

#houseMenuV li ul ul { /* third-and-above-level lists */
	left: -9999px;
	z-index:10000;
	width:220px !important;
	width:200px;

}

#houseMenuV a {
	display: block;
	width: 151px;
	/* hack for MacIE5 to ignore, while other browsers use \*/

	_width: 100%; /* width recognized by IE only to handle box model issues */
	/* end hack */
	color: #7d7c7c;
	/*font-weight: bold;*/
	text-decoration: none;
	border-bottom:1px solid #eee;
	background: #fff url(fc_icon.gif) no-repeat center left;
	padding: 8px 0px 7px 25px;
	opacity: .9;
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=90);
}

#houseMenuV li a:hover {
	color: #333;
	background: #fff url(fc_icon_over.gif) no-repeat center left;
}

#houseMenuV li:hover ul ul, 
#houseMenuV li:hover ul ul ul, 
#houseMenuV li:hover ul ul, 
#houseMenuV li:hover ul ul ul {
	left: -9999px;
	z-index:1001;
}

#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:-20px !important;
	left: 0;
	z-index:10002;
}

#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;
}

a#houseMenuParentLink
{ /* parent link itself */
	color: #eeeeee;
	background-color: #333;
	text-decoration: none;
}

a#houseMenuCurrentLink
{ /* current link itself */
	color: #333;
	background: #fff url(fc_icon_over.gif) no-repeat center left;
	text-decoration: none;
}

