@charset "utf-8";

/* ================================================================ 
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:980px; position:relative; height:36px; z-index:9000; overflow:hidden }

/* remove all the bullets, borders and padding from the default list styling */
.menu ul { width:980px; overflow:hidden }
.menu ul li ul { visibility:hidden; position:absolute; height:0; left:0; border-top:1px solid #fff; width:232px; }

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

/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu ul li { float:left; position:relative; margin:0 1px 0 0; width:325.67px; text-align:center;
background: rgb(35,35,35); /* Old browsers */
background: -moz-linear-gradient(top,  rgba(35,35,35,1) 0%, rgba(17,17,17,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(35,35,35,1)), color-stop(100%,rgba(17,17,17,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top,  rgba(35,35,35,1) 0%,rgba(17,17,17,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top,  rgba(35,35,35,1) 0%,rgba(17,17,17,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top,  rgba(35,35,35,1) 0%,rgba(17,17,17,1) 100%); /* IE10+ */
background: linear-gradient(to bottom,  rgba(35,35,35,1) 0%,rgba(17,17,17,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#232323', endColorstr='#111111',GradientType=0 ); /* IE6-9 */

}
.menu ul li.last { margin:0; width:140px; }

/* style the links for the top level */
.menu ul li a,
.menu ul li a:visited { display:block; padding:7px 7px 8px 7px; text-decoration:none !important; color:#fff; font-weight:bold; font-size:14px; }

.menu ul ul li { border-bottom:1px solid #fff; }

/* another hack for IE */
* html .menu ul ul { top:35px; }

/* style the second level links */
.menu ul li ul li a,
.menu ul li ul li a:visited { background-color:#8cc800; color:#fff; font-size:12px; font-weight:normal; height:auto; line-height:12px; padding:5px 5px 5px 7px; }

/* style the second level hover */
.menu ul a:hover{ color:#fff; background-color:#8cc800;



}
.menu ul :hover > a { color:#fff; background-color:#8cc800;


/* style the top level hover */
.menu a:hover,
.menu ul li ul li a:hover { color:#fff; background-color:#00a8ff; text-decoration:none; }
.menu :hover > a,
.menu ul li ul :hover > a { color:#fff; background-color:#00a8ff; text-decoration:none; }

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

.menu ul ul li.active a { background-color:#3488cf !important; }
.menu ul ul li.active a:hover { color:#fff; }
.menu ul ul li.active:hover a { color:#fff; }
