/* =====================================
    CSS STYLES FOR HouseMenu SkinObject
   =====================================
*/

/*********************************************************************
 Standard structural CSS that typically should not need to be changed
*********************************************************************/
#houseMenuH, #houseMenuH ul { /* all submenu lists */
	padding: 0;
	margin: 0;
	margin-top: -5px;
	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 { /* second-level lists */
	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
{
    /* all submenu lists */
    height:28px;
    background-color: Transparent;
    
}


#houseMenuH a
{
    /* all links within the menu wrapper */
    color: #fff;
    font-family: Verdana, Arial, Helvetica, Sans-Serif;
    font-size: 11px;
    font-weight: bold;
    text-decoration: none;
    background-color: transparent;
    width: 145px;
    height: 28px;
    padding-left: 23px;
    padding-top: 7px;
    padding-right: 11px; 
    background-position: left center;
    background-image: url(fondomenu.gif);
    background-repeat: no-repeat;
    text-transform: none;
    letter-spacing: -1pt;
   
}

#houseMenuH li { /* all list items */

		
	/* hack for MacIE5 to ignore, while other browsers use 
	width: auto;
	_width: 1px;
	end hack */
	width: 145px;
	display: block;
}

#houseMenuH li a:hover
{
    background-color: transparent;
    background-image: url(fondomenu2.gif); /*background-image: url(menubg/gray/menubar_cccccc_2x30.jpg); */
    background-repeat: repeat-x;
    padding-right: 11px;
    padding-left: 23px;
    padding-top: 7px;
    height: 28px;
    background-position: left;
    color: #ffcc00;
    background-repeat: no-repeat;
}

#houseMenuH li ul
{
    /* second-level lists */
    width: 180px; /* 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: none;
    margin: -4px 0px 0px 20px;
    height: auto;
    padding: 2px;
    background-color: whitesmoke;
    color: green;
}

#houseMenuH li ul ul
{
    /* third-and-above-level lists */
    background-color: whitesmoke;
    color: green;
    margin: -20px 0px 0px 176px;
    width: 180px;
}

#houseMenuH li li { /* all items under the top level */
	width: 148px;
	/* hack for MacIE5 to ignore, while other browsers use \*/
	width: 134px;
	_width: 144px;
	/* end hack */
	padding: 2px;


}

#houseMenuH li li a { /* all item links under the top level */
	width: 174px;
    background-image: none;
	color: Black;
	padding: 2px;
}
#houseMenuH li li a:hover 
{
    background-image: none;
    background-color:#1b421d;
    color: White;
    padding: 2px;
}

/* 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) */
	color: #333; 
	background-color: transparent; 
	background-image: url(menubg/gray/menubar_ffffff_2x30.jpg);
	background-repeat: repeat-x;
	text-decoration: none;
}

#houseMenuH a#houseMenuParentLink
{ /* parent link itself */
	color: #333; 
	background-color: transparent; 
	background-image: url(menubg/gray/menubar_ffffff_2x30.jpg);
	background-repeat: repeat-x;
	text-decoration: none;
}

#houseMenuH a#houseMenuCurrentLink
{ /* current link itself */
	color: #eee; 
	background-color: transparent; 
	background-image: url(menubg/gray/menubar_666666_2x30.jpg);
	background-repeat: repeat-x;
	text-decoration: none;
}


