/* ================================================================ 
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.
=================================================================== */
.leftMenu 
{
width:190px;
height:180px;
/*font-size:90%;*/
margin:0; /* this page only */
list-style-type:none;
padding:0;
display:inline;
}

/* remove all the bullets, borders and padding from the default list styling */
.leftMenu ul {
position:relative;
z-index:500;
padding:0;
margin:0;
list-style-type:none;
/*width:190px;*/
display:inline;
}
/* style the list items */
.leftMenu li {
background-color: #4C86B9;
/*height:18px;*/
/* for IE7 */
float:left;
width:190px;
/*height:28px;*/
text-align:left;
vertical-align:middle;
}
.leftMenu li.leftsub {background:#4C86B9 ;} 

/* get rid of the table */
.leftMenu table {position:absolute; border-collapse:collapse; top:10; left:10; z-index:100; }

/* style the links */
.leftMenu a, .leftMenu a:visited 
{
display:block; 
text-decoration:none;
height:30px;
width:190px;
color:#e5eeF5;
padding-left:3px;
padding-right:1px;
padding-top:3px;
font-family:Arial;
font-size:12px;
line-height:12px;
text-align:left;
vertical-align:middle;
background-image: url(/site_template/images/navbg.gif);
background-repeat: repeat-x;
}
/* hack for IE5.5 */
* html .leftMenu a, * html .leftMenu a:visited {width:190px; }
/* style the link hover */
* html .leftMenu a:hover 
{
	vertical-align:middle;
	display:block; 
	text-decoration:none;
	color:#FFFFFF;
	background:#4C86B9 url(/site_template/images/navbg.gif) repeat-x;font-family:Arial;
	font-size:12px;
	/*position:relative; 
	width:190px;
	vertical-align:middle;
	*/
	}

.leftMenu li:hover {position:relative;}

/* For accessibility of the top level menu when tabbing */
.leftMenu a:active, .leftMenu a:focus {color:#FFFFFF; background:#4C86B9;}

/* retain the hover colors for each sublevel IE7 and Firefox etc */
.leftMenu li:hover > a {color:#ffffff;}
 
/* hide the sub levels and give them a positon absolute so that they take up no room */
.leftMenu li ul {
visibility:hidden;
position:absolute;
top:-30px;
/* set up the overlap (minus the overrun) */
left:100px;
/* set up the overrun area */
padding:30px;
/* this is for IE to make it interpret the overrrun padding */
background:transparent ;
}

/* for browsers that understand this is all you need for the flyouts */
.leftMenu li:hover > ul {visibility:visible;}


/* for IE5.5 and IE6 you need to style each level hover */

/* keep the third level+ hidden when you hover on first level link */
.leftMenu ul a:hover ul ul{
visibility:hidden;
}
/* keep the fourth level+ hidden when you hover on second level link */
.leftMenu ul a:hover ul a:hover ul ul{
visibility:hidden;
}
/* keep the fifth level hidden when you hover on third level link */
.leftMenu ul a:hover ul a:hover ul a:hover ul ul{
visibility:hidden;
}

/* make the second level visible when hover on first level link */
.leftMenu ul a:hover ul {
visibility:visible;
}
/* make the third level visible when you hover over second level link */
.leftMenu ul a:hover ul a:hover ul{ 
visibility:visible;
}
/* make the fourth level visible when you hover over third level link */
.leftMenu ul a:hover ul a:hover ul a:hover ul { 
visibility:visible;
}
/* make the fifth level visible when you hover over fourth level link */
.leftMenu ul a:hover ul a:hover ul a:hover ul a:hover ul { 
visibility:visible;
}
