/* ================================
    CSS STYLES FOR Module HouseMenu
   ================================
*/

/* Vertical Menu */
#houseMenuV ul { /* all lists */
	border: solid 0px #999;
	padding: 0;
	margin: 0;
	list-style-type: none;
	list-style: none;
	float: left;
	width: 100%;
	font-family: Verdana, Arial, Helvetica, Sans-Serif;
	font-size: 9px;
	background: transparent;
}

#houseMenuV li { /* all list items */
    font-size: 9px;
	list-style-type: none;
	list-style: none;
	position: relative;
	float: left;
	width: 100%;
	/* hack for MacIE5 to ignore, while other browsers use \*/
	width: 90%;
	_width: 90%; /* width recognized by IE only to handle box model issues */
	/* end hack */
	line-height : 15px;
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 9px;
	border-bottom-style:dotted;
	border-bottom-width:1px;
	border-bottom-color:#304C62;
	display:inherit;
}

#houseMenuV li ul { /* second-level lists */
    font-size: 9px;
	list-style-type: none;
	list-style: none;
	position: relative;
	float: left;
	width: 100%;
	/* hack for MacIE5 to ignore, while other browsers use \*/
	width: 92%;
	_width: 92%; /* width recognized by IE only to handle box model issues */
	/* end hack */
	line-height : 15px;
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 9px;
    border-bottom-style:dotted;
	border-bottom-width:1px;
	border-bottom-color:#304C62;
	display:inherit;
}

#houseMenuV li ul ul { /* third-and-above-level lists */
	left: -9999px;
	z-index: 999;
		list-style-type: none;
	list-style: none;
	position: relative;
	float: left;
	width: 92%;
	/* hack for MacIE5 to ignore, while other browsers use \*/
	width: 92%;
	_width: 92%; /* width recognized by IE only to handle box model issues */
	/* end hack */
	line-height : 15px;
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 9px;
    border-bottom-style:dotted;
	border-bottom-width:1px;
	border-bottom-color:#304C62;
	display:inherit;
}

#houseMenuV a {
	display: block;
	font-size: 9px;
	width: 92%;
	/* hack for MacIE5 to ignore, while other browsers use \*/
	width: 92%;
	_width: 92%; /* width recognized by IE only to handle box model issues */
	/* end hack */
	color: #333;
	font-weight: normal;
	text-decoration: none;
	/*background-color: #eee;*/
	padding: 1px 4px 2px 0px;
	opacity: .9;
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=90);
}

#houseMenuV li a:hover 
{
   
	color: #f8b356;
	font-size: 9px;
	/*background-color: #369;*/
}

#houseMenuV li:hover ul ul, 
#houseMenuV li:hover ul ul ul, 
#houseMenuV li.sfhover ul ul, 
#houseMenuV li.sfhover ul ul ul {
	left: -9999px;

}

#houseMenuV li:hover ul, 
#houseMenuV li li:hover ul, 
#houseMenuV li li li:hover ul, 
#houseMenuV li.sfhover ul, 
#houseMenuV li li.sfhover ul, 
#houseMenuV li li li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
	z-index: 999;

}

#houseMenuV iframe {
	position: absolute;
	left: 400;
	top: 400;
	z-index: -200;
	/* filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);*/
	background:trasparent;
}


/* Horizontal Menu */
#houseMenuH { /* menu wrapper div */
	float: left;
	padding: 0;
	margin: 0;
	list-style-type: none;
	line-height: 18px;
	white-space: nowrap;
	width: auto;
}

#houseMenuH ul { /* all lists */
	float: left;
	padding: 0;
	margin: 0;
	list-style-type: none;
	line-height: 18px;
	white-space: nowrap;
	z-index: 999;
}

#houseMenuH a { /* all links, inside of list items */
	display: block;
	color : #333;
	font-family: Verdana, Arial, Helvetica, Sans-Serif;
	font-size: 10px;
	font-weight : bold;
	text-decoration : none;
	background-color : #eee;
	padding: 1px 6px 2px 6px;
	width: 142px;
	height: auto;
	/* hack for MacIE5 to ignore, while other browsers use \*/
	width: auto;
	/* end hack */
}

#houseMenuH li { /* all list items */
	position: relative;
	display: inline;
	list-style-type: none;
	float: left;
	margin: 0;
	padding: 0;
	border: 0;
	width: 142px;
	/* hack for MacIE5 to ignore, while other browsers use \*/
	width: auto;
	/* end hack */
}

#houseMenuH li a:hover {
	color : white;
	background-color : #369;
}

#houseMenuH li ul { /* second-level lists */
	position: absolute;
	/*background: transparent;*/
	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;
	white-space: nowrap;
	z-index: 888;
}

#houseMenuH li ul ul { /* third-and-above-level lists */
	margin: -21px 0 0 144px;
	white-space: nowrap;
}

#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;
}

#houseMenuH li li { /* all items under the top level */
	list-style-type: none;
	opacity: .9;
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=90);
	width: 142px;
	/* hack for MacIE5 to ignore, while other browsers use \*/
	width: auto;
	/* end hack */
}

#houseMenuH li li a { /* all item links under the top level */
	width: 142px;
	/* hack for MacIE5 to ignore, while other browsers use \*/
	width: 132px;
	_width: 144px;
	/* end hack */
}

#houseMenuH iframe {
	position: absolute;
	left: -1px;
	top: -1px;
	z-index: 0;
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
	display: block;
}


/* Applied to the parent item, if displayed, in either vertical or horizontal
   orientation. Must follow other styles. */
#houseMenuParentItem a
{ /* all links under the parent item (li) */
    font-weight: bold;
	background-color:Transparent;
	text-decoration: none;
	
	
}

a#houseMenuParentLink
{ /* parent link itself */
	font-weight: bold;
	background-color:Transparent;
	text-decoration: none;
	font-size: 9px;
}

a#houseMenuCurrentLink
{ /* current link itself */
	background-color:Transparent;
	text-decoration: none;
	font-size: 9px;
    font-weight: bold;
    color: #333;
}


#houseMenuVList90 li a:hover{
text-decoration:none;
	font-size: 9px;
    
    color: #5293db;

}
/* Applied to all unordered lists within the div named "houseMenuVertical" */
#houseMenuVstatic ul
{
	margin: 0;
	border-width:0px;
	border-bottom-color:#314D63;
	padding: 0;
	font-family: Verdana, Arial, Helvetica, Sans-Serif;
	font-size: 10px;
	list-style-type: none;
	width: 100%;
}

/* Applied to all list items within the div named "houseMenuVertical" */
#houseMenuVstatic li
{
   
	display:inherit;
	margin: 0;
	padding: 0;
	width: 100%;
	border-bottom-style:dotted;
	border-bottom-width:1px;
	border-bottom-color:#304C62;
	display:inherit;
}

/* Applied to all links. Use "li a" styles below to customize nested links. */
#houseMenuVstatic a
{
	padding-right: 6px;
	display: block;
	padding-left: 6px;
	padding-bottom: 4px;
	color: #314D63;
	padding-top: 4px;
	background-color: Transparent;
	text-decoration: none;
	font-weight: normal;
	width: 100%;
	_width: 100%;
	margin: 0;
}

/* Applied to all links. Use "li a" styles below to customize nested links. */
#houseMenuVstatic a:hover
{
	/*background-color: #336699;*/
	color: Red;
}

/* Applied to first-level links */
#houseMenuVstatic ul a
{
}

/* Applied to second-level links */
#houseMenuVstatic ul ul a
{
	padding-left: 12px;
	background-color: Transparent;
	width: 138px;
	/* hack for MacIE5 to ignore, while other browsers use \*/
	width: 132px;
	_width: 144px;
	/* end hack */
}

/* Applied to third-level links */
#houseMenuVstatic ul ul ul a
{
	padding-left: 18px;
	background-color: #6699cc;
	width: 138px;
	/* hack for MacIE5 to ignore, while other browsers use \*/
	width: 126px;
	_width: 144px;
	/* end hack */
}

/* Applied to fourth-level links */
#houseMenuVstatic ul ul ul ul a
{
	padding-left: 24px;
	background-color: #6699cc;
	width: 138px;
	/* hack for MacIE5 to ignore, while other browsers use \*/
	width: 120px;
	_width: 144px;
	/* end hack */
}

/* Applied to fifth-level links */
#houseMenuVstatic ul ul ul ul ul a
{
	padding-left: 30px;
	background-color: #6699cc;
	font-weight: normal;
	width: 138px;
	/* hack for MacIE5 to ignore, while other browsers use \*/
	width: 114px;
	_width: 144px;
	/* end hack */
}

.ArrowPointer
{
	cursor: default;
}

