/* --- Global --- */

.newmenu { height:40px; position:relative; z-index:100; width: 705px; background-color: #e5e5e5; font-family: Arial; margin-bottom: 18px; float: left; }
/* hack to correct IE5.5 faulty box model */
* html .newmenu {width:705px; w\idth:705px; }
/* remove all the bullets, borders and padding from the default list styling */
.newmenu ul {padding:0;margin:0;list-style-type:none;}
.newmenu ul ul {} /* width:149px; */
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.newmenu li {float:left;position:relative;} /* width:149px; */
/* style the table so that it takes no ppart in the layout - required for IE to work */
.newmenu table {position:absolute; top:0; left:0; border-collapse:collapse;;}

/* --- First level --- */

/* style the links for the top level */
.newmenu a, .newmenu a:visited {display:block;font-size:16px;text-decoration:none; color:#000; height:20px; padding:10px; line-height:20px; font-weight:bold; text-transform: uppercase; white-space: nowrap; }
/* a hack so that IE5.5 faulty box model is corrected */
* html .newmenu a, * html .newmenu a:visited {width:1px; w\idth:1px;} /* width:149px; w\idth:138px; */

/* style the top level hover */
.newmenu a:hover, .newmenu ul ul a:hover{color:#fff; background:#000;}
.newmenu :hover > a, .newmenu ul ul :hover > a {color:#fff; background:#000;}

/* --- Sublevel1 --- */

/* hide the sub levels and give them a positon absolute so that they take up no room */
.newmenu ul ul {visibility:hidden;position:absolute;height:0;top:40px;left:0;}
/* another hack for IE5.5 */
* html .newmenu ul ul {top:40px;t\op:40px;}

/* style the second level links */
.newmenu ul ul a, .newmenu ul ul a:visited {background:#000; color:#fff; height:auto; padding:10px; width:160px; font-size: 11px; }
/* yet another hack for IE5.5 */
* html .newmenu ul ul a, * html .newmenu ul ul a:visited {width:170px;w\idth:160px;}

/* style the second level background */
.newmenu ul ul a.drop, .newmenu ul ul a.drop:visited { background:#000; }
/* style the second level hover */
.newmenu ul ul a:hover { color:#fff; background:#66cc33;}
.newmenu ul ul :hover > a { color:#fff; background:#66cc33;}


/* --- Sublevel2 --- */

/* style the third level background */
.newmenu ul ul ul a, .newmenu ul ul ul a:visited { background:#666;color:#fff; }
/* style the third level hover */
.newmenu ul ul ul a:hover { color:#fff; background:#66cc33; }
.newmenu ul ul :hover > a { color:#fff; background:#66cc33; }

/* position the third level flyout menu */
.newmenu ul ul ul{left:160px; top:0px; width:160px;}
/* position the third level flyout menu for a left flyout */
.newmenu ul ul ul.left {left:-1608px;}





/* make the second level visible when hover on first level list OR link */
.newmenu ul li:hover ul,
.newmenu ul a:hover ul{visibility:visible; }
/* keep the third level hidden when you hover on first level list OR link */
.newmenu ul :hover ul ul{visibility:hidden;}
/* make the third level visible when you hover over second level list OR link */
.newmenu ul :hover ul :hover ul{ visibility:visible;}