﻿/* ================================================================ 
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/dd_valid.html
Copyright (c) 2005-2007 Stu Nicholls. All rights reserved.
This stylesheet and the assocaited (x)html may be modified in any 
way to fit your requirements.
=================================================================== */
/* common styling */
.menu 
{
    width:920px; 
    height:100px; 
    position:absolute; 
    left:70px;
    top:0px;
    z-index:110;
    font-size:25px;
    }
.menu ul li a, .menu ul li a:visited 
{
    display:block; 
    text-decoration:none; 
    width:218px; 
    height:32px; 
    text-align:center; 
    color:#fff; 
    border:2px solid #fff; 
    background:#0f5312; 
    line-height:29px; 
    overflow:hidden;
}
.menu ul 
{padding:0; margin:0; list-style: none;}
.menu ul li 
{
    float:left; 
    position:relative;
}
.menu ul li ul 
{
    display: none;
}

/* specific to non IE browsers */
.menu ul li:hover a, .menu ul li.active a 
{
    background:#b2111d;
}
.menu ul li ul 
{
    position:absolute; 
    top:32px; 
    left:-2px; 
    width:1105px;
    float:left;
    z-index:120; 
}
.menu ul li ul li a, .menu ul li:hover ul li a, .menu ul li.active ul li a    
{
      background:#fff; 
    color:#d08134;
    border-color:#d08134;    
    float:left;
} 
.menu ul li:hover ul, .menu ul li.active ul 
{
    display:block; 
}
.menu ul li:hover ul li a:hover, .menu ul li ul li.subactive a
{
    background:#dddddd;
}