/* Dropdown Menu using CSS 3 levels can be used! */

.dropmenu {width:745px; height: 15px; font-size:0.85em; position:relative; z-index:100; color:#753206;}
/* hack to correct IE5.5 faulty box model */
* html .dropmenu {width:746px; w\idth:745px;}
/* remove all the bullets, borders and padding from the default list styling */
.dropmenu ul ul {padding:0;margin:0;list-style-type:none;}
.dropmenu ul ul ul {width:149px;}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.dropmenu ul ul li {float:left;width:149px;position:relative; color:#753206; text-align:center;}
/* style the links for the top level */
.dropmenu a, .dropmenu a:visited {display:block;font-size:11px;text-decoration:none; color:#753206; width:138px; height:15px; text-align:center; margin-right:-1px;}
/* a hack so that IE5.5 faulty box model is corrected */
* html .dropmenu a, * html .dropmenu a:visited {width:149px; w\idth:138px;}

/* style the second level background */
.dropmenu ul ul ul a.drop, .dropmenu ul ul ul a.drop:visited {height:15px;background:url(images/drop.gif) bottom right no-repeat #a94c03; padding-top:10px; margin-top:-12px;}
/* style the second level hover */
.dropmenu ul ul ul a.drop:hover{background:url(images/drop.gif) bottom right no-repeat; left: 149px; margin-top:-12px; z-index:100;height:15px;background-color:#a94c03;}
.dropmenu ul ul ul :hover > a.drop {background:url(images/drop.gif) bottom right no-repeat; left: 149px; margin-top:-10px; z-index:100;height:15px;background-color:#a94c03;}
/* style the third level background */
.dropmenu ul ul ul ul a, .dropmenu ul ul ul ul a:visited {background-color:#cb6f25;}
/* style the third level hover */
.dropmenu ul ul ul ul a:hover {}


/* hide the sub levels and give them a positon absolute so that they take up no room */
.dropmenu ul ul ul {visibility:hidden;position:absolute;height:0;top:22px;left:0; width:149px;}
/* another hack for IE5.5 */
* html .dropmenu ul ul ul {top:14px;t\op:15px;}

/* position the third level flyout menu */
.dropmenu ul ul ul ul{left:163px; top:2px; width:149px;}

/* position the third level flyout menu for a left flyout */
.dropmenu ul ul ul ul.left {left:-149px;}

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

/* style the second level links */
.dropmenu ul ul ul a, .dropmenu ul ul ul a:visited { color:#000; height:auto; line-height:1em; padding:0px 10px; width:128px;}
/* yet another hack for IE5.5 */
* html .dropmenu ul ul ul a, * html .dropmenu ul ul ul a:visited {width:150px;w\idth:128px;}

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

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