/*
  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.)

  See README.txt and the handbook page (http://drupal.org/node/185543)
  for more information on using the CSS.
*/

/********** Global CSS for ALL menu types **********/
ul.nice-menu, ul.nice-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 200;
}

ul.nice-menu li {
  border-right: 1px dotted #000;
  border-top: 0;
  /* height: 27px; if menu items go long, this won't allow the entry to grow vertically */
  min-height: 27px;
  float: left; /* LTR */
}
ul.nice-menu ul li:hover { background-color: #B0A582; }
ul.nice-menu li:last-child {/* remove end border */
  border-right: 0;
}

ul.nice-menu a {
  color: #000000;
  text-decoration: none;
  padding: 0.3em 10px;
}

ul.nice-menu ul {
  top: 2.2em;
  left: -1px; /* LTR */
  border: 1px solid #666;
  border-top:0;
  margin-right: 0; /* LTR */
}

ul.nice-menu ul li {
  width: 15.5em;
  background-color: #E0D1A6;
  -moz-box-shadow: 1px 1px 3px #333;
  -webkit-box-shadow: 1px 1px 3px #333;
  box-shadow: 1px 1px 3px #333;
  border: 0;
  z-index: 190;
}
/* ul.nice-menu ul li a { background-color: #E0D1A6; }
ul.nice-menu ul li a:hover { background: #D6B66B; } overridden */

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

ul.nice-menu-down {
  float: left; /* LTR */
  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; /* LTR */
}

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

ul.nice-menu-down li ul li ul {
  left: 15.5em; /* LTR */
  top: -1px;
}

ul.nice-menu-down .menuparent a {
  padding-right: 22px; /* LTR */
}

ul.nice-menu-down li.menuparent {
  background: #E0D1A6 url(images/ucdc_sprite.png) top right no-repeat;
}

ul.nice-menu-down li.menuparent:hover {
  background: #b0a582 url(images/ucdc_sprite.png) top right no-repeat;
}

ul.nice-menu-down li ul li.menuparent {
  background: #E0D1A6 url(images/ucdc_sprite.png) bottom right no-repeat;
}

ul.nice-menu-down li ul li.menuparent:hover {
  background: #b0a582 url(images/ucdc_sprite.png) bottom right no-repeat;
}