@charset "utf-8";

body{background:#fff !important;}
.webui-popover-content {
	display: none;
}

.webui-popover-rtl {
	direction: rtl;
	text-align: right;
}

.webui-popover {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 9999;
	display: none;
	min-width: 50px;
	min-height: 32px;
	padding: 1px;
	text-align: left;
	white-space: normal;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid #ccc;
	border: 1px solid #eee;
	border-radius: 6px;
	-webkit-box-shadow: 0px 0px 20px rgba(0,0,0,0.15);
	box-shadow: 0px 0px 20px rgba(0,0,0,0.15);
}

.webui-popover.top,.webui-popover.top-left,.webui-popover.top-right {
	margin-top: -10px;
}

.webui-popover.right,.webui-popover.right-top,.webui-popover.right-bottom {
	margin-left: 10px;
}

.webui-popover.bottom,.webui-popover.bottom-left,.webui-popover.bottom-right {
	margin-top: 10px;
}

.webui-popover.left,.webui-popover.left-top,.webui-popover.left-bottom {
	margin-left: -10px;
}

.webui-popover.pop {
	-webkit-transform: scale(0.8);
	-o-transform: scale(0.8);
	transform: scale(0.8);
	-webkit-transition: transform .15s cubic-bezier(0.3,0,0,1.5);
	-o-transition: transform .15s cubic-bezier(0.3,0,0,1.5);
	transition: transform .15s cubic-bezier(0.3,0,0,1.5);
	opacity: 0;
	filter: alpha(opacity=0);
}

.webui-popover.pop-out {
	-webkit-transition-property: "opacity,transform";
	-o-transition-property: "opacity,transform";
	transition-property: "opacity,transform";
	-webkit-transition: .15s linear;
	-o-transition: .15s linear;
	transition: .15s linear;
	opacity: 0;
	filter: alpha(opacity=0);
}

.webui-popover.fade,.webui-popover.fade-out {
	-webkit-transition: opacity .15s linear;
	-o-transition: opacity .15s linear;
	transition: opacity .15s linear;
	opacity: 0;
	filter: alpha(opacity=0);
}

.webui-popover.out {
	opacity: 0;
	filter: alpha(opacity=0);
}

.webui-popover.in {
	-webkit-transform: none;
	-o-transform: none;
	transform: none;
	opacity: 1;
	filter: alpha(opacity=100);
}

.webui-popover .webui-popover-content {
	padding: 9px 14px;
	overflow: auto;
	display: block;
}

.webui-popover .webui-popover-content>div:first-child {
	width: 99%;
}

.webui-popover-inner .close {
	font-family: arial;
	margin: 8px 10px 0 0;
	float: right;
	font-size: 16px;
	font-weight: 700;
	line-height: 16px;
	color: #000;
	text-shadow: 0 1px 0 #fff;
	opacity: .2;
	filter: alpha(opacity=20);
	text-decoration: none;
}

.webui-popover-inner .close:hover,.webui-popover-inner .close:focus {
	opacity: .5;
	filter: alpha(opacity=50);
}

.webui-popover-inner .close:after {
	content: "\00D7";
	width: .8em;
	height: .8em;
	padding: 4px;
	position: relative;
}

.webui-popover-title {
	padding: 8px 14px;
	margin: 0;
	font-size: 14px;
	font-weight: 700;
	line-height: 18px;
	background-color: #fff;
	border-bottom: 1px solid #f2f2f2;
	border-radius: 5px 5px 0 0;
}

.webui-popover-content {
	padding: 9px 14px;
	overflow: auto;
	display: none;
}

.webui-popover-inverse {
	background-color: #333;
	color: #eee;
}

.webui-popover-inverse .webui-popover-title {
	background: #333;
	border-bottom: 1px solid #3b3b3b;
	color: #eee;
}

.webui-no-padding .webui-popover-content {
	padding: 0;
}

.webui-no-padding .list-group-item {
	border-right: none;
	border-left: none;
}

.webui-no-padding .list-group-item:first-child {
	border-top: 0;
}

.webui-no-padding .list-group-item:last-child {
	border-bottom: 0;
}

.webui-popover>.webui-arrow,.webui-popover>.webui-arrow:after {
	position: absolute;
	display: block;
	width: 0;
	height: 0;
	border-color: transparent;
	border-style: solid;
}

.webui-popover>.webui-arrow {
	border-width: 11px;
}

.webui-popover>.webui-arrow:after {
	border-width: 10px;
	content: "";
}

.webui-popover.top>.webui-arrow,.webui-popover.top-right>.webui-arrow,.webui-popover.top-left>.webui-arrow {
	bottom: -11px;
	left: 50%;
	margin-left: -11px;
	border-top-color: #999;
	border-top-color: #eee;
	border-bottom-width: 0;
}

.webui-popover.top>.webui-arrow:after,.webui-popover.top-right>.webui-arrow:after,.webui-popover.top-left>.webui-arrow:after {
	content: " ";
	bottom: 1px;
	margin-left: -10px;
	border-top-color: #fff;
	border-bottom-width: 0;
}

.webui-popover.right>.webui-arrow,.webui-popover.right-top>.webui-arrow,.webui-popover.right-bottom>.webui-arrow {
	top: 50%;
	left: -11px;
	margin-top: -11px;
	border-left-width: 0;
	border-right-color: #999;
	border-right-color: #eee;
}

.webui-popover.right>.webui-arrow:after,.webui-popover.right-top>.webui-arrow:after,.webui-popover.right-bottom>.webui-arrow:after {
	content: " ";
	left: 1px;
	bottom: -10px;
	border-left-width: 0;
	border-right-color: #fff;
}

.webui-popover.bottom>.webui-arrow,.webui-popover.bottom-right>.webui-arrow,.webui-popover.bottom-left>.webui-arrow {
	top: -11px;
	left: 50%;
	margin-left: -11px;
	border-bottom-color: #999;
	border-bottom-color: #eee;
	border-top-width: 0;
}

.webui-popover.bottom>.webui-arrow:after,.webui-popover.bottom-right>.webui-arrow:after,.webui-popover.bottom-left>.webui-arrow:after {
	content: " ";
	top: 1px;
	margin-left: -10px;
	border-bottom-color: #fff;
	border-top-width: 0;
}

.webui-popover.left>.webui-arrow,.webui-popover.left-top>.webui-arrow,.webui-popover.left-bottom>.webui-arrow {
	top: 50%;
	right: -11px;
	margin-top: -11px;
	border-right-width: 0;
	border-left-color: #999;
	border-left-color: #eee;
}

.webui-popover.left>.webui-arrow:after,.webui-popover.left-top>.webui-arrow:after,.webui-popover.left-bottom>.webui-arrow:after {
	content: " ";
	right: 1px;
	border-right-width: 0;
	border-left-color: #fff;
	bottom: -10px;
}

.webui-popover-inverse.top>.webui-arrow,.webui-popover-inverse.top-left>.webui-arrow,.webui-popover-inverse.top-right>.webui-arrow,.webui-popover-inverse.top>.webui-arrow:after,.webui-popover-inverse.top-left>.webui-arrow:after,.webui-popover-inverse.top-right>.webui-arrow:after {
	border-top-color: #333;
}

.webui-popover-inverse.right>.webui-arrow,.webui-popover-inverse.right-top>.webui-arrow,.webui-popover-inverse.right-bottom>.webui-arrow,.webui-popover-inverse.right>.webui-arrow:after,.webui-popover-inverse.right-top>.webui-arrow:after,.webui-popover-inverse.right-bottom>.webui-arrow:after {
	border-right-color: #333;
}

.webui-popover-inverse.bottom>.webui-arrow,.webui-popover-inverse.bottom-left>.webui-arrow,.webui-popover-inverse.bottom-right>.webui-arrow,.webui-popover-inverse.bottom>.webui-arrow:after,.webui-popover-inverse.bottom-left>.webui-arrow:after,.webui-popover-inverse.bottom-right>.webui-arrow:after {
	border-bottom-color: #333;
}

.webui-popover-inverse.left>.webui-arrow,.webui-popover-inverse.left-top>.webui-arrow,.webui-popover-inverse.left-bottom>.webui-arrow,.webui-popover-inverse.left>.webui-arrow:after,.webui-popover-inverse.left-top>.webui-arrow:after,.webui-popover-inverse.left-bottom>.webui-arrow:after {
	border-left-color: #333;
}

.webui-popover i.icon-refresh:before {
	content: "";
}

.webui-popover i.icon-refresh {
	display: block;
	width: 30px;
	height: 30px;
	font-size: 20px;
	top: 50%;
	left: 50%;
	position: absolute;
	margin-top: -15px;
	margin-left: -15px;
	margin-right: -15px;
	
}

@-webkit-keyframes rotate {
	100% {
		-webkit-transform: rotate(360deg);
	}
}

@keyframes rotate {
	100% {
		transform: rotate(360deg);
	}
}

.webui-popover-backdrop {
	background-color: rgba(0,0,0,.65);
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9998;
}

.webui-popover .dropdown-menu {
	display: block;
	position: relative;
	top: 0;
	border: none;
	box-shadow: none;
	float: none;
}

.slick-slider {
	position: relative;
	display: block;
	box-sizing: border-box;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
	-khtml-user-select: none;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent;
}

.slick-list {
	position: relative;
	display: block;
	overflow: hidden;
	margin: 0;
	padding: 0;
}

.slick-list:focus {
	outline: none;
}

.slick-list.dragging {
	cursor: pointer;
	cursor: hand;
}

.slick-slider .slick-track,.slick-slider .slick-list {
	-webkit-transform: translate3d(0,0,0);
	-moz-transform: translate3d(0,0,0);
	-ms-transform: translate3d(0,0,0);
	-o-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

.slick-track {
	position: relative;
	top: 0;
	left: 0;
	display: block;
}

.slick-track:before,.slick-track:after {
	display: table;
	content: '';
}

.slick-track:after {
	clear: both;
}

.slick-loading .slick-track {
	visibility: hidden;
}

.slick-slide {
	float: left;
	height: 100%;
	min-height: 1px;
}

.slick-slide:not(:first-child) {
	display: none;
}

[dir='rtl'] .slick-slide {
	float: right;
}

.slick-slide img {
	display: block;
}

.slick-slide.slick-loading img {
	display: none;
}

.slick-slide.dragging img {
	pointer-events: none;
}

.slick-initialized .slick-slide {
	display: block;
}

.slick-loading .slick-slide {
	visibility: hidden;
}

.slick-vertical .slick-slide {
	display: block;
	height: auto;
}

.slick-arrow.slick-hidden {
	display: none;
}



@font-face {
	font-family:'slick';font-weight:normal;font-style:normal;src:url('/fonts/slick.eot');src:url('/fonts/slick.eot?#iefix') format('embedded-opentype'),url('/fonts/slick.woff') format('woff'),url('/fonts/slick.ttf') format('truetype'),url('/fonts/slick.svg#slick') format('svg');
}

.slick-prev,.slick-next {
	font-size: 0;
	line-height: 0;
	position: absolute;
	top: 50%;
	display: block;
	width: 20px;
	height: 20px;
	padding: 0;
	-webkit-transform: translate(0,-50%);
	-ms-transform: translate(0,-50%);
	transform: translate(0,-50%);
	cursor: pointer;
	color: transparent;
	border: none;
	outline: none;
	background: transparent;
}

.slick-prev:hover,.slick-prev:focus,.slick-next:hover,.slick-next:focus {
	color: transparent;
	outline: none;
	background: transparent;
}

.slick-prev:hover:before,.slick-prev:focus:before,.slick-next:hover:before,.slick-next:focus:before {
	opacity: 1;
}

.slick-prev.slick-disabled:before,.slick-next.slick-disabled:before {
	opacity: .25;
}

.slick-prev:before,.slick-next:before {
	font-family: 'slick';
	font-size: 20px;
	line-height: 1;
	opacity: .75;
	color: white;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.slick-prev {
	left: -25px;
}

[dir='rtl'] .slick-prev {
	right: -25px;
	left: auto;
}

.slick-prev:before {
	content: '←';
}

[dir='rtl'] .slick-prev:before {
	content: '→';
}

.slick-next {
	right: -25px;
}

[dir='rtl'] .slick-next {
	right: auto;
	left: -25px;
}

.slick-next:before {
	content: '→';
}

[dir='rtl'] .slick-next:before {
	content: '←';
}

.slick-dots {
	position: absolute;
	bottom: -25px;
	display: block;
	width: 100%;
	padding: 0;
	margin: 0;
	list-style: none;
	text-align: center;
}

.slick-dots li {
	position: relative;
	display: inline-block;
	width: 20px;
	height: 20px;
	margin: 0 5px;
	padding: 0;
	cursor: pointer;
}

.slick-dots li button {
	font-size: 0;
	line-height: 0;
	display: block;
	width: 20px;
	height: 20px;
	padding: 5px;
	cursor: pointer;
	color: transparent;
	border: 0;
	outline: none;
	background: transparent;
}

.slick-dots li button:hover,.slick-dots li button:focus {
	outline: none;
}

.slick-dots li button:hover:before,.slick-dots li button:focus:before {
	opacity: 1;
}

.slick-dots li button:before {
	font-family: 'slick';
	font-size: 6px;
	line-height: 20px;
	position: absolute;
	top: 0;
	left: 0;
	width: 20px;
	height: 20px;
	content: '•';
	text-align: center;
	opacity: .25;
	color: black;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
	opacity: .75;
	color: black;
}

.pswp {
	display: none;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	overflow: hidden;
	-ms-touch-action: none;
	touch-action: none;
	z-index: 1800;
	-webkit-text-size-adjust: 100%;
	-webkit-backface-visibility: hidden;
	outline: none;
}

.pswp * {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.pswp img {
	max-width: none;
	-webkit-transition: none;
	-o-transition: none;
	transition: none;
}

.pswp--animate_opacity {
	opacity: 0.001;
	will-change: opacity;
	-webkit-transition: opacity 333ms cubic-bezier(0.4,0,0.22,1);
	transition: opacity 333ms cubic-bezier(0.4,0,0.22,1);
}

.pswp--open {
	display: block;
}

.pswp--zoom-allowed .pswp__img {
	cursor: -webkit-zoom-in;
	cursor: -moz-zoom-in;
	cursor: zoom-in;
}

.pswp--zoomed-in .pswp__img {
	cursor: -webkit-grab;
	cursor: -moz-grab;
	cursor: grab;
}

.pswp--dragging .pswp__img {
	cursor: -webkit-grabbing;
	cursor: -moz-grabbing;
	cursor: grabbing;
}

.pswp__bg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	opacity: 0;
	transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	will-change: opacity;
}

.pswp__scroll-wrap {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.pswp__container,.pswp__zoom-wrap {
	-ms-touch-action: none;
	touch-action: none;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}

.pswp__container,.pswp__img {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
}

.pswp__zoom-wrap {
	position: absolute;
	width: 100%;
	-webkit-transform-origin: left top;
	-ms-transform-origin: left top;
	transform-origin: left top;
	-webkit-transition: -webkit-transform 333ms cubic-bezier(0.4,0,0.22,1);
	transition: transform 333ms cubic-bezier(0.4,0,0.22,1);
}

.pswp__bg {
	will-change: opacity;
	for open/close transition-webkit-transition: opacity 333ms cubic-bezier(0.4,0,0.22,1);
	transition: opacity 333ms cubic-bezier(0.4,0,0.22,1);
}

.pswp--animated-in .pswp__bg,.pswp--animated-in .pswp__zoom-wrap {
	-webkit-transition: none;
	transition: none;
}

.pswp__container,.pswp__zoom-wrap {
	-webkit-backface-visibility: hidden;
}

.pswp__item {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	overflow: hidden;
}

.pswp__img {
	position: absolute;
	width: auto;
	height: auto;
	top: 0;
	left: 0;
}

.pswp__img--placeholder {
	-webkit-backface-visibility: hidden;
}

.pswp__img--placeholder--blank {
	background: #222;
}

.pswp--ie .pswp__img {
	width: 100%!important;
	height: auto!important;
	left: 0;
	top: 0;
}

.pswp__error-msg {
	position: absolute;
	left: 0;
	top: 50%;
	width: 100%;
	text-align: center;
	font-size: 14px;
	line-height: 16px;
	margin-top: -8px;
	color: #777;
}

.pswp__error-msg a {
	color: #333;
	text-decoration: underline;
}

.pswp__button {
	width: 44px;
	height: 44px;
	position: relative;
	background: none;
	cursor: pointer;
	overflow: visible;
	-webkit-appearance: none;
	display: block;
	border: 0;
	padding: 0;
	margin: 0;
	float: right;
	opacity: 0.75;
	-webkit-transition: opacity 0.2s;
	transition: opacity 0.2s;
	-webkit-box-shadow: none;
	box-shadow: none;
	outline: none;
}

.pswp__button:focus,.pswp__button:hover {
	opacity: 1;
}

.pswp__button:active {
	outline: none;
	opacity: 0.9;
}

.pswp__button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

[class*=pswp__button--rotate] {
	background: none!important;
	outline: none!important;
}

[class*=pswp__button--rotate] .icon {
	top: 1px;
	font-size: 17px;
	font-weight: 400;
	color: #555;
}

.pswp__ui--over-close .pswp__button--close {
	opacity: 1;
}

.pswp__button,.pswp__button--arrow--left:before,.pswp__button--arrow--right:before {
	background: url('../../../public/plugins/PhotoSwipe/default-skin/default-skin.png') 0 0 no-repeat;
	background-size: 264px 88px;
	width: 44px;
	height: 44px;
}

@media (-webkit-min-device-pixel-ratio:1.1),(-webkit-min-device-pixel-ratio:1.09375),(min-resolution:105dpi),(min-resolution:1.1dppx) {
	.pswp--svg .pswp__button,.pswp--svg .pswp__button--arrow--left:before,.pswp--svg .pswp__button--arrow--right:before {
		background-image: url('../../../public/plugins/PhotoSwipe/default-skin/default-skin.svg');
	}

	.pswp--svg .pswp__button--arrow--left,.pswp--svg .pswp__button--arrow--right {
		background: none;
	}

	[class*=pswp__button--rotate] {
		opacity: .75;
	}
}

.pswp__button--close {
	background-position: 0 -44px;
}

.pswp__button--share {
	background-position: -44px -44px;
}

.pswp__button--fs {
	display: none;
}

.pswp--supports-fs .pswp__button--fs {
	display: block;
}

.pswp--fs .pswp__button--fs {
	background-position: -44px 0;
}

.pswp__button--zoom {
	display: none;
	background-position: -88px 0;
}

.pswp--zoom-allowed .pswp__button--zoom {
	display: block;
}

.pswp--zoomed-in .pswp__button--zoom {
	background-position: -132px 0;
}

.pswp--touch .pswp__button--arrow--left,.pswp--touch .pswp__button--arrow--right {
	visibility: hidden;
}

.pswp__button--arrow--left,.pswp__button--arrow--right {
	background: none;
	top: 50%;
	margin-top: -50px;
	width: 70px;
	height: 100px;
	position: absolute;
}

.pswp__button--arrow--left {
	left: 0;
}

.pswp__button--arrow--right {
	right: 0;
}

.pswp__button--arrow--left:before,.pswp__button--arrow--right:before {
	content: '';
	top: 35px;
	background-color: rgba(0,0,0,0.1);
	height: 30px;
	width: 32px;
	position: absolute;
}

.pswp__button--arrow--left:before {
	left: 6px;
	background-position: -138px -44px;
}

.pswp__button--arrow--right:before {
	right: 6px;
	background-position: -94px -44px;
}

.pswp__counter,.pswp__share-modal {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.pswp__share-modal {
	display: block;
	background: rgba(0,0,0,0.5);
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	padding: 10px;
	position: absolute;
	z-index: 1600;
	opacity: 0;
	-webkit-transition: opacity 0.25s ease-out;
	transition: opacity 0.25s ease-out;
	-webkit-backface-visibility: hidden;
	will-change: opacity;
}

.pswp__share-modal--hidden {
	display: none;
}

.pswp__share-tooltip {
	z-index: 1620;
	position: absolute;
	background: #FFF;
	top: 56px;
	border-radius: 2px;
	display: block;
	width: auto;
	right: 44px;
	-webkit-box-shadow: 0 2px 5px rgba(0,0,0,0.25);
	box-shadow: 0 2px 5px rgba(0,0,0,0.25);
	-webkit-transform: translateY(6px);
	-ms-transform: translateY(6px);
	transform: translateY(6px);
	-webkit-transition: -webkit-transform 0.25s;
	transition: transform 0.25s;
	-webkit-backface-visibility: hidden;
	will-change: transform;
}

.pswp__share-tooltip a {
	display: block;
	padding: 8px 12px;
	color: #000;
	text-decoration: none;
	font-size: 14px;
	line-height: 18px;
}

.pswp__share-tooltip a:hover {
	text-decoration: none;
	color: #000;
}

.pswp__share-tooltip a:first-child {
	border-radius: 2px 2px 0 0;
}

.pswp__share-tooltip a:last-child {
	border-radius: 0 0 2px 2px;
}

.pswp__share-modal--fade-in {
	opacity: 1;
}

.pswp__share-modal--fade-in .pswp__share-tooltip {
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
}

.pswp--touch .pswp__share-tooltip a {
	padding: 16px 12px;
}

a.pswp__share--facebook:before {
	content: '';
	display: block;
	width: 0;
	height: 0;
	position: absolute;
	top: -12px;
	right: 15px;
	border: 6px solid transparent;
	border-bottom-color: #FFF;
	-webkit-pointer-events: none;
	-moz-pointer-events: none;
	pointer-events: none;
}

a.pswp__share--facebook:hover {
	background: #3E5C9A;
	color: #FFF;
}

a.pswp__share--facebook:hover:before {
	border-bottom-color: #3E5C9A;
}

a.pswp__share--twitter:hover {
	background: #55ACEE;
	color: #FFF;
}

a.pswp__share--pinterest:hover {
	background: #CCC;
	color: #CE272D;
}

a.pswp__share--download:hover {
	background: #DDD;
}

.pswp__counter {
	position: absolute;
	left: 0;
	top: 0;
	height: 44px;
	font-size: 13px;
	line-height: 44px;
	color: #555;
	opacity: 0.75;
	padding: 0 10px;
}

.pswp__caption {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	min-height: 44px;
}

.pswp__caption small {
	font-size: 11px;
	color: #777;
}

.pswp__caption__center {
	text-align: center;
	max-width: 420px;
	margin: 0 auto;
	font-size: 13px;
	padding: 10px;
	line-height: 20px;
	color: #333;
}

.pswp__caption--empty {
	display: none;
}

.pswp__caption--fake {
	visibility: hidden;
}

.pswp__preloader {
	width: 44px;
	height: 44px;
	position: absolute;
	top: 0;
	left: 50%;
	margin-left: -22px;
	opacity: 0;
	-webkit-transition: opacity 0.25s ease-out;
	transition: opacity 0.25s ease-out;
	will-change: opacity;
	direction: ltr;
}

.pswp__preloader__icn {
	width: 20px;
	height: 20px;
	margin: 12px;
}

.pswp__preloader--active {
	opacity: 1;
}



.pswp--css_animation .pswp__preloader--active {
	opacity: 1;
}

.pswp--css_animation .pswp__preloader--active .pswp__preloader__icn {
	-webkit-animation: clockwise 500ms linear infinite;
	animation: clockwise 500ms linear infinite;
}

.pswp--css_animation .pswp__preloader--active .pswp__preloader__donut {
	-webkit-animation: donut-rotate 1000ms cubic-bezier(0.4,0,0.22,1) infinite;
	animation: donut-rotate 1000ms cubic-bezier(0.4,0,0.22,1) infinite;
}

.pswp--css_animation .pswp__preloader__icn {
	background: none;
	opacity: 0.75;
	width: 14px;
	height: 14px;
	position: absolute;
	left: 15px;
	top: 15px;
	margin: 0;
}

.pswp--css_animation .pswp__preloader__cut {
	position: relative;
	width: 7px;
	height: 14px;
	overflow: hidden;
}

.pswp--css_animation .pswp__preloader__donut {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 14px;
	height: 14px;
	border: 2px solid #FFF;
	border-radius: 50%;
	border-left-color: transparent;
	border-bottom-color: transparent;
	position: absolute;
	top: 0;
	left: 0;
	background: none;
	margin: 0;
}

@media screen and (max-width:1024px) {
	.pswp__preloader {
		position: relative;
		left: auto;
		top: auto;
		margin: 0;
		float: right;
	}
}

@-webkit-keyframes clockwise {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes clockwise {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@-webkit-keyframes donut-rotate {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}

	50% {
		-webkit-transform: rotate(-140deg);
		transform: rotate(-140deg);
	}

	100% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}
}

@keyframes donut-rotate {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}

	50% {
		-webkit-transform: rotate(-140deg);
		transform: rotate(-140deg);
	}

	100% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}
}

.pswp__ui {
	-webkit-font-smoothing: auto;
	visibility: visible;
	opacity: 1;
	z-index: 1550;
}

.pswp__top-bar {
	position: absolute;
	left: 0;
	top: 0;
	height: 44px;
	width: 100%;
}

.pswp__caption,.pswp__top-bar,.pswp--has_mouse .pswp__button--arrow--left,.pswp--has_mouse .pswp__button--arrow--right {
	-webkit-backface-visibility: hidden;
	will-change: opacity;
	-webkit-transition: opacity 333ms cubic-bezier(0.4,0,0.22,1);
	transition: opacity 333ms cubic-bezier(0.4,0,0.22,1);
}

.pswp--has_mouse .pswp__button--arrow--left,.pswp--has_mouse .pswp__button--arrow--right {
	visibility: visible;
}

.pswp__top-bar,.pswp__caption {
	background-color: rgba(255,255,255,0.8);
}

.pswp__ui--fit .pswp__top-bar,.pswp__ui--fit .pswp__caption {
	background-color: rgba(255,255,255,0.8);
}

.pswp__ui--idle .pswp__button--arrow--left,.pswp__ui--idle .pswp__button--arrow--right {
	opacity: 0;
}

.pswp__ui--hidden .pswp__top-bar,.pswp__ui--hidden .pswp__caption,.pswp__ui--hidden .pswp__button--arrow--left,.pswp__ui--hidden .pswp__button--arrow--right {
	opacity: 0.001;
}

.pswp__ui--one-slide .pswp__button--arrow--left,.pswp__ui--one-slide .pswp__button--arrow--right,.pswp__ui--one-slide .pswp__counter {
	display: none;
}

.pswp__element--disabled {
	display: none!important;
}

.pswp--minimal--dark .pswp__top-bar {
	background: none;
}

@font-face {
	font-family:Pe-icon-7-stroke;font-style:normal;font-weight:400;src:url('/fonts/Pe-icon-7-stroke.eot?d7yf1v');src:url('/fonts/Pe-icon-7-stroke.eot?#iefixd7yf1v') format('embedded-opentype'),url('/fonts/Pe-icon-7-stroke.woff?d7yf1v') format('woff'),url('/fonts/Pe-icon-7-stroke.ttf?d7yf1v') format('truetype'),url('/fonts/Pe-icon-7-stroke.svg?d7yf1v#Pe-icon-7-stroke') format('svg');
}

[class*=" pe-"],[class^=pe-] {
	position: relative;
	display: inline-block;
	font-family: Pe-icon-7-stroke;
	font-style: normal;
	font-weight: 400;
	-webkit-transform: translate(0,0);
	-ms-transform: translate(0,0);
	-o-transform: translate(0,0);
	transform: translate(0,0);
	text-rendering: auto;
	speak: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.pe-album:before {
	content: "\e6aa";
}

.pe-arc:before {
	content: "\e6ab";
}

.pe-back-2:before {
	content: "\e6ac";
}

.pe-bandaid:before {
	content: "\e6ad";
}

.pe-car:before {
	content: "\e6ae";
}

.pe-diamond:before {
	content: "\e6af";
}

.pe-door-lock:before {
	content: "\e6b0";
}

.pe-eyedropper:before {
	content: "\e6b1";
}

.pe-female:before {
	content: "\e6b2";
}

.pe-gym:before {
	content: "\e6b3";
}

.pe-hammer:before {
	content: "\e6b4";
}

.pe-headphones:before {
	content: "\e6b5";
}

.pe-helm:before {
	content: "\e6b6";
}

.pe-hourglass:before {
	content: "\e6b7";
}

.pe-leaf:before {
	content: "\e6b8";
}

.pe-magic-wand:before {
	content: "\e6b9";
}

.pe-male:before {
	content: "\e6ba";
}

.pe-map-2:before {
	content: "\e6bb";
}

.pe-next-2:before {
	content: "\e6bc";
}

.pe-paint-bucket:before {
	content: "\e6bd";
}

.pe-pendrive:before {
	content: "\e6be";
}

.pe-photo:before {
	content: "\e6bf";
}

.pe-piggy:before {
	content: "\e6c0";
}

.pe-plugin:before {
	content: "\e6c1";
}

.pe-refresh-2:before {
	content: "\e6c2";
}

.pe-rocket:before {
	content: "\e6c3";
}

.pe-settings:before {
	content: "\e6c4";
}

.pe-shield:before {
	content: "\e6c5";
}

.pe-smile:before {
	content: "\e6c6";
}

.pe-usb:before {
	content: "\e6c7";
}

.pe-vector:before {
	content: "\e6c8";
}

.pe-wine:before {
	content: "\e6c9";
}

.pe-cloud-upload:before {
	content: "\e68a";
}

.pe-cash:before {
	content: "\e68c";
}

.pe-close:before {
	content: "\e680";
}

.pe-bluetooth:before {
	content: "\e68d";
}

.pe-cloud-download:before {
	content: "\e68b";
}

.pe-way:before {
	content: "\e68e";
}

.pe-close-circle:before {
	content: "\e681";
}

.pe-id:before {
	content: "\e68f";
}

.pe-angle-up:before {
	content: "\e682";
}

.pe-wristwatch:before {
	content: "\e690";
}

.pe-angle-up-circle:before {
	content: "\e683";
}

.pe-world:before {
	content: "\e691";
}

.pe-angle-right:before {
	content: "\e684";
}

.pe-volume:before {
	content: "\e692";
}

.pe-angle-right-circle:before {
	content: "\e685";
}

.pe-users:before {
	content: "\e693";
}

.pe-angle-left:before {
	content: "\e686";
}

.pe-user-female:before {
	content: "\e694";
}

.pe-angle-left-circle:before {
	content: "\e687";
}

.pe-up-arrow:before {
	content: "\e695";
}

.pe-angle-down:before {
	content: "\e688";
}

.pe-switch:before {
	content: "\e696";
}

.pe-angle-down-circle:before {
	content: "\e689";
}

.pe-scissors:before {
	content: "\e697";
}

.pe-wallet:before {
	content: "\e600";
}

.pe-safe:before {
	content: "\e698";
}

.pe-volume2:before {
	content: "\e601";
}

.pe-volume1:before {
	content: "\e602";
}

.pe-voicemail:before {
	content: "\e603";
}

.pe-video:before {
	content: "\e604";
}

.pe-user:before {
	content: "\e605";
}

.pe-upload:before {
	content: "\e606";
}

.pe-unlock:before {
	content: "\e607";
}

.pe-umbrella:before {
	content: "\e608";
}

.pe-trash:before {
	content: "\e609";
}

.pe-tools:before {
	content: "\e60a";
}

.pe-timer:before {
	content: "\e60b";
}

.pe-ticket:before {
	content: "\e60c";
}

.pe-target:before {
	content: "\e60d";
}

.pe-sun:before {
	content: "\e60e";
}

.pe-study:before {
	content: "\e60f";
}

.pe-stopwatch:before {
	content: "\e610";
}

.pe-star:before {
	content: "\e611";
}

.pe-speaker:before {
	content: "\e612";
}

.pe-signal:before {
	content: "\e613";
}

.pe-shuffle:before {
	content: "\e614";
}

.pe-shopbag:before {
	content: "\e615";
}

.pe-share:before {
	content: "\e616";
}

.pe-server:before {
	content: "\e617";
}

.pe-search:before {
	content: "\e618";
}

.pe-film:before {
	content: "\e6a5";
}

.pe-science:before {
	content: "\e619";
}

.pe-disk:before {
	content: "\e6a6";
}

.pe-ribbon:before {
	content: "\e61a";
}

.pe-repeat:before {
	content: "\e61b";
}

.pe-refresh:before {
	content: "\e61c";
}

.pe-add-user:before {
	content: "\e6a9";
}

.pe-refresh-cloud:before {
	content: "\e61d";
}

.pe-paperclip:before {
	content: "\e69c";
}

.pe-radio:before {
	content: "\e61e";
}

.pe-note2:before {
	content: "\e69d";
}

.pe-print:before {
	content: "\e61f";
}

.pe-network:before {
	content: "\e69e";
}

.pe-prev:before {
	content: "\e620";
}

.pe-mute:before {
	content: "\e69f";
}

.pe-power:before {
	content: "\e621";
}

.pe-medal:before {
	content: "\e6a0";
}

.pe-portfolio:before {
	content: "\e622";
}

.pe-like2:before {
	content: "\e6a1";
}

.pe-plus:before {
	content: "\e623";
}

.pe-left-arrow:before {
	content: "\e6a2";
}

.pe-play:before {
	content: "\e624";
}

.pe-key:before {
	content: "\e6a3";
}

.pe-plane:before {
	content: "\e625";
}

.pe-joy:before {
	content: "\e6a4";
}

.pe-photo-gallery:before {
	content: "\e626";
}

.pe-pin:before {
	content: "\e69b";
}

.pe-phone:before {
	content: "\e627";
}

.pe-plug:before {
	content: "\e69a";
}

.pe-pen:before {
	content: "\e628";
}

.pe-right-arrow:before {
	content: "\e699";
}

.pe-paper-plane:before {
	content: "\e629";
}

.pe-delete-user:before {
	content: "\e6a7";
}

.pe-paint:before {
	content: "\e62a";
}

.pe-bottom-arrow:before {
	content: "\e6a8";
}

.pe-notebook:before {
	content: "\e62b";
}

.pe-note:before {
	content: "\e62c";
}

.pe-next:before {
	content: "\e62d";
}

.pe-news-paper:before {
	content: "\e62e";
}

.pe-musiclist:before {
	content: "\e62f";
}

.pe-music:before {
	content: "\e630";
}

.pe-mouse:before {
	content: "\e631";
}

.pe-more:before {
	content: "\e632";
}

.pe-moon:before {
	content: "\e633";
}

.pe-monitor:before {
	content: "\e634";
}

.pe-micro:before {
	content: "\e635";
}

.pe-menu:before {
	content: "\e636";
}

.pe-map:before {
	content: "\e637";
}

.pe-map-marker:before {
	content: "\e638";
}

.pe-mail:before {
	content: "\e639";
}

.pe-mail-open:before {
	content: "\e63a";
}

.pe-mail-open-file:before {
	content: "\e63b";
}

.pe-magnet:before {
	content: "\e63c";
}

.pe-loop:before {
	content: "\e63d";
}

.pe-look:before {
	content: "\e63e";
}

.pe-lock:before {
	content: "\e63f";
}

.pe-lintern:before {
	content: "\e640";
}

.pe-link:before {
	content: "\e641";
}

.pe-like:before {
	content: "\e642";
}

.pe-light:before {
	content: "\e643";
}

.pe-less:before {
	content: "\e644";
}

.pe-keypad:before {
	content: "\e645";
}

.pe-junk:before {
	content: "\e646";
}

.pe-info:before {
	content: "\e647";
}

.pe-home:before {
	content: "\e648";
}

.pe-help2:before {
	content: "\e649";
}

.pe-help1:before {
	content: "\e64a";
}

.pe-graph3:before {
	content: "\e64b";
}

.pe-graph2:before {
	content: "\e64c";
}

.pe-graph1:before {
	content: "\e64d";
}

.pe-graph:before {
	content: "\e64e";
}

.pe-global:before {
	content: "\e64f";
}

.pe-gleam:before {
	content: "\e650";
}

.pe-glasses:before {
	content: "\e651";
}

.pe-gift:before {
	content: "\e652";
}

.pe-folder:before {
	content: "\e653";
}

.pe-flag:before {
	content: "\e654";
}

.pe-filter:before {
	content: "\e655";
}

.pe-file:before {
	content: "\e656";
}

.pe-expand1:before {
	content: "\e657";
}

.pe-exapnd2:before {
	content: "\e658";
}

.pe-edit:before {
	content: "\e659";
}

.pe-drop:before {
	content: "\e65a";
}

.pe-drawer:before {
	content: "\e65b";
}

.pe-download:before {
	content: "\e65c";
}

.pe-display2:before {
	content: "\e65d";
}

.pe-display1:before {
	content: "\e65e";
}

.pe-diskette:before {
	content: "\e65f";
}

.pe-date:before {
	content: "\e660";
}

.pe-cup:before {
	content: "\e661";
}

.pe-culture:before {
	content: "\e662";
}

.pe-crop:before {
	content: "\e663";
}

.pe-credit:before {
	content: "\e664";
}

.pe-copy-file:before {
	content: "\e665";
}

.pe-config:before {
	content: "\e666";
}

.pe-compass:before {
	content: "\e667";
}

.pe-comment:before {
	content: "\e668";
}

.pe-coffee:before {
	content: "\e669";
}

.pe-cloud:before {
	content: "\e66a";
}

.pe-clock:before {
	content: "\e66b";
}

.pe-check:before {
	content: "\e66c";
}

.pe-chat:before {
	content: "\e66d";
}

.pe-cart:before {
	content: "\e66e";
}

.pe-camera:before {
	content: "\e66f";
}

.pe-call:before {
	content: "\e670";
}

.pe-calculator:before {
	content: "\e671";
}

.pe-browser:before {
	content: "\e672";
}

.pe-box2:before {
	content: "\e673";
}

.pe-box1:before {
	content: "\e674";
}

.pe-bookmarks:before {
	content: "\e675";
}

.pe-bicycle:before {
	content: "\e676";
}

.pe-bell:before {
	content: "\e677";
}

.pe-battery:before {
	content: "\e678";
}

.pe-ball:before {
	content: "\e679";
}

.pe-back:before {
	content: "\e67a";
}

.pe-attention:before {
	content: "\e67b";
}

.pe-anchor:before {
	content: "\e67c";
}

.pe-albums:before {
	content: "\e67d";
}

.pe-alarm:before {
	content: "\e67e";
}

.pe-airplay:before {
	content: "\e67f";
}

.swiper-container {
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
	float: left;
}

.swiper-container-vertical>.swiper-wrapper {
	-webkit-box-orient: vertical;
	-moz-box-orient: vertical;
	-ms-flex-direction: column;
	-webkit-flex-direction: column;
	flex-direction: column;
}

.swiper-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-transition-property: -webkit-transform;
	-moz-transition-property: -moz-transform;
	-o-transition-property: -o-transform;
	-ms-transition-property: -ms-transform;
	transition-property: transform;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}

.swiper-container-android .swiper-slide,.swiper-wrapper {
	-webkit-transform: translate3d(0,0,0);
	-moz-transform: translate3d(0,0,0);
	-o-transform: translate(0,0);
	-ms-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

.swiper-container-multirow>.swiper-wrapper {
	-webkit-box-lines: multiple;
	-moz-box-lines: multiple;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}

.swiper-container-free-mode>.swiper-wrapper {
	-webkit-transition-timing-function: ease-out;
	-moz-transition-timing-function: ease-out;
	-ms-transition-timing-function: ease-out;
	-o-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
	margin: 0 auto;
}

.swiper-slide {
	-webkit-flex-shrink: 0;
	-ms-flex: 0 0 auto;
	flex-shrink: 0;
	width: 100%;
	height: 100%;
	position: relative;
}

.swiper-container-autoheight,.swiper-container-autoheight .swiper-slide {
	height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
	-webkit-box-align: start;
	-ms-flex-align: start;
	-webkit-align-items: flex-start;
	align-items: flex-start;
	-webkit-transition-property: -webkit-transform,height;
	-moz-transition-property: -moz-transform;
	-o-transition-property: -o-transform;
	-ms-transition-property: -ms-transform;
	transition-property: transform,height;
}

.swiper-container .swiper-notification {
	position: absolute;
	left: 0;
	top: 0;
	pointer-events: none;
	opacity: 0;
	z-index: -1000;
}

.swiper-wp8-horizontal {
	-ms-touch-action: pan-y;
	touch-action: pan-y;
}

.swiper-wp8-vertical {
	-ms-touch-action: pan-x;
	touch-action: pan-x;
}

.swiper-button-next,.swiper-button-prev {
	position: absolute;
	top: 50%;
	width: 27px;
	height: 44px;
	margin-top: -22px;
	z-index: 10;
	cursor: pointer;
	-moz-background-size: 27px 44px;
	-webkit-background-size: 27px 44px;
	background-size: 27px 44px;
	background-position: center;
	background-repeat: no-repeat;
}

.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled {
	opacity: .35;
	cursor: auto;
	pointer-events: none;
}

.swiper-button-prev,.swiper-container-rtl .swiper-button-next {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
	left: 10px;
	right: auto;
}

.swiper-button-prev.swiper-button-black,.swiper-container-rtl .swiper-button-next.swiper-button-black {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-white,.swiper-container-rtl .swiper-button-next.swiper-button-white {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next,.swiper-container-rtl .swiper-button-prev {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
	right: 10px;
	left: auto;
}

.swiper-button-next.swiper-button-black,.swiper-container-rtl .swiper-button-prev.swiper-button-black {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-white,.swiper-container-rtl .swiper-button-prev.swiper-button-white {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-pagination {
	position: absolute;
	text-align: center;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
	-webkit-transform: translate3d(0,0,0);
	-ms-transform: translate3d(0,0,0);
	-o-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
	z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
	opacity: 0;
}

.swiper-container-horizontal>.swiper-pagination-bullets,.swiper-pagination-custom,.swiper-pagination-fraction {
	bottom: 10px;
	left: 0;
	width: 100%;
}

.swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	display: inline-block;
	border-radius: 100%;
	background: #000;
	opacity: .2;
}

button.swiper-pagination-bullet {
	border: none;
	margin: 0;
	padding: 0;
	box-shadow: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-webkit-appearance: none;
	appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
	cursor: pointer;
}

.swiper-pagination-white .swiper-pagination-bullet {
	background: #fff;
}

.swiper-pagination-bullet-active {
	opacity: 1;
	background: #007aff;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
	background: #fff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
	background: #000;
}

.swiper-container-vertical>.swiper-pagination-bullets {
	right: 10px;
	top: 50%;
	-webkit-transform: translate3d(0,-50%,0);
	-moz-transform: translate3d(0,-50%,0);
	-o-transform: translate(0,-50%);
	-ms-transform: translate3d(0,-50%,0);
	transform: translate3d(0,-50%,0);
}

.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 5px 0;
	display: block;
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 5px;
}

.swiper-pagination-progress {
	background: rgba(0,0,0,.25);
	position: absolute;
}

.swiper-pagination-progress .swiper-pagination-progressbar {
	background: #007aff;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
	transform: scale(0);
	-webkit-transform-origin: left top;
	-moz-transform-origin: left top;
	-ms-transform-origin: left top;
	-o-transform-origin: left top;
	transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progress .swiper-pagination-progressbar {
	-webkit-transform-origin: right top;
	-moz-transform-origin: right top;
	-ms-transform-origin: right top;
	-o-transform-origin: right top;
	transform-origin: right top;
}

.swiper-container-horizontal>.swiper-pagination-progress {
	width: 100%;
	height: 4px;
	left: 0;
	top: 0;
}

.swiper-container-vertical>.swiper-pagination-progress {
	width: 4px;
	height: 100%;
	left: 0;
	top: 0;
}

.swiper-pagination-progress.swiper-pagination-white {
	background: rgba(255,255,255,.5);
}

.swiper-pagination-progress.swiper-pagination-white .swiper-pagination-progressbar {
	background: #fff;
}

.swiper-pagination-progress.swiper-pagination-black .swiper-pagination-progressbar {
	background: #000;
}

.swiper-container-3d {
	-webkit-perspective: 1200px;
	-moz-perspective: 1200px;
	-o-perspective: 1200px;
	perspective: 1200px;
}

.swiper-container-3d .swiper-cube-shadow,.swiper-container-3d .swiper-slide,.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top,.swiper-container-3d .swiper-wrapper {
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	-ms-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
	background-image: -webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));
	background-image: -webkit-linear-gradient(right,rgba(0,0,0,.5),rgba(0,0,0,0));
	background-image: -moz-linear-gradient(right,rgba(0,0,0,.5),rgba(0,0,0,0));
	background-image: -o-linear-gradient(right,rgba(0,0,0,.5),rgba(0,0,0,0));
	background-image: linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0));
}

.swiper-container-3d .swiper-slide-shadow-right {
	background-image: -webkit-gradient(linear,right top,left top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));
	background-image: -webkit-linear-gradient(left,rgba(0,0,0,.5),rgba(0,0,0,0));
	background-image: -moz-linear-gradient(left,rgba(0,0,0,.5),rgba(0,0,0,0));
	background-image: -o-linear-gradient(left,rgba(0,0,0,.5),rgba(0,0,0,0));
	background-image: linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0));
}

.swiper-container-3d .swiper-slide-shadow-top {
	background-image: -webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));
	background-image: -webkit-linear-gradient(bottom,rgba(0,0,0,.5),rgba(0,0,0,0));
	background-image: -moz-linear-gradient(bottom,rgba(0,0,0,.5),rgba(0,0,0,0));
	background-image: -o-linear-gradient(bottom,rgba(0,0,0,.5),rgba(0,0,0,0));
	background-image: linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
	background-image: -webkit-gradient(linear,left bottom,left top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));
	background-image: -webkit-linear-gradient(top,rgba(0,0,0,.5),rgba(0,0,0,0));
	background-image: -moz-linear-gradient(top,rgba(0,0,0,.5),rgba(0,0,0,0));
	background-image: -o-linear-gradient(top,rgba(0,0,0,.5),rgba(0,0,0,0));
	background-image: linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0));
}

.swiper-container-coverflow .swiper-wrapper,.swiper-container-flip .swiper-wrapper {
	-ms-perspective: 1200px;
}

.swiper-container-cube,.swiper-container-flip {
	overflow: visible;
}

.swiper-container-cube .swiper-slide,.swiper-container-flip .swiper-slide {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden;
	z-index: 1;
}

.swiper-container-cube .swiper-slide .swiper-slide,.swiper-container-flip .swiper-slide .swiper-slide {
	pointer-events: none;
}

.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-active .swiper-slide-active,.swiper-container-flip .swiper-slide-active,.swiper-container-flip .swiper-slide-active .swiper-slide-active {
	pointer-events: auto;
}

.swiper-container-cube .swiper-slide-shadow-bottom,.swiper-container-cube .swiper-slide-shadow-left,.swiper-container-cube .swiper-slide-shadow-right,.swiper-container-cube .swiper-slide-shadow-top,.swiper-container-flip .swiper-slide-shadow-bottom,.swiper-container-flip .swiper-slide-shadow-left,.swiper-container-flip .swiper-slide-shadow-right,.swiper-container-flip .swiper-slide-shadow-top {
	z-index: 0;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden;
}

.swiper-container-cube .swiper-slide {
	visibility: hidden;
	-webkit-transform-origin: 0 0;
	-moz-transform-origin: 0 0;
	-ms-transform-origin: 0 0;
	transform-origin: 0 0;
	width: 100%;
	height: 100%;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
	-webkit-transform-origin: 100% 0;
	-moz-transform-origin: 100% 0;
	-ms-transform-origin: 100% 0;
	transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-next,.swiper-container-cube .swiper-slide-next+.swiper-slide,.swiper-container-cube .swiper-slide-prev {
	pointer-events: auto;
	visibility: visible;
}

.swiper-container-cube .swiper-cube-shadow {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: .6;
	-webkit-filter: blur(50px);
	filter: blur(50px);
	z-index: 0;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
	-webkit-transition-timing-function: ease-out;
	-moz-transition-timing-function: ease-out;
	-ms-transition-timing-function: ease-out;
	-o-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
	pointer-events: none;
	-webkit-transition-property: opacity;
	-moz-transition-property: opacity;
	-o-transition-property: opacity;
	transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
	pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,.swiper-container-fade .swiper-slide-active .swiper-slide-active {
	pointer-events: auto;
}

.swiper-scrollbar {
	border-radius: 10px;
	position: relative;
	-ms-touch-action: none;
	background: rgba(0,0,0,.1);
}

.swiper-container-horizontal>.swiper-scrollbar {
	position: absolute;
	left: 1%;
	bottom: 3px;
	z-index: 50;
	height: 5px;
	width: 98%;
}

.swiper-container-vertical>.swiper-scrollbar {
	position: absolute;
	right: 3px;
	top: 1%;
	z-index: 50;
	width: 5px;
	height: 98%;
}

.swiper-scrollbar-drag {
	height: 100%;
	width: 100%;
	position: relative;
	background: rgba(0,0,0,.5);
	border-radius: 10px;
	left: 0;
	top: 0;
}

.swiper-scrollbar-cursor-drag {
	cursor: move;
}

.swiper-lazy-preloader {
	width: 42px;
	height: 42px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -21px;
	margin-top: -21px;
	z-index: 10;
	-webkit-transform-origin: 50%;
	-moz-transform-origin: 50%;
	transform-origin: 50%;
	-webkit-animation: swiper-preloader-spin 1s steps(12,end) infinite;
	-moz-animation: swiper-preloader-spin 1s steps(12,end) infinite;
	animation: swiper-preloader-spin 1s steps(12,end) infinite;
}

.swiper-lazy-preloader:after {
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
	background-position: 50%;
	-webkit-background-size: 100%;
	background-size: 100%;
	background-repeat: no-repeat;
}

.swiper-lazy-preloader-white:after {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

@-webkit-keyframes swiper-preloader-spin {
	100% {
		-webkit-transform: rotate(360deg);
	}
}

@keyframes swiper-preloader-spin {
	100% {
		transform: rotate(360deg);
	}
}

.mm-menu,.mm-panels,.mm-panels>.mm-panel {
	margin: 0;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 0;
	box-sizing: border-box;
}

.mm-btn,.mm-menu {
	box-sizing: border-box;
}

.mm-listview a,.mm-listview a:hover,.mm-navbar a,.mm-navbar a:hover {
	text-decoration: none;
}

.mm-hidden {
	display: none!important;
}

.mm-menu,.mm-panels>.mm-panel:not(.mm-hidden) {
	display: block;
}

.mm-wrapper {
	overflow-x: hidden;
	position: relative;
}

.mm-menu {
	padding: 0;
	position: absolute;
}

.mm-panels,.mm-panels>.mm-panel {
	background: inherit;
	border-color: inherit;
	position: absolute;
}

.mm-btn,.mm-panel.mm-highest {
	z-index: 1;
}

.mm-panels {
	overflow: hidden;
}

.mm-panel {
	-webkit-transition: -webkit-transform .4s ease;
	transition: -webkit-transform .4s ease;
	transition: transform .4s ease;
	transition: transform .4s ease,-webkit-transform .4s ease;
	-webkit-transform: translate3d(100%,0,0);
	transform: translate3d(100%,0,0);
}

.mm-panel.mm-opened {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

.mm-panel.mm-subopened {
	-webkit-transform: translate3d(-30%,0,0);
	transform: translate3d(-30%,0,0);
}

.mm-panels>.mm-panel {
	-webkit-overflow-scrolling: touch;
	overflow: scroll;
	overflow-x: hidden;
	overflow-y: auto;
	padding: 0 20px;
}

.mm-listview .mm-divider,.mm-listview>li>a,.mm-listview>li>span,.mm-navbar .mm-title {
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}

.mm-panels>.mm-panel.mm-hasnavbar {
	padding-top: 40px;
}

.mm-panels>.mm-panel:after,.mm-panels>.mm-panel:before {
	content: '';
	display: block;
	height: 20px;
}

.mm-vertical .mm-panel {
	-webkit-transform: none!important;
	-ms-transform: none!important;
	transform: none!important;
}

.mm-listview .mm-vertical .mm-panel,.mm-vertical .mm-listview .mm-panel {
	display: none;
	padding: 10px 0 10px 10px;
}

.mm-listview .mm-vertical .mm-panel .mm-listview>li:last-child:after,.mm-vertical .mm-listview .mm-panel .mm-listview>li:last-child:after {
	border-color: transparent;
}

.mm-vertical li.mm-opened>.mm-panel,li.mm-vertical.mm-opened>.mm-panel {
	display: block;
}

.mm-listview>li.mm-vertical>.mm-next,.mm-vertical .mm-listview>li>.mm-next {
	height: 40px;
	bottom: auto;
}

.mm-listview>li.mm-vertical>.mm-next:after,.mm-vertical .mm-listview>li>.mm-next:after {
	top: 16px;
	bottom: auto;
}

.mm-listview>li.mm-vertical.mm-opened>.mm-next:after,.mm-vertical .mm-listview>li.mm-opened>.mm-next:after {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	right: 19px;
}

.mm-btn {
	width: 40px;
	height: 40px;
	position: absolute;
	top: 0;
}

.mm-clear:after,.mm-clear:before,.mm-close:after,.mm-close:before {
	content: '';
	border: 2px solid transparent;
	display: block;
	width: 5px;
	height: 5px;
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.mm-clear:before,.mm-close:before {
	border-right: none;
	border-bottom: none;
	right: 18px;
}

.mm-clear:after,.mm-close:after {
	border-left: none;
	border-top: none;
	right: 25px;
}

.mm-arrow:after,.mm-next:after,.mm-prev:before {
	content: '';
	border: 2px solid transparent;
	display: block;
	width: 8px;
	height: 8px;
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.mm-prev:before {
	border-right: none;
	border-bottom: none;
	left: 23px;
}

.mm-arrow:after,.mm-next:after {
	border-top: none;
	border-left: none;
	right: 23px;
}

.mm-navbar {
	border-bottom: 1px solid;
	border-color: inherit;
	text-align: center;
	line-height: 20px;
	height: 40px;
	padding: 0 40px;
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
}

.mm-navbar>* {
	display: block;
	padding: 10px 0;
}

.mm-navbar .mm-btn:first-child {
	padding-left: 20px;
	left: 0;
}

.mm-navbar .mm-btn:last-child {
	text-align: right;
	padding-right: 20px;
	right: 0;
}

.mm-panel .mm-navbar {
	display: none;
}

.mm-panel.mm-hasnavbar .mm-navbar {
	display: block;
}

.mm-listview,.mm-listview>li {
	list-style: none;
	display: block;
	padding: 0;
	margin: 0;
}

.mm-listview {
	font: inherit;
	font-size: 14px;
	line-height: 20px;
}

.mm-listview>li {
	position: relative;
}

.mm-listview>li,.mm-listview>li .mm-next,.mm-listview>li .mm-next:before,.mm-listview>li:after {
	border-color: inherit;
}

.mm-listview>li>a,.mm-listview>li>span {
	color: inherit;
	display: block;
	padding: 10px 10px 10px 20px;
	margin: 0;
}

.mm-listview>li>a.mm-arrow,.mm-listview>li>span.mm-arrow {
	padding-right: 50px;
}

.mm-listview>li:not(.mm-divider):after {
	content: '';
	border-bottom-width: 1px;
	border-bottom-style: solid;
	display: block;
	position: absolute;
	right: 0;
	bottom: 0;
	left: 20px;
}

.mm-listview .mm-next {
	background: rgba(3,2,1,0);
	width: 50px;
	padding: 0;
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 2;
}

.mm-listview .mm-next:before {
	content: '';
	border-left-width: 1px;
	border-left-style: solid;
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
}

.mm-listview .mm-next+a,.mm-listview .mm-next+span {
	margin-right: 50px;
}

.mm-listview .mm-next.mm-fullsubopen {
	width: 100%;
}

.mm-listview .mm-next.mm-fullsubopen:before {
	border-left: none;
}

.mm-listview .mm-next.mm-fullsubopen+a,.mm-listview .mm-next.mm-fullsubopen+span {
	padding-right: 50px;
	margin-right: 0;
}

.mm-panels>.mm-panel>.mm-listview {
	margin: 20px -20px;
}

.mm-panels>.mm-panel>.mm-listview:first-child,.mm-panels>.mm-panel>.mm-navbar+.mm-listview {
	margin-top: -20px;
}

.mm-listview .mm-inset {
	list-style: disc inside;
	padding: 0 10px 15px 40px;
	margin: 0;
}

.mm-listview .mm-inset>li {
	padding: 5px 0;
}

.mm-listview .mm-divider {
	font-size: 10px;
	text-transform: uppercase;
	text-indent: 20px;
	line-height: 25px;
}

.mm-listview .mm-spacer {
	padding-top: 40px;
}

.mm-listview .mm-spacer>.mm-next {
	top: 40px;
}

.mm-listview .mm-spacer.mm-divider {
	padding-top: 25px;
}

.mm-menu {
	background: #f3f3f3;
	border-color: rgba(0,0,0,.1);
	color: rgba(0,0,0,.7);
}

.mm-menu .mm-navbar a,.mm-menu .mm-navbar>* {
	color: rgba(0,0,0,.3);
}

.mm-menu .mm-btn:after,.mm-menu .mm-btn:before {
	border-color: rgba(0,0,0,.3);
}

.mm-menu .mm-listview {
	border-color: rgba(0,0,0,.1);
}

.mm-menu .mm-listview>li .mm-arrow:after,.mm-menu .mm-listview>li .mm-next:after {
	border-color: rgba(0,0,0,.3);
}

.mm-menu .mm-listview>li a:not(.mm-next) {
	-webkit-tap-highlight-color: rgba(255,255,255,.5);
	tap-highlight-color: rgba(255,255,255,.5);
}

.mm-menu .mm-listview>li.mm-selected>a:not(.mm-next),.mm-menu .mm-listview>li.mm-selected>span {
	background: rgba(255,255,255,.5);
}

.mm-menu .mm-divider,.mm-menu .mm-listview>li.mm-opened.mm-vertical>.mm-panel,.mm-menu .mm-listview>li.mm-opened.mm-vertical>a.mm-next,.mm-menu.mm-vertical .mm-listview>li.mm-opened>.mm-panel,.mm-menu.mm-vertical .mm-listview>li.mm-opened>a.mm-next {
	background: rgba(0,0,0,.05);
}

.mm-page {
	box-sizing: border-box;
	position: relative;
}

.mm-slideout {
	-webkit-transition: -webkit-transform .4s ease;
	transition: -webkit-transform .4s ease;
	transition: transform .4s ease;
	transition: transform .4s ease,-webkit-transform .4s ease;
	z-index: 1;
}

html.mm-opened {
	overflow-x: hidden;
	position: relative;
}

html.mm-blocking,html.mm-blocking body {
	overflow: hidden;
}

html.mm-background .mm-page {
	background: inherit;
}

#mm-blocker {
	background: rgba(3,2,1,0);
	display: none;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 2;
}

html.mm-blocking #mm-blocker {
	display: block;
}

.mm-menu.mm-offcanvas {
	z-index: 0;
	display: none;
	position: fixed;
	width: 80%;
	min-width: 140px;
	max-width: 440px;
}

.mm-menu.mm-offcanvas.mm-current {
	display: block;
}

html.mm-opening .mm-slideout {
	-webkit-transform: translate3d(80%,0,0);
	transform: translate3d(80%,0,0);
}

@media all and (max-width:175px) {
	html.mm-opening .mm-slideout {
		-webkit-transform: translate3d(140px,0,0);
		transform: translate3d(140px,0,0);
	}
}

@media all and (min-width:550px) {
	html.mm-opening .mm-slideout {
		-webkit-transform: translate3d(440px,0,0);
		transform: translate3d(440px,0,0);
	}
}

.mm-menu.mm-autoheight.mm-bottom,.mm-menu.mm-autoheight.mm-top {
	max-height: 80%;
}

.mm-menu.mm-autoheight.mm-bottom.mm-fullscreen,.mm-menu.mm-autoheight.mm-top.mm-fullscreen {
	max-height: 100%;
}

.mm-menu.mm-measureheight .mm-panel {
	display: block!important;
}

.mm-menu.mm-measureheight>.mm-panels>.mm-panel {
	bottom: auto!important;
	height: auto!important;
}

.mm-menu.mm-columns {
	-webkit-transition-property: width,max-width,-webkit-transform;
	transition-property: width,max-width,-webkit-transform;
	transition-property: transform,width,max-width;
	transition-property: transform,width,max-width,-webkit-transform;
}

.mm-menu.mm-columns .mm-panels>.mm-panel {
	width: 100%;
	right: auto;
	display: none;
	-webkit-transition-property: width,-webkit-transform;
	transition-property: width,-webkit-transform;
	transition-property: transform,width;
	transition-property: transform,width,-webkit-transform;
}

.mm-menu.mm-columns .mm-panels>.mm-panel.mm-opened {
	border-right: 1px solid;
	border-color: inherit;
	display: block;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

.mm-menu.mm-columns .mm-panels>.mm-panel.mm-subopened {
	-webkit-transform: translate3d(-100%,0,0);
	transform: translate3d(-100%,0,0);
	z-index: 2;
}

.mm-menu.mm-columns .mm-panels>.mm-panel.mm-columns-0 {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

.mm-menu.mm-columns .mm-panels>.mm-panel.mm-opened:not([class*=mm-columns-])~.mm-panel:not(.mm-opened).mm-columns-0 {
	display: block;
	-webkit-transform: translate3d(100%,0,0);
	transform: translate3d(100%,0,0);
}

.mm-menu.mm-offcanvas.mm-columns-0 {
	width: 80%;
	min-width: 140px;
	max-width: 0;
}

html.mm-opening.mm-columns-0 .mm-slideout {
	-webkit-transform: translate3d(80%,0,0);
	transform: translate3d(80%,0,0);
}

@media all and (max-width:175px) {
	html.mm-opening.mm-columns-0 .mm-slideout {
		-webkit-transform: translate3d(140px,0,0);
		transform: translate3d(140px,0,0);
	}
}

@media all and (min-width:0px) {
	html.mm-opening.mm-columns-0 .mm-slideout {
		-webkit-transform: translate3d(0,0,0);
		transform: translate3d(0,0,0);
	}
}

.mm-menu.mm-columns .mm-panels>.mm-panel.mm-columns-1 {
	-webkit-transform: translate3d(100%,0,0);
	transform: translate3d(100%,0,0);
}

.mm-menu.mm-columns .mm-panels>.mm-panel.mm-opened:not([class*=mm-columns-])~.mm-panel:not(.mm-opened).mm-columns-1 {
	display: block;
	-webkit-transform: translate3d(200%,0,0);
	transform: translate3d(200%,0,0);
}

.mm-menu.mm-offcanvas.mm-columns-1 {
	width: 80%;
	min-width: 140px;
	max-width: 440px;
}

html.mm-opening.mm-columns-1 .mm-slideout {
	-webkit-transform: translate3d(80%,0,0);
	transform: translate3d(80%,0,0);
}

@media all and (max-width:175px) {
	html.mm-opening.mm-columns-1 .mm-slideout {
		-webkit-transform: translate3d(140px,0,0);
		transform: translate3d(140px,0,0);
	}
}

@media all and (min-width:550px) {
	html.mm-opening.mm-columns-1 .mm-slideout {
		-webkit-transform: translate3d(440px,0,0);
		transform: translate3d(440px,0,0);
	}
}

.mm-menu.mm-columns-1 .mm-panels>.mm-panel {
	width: 100%;
}

.mm-menu.mm-columns .mm-panels>.mm-panel.mm-columns-2 {
	-webkit-transform: translate3d(200%,0,0);
	transform: translate3d(200%,0,0);
}

.mm-menu.mm-columns .mm-panels>.mm-panel.mm-opened:not([class*=mm-columns-])~.mm-panel:not(.mm-opened).mm-columns-2 {
	display: block;
	-webkit-transform: translate3d(300%,0,0);
	transform: translate3d(300%,0,0);
}

.mm-menu.mm-offcanvas.mm-columns-2 {
	width: 80%;
	min-width: 140px;
	max-width: 880px;
}

html.mm-opening.mm-columns-2 .mm-slideout {
	-webkit-transform: translate3d(80%,0,0);
	transform: translate3d(80%,0,0);
}

@media all and (max-width:175px) {
	html.mm-opening.mm-columns-2 .mm-slideout {
		-webkit-transform: translate3d(140px,0,0);
		transform: translate3d(140px,0,0);
	}
}

@media all and (min-width:1100px) {
	html.mm-opening.mm-columns-2 .mm-slideout {
		-webkit-transform: translate3d(880px,0,0);
		transform: translate3d(880px,0,0);
	}
}

.mm-menu.mm-columns-2 .mm-panels>.mm-panel {
	width: 50%;
}

.mm-menu.mm-columns .mm-panels>.mm-panel.mm-columns-3 {
	-webkit-transform: translate3d(300%,0,0);
	transform: translate3d(300%,0,0);
}

.mm-menu.mm-columns .mm-panels>.mm-panel.mm-opened:not([class*=mm-columns-])~.mm-panel:not(.mm-opened).mm-columns-3 {
	display: block;
	-webkit-transform: translate3d(400%,0,0);
	transform: translate3d(400%,0,0);
}

.mm-menu.mm-offcanvas.mm-columns-3 {
	width: 80%;
	min-width: 140px;
	max-width: 1320px;
}

html.mm-opening.mm-columns-3 .mm-slideout {
	-webkit-transform: translate3d(80%,0,0);
	transform: translate3d(80%,0,0);
}

@media all and (max-width:175px) {
	html.mm-opening.mm-columns-3 .mm-slideout {
		-webkit-transform: translate3d(140px,0,0);
		transform: translate3d(140px,0,0);
	}
}

@media all and (min-width:1650px) {
	html.mm-opening.mm-columns-3 .mm-slideout {
		-webkit-transform: translate3d(1320px,0,0);
		transform: translate3d(1320px,0,0);
	}
}

.mm-menu.mm-columns-3 .mm-panels>.mm-panel {
	width: 33.34%;
}

.mm-menu.mm-columns .mm-panels>.mm-panel.mm-columns-4 {
	-webkit-transform: translate3d(400%,0,0);
	transform: translate3d(400%,0,0);
}

.mm-menu.mm-columns .mm-panels>.mm-panel.mm-opened:not([class*=mm-columns-])~.mm-panel:not(.mm-opened).mm-columns-4 {
	display: block;
	-webkit-transform: translate3d(500%,0,0);
	transform: translate3d(500%,0,0);
}

.mm-menu.mm-offcanvas.mm-columns-4 {
	width: 80%;
	min-width: 140px;
	max-width: 1760px;
}

html.mm-opening.mm-columns-4 .mm-slideout {
	-webkit-transform: translate3d(80%,0,0);
	transform: translate3d(80%,0,0);
}

@media all and (max-width:175px) {
	html.mm-opening.mm-columns-4 .mm-slideout {
		-webkit-transform: translate3d(140px,0,0);
		transform: translate3d(140px,0,0);
	}
}

@media all and (min-width:2200px) {
	html.mm-opening.mm-columns-4 .mm-slideout {
		-webkit-transform: translate3d(1760px,0,0);
		transform: translate3d(1760px,0,0);
	}
}

.mm-menu.mm-columns-4 .mm-panels>.mm-panel {
	width: 25%;
}

.mm-menu.mm-columns .mm-panels>.mm-panel.mm-columns-5 {
	-webkit-transform: translate3d(500%,0,0);
	transform: translate3d(500%,0,0);
}

.mm-menu.mm-columns .mm-panels>.mm-panel.mm-opened:not([class*=mm-columns-])~.mm-panel:not(.mm-opened).mm-columns-5 {
	display: block;
	-webkit-transform: translate3d(600%,0,0);
	transform: translate3d(600%,0,0);
}

.mm-menu.mm-offcanvas.mm-columns-5 {
	width: 80%;
	min-width: 140px;
	max-width: 2200px;
}

html.mm-opening.mm-columns-5 .mm-slideout {
	-webkit-transform: translate3d(80%,0,0);
	transform: translate3d(80%,0,0);
}

@media all and (max-width:175px) {
	html.mm-opening.mm-columns-5 .mm-slideout {
		-webkit-transform: translate3d(140px,0,0);
		transform: translate3d(140px,0,0);
	}
}

@media all and (min-width:2750px) {
	html.mm-opening.mm-columns-5 .mm-slideout {
		-webkit-transform: translate3d(2200px,0,0);
		transform: translate3d(2200px,0,0);
	}
}

.mm-menu.mm-columns-5 .mm-panels>.mm-panel {
	width: 20%;
}

.mm-menu.mm-columns .mm-panels>.mm-panel.mm-columns-6 {
	-webkit-transform: translate3d(600%,0,0);
	transform: translate3d(600%,0,0);
}

.mm-menu.mm-columns .mm-panels>.mm-panel.mm-opened:not([class*=mm-columns-])~.mm-panel:not(.mm-opened).mm-columns-6 {
	display: block;
	-webkit-transform: translate3d(700%,0,0);
	transform: translate3d(700%,0,0);
}

.mm-menu.mm-offcanvas.mm-columns-6 {
	width: 80%;
	min-width: 140px;
	max-width: 2640px;
}

html.mm-opening.mm-columns-6 .mm-slideout {
	-webkit-transform: translate3d(80%,0,0);
	transform: translate3d(80%,0,0);
}

@media all and (max-width:175px) {
	html.mm-opening.mm-columns-6 .mm-slideout {
		-webkit-transform: translate3d(140px,0,0);
		transform: translate3d(140px,0,0);
	}
}

@media all and (min-width:3300px) {
	html.mm-opening.mm-columns-6 .mm-slideout {
		-webkit-transform: translate3d(2640px,0,0);
		transform: translate3d(2640px,0,0);
	}
}

.mm-menu.mm-columns-6 .mm-panels>.mm-panel {
	width: 16.67%;
}

em.mm-counter {
	font: inherit;
	font-size: 14px;
	font-style: normal;
	text-indent: 0;
	line-height: 20px;
	display: block;
	margin-top: -10px;
	position: absolute;
	right: 45px;
	top: 50%;
}

em.mm-counter+a.mm-next {
	width: 90px;
}

em.mm-counter+a.mm-next+a,em.mm-counter+a.mm-next+span {
	margin-right: 90px;
}

em.mm-counter+a.mm-fullsubopen {
	padding-left: 0;
}

.mm-vertical>.mm-counter {
	top: 12px;
	margin-top: 0;
}

.mm-vertical.mm-spacer>.mm-counter {
	margin-top: 40px;
}

.mm-nosubresults>.mm-counter {
	display: none;
}

.mm-menu em.mm-counter {
	color: rgba(0,0,0,.3);
}

.mm-divider>span {
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	padding: 0;
	line-height: 25px;
}

.mm-divider.mm-opened a.mm-next:after {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.mm-collapsed:not(.mm-uncollapsed) {
	display: none;
}

.mm-fixeddivider {
	background: inherit;
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 2;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

.mm-fixeddivider:after {
	content: none!important;
	display: none!important;
}

.mm-hasdividers .mm-fixeddivider {
	display: block;
}

.mm-menu .mm-fixeddivider span {
	background: rgba(0,0,0,.05);
}

html.mm-opened.mm-dragging .mm-menu,html.mm-opened.mm-dragging .mm-slideout {
	-webkit-transition-duration: 0s;
	transition-duration: 0s;
}

.mm-menu.mm-dropdown {
	box-shadow: 0 2px 10px rgba(0,0,0,.3);
	height: 80%;
}

html.mm-dropdown .mm-slideout {
	-webkit-transform: none!important;
	-ms-transform: none!important;
	transform: none!important;
	z-index: 0;
}

html.mm-dropdown #mm-blocker {
	-webkit-transition-delay: 0s!important;
	transition-delay: 0s!important;
	z-index: 1;
}

html.mm-dropdown .mm-menu {
	z-index: 2;
}

html.mm-dropdown.mm-opened:not(.mm-opening) .mm-menu {
	display: none;
}

.mm-menu.mm-tip:before {
	content: '';
	background: inherit;
	box-shadow: 0 2px 10px rgba(0,0,0,.3);
	display: block;
	width: 15px;
	height: 15px;
	position: absolute;
	z-index: 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.mm-menu.mm-tipleft:before {
	left: 22px;
}

.mm-menu.mm-tipright:before {
	right: 22px;
}

.mm-menu.mm-tiptop:before {
	top: -8px;
}

.mm-menu.mm-tipbottom:before {
	bottom: -8px;
}

.mm-iconpanel .mm-panel {
	-webkit-transition-property: left,-webkit-transform;
	transition-property: left,-webkit-transform;
	transition-property: transform,left;
	transition-property: transform,left,-webkit-transform;
}

.mm-iconpanel .mm-panel.mm-opened {
	border-left: 1px solid;
	border-color: inherit;
}

.mm-iconpanel .mm-panel.mm-subopened {
	overflow-y: hidden;
	left: -40px;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

.mm-iconpanel .mm-panel.mm-iconpanel-0 {
	left: 0;
}

.mm-iconpanel .mm-panel.mm-iconpanel-1 {
	left: 40px;
}

.mm-iconpanel .mm-panel.mm-iconpanel-2 {
	left: 80px;
}

.mm-iconpanel .mm-panel.mm-iconpanel-3 {
	left: 120px;
}

.mm-iconpanel .mm-panel.mm-iconpanel-4 {
	left: 160px;
}

.mm-iconpanel .mm-panel.mm-iconpanel-5 {
	left: 200px;
}

.mm-iconpanel .mm-panel.mm-iconpanel-6 {
	left: 240px;
}

.mm-subblocker {
	background: inherit;
	opacity: 0;
	display: block;
	-webkit-transition: opacity .4s ease;
	transition: opacity .4s ease;
}

.mm-subopened .mm-subblocker {
	opacity: .6;
	position: absolute;
	top: 0;
	right: 0;
	bottom: -100000px;
	left: 0;
	z-index: 3;
}

.mm-navbar-bottom,.mm-navbar-top~.mm-navbar-top {
	border-bottom: none;
}

.mm-menu>.mm-navbar {
	background: inherit;
	padding: 0;
	z-index: 3;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

.mm-navbar-bottom {
	border-top-width: 1px;
	border-top-style: solid;
	top: auto;
	bottom: 0;
}

.mm-navbar-bottom~.mm-navbar-bottom {
	border-top: none;
}

.mm-navbar.mm-hasbtns {
	padding: 0 40px;
}

.mm-navbar[class*=mm-navbar-content-]>* {
	box-sizing: border-box;
	display: block;
	float: left;
}

.mm-navbar .mm-breadcrumbs {
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	-webkit-overflow-scrolling: touch;
	overflow-x: auto;
	text-align: left;
	padding: 0 0 0 17px;
}

.mm-navbar .mm-breadcrumbs>* {
	display: inline-block;
	padding: 10px 3px;
}

.mm-navbar .mm-breadcrumbs>a {
	text-decoration: underline;
}

.mm-navbar.mm-hasbtns .mm-breadcrumbs {
	margin-left: -40px;
}

.mm-navbar.mm-hasbtns .mm-btn:not(.mm-hidden)+.mm-breadcrumbs {
	margin-left: 0;
	padding-left: 0;
}

.mm-navbar-top-1 {
	top: 0;
}

.mm-hasnavbar-top-1 .mm-panels,.mm-navbar-top-2 {
	top: 40px;
}

.mm-hasnavbar-top-2 .mm-panels,.mm-navbar-top-3 {
	top: 80px;
}

.mm-hasnavbar-top-3 .mm-panels,.mm-navbar-top-4 {
	top: 120px;
}

.mm-hasnavbar-top-4 .mm-panels {
	top: 160px;
}

.mm-navbar-bottom-1 {
	bottom: 0;
}

.mm-hasnavbar-bottom-1 .mm-panels,.mm-navbar-bottom-2 {
	bottom: 40px;
}

.mm-hasnavbar-bottom-2 .mm-panels,.mm-navbar-bottom-3 {
	bottom: 80px;
}

.mm-hasnavbar-bottom-3 .mm-panels,.mm-navbar-bottom-4 {
	bottom: 120px;
}

.mm-hasnavbar-bottom-4 .mm-panels {
	bottom: 160px;
}

.mm-navbar-size-2 {
	height: 80px;
}

.mm-navbar-size-3 {
	height: 120px;
}

.mm-navbar-size-4 {
	height: 160px;
}

.mm-navbar-content-2>* {
	width: 50%;
}

.mm-navbar-content-3>* {
	width: 33.33%;
}

.mm-navbar-content-4>* {
	width: 25%;
}

.mm-navbar-content-5>* {
	width: 20%;
}

.mm-navbar-content-6>* {
	width: 16.67%;
}

.mm-sronly {
	text-indent: 10px;
	overflow: hidden;
	display: block;
	width: 1px;
	height: 1px;
	position: absolute;
	z-index: -1;
}

.mm-search,.mm-search input {
	box-sizing: border-box;
}

.mm-search {
	height: 40px;
	padding: 7px 10px 0;
	position: relative;
}

.mm-search input {
	border: none!important;
	outline: 0!important;
	box-shadow: none!important;
	border-radius: 26px;
	font: inherit;
	font-size: 14px;
	line-height: 26px;
	display: block;
	width: 100%;
	height: 26px;
	min-height: 26px;
	max-height: 26px;
	margin: 0;
	padding: 0 10px;
}

.mm-search input::-ms-clear {
	display: none;
}

.mm-search .mm-clear,.mm-search .mm-next {
	right: 0;
}

.mm-panel>.mm-search {
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.mm-panel.mm-hassearch {
	padding-top: 40px;
}

.mm-panel.mm-hassearch.mm-hasnavbar {
	padding-top: 80px;
}

.mm-panel.mm-hassearch.mm-hasnavbar .mm-search {
	top: 40px;
}

.mm-noresultsmsg {
	text-align: center;
	font-size: 21px;
	padding: 40px 0;
}

.mm-noresults .mm-indexer {
	display: none!important;
}

li.mm-nosubresults>a.mm-next {
	display: none;
}

li.mm-nosubresults>a.mm-next+a,li.mm-nosubresults>a.mm-next+span {
	padding-right: 10px;
}

.mm-panels>.mm-resultspanel:not(.mm-opened) {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

.mm-menu .mm-search input {
	background: rgba(0,0,0,.05);
	color: rgba(0,0,0,.7);
}

.mm-menu .mm-noresultsmsg {
	color: rgba(0,0,0,.3);
}

.mm-indexer {
	background: inherit;
	text-align: center;
	font-size: 12px;
	box-sizing: border-box;
	width: 20px;
	position: absolute;
	top: 0;
	bottom: 0;
	right: -100px;
	z-index: 3;
	-webkit-transition: right .4s ease;
	transition: right .4s ease;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

.mm-indexer a {
	text-decoration: none;
	display: block;
	height: 3.85%;
}

.mm-indexer~.mm-panel.mm-hasindexer {
	padding-right: 40px;
}

.mm-hasindexer .mm-indexer {
	right: 0;
}

.mm-hasindexer .mm-fixeddivider {
	right: 20px;
}

.mm-menu .mm-indexer a {
	color: rgba(0,0,0,.3);
}

.mm-menu.mm-hoverselected .mm-listview>li>a.mm-fullsubopen+a,.mm-menu.mm-hoverselected .mm-listview>li>a.mm-fullsubopen+span,.mm-menu.mm-hoverselected .mm-listview>li>a:not(.mm-fullsubopen),.mm-menu.mm-parentselected .mm-listview>li>a.mm-fullsubopen+a,.mm-menu.mm-parentselected .mm-listview>li>a.mm-fullsubopen+span,.mm-menu.mm-parentselected .mm-listview>li>a:not(.mm-fullsubopen) {
	-webkit-transition: background .4s ease;
	transition: background .4s ease;
}

.mm-menu.mm-hoverselected .mm-listview>li>a.mm-fullsubopen:hover+span,.mm-menu.mm-hoverselected .mm-listview>li>a:not(.mm-fullsubopen):hover,.mm-menu.mm-parentselected .mm-listview>li>a.mm-selected.mm-fullsubopen+a,.mm-menu.mm-parentselected .mm-listview>li>a.mm-selected.mm-fullsubopen+span,.mm-menu.mm-parentselected .mm-listview>li>a.mm-selected:not(.mm-fullsubopen) {
	background: rgba(255,255,255,.5);
}

input.mm-check,input.mm-toggle {
	position: absolute;
	left: -10000px;
}

label.mm-check,label.mm-toggle {
	margin: 0;
	position: absolute;
	top: 50%;
	z-index: 2;
	right: 20px;
}

label.mm-check:before,label.mm-toggle:before {
	content: '';
	display: block;
}

label.mm-toggle {
	border-radius: 30px;
	width: 50px;
	height: 30px;
	margin-top: -15px;
}

label.mm-toggle:before {
	border-radius: 30px;
	width: 28px;
	height: 28px;
	margin: 1px;
}

input.mm-toggle:checked~label.mm-toggle:before {
	float: right;
}

label.mm-check {
	width: 30px;
	height: 30px;
	margin-top: -15px;
}

label.mm-check:before {
	border-left: 3px solid;
	border-bottom: 3px solid;
	width: 40%;
	height: 20%;
	margin: 25% 0 0 20%;
	opacity: .1;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

input.mm-check:checked~label.mm-check:before {
	opacity: 1;
}

li.mm-vertical label.mm-check,li.mm-vertical label.mm-toggle {
	bottom: auto;
	margin-top: 0;
	top: 5px;
}

label.mm-toggle+a,label.mm-toggle+span {
	padding-right: 80px;
}

label.mm-check+a,label.mm-check+span {
	padding-right: 60px;
}

a.mm-next+label.mm-check,a.mm-next+label.mm-toggle {
	right: 60px;
}

a.mm-next+label.mm-check+a,a.mm-next+label.mm-check+span,a.mm-next+label.mm-toggle+a,a.mm-next+label.mm-toggle+span {
	margin-right: 50px;
}

a.mm-next+label.mm-toggle+a,a.mm-next+label.mm-toggle+span {
	padding-right: 70px;
}

a.mm-next+label.mm-check+a,a.mm-next+label.mm-check+span {
	padding-right: 50px;
}

em.mm-counter+a.mm-next+label.mm-check,em.mm-counter+a.mm-next+label.mm-toggle {
	right: 100px;
}

em.mm-counter+a.mm-next+label.mm-check+a,em.mm-counter+a.mm-next+label.mm-check+span,em.mm-counter+a.mm-next+label.mm-toggle+a,em.mm-counter+a.mm-next+label.mm-toggle+span {
	margin-right: 90px;
}

.mm-menu label.mm-toggle {
	background: rgba(0,0,0,.1);
}

.mm-menu label.mm-toggle:before {
	background: #f3f3f3;
}

.mm-menu input.mm-toggle:checked~label.mm-toggle {
	background: #4bd963;
}

.mm-menu label.mm-check:before {
	border-color: rgba(0,0,0,.7);
}

.mm-listview.mm-border-none>li:after,.mm-menu.mm-border-none .mm-listview>li:after {
	content: none;
}

.mm-listview.mm-border-full>li:after,.mm-menu.mm-border-full .mm-listview>li:after {
	left: 0!important;
}

.mm-listview.mm-border-offset>li:after,.mm-menu.mm-border-offset .mm-listview>li:after {
	right: 20px;
}

.mm-menu.mm-effect-menu-zoom {
	-webkit-transition: -webkit-transform .4s ease;
	transition: -webkit-transform .4s ease;
	transition: transform .4s ease;
	transition: transform .4s ease,-webkit-transform .4s ease;
}

html.mm-opened .mm-menu.mm-effect-menu-zoom {
	-webkit-transform: scale(.7,.7) translate3d(-30%,0,0);
	transform: scale(.7,.7) translate3d(-30%,0,0);
	-webkit-transform-origin: left center;
	-ms-transform-origin: left center;
	transform-origin: left center;
}

html.mm-opening .mm-menu.mm-effect-menu-zoom {
	-webkit-transform: scale(1,1) translate3d(0,0,0);
	transform: scale(1,1) translate3d(0,0,0);
}

html.mm-right.mm-opened .mm-menu.mm-effect-menu-zoom {
	-webkit-transform: scale(.7,.7) translate3d(30%,0,0);
	transform: scale(.7,.7) translate3d(30%,0,0);
	-webkit-transform-origin: right center;
	-ms-transform-origin: right center;
	transform-origin: right center;
}

html.mm-right.mm-opening .mm-menu.mm-effect-menu-zoom {
	-webkit-transform: scale(1,1) translate3d(0,0,0);
	transform: scale(1,1) translate3d(0,0,0);
}

.mm-menu.mm-effect-menu-slide {
	-webkit-transition: -webkit-transform .4s ease;
	transition: -webkit-transform .4s ease;
	transition: transform .4s ease;
	transition: transform .4s ease,-webkit-transform .4s ease;
}

html.mm-opened .mm-menu.mm-effect-menu-slide {
	-webkit-transform: translate3d(-30%,0,0);
	transform: translate3d(-30%,0,0);
}

html.mm-opening .mm-menu.mm-effect-menu-slide {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

html.mm-right.mm-opened .mm-menu.mm-effect-menu-slide {
	-webkit-transform: translate3d(30%,0,0);
	transform: translate3d(30%,0,0);
}

html.mm-right.mm-opening .mm-menu.mm-effect-menu-slide {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

.mm-menu.mm-effect-menu-fade {
	opacity: 0;
	-webkit-transition: opacity .4s ease;
	transition: opacity .4s ease;
}

html.mm-opening .mm-menu.mm-effect-menu-fade {
	opacity: 1;
}

.mm-menu.mm-effect-panels-zoom .mm-panel {
	-webkit-transform: scale(1.5,1.5) translate3d(100%,0,0);
	transform: scale(1.5,1.5) translate3d(100%,0,0);
	-webkit-transform-origin: left center;
	-ms-transform-origin: left center;
	transform-origin: left center;
}

.mm-menu.mm-effect-panels-zoom .mm-panel.mm-opened {
	-webkit-transform: scale(1,1) translate3d(0,0,0);
	transform: scale(1,1) translate3d(0,0,0);
}

.mm-menu.mm-effect-panels-zoom .mm-panel.mm-opened.mm-subopened {
	-webkit-transform: scale(.7,.7) translate3d(-30%,0,0);
	transform: scale(.7,.7) translate3d(-30%,0,0);
}

.mm-menu.mm-effect-panels-slide-0 .mm-panel.mm-subopened {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

.mm-menu.mm-effect-panels-slide-100 .mm-panel.mm-subopened {
	-webkit-transform: translate3d(-100%,0,0);
	transform: translate3d(-100%,0,0);
}

.mm-menu[class*=mm-effect-listitems-] .mm-listview>li {
	-webkit-transition: none .4s ease;
	transition: none .4s ease;
}

.mm-menu[class*=mm-effect-listitems-] .mm-listview>li:nth-child(1) {
	-webkit-transition-delay: 50ms;
	transition-delay: 50ms;
}

.mm-menu[class*=mm-effect-listitems-] .mm-listview>li:nth-child(2) {
	-webkit-transition-delay: .1s;
	transition-delay: .1s;
}

.mm-menu[class*=mm-effect-listitems-] .mm-listview>li:nth-child(3) {
	-webkit-transition-delay: 150ms;
	transition-delay: 150ms;
}

.mm-menu[class*=mm-effect-listitems-] .mm-listview>li:nth-child(4) {
	-webkit-transition-delay: .2s;
	transition-delay: .2s;
}

.mm-menu[class*=mm-effect-listitems-] .mm-listview>li:nth-child(5) {
	-webkit-transition-delay: 250ms;
	transition-delay: 250ms;
}

.mm-menu[class*=mm-effect-listitems-] .mm-listview>li:nth-child(6) {
	-webkit-transition-delay: .3s;
	transition-delay: .3s;
}

.mm-menu[class*=mm-effect-listitems-] .mm-listview>li:nth-child(7) {
	-webkit-transition-delay: 350ms;
	transition-delay: 350ms;
}

.mm-menu[class*=mm-effect-listitems-] .mm-listview>li:nth-child(8) {
	-webkit-transition-delay: .4s;
	transition-delay: .4s;
}

.mm-menu[class*=mm-effect-listitems-] .mm-listview>li:nth-child(9) {
	-webkit-transition-delay: 450ms;
	transition-delay: 450ms;
}

.mm-menu[class*=mm-effect-listitems-] .mm-listview>li:nth-child(10) {
	-webkit-transition-delay: .5s;
	transition-delay: .5s;
}

.mm-menu[class*=mm-effect-listitems-] .mm-listview>li:nth-child(11) {
	-webkit-transition-delay: 550ms;
	transition-delay: 550ms;
}

.mm-menu[class*=mm-effect-listitems-] .mm-listview>li:nth-child(12) {
	-webkit-transition-delay: .6s;
	transition-delay: .6s;
}

.mm-menu[class*=mm-effect-listitems-] .mm-listview>li:nth-child(13) {
	-webkit-transition-delay: 650ms;
	transition-delay: 650ms;
}

.mm-menu[class*=mm-effect-listitems-] .mm-listview>li:nth-child(14) {
	-webkit-transition-delay: .7s;
	transition-delay: .7s;
}

.mm-menu[class*=mm-effect-listitems-] .mm-listview>li:nth-child(15) {
	-webkit-transition-delay: 750ms;
	transition-delay: 750ms;
}

.mm-menu.mm-effect-listitems-slide .mm-listview>li {
	-webkit-transition-property: opacity,-webkit-transform;
	transition-property: opacity,-webkit-transform;
	transition-property: transform,opacity;
	transition-property: transform,opacity,-webkit-transform;
	-webkit-transform: translate3d(50%,0,0);
	transform: translate3d(50%,0,0);
	opacity: 0;
}

html.mm-opening .mm-menu.mm-effect-listitems-slide .mm-panel.mm-opened .mm-listview>li {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
	opacity: 1;
}

.mm-menu.mm-effect-listitems-fade .mm-listview>li {
	-webkit-transition-property: opacity;
	transition-property: opacity;
	opacity: 0;
}

html.mm-opening .mm-menu.mm-effect-listitems-fade .mm-panel.mm-opened .mm-listview>li {
	opacity: 1;
}

.mm-menu.mm-effect-listitems-drop .mm-listview>li {
	-webkit-transition-property: opacity,top;
	transition-property: opacity,top;
	opacity: 0;
	top: -25%;
}

html.mm-opening .mm-menu.mm-effect-listitems-drop .mm-panel.mm-opened .mm-listview>li {
	opacity: 1;
	top: 0;
}

.mm-menu.mm-offcanvas.mm-fullscreen {
	width: 100%;
	min-width: 140px;
	max-width: 10000px;
}

html.mm-opening.mm-fullscreen .mm-slideout {
	-webkit-transform: translate3d(100%,0,0);
	transform: translate3d(100%,0,0);
}

@media all and (max-width:140px) {
	html.mm-opening.mm-fullscreen .mm-slideout {
		-webkit-transform: translate3d(140px,0,0);
		transform: translate3d(140px,0,0);
	}
}

@media all and (min-width:10000px) {
	html.mm-opening.mm-fullscreen .mm-slideout {
		-webkit-transform: translate3d(10000px,0,0);
		transform: translate3d(10000px,0,0);
	}
}

html.mm-right.mm-opening.mm-fullscreen .mm-slideout {
	-webkit-transform: translate3d(-100%,0,0);
	transform: translate3d(-100%,0,0);
}

@media all and (max-width:140px) {
	html.mm-right.mm-opening.mm-fullscreen .mm-slideout {
		-webkit-transform: translate3d(-140px,0,0);
		transform: translate3d(-140px,0,0);
	}
}

@media all and (min-width:10000px) {
	html.mm-right.mm-opening.mm-fullscreen .mm-slideout {
		-webkit-transform: translate3d(-10000px,0,0);
		transform: translate3d(-10000px,0,0);
	}
}

.mm-menu.mm-offcanvas.mm-fullscreen.mm-bottom,.mm-menu.mm-offcanvas.mm-fullscreen.mm-top {
	height: 100%;
	min-height: 140px;
	max-height: 10000px;
}

html.mm-opened.mm-fullscreen .mm-page {
	box-shadow: none!important;
}

.mm-menu .mm-panels>.mm-panel.mm-justified-listview:after,.mm-menu .mm-panels>.mm-panel.mm-justified-listview:before,.mm-menu.mm-justified-listview .mm-panels>.mm-panel:after,.mm-menu.mm-justified-listview .mm-panels>.mm-panel:before {
	content: none;
	display: none;
}

.mm-menu .mm-panels>.mm-panel.mm-justified-listview>.mm-listview,.mm-menu.mm-justified-listview .mm-panels>.mm-panel>.mm-listview {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-flow: column nowrap;
	-ms-flex-flow: column nowrap;
	flex-flow: column nowrap;
	height: 100%;
	margin-top: 0;
	margin-bottom: 0;
}

.mm-menu .mm-panels>.mm-panel.mm-justified-listview>.mm-listview>li:not(.mm-divider),.mm-menu.mm-justified-listview .mm-panels>.mm-panel>.mm-listview>li:not(.mm-divider) {
	-webkit-box-flex: 1;
	-webkit-flex: 1 1 0;
	-ms-flex: 1 1 0;
	flex: 1 1 0;
}

.mm-menu .mm-panels>.mm-panel.mm-justified-listview>.mm-listview>li:not(.mm-divider)>a:not(.mm-next),.mm-menu .mm-panels>.mm-panel.mm-justified-listview>.mm-listview>li:not(.mm-divider)>span,.mm-menu.mm-justified-listview .mm-panels>.mm-panel>.mm-listview>li:not(.mm-divider)>a:not(.mm-next),.mm-menu.mm-justified-listview .mm-panels>.mm-panel>.mm-listview>li:not(.mm-divider)>span {
	box-sizing: border-box;
	height: 100%;
}

.mm-menu .mm-panels>.mm-panel.mm-justified-listview>.mm-listview>li:not(.mm-divider)>a:not(.mm-next):before,.mm-menu .mm-panels>.mm-panel.mm-justified-listview>.mm-listview>li:not(.mm-divider)>span:before,.mm-menu.mm-justified-listview .mm-panels>.mm-panel>.mm-listview>li:not(.mm-divider)>a:not(.mm-next):before,.mm-menu.mm-justified-listview .mm-panels>.mm-panel>.mm-listview>li:not(.mm-divider)>span:before {
	content: '';
	vertical-align: middle;
	display: inline-block;
	height: 100%;
	width: 0;
}

.mm-listview.mm-multiline>li .mm-listview>li.mm-multiline>a,.mm-listview.mm-multiline>li .mm-listview>li.mm-multiline>span,.mm-menu.mm-multiline .mm-listview>li>a,.mm-menu.mm-multiline .mm-listview>li>span {
	text-overflow: clip;
	white-space: normal;
}

html.mm-pagedim #mm-blocker,html.mm-pagedim-black #mm-blocker,html.mm-pagedim-white #mm-blocker {
	opacity: 0;
}

html.mm-pagedim-black.mm-opening #mm-blocker,html.mm-pagedim-white.mm-opening #mm-blocker,html.mm-pagedim.mm-opening #mm-blocker {
	opacity: .3;
	-webkit-transition: opacity .4s ease .4s;
	transition: opacity .4s ease .4s;
}

html.mm-pagedim #mm-blocker {
	background: inherit;
}

html.mm-pagedim-white #mm-blocker {
	background: #fff;
}

html.mm-pagedim-black #mm-blocker {
	background: #000;
}

.mm-menu.mm-pageshadow:after {
	content: "";
	display: block;
	width: 20px;
	height: 120%;
	position: absolute;
	left: 100%;
	top: -10%;
	z-index: 99;
	box-shadow: 0 0 10px rgba(0,0,0,.3);
}

.mm-menu.mm-pageshadow.mm-right:after {
	left: auto;
	right: 100%;
}

.mm-menu.mm-pageshadow.mm-front:after,.mm-menu.mm-pageshadow.mm-next:after {
	content: none;
	display: none;
}

.mm-menu.mm-popup {
	-webkit-transition: opacity .4s ease;
	transition: opacity .4s ease;
	opacity: 0;
	box-shadow: 0 2px 10px rgba(0,0,0,.3);
	height: 80%;
	min-height: 140px;
	max-height: 880px;
	top: 50%;
	left: 50%;
	bottom: auto;
	right: auto;
	-webkit-transform: translate3d(-50%,-50%,0);
	transform: translate3d(-50%,-50%,0);
}

html.mm-popup.mm-opening .mm-menu.mm-popup {
	opacity: 1;
}

html.mm-popup .mm-slideout {
	-webkit-transform: none!important;
	-ms-transform: none!important;
	transform: none!important;
	z-index: 0;
}

html.mm-popup #mm-blocker {
	-webkit-transition-delay: 0s!important;
	transition-delay: 0s!important;
	z-index: 1;
}

html.mm-popup .mm-menu {
	z-index: 2;
}

.mm-menu.mm-offcanvas.mm-right {
	left: auto;
}

html.mm-right.mm-opening .mm-slideout {
	-webkit-transform: translate3d(-80%,0,0);
	transform: translate3d(-80%,0,0);
}

@media all and (max-width:175px) {
	html.mm-right.mm-opening .mm-slideout {
		-webkit-transform: translate3d(-140px,0,0);
		transform: translate3d(-140px,0,0);
	}
}

@media all and (min-width:550px) {
	html.mm-right.mm-opening .mm-slideout {
		-webkit-transform: translate3d(-440px,0,0);
		transform: translate3d(-440px,0,0);
	}
}

html.mm-front .mm-slideout {
	-webkit-transform: none!important;
	-ms-transform: none!important;
	transform: none!important;
	z-index: 0;
}

html.mm-front #mm-blocker {
	z-index: 1;
}

html.mm-front .mm-menu.mm-offcanvas {
	z-index: 2;
}

.mm-menu.mm-offcanvas.mm-front,.mm-menu.mm-offcanvas.mm-next {
	-webkit-transition: -webkit-transform .4s ease;
	transition: -webkit-transform .4s ease;
	transition: transform .4s ease;
	transition: transform .4s ease,-webkit-transform .4s ease;
	-webkit-transform: translate3d(-100%,0,0);
	transform: translate3d(-100%,0,0);
}

.mm-menu.mm-offcanvas.mm-front.mm-right,.mm-menu.mm-offcanvas.mm-next.mm-right {
	-webkit-transform: translate3d(100%,0,0);
	transform: translate3d(100%,0,0);
}

.mm-menu.mm-offcanvas.mm-top {
	-webkit-transform: translate3d(0,-100%,0);
	transform: translate3d(0,-100%,0);
}

.mm-menu.mm-offcanvas.mm-bottom {
	-webkit-transform: translate3d(0,100%,0);
	transform: translate3d(0,100%,0);
	top: auto;
}

.mm-menu.mm-offcanvas.mm-bottom,.mm-menu.mm-offcanvas.mm-top {
	width: 100%;
	min-width: 100%;
	max-width: 100%;
	height: 80%;
	min-height: 140px;
	max-height: 880px;
}

html.mm-opening .mm-menu.mm-offcanvas.mm-front,html.mm-opening .mm-menu.mm-offcanvas.mm-next {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

.mm-menu.mm-theme-dark {
	background: #333;
	border-color: rgba(0,0,0,.15);
	color: rgba(255,255,255,.8);
}

.mm-menu.mm-theme-dark .mm-navbar a,.mm-menu.mm-theme-dark .mm-navbar>*,.mm-menu.mm-theme-dark em.mm-counter {
	color: rgba(255,255,255,.4);
}

.mm-menu.mm-theme-dark .mm-btn:after,.mm-menu.mm-theme-dark .mm-btn:before {
	border-color: rgba(255,255,255,.4);
}

.mm-menu.mm-theme-dark .mm-listview {
	border-color: rgba(0,0,0,.15);
}

.mm-menu.mm-theme-dark .mm-listview>li .mm-arrow:after,.mm-menu.mm-theme-dark .mm-listview>li .mm-next:after {
	border-color: rgba(255,255,255,.4);
}

.mm-menu.mm-theme-dark .mm-listview>li a:not(.mm-next) {
	-webkit-tap-highlight-color: rgba(0,0,0,.1);
	tap-highlight-color: rgba(0,0,0,.1);
}

.mm-menu.mm-theme-dark .mm-listview>li.mm-selected>a:not(.mm-next),.mm-menu.mm-theme-dark .mm-listview>li.mm-selected>span {
	background: rgba(0,0,0,.1);
}

.mm-menu.mm-theme-dark .mm-divider,.mm-menu.mm-theme-dark .mm-fixeddivider span,.mm-menu.mm-theme-dark .mm-listview>li.mm-opened.mm-vertical>.mm-panel,.mm-menu.mm-theme-dark .mm-listview>li.mm-opened.mm-vertical>a.mm-next,.mm-menu.mm-theme-dark.mm-vertical .mm-listview>li.mm-opened>.mm-panel,.mm-menu.mm-theme-dark.mm-vertical .mm-listview>li.mm-opened>a.mm-next {
	background: rgba(255,255,255,.05);
}

.mm-menu.mm-theme-dark label.mm-check:before {
	border-color: rgba(255,255,255,.8);
}

.mm-menu.mm-pageshadow.mm-theme-dark:after {
	box-shadow: 0 0 20px rgba(0,0,0,.5);
}

.mm-menu.mm-theme-dark .mm-search input {
	background: rgba(255,255,255,.3);
	color: rgba(255,255,255,.8);
}

.mm-menu.mm-theme-dark .mm-indexer a,.mm-menu.mm-theme-dark .mm-noresultsmsg {
	color: rgba(255,255,255,.4);
}

.mm-menu.mm-hoverselected.mm-theme-dark .mm-listview>li>a.mm-fullsubopen:hover+span,.mm-menu.mm-hoverselected.mm-theme-dark .mm-listview>li>a:not(.mm-fullsubopen):hover,.mm-menu.mm-parentselected.mm-theme-dark .mm-listview>li>a.mm-selected.mm-fullsubopen+a,.mm-menu.mm-parentselected.mm-theme-dark .mm-listview>li>a.mm-selected.mm-fullsubopen+span,.mm-menu.mm-parentselected.mm-theme-dark .mm-listview>li>a.mm-selected:not(.mm-fullsubopen) {
	background: rgba(0,0,0,.1);
}

.mm-menu.mm-theme-dark label.mm-toggle {
	background: rgba(0,0,0,.15);
}

.mm-menu.mm-theme-dark label.mm-toggle:before {
	background: #333;
}

.mm-menu.mm-theme-dark input.mm-toggle:checked~label.mm-toggle {
	background: #4bd963;
}

.mm-menu.mm-theme-white {
	background: #fff;
	border-color: rgba(0,0,0,.1);
	color: rgba(0,0,0,.6);
}

.mm-menu.mm-theme-white .mm-navbar a,.mm-menu.mm-theme-white .mm-navbar>*,.mm-menu.mm-theme-white em.mm-counter {
	color: rgba(0,0,0,.3);
}

.mm-menu.mm-theme-white .mm-btn:after,.mm-menu.mm-theme-white .mm-btn:before {
	border-color: rgba(0,0,0,.3);
}

.mm-menu.mm-theme-white .mm-listview {
	border-color: rgba(0,0,0,.1);
}

.mm-menu.mm-theme-white .mm-listview>li .mm-arrow:after,.mm-menu.mm-theme-white .mm-listview>li .mm-next:after {
	border-color: rgba(0,0,0,.3);
}

.mm-menu.mm-theme-white .mm-listview>li a:not(.mm-next) {
	-webkit-tap-highlight-color: rgba(0,0,0,.05);
	tap-highlight-color: rgba(0,0,0,.05);
}

.mm-menu.mm-theme-white .mm-listview>li.mm-selected>a:not(.mm-next),.mm-menu.mm-theme-white .mm-listview>li.mm-selected>span {
	background: rgba(0,0,0,.05);
}

.mm-menu.mm-theme-white .mm-divider,.mm-menu.mm-theme-white .mm-fixeddivider span,.mm-menu.mm-theme-white .mm-listview>li.mm-opened.mm-vertical>.mm-panel,.mm-menu.mm-theme-white .mm-listview>li.mm-opened.mm-vertical>a.mm-next,.mm-menu.mm-theme-white.mm-vertical .mm-listview>li.mm-opened>.mm-panel,.mm-menu.mm-theme-white.mm-vertical .mm-listview>li.mm-opened>a.mm-next {
	background: rgba(0,0,0,.03);
}

.mm-menu.mm-theme-white label.mm-check:before {
	border-color: rgba(0,0,0,.6);
}

.mm-menu.mm-pageshadow.mm-theme-white:after {
	box-shadow: 0 0 10px rgba(0,0,0,.2);
}

.mm-menu.mm-theme-white .mm-search input {
	background: rgba(0,0,0,.05);
	color: rgba(0,0,0,.6);
}

.mm-menu.mm-theme-white .mm-indexer a,.mm-menu.mm-theme-white .mm-noresultsmsg {
	color: rgba(0,0,0,.3);
}

.mm-menu.mm-hoverselected.mm-theme-white .mm-listview>li>a.mm-fullsubopen:hover+span,.mm-menu.mm-hoverselected.mm-theme-white .mm-listview>li>a:not(.mm-fullsubopen):hover,.mm-menu.mm-parentselected.mm-theme-white .mm-listview>li>a.mm-selected.mm-fullsubopen+a,.mm-menu.mm-parentselected.mm-theme-white .mm-listview>li>a.mm-selected.mm-fullsubopen+span,.mm-menu.mm-parentselected.mm-theme-white .mm-listview>li>a.mm-selected:not(.mm-fullsubopen) {
	background: rgba(0,0,0,.05);
}

.mm-menu.mm-theme-white label.mm-toggle {
	background: rgba(0,0,0,.1);
}

.mm-menu.mm-theme-white label.mm-toggle:before {
	background: #fff;
}

.mm-menu.mm-theme-white input.mm-toggle:checked~label.mm-toggle {
	background: #4bd963;
}

.mm-menu.mm-theme-black {
	background: #000;
	border-color: rgba(255,255,255,.2);
	color: rgba(255,255,255,.6);
}

.mm-menu.mm-theme-black .mm-navbar a,.mm-menu.mm-theme-black .mm-navbar>*,.mm-menu.mm-theme-black em.mm-counter {
	color: rgba(255,255,255,.4);
}

.mm-menu.mm-theme-black .mm-btn:after,.mm-menu.mm-theme-black .mm-btn:before {
	border-color: rgba(255,255,255,.4);
}

.mm-menu.mm-theme-black .mm-listview {
	border-color: rgba(255,255,255,.2);
}

.mm-menu.mm-theme-black .mm-listview>li .mm-arrow:after,.mm-menu.mm-theme-black .mm-listview>li .mm-next:after {
	border-color: rgba(255,255,255,.4);
}

.mm-menu.mm-theme-black .mm-listview>li a:not(.mm-next) {
	-webkit-tap-highlight-color: rgba(255,255,255,.3);
	tap-highlight-color: rgba(255,255,255,.3);
}

.mm-menu.mm-theme-black .mm-listview>li.mm-selected>a:not(.mm-next),.mm-menu.mm-theme-black .mm-listview>li.mm-selected>span {
	background: rgba(255,255,255,.3);
}

.mm-menu.mm-theme-black .mm-divider,.mm-menu.mm-theme-black .mm-fixeddivider span,.mm-menu.mm-theme-black .mm-listview>li.mm-opened.mm-vertical>.mm-panel,.mm-menu.mm-theme-black .mm-listview>li.mm-opened.mm-vertical>a.mm-next,.mm-menu.mm-theme-black.mm-vertical .mm-listview>li.mm-opened>.mm-panel,.mm-menu.mm-theme-black.mm-vertical .mm-listview>li.mm-opened>a.mm-next {
	background: rgba(255,255,255,.2);
}

.mm-menu.mm-theme-black label.mm-check:before {
	border-color: rgba(255,255,255,.6);
}

.mm-menu.mm-pageshadow.mm-theme-black:after {
	content: none;
	display: none;
}

.mm-menu.mm-theme-black .mm-search input {
	background: rgba(255,255,255,.3);
	color: rgba(255,255,255,.6);
}

.mm-menu.mm-theme-black .mm-indexer a,.mm-menu.mm-theme-black .mm-noresultsmsg {
	color: rgba(255,255,255,.4);
}

.mm-menu.mm-hoverselected.mm-theme-black .mm-listview>li>a.mm-fullsubopen:hover+span,.mm-menu.mm-hoverselected.mm-theme-black .mm-listview>li>a:not(.mm-fullsubopen):hover,.mm-menu.mm-parentselected.mm-theme-black .mm-listview>li>a.mm-selected.mm-fullsubopen+a,.mm-menu.mm-parentselected.mm-theme-black .mm-listview>li>a.mm-selected.mm-fullsubopen+span,.mm-menu.mm-parentselected.mm-theme-black .mm-listview>li>a.mm-selected:not(.mm-fullsubopen) {
	background: rgba(255,255,255,.3);
}

.mm-menu.mm-theme-black label.mm-toggle {
	background: rgba(255,255,255,.2);
}

.mm-menu.mm-theme-black label.mm-toggle:before {
	background: #000;
}

.mm-menu.mm-theme-black input.mm-toggle:checked~label.mm-toggle {
	background: #4bd963;
}

.mm-menu .mm-tileview.mm-listview:after,.mm-menu.mm-tileview .mm-listview:after {
	content: '';
	display: block;
	clear: both;
}

.mm-menu .mm-tileview.mm-listview>li>.mm-next:after,.mm-menu .mm-tileview.mm-listview>li>.mm-next:before,.mm-menu.mm-tileview .mm-listview>li>.mm-next:after,.mm-menu.mm-tileview .mm-listview>li>.mm-next:before,.mm-menu.mm-tileview .mm-panel:after {
	content: none;
	display: none;
}

.mm-menu .mm-tileview.mm-listview>li,.mm-menu.mm-tileview .mm-listview>li {
	width: 50%;
	height: 0;
	padding: 50% 0 0;
	float: left;
	position: relative;
}

.mm-menu .mm-tileview.mm-listview>li:after,.mm-menu.mm-tileview .mm-listview>li:after {
	left: 0;
	top: 0;
	border-right-width: 1px;
	border-right-style: solid;
	z-index: -1;
}

.mm-menu .mm-tileview.mm-listview>li.mm-tile-xs,.mm-menu.mm-tileview .mm-listview>li.mm-tile-xs {
	width: 12.5%;
	padding-top: 12.5%;
}

.mm-menu .mm-tileview.mm-listview>li.mm-tile-s,.mm-menu.mm-tileview .mm-listview>li.mm-tile-s {
	width: 25%;
	padding-top: 25%;
}

.mm-menu .mm-tileview.mm-listview>li.mm-tile-l,.mm-menu.mm-tileview .mm-listview>li.mm-tile-l {
	width: 75%;
	padding-top: 75%;
}

.mm-menu .mm-tileview.mm-listview>li.mm-tile-xl,.mm-menu.mm-tileview .mm-listview>li.mm-tile-xl {
	width: 100%;
	padding-top: 100%;
}

.mm-menu .mm-tileview.mm-listview>li>a,.mm-menu .mm-tileview.mm-listview>li>span,.mm-menu.mm-tileview .mm-listview>li>a,.mm-menu.mm-tileview .mm-listview>li>span {
	line-height: 1px;
	text-align: center;
	padding: 50% 10px 0;
	margin: 0;
	position: absolute;
	top: 0;
	right: 1px;
	bottom: 1px;
	left: 0;
}

.mm-menu .mm-tileview.mm-listview>li>.mm-next,.mm-menu.mm-tileview .mm-listview>li>.mm-next {
	width: auto;
}

.mm-menu.mm-tileview .mm-panel {
	padding-left: 0;
	padding-right: 0;
}

.mm-menu.mm-tileview .mm-listview {
	margin: 0;
}

a:hover,a:active {
	text-decoration: none;
}

.kxit-head-user .dropdown > a {
	padding-top: 0px;
	padding-bottom: 0px;
	color: #999999;
	background: transparent;
}

.kxit-head-user .dropdown .dropdown-item>a {
	color: #9692a0;
}

.navbar-default .navbar-nav .open .dropdown-menu .dropdown-item i {
	color: black;
}

.navbar-default .navbar-nav .open .dropdown-menu .dropdown-item:hover,.navbar-default .navbar-nav .open .dropdown-menu .dropdown-item:hover i {
	color: #d71618!important;
}

.kxit-head-user .dropdown-menu {
	top: 70px;
	width: auto;
	text-align: left;
}

.kxit-head-user .dropdown-menu li {
	line-height: normal;
}

.kxit-head-user .dropdown-menu-footer {
	line-height: 35px;
}

.kxit-head-user .dropdown-menu-media {
	width: 360px;
}

.kxit-head-user .kxit-head-user-column .avatar img {
	max-height: 30px;
}

@media (min-width:768px) {
	.kxit-head-user > li:nth-child(2) {
		margin-left: 10px;
	}
}

@media (max-width:767px) {
	.kxit-head-user {
		text-align: left;
	}

	.kxit-head-user > li {
		display: block!important;
	}

	.kxit-head-user .dropdown > a {
		display: block;
		padding: 5px 15px;
	}

	.kxit-head-user > li:first-child {
		margin-bottom: 10px;
	}

	.head_nav_kxit .eco_topbar .denglubtn {
		overflow: hidden;
	}
}

@media (max-width:768px) {
	.head_nav_kxit .eco_header {
		display: none;
	}
}

.kxit-head-user-toggler.active i {
	display: none;
}

.kxit-head-user-toggler.active i:first-child {
	display: inline-block;
}

.kxit-head-user-toggler i {
	position: relative;
	top: -5px;
}

.kxit-head-user-toggler i:first-child {
	display: none!important;
}

.kxit-head-user li a.btn-outline {
	color: #999999;
	background-color: transparent;
	border-color: #999999;
	padding: 4px 15px;
	font-size: 13px;
}

.kxit-head-user li a.btn-outline:hover {
	border-color: #d71618;
	background-color: transparent;
	color: #d71618;
}

.kxit-head-user li a.btn-success {
	color: #999999;
	background-color: transparent;
	border-color: #999999;
	padding: 4px 15px;
	font-size: 13px;
}

.kxit-head-user li a.btn-success:hover {
	border-color: #d71618;
	background-color: transparent;
	color: #d71618;
}

.kxit-head-user-toggler i {
	color: #999999;
}

.head_nav_kxit.navbar-default .hamburger .hamburger-bar,.head_nav_kxit.navbar-default .hamburger:after,.head_nav_kxit.navbar-default .hamburger:before {
	background-color: #999999;
}

.met-langlist .btn-outline.btn-default {
	color: #999999;
	background-color: transparent;
	border: 0px;
	display: inline-block;
	width: 100%;
}

.met-langlist .btn-outline.btn-default:hover {
	color: #d71618;
}

.kxit-head-user .dropdown-menu .dropdown-item:hover i {
	color: #d71618!important;
	color: !important;
}

.kxit-head-user .dropdown-menu .dropdown-item:hover {
	background: !important;
	color: #d71618!important;
	color: !important;
}

.dropdown-menu>.dropdown-submenu>.dropdown-item:after {
	display: none;
}

.kxit-head.navbar-fixed-top {
	z-index: 999;
	position: relative;
}

.head_nav_kxit .eco_topbar .denglubtn {
	padding: 10px 0;
	margin: 0 10px;
	display: block;
}

.head_nav_kxit .eco_topbar .denglubtn .kxit-head-user .dropdown > a {
	height: 30px;
	line-height: 30px;
}

.head_nav_kxit .eco_topbar .denglubtn .kxit-head-user .dropdown .dropdown-menu {
	z-index: 1700;
	top: 45px;
}

.head_nav_kxit .nav-top {
	padding: 28px 0 26px 0;
	background-color: #ffffff;
	background-color:;
}

.head_nav_kxit .nav-top .navbar-header a.kxit-logo {
	height: 60px;
	margin: 0;
	margin-left: 0!important;
	padding: 0;
	display: block;
}

.head_nav_kxit .nav-top .navbar-header a.kxit-logo .vertical-align-middle {
	display: inline-block;
	max-width: 100%;
	font-size: 14px;
}

.head_nav_kxit .nav-top .navbar-header a.kxit-logo .vertical-align-middle img {
	max-height: 60px;
}

.head_nav_kxit .fullnav {
	background-color: #d71618;
	background:;
}

.head_nav_kxit .navbar-toggler {
	padding-top: 3.7rem;
	padding-bottom: 3.7rem;
}

.head_nav_kxit #kxit-head-user-collapse {
	background-color: transparent;
}

.head_nav_kxit .eco_header .top-info {
	display: inline-block;
	padding-left: 20px;
	text-align: left;
}

.head_nav_kxit .eco_header .top-info p {
	display: inline-block;
	font-size: 1.1em;
	color: #333333;
	margin: 0;
	line-height: 26px;
}

.head_nav_kxit .eco_header .top-info p a {
	color: #9692a0;
	font-size: 1em;
	text-decoration: none;
}

.head_nav_kxit .eco_header .top-info p.telbox>a {
	color: #333333;
}

.head_nav_kxit .eco_header .top-info p a:active,.head_nav_kxit .eco_header .top-info p a:focus,.head_nav_kxit .eco_header .top-info p a:hover {
	text-decoration: none;
}

.head_nav_kxit .eco_header .top-info p > span,.head_nav_kxit .eco_header .top-info p > span a {
	color: #9692a0;
}

.head_nav_kxit .eco_header .top-info .icon-box,.head_nav_kxit .eco_header .top-info .content-box {
	display: table-cell;
	vertical-align: middle;
}

.head_nav_kxit .eco_header .top-info .icon-box {
	padding-right: 20px;
	position: relative;
	display: table-cell;
	vertical-align: middle;
}

.head_nav_kxit .eco_header .top-info .icon-box span {
	font-size: 30px;
	padding-left: 25px;
	position: relative;
	color: #333333;
}

.head_nav_kxit .eco_header .top-info + .top-info .icon-box:before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -15px;
	width: 1px;
	height: 30px;
	background-color: #cccccc;
}

.head_nav_kxit .eco_header .top-info:first-child .icon-box span {
	border-left: none;
}

.head_nav_kxit .dropdown .dropdown-submenu .dropdown-menu {
	top: 0;
}

@media (max-width:767px) {
	.head_nav_kxit .eco_header {
		display: none;
	}
}

.head_nav_kxit .met-nav.met-nav-absolute {
	position: absolute;
	background: 0 0;
	top: 100%;
	right: 0;
	left: 0;
	z-index: 1500;
}

.head_nav_kxit .met-nav.nobanner {
	position: relative;
}

.head_nav_kxit .met-nav.stricky-fixed {
	position: fixed!important;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
	background: #212121;
}

.head_nav_kxit {
	background-color: transparent;
}

.head_nav_kxit .pull-left {
	float: left;
}

.head_nav_kxit .eco_topbar {
	background: #20262e;
}

.head_nav_kxit .eco_topbar p {
	font-size: 1.1em;
	color: #999999;
	line-height: 50px;
	margin: 0px;
	max-width: 40%;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.head_nav_kxit .eco_topbar .ecosocials .ulstyle .frombox .dropdown-menu {
	min-width: 240px;
}

.head_nav_kxit .eco_topbar .ecosocials>ul {
	margin: 0;
	position: relative;
	line-height: 50px;
}

.head_nav_kxit .eco_topbar .ecosocials>ul>li {
	display: inline-block;
	padding: 0 10px;
	line-height: 50px;
}

.head_nav_kxit .eco_topbar .ecosocials>ul>li a {
	transition: all .3s ease;
	-moz-transition: all .3s ease;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	text-decoration: none;
}

.head_nav_kxit .eco_topbar .ecosocials>ul>li i {
	color: #999999;
	display: block;
	background: 0 0;
	width: 30px;
	height: 30px;
	line-height: 30px;
	border: 1px solid #999999;
	border-radius: 50%;
	text-align: center;
	transition: all .3s ease;
	-moz-transition: all .3s ease;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
}

.head_nav_kxit .eco_topbar .ecosocials>ul>li i:focus,.head_nav_kxit .eco_topbar .ecosocials>ul>li i:hover {
	color: #d71618;
	border-color: #d71618;
}

.head_nav_kxit .dropdown-menu>.dropdown-submenu .dropdown-menu {
	left: 100%;
}

.head_nav_kxit .ecosocials button {
	border: 0;
	background: transparent;
	outline: 0;
	padding: 0px;
	cursor: pointer;
	z-index: 1;
}

.head_nav_kxit .ecosocials button.navbar-toggler {
	height: auto;
	line-height: normal;
	float: none;
}

.head_nav_kxit .ecosocials button.navbar-toggler i {
	top: 0;
}

.head_nav_kxit .ecosocials .sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0,0,0,0);
	border: 0;
}

.head_nav_kxit .met-nav {
	min-height: 65px;
	margin-bottom: 0;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	-o-box-shadow: none;
	-ms-box-shadow: none;
	box-shadow: none;
	position: relative;
	z-index: 1601;
}

.head_nav_kxit .ecosocials ul.dropdown-menu {
	z-index: 9999;
	margin-top: 5px;
	-webkit-box-shadow: 0 3px 12px rgba(0,0,0,.05);
	box-shadow: 0 3px 12px rgba(0,0,0,.05);
	-webkit-transition: .25s;
	-o-transition: .25s;
	transition: .25s;
}

.head_nav_kxit .ecosocials ul.dropdown-menu.animate li {
	-webkit-animation-name: slide-left;
	-o-animation-name: slide-left;
	animation-name: slide-left;
	-webkit-animation-duration: .5s;
	-o-animation-duration: .5s;
	animation-duration: .5s;
	-webkit-animation-fill-mode: both;
	-o-animation-fill-mode: both;
	animation-fill-mode: both;
	margin: 2px 0;
}

.head_nav_kxit .ecosocials .dropdown-menu.animate>li:nth-child(1) {
	-webkit-animation-delay: .02s;
	-o-animation-delay: .02s;
	animation-delay: .02s;
}

.head_nav_kxit .met-nav .find-advisor:hover,.head_nav_kxit .met-nav .find-advisor:hover:before {
	background: #ffffff;
}

.head_nav_kxit .met-nav .find-advisor:hover a.advisor:after {
	background: #ffffff;
}

.head_nav_kxit .met-nav .find-advisor:hover a.advisor {
	color: #333333;
}

.head_nav_kxit .ecosocials .dropdown-menu.animate.animate-reverse>li:nth-last-child(1) {
	-webkit-animation-delay: .02s;
	-o-animation-delay: .02s;
	animation-delay: .02s;
}

.head_nav_kxit .ecosocials ul.dropdown-menu.search input {
	background: transparent;
	border: 1px solid #999999;
	color: #ffffff;
	padding-left: 10px;
	margin-right: 10px;
	height: 30px;
	line-height: 28px;
	font-size: 14px;
	border-radius: 0;
	width: 75%;
	margin: 15px 0;
}

.head_nav_kxit .ecosocials ul.dropdown-menu.search input::-webkit-input-placeholder {
	color: #ffffff;
}

.head_nav_kxit .ecosocials ul.dropdown-menu.search input:focus {
	outline: none;
}

.head_nav_kxit .ecosocials ul.dropdown-menu.search {
	background: #20262e;
	border-color: #999999;
	padding: 0 15px;
}

.head_nav_kxit .met-nav .container {
	background: #212121;
	position: relative;
}

.head_nav_kxit .met-nav .container:before {
	position: absolute;
	top: 5px;
	left: 5px;
	right: 5px;
	bottom: 5px;
	content: '';
	display: block;
	border: 1px solid #ffffff;
	opacity: .25;
	z-index: 1;
}

.head_nav_kxit .met-nav .navbar-header {
	float: left;
}

#mobileNav {
	z-index: 9999999;
}

#mobileNav .mm-panels {
	background-color: #ffffff;
}

#mobileNav .mm-listview>li>a,#mobileNav .mm-listview>li>span {
	color: #666666;
}

#mobileNav .mm-listview>li.active>a,#mobileNav .mm-listview>li.active>span {
	color: #d71618;
	color:;
}

.mm-menu.mm-theme-white .mm-navbar a,.mm-menu.mm-theme-white .mm-navbar>*,.mm-menu.mm-theme-white em.mm-counter {
	color: #b2b2b2;
}

.mm-navbar {
	border-color: #b2b2b2;
}

.mm-listview>li {
	border-color: #b2b2b2;
}

.mm-menu.mm-theme-white .mm-listview>li .mm-arrow:after,.mm-menu.mm-theme-white .mm-listview>li .mm-next:after {
	border-color: #b2b2b2;
}

.mm-menu.mm-theme-white .mm-btn:after,.mm-menu.mm-theme-white .mm-btn:before {
	border-color: #b2b2b2;
}

.head_nav_kxit .met-nav .navbar-header .navbar-toggle {
	margin-left: 0;
	float: left;
	z-index: 2;
	outline: none;
}

.head_nav_kxit .met-nav .navbar-toggle {
	height: 65px;
}

.head_nav_kxit .met-nav .navbar-header .navbar-toggle .fa {
	color: #ffffff;
	font-size: 24px;
	cursor: pointer;
}

.head_nav_kxit .navbar-toggle {
	position: relative;
	float: right;
	padding: 9px 10px;
	margin-top: 16px;
	margin-right: 15px;
	margin-bottom: 16px;
	background-color: transparent;
	background-image: none;
	border: 1px solid transparent;
	border-radius: 3px;
}

.head_nav_kxit .navbar-toggle {
	height: 66px;
	padding: 22px 15px;
	margin-top: 16px;
	margin-top: 0;
	margin-bottom: 16px;
	margin-bottom: 0;
	line-height: 22px;
	background: 0 0!important;
	-webkit-transition: color .25s linear;
	-o-transition: color .25s linear;
	transition: color .25s linear;
}

.head_nav_kxit .input-search .form-group {
	margin-bottom: 0;
}

.head_nav_kxit .met-nav .find-advisor {
	background: #d71618;
	background: #d71618;
	position: absolute;
	bottom: 0;
	right: 5px;
	margin-right: -5px;
	transition: all .3s ease;
	-moz-transition: all .3s ease;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
}

.head_nav_kxit .met-nav .find-advisor:before {
	content: '';
	width: 95px;
	height: 100%;
	position: absolute;
	top: 0;
	left: -42px;
	-webkit-transform: skewX(-45deg);
	-moz-transform: skewX(-45deg);
	-o-transform: skewX(-45deg);
	-ms-transform: skewX(-45deg);
	transform: skewX(-45deg);
	background: #d71618;
	background: #d71618;
	transition: all .3s ease;
	-moz-transition: all .3s ease;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
}

.head_nav_kxit .met-nav .find-advisor a.advisor {
	font-weight: 700;
	font-size: 1.3em;
	color: #ffffff;
	text-transform: uppercase;
	display: block;
	padding: 0 30px 0 17px;
	height: 65px;
	line-height: 65px;
	position: relative;
	z-index: 10;
	transition: all .3s ease;
	-moz-transition: all .3s ease;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
}

.head_nav_kxit .met-nav .find-advisor a.advisor:after {
	content: '';
	position: absolute;
	top: 0;
	left: 100%;
	width: 2000px;
	background: #d71618;
	background: #d71618;
	height: 100%;
	z-index: -1;
	transition: background .3s ease;
	-moz-transition: background .3s ease;
	-webkit-transition: background .3s ease;
	-o-transition: background .3s ease;
}

.head_nav_kxit .met-nav.met-nav-absolute a.advisor:after {
	width: 0;
}

.head_nav_kxit .met-nav.stricky-fixed a.advisor:after {
	width: 2000px;
}

.head_nav_kxit .met-nav .dropdown-menu>li>a,.met-nav .nav>li>a {
	color: #ffffff!important;
	font-weight: 700;
	font-size: 1.1em;
	display: block;
	z-index: 2;
	transition: all .3s ease;
	-moz-transition: all .3s ease;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	padding: 0 15px;
}

.head_nav_kxit .met-nav .row {
	position: relative;
}

.head_nav_kxit .met-nav .navbar-collapse {
	float: left;
	border-top: 0;
	position: relative;
}

.head_nav_kxit .met-nav .dropdown.open>a,.head_nav_kxit .met-nav .nav li a.active,.head_nav_kxit .met-nav .nav>li>a:focus,.head_nav_kxit .met-nav .nav>li>a:hover {
	background: transparent!important;
	color: #d71618!important;
	color: !important;
}

.head_nav_kxit .met-nav .dropdown-submenu a.active span,.head_nav_kxit .met-nav .dropdown-submenu a:hover span,.head_nav_kxit .met-nav .dropdown-menu .open a:hover span {
	background: transparent!important;
	color: #d71618!important;
	color: !important;
}

.head_nav_kxit .met-nav a.link:hover span {
	color: #d71618!important;
	color: !important;
}

.head_nav_kxit .dropdown-menu {
	-webkit-box-shadow: 0 3px 12px rgba(0,0,0,.05);
	box-shadow: 0 3px 12px rgba(0,0,0,.05);
}

.head_nav_kxit .met-nav .nav>li>a {
	position: relative;
}

#mm-blocker {
	z-index: 1600!important;
}

.head_nav_kxit .eco_topbar .ecosocials .btn-outline.btn-default.active,.head_nav_kxit .eco_topbar .ecosocials .btn-outline.btn-default:active,.head_nav_kxit .eco_topbar .ecosocials .btn-outline.btn-default:focus,.head_nav_kxit .eco_topbar .ecosocials .btn-outline.btn-default:hover,.head_nav_kxit .eco_topbar .ecosocials .open>.btn-outline.btn-default.dropdown-toggle {
	background-color: transparent;
}

@media (max-width:1199px) and (min-width:992px) {
	.head_nav_kxit .met-nav .nav>li:before {
		top: 25px;
		bottom: 25px;
	}

	.head_nav_kxit .met-nav .nav>li>a {
		padding: 0 10px;
		font-size: 14px;
	}

	.head_nav_kxit .met-nav .nav>li>a {
		padding: 0 10px;
		font-size: 14px;
	}

	.head_nav_kxit .met-nav .nav>li>a {
		height: 65px;
		line-height: 65px;
	}
}

@media (min-width:768px) and (max-width:1023px) {
	.head_nav_kxit .container {
		width: 100%;
	}

	.head_nav_kxit .eco_topbar {
		padding: 0 10px;
	}
}

@media (min-width:768px) {
	.head_nav_kxit .met-nav.navbar-fixed-top .navbar-collapse {
		padding: 0 15px;
	}

	.head_nav_kxit .met-nav .nav>li>a {
		height: 65px;
		line-height: 65px;
	}

	.head_nav_kxit .met-nav .nav-langlist>:first-child {
		margin-right: 120px;
	}

	.head_nav_kxit .met-nav .nav {
		margin: 0 10px 0 20px;
	}

	.head_nav_kxit .navbar-nav>li {
		float: left;
		position: relative;
		display: block;
	}

	.head_nav_kxit .navbar-right .dropdown-menu {
		right: auto;
		left: 0;
		overflow: hidden;
	}

	.head_nav_kxit .met-nav .dropdown-menu {
		top: 65px;
		transition: all .4s cubic-bezier(.84,.35,.39,.74);
		-moz-transition: all .4s cubic-bezier(.84,.35,.39,.74);
		-webkit-transition: all .4s cubic-bezier(.84,.35,.39,.74);
		-o-transition: all .4s cubic-bezier(.84,.35,.39,.74);
		z-index: 9999;
		padding: 0;
		border: 0;
	}

	.head_nav_kxit .met-nav .navbar-nav>li.ecodropdown>ul {
		min-width: 200px;
		top: 200%;
		visibility: hidden;
		opacity: 0;
		display: block;
		padding-top: 10px;
		background: 0 0;
		margin: 0;
		white-space: nowrap;
	}

	.head_nav_kxit .met-nav .navbar-nav>li.ecodropdown:hover>ul {
		visibility: visible;
		opacity: 1;
		top: 100%;
	}

	.head_nav_kxit .met-nav .nav>li:before {
		content: '';
		position: absolute;
		top: 20px;
		left: 5px;
		right: 1px;
		bottom: 20px;
		display: block;
		border-right: 1px dashed #fff;
		opacity: .4;
	}

	.head_nav_kxit .met-nav .nav>li:last-child:before {
		border-right: 0;
	}

	.head_nav_kxit .met-nav .navbar-collapse.collapse {
		display: block!important;
		height: auto!important;
		padding-bottom: 0;
		overflow: visible!important;
	}

	.head_nav_kxit .met-nav .dropdown.ecoopen>a {
		color: #d71618!important;
		color: !important;
	}

	.head_nav_kxit .met-nav .dropdown-menu li a {
		border-bottom: 1px solid #383838;
		padding: 10px 20px;
		font-weight: 500;
		font-size: 1em;
	}

	.head_nav_kxit .met-nav .dropdown-menu li {
		background: #212121;
		margin: transparent;
	}

	.head_nav_kxit .met-nav .dropdown-menu>li>a:hover {
		color: #d71618!important;
		color: !important;
		background: transparent;
	}

	.head_nav_kxit .met-nav .fa-angle-right {
		padding-right: 10px;
	}

	.head_nav_kxit .dropdown-menu>.dropdown-submenu>a:after {
		position: absolute;
		right: 10px;
		display: inline-block;
		width: 0;
		height: 0;
		margin-top: 6px;
		vertical-align: middle;
		content: '';
		border-top: 4px solid transparent;
		border-bottom: 4px solid transparent;
		border-left: 4px dashed;
	}

	.head_nav_kxit .met-nav .navbar-nav>li.ecodropdown>ul>li>ul {
		left: 120%;
		visibility: hidden;
		opacity: 0;
		display: block!important;
		border-radius: 0;
	}

	.head_nav_kxit .met-nav .navbar-nav>li.ecodropdown>ul>li.dropdown-submenu:hover>ul {
		visibility: visible;
		opacity: 1;
		left: 101%;
	}

	.head_nav_kxit .met-nav .dropdown-menu.overflow-visible .dropdown-submenu:hover .dropdown-menu {
		display: table!important;
	}
}

@media (min-width:991px) {
	.head_nav_kxit .navbar-toggle {
		display: none;
	}
}

@media (max-width:991px) {
	.head_nav_kxit .nav-top .navbar-header {
		float: none!important;
		text-align: center;
	}

	.head_nav_kxit .eco_header {
		float: none!important;
		text-align: center;
	}

	.head_nav_kxit .nav-top {
		height: auto;
	}

	.head_nav_kxit .nav-top .navbar-header a.kxit-logo {
	}

	.head_nav_kxit .nav-top {
		padding: 30px 0 20px 0;
	}

	.head_nav_kxit .met-nav .navbar-collapse.collapse {
		display: none!important;
	}

	.head_nav_kxit .met-nav.met-nav-absolute {
		position: relative;
	}
}

@media (max-width:767px) {
	.head_nav_kxit .eco_topbar.mobilehide {
		display: none;
	}

	.head_nav_kxit .nav-top {
		padding: 5px 0 5px 0;
	}

	.head_nav_kxit .nav-top .navbar-header a.kxit-logo {
		margin-bottom: 0;
	}

	.head_nav_kxit .eco_topbar .pull-left {
		float: none;
		text-align: center;
	}

	.head_nav_kxit .eco_topbar .pull-right {
		float: none;
		text-align: center;
	}

	.head_nav_kxit .eco_topbar .denglubtn {
		padding: 0;
		margin: 0;
	}

	.head_nav_kxit .eco_topbar p {
		margin: 0 auto;
	}
}

@-webkit-keyframes slideInDown {
	from {
		-webkit-transform: translate3d(0,-100%,0);
		transform: translate3d(0,-100%,0);
		visibility: visible;
	}

	to {
		-webkit-transform: translate3d(0,0,0);
		transform: translate3d(0,0,0);
	}
}

@keyframes slideInDown {
	from {
		-webkit-transform: translate3d(0,-100%,0);
		transform: translate3d(0,-100%,0);
		visibility: visible;
	}

	to {
		-webkit-transform: translate3d(0,0,0);
		transform: translate3d(0,0,0);
	}
}

.animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.slideInDown {
	-webkit-animation-name: slideInDown;
	animation-name: slideInDown;
}

#met-langlist-modal .modal-content .modal-body {
	padding: 40px 40px 20px;
}

#met-langlist-modal .modal-content .modal-body .close {
	position: absolute;
	right: 10px;
	top: 0;
	font-size: 40px;
}

.ecofootbg .met-langlist button {
	border-color: #797a7c!important;
	color: #797a7c!important;
	background: 0 0!important;
}

#met-langlist-modal .modal-content a.btn {
	padding: 0 15px;
	border: none;
	font-size: 16px;
	height: 50px;
	line-height: 50px;
}

.ecofootbg .met-langlist .modal-content a.btn {
	border-color: #797a7c!important;
	color: #797a7c!important;
	background: 0 0!important;
}

.banner_kxit {
	width: 100%;
	height: auto;
	display: table;
	min-height: 50px;
}

.banner_kxit.fixedheight {
	display: -moz-deck;
}

.banner_kxit.fixedheight .slick-slide {
	height: 100%;
}

.banner_kxit.fixedheight .slick-slide img {
	width: auto;
	height: 100%;
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
}

@media screen\0 {
	.banner_kxit.fixedheight .slick-slide img {
		left: 0;
		width: 100%;
	}
}

.banner_kxit.banner-ny-h {
	height: 150px;
}

@media (max-width:991px) {
	.banner_kxit.banner-ny-h {
		height: 100px;
	}
}

.banner_kxit .slick-slide {
	display: block;
	width: 100%;
}

.banner_kxit .slick-slide img {
	display: none;
}

.banner_kxit .slick-slide:nth-child(1) img {
	display: block!important;
	height: auto;
}

.banner_kxit.slick-slider {
	display: block;
}

.banner_kxit:hover .slick-arrow {
	display: block!important;
}

.banner_kxit .slick-list,.banner_kxit .slick-track {
	height: 100%;
}

.banner_kxit .slick-prev:before,.banner_kxit .slick-next:before {
	display: none;
}

.banner_kxit .slick-slide {
	height: auto;
	position: relative;
	overflow: hidden;
}

.banner_kxit .slick-slide .banner-text>a {
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
}

.banner_kxit .slick-slide img {
	width: 100%;
}

.banner_kxit .slick-slide img[data-lazy] {
	max-height: 150px;
}

.banner_kxit .slick-arrow {
	top: 50%;
	text-align: center;
	border-radius: 99px;
	z-index: 1;
	background: rgba(255,255,255,0.6);
	width: 70px;
	height: auto;
	display: none!important;
}

.banner_kxit .slick-arrow.slick-prev {
	left: 5%;
}

@media screen\0 {
	.banner_kxit .slick-arrow.slick-prev {
		background: rgba(0,0,0,.001);
	}
}

.banner_kxit .slick-arrow.slick-next {
	right: 5%;
}

@media screen\0 {
	.banner_kxit .slick-arrow.slick-next {
		background: rgba(0,0,0,.001);
	}
}

.banner_kxit .slick-arrow i {
	font-size: 70px;
	color: #fff!important;
}

.banner_kxit .slick-dots {
	margin: 0;
	bottom: 20px;
}

.banner_kxit .slick-dots li {
	margin: 0 2px;
}

@media (max-width:767px) {
	.banner_kxit .slick-dots {
		bottom: 5px;
	}

	.banner_kxit .slick-dots li {
		width: 15px;
		height: 15px;
		margin: 0;
	}
}

.banner_kxit .banner-text {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 2;
}

.banner_kxit .banner-text .container {
	height: 100%;
	display: table;
	text-align: center;
}

.banner_kxit .banner-text .container .banner-text-con {
	display: table-cell;
	vertical-align: middle;
}

.banner_kxit .banner-text.p-0 .container {
	text-align: left;
}

.banner_kxit .banner-text.p-0 .container .banner-text-con>div {
	width: 70%;
	float: left;
}

.banner_kxit .banner-text.p-1 .container {
	text-align: right;
}

.banner_kxit .banner-text.p-1 .container .banner-text-con>div {
	width: 70%;
	float: right;
}

.banner_kxit .banner-text.p-2 {
	top: 10%;
}

.banner_kxit .banner-text.p-2 .container .banner-text-con {
	vertical-align: top;
}

.banner_kxit .banner-text.p-3 {
	top: auto;
	bottom: 10%;
}

.banner_kxit .banner-text.p-3 .container .banner-text-con {
	vertical-align: bottom;
}

.banner_kxit .banner-text.p-2 .container .banner-text-con>div,.banner_kxit .banner-text.p-3 .container .banner-text-con>div,.banner_kxit .banner-text.p-4 .container .banner-text-con>div {
	width: 70%;
	display: inline-block;
}

.banner_kxit .banner-text h4,.banner_kxit .banner-text p {
	color: #fff;
}

.banner_kxit .banner-text h4 {
	margin: 0;
	font-size: 30px;
}

.banner_kxit .banner-text p {
	font-size: 36px;
	margin: 20px 0 0;
	text-shadow: none;
}

.banner_kxit .banner-text .banner-btn {
	position: relative;
	z-index: 2;
}

.banner_kxit .banner-text .banner-btn .btn {
	line-height: 2.5;
}

@media (max-width:991px) {
	.banner_kxit .banner-text h4 {
		font-size: 30px;
	}

	.banner_kxit .banner-text p {
		font-size: 20px;
	}
}

@media (max-width:767px) {
	.banner_kxit .banner-text .container {
		width: 100%;
	}

	.banner_kxit .banner-text.p-4 .container .banner-text-con {
		width: 100%;
	}

	.banner_kxit .banner-text h4 {
		font-size: 24px;
	}

	.banner_kxit .banner-text p {
		margin-top: 15px;
		font-size: 16px;
	}

	.banner_kxit .banner-text .banner-btn {
		margin-top: 10px;
	}

	.banner_kxit .banner-text .banner-btn .btn {
		line-height: 2;
		margin-left: 5px!important;
		margin-right: 5px!important;
		font-size: 14px;
	}
}

@media (max-width:479px) {
	.banner_kxit .banner-text h4 {
		font-size: 16px;
	}

	.banner_kxit .banner-text p {
		margin-top: 10px;
		font-size: 14px;
	}
}

.banner_kxit-ny {
	background: #ffffff;
	background:;
	padding: 40px 0;
}

.banner_kxit-ny h1 {
	margin: 0px;
	font-size: 50px;
	text-shadow: none;
	color: #fff;
	font-weight: 300;
}

.banner_kxit-ny h3 {
	margin: 0px;
	margin-top: 10px;
	font-size: 20px;
	text-shadow: none;
	color: #fff;
	font-weight: 300;
}

.banner_kxit .help {
	width: 400px;
	margin: 20px auto;
}

.banner_kxit .banner-text.p-4 .container .banner-text-con .form-group {
	width: 100%;
}

@media (max-width:1200px) {
	.banner_kxit .help {
		display: none;
	}
}

.banner_kxit .help_center {
	padding: 8px 15px;
	width: 100%;
	outline: 0;
	font-size: 16px;
	font-weight: 200;
	height: 44px;
	border-radius: 3px!important;
	border: none;
	background: #fafbfd;
	box-shadow: 0 4px 12px 0 rgba(52,63,75,0.06),0 10px 40px 0 rgba(52,63,75,0.08),0 0 0 1px rgba(52,63,75,0.02);
}

@media (max-width:767px) {
	.banner_kxit .help_center {
		height: 30px;
		line-height: 30px;
		padding: 0px 15px;
	}
}

.link_kxit_11_2_4 {
	background-color:;
}

.link_kxit_11_2_4 .breadcrumb-item {
	float: none;
	display: inline-block;
}

.link_kxit_11_2_4 .breadcrumb-item a {
	color: #999999;
	color:;
	transition: color 0.2s ease-out;
	font-size: 12px;
}

.link_kxit_11_2_4 .breadcrumb-item a:hover {
	color: #d71618;
	color:;
}

.link_kxit_11_2_4 .breadcrumb-item+.breadcrumb-item::before {
	color: #999999;
	color:;
}

.link_kxit_11_2_4 .breadcrumb-item:nth-child(1) {
	color: #000000;
	color:;
}

.link_kxit_11_2_4 .container {
	border-bottom: 1px solid #eeeeee;
}

.link_kxit_11_2_4 {
	border-top: 1px solid #f0f2f5;
}

@media (max-width:767px) {
	.link_kxit_11_2_4 .container {
		text-align: left;
	}
}

.foot_nav h2,.foot_nav h1,.foot_nav p,.foot_nav ul,.foot_nav li,.foot_nav dl,.foot_nav dd {
	margin: 0;
	padding: 0;
}

.foot_nav ul li {
	list-style: none;
}

.foot_nav .text-center {
	text-align: center;
}

.foot_nav .foot-nav-list li {
	float: left;
}

.foot_nav .foot-nav-list {
	display: inline-block;
	position: relative;
	left: 50%;
	top: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	display: flex;
}

.foot_nav .nav-item {
	flex-grow: 1;
}

.foot_nav .cnavlist {
}

.foot_nav .navlist {
	display: inline-block;
}

.foot_nav .foot-msg {
	text-align: center;
}

.foot_nav .transition {
	transition: .2s;
	-webkit-transition: .2s;
	-moz-transition: .2s;
	-ms-transition: .2s;
	-o-transition: .2s;
}

.foot_nav .middle {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
}

.foot_nav .full-img img {
	display: block;
	width: 100%;
}

.foot_nav .float-left {
	float: left;
}

.foot_nav .float-right {
	float: right;
}

.foot_nav {
	position: relative;
	width: 100%;
	height: auto!important;
	background-color: #222325;

}

.foot_nav .container {
	position: relative!important;
	top: 0!important;
	transform: translateY(0)!important;
	-o-transform: translateY(0)!important;
	-ms-transform: translateY(0)!important;
	-moz-transform: translateY(0)!important;
	-webkit-transform: translateY(0)!important;
}

.foot_nav .foot-nav-list .nav-f .right {
	display: inline-block;
	width: 150px;
	padding: 20px;
	color: #999999;
	color: #999999;
}

.foot_nav .foot-nav-list .contact-wrap {
	padding-right: 10px;
	border-left: 1px solid #535353;
	border-right: 1px solid #000000;
	padding: 40px;
	min-height: 260px;
}

.foot_nav .foot-nav-list .nav-t {
	border-left: 1px solid #535353;
	padding: 40px;
	min-height: 260px;
	width: 33.33%;
}

.foot_nav .foot-nav-list .nav-f {
	border-right: 1px solid #000000;
	padding: 40px;
	min-height: 260px;
}

.foot_nav .foot-nav-list .nav-item .title,.nav-t .title {
	font-size: 15px;
	color: #000000;
	color: #ffffff;
	font-weight: normal;
	margin: 0 0 10px;
	font-size: 16px;
	font-weight: bold;
}

.foot_nav .nav-t {
	padding: 0;
}

.foot_nav .ctitle {
	padding-right: 15px;
	padding-bottom: 10px;
	color: #999999;
	color: #999999;
	margin-bottom: 15px;
	display: block;
}

.foot_nav .ctitle:hover {
	color: #d71618;
	color:;
}

.foot_nav .foot-nav-list .nav-hide {
	margin-bottom: 15px;
	width: 25%;
}

.foot_nav .foot-nav-list .title:before {
	content: '';
	position: absolute;
	left: 40px;
	top: 75px;
	height: 2px;
	width: 20px;
	background: #d71618;
	background:;
}

.foot_nav .contact-wrap {
	display: block;
	margin: 0 auto;
}

.foot_nav .foot-nav-list .nav-item dl dd {
	padding: 5px 0;
	opacity: 0.7;
	white-space: nowrap;
	overflow: hidden;
}

.foot_nav .foot-nav-list .nav-item a:hover span {
	color: #d71618!important;
	color: !important;
}

.foot_nav .foot-nav-list .nav-item dl dd:last-child {
	padding-bottom: 0;
}

.foot_nav .foot-nav-list .nav-item a {
	cursor: pointer;
	display: inline-block;
	color: #999999;
	color: #999999;
}

.foot_nav .code-img {
	padding-top: 5px;
	width: 100px;
	height: 100px;
	float: left;
}

.foot_nav .tel-msg {
	margin-bottom: 0;
	font-weight: bold!important;
	line-height: 1.2;
	font-size: 22px!important;
	color: #d71618;
	color:;
}

.foot_nav .time-text {
	color: #999999;
	color: #999999;
	font-size: 14px;
	line-height: 26px;
}

.foot_nav .share {
	position: relative;
	display: inline-block;
	font-size: 20px;
}

.foot_nav .share .icon {
	padding: 5px;
	background: #505050;
	color: #fff;
	color: #ffffff;
	font-size: 22px;
	margin-right: 10px;
	border-radius: 50%;
	padding: 15px;
	margin-bottom: 10px;
}

.foot_nav .share .icon:hover {
	background: #d71618;
	background:;
	color: #fff!important;
}

.foot_nav .foot-nav-list .title {
	padding-bottom: 20px;
}

.foot_nav .share .icon:first-child:hover + .wechat-code,.foot_nav .wechat-code:hover {
	display: block;
}

.foot_nav .wechat-code {
	display: none;
	position: absolute;
	left: -24px;
	bottom: 110%;
	padding: 6px;
	width: 100px;
	background-color: #ffffff;
	background-color:;
	box-shadow: 0 0 5px rgba(0,0,0,.4);
}

.foot_nav .foot-msg {
	padding: 15px 0;
	background-color: #ffffff;
	background-color: #212121;
}

.foot_nav .foot-msg,.foot_nav .foot-msg a,.breadcrumb-item+.breadcrumb-item::before {
	color: #999999;
	color: #999999;
}

.foot_nav_bottom {
	display: none;
}

.foot_nav_bottom.iskeshi {
	display: block;
}

@media screen and (min-width:1025px) {
	.foot_nav.on,.swiper-sub >.swiper-wrapper>.swiper-slide.foot_nav.on {
		padding-left: 288px!important;
	}
}

@media(max-width:1024px) {
	.foot_nav .foot-nav-list .nav-f .right {
		width: 130px;
	}
}

@media screen and (min-width:992px) {
	.foot_nav .foot-nav-list li {
		display: inline-block;
	}

	.foot_nav .foot-left,.foot_nav .foot-right {
		text-align: center;
	}

	.nav-fixed,.close-btn2 {
		display: none;
	}

	.foot_nav .link-title {
		float: left;
	}

	.foot_nav .breadcrumb {
		float: left;
	}
}

@media screen and (max-width:991px) {
	.foot_nav .foot-nav-list li {
		display: inline-block;
	}

	.foot_nav .nav-hide {
		display: none;
	}

	.foot_nav .nav-item {
		text-align: center;
	}

	.foot_nav .code-img {
		margin: 0 auto;
	}

	.foot_nav .foot-nav-list .nav-t {
		padding: 40px 0 0 40px;
	}

	.foot_nav .foot-nav-list .nav-f {
		text-align: left;
	}

	.foot_nav .foot-nav-list .nav-f .right {
		padding: 20px 0;
	}

	.foot_nav .foot-nav-list .nav-item .title {
		text-align: left;
	}

	.foot_nav .time-wrap {
		text-align: left;
	}

	.foot_nav .ctitle {
		padding-bottom: 0;
	}

	.foot_nav .share .icon {
		font-size: 16px;
		margin: 10px 0 10px;
		padding: 10px;
	}

	.foot_nav .foot-msg {
		text-align: center;
	}

	.foot_nav .breadcrumb {
		display: inline-block;
	}

	.close-btn2 {
		position: absolute;
		top: 10%;
		right: 0%;
		padding: 5px 10px;
		background-color: #ffffff;
		background-color:;
		border-top-left-radius: 2px;
		border-bottom-left-radius: 2px;
		color: #000000;
		color:;
		text-align: center;
	}

	.close-btn2 span {
		display: inline-block;
		margin-left: 5px;
		font-size: 14px;
	}

	.nav-fixed {
		display: none;
		position: fixed;
		top: 0;
		right: 0;
		z-index: 9999;
		padding-left: 25%;
		box-sizing: border-box;
		width: 100%;
		height: 100%;
		background-color: rgba(0,0,0,.4);
	}

	.close-btn {
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
		-moz-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		-o-transform: translateY(-50%);
		right: 75%;
		padding: 15px 10px;
		background-color: #ffffff;
		background-color:;
		border-top-left-radius: 2px;
		border-bottom-left-radius: 2px;
		color: #000000;
		color:;
	}

	.nav-fixed .list-group {
		margin-bottom: 0;
		transform: translateX(75%);
		-webkit-transform: translateX(75%);
		transition: .2s;
		-webkit-transition: .2s;
	}

	.nav-fixed.active .list-group {
		transform: translateX(0);
		-webkit-transform: translateX(0);
	}

	.nav-fixed .list-group-item {
		border-radius: 0;
	}

	.list-one {
		width: 100%;
		height: 100%;
		background-color: #ffffff;
		background-color:;
		overflow: scroll;
		-webkit-overflow-scrolling: touch;
	}

	.list-one .list-group-item {
		margin-bottom: 0;
		border: none;
		border-bottom: 1px solid;
		border-color:;
	}

	.list-one .list-group-item.one-list {
		background-color: #ffffff;
		background-color:;
		color: #000000;
		color:;
	}

	.list-two .list-group-item {
		padding-left: 30px;
		background-color: #ffffff;
		background-color:;
		color: #999999;
		color:;
	}

	.foot_nav .link-img.link-logo li:first-child {
		width: 100%;
	}

	.foot_nav .link-title {
		display: inline-block;
		width: 100%;
	}

	.foot_nav .breadcrumb {
		margin-top: 5px;
		max-width: 90%;
		overflow-y: hidden;
	}

	.foot_nav .share {
		text-align: left;
		display: inherit;
	}

	.foot_nav .cnavlist {
		text-align: left;
	}
}

@media screen and (max-width:767px) {
	.foot_nav_bottom {
		display: block;
	}

	.foot_nav .foot-nav-list .nav-item .title {
		margin-bottom: 5px;
	}

	.foot_nav_bottom.iskeshi {
		display: block;
	}

	.foot_nav .foot-nav-list .nav-t,.foot_nav .foot-nav-list .contact-wrap,.foot_nav .foot-nav-list .nav-f {
		border: none;
		padding: 20px;
		min-height: inherit;
	}

	.foot_nav .foot-nav-list .title:before {
		background: transparent;
	}

	.foot_nav .foot-nav-list .title {
		padding-bottom: 0;
	}

	.foot_nav .foot-nav-list .nav-f .right {
		padding: 20px 5px;
	}

	.foot_nav .share {
		width: 100%;
		text-align: left;
	}

	.foot_nav .foot-nav-list {
		display: inherit;
	}

	.foot_nav .cnavlist {
		text-align: left;
	}

	.foot_nav .foot-nav-list .nav-t {
		width: 100%;
	}
}

.foot_nav_bottom {
	overflow: hidden;
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 999;
	width: 100%;
}

.foot_nav_bottom a.item {
	color:;
	padding: 5px 0;
	display: inline-block;
}

.foot_nav_bottom a.item i {
	font-size: 16px;
	display: block;
	color:;
}

.foot_nav_bottom a.item span {
	color:;
}

.foot_nav_bottom.iskeshi {
	display: block;
}

.foot_nav_bottom .main {
	display: flex;
}

.foot_nav_bottom .main>div {
	flex: 1;
}

.back_top_kxit_36_1_5.cd-top {
	display: inline-block;
	height: 40px;
	width: 40px;
	z-index: 9;
	position: fixed;
	bottom: 70px;
	right: 10px;
	color: #000000;
	color:;
	border-radius: 50%;
	font-size: 26px;
	text-align: center;
	line-height: 32px;
	border-color: #000000;
	border-color:;
	border-width: 2px;
	border-style: solid;
	box-shadow: 0 0 10px rgba(0,0,0,0.05);
	overflow: hidden;
	white-space: nowrap;
	background-color: #ffffff;
	background-color:;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: opacity .3s 0s,visibility 0s .3s;
	-moz-transition: opacity .3s 0s,visibility 0s .3s;
	transition: opacity .3s 0s,visibility 0s .3s;
	-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;
}

.back_top_kxit_36_1_5.cd-top.cd-is-visible,.back_top_kxit_36_1_5.cd-top.cd-fade-out,.no-touch .cd-top:hover {
	-webkit-transition: opacity .3s 0s,visibility 0s 0s;
	-moz-transition: opacity .3s 0s,visibility 0s 0s;
	-o-transition: opacity .3s 0s,visibility 0s 0s;
	-ms-transition: opacity .3s 0s,visibility 0s 0s;
	transition: opacity .3s 0s,visibility 0s 0s;
}

.back_top_kxit_36_1_5.cd-top.cd-is-visible {
	visibility: visible;
	opacity: 0.5;
}

.back_top_kxit_36_1_5.cd-top.cd-fade-out {
	opacity: .5;
}

.back_top_kxit_36_1_5.cd-top:hover {
	background-color: #d71618;
	background-color:;
	opacity: 1;
	color: #999999;
	color: #ffffff;
	border-color: #999999;
	border-color: #ffffff;
}

@media(max-width:767px) {
	.back_top_kxit_36_1_5.cd-top {
		bottom: 67px;
	}
}

.product_list_kxit .nav-tabs-horizontal {
	position: relative;
	overflow: hidden;
}

.product_list_kxit.kxit-index-body {
	background: #ffffff;
}

.product_list_kxit.kxit-index-body.bgcolor {
	background:;
}

.product_list_kxit.kxit-index-body.bgpic {
	background: url() no-repeat;
	background-size: cover;
	background-position: center;
}

.product_list_kxit.kxit-index-body {
	padding: 60px 0px;
}

.product_list_kxit.kxit-index-body h2 {
	font-size: 36px;
	color: #d71618;
	color:;
	color:;
}

.product_list_kxit.kxit-index-body p.desc {
	padding: 0 10%;
	font-size: 16px;
	color: #999999;
	color:;
	margin-bottom: 30px;
}

.product_list_kxit .nav-tabs {
	border-bottom: none;
	margin-bottom: 30px;
}

@media screen\0 {
	.product_list_kxit .nav-tabs {
		display: table;
	}
}

.product_list_kxit .nav-tabs .nav-item .nav-link {
	border: none;
	padding-top: 5px;
	padding-bottom: 5px;
	background: #fff;
}

.product_list_kxit .nav-tabs .nav-item .nav-link.active {
	background: #d71618;
	background:;
	color: #fff;
}

.nav-link .radius0:hover{background:#d71618;color:#fff !important;}
.product_list_kxit .nav-tabs .nav-item .nav-link:hover{background:#d71618;color:#fff !important;}
.product_list_kxit .nav-tabs .nav-item .nav-link:hover h3{color:#fff !important;}

.product_list_kxit .nav-tabs .nav-item .nav-link.active h3 {
	color: #fff;
}

.product_list_kxit .nav-tabs .nav-item h3 {
	margin: 0;
	font-size: inherit;
	line-height: inherit;
	text-shadow: none;
	color: inherit;
	white-space: nowrap;
	color: #999999;
	color:;
}

.product_list_kxit .index-product-list h4 a {
	color: #000000;
	color:;
}

.product_list_kxit .index-product-list h4 a span {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	display: block;
}

.product_list_kxit .index-product-list li img {
	max-width: 100%;
	max-height: 100%;
	-moz-transition: all 1s ease 0s;
	-ms-transition: all 1s ease 0s;
	-o-transition: all 1s ease 0s;
	-webkit-transition: all 1s ease 0s;
	transition: all 1s ease 0s;
}

.product_list_kxit .index-product-list li .card-header {
	position: relative;
}

.product_list_kxit .index-product-list li .meng {
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #000000;
	opacity: 0.1;
	top: 0px;
	display: block;
	z-index: 2;
	-moz-transition: all 1s ease 0s;
	-ms-transition: all 1s ease 0s;
	-o-transition: all 1s ease 0s;
	-webkit-transition: all 1s ease 0s;
	transition: all 1s ease 0s;
}

.product_list_kxit .index-product-list li .product_price {
	color: #d71618;
	color:;
}

.product_list_kxit .index-product-list li:hover a,.product_list_kxit .index-product-list li:hover a span {
	color: #d71618 !important;
	color: !important;
}

.product_list_kxit .index-product-list li:hover img {
	-moz-transform: scale(1.1,1.1);
	-ms-transform: scale(1.1,1.1);
	-o-transform: scale(1.1,1.1);
	-webkit-transform: scale(1.1,1.1);
	transform: scale(1.1,1.1);
}

.product_list_kxit .index-product-list li:hover .meng {
	display: none;
}

@media (max-width:991px) {
	.product_list_kxit.kxit-index-body {
		padding: 50px 0px;
	}
}

@media (max-width:767px) {
	.product_list_kxit.kxit-index-body {
		padding: 40px 0px;
	}

	.product_list_kxit .nav-tabs {
		margin: 20px auto;
	}

	.product_list_kxit .index-product-list h4 a {
		font-size: 14px;
	}
}

.product_list_kxit .swiper-navtab .swiper-scrollbar {
	bottom: 15px;
	position: absolute;
}

.product_list_kxit .swiper-navtab.swiper-container-horizontal .swiper-scrollbar-drag {
	height: 100%;
}

.product_list_kxit .index-product-list {
	margin-right: -10px!important;
}

.product_list_kxit .more {
	display: block;
	margin: 0 auto;
	width: 150px;
	padding: 0 5px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	border-radius: 5px;
	color: #000000;
	color:;
	color:;
	border: 1px solid #000000;
	border: 1px solid;
	border: 1px solid;
	margin-top: 50px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: background-color 0.5s linear;
	-moz-transition: background-color 0.5s linear;
	-webkit-transition: background-color 0.5s linear;
	-o-transition: background-color 0.5s linear;
}

.product_list_kxit .more:hover {
	color: #fff;
	background-color: #d71618;
	border-color: #d71618;
	background-color:;
	border-color:;
}

.case_list_kxit.bgcolor {
	background: #ffffff;
	background: #212121;
}

.case_list_kxit.bgpic {
	background: #27282a;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
}

.case_list_kxit {
	padding: 50px 0px;
	max-width: 100%;
	overflow: hidden;
}

.case_list_kxit h2.title {
	color: #000000;
	color: #ffffff;
	font-size: 30px;
	text-align: center;
	margin-top: 0;
}

.case_list_kxit p.des {
	color: #999999;
	color:;
	font-size: 16px;
	text-align: center;
	margin-top: 0;
	margin-bottom: 20px;
}

.case_list_kxit .about_more {
	font-size: 14px;
	padding: 10px 30px;
	border-radius: 2em;
	border: 1px solid;
	border-color: #d71618;
	border-color:;
	background-color: #d71618;
	background-color:;
	color: #ffffff;
	display: inline-block;
	-webkit-transition: all 0.25s ease-out;
	-moz-transition: all 0.25s ease-out;
	-ms-transition: all 0.25s ease-out;
	-o-transition: all 0.25s ease-out;
	transition: all 0.25s ease-out;
}

.case_list_kxit .about_more:hover {
	border-color: #d71618;
	border-color:;
	background-color: transparent;
	color: #d71618;
	color:;
}

@media (max-width:991px) {
	.case_list_kxit {
		padding: 40px 0px;
	}

	.case_list_kxit .kxit-editor {
		margin-top: 40px;
	}
}

@media (max-width:767px) {
	.case_list_kxit {
		padding: 30px 0px;
	}

	.case_list_kxit .kxit-editor {
		margin-top: 30px;
	}
}

.case_list_kxit img {
	border: 0;
	display: block;
	width: 100%;
}

.case_list_kxit ul,.case_list_kxit dl,.case_list_kxit li,.case_list_kxit dt,.case_list_kxit dd {
	list-style: none;
	padding-left: 0;
}

.case_list_kxit a {
	transition: ease 0.5s;
}

.case_list_kxit .lh-about-h2 {
	font-size: 24px;
	font-weight: normal;
	font-style: normal;
	color: #000000;
	color: #ffffff;
	display: block;
	padding: 0;
	vertical-align: bottom;
	margin: 0;
}

.case_list_kxit .lh-about-desc {
	color: #999999;
	color: #999999;
	margin-bottom: 0;
}

.case_list_kxit .lh-wapAbout-h2 {
	display: none;
	text-align: center;
	font-size: 30px;
	padding: 20px 0;
	position: relative;
}

.case_list_kxit .lh-wapAbout-h2:after {
	content: '';
	display: block;
	width: 10vw;
	height: 1px;
	background: #d71618;
	background: #999999;
	background:;
	position: absolute;
	left: 45%;
	bottom: 10px;
}

.case_list_kxit .lh-wapAbout-h2 {
	display: none;
}

.case_list_kxit .clearfix:after {
	content: '\200B';
	display: block;
	height: 0;
	clear: both;
}

.case_list_kxit .clearfix {
	position: relative;
	*zoom: 1;
}

.case_list_kxit h1,.case_list_kxit h2,.case_list_kxit h3,.case_list_kxit h4,.case_list_kxit h5,.case_list_kxit h6 {
	font-size: 100%;
	font-weight: normal;
}

.case_list_kxit i {
	font-style: normal;
}

.case_list_kxit .left {
	float: left;
}

.case_list_kxit .right {
	float: right;
}

.case_list_kxit .noscript {
	position: fixed;
	left: 0px;
	top: 0px;
	background: #ddd;
	color: red;
	text-align: center;
	width: 100%;
	height: 30px;
	line-height: 30px;
}

.case_list_kxit em {
	font-style: normal;
}

.case_list_kxit .pace-progress {
	width: 100%;
	height: 2px;
	background: #b72024;
	position: fixed;
	left: 0px;
	top: 0px;
	z-index: 5000;
}

.case_list_kxit .pace-inactive {
	display: none;
}

.case_list_kxit .lh-flex {
	display: flex;
	display: -webkit-flex;
	flex-direction: row;
	-webkit-flex-direction: row;
	flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
}

.case_list_kxit .container {
	margin: auto;
	position: relative;
	z-index: 3;
}

.case_list_kxit .lh-shadow {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.8);
	z-index: 900;
	animation: shadowOpacity linear 0.65s;
	cursor: pointer;
}

.case_list_kxit .lh-content {
	padding-top: 80px;
}

.case_list_kxit .lh-more {
	display: inline-block;
	width: 130px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	color: #d71618;
	color: #ffffff;
	background:;
	box-shadow: 0 0 10px rgba(12,3,6,0.13);
	position: relative;
	z-index: 1;
}

.case_list_kxit .lh-more i {
	float: right;
	display: inline-block;
	width: 30px;
	height: 30px;
	line-height: 30px;
	background: #d71618;
	background: #ffffff;
	color:;
	font-size: 20px;
	transition: ease 0.65s;
	position: relative;
	z-index: 1;
}

.case_list_kxit .lh-more i:after {
	transition: ease-in 0.65s;
	content: '';
	display: block;
	width: 0;
	height: 100%;
	background:;
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
}

.case_list_kxit .lh-more:before {
	transition: ease-out 0.35s;
	content: '';
	display: block;
	width: 0;
	height: 100%;
	background: #d71618;
	background: #ffffff;
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
}

.case_list_kxit .lh-more:hover {
	color:;
}

.case_list_kxit .lh-more:hover:before {
	width: 100%;
}

.case_list_kxit .lh-more:hover i {
	color: #d71618;
	color: #ffffff;
	transition-delay: 0.2s;
}

.case_list_kxit .lh-more:hover i:after {
	width: 100%;
	transition-delay: 0.2s;
	transition-timing-function: cubic-bezier(0.52,1.64,0.37,0.66);
}

.case_list_kxit .lh-news {
	padding-top: 3%;
}

.case_list_kxit .lh-news-con {
	margin: auto;
}

.case_list_kxit .lh-news-a .img {
	margin-right: 50px;
}

.case_list_kxit .lh-news-a h4 {
	color: #999999;
	color: #cccccc;
	position: relative;
	padding: 20px 0 50px;
	overflow: hidden;
}

.case_list_kxit .lh-news-a h2 {
	font-size: 20px;
	color: #000000;
	color: #ffffff;
	overflow: hidden;
	height: 22px;
	line-height: 22px;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-weight: bold;
}

.case_list_kxit .lh-news-a h3 {
	color: #999999;
	color: #cccccc;
	line-height: 24px;
	margin: 50px 0 20px;
	height: 72px;
	overflow: hidden;
}

.case_list_kxit .lh-news-con {
	margin: 0px;
}

.case_list_kxit .more-box {
	text-align: center;
	margin-top: 20px;
}

.case_list_kxit .lh-news-b li {
	padding: 10px;
	margin: 0;
}

.case_list_kxit .lh-news-b li div {
	position: relative;
	overflow: hidden;
}

.case_list_kxit .lh-news-b li a {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	padding: 60px 20px 0 20px;
	z-index: 2;
	width: 100%;
	height: 100%;
}

.case_list_kxit .lh-news-b li a:hover {
	background: #d71618;
	background:;
}

.case_list_kxit .lh-news-b li .img {
	opacity: 0;
	visibility: hidden;
	transition: ease 0.65s;
}

.case_list_kxit .lh-news-b li h4 {
	position: relative;
	left: 0;
	top: 0;
	width: 100%;
	padding: 0px;
	color: #999999;
	color: #cccccc;
	transition: ease 0.65s;
}

.case_list_kxit .lh-news-b li p {
	color: #999999;
	color: #cccccc;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	padding: 0px;
	transition: ease 0.65s;
}

.case_list_kxit .lh-news-b li:after {
	content: '';
	display: none;
	width: 100%;
	height: 100%;
	background: none;
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
	transition: ease 0.65s;
}

.case_list_kxit .bgopacity {
	background: #3d3d3d;
}

.case_list_kxit .lh-news-b li:hover:after {
	opacity: 1;
	// transform: translate(10px,10px);
}

.case_list_kxit .lh-news-b li:hover a {
	padding: 40px 20px 0 20px;
}

.case_list_kxit .lh-news-b li:hover h4,.case_list_kxit .lh-news-b li:hover h2,.case_list_kxit .lh-news-b li:hover p {
	color: #ffffff;
}

.case_list_kxit .lh-news-b li:hover h4:after {
	background: #fff;
}

.case_list_kxit .lh-news-b li:hover .img {
	opacity: 1;
	visibility: visible;
	overflow: hidden;
}

.case_list_kxit .lh-mobnews-a {
	display: none;
}

.case_list_kxit .lh-news-h {
	position: relative;
	color: #999;
	padding-bottom: 10px;
	border-bottom: 1px solid #e1e1e1;
}

.case_list_kxit .lh-news-h b {
	font-size: 18px;
	color: #333;
	margin-right: 15px;
	position: relative;
	top: -2px;
}

.case_list_kxit .lh-news-h:before {
	content: '';
	display: block;
	width: 4px;
	height: 12px;
	background: #b72024;
	position: absolute;
	left: -20px;
	top: 5px;
}

.case_list_kxit .lh-news-item li {
	padding: 30px 0;
	border-top: 1px dashed #b1b1b1;
	position: relative;
}

.case_list_kxit .lh-news-item li:first-child {
	border: none;
}

.case_list_kxit .lh-news-item li:after {
	content: '\200B';
	display: block;
	height: 0;
	clear: both;
}

.case_list_kxit .lh-news-item li .img {
	float: left;
	width: 280px;
	margin-right: 40px;
	transition: ease 0.65s;
}

.case_list_kxit .lh-news-item li .text {
	float: left;
	width: 570px;
	transition: ease 0.65s;
}

.case_list_kxit .lh-news-item li h4 {
	color: #999;
	position: relative;
	margin-bottom: 45px;
	top: 10px;
}

.case_list_kxit .lh-news-item li h4:after {
	content: '';
	display: block;
	width: 15px;
	height: 1px;
	background: #b72024;
	position: absolute;
	left: 0;
	bottom: -15px;
	transition: ease 0.65s;
}

.case_list_kxit .lh-news-item li h2 {
	font-size: 16px;
	color: #333;
	height: 18px;
	line-height: 18px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	transition: ease 0.65s;
}

.case_list_kxit .lh-news-item li h3 {
	line-height: 24px;
	color: #888;
	margin-top: 20px;
	height: 48px;
	overflow: hidden;
}

.case_list_kxit .lh-news-item li span {
	position: absolute;
	right: 10px;
	top: 50%;
	color: #999;
	height: 18px;
	margin-top: -9px;
	line-height: 18px;
	transition: ease 0.65s;
	transform: translateX(-60px);
	opacity: 0;
}

.case_list_kxit .lh-news-item li span i {
	margin-left: 10px;
	font-size: 18px;
	position: relative;
	top: 1px;
}

.case_list_kxit .lh-news-item li span:before {
	content: '';
	display: block;
	width: 1px;
	height: 40px;
	background: #e5e5e5;
	position: absolute;
	left: -20px;
	top: 50%;
	margin-top: -20px;
	transition: ease 0.65s;
}

.case_list_kxit .lh-news-item li:hover .img {
	transform: scale(1.2) translateX(23px);
}

.case_list_kxit .lh-news-item li:hover .text {
	transform: translateX(50px);
	transition-delay: 0.25s;
}

.case_list_kxit .lh-news-item li:hover h2 {
	color: #b72024;
	transition-delay: 0.25s;
}

.case_list_kxit .lh-news-item li:hover span {
	transform: translateX(0);
	transition-delay: 0.55s;
	opacity: 1;
	color: #b72024;
}

.case_list_kxit .lh-news-item li:hover span:before {
	background: #b72024;
}

.case_list_kxit .lh-news-h.canteen {
	margin-top: 20px;
}

@keyframes updown {
	0% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-10px);
	}

	100% {
		transform: translateY(0);
	}
}

@keyframes shadowOpacity {
	0% {
		opacity: 0;
	}

	100% {
		opaciy: 1;
	}
}

@keyframes mapLine {
	0% {
		width: 0;
	}

	100% {
		width: 50%;
	}
}

@keyframes mapLine1 {
	0% {
		height: 0;
	}

	100% {
		height: 100%;
	}
}

.case_list_kxit .lh-news-b li h2 span {
	white-space: nowrap;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
}

.case_list_kxit .lh-news-b li h2 {
	padding: 0px;
	text-align: center;
	line-height: 24px;
	font-size: 16px;
	color: #000000;
	color: #ffffff;
	text-align: left;
	font-weight: bold;
	overflow: hidden;
	transition: ease 0.65s;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	margin-top: 0;
}

.case_list_kxit .icon {
	margin: 0;
	display: inline-block;
}

@media screen and (max-width:1600px) {
}

@media screen and (max-width:1366px) {
	.case_list_kxit .lh-news-con {
		float: right;
	}
}

@media screen and (max-width:1280px) {
}

@media screen and (max-width:1024px) {
	.case_list_kxit .container {
		width: 100%;
		padding: 0 10px;
	}

	.case_list_kxit .lh-news-b li h2 {
		padding: 0;
		text-align: center;
		line-height: 24px;
		font-size: 16px;
		text-align: left;
		font-weight: bold;
		overflow: hidden;
		transition: ease 0.65s;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 1;
		overflow: hidden;
	}

	.case_list_kxit .lh-moblie-nav {
		display: block;
	}

	.case_list_kxit .lh-wapAbout-h2 {
		display: block;
		margin: auto;
		text-align: center;
	}

	.case_list_kxit .lh-wapAbout-h2 img {
		height: 100%;
		width: auto;
		margin: auto;
	}

	.case_list_kxit .lh-news-item li .text {
		width: 460px;
	}

	.case_list_kxit .lh-news {
		padding: 20px;
	}

	.case_list_kxit .lh-news-con {
		width: 100%;
		margin-top: 20px;
	}

	.case_list_kxit .lh-news-b {
		margin-top: 40px;
	}
}

@media screen and (max-width:767px) {
	.case_list_kxit .lh-news-b li a {
		padding: 40px 20px 0 20px;
	}

	.case_list_kxit .lh-news-b li .img {
		opacity: 1;
		visibility: inherit;
	}

	.case_list_kxit .lh-news-b li h4,.case_list_kxit .lh-news-b li h2,.case_list_kxit .lh-news-b li p {
		color: #ffffff;
	}
}

.case_list_kxit .lh-news-b li .img img {
	-webkit-transition: all 0.5s ease-out;
	-moz-transition: all 0.5s ease-out;
	-ms-transition: all 0.5s ease-out;
	-o-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}

.case_list_kxit .lh-news-b li:hover .img img {
	transform: scale(1.1);
}

@keyframes lhImgRight {
	0% {
		transform: translateX(-100%) scale(1.2);
		opacity: 0;
	}

	50% {
		transform: translateX(0) scale(1.1);
		opacity: 1;
	}

	100% {
		transform: translateX(0) scale(1);
		opacity: 1;
	}
}

@keyframes lhFadeInRight {
	0% {
		opacity: 0;
		transform: translateX(100%);
	}

	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes lhFadeInUp {
	0% {
		opacity: 0;
		transform: translateY(100%);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes lhFadeInDown {
	0% {
		transform: translateY(-100%);
		opacity: 0;
	}

	100% {
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes logoFade {
	0% {
		opacity: 0;
		transform: translateY(-100%);
	}

	100% {
		opacity: 100;
		transform: translateY(-50%);
	}
}

@keyframes logoWidth {
	0% {
		width: 0;
	}

	100% {
		width: 250%;
	}
}

@keyframes lineWidth {
	0% {
		width: 0;
	}

	100% {
		width: 100%;
	}
}

@keyframes lineHeight {
	0% {
		height: 0;
	}

	100% {
		height: 100%;
	}
}

.service_list_kxit.kxit-index-body.bgcolor {
	background: #ffffff;
	background: #f5f5f5;
}

.service_list_kxit.kxit-index-body.bgpic {
	background: url() no-repeat;
	background-size: cover;
	background-position: center;
}

.service_list_kxit.kxit-index-body {
	padding: 70px 0px;
}

.service_list_kxit.kxit-index-body h2 {
	font-size: 36px;
	color: #000000;
	color:;
	font-weight: 500;
}

.service_list_kxit.kxit-index-body p.desc {
	padding: 0 10%;
	font-size: 16px;
	color: #999999;
	color:;
}

.service_list_kxit .index-service-list li h3 {
	color: #000000;
	color:;
}

.service_list_kxit .index-service-list li p.des {
	color: #999999;
	color:;
	text-align: left;
	padding-right: 100px;
}

.service_list_kxit .index-service-list li.two p.des {
	padding-left: 100px;
	padding-right: 0;
}

.service_list_kxit .index-service-list li i {
	color: #999999;
	color:;
}

.service_list_kxit ul li {
	list-style: none;
}

@media (min-width:768px) {
	.service_list_kxit.conceal {
		display: none;
	}
}

@media (max-width:991px) {
	.service_list_kxit.kxit-index-body {
		padding: 60px 0px;
	}
}

@media (max-width:767px) {
	.service_list_kxit.kxit-index-body {
		padding: 50px 0px;
	}

	.service_list_kxit.kxit-index-body h2 {
		font-size: 28px;
	}

	.service_list_kxit.kxit-index-body p.desc {
		font-size: 14px;
	}

	.service_list_kxit .index-service-list li h3 {
		font-size: 14px !important;
		margin-top: 5px !important;
	}
}

.service_list_kxit .index-service-list li {
	overflow: hidden;
}

.service_list_kxit .index-service-list li.two .left {
	float: right;
}

.service_list_kxit .index-service-list li.donttop {
	margin: 0 !important;
}

.service_list_kxit .index-service-list {
	overflow: hidden;
	margin-top: 58px;
	padding-left: 0;
}

.service_list_kxit .index-service-list li img {
	max-width: 100%;
}

.service_list_kxit .index-service-list li h3 {
	margin: 35px 0;
	text-align: left;
	color: #000000;
	color:;
	font-weight: 600;
	font-size: 22px;
}

.service_list_kxit .index-service-list li.two .left h3 {
	text-align: right;
}

.service_list_kxit .index-service-list li h3 a {
	color: #000000;
	color:;
	font-size: 22px;
	font-weight: 600;
	transition: color .25s;
}

.service_list_kxit .index-service-list li h3 a:hover {
	color: #d71618;
	color:;
}

.service_list_kxit .news-bg {
	margin-top: 20px;
	opacity: 1;
}

.service_list_kxit .news-bg .bg {
	height: 100%;
	no-repeat;background-size: cover;
	background-position: center;
}

.service_list_kxit .news-bg .bg img {
	width: 100%;
}

.service_list_kxit .container-fluid {
	padding: 0;
}

@media (max-width:991px) {
	.service_list_kxit .index-service-list li {
		margin-top: 40px;
	}

	.service_list_kxit .index-service-list li h3 {
		margin: 15px 0;
	}
}

@media (max-width:767px) {
	.service_list_kxit .index-service-list li {
		margin-top: 30px;
	}

	.service_list_kxit .index-service-list li i {
		width: 90px;
		height: 90px;
		line-height: 90px;
		font-size: 40px;
	}

	.service_list_kxit .index-service-list li h3 {
		text-align: center !important;
	}

	.service_list_kxit .index-service-list li p.des {
		text-align: center !important;
	}

	.service_list_kxit .index-service-list li p.des {
		padding: 0 !important;
	}

	.service_list_kxit .index-service-list li .left {
		margin-bottom: 10px;
	}

	.service_list_kxit .index-service-list {
		margin-top: 0;
	}
}

.about_list_kxit {
	width: 100%;
	padding: 0px 0px;
	position: relative;
}

.about_list_kxit .clearfix:after {
	content: " ";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.about_list_kxit.bgcolor {
	background: #ffffff;
	background: !important;
}

.about_list_kxit.bgpic {
	background: url();
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.about_list_kxit .blobkheader {
	text-align: center;
}

.about_list_kxit .blobkheader h5 {
	font-size: 16px;
	line-height: 26px;
	color: #999999;
	color:;
}

.about_list_kxit .blobkheader h4 {
	font-size: 36px;
	line-height: 74px;
	color: #000000;
	color:;
	font-weight: bold;
}

.about_list_kxit .midItem .title {
	font-size: 20px;
	line-height: 36px;
	color: #000000;
	color:;
}

.about_list_kxit .midItem .desc {
	height: 180px;
	overflow: hidden;
	font-size: 14px;
	line-height: 35px;
	color: #999999;
	text-align:justify;
}

.about_list_kxit .leftItem {
	min-height: 400px;
	height:auto !important;
}

.about_list_kxit .footItem {
	background: #d71618;
	background: #212121;
	position: absolute;
	bottom: 0;
	width: 100%;
	min-height: 120px;
	padding: 25px;
}

.about_list_kxit .img-wrap {
	overflow: hidden;
	position: absolute;
	top: 0;
	z-index: 1;
}

.about_list_kxit .img-wrap img {
	width: 100%;
	height: auto;
}

.about_list_kxit .footItem .text1 {
	font-size: 38px;
	line-height: 36px;
	color: #ffffff;
}

.about_list_kxit .footItem .text2 {
	font-size: 14px;
	line-height: 36px;
	color: #ffffff;
}

.about_list_kxit .footItem .text3 {
	font-size: 15px;
	line-height: 36px;
	color: #ffffff;
}

.about_list_kxit .seemore {
	text-align: left;
	height: 50px;
	margin-top: 0px;
}

.about_list_kxit .seemore a {
	color: #ffffff;
	background-color: #d71618;
	border-radius: 5px;
	padding: 10px 40px;
	border: 1px solid;
	border-color: #ffffff;
}

.about_list_kxit .seemore a:hover {
	color: #d71618;
	background-color: #ffffff;
	border-color: #d71618;
}

@media (max-width:768px) {
	.about_list_kxit {
		padding: 0px 0px;
	}
}

@media (max-width:480px) {
	.about_list_kxit .leftItem {
		min-height: unset;
	}

	.about_list_kxit .footItem {
		position: unset;
		padding: 10px;
	}

	.about_list_kxit .img-wrap {
		position: unset;
		margin-top: 10px;
		margin-bottom: 10px;
	}

	.about_list_kxit {
		padding: 1px 0px;
	}

	.about_list_kxit .midItem .title {
		text-align: center;
	}

	.about_list_kxit .seemore {
		text-align: center;
	}
}

.about_list_kxit .p0 {
	padding: 0 !important;
}

.partner_list_kxit {
	padding: 70px 0;
}

.partner_list_kxit .block-title {
	display: flex;
	align-items: center;
	justify-content: center;
}

.partner_list_kxit.bgcolor {
	background: #ffffff;
	background: #f5f5f5;
}

.partner_list_kxit.bgpic {
	background: url() no-repeat;
	background-size: cover;
	background-position: center;
}

.partner_list_kxit .title {
	font-size: 36px;
	margin-top: 0px;
	text-align: center;
	font-weight: 500;
	color: #000000;
	color:;
	margin-bottom: 0;
	padding: 0 5px;
}

.partner_list_kxit p.desc {
	font-size: 16px;
	font-weight: 300;
	text-align: center;
	width: 80%;
	color: #999999;
	color:;
	margin: 0px auto;
	margin-top: 11px;
}

.partner_list_kxit .imglist {
	padding-top: 15px;
	text-align: left;
	text-align: left;
	margin: 0 -5px;
}

.partner_list_kxit .imglist li {
	padding: 10px;
	margin-bottom:20px;
	background:#fff;
	margin-right:10px;
}

.partner_list_kxit .imglist div img {
	width: 100%;
}

.partner_list_kxit .imglist div img.gray {
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	filter: grayscale(100%);
	filter: gray;
}

.partner_list_kxit .overlay-hover:hover .overlay-scale {
	-webkit-filter: grayscale(0%);
	-moz-filter: grayscale(0%);
	-ms-filter: grayscale(0%);
	-o-filter: grayscale(0%);
	filter: grayscale(0%);
	filter: gray;
}

.partner_list_kxit .block-title img {
	max-height: 26px;
}

@media (max-width:991px) {
	.partner_list_kxit.kxit-index-body {
		padding: 60px 0px;
	}

	.partner_list_kxit .imglist {
		padding-top: 10px;
	}
}

@media (max-width:767px) {
	.partner_list_kxit.kxit-index-body {
		padding: 50px 0px;
	} $	uciss p.desc {
		font-size: 12px;
	} $	uciss .title {
		font-size: 18px;
	}

	.partner_list_kxit .imglist {
		padding-top: 10px;
	}

	.partner_list_kxit .phonehide {
		display: none;
	}
}

.news_list_kxit h2,.news_list_kxit h1,.news_list_kxit p,.news_list_kxit ul,.news_list_kxit li {
	margin: 0;
	padding: 0;
}

.news_list_kxit ul li {
	list-style: none;
}

.news_list_kxit .text-center {
	text-align: center;
}

.news_list_kxit .middle {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
}

.news_list_kxit .J-cut-con .box {
	margin-left: 30px;
}

.news_list_kxit .full-img img {
	display: block;
	width: 100%;
}

.news_list_kxit .float-left {
	float: left;
}

.news_list_kxit .float-right {
	float: right;
}

.news_list_kxit {
	overflow: hidden;
}

.news_list_kxit:before {
	display: block;
	content: ' ';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #ffffff;
	background-color:;
}

@keyframes pulse {
	0% {
		-webkit-transform: scale3d(1,1,1);
		transform: scale3d(1,1,1);
	}

	50% {
		-webkit-transform: scale3d(1.05,1.05,1.05);
		transform: scale3d(1.05,1.05,1.05);
	}

	100% {
		-webkit-transform: scale3d(1,1,1);
		transform: scale3d(1,1,1);
	}
}

.news_list_kxit .container {
	position: relative;
	z-index: 1;
}

.news_list_kxit .title-sub {
	font-weight: bold;
	color: #d71618;
	color:;
}

.news_list_kxit .title-text {
	position: relative;
	display: inline-block;
	padding: 0 15px;
	color: #000000;
	color:;
}

.news_list_kxit .news-container {
	position: relative;
}

.news_list_kxit .swiper-slide .left-slide {
	overflow: hidden;
}

.news_list_kxit .swiper-slide .detail {
	position: absolute;
	width: 100%;
	bottom: 0;
	color: #fff;
	opacity: 0;
	transition: opacity .3s .3s;
}

.news_list_kxit .swiper-slide .detail:before {
	display: block;
	content: " ";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000000;
	opacity: 0.5;
}

.news_list_kxit .swiper-slide-active .detail {
	opacity: 1;
}

.news_list_kxit .swiper-slide .detail h3 {
	position: relative;
	z-index: 1;
	white-space: nowrap;
	overflow: hidden;
	color: #ffffff;
}

.news_list_kxit .swiper-slide .detail p {
	position: relative;
	color:;
	overflow: hidden;
}

.news_list_kxit .swiper-slide .detail p span {
	display: block;
}

.news_list_kxit .swiper-wrapper {
}

.news_list_kxit .swiper-wrapper::-webkit-scrollbar {
	width: 1;
}

.news_list_kxit .more {
	position: absolute;
	right: 10px;
	top: 0;
	height: 55px;
	line-height: 55px;
	color: #000000;
	color: #ffffff;
}

.news_list_kxit .more:hover {
	color: #d71618;
	color:;
}

.news_list_kxit .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: #fff;
	margin: 0 5px;
}

.news_list_kxit .swiper-pagination-bullet.swiper-pagination-bullet-active {
	width: 32px;
	border-radius: 6px;
}

.news_list_kxit .news-right {
	background-color: #ffffff;
	background-color:;
}

.news_list_kxit .tab-list {
	position: relative;
	background-color: #ffffff;
	background-color: #333333;
	box-sizing: border-box;
	width: calc(100% - 30px);
	margin-bottom: 20px;
	margin-left: 30px;
	border-right: 8px solid #d41e1e;
}

.news_list_kxit .tab-list:after {
	display: block;
	content: " ";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background-color:;
	transform: scaleY(0.5);
	-o-transform: scaleY(0.5);
	-ms-transform: scaleY(0.5);
	-moz-transform: scaleY(0.5);
	-webkit-transform: scaleY(0.5);
}

.news_list_kxit .tab-item {
	padding: 0 15px;
	width: auto;
	line-height: 55px;
	height: 55px;
	border-bottom: 2px solid transparent;
	font-size: 20px;
	color: #000000;
	color: #ffffff;
	cursor: pointer;
}

.news_list_kxit .tab-item:hover,.news_list_kxit .tab-item.active {
	background-color: #d41e1e;
	font-weight: 600;
	color: #d71618;
	color: #ffffff;
}

.news_list_kxit .tab-item.active::before,.news_list_kxit .tab-item:hover::before {
	content: "";
	display: block;
	width: 100%;
	height: 10px;
	background-color: #d41e1e;
	position: absolute;
	top: -10px;
	left: 0;
}

.news_list_kxit .cut-content {
	display: none;
	height: auto;
}

.news_list_kxit .cut-content.active {
	display: block;
}

.news_list_kxit .cut-container {
}

.news_list_kxit .cut-scroll {
	position: relative;
	width: 100%;
	height: 100%;
}

.news_list_kxit .list-item {
	display: block;
}

.news_list_kxit .list-item p {
	width: calc(100% - 120px);
	display: inline-block;
}

.news_list_kxit .list-item:hover h4::before {
	width: 18px;
	height: 4px;
	display: inline-block;
	content: "";
	margin-right: 10px;
	transform: translateY(-4px);
	background-color: #d71618;
	background-color:;
}

.news_list_kxit .cut-content .list-item:last-child {
	margin-bottom: 5px;
}

.news_list_kxit .list-img {
	float: left;
	width: px;
	overflow: hidden;
}

.news_list_kxit .list-title {
	display: inline-block;
	margin: 0;
	width: 100%;
	overflow: hidden;
	color: #000000;
	color: #666666;
}

.news_list_kxit .list-item:hover .list-title,.news_list_kxit .list-item:hover .list-title p span {
	color: #d71618 !important;
	color: !important;
}

.news_list_kxit .time-text {
	margin-left: 10px;
	font-size: 15px;
	color: #999999;
	color:;
}

.news_list_kxit .list-item:hover .time-text {
	color: #d71618 !important;
	color: !important;
}

.news_list_kxit .list-msg {
	display: inline-block;
	color: #999999;
	color:;
	overflow: hidden;
	text-align: justify;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.news_list_kxit .more-container {
	width: 100%;
	background-color: #ffffff;
	background-color:;
}

.news_list_kxit .more-btn {
	display: block;
	width: 100%;
	height: 30px;
	line-height: 30px;
	color: #999999;
	color: #ffffff;
	background-color: #ffffff;
	background-color:;
	cursor: pointer;
}

.news_list_kxit .swiper-pagination-bullet {
	opacity: 0.6;
}

.news_list_kxit .swiper-pagination-bullet.swiper-pagination-bullet-active {
	opacity: 1;
}

.news_list_kxit .more-btn:hover {
	color:;
	background-color: #d71618;
	background-color:;
}

.news_list_kxit .J-news-swiper .swiper-button-prev,.news_list_kxit .J-news-swiper .swiper-button-next {
	top: auto;
	bottom: 16px;
	width: 30px;
	height: 35px;
	background-size: 8px 12px;
	background: #fff;
	right: 20px;
	color: #333;
	font-size: 18px;
	text-align: center;
	line-height: 35px;
}

.news_list_kxit .J-news-swiper .swiper-button-prev {
	left: auto;
	right: 56px;
}

.news_list_kxit .news-right .swiper-container {
	overflow: unset;
}

@media screen and (min-width:992px) {
	.news_list_kxit {
		padding-top: 70px;
		padding-bottom: 70px;
	}

	.news_list_kxit .title-sub {
		font-size: 22px;
	}

	.news_list_kxit .title-text {
		font-size: 36px;
		font-weight: 700;
	}

	.news_list_kxit .news-container {
		margin-top: 30px;
	}

	.news_list_kxit .swiper-slide .detail h3 {
		font-size: 18px;
		height: 67px;
		line-height: 67px;
		margin: 0;
		width: calc(100% - 90px);
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
		padding-left: 30px;
	}

	.news_list_kxit .swiper-slide .detail p {
		margin: 10px 15px 25px;
		line-height: 20px;
		max-height: 60px;
		font-size: 14px;
	}

	.news_list_kxit .swiper-pagination {
		bottom: 25px !important;
		left: auto;
		width: auto;
		right: 15px;
	}

	.news_list_kxit .news-left {
		width: 43%;
		overflow: hidden;
	}

	.news_list_kxit .news-right {
		position: absolute;
		right: 0;
		top: 0;
		width: 58%;
		height: 100%;
	}

	.news_list_kxit .cut-container {
		position: absolute;
		top: 0;
		left: 0;
		padding: 50px 15px 0px 30px;
		width: 100%;
		height: 100%;
	}

	.news_list_kxit .cut-scroll {
		position: relative;
		width: 100%;
		height: 100%;
	}

	.news_list_kxit .list-detail {
		margin-left: px;
		padding: 0 15px;
	}

	.news_list_kxit .list-detail-other {
		margin-left: 0;
		height: 44px;
		line-height: 44px;
	}

	.news_list_kxit .list-title {
		font-size: 16px;
		line-height: 20px;
		height: 20px;
		font-weight: 400;
	}

	.news_list_kxit .list-detail-other .list-title {
		height: 44px;
		line-height: 44px;
	}

	.news_list_kxit .list-msg {
		font-size: 13px;
		line-height: 20px;
		max-height: 60px;
	}

	.news_list_kxit .more-container {
		position: absolute;
		bottom: 0;
		left: 0;
		padding: 10px 30px 0;
	}
}

@media (max-width:1024px) {
	.news_list_kxit .list-detail-other .list-title {
		height: 18px;
		line-height: 18px;
	}

	.news_list_kxit .tab-item {
		padding-right: 10px;
		font-size: 18px;
	}
}

@media screen and (min-width:768px) and (max-width:991px) {
	.news_list_kxit {
		padding-top: 60px;
		padding-bottom: 60px;
	}

	.news_list_kxit .title-sub {
		font-size: 36px;
	}

	.news_list_kxit .title-text {
		font-size: 22px;
	}

	.news_list_kxit .news-container {
		margin-top: 20px;
	}

	.news_list_kxit .swiper-slide .detail h3 {
		font-size: 18px;
		height: 67px;
		line-height: 67px;
		margin: 0;
		width: calc(100% - 90px);
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
		padding-left: 30px;
	}

	.news_list_kxit .swiper-slide .detail p {
		margin: 10px 15px 25px;
		line-height: 20px;
		max-height: 60px;
		font-size: 14px;
	}

	.news_list_kxit .swiper-pagination {
		bottom: 5px !important;
	}

	.news_list_kxit .news-left {
		width: 100%;
		overflow: hidden;
	}

	.news_list_kxit .news-right {
		width: 100%;
		overflow: hidden;
	}

	.news_list_kxit .list-img {
		max-width: 40%;
	}

	.news_list_kxit .list-detail {
		margin-left: px;
		padding: 0 15px;
	}

	.news_list_kxit .list-detail-other {
		margin-left: 0;
	}

	.news_list_kxit .cut-container {
		width: 100%;
		height: auto;
		overflow: scroll;
		-webkit-overflow-scrolling: touch;
	}

	.news_list_kxit .list-msg {
		font-size: 13px;
		line-height: 20px;
		max-height: 40px;
	}

	.news_list_kxit .list-title {
		font-size: 14px;
		line-height: 20px;
		height: 20px;
	}

	.news_list_kxit .more-container {
		margin-top: 10px;
	}

	.news_list_kxit .cut-content {
		margin-bottom: 0 !important;
	}
}

@media screen and (max-width:767px) {
	.news_list_kxit {
		padding-top: 50px;
		padding-bottom: 50px;
	}

	.news_list_kxit .J-cut-con .box {
		padding-top: 10px;
		margin-left: 0;
	}

	.news_list_kxit .tab-list {
		width: 200%;
		margin-left: 0;
	}

	.news_list_kxit .news-right .swiper-container {
		overflow-x: auto;
	}

	.news_list_kxit .cut-content.active {
		margin-bottom: 0 !important;
	}

	.news_list_kxit .more {
		display: none;
	}

	.news_list_kxit .title-sub {
		font-size: 24px;
	}

	.news_list_kxit .title-text {
		font-size: 16px;
	}

	.news_list_kxit .news-container {
		margin-top: 15px;
	}

	.news_list_kxit .swiper-slide .detail h3 {
		font-size: 18px;
		height: 67px;
		line-height: 67px;
		margin: 0;
		width: calc(100% - 90px);
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
		padding-left: 10px;
	}

	.news_list_kxit .J-tab-con {
		overflow-x: auto;
	}

	.news_list_kxit .swiper-slide .detail p {
		margin: 5px 15px 20px;
		line-height: 18px;
		max-height: 18px;
		font-size: 12px;
	}

	.news_list_kxit .swiper-pagination {
		bottom: 0 !important;
	}

	.news_list_kxit .news-left {
		width: 100%;
		overflow: hidden;
	}

	.news_list_kxit .news-right {
		width: 100%;
		overflow: hidden;
	}

	.news_list_kxit .list-img {
		max-width: 40%;
	}

	.news_list_kxit .list-title {
		font-size: 14px;
		line-height: 20px;
		height: 20px;
	}

	.news_list_kxit .list-detail {
		margin-left: 40%;
		padding: 0 10px;
	}

	.news_list_kxit .list-detail-other {
		margin-left: 0;
	}

	.news_list_kxit .cut-container {
		width: 100%;
		height: auto;
		overflow: scroll;
		-webkit-overflow-scrolling: touch;
	}

	.news_list_kxit .list-msg {
		font-size: 12px;
		line-height: 18px;
		max-height: 36px;
	}

	.news_list_kxit .more-container {
		margin-top: 0px;
	}
}

.news_banner{width:100%; height:500px;}





















