/* $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 {
	padding: 0;
	margin: 0;
	width: 100%;
	}

ul.nice-menu li {
	list-style: none;
	padding: 0;
	margin: 0;
	width: 284px;
	/*float: left;*/
	float: none;
	background-image: url("images/sub_menu.gif");
	background-position: 0 0;	
	}

ul.nice-menu a {	
	margin: 0;
	padding: 33px 0 0 13px;
	display: block;
	width: 271px;
	height: 24px;
	overflow: hidden;

	font: 19px Helvetica, Arial sans-serif;
	color: #FFF;
	text-decoration: none;	
	}
	
ul.nice-menu li:hover,
ul.nice-menu li.over {
	background-position: 0 -57px;
	}

ul.nice-menu ul {
	border: 0;
	margin-right: 0;
	}

ul.nice-menu ul li {
	width: 100%;
	}

/******************************/
/* NICEMENUS.CSS OVERRIDE */
/******************************/

ul.nice-menu li:hover ul, 
ul.nice-menu li.over ul {
	position: relative;
	display: block;
	}

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

ul.nice-menu-down {
  /*float: left;*/
}

ul.nice-menu-down li {
  	width: 284px;
  	list-style-position: outside;
  	margin: 0;
  	padding: 0;
	}

ul.nice-menu-down ul {
  left: 0;
  margin: 0;
  padding: 0;
  display: none;
}

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

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

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

ul.nice-menu-down li.menuparent {

}

ul.nice-menu-down li.menuparent:hover,
ul.nice-menu-down li.over {
  background: url("images/sub_menu.gif") 0 -57px no-repeat; /****** THIS LINE CONTROLS HOVER ******/
 }

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 {
  background: #ccc url(arrow-right.png) right center no-repeat;
}

ul.nice-menu-down li.menuparent li a {
	color: #778958;
	display: block;
	width: 284px
	height: 34px;	
	background: #4c5b31;
	font-size: 17px;
	padding: 10px 15px 6px 24px;
	width: 100%;
	}
	
ul.nice-menu-down li.menuparent li a:hover {
	background: #384821;
	color: #fff;
	}