/* $Id: nice_menus.css,v 1.28 2008/07/11 16:04:44 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. */
.block-nice_menus {
  line-height: normal;
  z-index: 100;
}

.hasjs ul.nice-menu,
.hasjs ul.nice-menu ul {
  z-index: 5;
  position: relative;
}

.hasjs ul.nice-menu li {
  position: relative;
}

.hasjs ul.nice-menu a {
  display: block;
}

.hasjs ul.nice-menu ul,
.hasjs #header-region ul.nice-menu ul {
  position: absolute;
/*  visibility: hidden;*/
   left:-5000px;
}

.hasjs ul.nice-menu li.over ul {
  visibility: visible;
}

.hasjs ul.nice-menu ul li {
  display: block;
}

.hasjs ul.nice-menu:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

