@charset "utf-8";
/* CSS Document */

#menu {width:990px; height:30px; position:relative; z-index:100;border:1px solid #993333; border-width:0px 0 1px 0px; background-color:#f0CA9A; font-family:Georgia, "Times New Roman", Times, serif;}
/* remove all the bullets, borders and padding from the default list styling */
#menu ul {padding-left:90px;margin:0;list-style-type:none;}
#menu ul ul{padding:0;}
/* 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;}
/* style the links for the top level */
#menu a, #menu a:visited {display:block;font-size:12px;text-decoration:none; color:#993333; height:30px; border:1px solid #993333; border-width:0px 0 1px 0px; background:#f0CA9A; padding-left:20px; padding-right:20px; line-height:29px; font-weight:bold;}

/* style the second level background */
#menu ul ul a.drop, #menu ul ul a.drop:visited {background:#FCEAD0;}
/* style the third level background */
#menu ul ul ul a, #menu ul ul ul a:visited {background:#F5E2C5;}
/* style the third level hover */
#menu ul ul ul a:hover {background:#993333;}

/* hide the sub levels and give them a positon absolute so that they take up no room */
#menu ul ul {visibility:hidden;position:absolute;height:0;top:30px;left:0; width:175px;border-top:1px solid #993333;}

/* position the third level flyout menu */
#menu ul ul ul{left:175px; top:-1px; width:175px;}

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

/* style the second level links */
#menu ul ul a, #menu ul ul a:visited {background:#FCEAD0; color:#993333; height:auto; line-height:1.5em; padding:5px 10px; width:154px;border-width:0 1px 1px 1px;}

/* style the top level hover */
#menu a:hover, #menu ul ul a:hover{color:#FFEDD6; background:#993333;}
#menu :hover > a, #menu ul ul :hover > a {color:#FFEDD6; background:#993333;}

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