/* Main menu */
.menu
{
   float: left;
    width:100%;
    margin: 0;
    list-style: none;
	margin-top:0px;
	margin-left:-50px;
	/*background-color:#8C6263;*/
	z-index:9999;
}
.main{
}
.menu li
{
    float: left;
    position: relative;
    line-height: 1;
	padding: 0px 8px 0px 8px;
	border-right:1px #a8b1b6 solid;
}
.menu a 
{
    float: left;
	color:#666;
	font-size:1.1em;
}

#select
{
    text-decoration:none;
   	color:#00aeef;
}
.menu li:hover > a
{
     text-decoration:none;
   	 color:#00aeef;
}
.menu li:hover > ul
{
    display: block;
}

/* Sub-menu */
.menu ul
{
    list-style: none;
    margin: 0;
    padding: 0;    
    display: none;
    position: absolute;
   	background-color:#545454;
	z-index: 99999;
	top:15px;
}
.menu ul ul
{
	top: 0;
	left:239px;
	
}

.menu ul li
{
    float: none;
	background-color:#ebebeb;
	width:240px;
	padding: 6px 6px 6px 6px;
	height: auto;
	line-height: 1;
	z-index: 99999;    
	
}
.menu ul li:last-child
{   
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;    
}
.menu ul a
{    
	font-size:0.875em;
    width: auto;
    height: auto;
    line-height: 1;
    display: block;
    white-space: nowrap;
    float: none;
    text-transform: none;
}
.menu ul a:hover
{
   text-decoration:none;
   color:#00aeef;
}

.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:hover
{
    border-bottom-color: #00aeef; 
}

.menu ul ul li:first-child a:hover
{
    border-right-color: #00aeef; 
    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;
}
@media screen and (max-width: 960px) {
	.menu ul ul
	{
		top: 0;
		left:239px;
		
	}
	
	.menu ul li
	{
		float: none;
		background-color:#545454;
		width:240px;
		padding: 6px 6px 6px 6px;
		height: auto;
		line-height: 1;
		z-index: 99999;    
		
	}
}
/*
#arrow{
	 background: url(../image/arrow1.png) no-repeat center right;
}
#arrow:hover{
	background: url(../image/arrow.png) no-repeat center right;
}*/