/*
 *	Horizontal, top-2-bottom
 *	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 *	(c) 2004 - Aleksandar Vacic, www.aplus.co.yu
 * Some rights reserved, http://creativecommons.org/licenses/by/2.0/
 *	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 */



/*		------	Basic style	------		*/
#menu ul {
	margin: 0;
	padding: 5px !important;
	border: 0;
	list-style-type: none;
	padding-top:			12px;
}

#menu li {
	margin: 0;
	padding: 0;
	border: 0;
	display: block;
	float: left;
	position: relative;
}

#menu li a {
	color:			white;
	font-size:		12px;
}

#menu a {
	display: 		block;
	color:			black;
}

#menu li li {
	width: 100%;
}
#menu li li a {
	color:			#2280AA;
}

/* 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: 10;
}

/* 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;
}

/* Clear-fix for IE5/Mac \*//*/
#menu a {
	float: left;
}

#menuList {
	display: inline-block;
}
/*  */

/*		------   Make-up	--------			*/

#menu {
	font-family: 		century gothic;
	font-size: 			1em;

}

#menu ul li ul{
	padding-bottom:		20px;
	opacity: 			.90;
	-MozOpacity: 		.90;
	filter:				alpha(opacity=90);
	border:				1px solid #E3E9F2;
}

#menu a {
	text-decoration: 	none;
	text-align: 		center;
	padding: 			4px 5px 5px;
	font-size:			11px;
}

#menu li {
	margin: 			0px;
	padding: 			0px;
	display:			block;
	margin-left: 		10px;
	margin-right: 		10px;
	line-height: 		18px;
}

#menu li:hover {
	background-color: 	#7AB3CC;

}
#menu li li:hover {
	background-color: 	transparent;
}
#menu li li:hover a{
	text-decoration:	underline;
}

/* 	we can't use 100% because LIs have margin and padding (although latter is more important) */
#menu li li {
	margin: 				0px;
}

#menu li ul {
	background-color: 		white;
	background-image: 		url(images/iconbg.gif);
	background-repeat: 		repeat-y;
	width:					200px;
}

#menu li ul a {
	text-align: 			left;
	padding-left: 			10px;
	font-weight:			normal;
	line-height:			13px;
	font-size:				11px;
}

#menu li li.submenu {
	background-image: 		url(images/arrow-w.gif);
	background-repeat: 		no-repeat;
	background-position: 	right;
}

#menu li li.submenu>a {
	background: url(images/arrow-b.gif) no-repeat right;
}

#menu li li.submenu:hover>a {
	background-image: 		none;
}

#search {
    float: right;
    margin-right: 5px;
    margin-top: 6px;
	font-family: 'century gothic',verdana,sans-serif;
	font-size:  12px;
	color: #FFF;
}

#search a {
    display: inline;
    margin: 0.5em;
    color: white;
}




