/* 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:100;
right:1px;
top:-55px;
}

/* style all the links */
.menu a, .menu :visited {
display:block;
font-size:13px;
width:auto;
margin-left:10px;
padding-right:5px;
padding:2px 0px 6px;
color:#ffffff;
background:#faafba;
text-decoration:none;
margin-right:0px;
border-left:0px solid #fff;
text-align:right;
font-family:arial,verdana, sans-serif;
}
/* style the links hover */
.menu :hover{
color:#ffffff;
background:#faafba;
}

/* hide the sub level links */
.menu ul ul {
visibility:hidden;
position:absolute;
width:131px;
height:0;
}
/* make the sub level visible on hover list or link */
.menu ul li:hover ul,
.menu ul a:hover ul{
visibility:visible;
}












/* ================================================================ 
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/dd_valid.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 
.menu {font-family: verdana, arial, sans-serif; width:595px; height:40px; position:relative; font-size:15px; z-index:100;}
.menu ul li a, .menu ul li a:visited {display:block; text-decoration:none; color:none;padding:5px; height:40px; text-align:right; color:#ffffff; border:0px solid #fff; background:none; line-height:20px; font-size:15px; overflow:hidden;}
.menu ul {padding:0; margin:0; list-style: none;}
.menu ul li {float:right; position:relative;}
.menu ul li ul {display: none;}

 specific to non IE browsers 
.menu ul li:hover a {color:#8a8687; background:none;}
.menu ul li:hover ul {display:block; position:absolute; top:21px; left:0; width:105px;}
.menu ul li:hover ul li a.hide {background:#ff2c6a; color:#fff;}
.menu ul li:hover ul li:hover a.hide {background:#6fc; color:#000;}
.menu ul li:hover ul li ul {display: none;}
.menu ul li:hover ul li a {display:block; background:#ff2c6a; color:#ffffff;}
.menu ul li:hover ul li a:hover {background:#ff2c6a; color:#575d68;}
.menu ul li:hover ul li:hover ul {display:block; position:absolute; left:105px; top:0;}
.menu ul li:hover ul li:hover ul.left {left:-105px;}
*/
