/* ==========================
    CSS STYLES FOR HouseMenu
   ==========================
*/

/*********************************************************************
 Standard structural CSS that typically should not need to be changed
*********************************************************************/
#houseMenuH, #houseMenuH ul { /* all submenu lists */
	padding: 0;
	margin: 0;
	border: 0;
	list-style: none;
	white-space: nowrap;
	position: relative;
	z-index: 99999;
}

#houseMenuH li { /* all list items */
	position: relative;
	display: inline;
	float: left;
	margin: 0;
	border: 0;
	padding: 0;
	/*background-image: url(b_blank.gif);*/
	
}

#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;
}

#houseMenuH li ul ul { /* third-and-above-level lists */
	margin: 0;
	border: 0;
	padding: 0;
}

#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, #houseMenuH ul     /* sets the width of the menucontainer all submenu lists */
{ 
	border: solid 0px #999;
	width: 100%;
	height: 48px;
	line-height: 20px;
	/*background-color: Transparent;*/
	_height: 45px;
	vertical-align:middle;
}

#houseMenuH li                  /* all list items */
{   
	height: 50px;
	vertical-align:middle;
	/* hack for MacIE5 to ignore, while other browsers use \*/
	width: auto;
	height: 48px;
	width: 156px;
	height: 50px; /*Menu FireFox*/
	_width: 146px;
	_height: 48px;
	/* end hack */
}

#houseMenuH li li   /* all items under the top level */
{           
	width: 144px;
	height: 54px;
	/* hack for MacIE5 to ignore, while other browsers use \*/
	width: auto;
	_width: 1px;
	_height: 53px;
	/* end hack */
}

#houseMenuH a /* all links within the menu wrapper */
{ 
    cursor: pointer; 
	font-family: Arial, Helvetica, sans-serif; 
	font-size: 15px;
	font-weight : normal;
	text-decoration : none;
	text-align:center;
	vertical-align: middle; 
	color : white;
	background-color: transparent;
	background-image: url(b_blank.gif);
	padding:  5px 1px 1px 1px; 
	
	/*padding: 2px;*/
	 /*border-left: solid 1px grey;
	 border-right: solid 1px grey;*/
	/* hack for MacIE5 to ignore, while other browsers use \*/
	width: 153px; /* Firefox*/
	_width: 156px; /* IE */
	height: 44px;  /* Firefox*/
	_height: 50px;  /* IE */
	/*_padding: 5px 1px 1px 1px; 
	/* end hack */
    border-right: solid 1px grey;
    /*line-height: 150%;
    _line-height: 100%;*/
}
		
#houseMenuH li li a /* all item links under the top level */
{ 
	padding: 1px;
	width: 156px;
	height: 22px;
	/* hack for MacIE5 to ignore, while other browsers use \*/
	_width: 156px;
	height: 50px;
	_height: 100%;
	/* end hack */
}

#houseMenuH li a:hover 
{
cursor: pointer; 
	font-family: Arial, Helvetica, sans-serif; 
	font-size: 15px;
	font-weight : normal;
	text-decoration : none;
	text-align:center;
	vertical-align: middle; 
	color : white;
	background-color: transparent;
	padding:  5px 1px 1px 1px; 
	/*padding: 2px;*/  /*border-left: solid 1px grey;
	 border-right: solid 1px grey;*/
	/* hack for MacIE5 to ignore, while other browsers use \*/
	width: 151px;
	_width: 156px;
	height: 44px;  /* Firefox*/
	_height: 50px;  /* IE /*
	_padding: 5px 1px 1px 1px; 
	/* end hack */
    border-right: solid 1px grey;
	background-image: url(b_blank_hover.gif);
	

	
	

}

#houseMenuH li li a:hover 
{ /*	border-right: solid 1px grey;*/

    /*margin: 0px;
	vertical-align:middle;
	border: solid 0px #999;
	padding: 0px;
	width: 156px;
	_width: 156px;
    _height: 40px;  /* FireFox*/
    /*height: 50px;  /*  IE */
	
	
	background-image: url(b_blank_hover.gif);
    
	/*margin: 0px;
	border: solid 0px #999;
	padding: 3px;
	_width: 156px;
	width: 156px;
    height: 50px;
	color: white;
	background-color: transparent; 
	background-image: url(b_blank_hover.gif);*/
}

#houseMenuH li ul { /* second-level lists */
	width: 144px; /* 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: 0;
	/* hack for MacIE5 to ignore, while other browsers use \*/
	margin: 1px 0 0 0;
	_margin: 0;
	/* end hack */
	line-height: 14px;
	height: 50px;
}

#houseMenuH li ul ul /* third-and-above-level lists */
{ 
	margin: -24px 0 0 144px;
	_margin: -24px 0 0 142px;
	border: solid 1px #999;
	line-height: 14px;
}

/* 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, a#HouseMenuNavCurrentLink /* current link itself */
{ 
	margin: 0px;
	border: solid 0px #666;
	padding: 2px;
   	color: white;
	text-decoration: none;
	border-right: solid 0px grey;
	/*_width: 155px;
	width: 153px; /*Menu FireFox*/
	width: 151px; /* Firefox*/
	_width: 154px; /* IE */
	
	height: 46px; /*Menu FireFox*/
	_height: 50px; /*Menu IE*/
	vertical-align: middle;
	background-color: Transparent; 
	background-image: url(b_blank_hover.gif);
	
}
/*#houseMenuH a#HouseMenuNavCurrentLink
{ 
	margin: 0px;
	border: solid 0px #666;
	padding: 3px;
	height: 45px;
	color: white;
	background-color: Transparent; 
	text-decoration: none;
	background-image: none;
	background-image: url(b_blank_hover.gif);
	
}*/