/* ==========================
    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;
}

#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 
{
    /* all submenu lists */
    width: 100%;
    background-color: #007ac1;
    height: 22px;
    background-image: url(menubg/menu_strip.gif);
    background-repeat: repeat-x;
}
#houseMenuH ul
{
	width: 100%;
	background-color: #007ac1;
	height: 22px;
	background-repeat: repeat-x;
	padding:0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	list-style-type: none;
}



#houseMenuH li
{
    /* all list items */
    width: auto;
    _width: 1px;
    height: 22px;
    background-image: url(menubg/nav_sp.gif);
    background-repeat: no-repeat;
    background-position: right;
	padding:0;
}

#houseMenuH a
{
    /* all links within the menu wrapper */
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: bold;
    text-decoration: none;
    color: #FFFFFF;
    width: auto;
    height: 21px;
    padding-top: 4px;
    padding-right: 15px;
    padding-left: 15px;
    background-image: url(menubg/nav_sp.gif);
    background-repeat: no-repeat;
    background-position: right;

}

#houseMenuH li a:hover 	
{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: bold;
    text-decoration: none;
    color: #ffc424;    
    padding-top: 4px;
    width: auto;
    height: 22px;    
	padding-right: 15px;
    padding-left: 15px; 
}


#houseMenuH li li
{
	/* all items under the top level */
    width: auto;
	/*height: 21px; /* hack for MacIE5 to ignore, while other browsers use \*/
	_width: 1px;
    width: 150px;
	height: auto;
	padding:0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	background-color: #007ac1;       
}




#houseMenuH li li a
{
    /* all item links under the top level */
    padding: 4px;
    width: 150px;
    height: 21px; /* hack for MacIE5 to ignore, while other browsers use \*/
    _width: 150px;
    height: auto;
    _height: auto;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-bottom-color: #ffffff;
    background-image: none;
}


#houseMenuH li li a:hover {	
	border-bottom-style: solid;
    border-bottom-width: 1px;
    border-bottom-color: #ffffff;
	padding: 4px;
    width: 150px;
    height: auto; /* hack for MacIE5 to ignore, while other browsers use \*/
    _width: 150px;
    height: auto;
    _height: auto;
	color: #ffffff;
	background-color: #ffc424; 
}


#houseMenuH li ul
{
	/* second-level lists */
    width: 150px; /* 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 */
	height: auto;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: bold;
	color: #FFFFFF;
	padding: 0px;
	list-style-type: none;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
#houseMenuH ul li li:hover
{
    background-image: url(menubg/collapsed.gif);
    background-repeat: no-repeat;
    background-position: right;
}

#houseMenuH li ul ul { /* third-and-above-level lists */
    width:190px;                       
	margin: -23px 0 0 150px;
	_margin: -23px 0 0 148px;	
}

#houseMenuH li ul ul li a
{
    width: 190px;
    border-left-style: solid;
    border-left-width: 1px;
    border-left-color: #FFFFFF;
}
#houseMenuH li ul ul li a:hover { 
    width:190px;                       
}

/* 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 */ 
    height: 21px;
    color: #ffffff;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: bold;
    
}
#houseMenuH li li:hover, #houseMenuH li li.sfhover {
	height:21px;
	background: #ffc424;
	border: 0;
}
