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

#navbar {
	clear:both;
	width:900px;
	height:40px;
	margin:0px auto;
	overflow:visible;
	float:left;
	display:inline;
	}
	
#navbar-inner {
	padding:20px 0px 0px 10px;
	text-transform:uppercase;
	font-weight:normal;
	font-size:14px;
	overflow:visible;
	z-index:99;
	position:absolute;
	width:900px;
	}
	
#navbar-inner a {
	text-decoration:none;
	color:#fff;
	padding-right:15px;
	}	
	
#navbar-inner a:hover {
	text-decoration:none;
	color:#ccc;
	}	
	
#navbar-inner .last a {
	background:none;
	}
	

#block-nice_menus-1 h2.title {
	display:none;
	}

	
#navbar ul, #navbar li {
	margin:0px;
	padding:0px;
	}
	
ul.nice-menu,
ul.nice-menu ul {
	clear:both;
  list-style: none;
  padding: 0;
  margin: 0;
  position:relative;
  z-index:99;
}


ul.nice-menu li {
  border-top: 0;
  float: left;
  /* Additional overrides to deal with Garland theme. */
  margin: 0;
  padding-left: 0;
  background:url(assets/nav-divider.gif) no-repeat right;
  position:relative;
}

ul.nice-menu li.last {
  background-image:none;

}


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

ul.nice-menu ul {
  top: auto;
  left: -1px;
  border: 0;
  margin-right: 0;
  position:absolute;
  z-index:99;
}


ul.nice-menu ul li, ul.nice-menu li#menu-398  {
  background-image:none;
}


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

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

ul.nice-menu-down li {
}

ul.nice-menu-down li li {
  width:225px;
  font-size:12px;
  border-top: 0;
  background-image:none;
  background-color:#006b85;
  text-transform:capitalize;
  border-bottom:#000 solid 1px;
}

ul.nice-menu-down ul {
  left: 0;
}

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: 12.5em;
  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 {
}

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 {
}

ul.nice-menu-down li li.menuparent,
/* Repeat for Garland header. */
#header-region ul.nice-menu-down li li.menuparent {
}

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 {
}

li#menu-398 a {
	background:none;
	}
