/* ================================================================ 
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-2008 Stu Nicholls. All rights reserved.
This stylesheet and the associated (x)html may be modified in any 
way to fit your requirements.
=================================================================== */

.menu {
width: 770px;
height: auto;
position:relative; 
z-index:100;
font-family:arial, sans-serif;
padding: 0px;
}


/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
padding:0;
margin:0;
list-style-type:none;
height: 23px;
}
ul.main-menu {
border-top: 2px solid #000 !important;
}

/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {
float:left;
position:relative;
padding: 0;
}

/* style the links for the top level */
.menu a, .menu a:visited {
display:block;
font-size:12px;
text-decoration:none;
color:#000;
height:23px;
}

.menu ul li
{

}

.menu ul li a {
height: 23px;
overflow: hidden;
}
.menu ul li a:hover {
background-position: left bottom;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
visibility:hidden;
position:absolute;
top: 23px;
left:0;
height: auto;
border: 1px solid black;
width: 150px;
}
.menu ul ul a {
text-indent: 0;
}
/* style the second level links */
.menu ul ul li {
background-image: none !important;
padding: 0 !important;
}


/* CUSTOM */


.menu ul li {
float: left;
padding: 0 7px 0 0;
margin: 0;

position: relative;
}
.menu ul li ul {
list-style-type: none;
}

.nav_get_started a {
background: transparent url(../images/menu/get-started.jpg) no-repeat;
background-position: left top;
width: 84px;
display: block;
}
.nav_all_products a {
background: transparent url(../images/menu/all-products.jpg) no-repeat;
background-position: left top;
width: 84px;
display: block;
}
.nav_all_products a:hover {
background-position:  0px 0px; /* is for IE 6 */
}
.nav_pricing a {
background: transparent url(../images/menu/pricing.jpg) no-repeat;
background-position: left top;
width: 84px;
display: block;
}

.nav_quote a {
background: transparent url(../images/menu/request-quote.jpg) no-repeat;
background-position: left top;
width: 100px;
display: block;
}

.nav_order a {
background: transparent url(../images/menu/submit-an-order.jpg) no-repeat;
background-position: left top;
width: 115px;
display: block;
}
.nav_resources a {
background: transparent url(../images/menu/recources-faq.jpg) no-repeat;
background-position: left top;
width: 98px;
display: block;
}
.nav_case_studies a {
background: transparent url(../images/menu/case-studies.jpg) no-repeat;
background-position: left top;
width: 84px;
display: block;
}
.nav_custom_quote a {
background: transparent url(../images/menu/custom-quote.jpg) no-repeat;
background-position: left top;
width: 98px;
display: block;
}
.last_menu {
background-image: none !important;
}
/* --- */




/* style the table so that it takes no part in the layout - required for IE to work */
.menu table {
position: absolute;
top: 0;
left: 0;
border-collapse: collapse;
}



.menu ul ul a, .menu ul ul a:visited {
background-image: none !important;
background-color: lightyellow;
padding: 2px 0 0 5px;
border-bottom: 1px solid black;
width: 145px;
height: 19px;
font-size: 11px;
color: #677FAA;
}
.menu ul ul a:hover {
background-image: none;
background-color: #FFFFFF;
font-weight: bold;
color: #677FAA;
}


/* style the top level hover */
.menu a:hover, .menu ul ul a:hover{ color: #677FAA; }
.menu :hover > a, .menu ul ul :hover > a { color: #677FAA; }

/* 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; }
/* keep the third level hidden when you hover on first level list OR link */
.menu ul :hover ul ul{visibility:hidden;}
/* make the third level visible when you hover over second level list OR link */
.menu ul :hover ul :hover ul{ visibility:visible;}