/* ==========================
    CSS STYLES FOR HouseMenu
   ==========================
*/

/* Vertical Menu */
#houseMenuV ul { /* all lists */
	margin: 0;
	padding: 0;
	list-style-type: none;
	list-style: none;
	float: left;
	font-family:  Helvetica Neue, Arial, Helvetica, Sans-Serif, Verdana;
	font-size: 12px;
	background: #fff;
/*	margin-bottom: 20px;*/
	cursor:pointer;
	line-height:normal;
	letter-spacing:normal;
}

#houseMenuV li { /* all list items */
	margin: 0;
	padding: 0;
	border: 0;
	list-style-type: none;
	list-style: none;
	position: relative;
	float: left;
	/* hack for MacIE5 to ignore, while other browsers use \*/
	/*_width: 100%;  width recognized by IE only to handle box model issues */
	/* end hack */
	line-height : 20px;
	cursor:pointer;
}

#houseMenuV li ul { /* second-level lists, MARGIN LEFT SHOWS WHERE THE POPUP MENU WILL BEGIN */
	position: absolute;
	left: -9999px;
	margin-left: 124px;
/*	_margin-left: 130px;*/
	margin-top: -24px;
/*	border: 1px #b3b4b4 solid;*/
	z-index: 999;
	cursor:pointer;
	letter-spacing:normal;

}

#houseMenuV li ul a { /* second-level lists, MARGIN LEFT SHOWS WHERE THE POPUP MENU WILL BEGIN */
	background-color:#d7e9cb;
/*	border: 1px dotted #000099;*/
padding-left:2px;
}

#houseMenuV li ul ul { /* third-and-above-level lists */
	left: -9999px;
	z-index: 999;
	cursor:pointer;
	letter-spacing:normal;

}

#houseMenuV a {
	display: block;
	color: #2956a1;
	letter-spacing:normal;
	/* hack for MacIE5 to ignore, while other browsers use \*/
	width: 124px;
 /*	_width: 100%; width recognized by IE only to handle box model issues */
	/* end hack */
	font-weight: bold;
	text-decoration: none;
	background-color: #fff;
	padding: 1px 0 2px 0;
	cursor:pointer;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #b3b4b4;
/*	border:0px; border-top:1px dotted #000000; height:0px;*/
/*	opacity: .9;
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=90);*/
}

#houseMenuV li a:hover {
	color: #7ab752;
	background-color: #fafafa;
	cursor:pointer;
	letter-spacing:normal;
}

#houseMenuV li:hover ul ul, 
#houseMenuV li:hover ul ul ul, 
#houseMenuV li.sfhover ul ul, 
#houseMenuV li.sfhover ul ul ul {
	left: -9999px;
		letter-spacing:normal;
}

#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;
		letter-spacing:normal;
}

#houseMenuV iframe {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 0;
	filter: progid:DXImageTransform.Microsoft.Alpha(style=0,opacity=0);
	display: block;
}

.ArrowPointer
{
	cursor: default;
}

/* 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: #2956a1;
	background-color: #fff;
	text-decoration: none;
	letter-spacing:normal;
}

a#houseMenuParentLink
{ /* parent link itself */
	color: #7ab752;
	background-color: #fff;
	text-decoration: none;
	letter-spacing:normal;
}

a#houseMenuCurrentLink
{ /* current link itself */
	color: #2956a1;
	background-color: #fff;
	text-decoration: none;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #b3b4b4;
	letter-spacing:normal;
}