/* ================================================================ 
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 {
width:598px;
padding:10px 0 10px 10px;
float:right;
height:28px;
//margin-top:115px;
background-color:#fff;
border: 1px solid #000;
}
/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
padding:0;
margin:0;
list-style-type:none;
}

/* 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:150px;*/
position:relative;
}
/* style the links for the top level */
.menu a, .menu a:visited {
display:block;
font-size: 1.6em;
text-decoration:none; 
color:#0066cc; 
/*width:149px;*/
height:30px; 
/*border:1px solid #fff; 
border-width:1px 1px 0 0; */
padding-left:5px;
line-height:29px;
}


/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited {
background:#fff;
}
/* style the second level hover */
.menu ul ul a.drop:hover{
background:#fff;
}
.menu ul ul :hover > a.drop {
background:#fff;
}



/* 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:1%;
top:29px;
left:5px; 
width:130px;
}


/*move to top of images*/
.menu ul ul.one_links {
top:58px;
}

.menu ul ul.two_links {
top:29px;

}


/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {
background:#fff; 
color:#000;
font-size:1.1em;
height:1%; 
line-height:1em; 
padding:5px 10px; 
width:130px;
border-bottom:1px solid #000;
border-left:1px solid #000;
border-right:1px solid #000;
}






/* style the top level hover */
.menu a:hover, .menu ul ul a:hover {
color:#000; 
background:#fff;
}
/*.menu :hover > a, .menu ul ul :hover > a {
//color:#fff;
background:#fff;
}*/

/* 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;
margin:0;
}

.menu ul li:hover ul {
visibility:visible;
margin:0;
}

/* style the top level hover */
.menu ul ul a:hover {
//color:#fff; 
background:#ccc;
}
