@charset "utf-8";
/* CSS Document */

/* ================================================================ 
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.
=================================================================== */

.topMenu {width:300px; height:30px; position:absolute; top:0px; z-index:10; font-family:Lucida Sans Unicode, Lucida Grande, sans-serif;}
/* hack to correct IE5.5 faulty box model */
* html .topMenu {width:301px; w\idth:300px;}
/* remove all the bullets, borders and padding from the default list styling */
.topMenu ul {padding:0; margin:0; list-style-type:none; z-index:inherit;}
.topMenu ul ul {width:150px;}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.topMenu li {float:left; width:150px; position:relative; z-index:inherit;}
/* style the links for the top level */
.topMenu a, .topMenu a:visited {display:block; font-size:15px; text-decoration:none; color:#fff; width:150px; height:30px; line-height:30px; text-align:center;}
/* a hack so that IE5.5 faulty box model is corrected */
* html .topMenu a, * html .topMenu a:visited {width:150px; w\idth:150px;}

/* style the second level background */
.topMenu ul ul a.drop, .topMenu ul ul a.drop:visited {background:#369 url(grey-arrow.gif) no-repeat 130px center; color:#FFF;}
/* style the second level hover */
.topMenu ul ul a.drop:hover{background:#09F url(blue-arrow.gif) no-repeat 130px center;}
.topMenu ul ul :hover > a.drop {background:#09F url(blue-arrow.gif) no-repeat 130px center;}
/* style the third level background */
.topMenu ul ul ul a, .topMenu ul ul ul a:visited {background:#369; color:#FFF;}
/* style the third level hover */
.topMenu ul ul ul a:hover {background:#09F; color:#FFF;}


/* hide the sub levels and give them a positon absolute so that they take up no room */
.topMenu ul ul {visibility:hidden; position:absolute; height:0; top:30px; left:0; width:150px; z-index:inherit;}
/* another hack for IE5.5 */
* html .topMenu ul ul {top:30px;t\op:31px;}

/* position the third level flyout menu */
.topMenu ul ul ul{left:149px; top:-1px; width:150px; z-index:inherit;}

/* position the third level flyout menu for a left flyout */
.topMenu ul ul ul.left {left:-149px;}

/* style the table so that it takes no ppart in the layout - required for IE to work */
.topMenu table {position:absolute; top:0; left:0; border-collapse:collapse;;}

/* style the second level links */
.topMenu ul ul a, .topMenu ul ul a:visited {background:#369; color:#FFF; height:auto; line-height:1em; padding:5px 10px; width:128px;border:1px solid #69C; border-top:none; text-align:left; font-size:14px;}
/* yet another hack for IE5.5 */
* html .topMenu ul ul a, * html .topMenu ul ul a:visited {width:150px;w\idth:128px;}

/* style the top level hover */
.topMenu a:hover, .topMenu ul ul a:hover{background:#09F;}
.topMenu :hover > a, .topMenu ul ul :hover > a {background:#09F;}

/* make the second level visible when hover on first level list OR link */
.topMenu ul li:hover ul,
.topMenu ul a:hover ul{visibility:visible;}
/* keep the third level hidden when you hover on first level list OR link */
.topMenu ul :hover ul ul{visibility:hidden;}
/* make the third level visible when you hover over second level list OR link */
.topMenu ul :hover ul :hover ul{visibility:visible;}