/* menu.css   The main top menu */
 
/* ================================================================ 
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.
=================================================================== */

/* ================================================================ 

jun 13 2009 prh
    Using this hy-tek menu to save time I hope.
    I am only using 2 levels, like 'ul ul', not the 3rd level.
    Customizations are colors, sizing tweaks, use php constants
    for easy mods.  And of course generating the menu so things 
    are easier from leadex to change.
    
    OLD
    $MAINMENU_COLWIDTH = 102; // 149 was original   7 places
    $MAINMENU_COLUMNS    = 6;   No, adding Home on non-home pages  = 7
    $MAINMENU_TOTAL_WIDTH = $MAINMENU_COLWIDTH * $MAINMENU_COLUMNS; // fixes right end border   2 place, 1 place is minus 1 pixel
    $MAINMENU_TOTAL_WIDTH = 612  

    New, adding Home on non-home pages  = 7.  Seems to work ok for the Home menu too with only 6 items.
    $MAINMENU_COLWIDTH    = 102; // 149 was original   7 places
    $MAINMENU_COLUMNS     =   7;   
    $MAINMENU_TOTAL_WIDTH = $MAINMENU_COLWIDTH * $MAINMENU_COLUMNS;
    $MAINMENU_TOTAL_WIDTH = 714  2 places, 783 1 place

    3a9d21   green

=================================================================== */

.mainmenu {width: 714px; height:32px; position:relative; z-index:100; border-right:1px solid #000; font-family:arial, sans-serif;}
/* hack to correct IE5.5 faulty box model */
* html .mainmenu {width:714px; w\idth:713px;}
/* remove all the bullets, borders and padding from the default list styling */
.mainmenu ul {padding:0;margin:0;list-style-type:none;}
.mainmenu ul ul {width: 102px;}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.mainmenu li {float:left;width: 102px;position:relative;}
/* style the links for the top level */
.mainmenu a, .mainmenu a:visited {display:block;font-size:12px;text-decoration:none; color:#fff; width:138px; height:30px; border:1px solid #000; border-width:1px 0 1px 1px; background:#000; padding-left:10px; line-height:29px; font-weight:bold;}
/* a hack so that IE5.5 faulty box model is corrected */
* html .mainmenu a, * html .mainmenu a:visited {width: 102px; w\idth:138px;}
 
/* style the second level background */
.mainmenu ul ul a.drop, .mainmenu ul ul a.drop:visited {background:#d4d8bd url(http://www.cssplay.co.uk/menus/breadcrumbs/grey-arrow.gif) no-repeat 130px center;}

/* style the second level hover       NOT USED */
.mainmenu ul ul a.drop:hover{background:#c9ba65 url(http://www.cssplay.co.uk/menus/breadcrumbs/blue-arrow.gif) no-repeat 130px center;}
.mainmenu ul ul :hover > a.drop {background:#c9ba65 url(http://www.cssplay.co.uk/menus/breadcrumbs/blue-arrow.gif) no-repeat 130px center;}
/* style the third level background   NOT USED */
.mainmenu ul ul ul a, .mainmenu ul ul ul a:visited {background:#e2dfa8;}
/* style the third level hover        NOT USED */
.mainmenu ul ul ul a:hover {background:#b2ab9b;}
 
 
/* hide the sub levels and give them a positon absolute so that they take up no room */
.mainmenu ul ul {visibility:hidden;position:absolute;height:0;top:31px;left:0; width: 102px;border-top:1px solid #000;}
/* another hack for IE5.5 */
* html .mainmenu ul ul {top:30px;t\op:31px;}
 
/* position the third level flyout menu   NOT USED */
.mainmenu ul ul ul{left: 102px; top:-1px; width: 102px;}
 
/* position the third level flyout menu for a left flyout   NOT USED */
.mainmenu ul ul ul.left {left:- 102px;}
 
/* style the table so that it takes no ppart in the layout - required for IE to work */
.mainmenu table {position:absolute; top:0; left:0; border-collapse:collapse;;}
 
/* style the second level links d4d8bd */
.mainmenu ul ul a, .mainmenu ul ul a:visited {background:#000; color:#fff; height:auto; line-height:1em; padding:5px 10px; width:128px; border-width:0 1px 1px 1px;}
/* yet another hack for IE5.5 */
* html .mainmenu ul ul a, * html .mainmenu ul ul a:visited {width:150px;w\idth:128px;}
 
/* style the top level hover */
.mainmenu a:hover, .mainmenu ul ul a:hover{color:#fff; background:#3a9d21;}
.mainmenu :hover > a, .mainmenu ul ul :hover > a {color:#fff; background:#3a9d21;}
 
/* make the second level visible when hover on first level list OR link */
.mainmenu ul li:hover ul,
.mainmenu ul a:hover ul{visibility:visible; }
/* keep the third level hidden when you hover on first level list OR link */
.mainmenu ul :hover ul ul{visibility:hidden;}
/* make the third level visible when you hover over second level list OR link */
.mainmenu ul :hover ul :hover ul{ visibility:visible;}
 


