
@import url(http://fonts.googleapis.com/css?family=Open+Sans);
@import url(http://fonts.googleapis.com/css?family=Open+Sans:bold);
@import url(http://fonts.googleapis.com/css?family=Lato);
@import "font-awesome.css";

ul.menu {
	margin:0;
	padding:0;
	position:relative;
	display:inline-block;
	border: solid 0px #999;
	
	font-family: 'Oswald', Segoe UI, Arial !important;
	
	background: #eeeeee;
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2VlZWVlZSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNjY2NjY2MiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);

	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#cccccc',GradientType=0 );
}
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:26px 20px 25px;
	text-decoration:none;
	text-transform: uppercase;
	display:inline-block;	
}
ul.menu a{
	color: #454545;
	text-shadow: 0 1px 1px #dedede;
}

/****** 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: 71px;
    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";
}

/****** 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";
}

/****** Styles ******/

.black a,
.grey a,
.dark-blue a,
.blue a,
.green a,
.emerald a,
.red a,
.dark-orange a,
.orange a,
.deep-purple a,
.purple a,
.magenta a{
	color: #fff !important;
}


/* green */
.green{
	background: #8104B5!important;
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwNmUyZSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDRlMjEiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+)!important;
	background: -moz-linear-gradient(top, #8104B5 0%, #294CE4 100%)!important;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#8104B5), color-stop(100%,#294CE4))!important;
	background: -webkit-linear-gradient(top, #8104B5 0%,#294CE4 100%)!important;
	background: -o-linear-gradient(top, #8104B5 0%,#294CE4 100%)!important;
	background: -ms-linear-gradient(top, #8104B5 0%,#294CE4 100%)!important;
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8104B5', endColorstr='#294CE4',GradientType=0 )!important;
	border-color: #294CE4 !important;
}
.green ul{
	background: #294CE4 !important;
	border-color: #540176 !important;
}
.green a{
	text-shadow: 0 1px 1px #000 !important;
}
.green li:hover,
.green li.active{
	background-color: #540176 !important;
}


/* dark-orange */
.dark-orange{
	background: #c64900!important;
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2M2NDkwMCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiM5ZTNhMDAiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+)!important;
	background: -moz-linear-gradient(top, #c64900 0%, #9e3a00 100%)!important;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#c64900), color-stop(100%,#9e3a00))!important;
	background: -webkit-linear-gradient(top, #c64900 0%,#9e3a00 100%)!important;
	background: -o-linear-gradient(top, #c64900 0%,#9e3a00 100%)!important;
	background: -ms-linear-gradient(top, #c64900 0%,#9e3a00 100%)!important;
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c64900', endColorstr='#9e3a00',GradientType=0 )!important;
	border-color: #9e3a00 !important;
}
.dark-orange ul{
	background: #9e3a00 !important;
	border-color: #7e2e00 !important;
}
.dark-orange a{
	text-shadow: 0 1px 1px #000 !important;
}
.dark-orange li:hover,
.dark-orange li.active{
	background-color: #7e2e00 !important;
}

/* orange */
.orange{
	background: #fd8603!important;
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZkODYwMyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNjYTY5MDIiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+)!important;
	background: -moz-linear-gradient(top, #fd8603 0%, #ca6902 100%)!important;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fd8603), color-stop(100%,#ca6902))!important;
	background: -webkit-linear-gradient(top, #fd8603 0%,#ca6902 100%)!important;
	background: -o-linear-gradient(top, #fd8603 0%,#ca6902 100%)!important;
	background: -ms-linear-gradient(top, #fd8603 0%,#ca6902 100%)!important;
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fd8603', endColorstr='#ca6902',GradientType=0 )!important;
	border-color: #ca6902 !important;
}
.orange ul{
	background: #ca6902 !important;
	border-color: #a25502 !important;
}
.orange a{
	text-shadow: 0 1px 1px #2e2e2e !important;
}
.orange li:hover,
.orange li.active{
	background-color: #a25502 !important;
}


/***** responsive design *****/

@media (max-width: 800px) {
	ul.menu  li{
		display: block;
		width: 100%;
		border-bottom: solid 1px rgba(255, 255, 255, 0.1);
	}
	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;
		box-sizing:border-box;
		-moz-box-sizing:border-box; 
		-webkit-box-sizing:border-box; 
	}
	ul.menu > li:hover > ul,
	ul.menu > li li:hover > ul{
		position: static;
	}
	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;
	}
}






