/* CSS Menu. This is a fairly hacked about version of an original idea by Stu Nicholls - see bottom of this file */


.menu {width:912px; height:52px; font-size:0.85em; position:relative; z-index:100;}

/* hack to correct IE5.5 faulty box model */
* html .menu {width:911px; w\idth:912px;}

/* remove all the bullets, borders and padding from the default list styling */
.menu ul {padding:0;margin:0;list-style-type:none;}
.menu ul ul {width:131px;}

/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu position */
.menu li {float:left;width:128px;position:relative;}

/* style the links for the top level */
.menu a, .menu a:visited {display:block;font-size:1em;text-decoration:none; width:131px; height:52px; line-height:51px;}

/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited {width:131px; w\idth:117px;}



/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited {background:#000000}




/* 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:52px;left:0; width:128px;}
/* another hack for IE5.5 - this corrects the position of the second level menu, i.e. make it the same as the height above*/
* html .menu ul ul {top:51px;t\op:52px;}

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

/* style the second level links - remove the text-align to align left or adjust otherwise.
   Width (128px in this case) is the width of the rollover box in the second level - not the second level menu items*/
.menu ul ul a, .menu ul ul a:visited {color:#fff; height:auto; line-height:1.5em; padding:5px -10px; width:128px; text-align: center; font-weight: bold;}
/* yet another hack for IE5.5 */
* html .menu ul ul a, * html .menu ul ul a:visited {width:131px;w\idth:107px;}

/* style the top level hover THIS IS REQUIRED TO GET IT TO WORK IN INTERNET EXPLORER - THESE ARE ADDED WITH A BROWSER CHECK AND SECOND STYLE SHEET
.menu a:hover, .menu ul ul a:hover{color:#fff; background:#123456;}
.menu :hover > a, .menu ul ul :hover > a {color:#fff; background:#123456;}
*/

/* These are the styles to ensure only the second level links get highlighted - use class="roll" for second level links in html */
.roll {background:#000000;}
.roll a:hover, .roll ul a:hover{color:#a21b21; background:#000000;}
.roll :hover > a, .roll ul :hover > a {color:#a21b21; background:#000000;}




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





/* ================================================================ 
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-2007 Stu Nicholls. All rights reserved.
This stylesheet and the associated (x)html may be modified in any 
way to fit your requirements.
=================================================================== */