@import url(http://fonts.googleapis.com/css?family=Oswald);
@import "font-awesome.css";

ul.menu {
	margin:0;
	padding:0;
	position:relative;
	float: left;
	display:inline-block;
	margin-top: 0px;
	font-family: 'Oswald', Segoe UI, Arial !important;
	background: #eeeeee;
	background: -moz-linear-gradient(top, #eeeeee 0%, #cccccc 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#eeeeee), color-stop(100%,#cccccc));
	background: -webkit-linear-gradient(top, #eeeeee 0%,#cccccc 100%);
	background: -o-linear-gradient(top, #eeeeee 0%,#cccccc 100%);
	background: -ms-linear-gradient(top, #eeeeee 0%,#cccccc 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#cccccc',GradientType=0 );
	z-index: 1000;
}

ul.menu.full-width{
	width: 100%;

}
ul.menu li {
	font-size:13px;
	margin:0;
	padding:0;
	float:left;
	outline: none;
	position:relative;
	list-style:none; 
}
ul.menu li:hover,
ul.menu li.active {
	background: #cccccc; 
	-webkit-transition: all 0.4s ease-in-out;	
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;

}
ul.menu > li:last-child {
	background: none !important; 
}
ul.menu > li > a {
	padding:12px 20px 10px;
	text-decoration:none;
	text-transform: uppercase;
	display:inline-block;	

}
ul.menu a{
	color: #454545;
	/* text-shadow: 0 1px 1px #dedede; */
}
ul.menu #toggle,
ul.menu #hide{
	display: none;
}

/****** icon ******/
ul.menu i{
	line-height: 20px !important;
	margin-right: 4px;
	font-size: 20px;
	float: left;
}

ul.menu li:hover i{
	transition: all 0.4s ease-in-out;
	transform: scale(1.3);
	-ms-transform: scale(1.3);
	-webkit-transform: scale(1.3);
	-o-transform: scale(1.3);
	-moz-transform: scale(1.3);
}

/****** menu height ******/
/* thin */
ul.thin > li > a {
	padding:15px 20px;
}
ul.thin .search{
	float: left;
	margin-top: 11px;
	margin-left: 10px;
}
ul.thin .social{
	margin-top: 12px;
}
ul.thin ul {
	top: 50px !important;
}
ul.thin ul li ul {
	top: -1px !important;
}

/* thick */
ul.thick > li > a {
	padding:40px 20px;
}
ul.thick .search{
	float: left;
	margin-top: 36px;
	margin-left: 10px;
}
ul.thick .social{
	margin-top: 38px;
}
ul.thick ul {
	top: 100px !important;
}
ul.thick ul li ul {
	top: -1px !important;
}

/****** dropdown Navigation ******/
ul.menu li:hover > ul{
	visibility:visible;
	opacity:1;
}
ul.menu ul, 
ul.menu ul li ul {
	list-style: none;
    margin: 0;
    padding: 0;    
	visibility:hidden;
    position: absolute;
    z-index: 999;
	width:180px;
	opacity:0;
	background: #dedede;
	
	-webkit-transition:opacity 0.2s linear, visibility 0.2s linear; 
	-moz-transition:opacity 0.2s linear, visibility 0.2s linear; 
	-o-transition:opacity 0.2s linear, visibility 0.2s linear; 
	transition:opacity 0.2s linear, visibility 0.2s linear; 
}
ul.menu ul {
    top: 38px;
    left: 0;
	border: solid 1px #999;
}
ul.menu ul:after{
	content:"";
	clear:both;
	display:block;
}
ul.menu ul li ul {
    top: -1px;
    left: 180px;
}
ul.menu ul li {
	clear:both;
	width:100%;
	border:0 none;
}
ul.menu ul li a {
	background:none;
	padding:14px 15px;
	text-decoration:none;
	display:block;
	border:0 none;
	float:left;
	
}

/****** dropdown arrow ******/
ul.menu .arrow{
	font-family: 'FontAwesome';
}
ul.menu > li > a > .arrow:before{
	content: "\f078";
}
ul.menu > li ul a .arrow:before{
	content: "\f054";
}

/****** dropdown arrow ******/
ul.menu .cross{
	font-family: 'FontAwesome';
}
ul.menu > li > a > .cross:before{
	content: "\f055";
}
ul.menu > li ul a .cross:before{
	content: "\f055";
}



/****** Styles ******/

.brown a{
	color: #fff !important;
}



/* brown */
.brown{
	background: #F08A01!important;
	background: -moz-linear-gradient(top, #F08A01 0%, #F08A01 100%)!important;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#F08A01), color-stop(100%,#F08A01))!important;
	background: -webkit-linear-gradient(top, #F08A01 0%,#F08A01 100%)!important;
	background: -o-linear-gradient(top, #F08A01 0%,#F08A01 100%)!important;
	background: -ms-linear-gradient(top, #F08A01 0%,#F08A01 100%)!important;
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#F08A01', endColorstr='#F08A01',GradientType=0 )!important;
	border-color: #F08A01 !important;
}
.brown ul{
	background: #F08A01 !important;
	border-color: #F08A01 !important;
}
.brown a{
	color: #fff;
	/* text-shadow: 0 1px 1px #A0A0A0 !important; */
}
.brown li:hover{
	color: #000;
	background-color: #959693 !important;
}

.brown li.active{
	color: #000;
	background-color: #959693 !important;
}



/***** responsive design *****/

@media (max-width: 800px) {
	ul.menu li{
		display: none;
		width: 100%;
		border-bottom: solid 1px rgba(255, 255, 255, 0.1);
	}
	ul.menu #toggle{
		display: block;
	}
	ul.menu #toggle i,
	ul.menu #hide i{
		font-size: 30px;
		margin: 6px -5px 0;
	}
	ul.menu #toggle:hover i,
	ul.menu #hide:hover i{
		transform: none;
		-ms-transform: none;
		-webkit-transform: none;
		-o-transform: none;
		-moz-transform: none;
	}
	ul.menu:target li{
		display: block;
	}
	ul.menu:target #toggle{
		display: none;
	}
	ul.menu:target #hide{
		display: block;
	}
	ul.menu > li > a{
		padding-top:15px;
		padding-bottom:15px;
	}
	ul.menu a{
		width: 100%;
		box-sizing:border-box;
		-moz-box-sizing:border-box; 
		-webkit-box-sizing:border-box;
	}
	ul.menu ul, 
	ul.menu ul li ul{
		width: 100%;
		left: 0; 
		position: static;
		visibility:visible;
		opacity:1;
		border: none;
		box-sizing:border-box;
		-moz-box-sizing:border-box; 
		-webkit-box-sizing:border-box;
	}
	ul.menu .arrow{
		float: right;
		line-height: 20px;
	}
	ul.menu > li ul a .arrow:before{
		content: "\f078";
	}
	.social{
		text-align: center;
		margin: 24px 0 20px 0;
		padding-right: 0;
	}
	ul.menu > li > ul > li > a{ padding-left: 40px; }
	ul.menu > li > ul > li > ul > li > a{ padding-left: 70px; }
	ul.menu > li > ul > li > ul > li > ul > li > a{ padding-left: 100px; }
}






