/* ================================================================ 
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/final_drop.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.
=================================================================== */

.menuall {width:1000px; height:30px; z-index:100; padding: 0px; margin: 0px; background-color: #00387B; }
.menuall img { border: 0px; }
/* hack to correct IE5.5 faulty box model */
* html .menuall {width:1000px; w\idth:1000px;}
/* remove all the bullets, borders and padding from the default list styling */
.menuall ul {padding: 0; margin: 0; list-style-type: none;}
.menuall ul ul {width: 122px;}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menuall li {float: left; width: 128px; position: relative;}
/* style the links for the top level */
.menuall a, .menuall a:visited {display:block;font-size:11px;text-decoration:none; text-align:center; color:#fff; width:122px; height:30px; border:0px solid #FFF; background:#003774; padding:0px; line-height:25px;}

/* a hack so that IE5.5 faulty box model is corrected */
* html .menuall a, * html .menuall a:visited {width:122px; w\idth:121px;}

/* style the second level background */
.menuall ul ul a.drop, .menuall ul ul a.drop:visited {background-color:red;}
/* style the second level hover */
.menuall ul ul a.drop:hover{background-color:#425DA5;}
.menuall ul ul :hover > a.drop {background-color:#425DA5;}
/* style the third level background */
.menuall ul ul ul a, .menuall ul ul ul a:visited {background:#425DA5;}
/* style the third level hover */
.menuall ul ul ul a:hover {background:#b2ab9b;}


/* hide the sub levels and give them a positon absolute so that they take up no room */
.menuall ul ul {visibility:hidden;position:absolute;height:0;top:30px;left:0; width:122px;}
/* another hack for IE5.5 */
* html .menuall ul ul {top:30px;t\op:31px;}

/* position the third level flyout menu */
.menuall ul ul ul{left:122px; top:-1px; width:122px;}

/* position the third level flyout menu for a left flyout */
.menuall ul ul ul.left {left:-122px;}

/* style the table so that it takes no ppart in the layout - required for IE to work */
.menuall table {position:absolute; top:0; left:0; border-collapse:collapse;;}

/* style the second level links */
.menuall ul ul a, .menuall ul ul a:visited {background:#425DA5; color:#FFF; height:auto; line-height:1em; padding:5px 10px; width:128px;border-width:0 1px 1px 1px;}
/* yet another hack for IE5.5 */
* html .menuall ul ul a, * html .menuall ul ul a:visited {width:150px;w\idth:128px;}

/* style the top level hover */
.menuall a:hover, .menuall ul ul a:hover{color:#fff; background:#003473;}
.menuall :hover > a, .menuall ul ul :hover > a {color:#fff;background:#003473;}

/* make the second level visible when hover on first level list OR link */
.menuall ul li:hover ul,
.menuall ul a:hover ul{visibility:visible; }
/* keep the third level hidden when you hover on first level list OR link */
.menuall ul :hover ul ul{visibility:hidden;}
/* make the third level visible when you hover over second level list OR link */
.menuall ul :hover ul :hover ul{ visibility:visible;}