﻿/* ================================================================ 
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 assocaited (x)html may be modified in any 
way to fit your requirements.
=================================================================== */

/* * * * * * * * *  
This stylesheet has been significantly modified
* * * * * * * * * */

/* remove all the bullets, borders and padding from the default list styling */
.menu ul {padding:0;margin:0;}
.menu ul li {list-style-type:none;}

/* float the lists to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {
  float:left;
  position:relative;
  }

/* style the main nav links */
.menu li a, 
.menu li a:visited {
  display:block;*display:inline-block;
  font-size:93%;
  font-weight:bold;
  text-decoration:none;
  color:#000;
  padding:0 1em;
  height:22px;
  line-height:22px;
  position:relative;
  cursor:default;
  }
/* style the main nav hover */
.menu li a:hover, .menu li a.on {
  color:#fff !important; 
  background:#4b3f3d;
  border-bottom:1px solid #d9e506;
  }

/* style the dropdown */
.menu ul ul a, 
.menu ul ul a:visited {
  color:#fff;
  display:block;
  font-size:77%;
  font-weight:normal;
  height:auto;
  width:150px;
  border-bottom:1px solid #fff;
  padding:5px 10px 5px 5px;
  line-height:1em;
  cursor:pointer;
  
/*  filter:alpha(opacity=95);
  -moz-opacity:.95;
  opacity:.95; */
  background-image:url(../i/bg_grey_transparent.png);
  overflow:hidden;
  z-index:10000;	
  }
  
/* style the dropdown hover */  
.menu ul ul a:hover {
  color:#fff; 
  background:#4b3f3d;
  background-image:none;
  border-bottom:1px solid #d9e506;
  }
  
/* hide the dropdown and positon absolute so it takes up no room */
.menu ul ul {
  display: none;
  position: absolute;
  top: 23px;
  left: 0;
  width: 150px;
  }