﻿.menu {
	font-size:0.85em;
	padding-bottom:200px;
}
/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
	padding:0;
	margin:0;
	list-style-type:none;
}
.menu ul ul {
	width:119px;
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {
	float:left;
	width:119px;
	position:relative;
}
/*######################## ANA MENÜ  #######################*/
.menu a, .menu a:visited {
	display:block;
	font-family: Tahoma, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #bababa;
	vertical-align: middle;
	text-decoration: none;
	font-weight: bold;
	height: 29px;
	width: 119px;
	background-image: url('../Images/bg/menu.gif');
	background-repeat: no-repeat;
	padding: 8px 0px;

}
/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited {
	width:122px;
	w\idth:122px;
}

/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited {
	background:#949e7c;
}
/* style the second level hover */
.menu ul ul a.drop:hover{
	background:#c9ba65;
}
.menu ul ul :hover > a.drop {
	background:#c9ba65;
}


/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
	visibility:hidden;
	position:absolute;
	height:0;
	top:30px;
	left:0; 
	width:150px;
}
/* another hack for IE5.5 */
* html .menu ul ul {
	top:38px;
	t\op:31px;
}


/* style the table so that it takes no part in the layout - required for IE to work */
.menu table {position:absolute; top:0; left:0;}

/*######################## AÇILAN MENÜ  #######################*/
.menu ul ul a, .menu ul ul a:visited {
	background:#cecece; 
	color:#000; 
	height:auto; 
	padding:8px 10px; 
	width:160px;
	border-bottom: 1px solid #dbdbdb;
	/* yet another hack for IE5.5 */
}
* html .menu ul ul a{
	width:150px;
	w\idth:129px;
}

/*######################## ANA MENÜ HOVER #######################*/
/* style the top level hover */
.menu a:hover{
	font-family: Tahoma, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #000000;
	vertical-align: middle;
	text-decoration: none;
	font-weight: bold;
	background-image: url('../Images/bg/menu_.gif');
	background-repeat: no-repeat;
}
.menu :hover > a{
	font-family: Tahoma, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #000000;
	vertical-align: middle;
	text-decoration: none;
	font-weight: bold;
	background-image: url('../Images/bg/menu_.gif');
	background-repeat: no-repeat;
}
/*######################## AÇILAN MENÜ HOVER #######################*/
/* style the top level hover */
.menu ul ul a:hover{
	color:#fff; 
	background:#727272;
}
..menu ul ul :hover > a {
	color:#fff;
	background:#727272;
}

/* make the second level visible when hover on first level list OR link */
.menu ul li:hover ul,
.menu ul a:hover ul{
	visibility:visible; 
}
/* keep the third level hidden when you hover on first level list OR link */
.menu ul :hover ul ul{
	visibility:hidden;
}
/* keep the fourth level hidden when you hover on second level list OR link */
.menu ul :hover ul :hover ul ul{
	visibility:hidden;
}
/* make the third level visible when you hover over second level list OR link */
.menu ul :hover ul :hover ul{ 
	visibility:visible;
}
/* make the fourth level visible when you hover over third level list OR link */
.menu ul :hover ul :hover ul :hover ul { 
	visibility:visible;
}