/* Cascading Style Sheet *//* ================================================================
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.
=================================================================== */
* {margin: 0;}

#menu_bar {
  width: 800px;
  margin-top: 0px;
  margin-bottom: 0px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 0px;
  padding: 0px;
  background: #000000;
  background-image: url(../images/menu_bg.gif);
}

#menu {
  height: 25px;
  border: 0px;
  padding-top: 0px;
  padding-bottom: 0px;
  padding-right: 0px;
  padding-left: 3px;
  margin-top: 0px;
  margin-bottom: 0px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  z-index: 100;
  font-family: arial, sans-serif;
  font-size: 0.9em;
}

#menu table{
  font-family: arial, sans-serif;
  font-size: 1em;
}

/* hack to correct IE5.5 faulty box model */

* html #menu {
  width: 795px;
  w\idth: 795px;
}
/* remove all the bullets, borders and padding from the default list styling */

#menu ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */

#menu li {
  float: left;
  width: 120px;
  position: relative;
}

/* style the links for the top level */

#menu a, #menu a:visited {
  display: block;
  text-decoration: none;
  color: #c0c0c0;
  width: 108px;
  height: auto;
  border-right: 1px solid #303030;
  border-top: 0px;
  border-left: 0px;
  border-bottom: 0px;
  background: #000000;
  padding-left: 8px;
  padding-top: 5px;
  padding-bottom: 5px;
}
/* a hack so that IE5.5 faulty box model is corrected */

* html #menu a, * html #menu a:visited {
  width: 108px;
  w\idth: 108px;
}

/* style the top level hover */
#menu a:hover{
  color: #ffffff;
  background: #303030;
}

/* style the second level links */

#menu ul ul a, #menu ul ul a:visited {
  background: #d4d8bd;
  color: #000;
  height: auto;
  width: 104px;
  border-bottom: 1px solid #c0c0c0;
  border-top: 0px;
  border-left: 0px;
  border-right: 0px;
  padding-left: 12px;
}
/* yet another hack for IE5.5 */

* html #menu ul ul a, * html #menu ul ul a:visited {
  width: 104px;
  w\idth: 104px;
}

/* style the second level hover */
#menu ul ul a:hover{
  color: #ffffff;
  background: #808080;
}

#menu:hover > a, #menu ul ul:hover > a {
  color: #000;
  background: #b7d186;
}
/* 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;
}

/* 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: 25px;
  left: 0;
  width: 120px;
  border-top: 0px solid #000;
}
/* another hack for IE5.5 */

* html #menu ul ul {
  top: 25px;
  t\op: 25px;
}

/* 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 pointer images in front of top level menu items */

.pointerImage {
  margin-bottom: 0px;
  margin-left: 0px;
  margin-top: 0px;
  margin-right: 0px;
  border: 0px;
  padding-top: 0px;
  padding-right: 3px;
  padding-bottom: 0px;
  padding-left: 0px;
  background: none;
}
