/* $Id: nice_menus_custom.css,v 1.1 2010/03/30 22:42:11 paul 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.
*/

/******************************
 HotHouse change to the following found in nice_menus.css
******************************/
/* Below should fix menu being a few pixels away in some themes, and menus disappearing behind other stuff. */
.block-nice_menus {
  z-index: 666 !important; /*10*/
}

/* For Garland header. */
#header-region ul.nice-menu li.menuparent ul iframe {
	z-index: 666 !important; /* -1 */
}



/******************************
 Global CSS for ALL menu types
******************************/

ul.nice-menu,
ul.nice-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  /*border-top: 1px solid #ccc;*/
}

ul.nice-menu li {
  /*border: 1px solid #ccc;*/
  border-top: 0;
  float: left;
  /* background-color: #eee; */
  /* Additional overrides to deal with Garland theme. */
  margin: 0;
  padding-left: 0;
  background-image: none;
}

/* 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: 0.3em 5px 0.3em 5px;
}

ul.nice-menu ul,
/* Repeat for Garland header. */
#header-region ul.nice-menu ul {
  top: 68px;
  left: -1px;
  border: 0;
  /*border: 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: 12.5em;
}

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

/* VERTICAL menus where submenus pop RIGHT (default). */
ul.nice-menu-right ul {
  width: 12.5em;
  left: 12.5em;
  top: -1px;
}

ul.nice-menu-right ul ul {
  width: 12.5em;
  left: 12.5em;
  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: 12.5em;
  left: -12.65em;
  top: -1px;
}

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

ul.nice-menu-left li.menuparent,
ul.nice-menu-left li li.menuparent {
  /*background: #eee 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: #ccc url(arrow-left.png) left center no-repeat;*/
}

ul.nice-menu-left a, ul.nice-menu-left ul a {
  padding-left: 14px;
}

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

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

ul.nice-menu-down li {
  /*border-top: 1px solid #ccc;*/
}

ul.nice-menu-down li li {
  border-top: 0;
}

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

ul.nice-menu-down ul li {
  /*border: solid 1px #c2c2a3;*/
  /*padding:0px;*/
  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;
  line-height:30px;
}

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



/******************************
 Added from style.css
******************************/
#nav div.block-nice_menus ul.nice-menu {
/*	font-weight: 700; */
	padding: 0px;
	height: 67px;
	margin: 0px;
    clear: both;
    float: none;
}

#nav div.block-nice_menus ul.nice-menu li a {
	font-family: "Trebuchet MS", Arial;
	font-size: 13px;
	line-height: 64px;
	margin: 2px 0 0 0;
	padding-top: 0px;
	padding-bottom: 0px;
	padding-left: 10px;
	padding-right: 11px;
	background-image: url(images/common/nav_main_divider.gif);
	background-repeat: no-repeat;
    background-position: right;
	z-index: 20;
	color: #FFFFFF;
	text-align: center;
	border-bottom: 0;
}

/***** CUSTOM SETTINGS FOR INDIVDUAL BUTTONS ****/
#nav div.block-nice_menus ul.nice-menu li#menu-305 a {
	line-height: 18px;
	width: 72px;
	padding-top: 12px;
	padding-bottom: 10px;
}
/************************************************/

#nav div.block-nice_menus ul.nice-menu li ul li a {
	line-height: 30px;
	margin: 0px;
	padding-top: 1px;
	padding-bottom: 1px;
	padding-left: 10px;
	padding-right: 10px;
	background-color:#428A83;
	z-index: 20;
	color: #C5F0FE;
	text-align: left;
	background-image: none;
	/*background-image: url(images/common/menu_divider_down.gif);
	background-repeat: repeat-y;
    background-position: top;*/
}
#nav div.block-nice_menus ul.nice-menu li ul li a:hover {
    /*color:#666;*/
}

/*eric added*/
#nav div.block-nice_menus ul.nice-menu li a:hover {
    color:#FFFFFF;
}
#nav div.block-nice_menus ul.nice-menu li a:active {
    color:#b4a274;
}

/*style settings for end link*/
#nav div.block-nice_menus ul.nice-menu li.last a, #nav div.block-nice_menus ul.nice-menu li.menu-path-node-57 a {
	background-image: none;
	/*padding-right:0px;*/
	/*background-image: url(images/common/nav_right.png);
	background-repeat: no-repeat;
	background-position:right;*/
}

/*
 * --- Safari 3 browser fix ---------------------------------------------
 */

@media screen and (-webkit-min-device-pixel-ratio:0){

#nav div.block-nice_menus ul.nice-menu a:hover {
	color: #b4a274;
}
#nav div.block-nice_menus ul.nice-menu a.active {
	/*background-image: url(images/Osprey_navigation_main_selected.gif);*/
	color: #b4a274;
}
#nav div.block-nice_menus ul.nice-menu li.menuparent a.active, 
#nav div.block-nice_menus ul.nice-menu li.menuparent a.active:hover {
	/*background-image: url(images/Osprey_navigation_main_selected_active.gif);*/
	color: #b4a274;
}


/*active style for end link*/
#nav div.block-nice_menus ul.nice-menu li.last a.active {
background-image: none;
	/*background-image: url(images/common/nav_right2.png);
	background-repeat: repeat-x;*/
}

#nav div.block-nice_menus ul.nice-menu li {
/*	background-color: #d4e7f3;  */
	padding: 0px;
	border: none;
/*	padding: 28px 0 0 0;  
	height: 59px; */
	margin: 0px;
/*	background-image: url(images/liBck2.jpg);
	background-position: top;
	background-repeat: repeat-x; */
}

/*DROP DOWN SUB-MENU styles*/
#nav div.block-nice_menus ul.nice-menu li.menuparent li {
	height: 41px;
/*	width: 120px; */
	margin: 0;
	padding: 0;
	background-image: none;
	background-color: #005B88;
}
#nav div.block-nice_menus ul.nice-menu li.menuparent li {
	position:relative;
	z-index:9999;	
/*	width: 200px; */
}
#nav div.block-nice_menus ul.nice-menu li.menuparent ul li a {
	font-size: 10pt;
	background-image: none;
	/*height: 40px;*/
	line-height: 10px;
	color: #fff;
	/*border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #BADEE3;*/
}
#nav div.block-nice_menus ul.nice-menu li.menuparent li a:hover {
	font-size: 10pt;
	background-image: none;
	/*height: 40px;*/
	line-height: 40px;
	background-color: #0070A6;
	color: #fff;
}
#nav div.block-nice_menus ul.nice-menu li.menuparent li a.active, 
#nav div.block-nice_menus ul.nice-menu li.menuparent li a.active:hover {
/*	background-image: url(images/Osprey_navigation_sub_selected.gif);
	background-repeat: repeat-x; commented out 22 Sep 09 pr */
}
#nav div.block-nice_menus ul.nice-menu li ul {
	padding-top: 0px;
	margin-top: 0px;
}
ul.nice-menu ul {
	/*top: 41px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: none;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-color: #BADEE3;
	border-bottom-color: #BADEE3;
	border-left-color: #BADEE3;*/
}
/* 
#nav ul.nice-menu-down li ul li ul {
	left: 200px;
	z-index: 50;
}
*/