/*container*/
#drop-menu {
	margin: 0 auto;
	padding: 0;
	width:100%;
}

/*menu*/

ul#menu {
	margin:0px ;
	padding: 0;
	list-style: none;
	float:right;
	font-size:80%;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px; 
	
	-webkit-box-shadow: 0px 0px 3px 0px #999;
	-moz-box-shadow: 0px 0px 3px 0px #999;
	box-shadow: 0px 0px 3px 0px #999; 
}

ul#menu li {
	/* Specifying a fallback color and we define CSS3 gradients for the major browsers: */
	
	background-color: #f0f0f0;
	background-image: -webkit-gradient(linear,left top, left bottom,from(#fefefe), color-stop(0.5,#f0f0f0), color-stop(0.51, #e6e6e6));
	background-image: -moz-linear-gradient(#fefefe 0%, #f0f0f0 50%, #e6e6e6 51%);
	background-image: -o-linear-gradient(#fefefe 0%, #f0f0f0 50%, #e6e6e6 51%);
	background-image: -ms-linear-gradient(#fefefe 0%, #f0f0f0 50%, #e6e6e6 51%);
	background-image: linear-gradient(#fefefe 0%, #f0f0f0 50%, #e6e6e6 51%);
	
	border-right: 1px solid rgba(9, 9, 9, 0.125);
	
	/* Adding a 1px inset highlight for a more polished efect: */
	
	box-shadow: 1px -1px 0 rgba(255, 255, 255, 0.6) inset;
	-moz-box-shadow: 1px -1px 0 rgba(255, 255, 255, 0.6) inset;
	-webkit-box-shadow: 1px -1px 0 rgba(255, 255, 255, 0.6) inset;
	
	position:relative;
	
	float: left;
	list-style: none;
}

ul#menu li a {
	color: #5d5d5d;
	display: inline-block;
	font: 20px/1 Lobster,Arial,sans-serif;
	padding: 12px 35px 14px;
	position: relative;
	text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.6);
	z-index:2;
	text-decoration:none !important;
	white-space:nowrap;
}

ul#menu li span {
	color: #5d5d5d;
	display: inline-block;
	font: 20px/1 Lobster,Arial,sans-serif;
	padding: 12px 35px 14px;
	position: relative;
	text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.6);
	z-index:2;
	text-decoration:none !important;
	white-space:nowrap;
}

ul#menu li span:hover{
	color:#fff;
	text-shadow: 1px 1px 0 #5d5d5d;
	background: #92af0c;
	background: -moz-linear-gradient(top,  #92af0c 0%, #92af0c 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#92af0c), color-stop(100%,#92af0c));
	background: -webkit-linear-gradient(top,  #92af0c 0%,#92af0c 100%);
	background: -o-linear-gradient(top,  #92af0c 0%,#92af0c 100%);
	background: -ms-linear-gradient(top,  #92af0c 0%,#92af0c 100%);
	background: linear-gradient(top,  #92af0c 0%,#92af0c 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#92af0c', endColorstr='#92af0c',GradientType=0 );
}

ul#menu li a:hover {
	color:#fff;
	text-shadow: 1px 1px 0 #5d5d5d;
	background: #92af0c;
	background: -moz-linear-gradient(top,  #fefefe 0%, #c7d877 50%, #92af0c 51%);
	background: -webkit-gradient(linear,left top, left bottom,from(#fefefe), color-stop(0.5,#c7d877), color-stop(0.51, #92af0c));
	background: -webkit-linear-gradient(top,  #fefefe 0%, #c7d877 50%, #92af0c 51%);
	background: -o-linear-gradient(top, #fefefe 0%, #c7d877 50%, #92af0c 51%);
	background: -ms-linear-gradient(top,  #fefefe 0%, #c7d877 50%, #92af0c 51%);
	background: linear-gradient(top,  #fefefe 0%, #c7d877 50%, #92af0c 51%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#92af0c', endColorstr='#92af0c',GradientType=0 );
}

ul#menu li:first-child > a {
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 0px;
	-moz-border-radius-bottomright: 0px;
	-moz-border-radius-bottomleft: 5px;
	-webkit-border-radius: 5px 0px 0px 5px;
	border-radius: 5px 0px 0px 5px;  
}

ul#menu ul li:first-child > a{
	-moz-border-radius-topleft: 0;
	-moz-border-radius-topright: 0;
	-moz-border-radius-bottomright: 0;
	-moz-border-radius-bottomleft: 0;
	-webkit-border-radius: 0 0 0 0;
	border-radius: 0 0 0 0;  
}

ul#menu ul li:first-child > a:after {
	content: '';
	position: absolute;
	left: 40px;
	top: -6px;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-bottom: 6px solid #fff;
}

ul#menu ul ul li:first-child a:after {
	left: -6px;
	top: 50%;
	margin-top: -6px;
	border-left: 0;
	border-bottom: 6px solid transparent;
	border-top: 6px solid transparent;
	border-right: 6px solid #fff;
}

ul#menu ul {
	margin:2px 0 0;
	padding:0;
	display:inline-block;
	list-style: none;
	opacity: 0;
	visibility: hidden;
	position: absolute;
	top: 45px;
	left: 0;
	z-index:9999;
	background: #73880a;
	background: -moz-linear-gradient(top,  #73880a 0%, #73880a 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#73880a), color-stop(100%,#73880a));
	background: -webkit-linear-gradient(top,  #73880a 0%,#73880a 100%);
	background: -o-linear-gradient(top,  #73880a 0%,#73880a 100%);
	background: -ms-linear-gradient(top,  #73880a 0%,#73880a 100%);
	background: linear-gradient(top,  #73880a 0%,#73880a 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#73880a', endColorstr='#73880a',GradientType=0 );
	-webkit-box-shadow: 0px 2px 3px 0px #999;
	-moz-box-shadow: 0px 2px 3px 0px #999;
	box-shadow: 0px 2px 3px 0px #999; 
	-webkit-transition: all 0.6s ease;
	-moz-transition: all 0.6s ease;
	-ms-transition: all 0.6s ease;
	-o-transition: all 0.6s ease;
	transition: all 0.6s ease;
}

ul#menu ul li > ul{
	-webkit-box-shadow: 2px 2px 3px 0px #999;
	-moz-box-shadow: 2px 2px 3px 0px #999;
	box-shadow: 2px 2px 3px 0px #999; 
}

ul#menu li:hover > ul {
	opacity: 1;
	visibility: visible;
}

ul#menu ul li {
	float: left;
	display: block;
	border:none;
}

ul#menu ul a {
	padding:10px;
	width: 115px;
	display:block;
	float: left;
	text-transform: none;
	border-bottom:1px solid #1C2B10;
}

ul#menu ul li:last-child > a {
	border-bottom:none;
}

ul#menu ul ul {
	top: 0;
	left: 150px;
	margin: 0;
}

ul#menu ul a:hover{
	background: #92af0c;
	background: -moz-linear-gradient(top,  #92af0c 0%, #92af0c 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#92af0c), color-stop(100%,#92af0c));
	background: -webkit-linear-gradient(top,  #92af0c 0%,#92af0c 100%);
	background: -o-linear-gradient(top,  #92af0c 0%,#92af0c 100%);
	background: -ms-linear-gradient(top,  #92af0c 0%,#92af0c 100%);
	background: linear-gradient(top,  #92af0c 0%,#92af0c 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#92af0c', endColorstr='#92af0c',GradientType=0 );
}

ul#menu  a.homeIcon{
	background:url('../../assets/img/home.png') no-repeat center center;
	display: block;
	overflow: hidden;
	padding-left: 22px;
	padding-right: 22px;
	text-indent: -9999px;
	width: 16px;
}

ul#menu  a.homeIcon:hover{
	background:url('../../assets/img/home_hover2.png') no-repeat center center #92af0c;
	display: block;
	overflow: hidden;
	padding-left: 22px;
	padding-right: 22px;
	text-indent: -9999px;
	width: 16px;
}