/* $Id: nice_menus.css,v 1.1 2007/01/30 03:01:12 Ami Exp $ */
/*
  To help understand the CSS, the HTML looks like this (where x is a number):
  <ul id='nice-menu-x' class='nice-menu nice-menu-TYPE'>
    <li><a href='#'>This is a menu item</a></li>
    <li class='menuparent'><a href='#'>A submenu</a>
      <ul><li>...</li>
      </ul>
    </li>
    ...
  </ul>

  If you have more than one nice-menu and want to target a particular one, use its id (e.g. ul.#nice-menu-2)

  See README.txt for some CSS customization examples!

  First we're going to define CSS for all menus, then we'll define based on the type of menu
*/

/* below should fix menu being a few pixels away in some themes, and menus disappearing behind other stuff */
.block-nice_menus {
  line-height: normal;
  font-size: normal;
  /*position: relative;*/
  z-index: 10;
}

/* most people won't want to see the menu's title */
.block-nice_menus h2 {
  display: none;
}

ul.nice-menu,
ul.nice-menu ul{
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 5;
  margin-bottom: 8px;
}

ul.nice-menu li {
  position: relative;
  float: left;
  color: #fff;
}

ul.nice-menu a {
  padding: 4px 10px 5px 10px;
  display: block;
  color: #fff;
  font-size: 10px;
  text-decoration: none;
}

ul.nice-menu a:hover {
	color: #fff400;
}

ul.nice-menu ul{
  position: absolute;
  top: 1.8em;
  left: -1px;
  margin-right: 0;
  display: none;
  width: 200px;
}

ul.nice-menu li.over ul{
  display: block;
}

ul.nice-menu li.menuparent ul {
	background: url(images/dropdown_arrow.gif) #faf9eb top left no-repeat;
	margin-top: -1px;
	border-bottom: 1px solid #c2c1bd;
	padding-top: 8px;
}

ul.nice-menu li#menu-45 ul {
	width: 127px;
}

ul.nice-menu li#menu-45 ul li a {
	width: 100px;
}

ul.nice-menu li.menuparent ul li a {
	color: #447b24;
	border-left: 1px solid #c2c1bd;
	border-right: 1px solid #c2c1bd;
	background-color: #faf9eb;	
}
ul.nice-menu li.menuparent ul li a:hover {
	background-color: #831c20;
	color: #fff400;
}

ul.nice-menu ul li{
  width: 200px;
  display: block;
}

ul.nice-menu:after {
  content: "."; 
  display: block;
  height: 0; 
  clear: both; 
  visibility: hidden;
}

/* Show submenus when over their parents */
ul.nice-menu li:hover ul,
ul.nice-menu li.menuparent li:hover ul,
ul.nice-menu li.menuparent li.menuparent li:hover ul,
ul.nice-menu li.over ul,
ul.nice-menu li.menuparent li.over ul,
ul.nice-menu li.menuparent li.menuparent li.over ul { 
  display: block; 
} 

/* Hide sub-menus initially */
ul.nice-menu li:hover ul ul,
ul.nice-menu li:hover ul ul ul,
ul.nice-menu li.over ul ul,
ul.nice-menu li.over ul ul ul { 
  display: none; 
} 

/* Now stuff specific to the menu type (down, left or right menu pop) */

/* stuff for HORIZONTAL menus where submenus pop DOWN */

ul.nice-menu-down {
  float: left;
  border: 0;
}

ul.nice-menu-down li li {
	border-top: 0;
}

ul.nice-menu-down ul {
  left: 0;
}

ul.nice-menu-down li ul li ul {
  left: 150px;
  top: -3px;
}

ul.nice-menu-down .menuparent a{
  padding-right: 15px;
}

ul.nice-menu-down li.menuparent:hover,
ul.nice-menu-down li.over{
	color: #053f06;
}

ul.nice-menu-down li li.menuparent:hover,
ul.nice-menu-down li li.over{
	color: #053f06;
}

ul.nice-menu-down ul li {
  clear: both;
}
