@charset "utf-8";
/* CSS Document */

.menu-holder {position: relative; top: 0px; left: 0px; width: 1002px; height: 28px; float: none; margin: 0px auto; font-size: 11px; font-family: Trebuchet MS, Tahoma; color: #4a4a4a; z-index: 100; background-color: #f1eeee;}
/* hack to correct IE5.5 faulty box model */
* html .menu-holder {width:1002px; w\idth:1002px;}
/* remove all the bullets, borders and padding from the default list styling */
.menu-holder ul {padding: 0px; margin: 0; list-style-type: none;}
.menu-holder ul ul {width: 225px;}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu-holder li {float: left; position: relative; text-align: center;}
/* style the links for the top level */
.menu-holder a, .menu-holder a:visited {display: block; font-size: 11px; font-weight: bold; text-decoration: none; color: #4a4a4a; height: 28px; line-height: 27px;}
/* a hack so that IE5.5 faulty box model is corrected */
* html .menu-holder a, * html .menu-holder a:visited {}

.menu-holder ul a:hover {background: #cccccc;}

/* style the second level background */
.menu-holder ul ul a.drop, .menu-holder ul ul a.drop:visited {background: #f1eeee;}
/* style the second level hover */
.menu-holder ul ul a.drop:hover{background: #f1eeee;}
.menu-holder ul ul :hover > a.drop {background: #f1eeee;}
/* style the third level background */
.menu-holder ul ul ul li{background: #f1eeee;}
.menu-holder ul ul ul a, .menu-holder ul ul ul a:visited {background: #f1eeee;}
/* style the third level hover */
.menu-holder ul ul ul a:hover {background: #cccccc;}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu-holder ul ul {visibility: hidden; position: absolute; height: 0; top: 28px; left: 0; width: 149px;}
/* another hack for IE5.5 */
* html .menu-holder ul ul {top: 28px; t\op: 28px;}

/* position the third level flyout menu */
.menu-holder ul ul ul{left: 230px; _left: 230px; top: 0px; width: 225px;}

/* position the third level flyout menu for a left flyout */
.menu-holder ul ul ul.left {left: -149px;}

/* style the table so that it takes no ppart in the layout - required for IE to work */
.menu-holder table {position:absolute; top:0; left:0; border-collapse: collapse;}

.menu-holder ul ul li{background: #f1eeee; text-align: left;}

/* style the second level links */
.menu-holder ul ul a, .menu-holder ul ul a:visited {background: Transparent; font-family: Trebuchet MS, Tahoma; color: #4a4a4a; height: 21px; font-weight: bold; line-height: 21px; padding-left: 5px; width: 225px;}
/* yet another hack for IE5.5 */
* html .menu-holder ul ul a, * html .menu-holder ul ul a:visited {width: 225px; w\idth: 225px;}

/* style the top level hover */
.menu-holder a:hover{color: #4a4a4a; background: Transparent;}
.menu-holder ul ul a:hover{color: #4a4a4a; background: #cccccc;}
.menu-holder :hover > a {color: #4a4a4a; background: Transparent;}
.menu-holder ul ul :hover > a {color: #4a4a4a; background: #cccccc;}

/* make the second level visible when hover on first level list OR link */
.menu-holder ul li:hover ul,
.menu-holder ul a:hover ul{visibility: visible; }
/* keep the third level hidden when you hover on first level list OR link */
.menu-holder ul :hover ul ul{visibility: hidden;}
/* make the third level visible when you hover over second level list OR link */
.menu-holder ul :hover ul :hover ul{ visibility: visible;}