/*------------------------------------ Mobile CSS ---------------------------------------------*/
.overlapblackbg {
	left: 0;
	z-index: 100;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	display: none;
	background-color: rgba(0, 0, 0, 0.45);
	cursor: pointer;
}
.overlapblackbg.menuopen {
	display: block;
}
.wsmenuexpandermain {
	position: relative;
	top: 0;
	right: 0;
	left: 0;
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}
.wsmenu {
	width: 0px;
/*	width:280px;
*/	height: 100%;
	position: fixed;
	right: 0;
	top: 0;
	margin: 0;
	z-index: 100;
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	background-color: #1b5ab1 !important;
}
.wsmenu .wsmenu-list {
	height: 100%;
	overflow-y: auto;
	display: block !important;
}
.wsmenu .wsmenu-list > li {
	position: relative;
}
.wsmenu .wsmenu-list > li:hover>a,.wsmenu .wsmenu-list > li.active>a{
	background-color: rgba(0,0,0,0.08) !important;
	text-decoration: none;
}
.wsmenu > .wsmenu-list > li > a {
	display: block;
	padding: 9px 32px 9px 17px;
	font-size: 14px;
	text-align: left;
	border-right: solid 0px;
	color: #fff;
	line-height: 25px;
	border-bottom: 1px solid;
	border-bottom-color: rgba(0,0,0,0.13);
}
.wsmenu-list > li.active > a, .wsmenu-list > li.active > a:hover {
	color: #f38844;
}
/*Nav Expanding Open Effect*/
.wsmenu.menuopen {
	width: 240px;
}
.wsmenu.menuclose {
	width: 0px;
}
.wsmenucontent {
	z-index: 10;
}
/* Navigation arrow Animation */
.animated-arrow {
	position: absolute;
	top:28px;
	right: 18px;
	z-index: 200;
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}
.wsmenuexpandermain .menuopen {
	right: 240px !important;
	margin-top: 4px !important;
}
.animated-arrow {
	cursor: pointer;
	padding: 0px 35px 16px 0px;
	margin: 10px 0 0 15px;
}
.animated-arrow span, .animated-arrow span:before, .animated-arrow span:after {
	cursor: pointer;
	height: 2px;
	width: 25px;
	background: #004098;
	position: absolute;
	display: block;
	content: '';
}
.animated-arrow span:before {
	top: -7px;
}
.animated-arrow span:after {
	bottom: -7px;
}
.animated-arrow span, .animated-arrow span:before, .animated-arrow span:after {
	transition: all 500ms ease-in-out;
}
.animated-arrow.menuopen span {
	background-color: transparent;
}
.animated-arrow.menuopen span:before, .animated-arrow.active span:after {
	top: 7px;
}
.animated-arrow.menuopen span:before {
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	bottom: 0px;
}
.animated-arrow.menuopen span:after {
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
/* Mobile click to drop arrow */
.wsmenu-list .wsmenu-submenu {
	display:none;
	background-color: #fff;
	border: solid 1px #ccc;
}
.wsmenu-list .wsmenu-submenu li a {
	display:block;
	font-size: 13px;
	padding: 8px 0px 8px 18px;
	color: #8E8E8E;
}
.wsmenu-list .wsmenu-submenu li a:hover,.wsmenu-list .wsmenu-submenu li a.acur {
	background-color: #e7e7e7 !important;
	color: #666666;
	text-decoration:none;
}