/* ==========================
    CSS STYLES FOR HouseMenu
   ==========================
*/

/*********************************************************************
 Standard structural CSS that typically should not need to be changed
*********************************************************************/
#houseMenuH { /* menu wrapper div */
	padding: 0;
	margin: 0;
	border: 0;
	white-space: nowrap;
	position: relative;
}

#houseMenuH ul { /* all submenu lists */
	padding: 0;
	margin: 0;
	border: 0;
	list-style-type: none;
	white-space: nowrap;
	z-index: 99999;
}

#houseMenuH li { /* all list items */
	position: relative;
	display: inline;
	float:  left;
	margin: 0;
	border: 0;
	padding: 0;

	
}

#houseMenuH li li { /* all items under the top level */
	z-index: 11113;
}

#houseMenuH a { /* all links within the menu wrapper */
	display: block;
	margin: 0; 
	border: 0;
	padding: 0;

}

#houseMenuH li li a { /* all item links under the top level */
	margin: 0;
	border: 0;
	padding: 0;
}

#houseMenuH li a:hover {
	margin: 0;
	border: 0;
	padding: 0;
}

#houseMenuH li li a:hover {
	margin: 0;
	border: 0;
	padding: 0;
}

#houseMenuH li ul {
	position: absolute;
	margin: 0;
	border: 0;
	padding: 0;
	z-index: 11112;
	overflow: visible;

}

#houseMenuH li ul ul { /* third-and-above-level lists */
	position: absolute;
	margin: 0;
	border: 0;
	z-index: 9999;
/*	overflow: hidden;*/
	overflow:visible;
}

#houseMenuH li:hover ul ul, 
#houseMenuH li:hover ul ul ul, 
#houseMenuH li.sfhover ul ul, 
#houseMenuH li.sfhover ul ul ul {
	left: -9999px;
}

#houseMenuH li:hover ul, 
#houseMenuH li li:hover ul, 
#houseMenuH li li li:hover ul, 
#houseMenuH li.sfhover ul, 
#houseMenuH li li.sfhover ul, 
#houseMenuH li li li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
	z-index: 99999;
}

#houseMenuH iframe {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 0;
	filter: progid:DXImageTransform.Microsoft.Alpha(style=0,opacity=0);
	display: block;
}

.ArrowPointer
{
	cursor: default;
}



/*******************************************************
 Presentation CSS that typically needs to be customized
*******************************************************/
#houseMenuH { /* menu wrapper div */
	width:100%
	background-color: transparent;
	/*height: 24px;*/
	margin-left: 14px;
}

#houseMenuH ul { /* all submenu lists */
	/*	line-height: 12px;*/
	/*background-color: #287fb9;*/
}

#houseMenuH li { /* all list items */
	/* hack for MacIE5 to ignore, while other browsers use \*/
	width: auto;
	_width: 1px;
/*	border-right: 1px #fff solid;*/
	padding: 5px 10px 5px 10px;
	margin:0;
	/* end hack */
	text-align:left;
	background-image: none;
}

/*SUB LINKS BOX*/
#houseMenuH li li { /* all items under the top level */
	/*height: 24px;*/
	/* hack for MacIE5 to ignore, while other browsers use \*/
	_width: 1px;
	border:1px #627a88 solid;
	background-color: #aac5d5;
	/*padding: 5px;*/
	/*height: 24px;*/
}

/*MAIN LINK*/
#houseMenuH a { /* all links within the menu wrapper */
	font-family: Arial, Verdana, Helvetica, sans-serif; 
	font-size: 13px; 
	font-weight: bold; 
	color: #fff;
	background-color: transparent;
	/*padding: 5px;*/
	height: 12px;
	/* hack for MacIE5 to ignore, while other browsers use \*/
	height: 12px;
	_height: 100%;
	text-align: left;
	/* end hack */
	text-decoration: none;
}

/*SUB LINKS*/

#houseMenuH li li a { /* all item links under the top level */
	width: 200px;
	/* hack for MacIE5 to ignore, while other browsers use \*/
	_width: 200px;
	height: 12px;
	_height: 100%;
	/* end hack */
	font-family: Arial, Verdana, Helvetica, sans-serif; 
	font-size: 11px; 
	color: #fff;
	margin: 0;
	text-align: left;
}
/*MAIN LINK HOVER*/
#houseMenuH li a:hover {
	/*margin: 1px;
	padding: 5px;
	height: 22px;*/
	color: #fcd09c;
	background-color: transparent;
}
/*SUB LINKS HOVER*/
#houseMenuH li li a:hover {
	margin: 0px;
	_width: 200px;
	color: #fcd09c;
	background-color: transparent;
}

#houseMenuH li ul { /* second-level lists */
	width: 200px; /* width of submenu, must be set so third-level list can get shifted over properly */
	left: -9999px; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	/*border: solid 1px #999;*/
	margin: 0px;
	/* hack for MacIE5 to ignore, while other browsers use \*/
	_margin: 0;
	/* end hack */
/*	line-height: 12px;*/
	padding-top:10px;
/*	margin-left:-20px;*/
	text-align: left;
 	display: block;
  	float: left;
}

#houseMenuH li ul ul { /* third-and-above-level lists */
	margin: -28px 0 0 210px;
	/*_margin: -23px 0 0 196px;*/
	width: 200px;
	z-index: 9999;
}

/* Applied to the parent item, if displayed, in either vertical or horizontal
   orientation. Must follow other styles. */
#houseMenuH #houseMenuParentItem a
{ /* all links under the parent item (li) */
	background-color: transparent; 
	text-decoration: none;
}

#houseMenuH a#houseMenuParentLink
{ /* parent link itself */
	background-color: transparent; 
	text-decoration: none;
}

#houseMenuH a#houseMenuCurrentLink
{ /* current link itself */
	/*border: solid 1px #666;
	background-color: #ccc;*/ 
	/*margin: 1px;
	padding: 3px;
	height: 14px;*/
	color: #000;
	text-decoration: none;
}


