/* ================================================================ 
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 
{

height:180px;
font-size:90%;
margin:0; /* this page only */
list-style-type:none;
padding:0;
display:inline;
margin-left:auto;
margin-right:auto;

}

/* 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:180px;
display:inline;
}
/* style the list items */
.leftMenu li {
background-color: #B10049;
/*height:18px;*/
/* for IE7 */
float:left;
width:180px;
margin-bottom:2px;
background-image:url(/images/nav-btn-1.gif);
text-align:left;
}
.leftMenu li.leftsub {background:#B10049 url(/site_template/sub.gif) no-repeat right center;} 

/* get rid of the table */
.leftMenu table {position:absolute; border-collapse:collapse; top:10; left:10; z-index:100; font-size:1em;}

/* style the links */
.leftMenu a, .leftMenu a:visited {
display:block; 
text-decoration:none;
/*height:18px;*/
line-height:20px;
width:180px;
color:#004D77;
text-indent:20px;
font-family:Arial;
font-size:10px;
text-align:left;
text-transform:uppercase;
}
/* hack for IE5.5 */
* html .leftMenu a, * html .leftMenu a:visited {width:180px; w\idth:179px;}
/* style the link hover */
* html .leftMenu a:hover {color:#004D77; background:#FFFFFF url(/images/nav-btn-1.gif) no-repeat; position:relative;}

.leftMenu li:hover {position:relative;
background-image:url(/images/nav-btn-1.gif);}

/* For accessibility of the top level menu when tabbing */
.leftMenu a:active, .leftMenu a:focus {color:#c1D82F; background:#FFFF url(/images/nav-btn-1.gif) no-repeat;}

/* retain the hover colors for each sublevel IE7 and Firefox etc */
.leftMenu li:hover > a {color:#32CD32; background:#FFFFFF url(/images/nav-btn-1.gif) no-repeat;}
 
/* 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 url(transparent.gif);
}

/* 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;
}
