﻿.menu {
	width: 100%;
	margin-top:20px;
	margin-bottom:10px;
	
}
/* Main menu wrapper */
.cbp-hsmenu-wrapper {
	width: 100%;
}
/* Common style for all lists */
.cbp-hsmenu-wrapper ul {
	list-style: none;
 padding-left: 1em;
	margin: 0 auto;
}
.cbp-hsmenu-wrapper ul img {
	max-height: 120px;
}
/* 100% width bar for menu */
.cbp-hsinner {
	background: #47a3da;
	position: relative;
	z-index: 101;

}
/* Main menu style */
.cbp-hsmenu-wrapper .cbp-hsmenu {
	width: 100%;
	max-width: 69em;
	margin: 0 auto;
}
.cbp-hsmenu .camp {
	float: left;
	margin: 10px;
}
.cbp-hsmenu .camp a {
	float: none;
	text-align: left;
	display: block;
	margin-top: 5px;
	color: #a2a2a2;
	box-shadow: -3px 3px 5px rgba(0,0,0,0.05);
	text-shadow: -5px 5px 10px rgba(0,0,0,0.2);
	padding: 0 10px;
}
.cbp-hsmenu .camp a:hover {
	color: white;
	background-color: #47a3da;
}
.cbp-hsmenu > li {
	margin-left: 1em;
	display: inline-block;
}


.cbp-hsmenu > li:first-child {
	margin-left: 0;
}
/* Main menu link style */
.cbp-hsmenu > li > a {
	
      color: #fff;
	font-size: 1.2em;
	line-height: 2.2em;
	outline: none;
}
.no-touch .cbp-hsmenu > li > a:hover, .no-touch .cbp-hsmenu > li > a:focus, .cbp-hsmenu > li.cbp-hsitem-open > a {
	color: #02639d;
}
/* Add an arrow to the main menu link if it has a submenu (not the only child) */
.cbp-hsmenu > li > a:not(:only-child):before {
	display: inline-block;
	font-family: 'bpmenu';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	content: "";
	font-size: 80%;
	margin-right: 0.3em;
	opacity: 0.4;
	vertical-align: middle;
}
.cbp-hsmenu > li.cbp-hsitem-open > a:not(:only-child):before {
	content: "";
}
/* Add a triangle to currently open menu item link */
.cbp-hsmenu > li.cbp-hsitem-open > a:after {
	top: 100%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: transparent;
	border-top-color: #47a3da;
	border-width: 10px;
	left: 50%;
	margin-left: -10px;
}
/* Submenu style */
.cbp-hssubmenu {
	position: absolute;
	left: 0;
	top: 100%;
	width: 100%;

	text-align: center; /* for aligning the sub items */;
	visibility: hidden;
		 background-color:white;
}
.cbp-hssubmenu:before, .cbp-hssubmenu:after {
	content: " ";
	display: table;

}
.cbp-hssubmenu:after {
	clear: both;
}
/* Let's allow 6 item in a row */
.cbp-hssubmenu > li {

	display: inline-block;
	vertical-align: top;
}
/* First 6 items don't have upper box shadow */
.cbp-hssubmenu > li{
	box-shadow: -28px 0 0 -27px #ddd;
}
/* Every 7th item does not have a left box shadow */
/* The first one does not have any box shadow */
.cbp-hssubmenu > li:first-child {
	box-shadow: none;
}
.cbp-hssubmenu > li a {
	display: block;
	text-align: center;
	color: #a2a2a2;
	outline: none;
	padding: 2em 1em 1em 1em;
}
.no-touch .cbp-hssubmenu > li a:hover, .no-touch .cbp-hssubmenu > li a:focus {
	color: #888;
}
.cbp-hssubmenu > li a img {
	border: none;
	outline: none;
	display: inline-block;
	margin: 0;
	max-width: 100%;
	-webkit-transition: opacity 0.2s;
	-moz-transition: opacity 0.2s;
	transition: opacity 0.2s;
}
.no-touch .cbp-hssubmenu > li a:hover img {
	opacity: 0.5;
}
.cbp-hssubmenu > li a span {
	display: block;
	min-height: 3em;
	margin-top: 0.4em;
}
.cbp-hsmenu > li.cbp-hsitem-open .cbp-hssubmenu {
	z-index: 100;
	visibility: visible;
}
.cbp-hsmenu > li.cbp-hsitem-open .cbp-hssubmenu > li {
	opacity: 1;
	-webkit-transition: opacity 0.5s 0.1s;
	-moz-transition: opacity 0.5s 0.1s;
	transition: opacity 0.5s 0.1s;
}
/* Helper div for animating the background */
.cbp-hsmenubg {
	background: #f7f7f7;
	position: absolute;
	width: 100%;
	top: 100%;
	left: 0;
	z-index: 100;
	height: 0px;
}
.no-touch .cbp-hsmenubg {
	-webkit-transition: height 0.3s;
	-moz-transition: height 0.3s;
	transition: height 0.3s;
}
