﻿/*
  
  Script-Free 3-Level Menu 1.3.3
  www.CesarDaniel.info/Tech/ScriptFree3LevelMenu.html
  
  ...............................................................................................
  
  Sections
  
  * Reset
  * Menu Bar
  * Drop-Down Menus
  * Side Menus
  * Browser Specific
  * Default Colors (Required)
  
*/
/*---------------------------------------------------------------------------------------- Reset */
div.MenuBar,
div.MenuBar ul,
div.MenuBar li,
div.MenuBar a,
div.MenuBar table,
div.MenuBar span {
  margin: 0;
  border: 0;
  padding: 0;
}
div.MenuBar ul li ul.DropDownMenu {
  display: none; /* Hides all drop-down menus. */
}
/*
li:hover works in IE7 and FF2.
a:hover works in IE6 and FF2.
a:hover breaks li:hover in FF2.
*/
/*------------------------------------------------------------------------------------- Menu Bar */
div.MenuBar {
  height: 25px; /* Total height 27px. */
}
div.MenuBar ul li {
  float: left;
  list-style-type: none !important;
  margin: 0 !important;
  position: relative; /* Sets the positioning context for each drop-down menu. */
  z-index:10000;
}
div.MenuBar ul li a {
  display: block;
  height: 17px; /* Keep height + padding-top + padding-bottom sync with the menu bar height. */
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 1em; /* Sets the left space between top-level items. */
  padding-right: 1em; /* Sets the right space between top-level items. */
}
/*------------------------------------------------------------------------------ Drop-Down Menus */
div.MenuBar ul li:hover ul.DropDownMenu,
div.MenuBar ul li a:hover ul.DropDownMenu {
  display: block;
  width: 9em; /* Drop-down menu width.
                  Use MenuTailor.css to customize. */
  padding: 1px; /* Sets the drop-down menu "effective border" width. */
  position: absolute;
  top: 25px; /* Places the drop-down menu under the menu bar.
                Keep it sync with the menu bar height. */
  left: 0; /* Aligns the drop-down menu to its top-level item. */
}
div.MenuBar ul li:hover ul.DropDownMenu li a,
div.MenuBar ul li a:hover ul.DropDownMenu li a {
  width: 9em; /* Keep it sync with the drop-down menu width.
                  Use MenuTailor.css to customize. */
  padding-left: 0;
  padding-right: 0;
  font-size:0.8em;
}
ul.DropDownMenu li a span {
  display: block;
  padding-left: 0.25em; /* Sets the left space of each drop-down menu item. */
  padding-right: 0.25em; /* Sets the right space of each drop-down menu item. */
  text-align: left; /* Aligns the >> symbol to the right. */
  font-size:0.8em;
}
ul.DropDownMenu li a span span {
  float: left; /* Aligns the text (back) to the left. */
}
/*----------------------------------------------------------------------------- Browser Specific */
* html div.MenuBar {
  position: relative; /* For IE55 and IE6.
                         Hidden (* html) from non-IE browsers. */
  z-index:1000;
}
* html div.MenuBar ul li a {
  float: left; /* For IE55 and IE6.
                  Breaks O9.
                  Hidden (* html) from non-IE browsers. */
}
* html ul.DropDownMenu li a:hover {
  cursor: hand; /* For IE55.
                   Hidden (* html) from non-IE browsers. */
}
ul.DropDownMenu li a:hover {
  cursor: pointer; /* For IE6 and IE7.
                      Hidding it (* html) from non-IE browsers breaks IE7! */
}
* html div.MenuBar a:hover {
  text-decoration: none; /* For IE55 and IE6.
                            Hidden (* html) from non-IE browsers. */
}
* html div.MenuBar ul li table,
* html div.MenuBar ul li table td {
  border: 0; /* For IE55 and IE6.
                Hidden (* html) from non-IE browsers. */
}
/*------------------------------------------------------------------------------- Default Colors */
div.MenuBar {
}
div.MenuBar a {
  color: #fff; /* Top-level unselected items. */
}
div.MenuBar ul li:hover a,
div.MenuBar ul li a:hover {
  color: #fff; /* Top-level selected item. */
}
/*...............................................................................................*/
div.MenuBar ul li:hover ul.DropDownMenu,
div.MenuBar ul li a:hover ul.DropDownMenu {
  text-transform:capitalize; /* Sets the drop-down menu "effective border" color. */
}
div.MenuBar ul li:hover ul.DropDownMenu li a,
div.MenuBar ul li a:hover ul.DropDownMenu li a {
  background-color: #9B0B0C; /* Drop-down menu unselected items.
                             Sets the drop-down menu "effective background" color. */
  color: #fff;
  border-bottom:1px solid #C5090A;
}
div.MenuBar ul li:hover ul.DropDownMenu li:hover a,
div.MenuBar ul li a:hover ul.DropDownMenu li a:hover {
  background-color: #370302; /* Drop-down menu selected item. */
  color: #fff;
  border-bottom:1px solid #C5090A !important;
}

/*-----------------------------------------------------------------------------------------------*/