/* CSS Document */

@charset "utf-8";
/* CSS Document */

ul#menu li{
	float: left;
	position: relative;
}

ul#menu a{
	color: #04acec;
}

ul#menu li:hover > a{
	color: #fafafa;
}

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

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

/* Sub-menu */

ul#menu ul{
    list-style: none;
    margin: 0;
    padding: 0;    
    display: none;
    position: absolute;
    left: 0;
    z-index: 99999;    
    background: #f1f1f1;
    background: -moz-linear-gradient(#f1f1f1, #ffffff);
    background: -webkit-gradient(linear,left bottom,left top,color-stop(0, #ffffff),color-stop(1, #f1f1f1));
    background: -webkit-linear-gradient(#f1f1f1, #ffffff);    
    background: -o-linear-gradient(#f1f1f1, #ffffff);	
    background: -ms-linear-gradient(#f1f1f1, #ffffff);	
    background: linear-gradient(#f1f1f1, #ffffff);	
    -moz-border-radius: 5px;
    border-radius: 5px;
	font-size:13px;
}

ul#menu ul li{
    float: none;
    margin: 0;
    padding: 0;
    display: block;
	border:none;
    -moz-box-shadow: 0 1px 0 #f1f1f1, 0 2px 0 #ffffff;
    -webkit-box-shadow: 0 1px 0 #f1f1f1, 0 2px 0 #ffffff;
    box-shadow: 0 1px 0 #f1f1f1, 0 2px 0 #ffffff;
}

ul#menu ul li:last-child{   
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;    
}

ul#menu ul a{  
    padding: 10px 20px;
    height: auto;
    line-height: 1;
    display: block;
    white-space: nowrap;
    float: none;
    text-transform: none;
}

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

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

ul#menu ul a:hover{
    background: #0186ba;
	background: -moz-linear-gradient(#04acec,  #0186ba);	
	background: -webkit-gradient(linear, left top, left bottom, from(#04acec), to(#0186ba));
	background: -webkit-linear-gradient(#04acec,  #0186ba);
	background: -o-linear-gradient(#04acec,  #0186ba);
	background: -ms-linear-gradient(#04acec,  #0186ba);
	background: linear-gradient(#04acec,  #0186ba);
	color:#FFF;
}

ul#menu ul li:first-child a{
    -moz-border-radius: 5px 5px 0 0;
    -webkit-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
}

ul#menu ul li:first-child a:after{
    content: '';
    position: absolute;
    left: 30px;
    top: -8px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 8px solid #f1f1f1;
}

ul#menu ul li:first-child a:hover:after{
    border-bottom-color: #04acec; 
}

ul#menu ul li:last-child a{
    -moz-border-radius: 0 0 5px 5px;
    -webkit-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
}

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

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

