/* $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
******************************/

.block-nice_menus {
  margin: 0 !important;
  padding: 10px !important;
}

ul.nice-menu,
ul.nice-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  border: 1px outset white;
}

ul.nice-menu li {
  border: none;
  border-top: 1px solid #bcd;
  float: left;
  background-color: white;
  /* Additional overrides to deal with Garland theme. */
  margin: 0;
  padding-left: 0;
  background-image: none;
}
ul.nice-menu li:first-child {
  border-top: none;
}

/* Overrides for Garland header. */
#header-region ul.nice-menu li {
  margin: 0;
  /* Padding rules are needed to deal with Garland's header line-height. */
  padding-top: 0.1em;
  padding-bottom: 0.1em;
  background: #eee;
}

ul.nice-menu a {
  padding: 3px 5px;
}

ul.nice-menu ul,
/* Repeat for Garland header. */
#header-region ul.nice-menu ul {
  top: 24px;
  left: -1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin-right: 0;
}

/* Override for Garland header. */
#header-region ul.nice-menu ul {
  top: 1.7em;
}

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


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

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

ul.nice-menu-down > li {
  border: none;
}
ul.nice-menu-down li {
  background-image: url(../images/background_light.jpg);
  background-repeat: no-repeat;
  background-position: top left;
  background-attachment: fixed;
  background-color: white;
}
ul.nice-menu-down > li ul {
  border-color: #444;
  border-style: solid;
  border-width: 1px 2px 2px 1px;
  font-size: 0.8em;
  font-weight: normal;
}

ul.nice-menu-down > li > a {
  padding: 3px 5px;
  border: 1px solid transparent;
  background: transparent;
}

ul.nice-menu-down li.menuparent > a {
  padding-right: 15px;
  background: transparent url(../images/arrow-down.png) right center no-repeat;
}

/* Hover effect for non-parent menu items */
ul.nice-menu-down li > a:hover {
  color: white;
  text-decoration: none;
  background-image: url(../images/background_dark.jpg);
  background-repeat: no-repeat;
  background-position: top left;
  background-attachment: fixed;
  background-color: #5090A0;
  /* border: 1px inset white; */
}

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,
/* Repeat for Garland header. */
#header-region ul.nice-menu-down li ul li ul {
  left: 12.5em;
  top: -1px;
}

/*
ul.nice-menu-down li.menuparent,
#header-region ul.nice-menu-down li.menuparent {
  background: #eee url(../images/arrow-down.png) right center no-repeat;
}

ul.nice-menu-down li.menuparent:hover,
ul.nice-menu-down li.over,
#header-region ul.nice-menu-down li.menuparent:hover,
#header-region ul.nice-menu-down li.over {
  background: #ccc url(../images/arrow-down.png) right center no-repeat;
}

ul.nice-menu-down li li.menuparent,
#header-region ul.nice-menu-down li li.menuparent {
  background: #eee url(../images/arrow-right.png) right center no-repeat;
}

ul.nice-menu-down li li.menuparent:hover,
ul.nice-menu-down li li.over,
#header-region ul.nice-menu-down li li.menuparent:hover,
#header-region ul.nice-menu-down li li.over {
  background: #ccc url(../images/arrow-right.png) right center no-repeat;
}
*/
