#menu{
	width: 65%;
	margin: 0;
	padding: 0px 0 0 0;
	list-style: none;  
	background: #FFF;  #FFF
	background: -moz-linear-gradient(#fff, #FFF); 
	font-family: Tahoma;
    font-size: 14px;
}

#menu li{
	float: left;
    height: 32px;
    margin-left: 1px;
    position: relative;
    min-width: 103px;
	width:auto;
	background-color:#28A9D4;

	border-top-left-radius:5px;
	border-top-right-radius:5px;
	
}

#menu a{
	float: left;
	height: 25px;
	padding: 5px;
	color: #fff;  
	text-transform: uppercase;
	font-family: Tahoma;
    font-size: 14px;
	font-weight:bold;
	text-decoration: none;
	text-shadow: 0 1px 0 #000;
}

#menu li:hover > a{
	color:   #FFB062 ; 
}

*html #menu li a:hover{ /* IE6 */
	color: #FFB062; 
}

#menu li:hover > ul{
	display: block;
}

/* Sub-menu */

#menu ul{
	
    list-style: none;
    display: none;
    position: absolute;
    top: 30px;
    z-index: 99999;    
    background: #E8E8E8;  
	border: 1px solid #F0F0F0;
    padding: 2px;
}

#menu ul li{
	background-color: #FFFFFF;
    border-radius: 0;
    border-style: none;
    display: block;
    float: none;
    margin: 0px;
    padding: 0px;
}


#menu ul a{
	
    padding: 5px;
    height: auto;
    line-height: 1;
    display: block;
    white-space: nowrap;
    float: none;
    /*text-transform: none;*/
	
	color: #000000;  
	font-family: tahoma,verdana,arial,"ms sans serif",sans-serif;
    font-size: 11px;
    font-weight: normal;
}

*html #menu ul a{ /* IE6 */   
	height: 10px;
	width: 150px;
}

*:first-child+html #menu ul a{ /* IE7 */    
	height: 10px;
	width: 150px;
}

#menu ul a:hover{
    border : 1.5px solid #FFB062;  
}

/* Clear floated elements */
#menu:after{
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}

* html #menu             { zoom: 1; } /* IE6 */
*:first-child+html #menu { zoom: 1; } /* IE7 */