/* CSS Document */
/* ================================================================ 
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_drop.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.
=================================================================== */


#drop_menu {
width:620px;
position:relative;
z-index:100;
left:168px;
}

/* hack to correct IE5.5 faulty box model */
* html #drop_menu {
	width:621px;
	w\idth:620px;
}

/* remove all the bullets, borders and padding from the default list styling */
#drop_menu ul {
padding:0;
margin:0;
height:20px;
list-style-type:none;
border:1px solid #fff; 
border-width:0 0 0 1px;
}


/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
#drop_menu li {
float:left;
position:relative;
}
/* style the links for the top level */
#drop_menu a {
display:block;
font-size:14px;
font-weight:bold;
text-transform:uppercase;
text-decoration:none;
text-align:center; 
color:#CCFF33; 
width:123px; 
height:20px; 
border:1px solid #fff; 
border-width:0 1px 1px 0; 
background:#996600;
line-height:20px;
padding:0 12px 0 12px;
}

#drop_menu a.home {	 
width:50px; 
}

#drop_menu a.contact {	
width:91px; 
}

#drop_menu a.mobile_wed {	
width:246px; 
}

/* style the top level hover */
#drop_menu a:hover {
color:#fff; 
background:#003300;
}
#drop_menu :hover > a {
color:#fff;
background:#003300;
}

/* style the 2nd level background */
#drop_menu ul ul  a {
background:#b87c03;
}

/* style the 2nd level hover */
#drop_menu ul ul a:hover{
color:#fff; 
background:#024d02;
}
#drop_menu ul ul :hover > a{
color:#fff;
background:#024d02;
}

/* style the 3rd level background */
#drop_menu ul ul ul a {
background:#b87c03;
}
/* style the 3rd level hover */
#drop_menu ul ul ul a:hover {
color:#fff;
background:#025902;
}
#drop_menu ul ul ul :hover > a{
color:#fff;
background:#025902;
}


/* hide the sub levels and give them a positon absolute so that they take up no room */
#drop_menu ul ul {
visibility:hidden;
position:absolute;
height:0;
top:21px;
left:0; 
}

/* position the second level flyout menu */
#drop_menu ul ul {
left:-10px; 
top:20px;
width:150px;
}

/* position the third level flyout menu */
#drop_menu ul ul ul{
left:174px; 
top:0;
width:150px;
}

/* style the table so that it takes no ppart in the layout - required for IE to work */
#drop_menu table {position:absolute; top:0; left:0;}

/* style the second level links */
#drop_menu ul ul a, #drop_menu ul ul a:visited { 
height:20px; 
line-height:20px; 
width:138px;
}

#drop_menu ul ul a.lg { 
height:20px; 
line-height:20px;
width:150px;
}

/* make the second level visible when hover on first level list OR link */
#drop_menu ul li:hover ul,
#drop_menu ul a:hover ul {
visibility:visible; 
}
/* keep the third level hidden when you hover on first level list OR link */
#drop_menu ul :hover ul ul{
visibility:hidden;
}

/* make the third level visible when you hover over second level list OR link */
#drop_menu ul :hover ul :hover ul{ 
visibility:visible;
}


