﻿#hlavni .levy .menu {  width: 190px; text-align: left; }

.AspNet-Menu-Vertical
{
    font-size: 90%;
}

/* The menu adapter renders an unordered list (ul) in HTML for each tier in the menu. */
/* So, effectively says: style all tiers in the menu this way... */
#hlavni .levy .menu ul
{
	
}

/* Import z CSS/Menu.css */
ul.AspNet-Menu, 
ul.AspNet-Menu ul
{
    margin: 0;
    padding: 0;
    display: block;

}

ul.AspNet-Menu li
{
    position: relative;
    list-style: none;
    float: left;
}

ul.AspNet-Menu li a,
ul.AspNet-Menu li span
{
    display: block;
    text-decoration: none;
}

ul.AspNet-Menu ul
{
    position: absolute;
    visibility: hidden;
}

.AspNet-Menu-Vertical ul.AspNet-Menu li
{
    width: 100%;
}

/* Top tier */
.AspNet-Menu-Vertical ul.AspNet-Menu
{
    width: 190px;
    font-weight: bold;
}

/* This rule effectively says: style all tiers EXCEPT THE TOP TIER in the menu this way... */
/* In other words, this rule can be used to style the second and third tiers of the menu without impacting */
/* the topmost tier's appearance. */
.AspNet-Menu-Vertical ul.AspNet-Menu li ul
{
	position: relative;
	visibility: visible !important;
	position: relative;
	left: 0px !important;
	font-weight: normal;
	width: 190px;
	padding-top: 10px;
	padding-bottom: 10px;
}

.AspNet-Menu-Vertical ul.AspNet-Menu li ul ul
{
	visibility: hidden !important;
	display: none !important;
	left: 190px !important;
	top: -5px;
	z-index: 300;
	width: 170px;
	padding-top: 2px;
	padding-bottom: 2px;
}

/* The menu adapter generates a list item (li) in HTML for each menu item. */
/* Use this rule create the common appearance of each menu item. */
ul.AspNet-Menu li
{

}

/* top tier */
.AspNet-Menu-Vertical ul.AspNet-Menu li
{
    background: url(Images/MainMenu/Circle.gif) no-repeat 6px 9px;
}

/* except topmost tier */
.AspNet-Menu-Vertical ul.AspNet-Menu ul li
{
	background: url(Images/MainMenu/Arrow.gif) no-repeat 9px 8px;
}

.AspNet-Menu-Vertical ul.AspNet-Menu ul ul li
{
	background: transparent url(Images/MainMenu/DarkArrow.gif) no-repeat 9px 8px;
}

/* Within each menu item is a link or a span, depending on whether or not the MenuItem has defined it's */
/* NavigateUrl property. By setting a transparent background image here you can effectively layer two images */
/* in each menu item.  One comes from the CSS rule (above) governing the li tag that each menu item has. */
/* The second image comes from this rule (below). */
ul.AspNet-Menu li a,
ul.AspNet-Menu li span
{
	margin: 3px 3px 3px 20px;
}

ul.AspNet-Menu ul li a,
ul.AspNet-Menu ul li span
{
	background: transparent url(Images/MainMenu/DoubleArrow.gif) 95% center no-repeat;
}

/* When a menu item contains no submenu items it is marked as a "leaf" and can be styled specially by this rule. */
ul.AspNet-Menu li.AspNet-Menu-Leaf a,
ul.AspNet-Menu li.AspNet-Menu-Leaf span
{
	background-image: none;
}

/* Not used presently.  This is here if you modify the menu adapter so it renders img tags, too. */
ul.AspNet-Menu li a img
{

}

/* When you hover over a menu item, this rule comes into play. */
/* Browsers that do not support the CSS hover pseudo-class, use JavaScript to dynamically change the */
/* menu item's li tag so it has the AspNet-Menu-Hover class when the cursor is over that li tag. */
/* See MenuAdapter.js (in the JavaScript folder). */
ul.AspNet-Menu li:hover, 
ul.AspNet-Menu li.AspNet-Menu-Hover
{
	
}

ul.AspNet-Menu li:hover ul ul,
ul.AspNet-Menu li.AspNet-Menu-Hover ul ul
{
}
ul.AspNet-Menu ul li:hover ul,
ul.AspNet-Menu ul li.AspNet-Menu-Hover ul
{
	visibility: visible !important;
	display: block !important;
	position: absolute !important;
}

ul.AspNet-Menu li:hover a, 
ul.AspNet-Menu li:hover span, 
ul.AspNet-Menu li.AspNet-Menu-Hover a,
ul.AspNet-Menu li.AspNet-Menu-Hover span,
ul.AspNet-Menu li:hover li:hover a, 
ul.AspNet-Menu li:hover li:hover span, 
ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover a,
ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover span,
ul.AspNet-Menu li:hover li:hover ul a:hover, 
ul.AspNet-Menu li:hover li:hover ul span.Asp-Menu-Hover, 
ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul a:hover,
ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul span.Asp-Menu-Hover
{
	
}

ul.AspNet-Menu li:hover ul a, 
ul.AspNet-Menu li:hover ul span, 
ul.AspNet-Menu li.AspNet-Menu-Hover ul a,
ul.AspNet-Menu li.AspNet-Menu-Hover ul span,
ul.AspNet-Menu li:hover li:hover ul a, 
ul.AspNet-Menu li:hover li:hover ul span, 
ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul a,
ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul span
{
	
}

/* While you hover over a list item (li) you are also hovering over a link or span because */
/* the link or span covers the interior of the li.  So you can set some hover-related styles */
/* in the rule (above) for the li but set other hover-related styles in this (below) rule. */
ul.AspNet-Menu li a:hover,
ul.AspNet-Menu li span.Asp-Menu-Hover
{
	
}

ul.AspNet-Menu li.AspNet-Menu-Leaf a:hover
{
	
}
