@charset "utf-8";
/* CSS Document */

/* menuTOP */

.menuTop{
	float:none;
	display:inline-block;
	text-align:center;
}

.menuTop ul{
	z-index:100;
	margin: 0;
	padding: 0;
	list-style-type: none;
}

/*Top level list items*/
.menuTop ul li{
	position: relative;
	display:inline;
	float: left;
}

/*Top level menu link items style*/
.menuTop ul li a{
	display: block;
	font: normal 14px "Lucida Sans Unicode";
	letter-spacing:-1px;
	/*background: #cccccc; /*background of menu items (default state)*/
	width:auto;
	color: #333333;
	padding: 15px 24px 16px;
	border-right: 1px solid #cccccc;
	text-decoration: none;
	text-align:left;
}

.menuTop ul li a.son{
	border-right: none;
}

* html .menuTop ul li a{ /*IE6 hack to get sub menu links to behave correctly*/
	display: inline-block;
}

.menuTop ul li a:link, .menuTop ul li a:visited{
	color: #333333;
}

.menuTop ul li a.selected{ /*CSS class that's dynamically added to the currently active menu items' LI A element*/
/*	background-color:#000000;/*background of menu items during onmouseover (hover state)*/
	background:url(../img/bg-2.png) 0 -12px repeat;
	color: #ffffff;
}

.menuTop ul li a:hover{
/*	background-color:#000000;/*background of menu items during onmouseover (hover state)*/
	background:url(../img/bg-2.png) 0 -12px repeat;
	color: #ffffff;
}
	
/*1st sub level menu*/
.menuTop ul li ul{
	position: absolute;
	left: 0;
	display: none; /*collapse all sub menus to begin with*/
	visibility: hidden;
	/*background: #ffbb00;*/
	background:url(../img/transparent-50-turuncu.png) 0 0 repeat;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.menuTop ul li ul li{
	display: list-item;
	float: none;
}

/*All subsequent sub menu levels vertical offset after 1st level sub menu */
.menuTop ul li ul li ul{
	top: 0;
}

/* Sub level menu links style */
.menuTop ul li ul li a, .menuTop ul li ul li a:link, .menuTop ul li ul li a:visited {
	font: normal 11px Tahoma !important;
	letter-spacing:normal;
	color:#000000;
	width: 180px; /*width of sub menus*/
	padding: 5px;
	margin: 5px;
	/*background: #444444;*/
	background: url(../img/transparent-50-beyaz.png) 0 0 repeat;
	border:0;
/*	border-left:3px solid #000000;*/
}

.menuTop ul li ul li a.selected{ /*CSS class that's dynamically added to the currently active menu items' LI A element*/
	color:#ffffff;
	font-weight:bold;
	background: #ff7812;
}

.menuTop ul li ul li a:hover{
	color:#ffffff;
	font-weight:bold;
	background: #ff7812;
}


/* Holly Hack for IE \*/
* html .menuTop{height: 1%;} /*Holly Hack for IE7 and below*/


/* ######### CSS classes applied to down and right arrow images  ######### */

.downarrowclass{
	position: absolute;
	top: 21px;
	right: 15px;
}

.rightarrowclass{
	position: absolute;
	top: 9px;
	right: 10px;
}

/* ######### CSS for shadow added to sub menus  ######### */

.ddshadow{
/*	position: absolute;
	left: 0;
	top: 0;
	width: 0;
	height: 0;
	background: silver;*/
}

.toplevelshadow{ /*shadow opacity. Doesn't work in IE*/
/* for IE 
	filter:alpha(opacity=70);*/
/* CSS3 standard 
	opacity: 0.7;*/
}