﻿body {
}

/* style the outer div to give it width */
.menu {font-size:9pt; text-align:left;}

/* remove all the bullets, borders and padding from the default list styling */
.menu ul
{
	padding: 0;
	margin: 0;
	list-style-type: none;
	text-align: left;
	height: 36px;
	background: darkblue;
}

/* style the sub-level lists */
.menu ul ul {width:10em;}

/* float the top list items to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu ul li {float:left;height:36px;line-height:36px; text-align:left; border-bottom:0px solid #fff; text-align :left;}

/* style the sub level list items */
.menu ul ul li {display:block;  padding-left:auto; width:14em; text-align:left; height:auto;position:relative;line-height:1em; background: darkblue; border-right:1px solid #fff; border-top:1px solid #fff; border-bottom:1px solid #fff; border-left:1px solid #fff;}

/* style the links for the top level */
.menu a, .menu a:visited {display:block; float:left;height:100%; text-align:left; font-size:9pt;text-decoration:none;color:#fff;background: darkblue;padding:0 3pt 0 3pt;}

/* style the sub level links */
.menu ul ul a, .menu ul ul a:visited {display:block; background: darkblue; text-align:left; color:#fff;width:12em;height:100%;line-height:1em; padding:0.5em 1em;}
.menu ul table ul a, .menu ul table ul a:visited  {width:14em; width:14em;}


/* style the table so that it takes no part in the layout - required for IE to work */
.menu table {position:absolute; left:0; top:0px; font-size:0em; z-index:-1; text-align:left;}
.menu ul ul table {left:-1px;}
.menu ul ul table ul.left {margin-left:2px; text-align:left;}

.menu li:hover {position:relative; text-align:left;}
* html .menu a:hover {position:relative; text-align:left;}

/* style the third level background */
.menu ul ul ul a, .menu ul ul ul a:visited {background: darkblue; text-align:left;}
/* style the fourth level background */
.menu ul ul ul ul a, .menu ul ul ul ul a:visited {background: darkblue; text-align:left;}
/* style the sub level 1 background */
.menu ul :hover a.sub1 {background: darkblue; text-align:left;}
/* style the sub level 2 background */
.menu ul ul :hover a.sub2 {background: darkblue; text-align:left;}

/* style the level hovers */
/* first */
.menu a:hover {color:#fff;background: darkblue; text-align:left;}
.menu :hover > a {color:#fff;background: darkblue; text-align:left;}
/* second */
.menu ul ul a:hover{color:#fff;background: darkblue; text-align:left;}
.menu ul ul :hover > a {color:#fff;background: darkblue; text-align:left;}
/* third */
.menu ul ul ul a:hover {background: darkblue; text-align:left;}
.menu ul ul ul :hover > a {background: darkblue; text-align:left;}
/* fourth */
.menu ul ul ul ul a:hover {background: darkblue; text-align:left;}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {visibility:hidden;position:absolute;height:0;top:3em;left:0;width:10em; text-align:left;}

/* position the third level flyout menu */
.menu ul ul ul{left:14em;top:0em;width:14em; text-align:left;}

/* position the third level flyout menu for a left flyout */
.menu ul ul ul.left {left:-10em; text-align:left;}

/* make the second level visible when hover on first level list OR link */
.menu ul li:hover ul, .menu ul a:hover ul {visibility:visible; height:auto; padding-bottom:1em; background:transparent url(images/trans.gif); text-align:left;}
/* keep the third level hidden when you hover on first level list OR link */
.menu ul :hover ul ul{visibility:hidden; text-align:left;}
/* keep the fourth level hidden when you hover on second level list OR link */
.menu ul :hover ul :hover ul ul{visibility:hidden; text-align:left;}
/* make the third level visible when you hover over second level list OR link */
.menu ul :hover ul :hover ul{visibility:visible; text-align:left;}
/* make the fourth level visible when you hover over third level list OR link */
.menu ul :hover ul :hover ul :hover ul {visibility:visible;  text-align:left;}


