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

/* Main */
#menu{
	width: 100%;
	margin: 0 auto;
	padding: 10px 0 0 0;
	list-style: none; 
	
   /* background: #fff;*/
}

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

#menu a{
	float: left;
	padding: 8px 15px;
	color:#4d2a01 /*#76692A*/;
	text-transform: uppercase;
	font: 12px/36px "Arial";
	font-weight:bold;
	text-decoration: none;
	
}

#menu a:hover{
	color: #fff/*#BA0131/;
}

#menu li:hover > a{
	color: #BA0131;
	/*background: #F6F6F6;*/

}

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

#menu li:hover > ul{
	margin-top:-5px;
	display: block;
}

/* Sub-menu */

#menu ul{
    list-style: none;
    margin: 0;
    padding: 0;    
    display: none;
    position: absolute;
    top: 50px;
    left: 0;
    z-index: 99999;    
    background:#bb8638 /*#B8AC76*/;
    -moz-border-radius: 5px;
    border-radius: 5px;
	width:200px;
}

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

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

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

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

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

#menu ul a:hover{
        background: transparent;
}

#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;
}

#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 #bb8638;
}

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

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