/* ================================================================ 
This copyright notice must be untouched at all times.

The original version of this style sheet and the associated (x)html
is available at http://www.cssplay.co.uk/menus/padding.html
Copyright (c) 2005-2007 Stu Nicholls. All rights reserved.
This style sheet and the associated (x)html may be modified in any 
way to fit your requirements.
=================================================================== */
/* style the outer div to give it width */
.menu {width:960px;
font-family: arial, sans-serif;
font-size:13px;
padding-left:10px;}

/* remove all the bullets, borders and padding from the default list styling */
.menu ul {padding:0;
margin:0;
list-style-type:none;
padding-top:5px;
}

/* style the sub-level lists */
.menu ul ul {margin:0; padding:0;}

/* float the top list items to make it horizontal and a relative position so that you can control the drop down menu position */
.menu ul li {float:left; display:block;}

/* style the sub level list items */
.menu ul ul li {display:block;width:12em;height:auto; line-height:1em;}

/* style the links for the top level, left aligned using padding only */
.menu a, .menu a:visited {display:block;float:left;height:20px; text-decoration:none;color:#fff;background:transparent; padding:0 15px 0px 5px; border-left:1px solid #fff;}

/* style the sub level links */
.menu ul ul a, .menu ul ul a:visited {display:block; background-color:#676767; color:#fff;width:150px;height:100%;line-height:13px; padding:5px 5px; border-bottom:1px solid #fff; border-left: solid 1px #fff;}

/* style the first top level link to not have a left border */
.first a, .first a:visited {border-left:none;}

/* style the table so that it takes no part in the layout - required for IE to work */
.menu table {border-collapse:collapse; padding:0; margin:-1px; width:0; height:0; font-size:1em;z-index:1;}


/* style the level hovers */
/* first */
* html .menu a:hover {position:relative; z-index:100;}
.menu li:hover {position:relative;;}
.menu :hover > a {}

/* second */
* html .menu ul ul a:hover{position:relative; z-index:110; }
.menu ul ul li:hover {position:relative;}
.menu ul ul :hover > a {}

/* hide the sub levels and give them a position absolute so that they take up no room */
.menu ul ul {visibility:hidden;position:absolute;height:0; left:0; top:0; width:14em;}

/* make the second level visible when hover on first level, with padding for vertical alignment */
.menu ul :hover ul{visibility:visible; height:auto; margin:20px 0px 0px 0px; background:transparent;}
