/* @override 
	http://www.passions.com.sg/v2/sites/all/themes/zen/zen_passions/nice_menus.css
*/

/* $Id: nice_menus_default.css,v 1.1.2.5 2007/10/29 16:35:34 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 fnice-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
******************************/

#block-nice_menus-1 { 
overflow: visible;
position: relative;
height: 30px;
margin: 0;
padding: 0;
width: 980px;
}

#block-nice_menus-1 ul{
	margin: 0;
}

#block-nice_menus-1 .block-inner { margin: 0; padding: 0; }

#block-nice_menus-1 .content { margin: 0; padding: 1px 0 0 6px; }

ul.nice-menu,
ul.nice-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 11px;
	clear: both;
}

ul.nice-menu li {
  float: left;
	background: #000;
  margin: 0 4px;
	padding: 0;
	font-weight: bold; 
	text-transform:uppercase;
	border: none; 
	background: none; 
	
}

ul.nice-menu a {
  text-decoration: none;
  color: #FFF;
}

ul.nice-menu ul { top: 25px; }

/* Submenu item style */
ul.nice-menu ul li {
  width: 17em;
	font-weight: normal;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}

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

ul.nice-menu-down li, ul.nice-menu-down li.menuparent {
background: #000;
}

ul.nice-menu-down li.menuparent a { padding: 7px; }

ul.nice-menu-down ul li {
  clear: both;
	margin: 0; 
	padding: 0;
	background: #020586;
text-transform: none;
font-weight: bold;
}

ul.nice-menu-down ul li a:hover {
	background: #000;
	color: #B68A21;
}

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 li a{
  padding: 7px;
}
        
ul.nice-menu-down li {
  padding: 0px;
}        
	
/* Hoverstate for parent menu */
ul.nice-menu-down li a:hover {
	background: #020586;
	color: #B68A21;
}

ul.nice-menu-down li.menuparent:hover,
ul.nice-menu-down li.over {
	background: #020586;
	color: #B68A21;

 }

ul.nice-menu-down li.active,
ul.nice-menu-down li li.menuparent,
ul.nice-menu-down li.menuparent a.active {
background: #020586;
color: #B68A21;
}

ul.nice-menu-down li li.menuparent a:hover,
ul.nice-menu-down li li.over, {
background: #000;
color: #B68A21;
}

ul.nice-menu-down li.menuparent li a.active {
background: #000;
color: #B68A21;
}