/* ==========================
    CSS STYLES FOR HouseMenu
   ==========================
*/

/*********************************************************************
 Standard structural CSS that typically should not need to be changed
*********************************************************************/
#MIPaca, #MIPaca ul { /* all submenu lists */
	padding: 0;
	margin: 0;
	border: 0;
	list-style: none;
	white-space: nowrap;
	position: relative;
	z-index: 99999;
}

#MIPaca li { /* all list items */
	position: relative;
	display: inline;
	float: left;
	margin: 0;
	border: 0;
	border-right: 1px solid #fff;
	border-left: 1px solid #fff;
	padding: 0;
}

#MIPaca li li { /* all items under the top level */
	z-index: 11113;
}

#MIPaca a { /* all links within the menu wrapper */
	display: block;
	margin: 0; 
	border: 0;
	padding: 0;
}

#MIPaca li li a { /* all item links under the top level */
	margin: 0;
	border: 0;
	padding: 0;
}

#MIPaca li a:hover {
	margin: 0;
	border: 0;
	padding: 0;
}

#MIPaca li li a:hover {
	margin: 0;
	border: 0;
	padding: 0;
}

#MIPaca li ul {
	position: absolute;
	margin: 0;
	border: 0;
	padding: 0;
	z-index: 11112;
}

#MIPaca li ul ul { /* third-and-above-level lists */
	margin: 0;
	border: 0;
	padding: 0;
}

#MIPaca li:hover ul ul, 
#MIPaca li:hover ul ul ul, 
#MIPaca li.sfhover ul ul, 
#MIPaca li.sfhover ul ul ul {
	left: -9999px;
}

#MIPaca li:hover ul, 
#MIPaca li li:hover ul, 
#MIPaca li li li:hover ul, 
#MIPaca li.sfhover ul, 
#MIPaca li li.sfhover ul, 
#MIPaca li li li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
	z-index: 99999;
}

#MIPaca 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
*******************************************************/
#MIPaca, #MIPaca ul { /* all submenu lists */
	width: 100%;
	height: 34px;
	line-height: 24px;
}

#MIPaca li { /* all list items */
	height: 34px;
	/* hack for MacIE5 to ignore, while other browsers use \*/
	width: auto;
	_width: 1px;
	height: 34px;
	/* end hack */
	background-color: transparent;
	margin : 0 10 0 10;
}

#MIPaca 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: 26px;
	/* end hack */
	background-color: #A2B736;
	margin : 0;
}

#MIPaca a { /* all links within the menu wrapper */
	font-size: 16px;
	font-weight : bold;
	text-decoration : none;
	color : #fff;
	background-color: transparent;
	padding: 5px;
	width: auto;
	height: 30px;
	/* hack for MacIE5 to ignore, while other browsers use \*/
	_width: auto;
	height: 22px;
	/* end hack */
}

#MIPaca li li a { /* all item links under the top level */
	font-size: 16px;
	font-weight : bold;
	padding: 5px;
	width: 134px;
	height: 18px;
	/* hack for MacIE5 to ignore, while other browsers use \*/
	_width: 140px;
	height: 17px;
	/* end hack */
	overflow: hidden;
}

#MIPaca li a:hover {
	margin: 1px;
	padding: 4px;
	height: 22px;
	color: #F8CC37;
	background-color: transparent; 
}

#MIPaca li li a:hover {
	margin: 1px;
	padding: 4px;
	_width: 140px;
	height: 17px;
	color: #F8CC37;
	background-color: #466A00; 
	overflow: hidden;
}

#MIPaca li ul { /* second-level lists */
	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 #fff;
	margin: 0;
	/* hack for MacIE5 to ignore, while other browsers use \*/
	margin: 1px 0 0 0;
	_margin: 0;
	/* end hack */
	line-height: 14px;
	height: auto;

}
#MIPaca li ul ul { /* third-and-above-level lists */
	margin: -24px 0 0 144px;
	_margin: -24px 0 0 142px;
	border: solid 1px #fff;
	line-height: 14px;
}

/* Applied to the parent item, if displayed, in either vertical or horizontal
   orientation. Must follow other styles. */
#MIPaca #houseMenuParentItem a
{ /* all links under the parent item (li) */
	background-color: transparent; 
	text-decoration: none;
}

#MIPaca a#houseMenuParentLink
{ /* parent link itself */
	background-color: transparent; 
	text-decoration: none;
}

#MIPaca a#houseMenuCurrentLink
{ /* current link itself */
	margin: 1px;
	border: solid 1px #666;
	padding: 3px;
	height: 14px;
	color: #F8CC37;
	background-color: #ccc; 
	text-decoration: none;
}

