@charset "utf-8";
/* 
 *		Horizontal, top-2-bottom menu
 *		Copyright Aleksandar Vacic, www.aplus.co.yu, some rights reserved http://creativecommons.org/licenses/by/2.0/
 */

/*		------	Basic style	------		*/

#menu {
	background: url(../img/bg-nav-top.gif);
	height: 43px;
	width: 920px;
	left: 0;
	top: 160px;
	position: absolute;
}

#menu ul {
	margin: 0;
	padding: 0;
	border: 0;
	list-style-type: none;
}

#menu li {
	margin: 0;
	padding: 0;
	border: 0;
	display: block;
	float: left;
	position: relative;
}

#menu a {
	display: block;
}

#menu li li {
	width: 100%;
}

/* fix the position for 2nd level submenus. first make sure no horizontal scrollbars are visible on initial page load... */
#menu li li ul {
	top: 0;
	left: 0;
}

/* ...and then place it where it should be when shown */
#menu li li:hover ul {
	left: 100%;
}

/* initialy hide all sub menus */
#menu li ul {
	display: none;
	position: absolute;
	z-index: 99;

}

/* display them on hover */
#menu li:hover>ul {
	display: block;
}

/* this is needed if you want to style #menu div - force containment of floated LIs inside of main UL */
#menuList:after {
	content: ".";
	height: 0;
	display: block;
	visibility: hidden;
	overflow: hidden;
	clear: both;
}

/* Fix for IE5/Mac \*//*/
#menu a {
	float: left;
}

#menuList {
	display: inline-block;
}
/*  */

/*		------   Make-up	--------			*/

#menu {
	color: #FFF;
}

#menu li:hover {
	background-color: #990099;
	color: #FFFFFF;
}

#menu a {
	border-right: 1px solid #FFF;
	color: #000;
	font-size: 13px;
	font-weight: bold;
	padding: 4px 12px 5px 12px;
	text-transform: uppercase;
	text-decoration: none;
	text-align: center;
}

#menu .last a {
	border-right: 0;
}

#menu li:hover>a {
	color: #FFFFFF;
}

#menu li a:hover {
	color: #FFF;
}

#menu li ul {
	color: #000;
	background: #DCDCDC;
	border: 0px;
	width: 200px;
}

#menu li ul a {
	background: #DCDCDC;
	border: 0px;
	color: #000;
	font-size: 11px;
	text-align: left;
	text-transform: none;
margin-top: -1px;
}

#menu li ul a:hover {
	background: #DCDCDC;
	color:  #990099;
}

/* Top 2 navigation ////////////////////////////////////////////////////////////////////////*/
#nav-top {
	top: 142px;
	right: 5px;
	position: absolute;
}


#nav-top li {
	display: inline;
}

#nav-top li a {
	padding-left: 18px;
	display: inline;
	float: left;
	color: #333;
	text-decoration: none;
}

/* Navigation left ////////////////////////////////////////////////////////////////////////*/

#nav-left ul {
margin-left: 1.3em;
}

#nav-left li {
	list-style:none;
	padding-bottom: 0.6em;
}

#nav-left li a {
	font-weight: bold;
}

/* Breadcrumb navigation ////////////////////////////////////////////////////////////////////////*/
#bread {
	color: #7F7F7F;
	top: 142px;
	left: 10px;
	position: absolute;
}

#bread a {
	color: #7F7F7F;
}

/* Toolbar navigation ////////////////////////////////////////////////////////////////////////*/
#iconbar {
	display: block;
	text-align:right;
	width:100%;
	margin-bottom: 4px;
}

#print-page a, #tipafriend a{
	border-left:4px solid #FFFFFF;
	display: inline;
}

/* Footer navigation ////////////////////////////////////////////////////////////////////////*/
#footer ul {
	float: left;
	width: 520px;
	margin-top: 14px;
	margin-left: 10px;
}

#footer li, #footer img {
	float: left;
	display: inline;
}

#footer li {
	background: url(../img/footer-bullit.gif) no-repeat right 2px;
	padding-right: 14px;
	margin-right: 2px;
}

#footer li a {
	color: #7F7F7F;
	font-size: 12px;
	line-height: 1.2em;
	float: left;
	text-decoration: none;
	white-space: nowrap;
}

#footer .last {
	background: none;
}


