@import "font-awesome.css";

ul.menu {
	margin:0;
	padding:0;
	position:relative;
	display:inline-block;
	font-family: Arial, Helvetica, sans-serif !important;
	background: #F9F4E4;
}
ul.menu.full-width{
	width: 100%;
}
ul.menu li {
	font-size:17px;
	margin:0;
	padding:0;
	float:left;
	outline: none;
	position:relative;
	list-style:none;
	height: 62px;
	border-right: 2px solid #D5DCB3;
}
ul.menu li:hover,
ul.menu li.active {
	background: #B7A090;
	-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;
	border-radius: 0;
}
ul.menu > li:last-child {
	border-right: 0;
}
ul.menu > li > a,
ul.menu li b
{
	padding: 11px 11px;
	text-decoration:none;
	display:inline-block;
	font-weight: normal;
}
ul.menu a{
	color: #000;
}
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:11px 17px;
}
ul.thin .search{
	float: left;
	margin-top: 11px;
	margin-left: 10px;
}
ul.thin .social{
	margin-top: 12px;
}
ul.thin ul {
	top: 62px !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: #F9F4E4;
	
	-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: 71px;
    left: 0;
	border: solid 1px #000;
}
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-bottom: solid 1px #000;
	height: auto;
}
ul.menu ul li:last-of-type {
	border-bottom: 0;
}
ul.menu ul li a,
ul.menu ul li b
{
	background:none;
	padding:14px 15px;
	text-decoration:none;
	display:block;
	border:0 none;
	float:left;
	font-weight: normal;
	width: 100%;
}

/****** dropdown arrow ******/
ul.menu .arrow{
	font-family: 'FontAwesome';
}
ul.menu > li > a > .arrow:before,
ul.menu > li > b > .arrow:before,
ul.menu > li > .arrow:before
{
	content: "\f078";
}
ul.menu > li ul a .arrow:before,
ul.menu > li ul b .arrow:before,
ul.menu > li ul .arrow:before
{
	content: "\f054";
}

/****** right item orientation ******/
ul.menu .right{
	float: right;
	right: 0;
}

/****** social ******/
.social{
	margin-top: 22px;
	padding-right: 20px;
	position: relative;
}
.social a{
	margin-left: 5px;
	font-family: 'FontAwesome';
	font-size: 28px;
	text-decoration: none;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
}

a.face:before{
	content: "\f082";
}
a.twitter:before{
	content: "\f081";
}
a.linkedin:before{
	content: "\f08c";
}
a.rss:before{
	content: "\f09e";
}

/***** responsive design was set to: @media (max-width: 800px) Items are overlapping!!! *****/

@media (max-width: 0px) {
	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,
	ul.menu > li ul b .arrow:before,
	ul.menu > li .arrow:before,
	ul.menu > li ul .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; }
}






