
/* SUBMENU STYLES :::::::::::::::::::::::::::::::::::::::::::::: */
/* ================================================================ 
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/flyout2.html
Copyright (c) 2005-2007 Stu Nicholls. All rights reserved.
This stylesheet and the assocaited (x)html may be modified in any 
way to fit your requirements.
=================================================================== */
/* position the first div */

.menu {
position:absolute;
top:0px;
left:0px; 
margin:0px; /* this page only */
color:#666666;
}


/* position the second div */
.menu2 {
position:absolute;
top:0px;
left:150px; 
margin:0px; /* this page only */

}

/* remove all the bullets, borders and padding from the default list styling - position the div - style the font for subitems*/
.menu ul, .menu2 ul {
position:absolute;
top:0px;
left:0px; 
padding:0;
margin:0;
list-style-type:none;
font-family: sans-serif, Verdana, Arial, Helvetica, sans-serif;
color:#666666;
text-transform:lowercase;
width:150px;
overflow:visible;

}




/* hack for IE5.5 */
* html .menu ul, .menu2 ul {margin-left:-16px; ma\rgin-left:0;}

/* position relative so that you can position the sub levels */
/* background color of block + line height*/
.menu li, .menu2 li {
position:relative;
background:#FFFFFF;
height:15px;
margin-bottom: 5px;
}

/* get rid of the table */
.menu table, .menu2 table {position:absolute; border-collapse:collapse; top:0; left:0; z-index:9; font-size:1em;}

/* style the links */
.menu a, .menu a:visited, .menu2 a, .menu2 a:visited {
display:block;
text-decoration:none;
height:20px;
width:130px;
font-family: Verdana, Arial, Helvetica, sans-serif;
color:#999999;
font-size:11px;
text-indent:5px;
border:0px solid #FFF;
border-width:0 1px 1px 0;
overflow:visible;
}


/* hack for IE5.5 */
* html .menu a, * html .menu a:visited {background:#cccccc; width:150px; w\idth:149px;}

* html .menu2 a, * html .menu2 a:visited {background:#cccccc; width:150px; w\idth:149px;}

/* style the graphic image hover to not show */
* html .menu a:hover {color:#3c3c3c; background:#ffffff;}
* html .menu2 a:hover {color:#3c3c3c; background:#ffffff;}

.menu :hover > a, .menu2 :hover > a {
color:#3c3c3c; 
background:#ffffff;
}

/* style the link hover */
* html .sub a:hover {color:#FFFFFF; background:#888779;}


.sub :hover > a{
color:#FFFFFF; 
background:#888779;
}




/* hide the sub levels and give them a positon absolute so that they take up no room */

/* position the subitems here!!!    */

.menu ul ul {
visibility:hidden;
position:absolute;
top:30px;
left:13px; 
}

.menu2 ul ul {
visibility:hidden;
position:absolute;
top:30px;
left:25px; 
}
/* make the second level visible when hover on first level list OR link */
.menu ul li:hover ul,
.menu ul a:hover ul, 
.menu2 ul li:hover ul,
.menu2 ul a:hover ul {
visibility:visible;
}



