/* ================================================================ 
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.
=================================================================== */

.submenu {
font-family:Arial, Helvetica, sans-serif;
width:880px;
font-size:16px;
position:absolute;
z-index:100;
background:transparent;
}

/* hack to correct IE5.5 faulty box model */
* html .submenu {width:881px; w\idth:880px;}

/* remove all the bullets, borders and padding from the default list styling */
.submenu ul {
padding:0;
margin:0;
list-style-type:none;
background:transparent;
}

/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.submenu li {
float:left;
position:relative;
top:0px;
left:12px;
background:transparent;
padding: 0 0 0px 0;
}

/* style the links for the top level */
.submenu a,
.submenu a:visited {
display:block;
font-size:16px;
text-decoration:none;
color:#2a4a85;
background:transparent;
padding: 0 24.5px 0px 30px;
line-height:25px;
}

/* JFdR styling for top and lower levels*/
.submenu a:hover{
color:#fff;
}
.submenu .top li.lower a {
color:#2a4acc;
}
.submenu .top li.lower a:hover{
color:#fff;
}

/* Original Styling
.submenu a:hover,
.submenu ul ul a:hover{
color:#fff;
background:transparent;
}

.submenu :hover > a,
.submenu ul ul :hover > a {
color:#fff;
background:transparent;
}
*/

/* These also seem unecessary...*/
/* style the second level background */
.submenu ul ul a.drop,
.submenu ul ul a.drop:visited {
background:#fff;
}

/* style the second level hover */
.submenu ul ul a.drop:hover{
background:#fff;
}

.submenu ul ul :hover > a.drop {
background:#fff;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.submenu ul ul {
visibility:hidden;
position:absolute;
top:24px;
left:10px;
width:194px;
padding: 0 0 0 0;
margin: 0;
list-style: none;
}

/* another hack for IE5.5 */
* html .submenu ul ul {top:24px;t\op:25px;}

/* style the table so that it takes no part in the layout - required for IE to work */
.submenu table {
position:absolute;
top:0px;
left:0px;
border-collapse:collapse;
}

/* style the second level links */
.submenu ul ul a,
.submenu ul ul a:visited {
background:#919db5;
padding:0px 0px 0 7px;
width:194px;
}

/* yet another hack for IE5.5 */
* html .submenu ul ul a,
* html .submenu ul ul a:visited {width:150px;w\idth:128px;}

/* make the second level visible when hover on first level list OR link */
.submenu ul li:hover ul,
.submenu ul a:hover ul{visibility:visible; }

