/* Main menu */

#menu
{
	width: 100%;
	margin: 0 auto;
	padding: 0 ;
	list-style: none;  
}

#menu li
{
	float: left;
	padding: 0;
	position: relative;
	line-height: 0;
    text-transform: uppercase;
    text-decoration: none;
    text-align:center;
    cursor:pointer;
    left: 5px;
    }

#menu a 
{
	float: left;
	height: 25px;
	padding: 5px 16px 0px 16px;
	color: #999;
    text-decoration: none;


    }

#menu li:hover > a
{
	color: #797979;
    text-decoration: none;
}

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

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

/* Sub-menu */

#menu ul
{
    list-style: none;
    margin: 0;
    padding: 0;    
    display: none;
    position: absolute;
    top: 30px;
    left: -18px;
    z-index: 99999;    
    background: #fff;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid #666666;
    }

#menu ul ul
{
  top: 0;
  left: 150px;
}

#menu ul li
{
    float: none;
    margin: 0;
    padding: 0;
    display: block;  
    font-size: 10px;
    text-decoration:none;
    text-transform:uppercase;
    text-align: left;
}

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

}

#menu ul a
{    
    padding: 10px 0px 0px 8px;
	height: 10px;
	width: 102px;
	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
{
    color: #797979;
    text-decoration: none;
}

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

#menu ul li:first-child > a:after
{
    content: '';
    position: absolute;
    left: 40px;
    top: -30px;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 15px solid transparent;
    border-bottom: 15px solid #fff;
    }

#menu ul li:first-child > a:before
{
    content: '';
    position: absolute;
    left: 39px;
    top: -32px;
    width: 0;
    height: 0;
    border-left: 13px solid transparent;
    border-right: 13px solid transparent;
    border-top: 16px solid transparent;
    border-bottom: 16px solid #666;
}

#menu ul ul li:first-child a:after
{
    left: -8px;
    top: 15px;
    width: 0;
    height: 0;
    border-left: 0;	
    border-bottom: 11px solid transparent;
    border-top: 11px solid transparent;
    border-right: 8px solid #fff;
}

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

#menu ul ul li:first-child a:hover:after
{
    border-right-color: #fff; 
    border-bottom-color: transparent; 	
}


#menu ul li:last-child > a
{
    -moz-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
    padding: 10px 0px 10px 8px;
}

/* 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 */
</style>