/* 
 *		Horizontal, top-2-bottom menu
 *		Copyright Aleksandar Vacic, www.aplus.co.yu, some rights reserved http://creativecommons.org/licenses/by/2.0/
 */
@charset "utf-8";
/*		------	Basic style	------		*/
#menu {
	display: block;
	width: 730px;
	top: 30px;
	left: 0px;
	position: absolute;
}

#menu ul {
	margin: 0;
	padding: 0;
	border: 0;
	list-style-type: none;
	padding: 2px 7px 0 7px;
}

#menu li {
	margin: 0;
	padding: 0;
	border: 0;
	display: block;
        width: 100px;
}

#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;
	position: absolute;
}

/* ...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;
	left: 100px;
	left: 94px;
	top: 0px;
	position: absolute;
	z-index: 20;
	width: 200px;
}

/* display them on hover */
#menu li:hover>ul, #menu li.active>ul, #menu li.active ul {
	display: block;
	background: #6E7679;
	height: 110px;
}

#menu li:hover>ul {
	z-index: 90;
}

/* 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: #CCCCCC;
	line-height: 1.6em;
	text-align: left;
}

#menu li:hover {
	color: #FFFFFF;
}

#menu a {
	text-decoration: none;
	color: #CCCCCC;
}

#menu li.active a { color:#FFF; }
#menu li.active li a { color:#CCC; }

#menu li:hover>a {
	color: #FFFFFF;
}

#menu li a:hover {
	color: #FFFFFF;
}

#menu li ul {
	color: #CCCCCC;
	width: 200px;
}

#menu li ul a {
	background: url(../images/bg_subnav_a.gif) no-repeat 0 -28px;
	color: #CCCCCC;
	padding-left: 19px;
	text-align: left;
}

#menu li ul a:hover, #menu li ul a.active {
	background: url(../images/bg_subnav_a.gif) no-repeat 0 -3px;
	color: #FFFFFF;
}

/*/////////////////////////////////////////////////////////////////////////*/
#toolbar {
	top: -26px;
	left: 0;
	position: absolute;
	width: 548px;
	width: 600px;
	font-family: arial,helvetica,sans-serif;
	font-size: 90%;
	text-align: right;
}

#toolbar li {
	display: inline;
	padding-left: 32px;
}

#toolbar .hide {
     display: none;
}

#toolbar li a {
    color: #666;
	text-decoration: none;
}

#toolbar li a:hover {
	color: #EC0C9A;
}

#print {
	right: 0;
	top: 6px;
	position: absolute;
	height: 14px;
	width: 43px;
}

#language {
	top: -26px;
	left: 580px;
	position: absolute;
	width: 220px;
}

#language select {
	background:#FFFFFF url(../images/bg_search_input.gif) repeat-x scroll 0%;
	border:1px solid #AAAAAA;
	color:#333333;
	font-size: 90%;
}

#language form { margin: 0; padding: 0; }
#language legend, #language label { display: none; }

/*/////////////////////////////////////////////////////////////////////////*/
#bread {
	color: #999999;
	display: block;
	top: 0px;
	left: -4px;
	position: absolute;
}

#bread a {
	color: #666;
	font: 90%/3em arial,helvetica,sans-serif;
	text-decoration: none;
	padding-left: 0.3em;
	padding-right: 0.3em;
}

#bread a:hover {
	color: #EC0C9A;
}

/* Sitemap menu's ////////////////////////////////////////////////////////////*/
#right .landing {
	height: 223px;
	position: relative;
}

#right .landing ul {
	bottom:0pt;
	margin:0pt;
	position:absolute;
}

#right ul li {
	margin-bottom: 4px;
}

#right ul a {
	background: transparent url(../images/bg_a_arrow.gif) no-repeat scroll 0pt 0.45em;
	color: #666;
	padding-left:15px;
	text-decoration: none;


	bottom:0pt;
	margin:0pt;
	position:relative;
        z-index: 10;
}

#right ul a:hover {
	color: #EC0C9A;
	text-decoration: underline;
}

#right ul dl {
	bottom: 123px;
	display: block;
	height: 100px;
	left: 0pt;
	position: absolute;
	visibility: hidden;
	width: 200px;
        z-index: 0;
}

.landing ul dt {
	color:#666;
	font-family:'palatino linotype',garamond,palatino,'times new roman',times,serif;
	font-size:160%;
	margin-bottom:0.3em;
}














