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

div.block-nice_menus {
  height:56px;
  width:980px;
/*   padding:16px 15px 20px 15px; */
}


div.block-nice_menus ul.nice-menu {
  padding:16px 0 20px 0;
  margin:0 0 30px 0;
  border-top:solid 1px #e5e5e5;
  border-bottom:solid 1px #e5e5e5;
}

ul.nice-menu li ul li
{
  background:rgb(230,230,230);
  background:rgba(220,220,220,0.9);
}

ul.nice-menu li a {
  font:bold 13pt sans-serif;
  text-decoration:none;
  color:black;
  margin:0 15px 0 15px;
}

ul.nice-menu li ul li a {
  font:normal 10pt sans-serif;
  text-decoration:underline;
  color:#dd3431 !important;
}

ul.nice-menu li ul {
  padding-top:10px;
}

ul.nice-menu {
  width:980px;
}

ul.nice-menu li ul li a {
  border-top:none;
  border-bottom:none;
}

ul.nice-menu li a span.f {
  display:block;
  float:left;
  position:relative;
  top:-2px;
  padding:3px 3px 1px 6px;
  height:16px;
  line-height:16px;
  width:11px;
  color:white;
  font-size:110%;
  font-weight:normal;
}

ul.nice-menu li ul li a span.f {
  display:normal;
  color:black;
  font-size:100%;
  background-color:white;
}

li#menu-744 .f {background-color:#d83838;}
li#menu-744:hover a {color:#d83838;}

li#menu-745 .f {background-color:#ed701e;}
li#menu-745:hover a {color:#ed701e;}

li#menu-747 .f {background-color:#f3dc14;}
li#menu-747:hover a {color:#f3dc14;}

li#menu-746 .f {background-color:#66b929;}
li#menu-746:hover a {color:#66b929;}

li#menu-748 .f {background-color:#128250}
li#menu-748:hover a {color:#128250;}

li#menu-749 .f {background-color:#355c6b;}
li#menu-749:hover a {color:#355c6b;}

li#menu-751 .f {background-color:#444c8d;}
li#menu-751:hover a {color:#444c8d;}

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

ul.nice-menu,
ul.nice-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top:none;
}

ul.nice-menu li {
  float: left;
/*   background:#fff; */
}

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

ul.nice-menu ul {
  top: 1.8em;
  left: -1px;
  border: 0;
  border-top:none;
  margin-right: 0;
}

ul.nice-menu ul li {
  width: 250px;
}

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

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

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

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: 250px;
  top: -1px;
}

ul.nice-menu-down .menuparent a {
  padding-right: 12px;
}

ul.nice-menu-down li.menuparent {
/*   background:#fff; */
}

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

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

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