
/* ================================================================ 
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.
=================================================================== */

.menu {
      width:900px;
      height:32px;
      font-size:11px;
      font-weight:normal;
      font-family: verdana,arial, Trebuchet MS, Tahoma, Sans-serif;
      position:relative;
      z-index:100;
      border-right:2px solid #fff;
      text-decoration:none;
}

/* hack to correct IE5.5 faulty box model */
* html .menu {
             width:901px;
             w\idth:900px;
}

/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
         padding:0;
         margin:0;
         list-style-type:none;
}

.menu ul ul {
            width:178px;
}

/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {
         float:left;
         width:180px;
         position:relative;
}

/* style the links for the top level */
.menu a, .menu a:visited {
                         display:block;
                         font-size:11px;
                         text-align: center;
                         text-decoration:none;
                         color:#fff;
                         font-weight:normal;
                         width:178px;
                         height:30px;
                         border:1px solid #fff;
                         border-width:2px 0px 2px 2px;
                         background:#505d58;
                         padding-left:0px;
                         line-height:29px;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited {text-decoration:none;width:179px; w\idth:178px;}

/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited {text-decoration:none;background:#505d58;}

/* style the second level hover */
.menu ul ul a.drop:hover{background:#c54031;text-decoration:none;}

.menu ul ul :hover > a.drop {background:#c54031;text-decoration:none;}

/* 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:31px;
            left:0;
            width:180px;
            border-top:2px solid #fff;
}

/* another hack for IE5.5 */
* html .menu ul ul {top:30px;t\op:31px;}


/* style the table so that it takes no ppart in the layout - required for IE to work */
.menu table {
            position:absolute;
            top:0;
            left:0;
            border-collapse:collapse;
}

/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {
                                     background:transparent url(images/opaque.png);
                                     color:#fff;
                                     height:auto;
                                     line-height:1.8em;
                                     padding:5px 5px;
                                     width:168px;
                                     border-width:0 2px 2px 2px;
                                     text-decoration:none;
                                     font-weight:normal;
}

/* yet another hack for IE5.5 */
* html .menu ul ul a, * html .menu ul ul a:visited {text-decoration:none;width:180px;w\idth:168px;}

/* style the top level hover */
.menu a:hover, .menu ul ul a:hover{color:#fff; background:#c54031;}

.menu :hover > a, .menu ul ul :hover > a {color:#fff;background:#c54031;}

/* 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; }

/* keep the third level hidden when you hover on first level list OR link */
.menu ul :hover ul ul{visibility:hidden;}

/* make the third level visible when you hover over second level list OR link */
.menu ul :hover ul :hover ul{ visibility:visible;}

/* special styling for IE5.5 and IE6 - transparency is non validating */
.menu ul li a:hover ul {
background:transparent filter: alpha(opacity=85);
 filter: progid:DXImageTransform.Microsoft.Alpha(opacity=85);
opacity:0.85;
margin-top:-1px; /* for IE5.5 faulty box model */
marg\in-top:-2px; /* for IE6 */
}