/* $Id: nice_menus_default.css,v 1.6 2007/10/29 16:38:28 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 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.
*/

/******************************
 HORIZONTAL (down) menus
******************************/

/* definice pro cele menu */
ul.nice-menu-down,
ul.nice-menu-down ul {
  margin: 0;
  padding: 0;
  
  list-style: none;
}

/* horizont */
ul.nice-menu-down li {
  margin: 0;
  padding: 0;
  
  margin-top: 14px;
  padding-right: 16px;
  margin-right: 25px;
  
  white-space: no-wrap;
  border-top: 0;
  float: left;
  background-image: none;
  list-style-image: none;
}

ul.nice-menu-down li.menuparent {
  background: url(arrow-down.png) right center no-repeat;
}

ul.nice-menu-down li a {
  margin: 0;
  padding: 0;
  
  margin-left: 2px;
  
  color: #ffffff;
	font-size: 13px;
	text-transform: uppercase;
	
	letter-spacing: 1px;
}

ul.nice-menu-down li a:hover, over, 
ul.nice-menu-down li a:active {
  text-decoration: none;
  color: #dfdfdf;
}

/* vertikal, 1. uroven */
ul.nice-menu-down ul {
  margin: 0;
  padding: 0;
  
  padding-top: 9px;
  margin-left: 2px;  /* levy posun podmenu, srovnani s margin left v ul.nice-menu-down li a { */
  
  border-bottom: 1px solid #983618;
}

ul.nice-menu-down ul li {
  margin: 0;
  padding: 0;
  
  clear: both;
  float: left;
  background-color: #C25526;
  
  width: 180px;
  border-top: 1px solid #983618;
  border-right: 1px solid #983618;
  border-left: 1px solid #983618;
}

ul.nice-menu-down ul li:hover {
  
}

ul.nice-menu-down ul li.menuparent {
  margin: 0;
  padding: 0;
  
  background: #C25526 url(arrow-right.png) right center no-repeat;
}

ul.nice-menu-down ul li a {
  margin: 0;
  padding: 0;
  
  margin-left: 4px;
  padding: 7px 0 7px 0;
  font-size: 12px;
}
ul.nice-menu-down ul li a:hover, over, 
ul.nice-menu-down ul li a:active {
  text-decoration: none;
  
}


/* vertikal, 2. uroven */
ul.nice-menu-down ul ul {
  margin: 0;
  padding: 0;
  
  margin-left: 180px; /* levy posun podpodmenu, zobrazi se vpravo od sloupecku */
  top: -1px;
  padding-top: 4px;
  
   border-bottom: 1px solid #983618;
}
ul.nice-menu-down ul ul li {
  margin: 0;
  padding: 0;
  
  background-color: #9E3D21;
}
ul.nice-menu-down ul ul li a:hover, over, 
ul.nice-menu-down ul ul li a:active {
  text-decoration: none;
  
}

/* global definice linku */

ul.nice-menu-down a, 
ul.nice-menu-down a:link, 
ul.nice-menu-down a:visited {
  text-transform: uppercase;
  text-decoration: none;
  font-weight: bold;
  color: white;
}

ul.nice-menu-down a:hover, over, 
ul.nice-menu-down a:active {
  text-decoration: none;
}
