/* @import 'https://fonts.googleapis.com/css?family=Lato:300,400,700&subset=latin-ext';*/
/**
 * Global Reset of all HTML Elements
 *
 * Resetting all of our HTML Elements ensures a smoother
 * visual transition between browsers. If you don't believe me,
 * try temporarily commenting out this block of code, then go
 * and look at Mozilla versus Safari, both good browsers with
 * a good implementation of CSS. The thing is, all browser CSS
 * defaults are different and at the end of the day if visual
 * consistency is what we're shooting for, then we need to
 * make sure we're resetting all spacing elements.
 *
 */

* {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
html,
body {
	border: 0;
	line-height: 1.2;
	margin: 0;
	padding: 0;
	height: 100%;
	font-size: 18px;
}
div,
span,
object,
iframe,
img,
table,
caption,
thead,
tbody,
tfoot,
tr,
tr,
td,
article,
aside,
canvas,
details,
figure,
hgroup,
menu,
nav,
footer,
header,
section,
summary,
mark,
audio,
video {
	border: 0;
	margin: 0;
	padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
address,
cit,
code,
del,
dfn,
em,
ins,
q,
samp,
small,
strong,
sub,
sup,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
legend,
label {
	border: 0;
	/*font-size: 100%;*/
	vertical-align: baseline;
	margin: 0;
	padding: 0;
}
article,
aside,
canvas,
figure,
figure img,
figcaption,
hgroup,
footer,
header,
nav,
section,
audio,
video {
	display: block;
}
table tr {
    border-spacing: 5px !important;
    padding-bottom: 3px;
}
table caption,
table th,
table td {
	text-align: left;
	vertical-align: middle;
}
a img {
	border: 0;
}
:focus {
	outline: 0;
}
img {
	max-width: 100%;
}
.clear {
	clear: both;
}
/*// Gradient //
.gradientTwo (@xy: left, @a: @darkBlue, @b: @midBlue) {
    background: @a;
    background: -moz-linear-gradient(@xy, @a 0%, @b 100%);
    background: -webkit-gradient(linear, @xy top, right top, color-stop(0%,@a), color-stop(100%,@b));
    background: -webkit-linear-gradient(@xy, @a 0%,@b 100%);
    background: -o-linear-gradient(@xy, @a 0%,@b 100%);
    background: -ms-linear-gradient(@xy, @a 0%,@b 100%);
    background: linear-gradient(to @xy, @a 0%,@b 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=@a, endColorstr=@b,GradientType=1 );
}

.gradientThree (@xy: left, @a: #7b2b38 0%, @b: #ab7780 100%, @c: #ab7780 100%, @d: #ab7780 100%, @e: #ab7780 100%, @f: #ab7780 100%) {
    background: @a;
    background: -moz-linear-gradient(@xy, @a, @b, @c, @d, @e, @f);
    background: -webkit-gradient(linear, @xy top, right top, color-stop(0%,@a), color-stop(100%,@b));
    background: -webkit-linear-gradient(@xy, @a, @b, @c, @d, @e, @f);
    background: -o-linear-gradient(@xy, @a, @b, @c, @d, @e, @f);
    background: -ms-linear-gradient(@xy, @a, @b, @c, @d, @e, @f);
    background: linear-gradient(to @xy, @a, @b, @c, @d, @e, @f);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=@a, endColorstr=@b,GradientType=1 );
}
// End of Gradient //*/
/* Transform */
.button1 {
	background-color: #eaf8fe;
	color: #0060a0;
	cursor: pointer;
	border: 1px solid #beddea;
	box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
	height: 45px;
	font-weight: 400;
	line-height: 1.1;
	font-size: 13px;
	padding: 0 25px;
	border-radius: 4px;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	transition: all 0.4s ease-out;
	-moz-transition: all 0.4s ease-out;
	-webkit-transition: all 0.4s ease-out;
	-o-transition: all 0.4s ease-out;
}
.button1:hover {
	background-color: #1f98df;
	color: #ffffff;
}
.button {
	background-color: #333;
	color: #ffffff;
	cursor: pointer;
	height: 45px;
	font-weight: 400;
	line-height: 43px;
	font-size: 16px;
	padding: 0 30px;
	border-radius: 25px;
	border: 0px solid #FFF;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	transition: all 0.4s ease-out;
	-moz-transition: all 0.4s ease-out;
	-webkit-transition: all 0.4s ease-out;
	-o-transition: all 0.4s ease-out;
	margin-bottom:10px;
}
.button:hover {
	background-color: #cc0808;
	color: #FFF;
}
.button-r {
	background-color: #FFF;
	border:2px solid #CC0808;
	color: #CC0808;
	cursor: pointer;
	height: 45px;
	font-weight: 400;
	font-size: 16px;
	padding: 7px 30px;
	border-radius: 25px;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	transition: all 0.4s ease-out;
	-moz-transition: all 0.4s ease-out;
	-webkit-transition: all 0.4s ease-out;
	-o-transition: all 0.4s ease-out;
}
.button-r:hover {
	background-color: #CC0808;
	color: #ffffff;
	border:2px solid #CC0808;
}
.button-back-small {
	background-color: #FFF;
	border:2px solid #CC0808;
	color: #CC0808;
	cursor: pointer;
	height: auto;
	font-weight: 400;
	font-size: 16px;
	padding: 4px 30px;
	margin-top:10px;
	border-radius: 25px;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	transition: all 0.4s ease-out;
	-moz-transition: all 0.4s ease-out;
	-webkit-transition: all 0.4s ease-out;
	-o-transition: all 0.4s ease-out;
}
.button-back-small:hover {
	background-color: #CC0808;
	color: #ffffff;
	border:2px solid #CC0808;
}

@media only screen and (min-width:320px) and (max-width:768px) {
.button {
	color: #ffffff;
	height: auto;
	padding:5px 20px;
	line-height: 30px;
    margin-top: 10px;
}
.button-r {
	color: #CC0808;
	height: auto;
	padding:5px 20px;
	line-height: 30px;
    margin-top: 10px;
}
}

input[type="search"] {
	-webkit-appearance: textfield;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}
.transition {
	transition: all 0.4s ease-out;
	-moz-transition: all 0.4s ease-out;
	-webkit-transition: all 0.4s ease-out;
	-o-transition: all 0.4s ease-out;
}
.textCenter {
	text-align: center;
}
.textLeft {
	text-align: left;
}
.textRight {
	text-align: right;
}
.textJustify {
	text-align: justify;
}
.pullLeft {
	float: left;
}
.pullRight {
	float: right;
}
.bodyFont {
	font-family: 'Roboto', sans-serif;
	color: #848282;
	font-weight: 400;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0px;
	padding: 0px;
}
h2 {
	font-size: 18px;
	font-weight: 700;
	color: #000000;
	margin: 0 0 22px;
}
@media (min-width: 768px) and (max-width: 2000px) {
	.animated {
		-webkit-animation-duration: 1.5s;
		animation-duration: 1.5s;
		-webkit-animation-fill-mode: both;
		animation-fill-mode: both;
		opacity: 0;
	}
	.animated1 {
		-webkit-animation-duration: .5s;
		animation-duration: .5s;
	}
	.visible {
		opacity: 1;
	}
	.animated.hinge {
		-webkit-animation-duration: 2s;
		animation-duration: 2s;
	}
	@-webkit-keyframes bounce {
		0%,
		20%,
		50%,
		80%,
		100% {
			-webkit-transform: translateY(0);
			transform: translateY(0);
		}
		40% {
			-webkit-transform: translateY(-30px);
			transform: translateY(-30px);
		}
		60% {
			-webkit-transform: translateY(-15px);
			transform: translateY(-15px);
		}
	}
	@keyframes bounce {
		0%,
		20%,
		50%,
		80%,
		100% {
			-webkit-transform: translateY(0);
			-ms-transform: translateY(0);
			transform: translateY(0);
		}
		40% {
			-webkit-transform: translateY(-30px);
			-ms-transform: translateY(-30px);
			transform: translateY(-30px);
		}
		60% {
			-webkit-transform: translateY(-15px);
			-ms-transform: translateY(-15px);
			transform: translateY(-15px);
		}
	}
	.bounce {
		-webkit-animation-name: bounce;
		animation-name: bounce;
	}
	@-webkit-keyframes flash {
		0%,
		50%,
		100% {
			opacity: 1;
		}
		25%,
		75% {
			opacity: 0;
		}
	}
	@keyframes flash {
		0%,
		50%,
		100% {
			opacity: 1;
		}
		25%,
		75% {
			opacity: 0;
		}
	}
	.flash {
		-webkit-animation-name: flash;
		animation-name: flash;
	}
	@-webkit-keyframes pulse {
		0% {
			-webkit-transform: scale(1);
			transform: scale(1);
		}
		50% {
			-webkit-transform: scale(1.1);
			transform: scale(1.1);
		}
		100% {
			-webkit-transform: scale(1);
			transform: scale(1);
		}
	}
	@keyframes pulse {
		0% {
			-webkit-transform: scale(1);
			-ms-transform: scale(1);
			transform: scale(1);
		}
		50% {
			-webkit-transform: scale(1.1);
			-ms-transform: scale(1.1);
			transform: scale(1.1);
		}
		100% {
			-webkit-transform: scale(1);
			-ms-transform: scale(1);
			transform: scale(1);
		}
	}
	.pulse {
		-webkit-animation-name: pulse;
		animation-name: pulse;
	}
	@-webkit-keyframes shake {
		0%,
		100% {
			-webkit-transform: translateX(0);
			transform: translateX(0);
		}
		10%,
		30%,
		50%,
		70%,
		90% {
			-webkit-transform: translateX(-10px);
			transform: translateX(-10px);
		}
		20%,
		40%,
		60%,
		80% {
			-webkit-transform: translateX(10px);
			transform: translateX(10px);
		}
	}
	@keyframes shake {
		0%,
		100% {
			-webkit-transform: translateX(0);
			-ms-transform: translateX(0);
			transform: translateX(0);
		}
		10%,
		30%,
		50%,
		70%,
		90% {
			-webkit-transform: translateX(-10px);
			-ms-transform: translateX(-10px);
			transform: translateX(-10px);
		}
		20%,
		40%,
		60%,
		80% {
			-webkit-transform: translateX(10px);
			-ms-transform: translateX(10px);
			transform: translateX(10px);
		}
	}
	.shake {
		-webkit-animation-name: shake;
		animation-name: shake;
	}
	@-webkit-keyframes swing {
		20% {
			-webkit-transform: rotate(15deg);
			transform: rotate(15deg);
		}
		40% {
			-webkit-transform: rotate(-10deg);
			transform: rotate(-10deg);
		}
		60% {
			-webkit-transform: rotate(5deg);
			transform: rotate(5deg);
		}
		80% {
			-webkit-transform: rotate(-5deg);
			transform: rotate(-5deg);
		}
		100% {
			-webkit-transform: rotate(0);
			transform: rotate(0);
		}
	}
	@keyframes swing {
		20% {
			-webkit-transform: rotate(15deg);
			-ms-transform: rotate(15deg);
			transform: rotate(15deg);
		}
		40% {
			-webkit-transform: rotate(-10deg);
			-ms-transform: rotate(-10deg);
			transform: rotate(-10deg);
		}
		60% {
			-webkit-transform: rotate(5deg);
			-ms-transform: rotate(5deg);
			transform: rotate(5deg);
		}
		80% {
			-webkit-transform: rotate(-5deg);
			-ms-transform: rotate(-5deg);
			transform: rotate(-5deg);
		}
		100% {
			-webkit-transform: rotate(0);
			-ms-transform: rotate(0);
			transform: rotate(0);
		}
	}
	.swing {
		-webkit-transform-origin: top center;
		-ms-transform-origin: top center;
		transform-origin: top center;
		-webkit-animation-name: swing;
		animation-name: swing;
	}
	@-webkit-keyframes tada {
		0% {
			-webkit-transform: scale(1);
			transform: scale(1);
		}
		10%,
		20% {
			-webkit-transform: scale(0.9) rotate(-3deg);
			transform: scale(0.9) rotate(-3deg);
		}
		30%,
		50%,
		70%,
		90% {
			-webkit-transform: scale(1.1) rotate(3deg);
			transform: scale(1.1) rotate(3deg);
		}
		40%,
		60%,
		80% {
			-webkit-transform: scale(1.1) rotate(-3deg);
			transform: scale(1.1) rotate(-3deg);
		}
		100% {
			-webkit-transform: scale(1) rotate(0);
			transform: scale(1) rotate(0);
		}
	}
	@keyframes tada {
		0% {
			-webkit-transform: scale(1);
			-ms-transform: scale(1);
			transform: scale(1);
		}
		10%,
		20% {
			-webkit-transform: scale(0.9) rotate(-3deg);
			-ms-transform: scale(0.9) rotate(-3deg);
			transform: scale(0.9) rotate(-3deg);
		}
		30%,
		50%,
		70%,
		90% {
			-webkit-transform: scale(1.1) rotate(3deg);
			-ms-transform: scale(1.1) rotate(3deg);
			transform: scale(1.1) rotate(3deg);
		}
		40%,
		60%,
		80% {
			-webkit-transform: scale(1.1) rotate(-3deg);
			-ms-transform: scale(1.1) rotate(-3deg);
			transform: scale(1.1) rotate(-3deg);
		}
		100% {
			-webkit-transform: scale(1) rotate(0);
			-ms-transform: scale(1) rotate(0);
			transform: scale(1) rotate(0);
		}
	}
	.tada {
		-webkit-animation-name: tada;
		animation-name: tada;
	}
	@-webkit-keyframes wobble {
		0% {
			-webkit-transform: translateX(0%);
			transform: translateX(0%);
		}
		15% {
			-webkit-transform: translateX(-25%) rotate(-5deg);
			transform: translateX(-25%) rotate(-5deg);
		}
		30% {
			-webkit-transform: translateX(20%) rotate(3deg);
			transform: translateX(20%) rotate(3deg);
		}
		45% {
			-webkit-transform: translateX(-15%) rotate(-3deg);
			transform: translateX(-15%) rotate(-3deg);
		}
		60% {
			-webkit-transform: translateX(10%) rotate(2deg);
			transform: translateX(10%) rotate(2deg);
		}
		75% {
			-webkit-transform: translateX(-5%) rotate(-1deg);
			transform: translateX(-5%) rotate(-1deg);
		}
		100% {
			-webkit-transform: translateX(0%);
			transform: translateX(0%);
		}
	}
	@keyframes wobble {
		0% {
			-webkit-transform: translateX(0%);
			-ms-transform: translateX(0%);
			transform: translateX(0%);
		}
		15% {
			-webkit-transform: translateX(-25%) rotate(-5deg);
			-ms-transform: translateX(-25%) rotate(-5deg);
			transform: translateX(-25%) rotate(-5deg);
		}
		30% {
			-webkit-transform: translateX(20%) rotate(3deg);
			-ms-transform: translateX(20%) rotate(3deg);
			transform: translateX(20%) rotate(3deg);
		}
		45% {
			-webkit-transform: translateX(-15%) rotate(-3deg);
			-ms-transform: translateX(-15%) rotate(-3deg);
			transform: translateX(-15%) rotate(-3deg);
		}
		60% {
			-webkit-transform: translateX(10%) rotate(2deg);
			-ms-transform: translateX(10%) rotate(2deg);
			transform: translateX(10%) rotate(2deg);
		}
		75% {
			-webkit-transform: translateX(-5%) rotate(-1deg);
			-ms-transform: translateX(-5%) rotate(-1deg);
			transform: translateX(-5%) rotate(-1deg);
		}
		100% {
			-webkit-transform: translateX(0%);
			-ms-transform: translateX(0%);
			transform: translateX(0%);
		}
	}
	.wobble {
		-webkit-animation-name: wobble;
		animation-name: wobble;
	}
	@-webkit-keyframes bounceIn {
		0% {
			opacity: 0;
			-webkit-transform: scale(0.3);
			transform: scale(0.3);
		}
		50% {
			opacity: 1;
			-webkit-transform: scale(1.05);
			transform: scale(1.05);
		}
		70% {
			-webkit-transform: scale(0.9);
			transform: scale(0.9);
		}
		100% {
			-webkit-transform: scale(1);
			transform: scale(1);
		}
	}
	@keyframes bounceIn {
		0% {
			opacity: 0;
			-webkit-transform: scale(0.3);
			-ms-transform: scale(0.3);
			transform: scale(0.3);
		}
		50% {
			opacity: 1;
			-webkit-transform: scale(1.05);
			-ms-transform: scale(1.05);
			transform: scale(1.05);
		}
		70% {
			-webkit-transform: scale(0.9);
			-ms-transform: scale(0.9);
			transform: scale(0.9);
		}
		100% {
			-webkit-transform: scale(1);
			-ms-transform: scale(1);
			transform: scale(1);
		}
	}
	.bounceIn {
		-webkit-animation-name: bounceIn;
		animation-name: bounceIn;
	}
	@-webkit-keyframes bounceInDown {
		0% {
			opacity: 0;
			-webkit-transform: translateY(-2000px);
			transform: translateY(-2000px);
		}
		60% {
			opacity: 1;
			-webkit-transform: translateY(30px);
			transform: translateY(30px);
		}
		80% {
			-webkit-transform: translateY(-10px);
			transform: translateY(-10px);
		}
		100% {
			-webkit-transform: translateY(0);
			transform: translateY(0);
		}
	}
	@keyframes bounceInDown {
		0% {
			opacity: 0;
			-webkit-transform: translateY(-2000px);
			-ms-transform: translateY(-2000px);
			transform: translateY(-2000px);
		}
		60% {
			opacity: 1;
			-webkit-transform: translateY(30px);
			-ms-transform: translateY(30px);
			transform: translateY(30px);
		}
		80% {
			-webkit-transform: translateY(-10px);
			-ms-transform: translateY(-10px);
			transform: translateY(-10px);
		}
		100% {
			-webkit-transform: translateY(0);
			-ms-transform: translateY(0);
			transform: translateY(0);
		}
	}
	.bounceInDown {
		-webkit-animation-name: bounceInDown;
		animation-name: bounceInDown;
	}
	@-webkit-keyframes bounceInLeft {
		0% {
			opacity: 0;
			-webkit-transform: translateX(-2000px);
			transform: translateX(-2000px);
		}
		60% {
			opacity: 1;
			-webkit-transform: translateX(30px);
			transform: translateX(30px);
		}
		80% {
			-webkit-transform: translateX(-10px);
			transform: translateX(-10px);
		}
		100% {
			-webkit-transform: translateX(0);
			transform: translateX(0);
		}
	}
	@keyframes bounceInLeft {
		0% {
			opacity: 0;
			-webkit-transform: translateX(-2000px);
			-ms-transform: translateX(-2000px);
			transform: translateX(-2000px);
		}
		60% {
			opacity: 1;
			-webkit-transform: translateX(30px);
			-ms-transform: translateX(30px);
			transform: translateX(30px);
		}
		80% {
			-webkit-transform: translateX(-10px);
			-ms-transform: translateX(-10px);
			transform: translateX(-10px);
		}
		100% {
			-webkit-transform: translateX(0);
			-ms-transform: translateX(0);
			transform: translateX(0);
		}
	}
	.bounceInLeft {
		-webkit-animation-name: bounceInLeft;
		animation-name: bounceInLeft;
	}
	@-webkit-keyframes bounceInRight {
		0% {
			opacity: 0;
			-webkit-transform: translateX(2000px);
			transform: translateX(2000px);
		}
		60% {
			opacity: 1;
			-webkit-transform: translateX(-30px);
			transform: translateX(-30px);
		}
		80% {
			-webkit-transform: translateX(10px);
			transform: translateX(10px);
		}
		100% {
			-webkit-transform: translateX(0);
			transform: translateX(0);
		}
	}
	@keyframes bounceInRight {
		0% {
			opacity: 0;
			-webkit-transform: translateX(2000px);
			-ms-transform: translateX(2000px);
			transform: translateX(2000px);
		}
		60% {
			opacity: 1;
			-webkit-transform: translateX(-30px);
			-ms-transform: translateX(-30px);
			transform: translateX(-30px);
		}
		80% {
			-webkit-transform: translateX(10px);
			-ms-transform: translateX(10px);
			transform: translateX(10px);
		}
		100% {
			-webkit-transform: translateX(0);
			-ms-transform: translateX(0);
			transform: translateX(0);
		}
	}
	.bounceInRight {
		-webkit-animation-name: bounceInRight;
		animation-name: bounceInRight;
	}
	@-webkit-keyframes bounceInUp {
		0% {
			opacity: 0;
			-webkit-transform: translateY(2000px);
			transform: translateY(2000px);
		}
		60% {
			opacity: 1;
			-webkit-transform: translateY(-30px);
			transform: translateY(-30px);
		}
		80% {
			-webkit-transform: translateY(10px);
			transform: translateY(10px);
		}
		100% {
			-webkit-transform: translateY(0);
			transform: translateY(0);
		}
	}
	@keyframes bounceInUp {
		0% {
			opacity: 0;
			-webkit-transform: translateY(2000px);
			-ms-transform: translateY(2000px);
			transform: translateY(2000px);
		}
		60% {
			opacity: 1;
			-webkit-transform: translateY(-30px);
			-ms-transform: translateY(-30px);
			transform: translateY(-30px);
		}
		80% {
			-webkit-transform: translateY(10px);
			-ms-transform: translateY(10px);
			transform: translateY(10px);
		}
		100% {
			-webkit-transform: translateY(0);
			-ms-transform: translateY(0);
			transform: translateY(0);
		}
	}
	.bounceInUp {
		-webkit-animation-name: bounceInUp;
		animation-name: bounceInUp;
	}
	@-webkit-keyframes bounceOut {
		0% {
			-webkit-transform: scale(1);
			transform: scale(1);
		}
		25% {
			-webkit-transform: scale(0.95);
			transform: scale(0.95);
		}
		50% {
			opacity: 1;
			-webkit-transform: scale(1.1);
			transform: scale(1.1);
		}
		100% {
			opacity: 0;
			-webkit-transform: scale(0.3);
			transform: scale(0.3);
		}
	}
	@keyframes bounceOut {
		0% {
			-webkit-transform: scale(1);
			-ms-transform: scale(1);
			transform: scale(1);
		}
		25% {
			-webkit-transform: scale(0.95);
			-ms-transform: scale(0.95);
			transform: scale(0.95);
		}
		50% {
			opacity: 1;
			-webkit-transform: scale(1.1);
			-ms-transform: scale(1.1);
			transform: scale(1.1);
		}
		100% {
			opacity: 0;
			-webkit-transform: scale(0.3);
			-ms-transform: scale(0.3);
			transform: scale(0.3);
		}
	}
	.bounceOut {
		-webkit-animation-name: bounceOut;
		animation-name: bounceOut;
	}
	@-webkit-keyframes bounceOutDown {
		0% {
			-webkit-transform: translateY(0);
			transform: translateY(0);
		}
		20% {
			opacity: 1;
			-webkit-transform: translateY(-20px);
			transform: translateY(-20px);
		}
		100% {
			opacity: 0;
			-webkit-transform: translateY(2000px);
			transform: translateY(2000px);
		}
	}
	@keyframes bounceOutDown {
		0% {
			-webkit-transform: translateY(0);
			-ms-transform: translateY(0);
			transform: translateY(0);
		}
		20% {
			opacity: 1;
			-webkit-transform: translateY(-20px);
			-ms-transform: translateY(-20px);
			transform: translateY(-20px);
		}
		100% {
			opacity: 0;
			-webkit-transform: translateY(2000px);
			-ms-transform: translateY(2000px);
			transform: translateY(2000px);
		}
	}
	.bounceOutDown {
		-webkit-animation-name: bounceOutDown;
		animation-name: bounceOutDown;
	}
	@-webkit-keyframes bounceOutLeft {
		0% {
			-webkit-transform: translateX(0);
			transform: translateX(0);
		}
		20% {
			opacity: 1;
			-webkit-transform: translateX(20px);
			transform: translateX(20px);
		}
		100% {
			opacity: 0;
			-webkit-transform: translateX(-2000px);
			transform: translateX(-2000px);
		}
	}
	@keyframes bounceOutLeft {
		0% {
			-webkit-transform: translateX(0);
			-ms-transform: translateX(0);
			transform: translateX(0);
		}
		20% {
			opacity: 1;
			-webkit-transform: translateX(20px);
			-ms-transform: translateX(20px);
			transform: translateX(20px);
		}
		100% {
			opacity: 0;
			-webkit-transform: translateX(-2000px);
			-ms-transform: translateX(-2000px);
			transform: translateX(-2000px);
		}
	}
	.bounceOutLeft {
		-webkit-animation-name: bounceOutLeft;
		animation-name: bounceOutLeft;
	}
	@-webkit-keyframes bounceOutRight {
		0% {
			-webkit-transform: translateX(0);
			transform: translateX(0);
		}
		20% {
			opacity: 1;
			-webkit-transform: translateX(-20px);
			transform: translateX(-20px);
		}
		100% {
			opacity: 0;
			-webkit-transform: translateX(2000px);
			transform: translateX(2000px);
		}
	}
	@keyframes bounceOutRight {
		0% {
			-webkit-transform: translateX(0);
			-ms-transform: translateX(0);
			transform: translateX(0);
		}
		20% {
			opacity: 1;
			-webkit-transform: translateX(-20px);
			-ms-transform: translateX(-20px);
			transform: translateX(-20px);
		}
		100% {
			opacity: 0;
			-webkit-transform: translateX(2000px);
			-ms-transform: translateX(2000px);
			transform: translateX(2000px);
		}
	}
	.bounceOutRight {
		-webkit-animation-name: bounceOutRight;
		animation-name: bounceOutRight;
	}
	@-webkit-keyframes bounceOutUp {
		0% {
			-webkit-transform: translateY(0);
			transform: translateY(0);
		}
		20% {
			opacity: 1;
			-webkit-transform: translateY(20px);
			transform: translateY(20px);
		}
		100% {
			opacity: 0;
			-webkit-transform: translateY(-2000px);
			transform: translateY(-2000px);
		}
	}
	@keyframes bounceOutUp {
		0% {
			-webkit-transform: translateY(0);
			-ms-transform: translateY(0);
			transform: translateY(0);
		}
		20% {
			opacity: 1;
			-webkit-transform: translateY(20px);
			-ms-transform: translateY(20px);
			transform: translateY(20px);
		}
		100% {
			opacity: 0;
			-webkit-transform: translateY(-2000px);
			-ms-transform: translateY(-2000px);
			transform: translateY(-2000px);
		}
	}
	.bounceOutUp {
		-webkit-animation-name: bounceOutUp;
		animation-name: bounceOutUp;
	}
	@-webkit-keyframes fadeIn {
		0% {
			opacity: 0;
		}
		100% {
			opacity: 1;
		}
	}
	@keyframes fadeIn {
		0% {
			opacity: 0;
		}
		100% {
			opacity: 1;
		}
	}
	.fadeIn {
		-webkit-animation-name: fadeIn;
		animation-name: fadeIn;
	}
	@-webkit-keyframes fadeInDown {
		0% {
			opacity: 0;
			-webkit-transform: translateY(-20px);
			transform: translateY(-20px);
		}
		100% {
			opacity: 1;
			-webkit-transform: translateY(0);
			transform: translateY(0);
		}
	}
	@keyframes fadeInDown {
		0% {
			opacity: 0;
			-webkit-transform: translateY(-20px);
			-ms-transform: translateY(-20px);
			transform: translateY(-20px);
		}
		100% {
			opacity: 1;
			-webkit-transform: translateY(0);
			-ms-transform: translateY(0);
			transform: translateY(0);
		}
	}
	.fadeInDown {
		-webkit-animation-name: fadeInDown;
		animation-name: fadeInDown;
	}
	@-webkit-keyframes fadeInDownBig {
		0% {
			opacity: 0;
			-webkit-transform: translateY(-2000px);
			transform: translateY(-2000px);
		}
		100% {
			opacity: 1;
			-webkit-transform: translateY(0);
			transform: translateY(0);
		}
	}
	@keyframes fadeInDownBig {
		0% {
			opacity: 0;
			-webkit-transform: translateY(-2000px);
			-ms-transform: translateY(-2000px);
			transform: translateY(-2000px);
		}
		100% {
			opacity: 1;
			-webkit-transform: translateY(0);
			-ms-transform: translateY(0);
			transform: translateY(0);
		}
	}
	.fadeInDownBig {
		-webkit-animation-name: fadeInDownBig;
		animation-name: fadeInDownBig;
	}
	@-webkit-keyframes fadeInLeft {
		0% {
			opacity: 0;
			-webkit-transform: translateX(-20px);
			transform: translateX(-20px);
		}
		100% {
			opacity: 1;
			-webkit-transform: translateX(0);
			transform: translateX(0);
		}
	}
	@keyframes fadeInLeft {
		0% {
			opacity: 0;
			-webkit-transform: translateX(-20px);
			-ms-transform: translateX(-20px);
			transform: translateX(-20px);
		}
		100% {
			opacity: 1;
			-webkit-transform: translateX(0);
			-ms-transform: translateX(0);
			transform: translateX(0);
		}
	}
	.fadeInLeft {
		-webkit-animation-name: fadeInLeft;
		animation-name: fadeInLeft;
	}
	@-webkit-keyframes fadeInLeftBig {
		0% {
			opacity: 0;
			-webkit-transform: translateX(-2000px);
			transform: translateX(-2000px);
		}
		100% {
			opacity: 1;
			-webkit-transform: translateX(0);
			transform: translateX(0);
		}
	}
	@keyframes fadeInLeftBig {
		0% {
			opacity: 0;
			-webkit-transform: translateX(-2000px);
			-ms-transform: translateX(-2000px);
			transform: translateX(-2000px);
		}
		100% {
			opacity: 1;
			-webkit-transform: translateX(0);
			-ms-transform: translateX(0);
			transform: translateX(0);
		}
	}
	.fadeInLeftBig {
		-webkit-animation-name: fadeInLeftBig;
		animation-name: fadeInLeftBig;
	}
	@-webkit-keyframes fadeInRight {
		0% {
			opacity: 0;
			-webkit-transform: translateX(20px);
			transform: translateX(20px);
		}
		100% {
			opacity: 1;
			-webkit-transform: translateX(0);
			transform: translateX(0);
		}
	}
	@keyframes fadeInRight {
		0% {
			opacity: 0;
			-webkit-transform: translateX(20px);
			-ms-transform: translateX(20px);
			transform: translateX(20px);
		}
		100% {
			opacity: 1;
			-webkit-transform: translateX(0);
			-ms-transform: translateX(0);
			transform: translateX(0);
		}
	}
	.fadeInRight {
		-webkit-animation-name: fadeInRight;
		animation-name: fadeInRight;
	}
	@-webkit-keyframes fadeInRightBig {
		0% {
			opacity: 0;
			-webkit-transform: translateX(2000px);
			transform: translateX(2000px);
		}
		100% {
			opacity: 1;
			-webkit-transform: translateX(0);
			transform: translateX(0);
		}
	}
	@keyframes fadeInRightBig {
		0% {
			opacity: 0;
			-webkit-transform: translateX(2000px);
			-ms-transform: translateX(2000px);
			transform: translateX(2000px);
		}
		100% {
			opacity: 1;
			-webkit-transform: translateX(0);
			-ms-transform: translateX(0);
			transform: translateX(0);
		}
	}
	.fadeInRightBig {
		-webkit-animation-name: fadeInRightBig;
		animation-name: fadeInRightBig;
	}
	@-webkit-keyframes fadeInUp {
		0% {
			opacity: 0;
			-webkit-transform: translateY(20px);
			transform: translateY(20px);
		}
		100% {
			opacity: 1;
			-webkit-transform: translateY(0);
			transform: translateY(0);
		}
	}
	@keyframes fadeInUp {
		0% {
			opacity: 0;
			-webkit-transform: translateY(20px);
			-ms-transform: translateY(20px);
			transform: translateY(20px);
		}
		100% {
			opacity: 1;
			-webkit-transform: translateY(0);
			-ms-transform: translateY(0);
			transform: translateY(0);
		}
	}
	.fadeInUp {
		-webkit-animation-name: fadeInUp;
		animation-name: fadeInUp;
	}
	@-webkit-keyframes fadeInUpBig {
		0% {
			opacity: 0;
			-webkit-transform: translateY(2000px);
			transform: translateY(2000px);
		}
		100% {
			opacity: 1;
			-webkit-transform: translateY(0);
			transform: translateY(0);
		}
	}
	@keyframes fadeInUpBig {
		0% {
			opacity: 0;
			-webkit-transform: translateY(2000px);
			-ms-transform: translateY(2000px);
			transform: translateY(2000px);
		}
		100% {
			opacity: 1;
			-webkit-transform: translateY(0);
			-ms-transform: translateY(0);
			transform: translateY(0);
		}
	}
	.fadeInUpBig {
		-webkit-animation-name: fadeInUpBig;
		animation-name: fadeInUpBig;
	}
	@-webkit-keyframes fadeOut {
		0% {
			opacity: 1;
		}
		100% {
			opacity: 0;
		}
	}
	@keyframes fadeOut {
		0% {
			opacity: 1;
		}
		100% {
			opacity: 0;
		}
	}
	.fadeOut {
		-webkit-animation-name: fadeOut;
		animation-name: fadeOut;
	}
	@-webkit-keyframes fadeOutDown {
		0% {
			opacity: 1;
			-webkit-transform: translateY(0);
			transform: translateY(0);
		}
		100% {
			opacity: 0;
			-webkit-transform: translateY(20px);
			transform: translateY(20px);
		}
	}
	@keyframes fadeOutDown {
		0% {
			opacity: 1;
			-webkit-transform: translateY(0);
			-ms-transform: translateY(0);
			transform: translateY(0);
		}
		100% {
			opacity: 0;
			-webkit-transform: translateY(20px);
			-ms-transform: translateY(20px);
			transform: translateY(20px);
		}
	}
	.fadeOutDown {
		-webkit-animation-name: fadeOutDown;
		animation-name: fadeOutDown;
	}
	@-webkit-keyframes fadeOutDownBig {
		0% {
			opacity: 1;
			-webkit-transform: translateY(0);
			transform: translateY(0);
		}
		100% {
			opacity: 0;
			-webkit-transform: translateY(2000px);
			transform: translateY(2000px);
		}
	}
	@keyframes fadeOutDownBig {
		0% {
			opacity: 1;
			-webkit-transform: translateY(0);
			-ms-transform: translateY(0);
			transform: translateY(0);
		}
		100% {
			opacity: 0;
			-webkit-transform: translateY(2000px);
			-ms-transform: translateY(2000px);
			transform: translateY(2000px);
		}
	}
	.fadeOutDownBig {
		-webkit-animation-name: fadeOutDownBig;
		animation-name: fadeOutDownBig;
	}
	@-webkit-keyframes fadeOutLeft {
		0% {
			opacity: 1;
			-webkit-transform: translateX(0);
			transform: translateX(0);
		}
		100% {
			opacity: 0;
			-webkit-transform: translateX(-20px);
			transform: translateX(-20px);
		}
	}
	@keyframes fadeOutLeft {
		0% {
			opacity: 1;
			-webkit-transform: translateX(0);
			-ms-transform: translateX(0);
			transform: translateX(0);
		}
		100% {
			opacity: 0;
			-webkit-transform: translateX(-20px);
			-ms-transform: translateX(-20px);
			transform: translateX(-20px);
		}
	}
	.fadeOutLeft {
		-webkit-animation-name: fadeOutLeft;
		animation-name: fadeOutLeft;
	}
	@-webkit-keyframes fadeOutLeftBig {
		0% {
			opacity: 1;
			-webkit-transform: translateX(0);
			transform: translateX(0);
		}
		100% {
			opacity: 0;
			-webkit-transform: translateX(-2000px);
			transform: translateX(-2000px);
		}
	}
	@keyframes fadeOutLeftBig {
		0% {
			opacity: 1;
			-webkit-transform: translateX(0);
			-ms-transform: translateX(0);
			transform: translateX(0);
		}
		100% {
			opacity: 0;
			-webkit-transform: translateX(-2000px);
			-ms-transform: translateX(-2000px);
			transform: translateX(-2000px);
		}
	}
	.fadeOutLeftBig {
		-webkit-animation-name: fadeOutLeftBig;
		animation-name: fadeOutLeftBig;
	}
	@-webkit-keyframes fadeOutRight {
		0% {
			opacity: 1;
			-webkit-transform: translateX(0);
			transform: translateX(0);
		}
		100% {
			opacity: 0;
			-webkit-transform: translateX(20px);
			transform: translateX(20px);
		}
	}
	@keyframes fadeOutRight {
		0% {
			opacity: 1;
			-webkit-transform: translateX(0);
			-ms-transform: translateX(0);
			transform: translateX(0);
		}
		100% {
			opacity: 0;
			-webkit-transform: translateX(20px);
			-ms-transform: translateX(20px);
			transform: translateX(20px);
		}
	}
	.fadeOutRight {
		-webkit-animation-name: fadeOutRight;
		animation-name: fadeOutRight;
	}
	@-webkit-keyframes fadeOutRightBig {
		0% {
			opacity: 1;
			-webkit-transform: translateX(0);
			transform: translateX(0);
		}
		100% {
			opacity: 0;
			-webkit-transform: translateX(2000px);
			transform: translateX(2000px);
		}
	}
	@keyframes fadeOutRightBig {
		0% {
			opacity: 1;
			-webkit-transform: translateX(0);
			-ms-transform: translateX(0);
			transform: translateX(0);
		}
		100% {
			opacity: 0;
			-webkit-transform: translateX(2000px);
			-ms-transform: translateX(2000px);
			transform: translateX(2000px);
		}
	}
	.fadeOutRightBig {
		-webkit-animation-name: fadeOutRightBig;
		animation-name: fadeOutRightBig;
	}
	@-webkit-keyframes fadeOutUp {
		0% {
			opacity: 1;
			-webkit-transform: translateY(0);
			transform: translateY(0);
		}
		100% {
			opacity: 0;
			-webkit-transform: translateY(-20px);
			transform: translateY(-20px);
		}
	}
	@keyframes fadeOutUp {
		0% {
			opacity: 1;
			-webkit-transform: translateY(0);
			-ms-transform: translateY(0);
			transform: translateY(0);
		}
		100% {
			opacity: 0;
			-webkit-transform: translateY(-20px);
			-ms-transform: translateY(-20px);
			transform: translateY(-20px);
		}
	}
	.fadeOutUp {
		-webkit-animation-name: fadeOutUp;
		animation-name: fadeOutUp;
	}
	@-webkit-keyframes fadeOutUpBig {
		0% {
			opacity: 1;
			-webkit-transform: translateY(0);
			transform: translateY(0);
		}
		100% {
			opacity: 0;
			-webkit-transform: translateY(-2000px);
			transform: translateY(-2000px);
		}
	}
	@keyframes fadeOutUpBig {
		0% {
			opacity: 1;
			-webkit-transform: translateY(0);
			-ms-transform: translateY(0);
			transform: translateY(0);
		}
		100% {
			opacity: 0;
			-webkit-transform: translateY(-2000px);
			-ms-transform: translateY(-2000px);
			transform: translateY(-2000px);
		}
	}
	.fadeOutUpBig {
		-webkit-animation-name: fadeOutUpBig;
		animation-name: fadeOutUpBig;
	}
	@-webkit-keyframes flip {
		0% {
			-webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
			transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
		}
		0%,
		40% {
			-webkit-animation-timing-function: ease-out;
			animation-timing-function: ease-out;
		}
		40% {
			-webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
			transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
		}
		50% {
			-webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
			transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
			-webkit-animation-timing-function: ease-in;
			animation-timing-function: ease-in;
		}
		80% {
			-webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
			transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
		}
		80%,
		100% {
			-webkit-animation-timing-function: ease-in;
			animation-timing-function: ease-in;
		}
		100% {
			-webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
			transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
		}
	}
	@keyframes flip {
		0% {
			-webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
			-ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
			transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
		}
		0%,
		40% {
			-webkit-animation-timing-function: ease-out;
			animation-timing-function: ease-out;
		}
		40% {
			-webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
			-ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
			transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
		}
		50% {
			-webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
			-ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
			transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
			-webkit-animation-timing-function: ease-in;
			animation-timing-function: ease-in;
		}
		80% {
			-webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
			-ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
			transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
		}
		80%,
		100% {
			-webkit-animation-timing-function: ease-in;
			animation-timing-function: ease-in;
		}
		100% {
			-webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
			-ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
			transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
		}
	}
	.animated.flip {
		-webkit-backface-visibility: visible;
		-ms-backface-visibility: visible;
		backface-visibility: visible;
		-webkit-animation-name: flip;
		animation-name: flip;
	}
	@-webkit-keyframes flipInX {
		0% {
			-webkit-transform: perspective(400px) rotateX(90deg);
			transform: perspective(400px) rotateX(90deg);
			opacity: 0;
		}
		40% {
			-webkit-transform: perspective(400px) rotateX(-10deg);
			transform: perspective(400px) rotateX(-10deg);
		}
		70% {
			-webkit-transform: perspective(400px) rotateX(10deg);
			transform: perspective(400px) rotateX(10deg);
		}
		100% {
			-webkit-transform: perspective(400px) rotateX(0);
			transform: perspective(400px) rotateX(0);
			opacity: 1;
		}
	}
	@keyframes flipInX {
		0% {
			-webkit-transform: perspective(400px) rotateX(90deg);
			-ms-transform: perspective(400px) rotateX(90deg);
			transform: perspective(400px) rotateX(90deg);
			opacity: 0;
		}
		40% {
			-webkit-transform: perspective(400px) rotateX(-10deg);
			-ms-transform: perspective(400px) rotateX(-10deg);
			transform: perspective(400px) rotateX(-10deg);
		}
		70% {
			-webkit-transform: perspective(400px) rotateX(10deg);
			-ms-transform: perspective(400px) rotateX(10deg);
			transform: perspective(400px) rotateX(10deg);
		}
		100% {
			-webkit-transform: perspective(400px) rotateX(0);
			-ms-transform: perspective(400px) rotateX(0);
			transform: perspective(400px) rotateX(0);
			opacity: 1;
		}
	}
	.flipInX {
		-webkit-backface-visibility: visible !important;
		-ms-backface-visibility: visible !important;
		backface-visibility: visible !important;
		-webkit-animation-name: flipInX;
		animation-name: flipInX;
	}
	@-webkit-keyframes flipInY {
		0% {
			-webkit-transform: perspective(400px) rotateY(90deg);
			transform: perspective(400px) rotateY(90deg);
			opacity: 0;
		}
		40% {
			-webkit-transform: perspective(400px) rotateY(-10deg);
			transform: perspective(400px) rotateY(-10deg);
		}
		70% {
			-webkit-transform: perspective(400px) rotateY(10deg);
			transform: perspective(400px) rotateY(10deg);
		}
		100% {
			-webkit-transform: perspective(400px) rotateY(0);
			transform: perspective(400px) rotateY(0);
			opacity: 1;
		}
	}
	@keyframes flipInY {
		0% {
			-webkit-transform: perspective(400px) rotateY(90deg);
			-ms-transform: perspective(400px) rotateY(90deg);
			transform: perspective(400px) rotateY(90deg);
			opacity: 0;
		}
		40% {
			-webkit-transform: perspective(400px) rotateY(-10deg);
			-ms-transform: perspective(400px) rotateY(-10deg);
			transform: perspective(400px) rotateY(-10deg);
		}
		70% {
			-webkit-transform: perspective(400px) rotateY(10deg);
			-ms-transform: perspective(400px) rotateY(10deg);
			transform: perspective(400px) rotateY(10deg);
		}
		100% {
			-webkit-transform: perspective(400px) rotateY(0);
			-ms-transform: perspective(400px) rotateY(0);
			transform: perspective(400px) rotateY(0);
			opacity: 1;
		}
	}
	.flipInY {
		-webkit-backface-visibility: visible !important;
		-ms-backface-visibility: visible !important;
		backface-visibility: visible !important;
		-webkit-animation-name: flipInY;
		animation-name: flipInY;
	}
	@-webkit-keyframes flipOutX {
		0% {
			-webkit-transform: perspective(400px) rotateX(0);
			transform: perspective(400px) rotateX(0);
			opacity: 1;
		}
		100% {
			-webkit-transform: perspective(400px) rotateX(90deg);
			transform: perspective(400px) rotateX(90deg);
			opacity: 0;
		}
	}
	@keyframes flipOutX {
		0% {
			-webkit-transform: perspective(400px) rotateX(0);
			-ms-transform: perspective(400px) rotateX(0);
			transform: perspective(400px) rotateX(0);
			opacity: 1;
		}
		100% {
			-webkit-transform: perspective(400px) rotateX(90deg);
			-ms-transform: perspective(400px) rotateX(90deg);
			transform: perspective(400px) rotateX(90deg);
			opacity: 0;
		}
	}
	.flipOutX {
		-webkit-animation-name: flipOutX;
		animation-name: flipOutX;
		-webkit-backface-visibility: visible !important;
		-ms-backface-visibility: visible !important;
		backface-visibility: visible !important;
	}
	@-webkit-keyframes flipOutY {
		0% {
			-webkit-transform: perspective(400px) rotateY(0);
			transform: perspective(400px) rotateY(0);
			opacity: 1;
		}
		100% {
			-webkit-transform: perspective(400px) rotateY(90deg);
			transform: perspective(400px) rotateY(90deg);
			opacity: 0;
		}
	}
	@keyframes flipOutY {
		0% {
			-webkit-transform: perspective(400px) rotateY(0);
			-ms-transform: perspective(400px) rotateY(0);
			transform: perspective(400px) rotateY(0);
			opacity: 1;
		}
		100% {
			-webkit-transform: perspective(400px) rotateY(90deg);
			-ms-transform: perspective(400px) rotateY(90deg);
			transform: perspective(400px) rotateY(90deg);
			opacity: 0;
		}
	}
	.flipOutY {
		-webkit-backface-visibility: visible !important;
		-ms-backface-visibility: visible !important;
		backface-visibility: visible !important;
		-webkit-animation-name: flipOutY;
		animation-name: flipOutY;
	}
	@-webkit-keyframes lightSpeedIn {
		0% {
			-webkit-transform: translateX(100%) skewX(-30deg);
			transform: translateX(100%) skewX(-30deg);
			opacity: 0;
		}
		60% {
			-webkit-transform: translateX(-20%) skewX(30deg);
			transform: translateX(-20%) skewX(30deg);
			opacity: 1;
		}
		80% {
			-webkit-transform: translateX(0%) skewX(-15deg);
			transform: translateX(0%) skewX(-15deg);
			opacity: 1;
		}
		100% {
			-webkit-transform: translateX(0%) skewX(0);
			transform: translateX(0%) skewX(0);
			opacity: 1;
		}
	}
	@keyframes lightSpeedIn {
		0% {
			-webkit-transform: translateX(100%) skewX(-30deg);
			-ms-transform: translateX(100%) skewX(-30deg);
			transform: translateX(100%) skewX(-30deg);
			opacity: 0;
		}
		60% {
			-webkit-transform: translateX(-20%) skewX(30deg);
			-ms-transform: translateX(-20%) skewX(30deg);
			transform: translateX(-20%) skewX(30deg);
			opacity: 1;
		}
		80% {
			-webkit-transform: translateX(0%) skewX(-15deg);
			-ms-transform: translateX(0%) skewX(-15deg);
			transform: translateX(0%) skewX(-15deg);
			opacity: 1;
		}
		100% {
			-webkit-transform: translateX(0%) skewX(0);
			-ms-transform: translateX(0%) skewX(0);
			transform: translateX(0%) skewX(0);
			opacity: 1;
		}
	}
	.lightSpeedIn {
		-webkit-animation-name: lightSpeedIn;
		animation-name: lightSpeedIn;
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}
	@-webkit-keyframes lightSpeedOut {
		0% {
			-webkit-transform: translateX(0%) skewX(0);
			transform: translateX(0%) skewX(0);
			opacity: 1;
		}
		100% {
			-webkit-transform: translateX(100%) skewX(-30deg);
			transform: translateX(100%) skewX(-30deg);
			opacity: 0;
		}
	}
	@keyframes lightSpeedOut {
		0% {
			-webkit-transform: translateX(0%) skewX(0);
			-ms-transform: translateX(0%) skewX(0);
			transform: translateX(0%) skewX(0);
			opacity: 1;
		}
		100% {
			-webkit-transform: translateX(100%) skewX(-30deg);
			-ms-transform: translateX(100%) skewX(-30deg);
			transform: translateX(100%) skewX(-30deg);
			opacity: 0;
		}
	}
	.lightSpeedOut {
		-webkit-animation-name: lightSpeedOut;
		animation-name: lightSpeedOut;
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	@-webkit-keyframes rotateIn {
		0% {
			-webkit-transform: rotate(-200deg);
			transform: rotate(-200deg);
			opacity: 0;
		}
		0%,
		100% {
			-webkit-transform-origin: center center;
			transform-origin: center center;
		}
		100% {
			-webkit-transform: rotate(0);
			transform: rotate(0);
			opacity: 1;
		}
	}
	@keyframes rotateIn {
		0% {
			-webkit-transform: rotate(-200deg);
			-ms-transform: rotate(-200deg);
			transform: rotate(-200deg);
			opacity: 0;
		}
		0%,
		100% {
			-webkit-transform-origin: center center;
			-ms-transform-origin: center center;
			transform-origin: center center;
		}
		100% {
			-webkit-transform: rotate(0);
			-ms-transform: rotate(0);
			transform: rotate(0);
			opacity: 1;
		}
	}
	.rotateIn {
		-webkit-animation-name: rotateIn;
		animation-name: rotateIn;
	}
	@-webkit-keyframes rotateInDownLeft {
		0% {
			-webkit-transform: rotate(-90deg);
			transform: rotate(-90deg);
			opacity: 0;
		}
		0%,
		100% {
			-webkit-transform-origin: left bottom;
			transform-origin: left bottom;
		}
		100% {
			-webkit-transform: rotate(0);
			transform: rotate(0);
			opacity: 1;
		}
	}
	@keyframes rotateInDownLeft {
		0% {
			-webkit-transform: rotate(-90deg);
			-ms-transform: rotate(-90deg);
			transform: rotate(-90deg);
			opacity: 0;
		}
		0%,
		100% {
			-webkit-transform-origin: left bottom;
			-ms-transform-origin: left bottom;
			transform-origin: left bottom;
		}
		100% {
			-webkit-transform: rotate(0);
			-ms-transform: rotate(0);
			transform: rotate(0);
			opacity: 1;
		}
	}
	.rotateInDownLeft {
		-webkit-animation-name: rotateInDownLeft;
		animation-name: rotateInDownLeft;
	}
	@-webkit-keyframes rotateInDownRight {
		0% {
			-webkit-transform: rotate(90deg);
			transform: rotate(90deg);
			opacity: 0;
		}
		0%,
		100% {
			-webkit-transform-origin: right bottom;
			transform-origin: right bottom;
		}
		100% {
			-webkit-transform: rotate(0);
			transform: rotate(0);
			opacity: 1;
		}
	}
	@keyframes rotateInDownRight {
		0% {
			-webkit-transform: rotate(90deg);
			-ms-transform: rotate(90deg);
			transform: rotate(90deg);
			opacity: 0;
		}
		0%,
		100% {
			-webkit-transform-origin: right bottom;
			-ms-transform-origin: right bottom;
			transform-origin: right bottom;
		}
		100% {
			-webkit-transform: rotate(0);
			-ms-transform: rotate(0);
			transform: rotate(0);
			opacity: 1;
		}
	}
	.rotateInDownRight {
		-webkit-animation-name: rotateInDownRight;
		animation-name: rotateInDownRight;
	}
	@-webkit-keyframes rotateInUpLeft {
		0% {
			-webkit-transform: rotate(90deg);
			transform: rotate(90deg);
			opacity: 0;
		}
		0%,
		100% {
			-webkit-transform-origin: left bottom;
			transform-origin: left bottom;
		}
		100% {
			-webkit-transform: rotate(0);
			transform: rotate(0);
			opacity: 1;
		}
	}
	@keyframes rotateInUpLeft {
		0% {
			-webkit-transform: rotate(90deg);
			-ms-transform: rotate(90deg);
			transform: rotate(90deg);
			opacity: 0;
		}
		0%,
		100% {
			-webkit-transform-origin: left bottom;
			-ms-transform-origin: left bottom;
			transform-origin: left bottom;
		}
		100% {
			-webkit-transform: rotate(0);
			-ms-transform: rotate(0);
			transform: rotate(0);
			opacity: 1;
		}
	}
	.rotateInUpLeft {
		-webkit-animation-name: rotateInUpLeft;
		animation-name: rotateInUpLeft;
	}
	@-webkit-keyframes rotateInUpRight {
		0% {
			-webkit-transform: rotate(-90deg);
			transform: rotate(-90deg);
			opacity: 0;
		}
		0%,
		100% {
			-webkit-transform-origin: right bottom;
			transform-origin: right bottom;
		}
		100% {
			-webkit-transform: rotate(0);
			transform: rotate(0);
			opacity: 1;
		}
	}
	@keyframes rotateInUpRight {
		0% {
			-webkit-transform: rotate(-90deg);
			-ms-transform: rotate(-90deg);
			transform: rotate(-90deg);
			opacity: 0;
		}
		0%,
		100% {
			-webkit-transform-origin: right bottom;
			-ms-transform-origin: right bottom;
			transform-origin: right bottom;
		}
		100% {
			-webkit-transform: rotate(0);
			-ms-transform: rotate(0);
			transform: rotate(0);
			opacity: 1;
		}
	}
	.rotateInUpRight {
		-webkit-animation-name: rotateInUpRight;
		animation-name: rotateInUpRight;
	}
	@-webkit-keyframes rotateOut {
		0% {
			-webkit-transform: rotate(0);
			transform: rotate(0);
			opacity: 1;
		}
		0%,
		100% {
			-webkit-transform-origin: center center;
			transform-origin: center center;
		}
		100% {
			-webkit-transform: rotate(200deg);
			transform: rotate(200deg);
			opacity: 0;
		}
	}
	@keyframes rotateOut {
		0% {
			-webkit-transform: rotate(0);
			-ms-transform: rotate(0);
			transform: rotate(0);
			opacity: 1;
		}
		0%,
		100% {
			-webkit-transform-origin: center center;
			-ms-transform-origin: center center;
			transform-origin: center center;
		}
		100% {
			-webkit-transform: rotate(200deg);
			-ms-transform: rotate(200deg);
			transform: rotate(200deg);
			opacity: 0;
		}
	}
	.rotateOut {
		-webkit-animation-name: rotateOut;
		animation-name: rotateOut;
	}
	@-webkit-keyframes rotateOutDownLeft {
		0% {
			-webkit-transform: rotate(0);
			transform: rotate(0);
			opacity: 1;
		}
		0%,
		100% {
			-webkit-transform-origin: left bottom;
			transform-origin: left bottom;
		}
		100% {
			-webkit-transform: rotate(90deg);
			transform: rotate(90deg);
			opacity: 0;
		}
	}
	@keyframes rotateOutDownLeft {
		0% {
			-webkit-transform: rotate(0);
			-ms-transform: rotate(0);
			transform: rotate(0);
			opacity: 1;
		}
		0%,
		100% {
			-webkit-transform-origin: left bottom;
			-ms-transform-origin: left bottom;
			transform-origin: left bottom;
		}
		100% {
			-webkit-transform: rotate(90deg);
			-ms-transform: rotate(90deg);
			transform: rotate(90deg);
			opacity: 0;
		}
	}
	.rotateOutDownLeft {
		-webkit-animation-name: rotateOutDownLeft;
		animation-name: rotateOutDownLeft;
	}
	@-webkit-keyframes rotateOutDownRight {
		0% {
			-webkit-transform: rotate(0);
			transform: rotate(0);
			opacity: 1;
		}
		0%,
		100% {
			-webkit-transform-origin: right bottom;
			transform-origin: right bottom;
		}
		100% {
			-webkit-transform: rotate(-90deg);
			transform: rotate(-90deg);
			opacity: 0;
		}
	}
	@keyframes rotateOutDownRight {
		0% {
			-webkit-transform: rotate(0);
			-ms-transform: rotate(0);
			transform: rotate(0);
			opacity: 1;
		}
		0%,
		100% {
			-webkit-transform-origin: right bottom;
			-ms-transform-origin: right bottom;
			transform-origin: right bottom;
		}
		100% {
			-webkit-transform: rotate(-90deg);
			-ms-transform: rotate(-90deg);
			transform: rotate(-90deg);
			opacity: 0;
		}
	}
	.rotateOutDownRight {
		-webkit-animation-name: rotateOutDownRight;
		animation-name: rotateOutDownRight;
	}
	@-webkit-keyframes rotateOutUpLeft {
		0% {
			-webkit-transform: rotate(0);
			transform: rotate(0);
			opacity: 1;
		}
		0%,
		100% {
			-webkit-transform-origin: left bottom;
			transform-origin: left bottom;
		}
		100% {
			-webkit-transform: rotate(-90deg);
			transform: rotate(-90deg);
			opacity: 0;
		}
	}
	@keyframes rotateOutUpLeft {
		0% {
			-webkit-transform: rotate(0);
			-ms-transform: rotate(0);
			transform: rotate(0);
			opacity: 1;
		}
		0%,
		100% {
			-webkit-transform-origin: left bottom;
			-ms-transform-origin: left bottom;
			transform-origin: left bottom;
		}
		100% {
			-webkit-transform: rotate(-90deg);
			-ms-transform: rotate(-90deg);
			transform: rotate(-90deg);
			opacity: 0;
		}
	}
	.rotateOutUpLeft {
		-webkit-animation-name: rotateOutUpLeft;
		animation-name: rotateOutUpLeft;
	}
	@-webkit-keyframes rotateOutUpRight {
		0% {
			-webkit-transform: rotate(0);
			transform: rotate(0);
			opacity: 1;
		}
		0%,
		100% {
			-webkit-transform-origin: right bottom;
			transform-origin: right bottom;
		}
		100% {
			-webkit-transform: rotate(90deg);
			transform: rotate(90deg);
			opacity: 0;
		}
	}
	@keyframes rotateOutUpRight {
		0% {
			-webkit-transform: rotate(0);
			-ms-transform: rotate(0);
			transform: rotate(0);
			opacity: 1;
		}
		0%,
		100% {
			-webkit-transform-origin: right bottom;
			-ms-transform-origin: right bottom;
			transform-origin: right bottom;
		}
		100% {
			-webkit-transform: rotate(90deg);
			-ms-transform: rotate(90deg);
			transform: rotate(90deg);
			opacity: 0;
		}
	}
	.rotateOutUpRight {
		-webkit-animation-name: rotateOutUpRight;
		animation-name: rotateOutUpRight;
	}
	@-webkit-keyframes slideInDown {
		0% {
			opacity: 0;
			-webkit-transform: translateY(-2000px);
			transform: translateY(-2000px);
		}
		100% {
			-webkit-transform: translateY(0);
			transform: translateY(0);
		}
	}
	@keyframes slideInDown {
		0% {
			opacity: 0;
			-webkit-transform: translateY(-2000px);
			-ms-transform: translateY(-2000px);
			transform: translateY(-2000px);
		}
		100% {
			-webkit-transform: translateY(0);
			-ms-transform: translateY(0);
			transform: translateY(0);
		}
	}
	.slideInDown {
		-webkit-animation-name: slideInDown;
		animation-name: slideInDown;
	}
	@-webkit-keyframes slideInLeft {
		0% {
			opacity: 0;
			-webkit-transform: translateX(-2000px);
			transform: translateX(-2000px);
		}
		100% {
			-webkit-transform: translateX(0);
			transform: translateX(0);
		}
	}
	@keyframes slideInLeft {
		0% {
			opacity: 0;
			-webkit-transform: translateX(-2000px);
			-ms-transform: translateX(-2000px);
			transform: translateX(-2000px);
		}
		100% {
			-webkit-transform: translateX(0);
			-ms-transform: translateX(0);
			transform: translateX(0);
		}
	}
	.slideInLeft {
		-webkit-animation-name: slideInLeft;
		animation-name: slideInLeft;
	}
	@-webkit-keyframes slideInRight {
		0% {
			opacity: 0;
			-webkit-transform: translateX(2000px);
			transform: translateX(2000px);
		}
		100% {
			-webkit-transform: translateX(0);
			transform: translateX(0);
		}
	}
	@keyframes slideInRight {
		0% {
			opacity: 0;
			-webkit-transform: translateX(2000px);
			-ms-transform: translateX(2000px);
			transform: translateX(2000px);
		}
		100% {
			-webkit-transform: translateX(0);
			-ms-transform: translateX(0);
			transform: translateX(0);
		}
	}
	.slideInRight {
		-webkit-animation-name: slideInRight;
		animation-name: slideInRight;
	}
	@-webkit-keyframes slideOutLeft {
		0% {
			-webkit-transform: translateX(0);
			transform: translateX(0);
		}
		100% {
			opacity: 0;
			-webkit-transform: translateX(-2000px);
			transform: translateX(-2000px);
		}
	}
	@keyframes slideOutLeft {
		0% {
			-webkit-transform: translateX(0);
			-ms-transform: translateX(0);
			transform: translateX(0);
		}
		100% {
			opacity: 0;
			-webkit-transform: translateX(-2000px);
			-ms-transform: translateX(-2000px);
			transform: translateX(-2000px);
		}
	}
	.slideOutLeft {
		-webkit-animation-name: slideOutLeft;
		animation-name: slideOutLeft;
	}
	@-webkit-keyframes slideOutRight {
		0% {
			-webkit-transform: translateX(0);
			transform: translateX(0);
		}
		100% {
			opacity: 0;
			-webkit-transform: translateX(2000px);
			transform: translateX(2000px);
		}
	}
	@keyframes slideOutRight {
		0% {
			-webkit-transform: translateX(0);
			-ms-transform: translateX(0);
			transform: translateX(0);
		}
		100% {
			opacity: 0;
			-webkit-transform: translateX(2000px);
			-ms-transform: translateX(2000px);
			transform: translateX(2000px);
		}
	}
	.slideOutRight {
		-webkit-animation-name: slideOutRight;
		animation-name: slideOutRight;
	}
	@-webkit-keyframes slideOutUp {
		0% {
			-webkit-transform: translateY(0);
			transform: translateY(0);
		}
		100% {
			opacity: 0;
			-webkit-transform: translateY(-2000px);
			transform: translateY(-2000px);
		}
	}
	@keyframes slideOutUp {
		0% {
			-webkit-transform: translateY(0);
			-ms-transform: translateY(0);
			transform: translateY(0);
		}
		100% {
			opacity: 0;
			-webkit-transform: translateY(-2000px);
			-ms-transform: translateY(-2000px);
			transform: translateY(-2000px);
		}
	}
	.slideOutUp {
		-webkit-animation-name: slideOutUp;
		animation-name: slideOutUp;
	}
	@-webkit-keyframes hinge {
		0% {
			-webkit-transform: rotate(0);
			transform: rotate(0);
		}
		0%,
		20%,
		60% {
			-webkit-transform-origin: top left;
			transform-origin: top left;
			-webkit-animation-timing-function: ease-in-out;
			animation-timing-function: ease-in-out;
		}
		20%,
		60% {
			-webkit-transform: rotate(80deg);
			transform: rotate(80deg);
		}
		40% {
			-webkit-transform: rotate(60deg);
			transform: rotate(60deg);
		}
		40%,
		80% {
			-webkit-transform-origin: top left;
			transform-origin: top left;
			-webkit-animation-timing-function: ease-in-out;
			animation-timing-function: ease-in-out;
		}
		80% {
			-webkit-transform: rotate(60deg) translateY(0);
			transform: rotate(60deg) translateY(0);
			opacity: 1;
		}
		100% {
			-webkit-transform: translateY(700px);
			transform: translateY(700px);
			opacity: 0;
		}
	}
	@keyframes hinge {
		0% {
			-webkit-transform: rotate(0);
			-ms-transform: rotate(0);
			transform: rotate(0);
		}
		0%,
		20%,
		60% {
			-webkit-transform-origin: top left;
			-ms-transform-origin: top left;
			transform-origin: top left;
			-webkit-animation-timing-function: ease-in-out;
			animation-timing-function: ease-in-out;
		}
		20%,
		60% {
			-webkit-transform: rotate(80deg);
			-ms-transform: rotate(80deg);
			transform: rotate(80deg);
		}
		40% {
			-webkit-transform: rotate(60deg);
			-ms-transform: rotate(60deg);
			transform: rotate(60deg);
		}
		40%,
		80% {
			-webkit-transform-origin: top left;
			-ms-transform-origin: top left;
			transform-origin: top left;
			-webkit-animation-timing-function: ease-in-out;
			animation-timing-function: ease-in-out;
		}
		80% {
			-webkit-transform: rotate(60deg) translateY(0);
			-ms-transform: rotate(60deg) translateY(0);
			transform: rotate(60deg) translateY(0);
			opacity: 1;
		}
		100% {
			-webkit-transform: translateY(700px);
			-ms-transform: translateY(700px);
			transform: translateY(700px);
			opacity: 0;
		}
	}
	.hinge {
		-webkit-animation-name: hinge;
		animation-name: hinge;
	}
	@-webkit-keyframes rollIn {
		0% {
			opacity: 0;
			-webkit-transform: translateX(-100%) rotate(-120deg);
			transform: translateX(-100%) rotate(-120deg);
		}
		100% {
			opacity: 1;
			-webkit-transform: translateX(0) rotate(0);
			transform: translateX(0) rotate(0);
		}
	}
	@keyframes rollIn {
		0% {
			opacity: 0;
			-webkit-transform: translateX(-100%) rotate(-120deg);
			-ms-transform: translateX(-100%) rotate(-120deg);
			transform: translateX(-100%) rotate(-120deg);
		}
		100% {
			opacity: 1;
			-webkit-transform: translateX(0) rotate(0);
			-ms-transform: translateX(0) rotate(0);
			transform: translateX(0) rotate(0);
		}
	}
	.rollIn {
		-webkit-animation-name: rollIn;
		animation-name: rollIn;
	}
	@-webkit-keyframes rollOut {
		0% {
			opacity: 1;
			-webkit-transform: translateX(0) rotate(0);
			transform: translateX(0) rotate(0);
		}
		100% {
			opacity: 0;
			-webkit-transform: translateX(100%) rotate(120deg);
			transform: translateX(100%) rotate(120deg);
		}
	}
	@keyframes rollOut {
		0% {
			opacity: 1;
			-webkit-transform: translateX(0) rotate(0);
			-ms-transform: translateX(0) rotate(0);
			transform: translateX(0) rotate(0);
		}
		100% {
			opacity: 0;
			-webkit-transform: translateX(100%) rotate(120deg);
			-ms-transform: translateX(100%) rotate(120deg);
			transform: translateX(100%) rotate(120deg);
		}
	}
	.rollOut {
		-webkit-animation-name: rollOut;
		animation-name: rollOut;
	}
}
.menuBtnWrapper,
#mobileMenu {
	/*display: none;*/
}
.navigation {
	position: relative;
	z-index: 99;
	padding: 0px 0px;
}
nav ul li {
	/*display: inline-block;
	  padding: 0px;
	  margin: 0 36px;
	  position: relative;*/
}
nav ul li a,
nav ul li .childMarker {
	color: #000000;
	cursor: pointer;
	/*padding:10px 0px;*/
	display: block;
	font-weight: 500;
	text-align: center;
	transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-webkit-transition: all 0.4s ease-in-out;
	-webkit-border-radius: 15px 15px 0 0;
	-moz-border-radius: 15px 15px 0 0;
	font-size: 16px;
}
nav ul li .submenu ul li a {
	color: #333;
	font-size: 11px;
	line-height: 20px;
	padding: 0 20px;
	text-transform: none;
	letter-spacing: 1px;
}
nav ul li .submenu ul li a:hover {
	color: #4d99d3;
}
nav ul li .submenu h3 a {
	color: #333;
}
nav ul li a:hover,
nav ul li .childMarker:hover,
nav ul li.active a,
nav ul li:hover .childMarker,
nav ul li.active .childMarker {
	color: #4d99d3;
	transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-webkit-transition: all 0.4s ease-in-out;
	border-radius: 0px 0px 0 0;
}
/*nav ul li div.submenu ul{ width:210px; float:left;}*/
nav ul li div.submenu div {
	width: 16.5%;
	float: left;
}
nav ul li div.submenu .menu_row {
	width: 100%;
	margin-bottom: 15px;
}
.submenu h3 {
	font-size: 16px !important;
	font-weight: 700;
	padding: 0 0 10px;
	text-align: left;
	text-transform: uppercase;
}
.submenu h3 a {
	font-size: 11px;
	font-weight: 600;
	padding: 0 20px;
	text-align: left;
}
nav ul li div.submenu ul li {
	width: 100%;
	margin: 0px;
}
nav ul li div.submenu ul li:last-child {
	border-radius: 0 0 5px 5px;
}
nav ul li div.submenu ul li:hover {
	margin: 0px;
}
nav ul li div.submenu ul li ul {
	float: left;
	position: absolute;
	left: 151px;
	top: 0;
	width: 0;
	margin: 0 0 0 -20px;
}
nav ul li div.submenu ul li:hover > ul {
	margin: 0;
	width: auto;
}
nav ul li div ul li a,
nav ul li div ul li a:hover,
nav ul li div ul li ul li a,
nav ul li div ul li ul li a:hover {
	border-radius: 0px;
	text-align: left;
}
.navSearchBtn .input {
	background-color: inherit;
	border: 0px;
	font-size: 16px;
	font-weight: 600;
	width: 75px;
	color: #000;
	cursor: pointer;
	text-transform: uppercase;
	cursor: default;
}
.navSearchBtn .btn {
	background: none;
	border: 0;
	cursor: pointer;
}
.navSearchBtn {
	position: absolute;
	bottom: -30%;
	right: 14%;
	z-index: 999999;
}
.navSearchBtn a:hover input,
.navSearchBtn a:hover i {
	color: #4d99d3;
}
.submenu {
	/*margin-left:-16px !important;*/
	left: 0;
}
.submenu li {
	float: left;
}
@media (min-width: 981px) and (max-width: 1024px) {
	nav ul li {
		margin: 0 15px;
	}
	nav {
		margin-left: -14%;
	}
	.navSearchBtn {
		right: 21%;
	}
}
@media (min-width: 768px) and (max-width: 980px) {
	nav ul li {
		margin: 0 15px;
	}
	nav {
		margin-left: -14%;
	}
	.navSearchBtn {
		right: 8%;
	}
}
@media (max-width: 767px) {
	.siteContainer #menuBtn {
		display: block;
	}
	#contents {
		position: relative;
		/*min-height: 2088px;*/
		box-shadow: -5px 0px 5px 1px rgba(0, 0, 0, 0.7);
		background-color: #fff;
	}
	.menuBtnWrapper {
		display: block;
		background: #4d9ad4;
	}
	.navigation {
		display: none;
	}
	#mobileMenu .navigation {
		display: block;
	}
	#mobileMenu li.active {
		background-color: transparent;
	}
	#mobileMenu li.active a {
		color: #fff;
	}
	li.active a,
	#mobileMenu li.active:hover a {
		color: #006e74;
	}
	.navigation nav li a,
	.childMarker {
		font-size: 13px;
	}
	.navSearchBtn a,
	.navSearchBtn input {
		color: #fff;
	}
	.navSearchBtn a:hover,
	.navSearchBtn a:hover i,
	.navSearchBtn a:hover input {
		color: #fff;
	}
	.navSearchBtn {
		bottom: -29%;
		right: 0%;
	}
	#menuBtn {
		z-index: 99;
		cursor: pointer;
	}
	.menuBtnWrapper {
		text-align: left;
	}
	.menuBtnWrapper i {
		cursor: pointer;
		font-size: 30px;
		margin: 4px 0 4px 18px;
		position: relative;
		color: #fff;
		transition: all 0.4s ease-in-out;
		-ms-transition: all 0.4s ease-in-out;
		-o-transition: all 0.4s ease-in-out;
		-moz-transition: all 0.4s ease-in-out;
		-webkit-transition: all 0.4s ease-in-out;
	}
	.slideOut .menuBtnWrapper {
		transition: all 0.4s ease-in-out;
		-ms-transition: all 0.4s ease-in-out;
		-o-transition: all 0.4s ease-in-out;
		-moz-transition: all 0.4s ease-in-out;
		-webkit-transition: all 0.4s ease-in-out;
	}
	#mobileMenu {
		/*display: none;*/
		background: #1f98df;
		height:10000%;
		right: 0;
		overflow: hidden;
		position: fixed;
		-moz-transition: width 1000ms;
		-o-transition: width 1000ms;
		-webkit-transition: width 1000ms;
		transition: width 1000ms;
		top: 0;
		width: 200px;
		z-index: 0;
		box-shadow: -5px 0px 2px 1px rgba(0, 0, 0, 0);
		max-height: 100%;
		overflow-x: hidden;
		overflow-y: auto;
		visibility:hidden;
	}
	#mobileMenu div[data-bind="with: cipUserActions"] a {
		color: #000;
		display: block;
		line-height: 36px;
		padding: 0 10px;
		text-decoration: none;
		width: 180px;
	}
	#mobileMenu div[data-bind="with: cipUserActions"] a:hover {
		background-color: #ecebe6;
	}
	#mobileMenu ul {
		position: relative;
		width: 200px;
	}
	#mobileMenu ul li {
		color: #4d99d3;
		border-bottom: 1px solid rgba(255, 255, 255, 0.14);
		list-style: none;
	}
	#mobileMenu ul li a,
	#mobileMenu ul li .childMarker,
	.Register_link {
		color: #959595;
		font-size: 13px;
		font-weight: 400;
		color: #fff;
		cursor: pointer;
		display: block;
		line-height: 28px;
		padding: 4px 15px;
		text-decoration: none;
		width: 201px;
	}
	#mobileMenu ul li a:hover,
	#mobileMenu ul li:hover .childMarker,
	.Register_link:hover {
		color: #fff;
		background-color: rgba(255, 255, 255, 0.1);
	}
	#mobileMenu ul li .childMarker i {
		background-color: transparent;
		color: #003580;
		font-size: 17px;
		line-height: 28px;
		position: relative;
		margin-left: 0;
		vertical-align: bottom;
	}
	#mobileMenu ul li a i {
		background-color: transparent;
		color: #ffffff;
		font-size: 14px;
		line-height: 30px;
		position: relative;
		margin-left: 10px;
		vertical-align: bottom;

	}
	#mobileMenu .cipNavBarItemLast {
		padding-left: 10px;
	}
	#mobileMenu .fa-angle-double-left {
		color: #000;
	}
	#mobileMenu .submenu ul li a {
		color: #fff;
	}
	#mobileMenu,
	.submenu {
		color: #000;
	}
	#mobileMenu .submenu .backLinkContainer a {
		color: #000;
	}
	#mobileMenu ul li .submenu,
	#mobileMenu ul li .grandChildren {
		/*display: none;*/
		font-size: 17px;
		left: 200px;
		padding: 0px;
		position: absolute; 
		-moz-transition: transform 1000ms ease 0s;
		-o-transition: transform 1000ms ease 0s;
		-webkit-transition: transform 1000ms ease 0s;
		transition: transform 1000ms ease 0s;
		top: 0;
		width:232px;
		z-index: 10000;
	}
	.grandChildren {
		

	}
	#mobileMenu ul li .submenu li:last-child {
		/*border-bottom:0px solid #fff;*/
	}
	#mobileMenu ul li .submenu li .backLink {
		padding-left: 30px;
	}
	#mobileMenu ul li .submenu li .backLink i {
		background-color: transparent;
		color: #fff;
		font-size: 17px;
		line-height: 28px;
		left: 12px;
		position: absolute;
		margin:0;
	}
	.slideOut {
		animation: slideOut 1000ms;
		animation-fill-mode: forwards;
		-webkit-animation: slideOut 1000ms;
		-webkit-animation-fill-mode: forwards;
		overflow: hidden;
	}
	.submenu {
		box-shadow: none;
		padding: 0 !important;
		border: 0;
		margin-left: 0 !important;
	}
	.submenu li {
		float: none;
	}
	.submenu h3 {
		padding: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.14);
		color: #fff;
	}
	@-webkit-keyframes slideOut {
		from {
			right: 0px;
		}
		to {
			right: 200px;
		}
	}
	@keyframes slideOut {
		from {
			right: 0px;
		}
		to {
			right: 200px;
		}
	}
	.slideIn {
		animation: slideIn 1000ms;
		animation-fill-mode: forwards;
		-webkit-animation: slideIn 1000ms;
		-webkit-animation-fill-mode: forwards;
	}
	@-webkit-keyframes slideIn {
		from {
			right: 200px;
		}
		to {
			right: 0px;
		}
	}
	@keyframes slideIn {
		from {
			right: 200px;
		}
		to {
			right: 0px;
		}
	}
	.siteContainer {
		height: 100%;
		background: #fff;
		position: relative;
	}
}
body {
	font-family: 'Roboto', sans-serif;
	color: #848282;
	font-weight: 400;
	margin: 0;
	padding: 0;
}
body a {
	color: #000000;
	text-decoration: none;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	transition: all 0.4s ease-out;
	-moz-transition: all 0.4s ease-out;
	-webkit-transition: all 0.4s ease-out;
	-o-transition: all 0.4s ease-out;
}
body a:hover {
	color: #1f98df;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	transition: all 0.4s ease-out;
	-moz-transition: all 0.4s ease-out;
	-webkit-transition: all 0.4s ease-out;
	-o-transition: all 0.4s ease-out;
}
body a:focus {
	border: 0 none;
	outline: medium none;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	transition: all 0.4s ease-out;
	-moz-transition: all 0.4s ease-out;
	-webkit-transition: all 0.4s ease-out;
	-o-transition: all 0.4s ease-out;
}
.container {
	width: 100%;
	margin: 0 auto;
	padding: 0;
	max-width: 1140px;
	margin: 0px auto;
}
.container:before,
.container:after {
	content: "";
	display: table;
}
.container:after {
	clear: both;
}
@media only screen and (min-width: 1025px) and (max-width: 1280px) {
	.container {
		width:100%;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px), only screen and (max-width: 767px) {
	.container {
		width: 100%;
	}
}
.siteContainer {
	overflow: hidden;
	/* active state, i.e. menu open */
}
@media only screen and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 1024px) {
	.siteContainer {
	position: relative;
	overflow: visible;
	}
}
.siteContainer header .topBar {
	background: #f1f2f6;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	width: 100%;
	margin: 0 auto;
	padding: 0;
	margin-bottom: 25px;
}
.siteContainer header .topBar:before,
.siteContainer header .topBar:after {
	content: "";
	display: table;
}
.siteContainer header .topBar:after {
	clear: both;
}
@media only screen and (max-width: 767px) {
	.siteContainer header .topBar {
		padding: 7px 0;
		margin-bottom: 20px;
	}
}
.siteContainer header .topBar .left {
	float: left;
	line-height: 60px;
}
@media only screen and (max-width: 767px) {
	.siteContainer header .topBar .left {
		line-height: normal;
		width: 100%;
		padding-bottom: 10px;
	}
}
.siteContainer header .topBar .left a {
	font-size: 13px;
}
.siteContainer header .topBar .left span {
	color: rgba(0, 0, 0, 0.1);
	margin: 0 2px;
}
.siteContainer header .topBar .right {
	float: right;
	line-height: 60px;
}
@media only screen and (max-width: 767px) {
	.siteContainer header .topBar .right {
		line-height: normal;
		width: 100%;
	}
}
.siteContainer header .topBar .right a {
	font-size: 13px;
	margin: 0 10px 0 0;
}
.siteContainer header .topBar .right a i {
	color: #1f98df;
	margin: 0 4px 0 0;
}
.siteContainer header .topBar .right a.checkOutBtn {
	background: #ffffff;
	height: 25px;
	line-height: 23px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
	border-radius: 2px;
	display: inline-block;
	padding: 0 10px;
	margin: 0;
}
.siteContainer header .logo {
	width: 50%;
	float: left;
	padding: 0;
	margin: 0 0% 0 0;
}
@media only screen and (max-width: 767px) {
	.siteContainer header .logo {
		width: 41.66666667%;
		float: left;
		padding: 0;
		margin: 0 0% 0 0;
		float: none;
		display: block;
		margin: 0 auto;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
	.siteContainer header .logo {
		width: 29.16666667%;
		float: left;
		padding: 0;
		margin: 0 0% 0 0;
	}
}
.siteContainer header .searchTop {
	float: right;
	margin-top: 25px;
}
@media only screen and (max-width: 767px) {
	.siteContainer header .searchTop {
		width: 100%;
		float: left;
		padding: 0;
		margin: 0 0% 0 0;
		margin-top: 10px;
	}
}
.siteContainer header .searchTop .searchBar {
	background: #ffffff;
	height: 45px;
	border: 1px solid rgba(0, 0, 0, 0.15);
	box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
	border-radius: 4px;
	width: 300px;
	overflow: hidden;
	float: left;
	margin: 0 28px 0 0;
}
.siteContainer header .searchTop .searchBar .input {
	border: 0;
	background: no-repeat;
	color: #000000;
	height: 100%;
	padding: 0 20px;
	width: 83.1%;
        margin-top: 10px;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	transition: all 0.4s ease-out;
	-moz-transition: all 0.4s ease-out;
	-webkit-transition: all 0.4s ease-out;
	-o-transition: all 0.4s ease-out;
}
.siteContainer header .searchTop .searchBar .input:focus {
	background: rgba(0, 0, 0, 0.02);
}
@media only screen and (max-width: 767px) {
	.siteContainer header .searchTop .searchBar .input {
		width: 69.1%;
	}
}
.siteContainer header .searchTop .searchBar button {
	background: #f4f4f2;
	border: 0;
	width: 50px;
	height: 100%;
	text-align: center;
	font-size: 22px;
	color: #2971a2;
	float: right;
        margin-top: 8px;
}
@media only screen and (max-width: 767px) {
	.siteContainer header .searchTop .searchBar {
		width:80%;
		float: left;
		padding: 0;
		margin: 0 0% 10px 0;
	}
}
.siteContainer header .searchTop .topBtn {
	background-color: #cc0808;
	color: #FFF;
	cursor: pointer;
	border: 0px solid #cc0808;
	box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
	padding: 8px 25px;
	font-weight: 400;
	font-size: 18px;
	border-radius: 7px;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	transition: all 0.4s ease-out;
	-moz-transition: all 0.4s ease-out;
	-webkit-transition: all 0.4s ease-out;
	-o-transition: all 0.4s ease-out;
}
.siteContainer header .searchTop .topBtn:hover {
	background-color: #333;
	border: 0px solid #333;
	color: #ffffff;
}
@media only screen and (max-width: 767px) {
	.siteContainer header .searchTop .topBtn {
		float: none;
		padding: 7px 15px;
	}
}
.siteContainer nav {
	background: #cc0808;
	margin: 25px 0 0;
}
@media only screen and (max-width: 767px) {
	.siteContainer nav {
		background: none;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
	.siteContainer nav {
		padding: 0px 0;
		text-align: center;
	}
}
.siteContainer nav ul {
	margin: 0;
	padding: 0;
	list-style: none;
	 height:60px;
}
.siteContainer nav ul li {
	float: left;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
	.siteContainer nav ul li {
		margin: 0;
		float: none;
		display: inline-block;
	}
}
.siteContainer nav ul li a,
.siteContainer nav ul li .childMarker {
	font-size: 18px;
	font-weight: 400;
	line-height: 60px;
	display: block;
	padding: 0 20px;
	color: #ffffff;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
	.siteContainer nav ul li a,
	.siteContainer nav ul li .childMarker {
		font-size: 13px;
		padding: 15px 7px;
		line-height: normal;
	}
}
.siteContainer nav ul li:hover a,
.siteContainer nav ul li:hover .childMarker {
	background: #FFF;
	color: #666;
	text-decoration:none;
}
.siteContainer .homeSlider {
	position: relative;
}

/*.siteContainer .homeSlider:after {
	background: url(../image/slider-shape.png) center bottom no-repeat;
	position: absolute;
	width: 100%;
	content: '';
	height: 100px;
	bottom: 0;
}*/

.siteContainer .homeSlider .owl-theme .owl-controls .owl-pagination .owl-page {
    display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */

}
.siteContainer .homeSlider .owl-theme .owl-controls .owl-pagination .owl-page span {
    
    display: block;
	width: 12px;
	height: 12px;
	margin: 5px 7px;
	border-radius: 20px;
	background: rgba(31, 152, 223, 0.3);
        transform: translateY(-60px) translateX(620px);        
   
}
.siteContainer .homeSlider .owl-theme .owl-controls .owl-pagination .owl-page:hover span,
.siteContainer .homeSlider .owl-theme .owl-controls .owl-pagination .owl-page.active span{
	background: rgba(31, 152, 223, 0.8) !important;
        filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
        
}

/* End */

@media only screen and (min-width:1601px) and (max-width:1920px) {
	.siteContainer .homeSlider .owl-theme .owl-controls .owl-pagination .owl-page span {
	transform: translateY(-60px) translateX(870px);        
	}	
	.siteContainer .homeSlider .item {
	height: 612px;
}
}
@media only screen and (min-width:1367px) and (max-width:1600px) {
	.siteContainer .homeSlider .owl-theme .owl-controls .owl-pagination .owl-page span {
	transform: translateY(-60px) translateX(750px);
	}
	.siteContainer .homeSlider .item {
	background-position: center top !important; height:550px;
	}	
}
@media only screen and (min-width:1025px) and (max-width:1366px) {
	.siteContainer .homeSlider .owl-theme .owl-controls .owl-pagination .owl-page span {
	transform: translateY(-60px) translateX(630px);        
	}	
	.siteContainer .homeSlider .item {
	background-position: center top !important; height:550px;
	}	
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
	.siteContainer .homeSlider .owl-theme .owl-controls .owl-pagination .owl-page span {
	transform: translateY(-60px) translateX(462px);        
	}	
	.siteContainer .homeSlider .item {
	background-position: center top !important; height:550px;
	}	
}
@media only screen and (min-width:500px) and (max-width:767px) {
	.siteContainer .homeSlider .owl-theme .owl-controls .owl-pagination .owl-page span {
	transform: translateY(-60px) translateX(330px);        
	}	
}


@media only screen and (max-width: 767px) {
	.siteContainer .homeSlider:after {
		background: url(../image/slider-shape-m.png) center bottom no-repeat;
	}
	.siteContainer .homeSlider .owl-theme .owl-controls .owl-pagination .owl-page {
    display: inline-block;
	zoom: 1;
	display: none;
}
.miniclinic-small {
	float:left; margin-top: 10px; margin-left:10px;
	}
	.dropdown {
    position: relative;
    z-index: 999;
}

}
@media only screen and (max-width: 767px) {
	.siteContainer .homeSlider .item {
		height:450px;
		padding: 0 0 89px 0;
		/*background-position: center top !important;*/
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px), only screen and (min-width: 1025px) and (max-width: 1280px) {
	.siteContainer .homeSlider .item {
		background-position: center top !important;
	}
}
.siteContainer .homeSlider .left {
	width: 44%;
	float: left;
	padding: 0;
	margin: 0 0% 0 0;
	padding: 40px 0 0 35px; /*130px 0 0 35px;*/
}
@media only screen and (max-width: 767px) {
	.siteContainer .homeSlider .left {
		width: 100%;
		float: left;
		padding: 0;
		margin: 0 0 0 0;
		padding: 30px 0 0;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
	.siteContainer .homeSlider .left {
		width: 48.66666667%;
		float: left;
		padding: 0;
		margin: 0 0% 0 0;
		padding: 50px 0 0;
	}
}
.siteContainer .homeSlider .left h1 {
	color: #039040;
	font-size: 50px;
	font-weight: 400;
	text-shadow: 0px 0px 0px rgba(0, 0, 0, 0.2);
	margin: 0 0 35px;
}
@media only screen and (max-width: 767px) {
	.siteContainer .homeSlider .left h1 {
		font-size: 22px;
		margin: 0 0 15px;
		text-align:center;
		font-size:40px !important;
	}
}
.siteContainer .homeSlider .left h1 span {
	font-weight: 400;
}
.siteContainer .homeSlider .left h1 strong {
	font-weight: 700;
}
.siteContainer .homeSlider .left h1 strong.red {
	color: #cc0808;
}
.siteContainer .homeSlider .left p {
	color: #000000;
	font-size: 22px;
	line-height: 30px;
	margin: 0 0 40px;
}
@media only screen and (max-width: 767px) {
	.siteContainer .homeSlider .left p {
		margin: 0 0 15px;
		text-align:center;
		font-size:18px;
		line-height:24px;
	}
}
.siteContainer .homeSlider .left a {
	display: inline-block;
	margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
	.siteContainer .homeSlider .left a {
		margin: 0 0 15px;
		width:100%;
		text-align:center;
	}
}
/*.siteContainer .homeSlider .left img {
	display: block;
}*/
.siteContainer .loginRow {
	background: url(../image/bg1.jpg) center bottom repeat-y;
	padding: 18px 0 0;
	height: 340px;
}
@media only screen and (max-width: 767px) {
	.siteContainer .loginRow {
		background: #34a9ee;
		height: auto;
	}
}
.siteContainer .loginRow .left {
	width: 50%;
	float: left;
	padding: 0;
	margin: 0 0% 0 0;
	padding-right: 100px;
	padding-left: 35px;
}
@media only screen and (max-width: 767px) {
	.siteContainer .loginRow .left {
		width: 100%;
		float: left;
		padding: 0;
		margin: 0 0% 0 0;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
	.siteContainer .loginRow .left {
		padding-right: 50px;
		padding-left: 0px;
	}
}
.siteContainer .loginRow .left h2 {
	color: #ffffff;
}
.siteContainer .loginRow .left p {
	font-size: 16px;
	line-height: 24px;
	color: #ffffff;
	margin: 0 0 25px;
}
.siteContainer .loginRow .left a {
	display: inline-block;
	border: 1px solid #ffffff;
}
.siteContainer .loginRow .left a:hover {
	background: #ffffff;
	color: #0060a0;
}
.siteContainer .loginRow .right {
	width: 50%;
	float: left;
	padding: 0;
	margin: 0 0% 0 0;
	padding: 10px 30px 0 58px;
}
@media only screen and (max-width: 767px) {
	.siteContainer .loginRow .right {
		width: 100%;
		float: left;
		padding: 0;
		margin: 0 0% 0 0;
		background: #ffffff;
		padding: 15px;
		border-radius: 4px;
		margin: 20px 0;
		text-align: center;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
	.siteContainer .loginRow .right {
		padding: 10px 0px 0 20px;
	}
}
.siteContainer .loginRow .right .text1 {
	font-size: 20px;
	color: #46b130;
	text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
	margin: 0 0 25px;
}
.siteContainer .loginRow .right .text1 span {
	color: #0268bc;
}
.siteContainer .loginRow .right p {
	font-size: 20px;
	line-height: 24px;
	color: #333333;
	text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
	font-style: italic;
	margin: 0 0 15px;
}
.siteContainer .loginRow .right p img {
	float: right;
	margin: 0 0 0 40px;
}
@media only screen and (max-width: 767px) {
	.siteContainer .loginRow .right p {
		font-size: 16px;
		line-height: 20px;
	}
	.siteContainer .loginRow .right p img {
		margin: 0 auto 10px;
		float: none;
		display: block;
	}
}
.siteContainer .loginRow .right a {
	display: inline-block;
	border: 1px solid #1f98df;
	color: #1f98df;
	background: none;
	padding: 0 40px;
}
.siteContainer .loginRow .right a:hover {
	background: #1f98df;
	color: #ffffff;
}
.siteContainer .loginRow .right .owl-pagination .owl-page {
	background: rgba(31, 152, 223, 0.15);
	width: 10px;
	height: 10px;
	border-radius: 50%;
	float: left;
	margin: 36px 5px 20px 0;
}
.siteContainer .loginRow .right .owl-pagination .owl-page:hover,
.siteContainer .loginRow .right .owl-pagination .owl-page.active {
	background: rgba(31, 152, 223, 0.5);
}
@media only screen and (max-width: 767px) {
	.siteContainer .loginRow .right .owl-pagination .owl-page {
		display: inline-block;
		float: none;
		margin: 15px 5px 0 0;
	}
}
.siteContainer .treeBoxList {
	margin-top: -76px;
	margin-bottom: 50px;
}
@media only screen and (max-width: 767px) {
	.siteContainer .treeBoxList {
		margin-top: 30px;
	}
}
.siteContainer .treeBoxList ul {
	width: 100%;
	margin: 0 auto;
	padding: 0;
	margin: 0 0 50px;
	padding: 0 35px;
	list-style: none;
}
.siteContainer .treeBoxList ul:before,
.siteContainer .treeBoxList ul:after {
	content: "";
	display: table;
}
.siteContainer .treeBoxList ul:after {
	clear: both;
}
@media only screen and (max-width: 767px) {
	.siteContainer .treeBoxList ul {
		padding: 0;
		margin: 0 0 30px;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px), only screen and (min-width: 1025px) and (max-width: 1280px) {
	.siteContainer .treeBoxList ul {
		padding: 0;
	}
}
.siteContainer .treeBoxList ul li {
	background: #ffffff;
	border: 1px solid rgba(0, 0, 0, 0.15);
	border-radius: 10px;
	box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
	padding: 25px;
	margin: 0 41px 0 0;
	width: 329px;
	text-align: center;
	float: left;
}
.siteContainer .treeBoxList ul li img {
	margin-bottom: 35px;
}
.siteContainer .treeBoxList ul li h3 {
	font-size: 22px;
	color: rgba(0, 0, 0, 0.7);
	line-height: 30px;
	font-weight: 300;
	margin: 0 0 30px;
}
.siteContainer .treeBoxList ul li .button1 {
	display: inline-block;
	font-size: 16px;
	line-height: 40px;
}
.siteContainer .treeBoxList ul li:nth-child(2) img {
	margin-bottom: 11px;
}
.siteContainer .treeBoxList ul li:last-child {
	margin: 0;
	padding-top: 10px;
}
.siteContainer .treeBoxList ul li:last-child img {
	margin-bottom: 6px;
}
.siteContainer .treeBoxList ul li:last-child h3 {
	margin-bottom: 5px;
}
.siteContainer .treeBoxList ul li:last-child p {
	font-size: 16px;
	color: rgba(0, 0, 0, 0.7);
	font-weight: 300;
	line-height: normal;
	margin: 0 0 23px;
	padding: 0 11px;
}
@media only screen and (max-width: 767px) {
	.siteContainer .treeBoxList ul li {
		width: 100%;
		padding: 20px 10px;
		margin: 0 0 20px;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
	.siteContainer .treeBoxList ul li {
		width: 33.33333333%;
		float: left;
		padding: 0;
		margin: 0 0% 0 0;
		padding: 20px 10px;
		min-height: 344px;
	}
	.siteContainer .treeBoxList ul li .button1 {
		padding: 0 12px;
		font-size: 14px;
	}
}
@media only screen and (min-width: 1025px) and (max-width: 1280px) {
	.siteContainer .treeBoxList ul li {
		width: 315px;
		margin: 0 22px 0 0;
	}
}
.siteContainer .treeBoxList .welcomeText {
	width: 66.66666667%;
	float: left;
	padding: 0;
	margin: 0 0% 0 0;
}
@media only screen and (max-width: 767px) {
	.siteContainer .treeBoxList .welcomeText {
		width: 100%;
		float: left;
		padding: 0;
		margin: 0 0% 0 0;
		margin-bottom: 20px;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
	.siteContainer .treeBoxList .welcomeText {
		width: 50%;
		float: left;
		padding: 0;
		margin: 0 0% 0 0;
	}
}
.siteContainer .treeBoxList .welcomeText p {
	font-size: 16px;
	line-height: 24px;
	letter-spacing: .20px;
}
.siteContainer .treeBoxList .chatBox {
	width: 289px;
	float: right;
	border: 6px solid rgba(0, 0, 0, 0.06);
	padding: 28px 0;
	text-align: center;
}
@media only screen and (max-width: 767px) {
	.siteContainer .treeBoxList .chatBox {
		margin: 0 auto;
		float: none;
		display: block;
		clear: both;
	}
}
.siteContainer .treeBoxList .chatBox p {
	font-size: 20px;
	line-height: 24px;
	color: rgba(0, 0, 0, 0.8);
	font-weight: 300;
	margin: 15px 0;
}
.siteContainer .treeBoxList .chatBox .button1 {
	display: inline-block;
	font-size: 16px;
	line-height: 40px;
	padding: 0 10px;
}
.siteContainer .OurHealthServices {
	text-align: center;
	color: #ffffff;
	padding: 80px 0 50px;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	transition: all 0.4s ease-out;
	-moz-transition: all 0.4s ease-out;
	-webkit-transition: all 0.4s ease-out;
	-o-transition: all 0.4s ease-out;
	margin-bottom: 65px;
}
@media only screen and (max-width: 767px) {
	.siteContainer .OurHealthServices {
		padding: 20px;
		margin-bottom: 20px;
	}
}
.siteContainer .OurHealthServices h2 {
	text-transform: none;
	color: #ffffff;
}
.siteContainer .OurHealthServices .text2 {
	font-size: 30px;
	font-weight: 400;
	line-height: normal;
	margin: 0 0 20px;
}
@media only screen and (max-width: 767px) {
	.siteContainer .OurHealthServices .text2 {
		font-size: 20px;
	}
}
.siteContainer .OurHealthServices p {
	font-size: 16px;
	line-height: normal;
	margin: 0 0 30px;
}
@media only screen and (max-width: 767px) {
	.siteContainer .OurHealthServices p br {
		display: none;
	}
}
.siteContainer .OurHealthServices .button {
	display: inline-block;
	box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
	border: 1px solid #34a9ee;
	background: none;
	padding: 0 60px;
}
.siteContainer .OurHealthServices .button:hover {
	background: #34a9ee;
}
.siteContainer .OurServices {
	margin-bottom: 65px;
}
@media only screen and (max-width: 767px) {
	.siteContainer .OurServices {
		margin: 0 0 20px;
	}
}
.siteContainer .OurServices .title {
	text-align: center;
	font-size: 24px;
	font-weight: 400;
	letter-spacing: .2px;
	text-transform: uppercase;
	color: #34a9ee;
	margin: 0 0 40px;
}
@media only screen and (max-width: 767px) {
	.siteContainer .OurServices .title {
		margin: 0 0 20px;
	}
}
.siteContainer .OurServices ul.list {
	width: 100%;
	margin: 0 auto;
	margin: 0;
	padding: 0;
	list-style: none;
	border-bottom: 1px solid #f1f5f8;
}
.siteContainer .OurServices ul.list:before,
.siteContainer .OurServices ul.list:after {
	content: "";
	display: table;
}
.siteContainer .OurServices ul.list:after {
	clear: both;
}
.siteContainer .OurServices ul.list li {
	width: 33.33333333%;
	float: left;
	padding: 0;
	margin: 0 0% 0 0;
	background: #f9fdff;
	border: 1px solid #f1f5f8;
	text-align: center;
	border-bottom: 0;
	border-right: 0;
	padding: 45px 0;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	transition: all 0.4s ease-out;
	-moz-transition: all 0.4s ease-out;
	-webkit-transition: all 0.4s ease-out;
	-o-transition: all 0.4s ease-out;
}
@media only screen and (max-width: 767px) {
	.siteContainer .OurServices ul.list li {
		width: 100%;
		float: left;
		padding: 0;
		margin: 0 0% 0 0;
		padding: 20px;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
	.siteContainer .OurServices ul.list li {
		width: 33.33333333%;
		float: left;
		padding: 0;
		margin: 0 0% 0 0;
		padding: 25px;
		min-height: 250px;
	}
}
.siteContainer .OurServices ul.list li:nth-child(3n+3) {
	border-right: 1px solid #f1f5f8;
}
.siteContainer .OurServices ul.list li img {
	margin-bottom: 15px;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	transition: all 0.4s ease-out;
	-moz-transition: all 0.4s ease-out;
	-webkit-transition: all 0.4s ease-out;
	-o-transition: all 0.4s ease-out;
}
.siteContainer .OurServices ul.list li h4 {
	font-size: 24px;
	font-weight: 300;
	color: rgba(0, 0, 0, 0.8);
	margin-bottom: 12px;
}
.siteContainer .OurServices ul.list li p {
	font-size: 14px;
}
.siteContainer .OurServices ul.list li:hover {
	background: rgba(52, 169, 238, 0.1);
}
.siteContainer .OurServices ul.list li:hover img {
	transform: rotate(360deg);
}
.siteContainer .community {
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	transition: all 0.4s ease-out;
	-moz-transition: all 0.4s ease-out;
	-webkit-transition: all 0.4s ease-out;
	-o-transition: all 0.4s ease-out;
	padding: 45px 0;
	margin: 0 0 60px;
}
@media only screen and (max-width: 767px) {
	.siteContainer .community {
		margin: 0 0 20px;
		padding: 20px 0;
	}
}
.siteContainer .community .left {
	width: 41.66666667%;
	float: left;
	padding: 0;
	margin: 0 0% 0 0;
	padding: 15px 0 15px;
	border-right: 1px solid #64bef2;
}
@media only screen and (max-width: 767px) {
	.siteContainer .community .left {
		width: 100%;
		float: left;
		padding: 0;
		margin: 0 0% 0 0;
		padding: 0 0 20px;
		margin-bottom: 20px;
		border-right: 0;
		border-bottom: 1px solid #64bef2;
	}
}
.siteContainer .community .left h3 {
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	margin: 0 0 20px;
	color: #ffffff;
	letter-spacing: .2px;
}
@media only screen and (max-width: 767px) {
	.siteContainer .community .left h3 {
		margin: 0 0 10px;
	}
}
.siteContainer .community .left .text3 {
	font-size: 36px;
	font-weight: 300;
	margin: 0 0 25px;
	color: #ffffff;
	letter-spacing: .2px;
	line-height: normal;
}
@media only screen and (max-width: 767px) {
	.siteContainer .community .left .text3 {
		font-size: 24px;
		margin: 0 0 10px;
	}
}
.siteContainer .community .left .button {
	display: inline-block;
	box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
	border: 1px solid #8cd5f5;
	background: none;
	padding: 0 60px;
}
.siteContainer .community .left .button:hover {
	background: #8cd5f5;
}
.siteContainer .community .right {
	width: 58.33333333%;
	float: left;
	padding: 0;
	margin: 0 0% 0 0;
	padding: 0 70px 0 40px;
}
@media only screen and (max-width: 767px) {
	.siteContainer .community .right {
		width: 100%;
		float: left;
		padding: 0;
		margin: 0 0% 0 0;
		padding: 0 0 0 0;
	}
}
.siteContainer .community .right ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.siteContainer .community .right ul li {
	border-bottom: 1px solid #64bef2;
	padding: 0 0 20px;
	margin: 0 0 20px;
}
.siteContainer .community .right ul li:last-child {
	border: 0;
	padding: 0;
	margin: 0;
}
.siteContainer .community .right ul li .date {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.6);
	margin: 0 0 12px;
}
.siteContainer .community .right ul li .title {
	font-size: 18px;
	color: #ffffff;
	font-weight: 700;
	margin: 0 0 12px;
}
.siteContainer .community .right ul li .disc {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.6);
	margin: 0;
}
.siteContainer .SpecialOffer .container {
	max-width: 570px;
	border-radius: 8px;
	background: #bee9fd;
	border: 1px solid #bee9fd;
	box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.1);
	height: 115px;
	margin-bottom: 50px;
	position: relative;
	overflow: hidden;
}
@media only screen and (max-width: 767px) {
	.siteContainer .SpecialOffer .container {
		height: auto;
	}
}
.siteContainer .SpecialOffer .container:after {
	background: #ffffff;
	content: "";
	height: 470px;
	left: 248px;
	position: relative;
	top: -190px;
	transform: rotate(395deg);
	width: 74%;
	z-index: 0;
}
@media only screen and (max-width: 767px) {
	.siteContainer .SpecialOffer .container:after {
		display: none;
	}
}
.siteContainer .SpecialOffer .container span {
	font-size: 36px;
	font-weight: 300;
	color: #0060a0;
	padding: 33px 0 0 27px;
	display: inline-block;
}
.siteContainer .SpecialOffer .container span strong {
	font-weight: 700;
	color: #cc0808;
}
@media only screen and (max-width: 767px) {
	.siteContainer .SpecialOffer .container span {
		font-size: 20px;
		text-align: center;
		display: block;
		padding: 13px 0 0;
	}
}
.siteContainer .SpecialOffer .container .right {
	width: 50%;
	float: left;
	padding: 0;
	margin: 0 0% 0 0;
	text-align: right;
	float: right;
	padding: 26px 30px 0 0;
	position: relative;
	z-index: 1;
}
.siteContainer .SpecialOffer .container .right h4 a{
	font-size: 18px;
	color: #0060a0;/*#bee9fd;*/
	font-weight: 700;
	margin: 0 0 12px;

}
.siteContainer .SpecialOffer .container .right p {
	font-size: 14px;
	color: #0060a0;/*#a1d5ee;*/
	line-height: 30px; /*normal;*/
}
@media only screen and (max-width: 767px) {
	.siteContainer .SpecialOffer .container .right {
		width: 100%;
		float: left;
		padding: 0;
		margin: 0 0% 0 0;
		background: #ffffff;
		text-align: center;
		margin: 20px 0 0;
		padding: 15px 0;
	}
}
.siteContainer .footer .container {
	padding: 0 70px;
}
@media only screen and (max-width: 767px) {
	.siteContainer .footer .container {
		padding: 0;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
	.siteContainer .footer .container {
		padding: 0;
	}
}
.siteContainer .footer .payment {
	background: #f1f1f1;
	padding: 25px 0 20px;
	text-align: center;
}
.siteContainer .footer .Information {
	background: url(../--image/footer-border.jpg) 0 top repeat-x #cc0808;
	padding: 55px 0 40px;
}
@media only screen and (max-width: 767px) {
	.siteContainer .footer .Information {
		padding: 20px;
	}
}
.siteContainer .footer .Information .part {
	width: 25%;
	float: left;
	padding: 0;
	margin: 0 0% 0 0;
}
@media only screen and (max-width: 767px) {
	.siteContainer .footer .Information .part {
		width: 100%;
		float: left;
		padding: 0;
		margin: 0 0% 0 0;
	}
}
.siteContainer .footer .Information .part h5 {
	font-size: 22px;
	text-transform: uppercase;
	font-weight: 400;
	color: #ffffff !important;
	min-height: 48px;
}
@media only screen and (max-width: 767px) {
	.siteContainer .footer .Information .part h5 {
		min-height: inherit;
		margin: 10px 0;
	}
}
.siteContainer .footer .Information .part a {
	display: block;
	color: #FFF;
	font-size: 14px;
	line-height: 20px;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	transition: all 0.4s ease-out;
	-moz-transition: all 0.4s ease-out;
	-webkit-transition: all 0.4s ease-out;
	-o-transition: all 0.4s ease-out;
}
.siteContainer .footer .Information .part a:hover {
	padding-left: 10px;
}
.siteContainer .footer .links {
	background: #C8C8C8;
	padding: 40px 20px;
}
.siteContainer .footer .links a {
	color: #FFF;
	font-size: 14px;
}
.siteContainer .footer .links span {
	margin: 0 8px;
	color: #cce4f5;
	font-size: 14px;
}
.siteContainer .footer .links p {
	color: #FFF;
	font-size: 12px;
	margin: 10px 0 0;
	font-weight: 400;
}
.siteContainer #menuBtn {
	background-color: #34a9ee;
	color: #ffffff;
	border: 0;
	height: 45px;
	font-weight: 400;
	line-height: 43px;
	font-size: 16px;
	padding: 0 30px;
	border-radius: 4px;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	transition: all 0.4s ease-out;
	-moz-transition: all 0.4s ease-out;
	-webkit-transition: all 0.4s ease-out;
	-o-transition: all 0.4s ease-out;
	display: none;
	position: relative;
	overflow: hidden;
	margin: 0;
	padding: 0;
	width: 40px;
	height: 40px;
	font-size: 0;
	text-indent: -9999px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	box-shadow: none;
	border-radius: none;
	border: none;
	cursor: pointer;
	-webkit-transition: background 0.3s;
	transition: background 0.3s;
	position: absolute;
	top: 14px;
	right: 16px;
}
.siteContainer #menuBtn:hover {
	background-color: #1f98df;
	color: #ffffff;
}
@media only screen and (max-width: 767px) {
	.siteContainer #menuBtn {
		display: block;
	}
}
@media only screen and (min-width: 1025px) and (max-width: 1280px) {
	.siteContainer #menuBtn {
		display: none;
	}
}
.siteContainer #menuBtn:focus {
	outline: none;
}
.siteContainer #menuBtn span {
	display: block;
	position: absolute;
	top: 34px;
	left: 15px;
	right: 20px;
	height: 2px;
	background: white;
}
@media only screen and (max-width: 767px) {
	.siteContainer #menuBtn span {
		top: 19px;
		left: 7px;
		right: 6px;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
	.siteContainer #menuBtn span {
		top: 25px;
		left: 10px;
		right: 8px;
	}
}
.siteContainer #menuBtn span::before,
.siteContainer #menuBtn span::after {
	position: absolute;
	display: block;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #fff;
	content: "";
}
.siteContainer #menuBtn span::before {
	top: -8px;
}
.siteContainer #menuBtn span::after {
	bottom: -8px;
}
.siteContainer #menuBtn span {
	-webkit-transition: background 0s 0.3s;
	transition: background 0s 0.3s;
}
.siteContainer #menuBtn span::before,
.siteContainer #menuBtn span::after {
	-webkit-transition-duration: 0.3s, 0.3s;
	transition-duration: 0.3s, 0.3s;
	-webkit-transition-delay: 0.3s, 0s;
	transition-delay: 0.3s, 0s;
}
.siteContainer #menuBtn span::before {
	-webkit-transition-property: top, -webkit-transform;
	transition-property: top, transform;
}
.siteContainer #menuBtn span::after {
	-webkit-transition-property: bottom, -webkit-transform;
	transition-property: bottom, transform;
}
.siteContainer #menuBtn.active {
	background-color: #1f98df;
}
.siteContainer #menuBtn.active span {
	background: none;
}
.siteContainer #menuBtn.active span::before {
	top: 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
.siteContainer #menuBtn.active span::after {
	bottom: 0;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.siteContainer #menuBtn.active span::before,
.siteContainer #menuBtn.active span::after {
	-webkit-transition-delay: 0s, 0.3s;
	transition-delay: 0s, 0.3s;
	background: #ffffff;
}
.popup_main {
	background: rgba(132, 130, 130, 0.8);
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	z-index: 999;
	display: none;
}
.popup_main .popupBody {
	background: #ffffff;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	max-width: 90%;
	width: 90%;
}
@media only screen and (max-width: 767px) {
	.popup_main .popupBody {
		transform: translate(-50%, -30%);
		-webkit-transform: translate(-50%, -30%);
	}
}
.popup_main .popupBody .popupClose {
	background: #1f98df;
	color: #ffffff;
	font-size: 14px;
	text-align: center;
	line-height: 30px;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	position: absolute;
	right: -10px;
	top: -10px;
	box-shadow: 1px 0 1px #ffffff;
}

.backToTop {
	background-color: #333;
	-webkit-border-radius: 4px 4px 0 0;
	-moz-border-radius: 4px 4px 0 0;
	border-radius: 4px 4px 0 0;
	bottom: 0;
	color: #ffffff;
	display: none;
	height: 35px;
	opacity: 0.9;
	position: fixed;
	right: 30px;
	text-align: center;  
	width:176px;
	z-index: 10000;
}
.backToTop:before {
	content: " ^ ";
	font-size: 25px;
	line-height: 45px;
}

@media only screen and (min-width: 768px) and (max-width: 3000px) {
	nav ul li .submenu {
		visibility: hidden;
		/* hides sub-menu */
		/*opacity: 0;*/
		position: absolute;
		top: 60px;
		left: 0;
		width: 100%;
		/*transform: translateY(-2em);*/
		z-index: -1;
		/*transition: all 0.6s ease-in-out 0s, visibility 0s linear 0.6s, z-index 0s linear 0.02s;*/
		background: #f2fbfe;
		border: 1px solid #e7eae7;
		box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
		border-top: 0;
		transition: none;
	}
	nav ul li .submenu ul li a,
	nav ul li .submenu ul li .childMarker {
		line-height: 46px;
		background: #ffffff !important;
		font-size: 18px;
		color: rgba(0, 0, 0, 0.8);
		border-bottom: 1px solid #e7eae7;
		font-weight: 400;
		max-width: 330px;
		position: relative;
		letter-spacing: 0;
		text-align: left;
		padding: 0 20px;
	}
	nav ul li .submenu ul li a:after,
	nav ul li .submenu ul li .childMarker:after {
		float: right;
		font-size: 18px;
		margin: 15px 10px 0 0;
	}
	nav ul li .submenu ul li a:hover,
	nav ul li .submenu ul li .childMarker:hover {
		background: #f6f6f6 !important;
		color: #cc0808;
	}
	nav ul li.submenu-parent:hover .submenu {
		visibility: visible;
		/* shows sub-menu */
		opacity: 1;
		z-index: 1;
		/*transform: translateY(60px);
				transition-delay: 0s, 0s, 0.6s;*/
		/* this removes the transition delay so the menu will be visible while the other styles transition */
	}
}
nav ul li div.submenu div.grandChildren {
	left: 332px;
	padding: 30px;
	position: absolute;
	top: 0;
	width: 71%;
	padding-right: 0;
	background: #f2fbfe;
	box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
	display: none;
	min-height:950px;
}
nav ul li div.submenu div.grandChildren aside {
	width: 33.33333333%;
	float: left;
	padding: 0;
	margin: 0 0% 0 0;
	padding-right: 30px;
}
nav ul li div.submenu div.grandChildren aside h3 {
	font-size: 18px;
	color: #0060a0;
	margin: 0;
	font-weight: 400;
	text-transform: none;
}
nav ul li div.submenu div.grandChildren h2 {
	font-size: 18px;
	color: #cc0808;
	margin: 0 0 20px;
	text-align:left;
}
nav ul li div.submenu div.grandChildren ul {
	position: static;
	margin: 0 0 30px;
	width: 100%;
}
nav ul li div.submenu div.grandChildren ul li a {
	color: #333333;
	line-height: 24px !important;
	padding: 0 !important;
	background: none !important;
	border: 0 !important;
	font-size: 13px !important;
}
nav ul li div.submenu div.grandChildren ul li a:after {
	display: none;
}
nav ul li div.submenu div.grandChildren ul li:nth-child(2) {
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	padding-top: 5px;
}
nav ul li div.submenu .submenuInner-parent:hover .grandChildren {
	display: block;
}
@media only screen and (max-width: 767px) {
	table td[class*="col-"], table th[class*="col-"] {
    position: static;
    display: table-cell;
    float:left;
	text-align: center;
}
	div.grandChildren h2 {
		display: none;
	}
	div.grandChildren h3 {
		background: rgba(0, 0, 0, 0.01);
		padding: 12px 14px;
	}
	#mobileMenu .childMarker i {
		float: right;
		color: #ffffff !important;
	}
	.form input, textarea { width:100%; }
	.btn-cen { text-align: center; padding:0; }
tr > td
{
	padding:10px 0;
}

.categorymenu li{
    padding-bottom: 10px;
    font-size: 15px;
}
.row {
margin-right: 0px;
margin-left: 0px;
}

.join-new tr td { padding:5px 0; }

table caption, table th, table td {
    text-align: left;
    vertical-align: middle;
}
.input, .textarea { width:120px; }

.country{
	padding:10px;
	/*font-size:14px;*/
	    width:90%;
		display:inline-block;
}
.medication
{
	background-color: #E9E9E9;
    width: auto;
    padding: 10px;
	margin: 3px 0px;
}
.generate_report
{
	 margin-top: 50px;
    background-color:#ED1C24;
   padding:10px 25px;
	font-size: 18px;
	color:#FFF;
	border-radius:5px;
	text-align: center;
	margin:auto;
	border:0;
width: auto;
}
.linkyourcard { width: auto; margin:0 auto;}
}
.whiteFontText{ color: #FFF !important; }
.btn { white-space: normal; margin-bottom:10px; }
.margin10px { margin-bottom:10px; }
.bg-color-new { background-color: #578dd1; height:45px; color:#FFF; }

.btn-cen { text-align:right; padding:0; }

.form-control { margin-bottom:5px !important; }
.inputbox, .inputbox { margin-bottom:5px; width:95%; }
select, textarea { margin-bottom:5px; width:95%; }
.form-group {
    margin-bottom: 0px;
}
.linkyourcard { width:700px; margin:0 auto;}
@media only screen and (min-width:768px) and (max-width:1024px) {
nav ul li .submenu {
		visibility: hidden;
		/* hides sub-menu */
		/*opacity: 0;*/
		position: absolute;
		top: 46px;
		left: 0;
		width: 100%;
		/*transform: translateY(-2em);*/
		z-index: -1;
		/*transition: all 0.6s ease-in-out 0s, visibility 0s linear 0.6s, z-index 0s linear 0.02s;*/
		background: #f2fbfe;
		border: 1px solid #e7eae7;
		box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
		border-top: 0;
		transition: none;
	}
}
.middlepart { margin:50px 0; overflow:hidden; }
.middlepart ul { margin-bottom:30px; }
.middlepart ul li { list-style-type:none; line-height:22px; }
.middlepart h2 { font-size:30px; font-weight:400; }
.middlepart h3 { font-size:22px; margin:0 0 10px 0; color:#cc0808; font-weight:300; border-bottom:1px solid #e5e5e5; line-height:35px; }

.redtext { color:#F00; font-weight:bold; }

.target-tabs h2 { color: #48a9ea; font-weight:normal; text-transform:inherit; margin: 0 0 3px 0px; }
.target-tabs p { margin-bottom: 20px; }

.buytreatment .button {
    border:2px solid #993a64 !important; }

.services-flex-container { display: flex; margin: 30px auto; flex-wrap: wrap; align-items: center; justify-content: center; }
.services-box { width:80%; height:170px; background-color:#cc0808; margin:0px 10px 20px 10px; padding:0px 0 0 0; color:#FFF; text-align:center; font-weight:bold; }
.services-box p { color:#FFF; }

.search-box { background-color:#efefef; display:block; padding:15px; margin:10px 0 0 0; }
.search-box .price { font-size:22px; color:#F00; }
.search-box p { font-size: 16px; color: #666; font-weight: bold; margin:0 0 5px 0; }
.search-box h6 { font-size: 16px; color: #666; font-weight: normal; margin:0 0 5px 0; }

.button-blue-general { background-color: #333; padding:8px 20px; border:none; color:#FFF; width:auto; height: auto; border-radius:5px; text-align:center; text-decoration:none; display:inline-block; font-size:16px; cursor: pointer; margin:10px 0 0 0; border:1px solid #333; }
.button-blue-general:hover { background-color: #FFF; padding:8px 20px; border:none; color:#333; width:auto; height: auto; border-radius:5px; text-align:center; text-decoration:none; display:inline-block; font-size:16px; cursor: pointer; margin:10px 0 0 0; border:1px solid #333; }

.book-appointment-main-box {}
.book-appointment-main-box h4 { color:#127cbd; font-size:18px; margin-bottom:20px; font-weight:bold; }
.book-appointment-main-box .redtext { color:#ed2227; font-size:14px; }

.book-appointment-main-box .cart-item { text-align:left; border-bottom:1px solid #ccc; margin-bottom:15px; line-height:25px; font-size:16px; color:#000; padding:0 0 5px 0; }
.book-appointment-main-box .cart-item span { color:#ed2227; font-weight: bold; }
.book-appointment-main-box .total {font-size:16px; }
.book-appointment-main-box .total span { margin-left:50px; color:#ed2227; font-weight: bold; }

.button-blue-general-full { background-color: #cc0808; padding:8px 20px; color:#FFF; width:100%; height: auto; border-radius:5px; text-align:center; text-decoration:none; display:inline-block; font-size:16px; cursor: pointer; margin:10px 0 0 0; border:1px solid #cc0808; }
.button-blue-general-full:hover { background-color: #FFF; color:#cc0808; border:1px solid #cc0808; }

.month { padding: 20px; width: 100%; background: #127cbd; text-align: center; }

.register-box { margin:50px auto; color:#000; }
.register-box h4 { font-size:16px; margin-bottom:10px; font-weight: bold; }
.register-box span { color:#999; }
.register-box .fa-user, .register-box .fa-credit-card, .register-box .fa-gift { color:#666; font-size:18px; margin-right:10px; }
.register-box .checkbox-small { width:15px; }

.radio-inline, .checkbox-inline {
    display: inline-block;
    padding-left: 40px;
    margin-bottom: 0;
    font-weight: 400;
    vertical-align: middle;
    cursor: pointer;
}
@media only screen and (min-width:320px) and (max-width:768px) {
	.radio-inline, .checkbox-inline { display:block; padding-left:20px; }
}
.radio-inline+.radio-inline, .checkbox-inline+.checkbox-inline {
    margin-top: 0;
    margin-left: 0px;
}
input[type=radio], input[type=radio] {
    margin: 0px 0 0;
    margin-top: 1px \9;
    line-height: normal;
}
.radio input[type=radio], .radio-inline input[type=radio], .checkbox input[type=radio], .checkbox-inline input[type=radio] {
    position: absolute;
    margin-top: 4px \9;
    margin-left: -25px;
}

.card-details { background-color:#f3f3f3; padding:10px; display:inline-block; }

.greybox { background-color:#f3f3f3; padding:20px; }
.greybox h4 { font-size:26px; margin:0; font-weight:normal; }
.greybox h3 { font-size:40px; margin:0; font-weight:normal; }
.greybox p { font-size:16px; }
.greybox .redlink { color:#ed2227; }
.greybox .redtext { color:#ed2227; font-weight:bold; }
.greybox .greyline { border-bottom:1px solid #CCC; margin:10px 0; }

.buynow-box { padding:20px; background-color:#f3f3f3; color:#000; }
.buynow-box h4 { font-size:16px; margin-bottom:10px; }
.buynow-box h4 span { color:#F00; margin-left:40px; font-weight:bold; }

@media only screen and (min-width:320px) and (max-width:768px) {.form-group {margin-bottom:15px; margin-top:0px; } }

label { font-weight:normal; }

.cleatfix { clear:both; }

.greybox .greyline { border-bottom: 1px solid #CCC; margin: 10px 0; }

.button-red-general, .button-red-general:hover { background-color: #ed2227; padding:8px 20px; border:none; color:white; width:auto; height: auto; border-radius:5px; text-align:center; text-decoration:none; display:inline-block; font-size:16px; cursor: pointer; margin:20px 0; }
.margin30 { margin-bottom:30px; }
.margin20 { margin-bottom:20px; }

.panel-heading { min-height: 110px; }
.fa-trash { color:#F00; }
.redtext-small { font-size:12px; font-weight:normal; margin-left:20px; }

.matching-search-part { margin:10px auto 0px auto; }
.matching-search-part h4 { color:#127cbd; font-size:22px; font-weight:bold; line-height:30px; }
.matching-search-part p { font-size:16px; color:#666; font-weight:bold; margin:0; }
.matching-search-part p span { font-size:14px; color:#ed2227; font-weight:normal; }
.matching-search-part .search-box { background-color:#efefef; display:block; padding:15px; margin-bottom:30px; }
.matching-search-part .search-box .price { font-size:22px; }
.matching-search-part .outline-box { border:1px solid #ccc; padding:30px 0px 20px 0px; text-align:center; min-height:165px; vertical-align: middle; margin-top:30px; }
.services-box p { color:#FFF; }

.services-flex-container { display: flex; margin:0px auto 0px auto; flex-wrap: wrap; align-items: center; justify-content: left; }
.services-box-details { width:14%; height:170px; background-color:#ed2227; margin:0px 10px 20px 10px; padding:0px 0 0 0; color:#FFF; text-align:center; font-weight:bold; }
.services-box-details:hover, .services-box-details .select { width:14%; height:170px; background-color:#666; margin:0px 10px 20px 10px; padding:0px 0 0 0; color:#FFF; text-align:center; font-weight:bold; }
.services-box-details p { color:#FFF; font-size:13px; line-height:16px; font-weight:normal; }
@media only screen and (min-width:320px) and (max-width:767px) { .services-box-details, .services-box, .services-box-details:hover { width: auto;} }

.detail-menu-bg { background-color:#e3e3e3; padding:15px 0; }
.detail-menu { background-color:#FFF; padding:10px 0; width: max-content; width:-moz-fit-content; box-shadow:0px 0px 10px #797979; }
.detail-menu ul { margin:0px; padding:0px;  }
.detail-menu ul li { list-style-type:none; display:inline-block; }
.detail-menu ul li a { font-size:16px; font-weight:bold; color:#666; padding:9px 22px; }
.detail-menu ul li a:hover { background-color:#ed2227; font-size:16px; font-weight:bold; color:#FFF; padding:9px 22px; }
.detail-menu ul li .selected { background-color:#ed2227; color:#FFF; padding:9px 22px; }

.services-blue-belt { background-color:#0776ba; height:90px; box-shadow:0px 10px 10px #CCCCCC; }
@media only screen and (min-width:768px) and (max-width:992px) { .services-blue-belt { height: auto; } }
@media only screen and (min-width:320px) and (max-width:767px) { .services-blue-belt { height: auto; } }

.services { padding:10px 0 0 0px; color:#FFF; text-align:center; }
@media only screen and (min-width:768px) and (max-width:992px) { .services { padding:10px 0 10px 0px; } }

@media only screen and (min-width:320px) and (max-width:767px) { .services { padding:10px 0 10px 0px; } }
.services p { font-size:15px; font-weight:bold; }
.appointment-box-search { background-color:#FFF; padding:30px 50px; width:450px; margin:40px 0 40px 0%; min-height:150px; box-shadow:15px 15px 30px #a41a1d; }

h4 { font-size:18px; margin-bottom:10px; font-weight:bold; }

.pharmacy-bg {background: url('../image/slider001_details.jpg'); background-size: cover; height:360px; background-color: #ec2226; }

@media only screen and (min-width:320px) and (max-width:768px) {
	.pharmacy-bg { background: none; height: auto;	background-color: #ec2226; }
	.appointment-box-search { background-color: #FFF; padding:20px; width: auto; margin: 10px 0 20px 0%; min-height: 140px; box-shadow: 10px 10px 10px #a41a1d; }
	}

/*input { width:100%; height:45px; margin-bottom:10px; border:1px solid #dcdcdc; padding:5px 5px 5px 10px; }*/
select { width:100%; height:45px; margin-top:5px; border:1px solid #dcdcdc; padding:5px 5px 5px 10px; }
.button-red { background-color: #ed2227; border:none; color:white; width:100%; height:45px; text-align:center; text-decoration:none; display:inline-block; font-size: 16px; cursor: pointer; }

.bluehead-slider { color:#0776ba; font-size:30px; line-height:37px; margin-bottom:10px; }
@media only screen and (min-width:320px) and (max-width:768px) { .bluehead-slider { font-size:26px; line-height:30px; text-align:center; } }