/* Celija u kojoj se nalazi meni */
.MenuBox{
background-image:url(MenuBackground.jpg);
background-position:top left;
background-repeat:no-repeat;
background-color:#FFFFFF;
/* Udaljenost lijevog ruba menija od lijevog ruba plave podloge */
padding-left:20px;
text-align:left;
vertical-align:top;
/* Udaljenost od vrha menija do logotipova */
height:255px;
}
.vertical ul{
	list-style-type: none;
	padding: 0;
	margin: 0;
	position: relative;
}
.vertical li{
	position: relative;
	border-bottom: 1px solid transparent;
} 
.vertical li ul{
	position: absolute;
	top: 0px;
	/* Udaljenost podmenija od lijevog ruba menija. Za maknuti "crticu" smanjiti ovo.*/
	left: 155px;
}
/*here we use a little CSS to make a basic/backup dropdown menu in modern browsers *cough* not IE6 or less *cough* if javascript is disabled.Flickering never happens in these browsers*/
.mlmenu li ul{
	display: none;
}
.mlmenu li:hover>ul{
	display: block;
}
/*This section makes the menu not work in non-javascript enabled browsers by not showing the menu by default-This can be worked around by making top level links point to a sitemap*/
.accessible li ul{
	display: block;
}
.noshow{
	visibility: hidden;
}

.AR li a{
	/* Sirina menija */
	width: 144px;
	font-family: Arial, "Times New Roman", Times, serif;
	font-size:12px;
	color:#676767;
	font-weight:bold;
	text-align:left;
	padding: 5px 0px 1px 10px;
	text-decoration: none;
	display: block;
	height: 25px;
	line-height: 22px;		
	overflow: hidden;
	border: none;
	background: #E8E8E8 no-repeat center left url(LinkBackground.jpg);

}
.AR li a:hover{
	color:#CC3333;
	background: #E8E8E8 no-repeat center left url(LinkHoverBackground.jpg);

}