/* ==========================
    !! NAQ SITE TOP NAVIGATION BAR ONLY !!
	CSS STYLES FOR HouseMenu
   ==========================
*/

/*********************************************************************
 Standard structural CSS that typically should not need to be changed
*********************************************************************/
#houseMenuH { /* menu wrapper div */
	margin: 0;
	border: 0;
	white-space: nowrap;
	position: relative;
	padding-left: 10px;
	padding-top: 15px;
}

#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;
}

#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 { /* menu wrapper div */
	width: 100%;
	background-color: #FFFFFF;
	height: 25px;
}

#houseMenuH ul { /* all submenu lists */
	line-height: 14px;
	background-color: #ffffff;
}

#houseMenuH li { /* all list items */
	height: 24px;
	/* hack for MacIE5 to ignore, while other browsers use \*/
	width: auto;
	_width: 1px;
	height: 24px;
	/* end hack */
}

#houseMenuH li li { /* all items under the top level */
	width: auto;
	height: 24px;
	/* hack for MacIE5 to ignore, while other browsers use \*/
	width: auto;
	_width: 1px;
	height: 24px;	/* end hack */
}

#houseMenuH a { /* all links within the menu wrapper */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight : bold;
	text-decoration : none;
	color : #0067ac;
	background-color: transparent;
	width: auto;
	height: 20px;
	/* hack for MacIE5 to ignore, while other browsers use \*/
	_width: auto;
	height: 20px;
	_height: 100%;	/* end hack */
	margin-top: 5px;
	margin-right: 15px;
	margin-bottom: 5px;
	margin-left: 15px;
}

#houseMenuH li li a { /* all item links under the top level */
	padding: 5px;
	width: 134px;
	height: 13px;
	/* hack for MacIE5 to ignore, while other browsers use \*/
	_width: 140px;
	height: 13px;
	_height: 100%;	/* end hack */
}

#houseMenuH li a:hover {
	/* border: solid 0px #999; */
	height: 20px;
	color: #0067ac;
	border-bottom-width: 3px;
	border-bottom-style: solid;
	border-bottom-color: #cce1fc;
	margin-top: 5px;
	margin-right: 15px;
	margin-bottom: 5px;
	margin-left: 15px;
}

#houseMenuH li li a:hover {
	margin: 2px;
	padding: 3px;
	_width: 140px;
	height: 14px;
	color: #0067ac;
	background-color: #edf5f7; 
}

#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;
	/* hack for MacIE5 to ignore, while other browsers use \*/
	margin: 1px 0 0 15px;
	_margin: 0;
	/* end hack */
	line-height: 14px;
	margin-top: 1px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 15;
	border: 1px solid #e6e6e6;
}

#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
{ /* current link itself */
	/*margin: 1px;*/
	background-color: #ffffff; 
	text-decoration: none;
	/* border: solid 1px #666; */
	/*padding: 3px;*/
	height: 20px;
	color : #0067ac;
	border-bottom-width: 3px;
	border-bottom-style: solid;
	border-bottom-color: #0067ac;
	border-left-width: 0px;
	margin-top: 5px;
	margin-right: 15px;
	margin-bottom: 5px;
	margin-left: 15px;
}


