@charset "utf-8";
/* CSS Document */
ul#topnav {
	margin: 0;
	list-style: none;
	float: left;
	font-size: 11px;
}
ul#topnav li{
	margin: 0;
	padding: 0;
	overflow: hidden;  /*--Important - Masking out the hover state by default--*/
	float: left;
	height:40px;
}
ul#topnav a, ul#topnav span { /*--The <a> and <span> share the same properties since the <span>  will be a duplicate of the <a> tag--*/
	float: left;
	text-decoration: none;
	color: #fff;
	text-transform: uppercase;
	width: 100%;
	height: 20px;
	line-height: 20px; /*--Vertical alignment of text--*/
	background-image: url(../Images/POKUSAJ.jpg);
	background-repeat: repeat-x;
	padding: 10px 10px;
	clear: both;
}
ul#topnav a{ /*--This is basically the hover state of navigation--*/
	color: #555;
	background-position: left bottom;
}
ul#topnav span{ /*--Default state of navigation--*/
	background-position: left top;
}

