/* ================================================================ 
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/drop_variations.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.
=================================================================== */
 /* common styling */

/* make menu horizontal */

.menu {
font-family:Arial, Helvetica, sans-serif;
font-size:11px;
}

.menu ul li {
float:left;
position:relative;
}


/* set up the default top level links */
.menu ul li a, .menu ul li a:visited {
display:block; 
text-decoration:none; 
color:#000; 
height:1.5em;
font-weight:bold;
color:#fff; 
background:transparent; 
padding-left:10px; 
line-height:1.5em;
margin-right:2px;
text-align:center;
}

/*trying it out-----------------------------------------------------*/
/* remove the bullets, padding and margins from the lists */
.menu ul{
list-style-type:none;
padding:0;
margin:0;
}
/* make the top level links horizontal and position relative so that we can position the sub level */
.menu li{
float:left;
position:relative;
z-index:100;
}



/* use the table to position the dropdown list */
.menu table{ 
position:absolute;
border-collapse:collapse;
z-index:80;
left:0px;
top:18px;
}

/* style all the links under 50px */
.menu a, .menu :visited {
display:block;
font-size:11px;
font-weight:bold;
width:140px;
padding:3px 0;
color:#fff;
text-decoration:none;
margin:0px;
text-align:center;
}

/* style all the links at 100px */
.menuA a, .menuA :visited {
display:block;
font-size:11px;
font-weight:bold;
width:80px;
padding:3px 0;
color:#fff;
text-decoration:none;
margin:0px;
text-align:center;
}
/* style all the links over 100px */
.menuB a, .menuB :visited {
display:block;
font-size:11px;
font-weight:bold;
width:80px;
padding:3px 0;
color:#fff;
text-decoration:none;
margin:0px;
text-align:center;
}

/* style the top level hover */
.menu ul li:hover a,
.menu ul li a:hover {
color:#AF2D2D;
border-bottom:8px solid transparent;
}


/* hide the sub level links */
.menu ul ul {
visibility:hidden;
position:absolute;
width:80px;
height:0;
}
/* make the sub level visible on hover list or link */
.menu ul li:hover ul,
.menu ul a:hover ul{
visibility:visible; left: -1px;
}





/* style the drop down links with no hover */
.menu ul li:hover ul li a,
.menu ul li a:hover ul li a {
display:block; 
background:transparent url(opaque.png); 
color:#000; 
border:1px solid #ddd;
margin:0;
color:#333;
font-weight:normal; 
font-size:1em;
height:auto; 
line-height:1em; 
padding:5px; 
width:130px;
font-weight:bold;
text-align: left;
}



/* style the drop down menu links when hovered */
.menu ul li:hover ul li a:hover,
.menu ul li a:hover ul li a:hover {
background: #fff; 
color:#ff0000;
font-weight:bold;
width: 130px;
text-align: left;
}

/* special styling for IE5.5 and IE6 - transparency is non validating */
.menu ul li a:hover ul {
background:transparent filter: alpha(opacity=80);
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=80);
opacity:0.8;
margin-top:-1px; /* for IE5.5 faulty box model */
marg\in-top:-1px; /* for IE6 */
}
/* IE5.5 hack for faulty box model in drop down menu */
.menu ul li a:hover ul li a {
background:#fff;
width:130px; /* for IE5.5 faulty box model */
w\idth:130px; /* for IE6 */
}
