/* $Id: nice_menus.css,v 1.2 2007/05/09 22:52:21 cvs 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: 10px;
  /*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;
  background: transparent;
}

ul.nice-menu li {
  position: relative;
  float: left;
}

ul.nice-menu a {
  padding: 4px 0px 5px 25px;
  display: block;
}

ul.nice-menu ul{
  position: absolute;
  top: 2em;
  left: -1px;
  margin-right: 0;
  display: none;
}

ul.nice-menu li.over ul{
  display: block;
}

ul.nice-menu li.menuparent ul {
	background: url(images/dropdown_top.gif) top left no-repeat;
}

ul.nice-menu li.menuparent ul li {
  background: url(images/interface/dropdown_r.png) repeat-y;
}


ul.nice-menu ul {
	border: 1px solid #bd2d05;
}

ul.nice-menu ul li{
  width: 190px;
  display: block;
}

ul.nice-menu li.menuparent ul li a {
	display: block;
	width: 190px;
	padding: 4px 0px 5px 30px;
	color: #fff;
}

ul.nice-menu li.menuparent ul li a:hover {
	background: url(images/interface/dropdown_n.png) repeat-y;
	color: #000;
}

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 li a.active, ul.nice-menu-down li a.active:hover, ul.nice-menu-down li a:hover {
	color: #ffff00;
}
ul.nice-menu-down {
  float: left;
  padding: 5px 0px 0px 10px;
}

ul.nice-menu-down li {
}

ul.nice-menu-down li li {
}

ul.nice-menu-down ul {
  left: 20px;
}

ul.nice-menu-down li#menu-45 ul {
    left: -16px;
}

ul.nice-menu-down li ul li ul {
  left: 150px;
  top: -1px;
}

ul.nice-menu-down .menuparent a{
  padding-right: 0px;
}

ul.nice-menu-down li.menuparent{
	background: transparent;
}

ul.nice-menu-down li.menuparent:hover,
ul.nice-menu-down li.over{
	color: #ffff00;
}

ul.nice-menu-down li li.menuparent{
	background: transparent;
}

ul.nice-menu-down li li.menuparent:hover,
ul.nice-menu-down li li.over{
	color: #ffff00;
}

ul.nice-menu-down ul li {
  clear: both;
}
.nice-menu a,
.menuparent a {background: url(images/menu/menu_divider.gif) transparent right no-repeat;	color: #fff;}