/* ==========================
    CSS STYLES FOR HouseMenu
   ==========================
*/

/* Vertical Menu */
#ICEANoFoodMenu ul { /* all lists */
	margin: 0;
	padding: 0;
	border: none; /* solid 1px #999; */
	list-style-type: none;
	list-style: none;
	float: left;
	width: 98px;
	/*
	font-family: Verdana, Arial, Helvetica, Sans-Serif;
	font-size: 11px; */
	background: transparent;
}

#ICEANoFoodMenu li { /* all list items */
	margin: 0;
	padding: 1;
	border: 0;
	list-style-type: none;
	list-style: none;
	position: relative;
	float: left;
	width: 98px;
	/* hack for MacIE5 to ignore, while other browsers use \*/
	width: 96px;
	_width: 100%; /* width recognized by IE only to handle box model issues */
	/* end hack */
	line-height : 11px;
}

#ICEANoFoodMenu li ul { /* second-level lists */
	position: absolute;
	left: -9999px;
	margin-left: 96px;
	_margin-left: 96px;
	margin-top: -21px;
	border: solid 1px #999;
	z-index: 999;
	background: #F8F9F5;

}

#ICEANoFoodMenu li ul ul { /* third-and-above-level lists */
	left: -9999px;
	z-index: 999;
}

#ICEANoFoodMenu a {
	display: block;
	width: 98px;
	/* hack for MacIE5 to ignore, while other browsers use \*/
	width: 98px;
	_width: 100%; /* width recognized by IE only to handle box model issues */
	/* end hack */
	color: #333;
	font-weight: normal; /* bold; */
	text-decoration: none;
	/* background-color: #eee; */
	padding: 1px 4px 2px 4px;
	opacity: .9;
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=90);
}

#ICEANoFoodMenu li a:hover {
	color: white;
	background-color: #369;
}

#ICEANoFoodMenu li:hover ul ul, 
#ICEANoFoodMenu li:hover ul ul ul, 
#ICEANoFoodMenu li.sfhover ul ul, 
#ICEANoFoodMenu li.sfhover ul ul ul {
	left: -9999px;
}

#ICEANoFoodMenu li:hover ul, 
#ICEANoFoodMenu li li:hover ul, 
#ICEANoFoodMenu li li li:hover ul, 
#ICEANoFoodMenu li.sfhover ul, 
#ICEANoFoodMenu li li.sfhover ul, 
#ICEANoFoodMenu li li li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
	z-index: 999;
}

#ICEANoFoodMenu iframe {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 0;
	filter: progid:DXImageTransform.Microsoft.Alpha(style=0,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) */
	color: #990000;
	background-color: #F8F9F5;
	text-decoration: none;
}

a#houseMenuParentLink
{ /* parent link itself */
	color: #eeeeee;
	background-color: #333;
	text-decoration: none;
}

a#houseMenuCurrentLink
{ /* current link itself */
	color: #990000;
	background-color: #F8F9F5;
	text-decoration: none;
}

