/* $Id: nice_menus_default.css,v 1.1.2.5 2007/10/29 16:35:34 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
******************************/
#header-region ul.nice-menu li, #header-region ul.nice-menu ul, 
ul.nice-menu, ul.nice-menu ul, ul.nice-menu li, ul.nice-menu ul li {
  background:#003366
}

ul.nice-menu,
ul.nice-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  align: center;
  width: 100%;
  height: 25%;
}

ul.nice-menu li {
  border-left: 2px solid #003366;
  float: left;
  /* Additional overrides to deal with Garland theme. */
  margin: 0;
  padding-left: 0;
}

/* 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.2em;
  padding-bottom: 0.4em;
}

#header-region ul.nice-menu li:hover {
  background: #d3d4d5;
}

.nice-menu a, menuparent a, .nice-menu-down a {
  /* color: #3366cc; */
  text-decoration: none;
  font: 11px Verdana, Arial, Helvetica, sans-serif;
}

.menuparent a:hover, .nice-menu-down a:hover {
  color: #003366;
  text-decoration: none;
  font: 11px Verdana, Arial, Helvetica, sans-serif;
  font-weight: normal;
}

ul.nice-menu a {
  padding: 0.3em 5px 0.3em 5px;
  color: #fff;
  font-weight:normal;
}

ul.nice-menu ul,
/* Repeat for Garland header. */
#header-region ul.nice-menu ul {
  top: 2em;
  left: -1px;
  border: 0;
  margin-right: 0;
}

/* Override for Garland header. */
#header-region ul.nice-menu ul {
  top: 2em;
}

ul.nice-menu ul li, ul.nice-menu ul ul li {
  width: 15em;
}

/******************************
 HORIZONTAL (down) menus
******************************/

ul.nice-menu-down {
  float: left;
  border: 0;
  color: #003366;
}

ul.nice-menu-down li, ul.nice-menu-down li li {
  border-top: 0;
  color: #003366;
}

ul.nice-menu-down ul {
  left: 0;
  color: #3366cc;
}

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: 15em;
  top: 0;
  color: #3366cc;
}

ul.nice-menu-down .menuparent a {
  padding-right: 15px;
}

ul.nice-menu-down li.menuparent,
/* Repeat for Garland header. */
#header-region ul.nice-menu-down li.menuparent {
  background: url(menu-expanded.png) right 1px center no-repeat;
}

ul.nice-menu-down li.menuparent:hover,
ul.nice-menu-down li.over,
/* Repeat for Garland header. */
#header-region ul.nice-menu-down li.menuparent:hover,
#header-region ul.nice-menu-down li.over {
  background: #ced3e5;
}

ul.nice-menu-down li li.menuparent,
/* Repeat for Garland header. */
#header-region ul.nice-menu-down li li.menuparent {
  background: #003366;
}

ul.nice-menu-down li li.menuparent:hover,
ul.nice-menu-down li li.over,
/* Repeat for Garland header. */
#header-region ul.nice-menu-down li li.menuparent:hover,
#header-region ul.nice-menu-down li li.over {
  background: #ced3e5 url(menu-collapsed.png) right center no-repeat;
}

#block-nice_menus-2, 
ul.block-nice_menus-2 ul, 
ul.block-nice_menus-2 li,
ul.block-nice_menus-2 a,
ul.block-nice_menus-2-down,
ul.block-nice_menus-2-down li,
ul.block-nice_menus-2-down ul
{
  list-style: none;
  padding: 0;
  margin: 0;
  background: none;
  height: 15%;
  margin-left: 200px;
}

#nice-menu-2,
nice-menu-2 ul,
nice-menu-2 li,
nice-menu-2 a
nice-menu-2 a:hover
{
  list-style: none;
  padding: 0;
  margin: 0;
  background: #003366;
  width: 60%;
  height: 15%;
  color: #fff;
}

#nice-menu-2 .nice-menu nice-menu-down, 
nice-menu-2 .nice-menu nice-menu-down a, 
nice-menu-2 .nice-menu nice-menu-down .menuparent:hover{
  background: none;
  color: black;

#menu-151 .menuparent menu-path-node:hover
{
  background: none;
  color: #000000;
}


