/* 
 *		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 {
	display: block;
	position: relative;
	top:74px;
	left:120px;
}

#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: 20;
}

/* 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 {
	background: #0372AB;
	color: #FFFFFF;
	height: 19px;
	width: 780px;	
}

#menu li {
	border-right: 1px solid #D5EAF5;
	height: 19px;
	width: 120px;
}

#menu li.last {
	border-right: 0;
}

#menu li:hover {
	color: #FFFFFF;
}

#menu a {
	text-align: center;
	text-decoration: none;
	color: #FFFFFF;
	font-size: 13px;
	font-weight: bold;
	padding: 1px;
	font-family: "Trebuchet MS", Arial, sans-serif;
}

#menu li:hover>a {
	color: #FFFFFF;
}

#menu li ul {
	color: #0372AB;
	background-color: #D5EAF5;
	width: 100%;
}

#menu li ul li {
	border: 0;
	color: #0372AB;
	height: auto;
	line-height: 13px;
	margin-left: 0;
	float: none;
}

#menu li ul a {
	background: #D5EAF5;
	color: #0372AB;
	font-size: 12px;
}

#menu li ul a:hover {
	color: #FFF;
	background: #0372AB;
}



/* Breadcrumb navigation ////////////////////////////////////////////////////////////////////////*/

#bread {
	color: #0372AB;
	margin: 6px;
}

#bread a {
	color: #0372AB;
	font-size: 11px;
	margin-left: 2px;
}