/* ================================================================ 
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 associated (x)html may be modified in any 
way to fit your requirements.
=================================================================== */
.vmenu {
z-index:99;
margin:0px; /* this page only */
}

/* remove all the bullets, borders and padding from the default list styling */
.vmenu ul {
padding:0;
margin:0;
list-style-type:none;
width:149px;
}
/* hack for IE5.5 */
* html .vmenu ul {margin-left:-16px; ma\rgin-left:0;}

/* position relative so that you can position the sub levels */
.vmenu li {
position:relative;
background:#00ffff; /*non-IE browsers background for all levels - overidden in config.css */
height:22px;
z-index:99;	/*added because flyouts were behind fadeshows*/
}

/* get rid of the table */
.vmenu table {position:absolute; border-collapse:collapse; top:0; left:0; z-index:99; font-size:12px;}

/* style the links */
.vmenu a, .vmenu a:visited {
display:block; 
text-decoration:none;
font-weight:bold;		/* makes the text on the vertical menu bold */
height:21px;
line-height:21px;
width:148px;
color:#000000;
text-indent:2px;
border:1px solid #000066;	/* vmenu border width-type-colour - overidden in config.css */
border-width:0 1px 1px 1px;
}
/* hack for IE5.5 */
* html .vmenu a, * html .vmenu a:visited {background:#00ffff;width:149px; w\idth:148px;}  /* IE background for all levels - overidden in config.css */

/* TEXT AND BACKGROUND COLOURS FOR ALL MENUS WERE HERE BUT HAVE BEEN MOVED TO CONFIG.CSS */

/* HOVER COLOURS WERE HERE BUT HAVE BEEN MOVED TO CONFIG.CSS */

/* hide the sub levels and give them a position absolute so that they take up no room and style the top border*/
.vmenu ul ul {
visibility:hidden;
position:absolute;
top:-1px;						/* lifts every submenu by 1px to correct misalignment with parent */
left:149px;
width:150px;
}
/* make the second level visible when hover on first level list OR link */
.vmenu ul li:hover ul, .vmenu ul a:hover ul {
visibility:visible;
}

/* keep the third level hidden when you hover on first level list OR link */
.vmenu ul :hover ul ul {
visibility:hidden;
}
/* keep the fourth level hidden when you hover on second level list OR link */
.vmenu ul :hover ul :hover ul ul {
visibility:hidden;
}
/* make the third level visible when you hover over second level list OR link */
.vmenu ul :hover ul :hover ul { 
visibility:visible;
}
/* make the fourth level visible when you hover over third level list OR link */
.vmenu ul :hover ul :hover ul :hover ul { 
visibility:visible;
}
