﻿/* ================================================================ 
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_drop2.html
Copyright (c) 2005-2007 Stu Nicholls. All rights reserved.
This stylesheet and the assocaited (x)html may be modified in any 
way to fit your requirements.
=================================================================== */
/* style the outer div to give it width */
.menu 
{
float: left;
width:720px;
font-size:100%;
margin: 16px 0 0 25px;
display: inline;
}
/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
padding:0;
margin:0;
list-style-type:none;
list-style-image: none;
float: left;
position: relative;
z-index: 1010;
display: inline;
}

.menu ul ul {
width:180px;
margin-top: 0px;
margin-left: 0px;
font-size: 90%;
position: relative;
z-index: 500;
}


/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {
float:left;
position:relative;
margin: 0;
}
/* style the links for the top level */
.menu a, .menu a.extra, .menu a:visited {
display:block;
text-decoration:none; 
color:#DAD9D8;  
height:32px; 
border:1px solid transparent; 
border-width:0px 0px 0 0;  
padding:0px; 
line-height:29px;
margin: 0 19px 0 0;
white-space: nowrap;
font-weight: bold;
font-size: 100%;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited 
{
width:30px;
w\idth:30px;
}

/* 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:32px;
left:-10px; 
width:150px;
border-top: solid 1px #534F4C;
z-index: 500;
}
/* another hack for IE5.5 */
* html .menu ul ul {
top:32px;
t\op:32px;
border-top: solid 1px #534F4C;
}

/* style the table so that it takes no part in the layout - required for IE to work */
.menu table {position:absolute; top:0; left:0;}
.menu table th, .menu table td{border: 0;}

/* style the second level links */
.menu ul ul a, .menu ul ul a:visited{
background:#000; 
color:#fff; 
height:auto; 
line-height:1.3em; 
padding:7px 10px; 
width:180px;
border: solid 1px #534F4C;
border-top: 0;
font-weight: bold;
opacity: 0.9;
-moz-opacity: 0.9;
filter: alpha(opacity=90);
position: relative;
z-index: 500;
/* yet another hack for IE5.5 */
}
* html .menu ul ul a{
width:180px;
w\idth:180px;
opacity: 0.9;
-moz-opacity: 0.9;
filter: alpha(opacity=90);
}


/* style the top level hover */
.menu a:hover{
color:#F99D1B; 
background:transparent;
text-decoration: none;
}
.menu :hover > a, .menu ul ul :hover > a {
color:#F99D1B;
background:transparent;
}
.menu ul ul :hover > a
{
    background: #150F03;
    color: #F99D17;
    text-decoration: none;
}

.menu ul ul a:hover, * html .menu ul ul a:hover
{
    color: #F99D17;
    background-color:#150F03;
    text-decoration: none;
}

/* 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; 
}

/* 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;}
