#navcontainer{
	margin:5px 0px;
	border-top:1px solid black;
	border-bottom:1px solid black;
	padding:6px 0px;
}

#nav {
	padding: 0px;
	margin: 0px;
	margin-bottom: 15px;
	padding-left: 15px;	
/*	padding-top:7px;
	margin-top: 5px;
	border-bottom: 1px solid black;
	border-top: 1px solid black;
	height: 22px;*/
}
/* Vzhled primarniho menu */
a.menuItem {
	font-size: 12px;
	font-family: 'Verdana CE', 'Arial CE', 'Lucida Grande CE', 'Helvetica CE', Verdana, Arial, lucida, sans-serif;
	_font-family: Verdana;
	font-weight: bold;
	color: #EE3338; /*#D05D3C;*/
	text-decoration: none;
	border-bottom:2px solid white;
}

a.menuItem:hover {
	color: black;
	border-bottom:2px solid black;
}

/* Vzhled sekundarniho menu */
#nav li ul li a{
	padding: 5px;
	color: white;
	text-decoration: none;
	font-size: 12px;
	font-family:  'Verdana CE', 'Arial CE', 'Lucida Grande CE', 'Helvetica CE', Verdana, Arial, lucida, sans-serif;
	_font-family: Verdana;
	background: black;
	border-bottom: 1px solid silver;
	width: 180px;
}
#nav li ul li a:hover{
	background: #BB1313;
}
/*dont change, only width*/

#nav a {
	display: block;
}

#nav li { /* all list items */
	float: left;
	list-style: none;
	height: 22px;
}

#nav li ul li {
	height: 25px;
}

li.menuItem {
	margin-right: 30px;
	padding-bottom: 5px;
}

#nav li ul { /* second-level lists */
	background-color: transparent;
	padding: 0px;
	padding-top: 6px;
	width: 180px;
	margin: 0px;
	position: absolute;
	left: -9990em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
	left: auto;	
}

