#menu div.icerik{
padding:2px 0 0 5px;
margin:0;
font: bold 12px Verdana;
width: 950px;
}

#menu div.icerik ul{
padding:0;
z-index:100;
margin: 0;
list-style-type: none;
}

/*Top level list items*/
#menu div.icerik ul li{
position: relative;
display: inline;
float: left;
}

/*Top level menu link items style*/
#menu div.icerik ul li a{
font:bold 13px verdana;
padding:5px 20px;
margin:0;
display: block;
color: white;
text-decoration: none;
}

* html #menu div.icerik ul li a{ /*IE6 hack to get sub menu links to behave correctly*/
display: inline-block;
}

#menu div.icerik ul li a:link, #menu div.icerik ul li a:visited{
color: white;
padding-left:15px;
}

#menu div.icerik ul li a.selected{ /*CSS class that's dynamically added to the currently active menu items' LI A element*/
background: #787878; 
color: white;
}

#menu div.icerik ul li a.secili{ /*CSS class that's dynamically added to the currently active menu items' LI A element*/
background: #898989; 
color: white;
}

#menu div.icerik ul li a:hover{
background: #797979; /*background of menu items during onmouseover (hover state)*/
color: white;
}
	
/*1st sub level menu*/
#menu div.icerik ul li ul{
background:#9a9a9a;
position: absolute;
left: 0;
display: none; /*collapse all sub menus to begin with*/
visibility: hidden;
}


/*Sub level menu list items (undo style from Top level List Items)*/
#menu div.icerik ul li ul li{
background:none;
display: list-item;
float: none;
}

/*All subsequent sub menu levels vertical offset after 1st level sub menu */
#menu div.icerik ul li ul li ul{
top: 0;
}

/* Sub level menu links style */
#menu div.icerik ul li ul li a{
font: normal 13px Verdana;
width: 160px; /*width of sub menus*/
padding: 5px;
margin: 0;
border-top-width: 0;
border-bottom: 1px solid gray;
}

/* Holly Hack for IE \*/
* html #menu div.icerik{height: 1%;} /*Holly Hack for IE7 and below*/


/* ######### CSS classes applied to down and right arrow images  ######### */

.downarrowclass{
/*display:none;*/
position: absolute;
top: 10px;
right: 5px;
}

.rightarrowclass{
/*display:none;*/
position: absolute;
top: 6px;
right: 5px;
}

