﻿/* $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-1 {
  /* width: 960px; */
}

ul.nice-menu  {
  padding: 0;
  list-style: none;
  /* border-top: 1px solid #ccc; */
  /* background: url(dot_line.png) bottom center no-repeat; */
  background-color:transparent;
}

ul.nice-menu ul {
  list-style: none;
  padding: 0;
  /* border-top: 1px solid #ccc; */
}

ul.nice-menu li {
  /* border: 1px solid #ccc; */
  border-top: 0;
  float: left;
  /* Additional overrides to deal with Garland theme. */
  margin: 0;
  /* padding: 0 10px 0 10px; */
  /* background-image: none; */
  background: url(dot_spacer.png) right center no-repeat;
}

ul.nice-menu li a {
  padding-left: 5px;
  padding-right: 15px;
}

/* 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: 8px 15px 6px 5px;
  text-decoration:none;
  /* font-weight:bold; */
  color:#333333;
}

ul.nice-menu a:hover {
  padding: 8px 15px 6px 5px;
  text-decoration:none;
  /* font-weight:bold; */
  color:#7ac043;
}

ul.nice-menu li a.active {
  color:#7ac043;
}


ul.nice-menu ul,
/* Repeat for Garland header. */
#header-region ul.nice-menu ul {
  top: 1.8em;
  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: 200px;
}


/******************************
 HORIZONTAL (down) menus
******************************/

ul.nice-menu-down {
  float: left;
  /* border: 1px solid #959ca2; */
}

ul.nice-menu-down a {
  padding: 8px 15px 6px 5px;
  text-decoration:none;
  color:#333333;
}

ul.nice-menu-down a:active {
  padding: 8px 15px 6px 5px;
  text-decoration:none;
  /* font-weight:bold; */
  color:#7ac043;
}

ul.nice-menu-down a:hover {
  padding: 8px 15px 6px 5px;
  text-decoration:none;
  /* font-weight:bold; */
  color:#7ac043;
  /* background:#eef0f0; */
}

ul.nice-menu-down li {
  /* border-top: 1px solid #ccc; */
  /* background-color: #fff; */
  /* background: url('bg.png'); */
  margin: 0;
}

ul.nice-menu-down li li {
  border-top: 0;
  background: url('bg.png');
  /* border-bottom: 1px dotted #cccccc; */
}

ul.nice-menu-down ul {
  left: -1px;
  top: 28px;
  /* border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc; */
  border-right: 1px solid #cccccc;
  border-left: 1px solid #cccccc;
}

ul.nice-menu-down ul li {
  clear: both;
}

ul.nice-menu-down ul a:hover{
  background:#eef0f0;
}

ul.nice-menu-down li ul li ul,
/* Repeat for Garland header. */
#header-region ul.nice-menu-down li ul li ul {
  left: 170px;
  top: -1px;
}

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: #eee url(arrow-down.png) right 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: #ccc url(arrow-down.png) right center no-repeat; */
}

ul.nice-menu-down li li.menuparent,
/* Repeat for Garland header. */
#header-region ul.nice-menu-down li li.menuparent {
  /* 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,
/* Repeat for Garland header. */
#header-region ul.nice-menu-down li li.menuparent:hover,
#header-region ul.nice-menu-down li li.over {
  /* background: #ccc url(arrow-right.png) right center no-repeat; */
}


/******************************
 VERTICAL (left/right) menus
******************************/

/* This is the default width of all vertical menus. */
ul.nice-menu-right, ul.nice-menu-left,
ul.nice-menu-right li, ul.nice-menu-left li {
  width: 170px;
}

/* VERTICAL menus where submenus pop RIGHT (default). 
ul.nice-menu-right ul {
  width: 170px;
  left: 240px;
  top: -1px;
}

ul.nice-menu-right ul ul {
  width: 170px;
  left: 220px;
  top: -1px;
}

ul.nice-menu-right li.menuparent,
ul.nice-menu-right li li.menuparent {
  background: #eee url(arrow-right.png) right center no-repeat;
}

ul.nice-menu-right li.menuparent:hover,
ul.nice-menu-right li.over,
ul.nice-menu-right li li.menuparent:hover,
ul.nice-menu-right li li.over {
  background: #ccc url(arrow-right.png) right center no-repeat;
} */

/* VERTICAL menus where submenus pop LEFT. */
ul.nice-menu-left li ul {
  width: 170px;
  left: -210px;
  top: -1px;
  border: 1px solid #cccccc;
}

ul.nice-menu-left li ul li ul {
  width: 170px;
  left: -210px;
  top: -1px;
  border: 1px solid #cccccc;
}

ul.nice-menu-left li li {
  border-left: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
  background: #fff url('bg.png');
}

ul.nice-menu-left li.menuparent,
ul.nice-menu-left li li.menuparent {
  background: #fff url(arrow-left.png) left center no-repeat;
}

ul.nice-menu-left li.menuparent:hover,
ul.nice-menu-left li.over,
ul.nice-menu-left li li.menuparent:hover,
ul.nice-menu-left li li.over {
  background: url(arrow-left.png) left center no-repeat;
}

ul.nice-menu-left a, ul.nice-menu-left ul a {
  /* padding-left: 14px; */
}

