/* ==========================
    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: normal;
	position: relative;
	text-align:center;
}

#houseMenuH ul { /* all submenu lists */
	padding: 0;
	margin: 0;
	border: 0;
	list-style-type: none;
	white-space: nowrap;
	z-index: 9999;
}

#houseMenuH li { /* all list items */
	position: relative;
	display: inline;
	margin: 0;
	border: 0;
	padding: 0;
}

#houseMenuH li li { /* all items under the top level */
	z-index: 1113;
}

#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 ul {
	position: absolute;
	margin: 0;
	border: 0;
	padding: 0;
	z-index: 1112;
}

#houseMenuH li ul ul { /* third-and-above-level lists */
	margin: 0;
	border: 0;
	padding: 0;
}

#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: 600px;
	height: 20px;
}

#houseMenuH ul { /* all submenu lists */
	line-height: 20px;
}

#houseMenuH li { /* all list items */
	height: 20px;
	/* hack for MacIE5 to ignore, while other browsers use \*/
	width: auto;
	_width: 1px;
	height: 20px;
	/* end hack */
	line-height:20px;
}

#houseMenuH li li { /* all items under the top level */
	width: 144px;
	height: 20px;
	/* hack for MacIE5 to ignore, while other browsers use \*/
	width: auto;
	_width: 1px;
	height: 20px;
	/* end hack */
}

#houseMenuH a { /* all links within the menu wrapper */
	font-family:"Lucida Sans", helvetica;
	font-size: 10px;
	text-decoration:none;
	font-weight:normal;
	color:#ffffff;
	line-height:19px;
	background-color: transparent;
	height: 20px;
	/* hack for MacIE5 to ignore, while other browsers use \*/
	_width: auto;
	height: 20px;
	_height:20px;
	/* end hack */
	display:inline;
	border-right:1px solid #545b8b;
	padding:0 4px 0 3px;
	..padding:0 5px 0 5px;
}

#houseMenuH a:hover {
	text-decoration:underline;
}

#houseMenuH li ul { /* second-level lists */
	display:none;
}

/* 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 */
}

