﻿ul {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 146px; /* Width of Menu Items */
	/*border-bottom: 1px solid #ccc;*/
	}

ul li {
	position: relative;
}
	
li ul {
	position: absolute;
	left: 145px; /* Set 1px less than menu width */
	top: 0;
	display: none;
	/* -- ekledik -- */
	background:red;
	color :inherit ;
	/*border: solid 4px #001E38;*/
	width :140px;
	}

/* Styles for Menu Items */
ul li a {
	display: block;
	/* color: #777; */
	background: #fff; /* IE6 Bug */
	padding: 0px;
	/*padding: 5px;
	 border: 1px solid #ccc; */
	border-bottom: 0;
	z-index:100;
	font-family:Verdana, Arial, Sans-Serif, Helvetica ;
	font-weight:bold;
	color:#808D99;
	font-size:9px;
	text-decoration:none;
	text-align:left;
	line-height :20px;
	width :140px;
	}


/* Fix IE. Hide from IE Mac \*/
* html ul li { float: left; height: 1%; }
* html ul li a { height: 1%; }
/* End */

/* Hover Styles */
ul li a:hover { 
	color:white; 
	background:#67010f; 
} 

/* Sub Menu Styles */
li ul li a { 
	padding: 2px 5px;  
	color:white; 
	background:#67010f; 
	border: solid 1px #003365;
	width:180px;
} 
		
li:hover ul, li.over ul { display: block; } /* The magic */