#menu
{
	width: 100%;
	margin: 0;
	padding: 0px 0 0 0;
	list-style: none;  
	
	background-color: #D4D4D4;
	-moz-border-radius: 0 0 5px 5px;
	border-radius: 0 0 5px 5px;
}
 
#menu li
{
	float: left;
	padding: 0 0 0px 0;
	position: relative;
	line-height: 0;
}
 
#menu a 
{
	float: left;
	height: 25px;
	padding: 0 25px;
	color: #2A2A2A;
	text-transform: uppercase;
	font: bold 11px/25px Arial, Helvetica;
	text-decoration: none;

}

#menu ul li a{
	color: #1D719F;
}
 
#menu a:hover
{
	background-color: #E8E8E8;
}	
 
*html #menu li a:hover /* IE6 */
{
	color: #fafafa;
}
 
#menu li:hover > ul
{
	display: block;
}
 
/* Sub-menu */
 
#menu ul
{
    list-style: none;
    margin: 0;
    padding: 10px 10px 10px 8px;    
    display: none;
    position: absolute;
    top: 25px;
    left: 0;
    z-index: 99999;    
    background-color: #FFF;
    border-style: none solid solid;
    border-width: 0 2px 2px;
    border-color: #D4D4D4;	
    -moz-border-radius: 0px 0px 5px 5px;
    border-radius: 0px 0px 5px 5px;
}
 
#menu ul ul
{
  top: 0;
  left: 150px;
}
 
#menu ul li
{
    float: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid #DDDDDD;
    
    display: block;  
    
}
#menu ul li:first-child
{
    border-top: medium none;
}

#menu ul li:last-child
{   
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;    
}
 
#menu ul a
{    
    padding: 10px;
	height: 10px;
	width: 130px;
	height: auto;
    line-height: 1;
    display: block;
    white-space: nowrap;
    float: none;
	text-transform: none;
}
 
*html #menu ul a /* IE6 */
{    
	height: 10px;
}
 
*:first-child+html #menu ul a /* IE7 */
{    
	height: 10px;
}
 
#menu ul a:hover
{
    background-color: #F5F5F5;
}
 
 

 
#menu ul ul li:first-child a:after
{
    left: -8px;
    top: 12px;
    width: 0;
    height: 0;
    border-left: 0;	
    border-bottom: 5px solid transparent;
    border-top: 5px solid transparent;
    border-right: 8px solid #444;
}
 

#menu ul ul li:first-child a:hover:after
{
    border-right-color: #04acec; 
    border-bottom-color: transparent; 	
}
 
 
#menu ul li:last-child > a
{
    -moz-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
}
 
/* 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 */