/* $Id: nice_menus.css,v 1.27.2.1 2008/07/11 16:05:10 add1sun Exp $ */
/*
  This file contains the basic logic for nice menus, and should not be
  edited.  To customize the menus, it's recommended to create a custom CSS
  file using nice_menus_default.css 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.)
*/

/* Below should fix menu being a few pixels away in some themes, and menus disappearing behind other stuff. */
ul.nice-menu,
ul.nice-menu ul {
  list-style: none;
  padding: 0px;
  border-top: 1px solid #e0eaed;
  background:  #e0eaed  url(bgmenu.png) repeat-x 0 0;
  text-decoration:none;
}

ul.nice-menu li {
  border: 1px solid #999;
  border-top: 0;
  float: left;
  /*Additional overrides to deal with Garland theme. */
  margin: 0px;
/* the following settings widen the menus AS*/
  padding-left: 22px;
  padding-right: 22px;
  text-decoration:none;
  background:  #e0eaed  url(bgmenu.png) repeat-x 0 0;
}

/* 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;
  text-decoration:none;
}

ul.nice-menu a {
  padding: 0.6em 8px 0.6em 8px;
text-decoration:none;
}

ul.nice-menu ul,
/* Repeat for Garland header. */
#header-region ul.nice-menu ul {
  top: 1.8em;
  left: -5px;
  border: 0;
  border-top: 1px solid #e0eaed;
  margin-right: 0;
 
}

/* Override for Garland header. */
#header-region ul.nice-menu ul {
  top: 1.7em;
}
/*this changes the child width--as*/
ul.nice-menu ul li {
  width: 11.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: #e0eaed 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: #e0eaed url(arrow-left.png) left center no-repeat;
}

ul.nice-menu-left a, ul.nice-menu-left ul a {
  padding-left: 0px;
  text-decoration:none;
}

/******************************
 HORIZONTAL (down) menus ----adding width and heighth does not work to make set size.  AS
******************************/

ul.nice-menu-down {
  float: left;
  border: 0;
  background:  #e0eaed  url(bgmenu.png) repeat-x 0 0;
}

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

ul.nice-menu-down li li {
  border-top: 1px;
}
/*this moves drop-downs to the left, top negative number moves it up,positive doesn't move it down*/
ul.nice-menu-down ul {
  left: 0px;
  
}

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

ul.nice-menu-down li ul li ul,
/* Repeat for Garland header. */
#header-region ul.nice-menu-down li ul li ul {
  left: 15em;
  top: 5px;
  text-decoration:none;

}
/*affects menu parent*/
ul.nice-menu-down .menuparent a {
  padding-right: 5px;
  left: 4px;
}

ul.nice-menu-down li.menuparent,
/* Repeat for Garland header. */
#header-region ul.nice-menu-down li.menuparent {
  background: 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: 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: 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: url(arrow-right.png) right center no-repeat;
}