/* $Id: nice_menus_default.css,v 1.6 2007/10/29 16:38:28 add1sun Exp $ */
/*
  This is the default layout template for nice menus, and will provide
  a starting point for the look of your menus. To customize, it's
  recommended to create a custom CSS file using this file as a template,
  then configure the module to use your custom CSS file
  (this is done in the global settings tab of the theme administration.)

  To help understand the CSS, the HTML looks like this, where
    x is a number;
    TYPE is down/left/right;
    PATH is the menu path such as node/343;
    MID is the menu id such as 33):
  <ul id='nice-menu-x' class='nice-menu nice-menu-TYPE'>
    <li id='menu-MID' class='menu-path-PATH'><a href='#'>This is a menu item</a></li>
    <li class='menuparent menu-path-PATH'><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 and the handbook page (http://drupal.org/node/185543)
  for some CSS customization examples.
*/

/******************************
 Global CSS for ALL menu types
******************************/

ul.nice-menu,
ul.nice-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 20;
}
/* normal item style - nonexpandable */
ul.nice-menu li {
  border: 1px solid #444;
  border-top: 0;
  float: left;
  background: #202020;
  opacity: 0.92;
  font-size: 10px;
  font-weight: normal;
}

ul.nice-menu a {
  padding: 0.4em 5px 0.4em 5px;
  color: #eee;
}
ul.nice-menu a:hover {
  background-color: #e48;
  color: #fff;
}
ul.nice-menu a.active {
  color: #fff;
  font-weight: bold;
}


ul.nice-menu ul {
  xtop: 2.2em;
  top: 34px;
  left: -1px;
  border: 0;
  border-top: 1px solid #444;
  margin-right: 0;
}

ul.nice-menu ul li {
  width: 20em;
}

/******************************
 HORIZONTAL (down) menus
******************************/

ul.nice-menu-down {
  float: left;
  border: 0;
}

ul.nice-menu-down li {
  border-top: 1px solid #444;
}

ul.nice-menu-down li li {
  border-top: 0;
}

ul.nice-menu-down ul {
  left: 0;
}

ul.nice-menu-down ul li {
  clear: both;
}

ul.nice-menu-down li ul li ul {
  left: 20em;
  top: -1px;
}

/* Top level NONexpandable (+ expandable if is not later overwritten!!)*/
ul.nice-menu-down li.top-level {
  background: none;
  border: none;
  border-right: 1px solid #88a;
  font-size: 13px;
  font-weight: bold;
}
ul.nice-menu-down li.top-level.last {
  border: none;
}
ul.nice-menu-down li.top-level:hover,
ul.nice-menu-down li.over {
  xbackground: #202020 url(menu-pruh-over.gif) repeat-x;
  background: #104080;
}

/* Top level expandable */
ul.nice-menu-down li.menuparent {
  xbackground: url(arrow-down.png) right center no-repeat;
}
ul.nice-menu-down li.menuparent:hover,
ul.nice-menu-down li.over {
  /*background: #202020 url(menu-pruh-over.gif) repeat-x;*/
  background: #104080;
}



/* Lower level expandable */
ul.nice-menu-down li li.menuparent {
  background: #202020 url(arrow-right.png) right center no-repeat;
  font-size: 10px;
  font-weight: normal;
}
ul.nice-menu-down li li.menuparent:hover,
ul.nice-menu-down li li.over {
  opacity: 1;
  background: #902040 url(arrow-right.png) right center no-repeat;
}



ul.nice-menu-down .top-level a {
  xpadding: 0.5em 14px 0.5em 14px;
  padding: 0px 16px;
  line-height: 35px;
}
ul.nice-menu-down .top-level ul li a {
  padding: 0.6em 5px 0.5em 5px;
  xpadding: 0px 5px 0px 5px;
  line-height: normal;
}
ul.nice-menu-down .menuparent a {
  padding-right: 14px;
}
