/* ================================================================ 
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:750px;*/ 
font-size:0.85em;
padding-bottom:200px;
float:left;
height:28px;
margin-top:115px;
background-color:#000000;
}
/* 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:11px;
text-decoration:none; 
color:#000; 
/*width:149px;*/
height:30px; 
/*border:1px solid #fff; 
border-width:1px 1px 0 0; */
background:#000; 
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:-110px;
}

.menu ul ul.two_links {
top:-44px;
}

.menu ul ul.four_links {
top:-88px;
}


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






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

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


