/* $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 {
	height: 48px;
	width: 947px;
}
ul.nice-menu,
ul.nice-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
 	/*border-top: 1px solid #ccc;*/
	border-top: 0;
	border-bottom: 0;
}
ul.nice-menu li {
	border: 0;
	float: left;
/*	background-color: #eee;*/

}
ul.nice-menu li li{
  /*border: 1px solid #ccc;*/
	border-left: 0;
	border-right: 0;
  	float: left;
	background-image: none;
}
ul.nice-menu li li.last {
	padding-bottom: 12px;
}
.de ul.nice-menu a {
	padding: 0.3em 10px 0.3em 10px;
}
ul.nice-menu a {
	color: #000000;
    font-size: 12px;
    padding: 0px 7px;
    text-decoration: none;
}

ul.nice-menu ul {
  /*top: 15px*/
	top: 37px;
  left: -1px;
  /*border: 0;
  border-top: 1px solid #ccc;*/
  margin-right: 0;
}

ul.nice-menu ul li {
  width: 534px;
}
/******************************
 HORIZONTAL (down) menus
******************************/

ul.nice-menu-down {
  float: left;
  border: 0;
	padding-left: 40px!important;
}

ul.nice-menu-down li {
  /*border-top: 1px solid #ccc;*/
    height: 44px;
    padding-top: 2px;
    padding-left: 0;
    padding-right: 3px;
	background: none;
	list-style: none;
}
ul.nice-menu-down li span {
	display: block;
	
	height: 28px;
	padding-top: 15px;
}
ul.nice-menu-down li ul li span {
	height: auto;
	padding-top: 3px;
}
ul.nice-menu-down li.last {
	background: none;
}
ul.nice-menu-down li li.last {

}
ul.nice-menu-down li li {
  border-top: 0;
	height: 22px;
	padding-top: 3px!important;
	padding-bottom: 0!important;
}

ul.nice-menu-down ul {
  left: 5px;
  height: auto;
}

ul.nice-menu-down ul li {
  clear: both;
  line-height: 20px;
}

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 .menuparent a {
  /*padding-right: 15px;*/
}

ul.nice-menu-down li.menuparent{
  /*background: #eee url(arrow-down.png) right center no-repeat;*/
 height: 46px;
}
ul.nice-menu-down li.menuparent a {
	display: inline-block;
	height: 27px;
}
ul.nice-menu-down li.menuparent li a {
	background: none repeat scroll 0 0 #0EB6FC;
    color: #FFFFFF;
    height: 21px;
    padding-top: 4px;
}
ul.nice-menu-down li span:hover {
}
ul.nice-menu-down li.menuparent span:hover,
ul.nice-menu-down li.over{

}

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;*/
}