/* ================================================================ 
This copyright notice must be untouched at all times.

The original version of this stylesheet and the associated (x)html
is available at http://www.cssplay.co.uk/menus/flyout_4level.html
Copyright (c) 2005-2007 Stu Nicholls. All rights reserved.
This stylesheet and the associated (x)html may be modified in any 
way to fit your requirements.
=================================================================== */
.menu 
{
	font: normal normal bold 11pt sans-serif;
	position: absolute;
	top: 138px;
	left: 25px;
	width: 90px;
	z-index:10;
}

/* remove all the bullets, borders and padding from the default list styling */
.menu ul 
{
	list-style-type:none;
	width:90px;
	left:0px;
	margin: 0px;
	padding: 0px;
}

/* style the list items */
.menu li 
{
	width:78px;
	padding: 12px 5px 12px 5px;
	text-align: right;
}

.menu li.sub 
{
	padding: 12px 25px 12px 5px;
	width: 78px;
	background: url(arrow_off.png) no-repeat scroll 95px 16px;
} 

/* style the links */
.menu a, .menu a:visited 
{
	display:block; 
	text-decoration:none;
	color:#e7e680;
}

/* style the link hover */
* html .menu a:hover 
{
	color:#d43433; 
}

.menu li:hover 
{
	position:relative;
}

/* For accessibility of the top level menu when tabbing */
.menu a:active, .menu a:focus 
{
	/*color:#fffec2;*/
	color:#d43433; 
}

/* retain the hover colors for each sublevel IE7 and Firefox etc */
.menu li:hover > a 
{
	color:#d43433; 
}
 
/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu li ul 
{
	visibility:hidden;
	position:absolute;
	margin-top:-30px;
	left:105px;
	width:220px;
	background:url(shadow.png);
	z-index:100;
}

.menu li ul li
{
	width:220px;
	padding: 12px 25px 12px 5px;
	text-align:left;
}

/* for browsers that understand this is all you need for the flyouts */
.menu li:hover > ul 
{
	visibility:visible;
}

/* keep the third level+ hidden when you hover on first level link */
.menu ul a:hover ul ul
{
	visibility:hidden;
}

/* keep the fourth level+ hidden when you hover on second level link */
.menu ul a:hover ul a:hover ul ul
{
	visibility:hidden;
}

/* keep the fifth level hidden when you hover on third level link */
.menu ul a:hover ul a:hover ul a:hover ul ul
{
	visibility:hidden;
}

/* make the second level visible when hover on first level link */
.menu ul a:hover ul 
{
	visibility:visible;
}

/* make the third level visible when you hover over second level link */
.menu ul a:hover ul a:hover ul
{ 
	visibility:visible;
}

/* make the fourth level visible when you hover over third level link */
.menu ul a:hover ul a:hover ul a:hover ul 
{ 
	visibility:visible;
}

/* make the fifth level visible when you hover over fourth level link */
.menu ul a:hover ul a:hover ul a:hover ul a:hover ul 
{ 
	visibility:visible;
}