@-webkit-keyframes motopress-animation-top-to-bottom {
	0.00% {
		opacity           : 0;
		-webkit-transform : translateY(-20px);
		-moz-transform    : translateY(-20px);
		transform         : translateY(-20px);
	}
	100% {
		opacity           : 1;
		-webkit-transform : translateY(0);
		-moz-transform    : translateY(0);
		transform         : translateY(0);
	}
}

@keyframes motopress-animation-top-to-bottom {
	0.00% {
		opacity           : 0;
		-webkit-transform : translateY(-20px);
		-moz-transform    : translateY(-20px);
		transform         : translateY(-20px);
	}
	100% {
		opacity           : 1;
		-webkit-transform : translateY(0);
		-moz-transform    : translateY(0);
		transform         : translateY(0);
	}
}

@-webkit-keyframes motopress-animation-bottom-to-top {
	0.00% {
		opacity           : 0;
		-webkit-transform : translateY(20px);
		-moz-transform    : translateY(20px);
		transform         : translateY(20px);
	}
	100% {
		opacity           : 1;
		-webkit-transform : translateY(0);
		-moz-transform    : translateY(0);
		transform         : translateY(0);
	}
}

@keyframes motopress-animation-bottom-to-top {
	0.00% {
		opacity           : 0;
		-webkit-transform : translateY(20px);
		-moz-transform    : translateY(20px);
		transform         : translateY(20px);
	}
	100% {
		opacity           : 1;
		-webkit-transform : translateY(0);
		-moz-transform    : translateY(0);
		transform         : translateY(0);
	}
}

@-webkit-keyframes motopress-animation-left-to-right {
	0.00% {
		opacity           : 0;
		-webkit-transform : translateX(-20px);
		-moz-transform    : translateX(-20px);
		transform         : translateX(-20px);
	}
	100% {
		opacity           : 1;
		-webkit-transform : translateX(0);
		-moz-transform    : translateX(0);
		transform         : translateX(0);
	}
}

@keyframes motopress-animation-left-to-right {
	0.00% {
		opacity           : 0;
		-webkit-transform : translateX(-20px);
		-moz-transform    : translateX(-20px);
		transform         : translateX(-20px);
	}
	100% {
		opacity           : 1;
		-webkit-transform : translateX(0);
		-moz-transform    : translateX(0);
		transform         : translateX(0);
	}
}

@-webkit-keyframes motopress-animation-right-to-left {
	0.00% {
		opacity           : 0;
		-webkit-transform : translateX(20px);
		-moz-transform    : translateX(20px);
		transform         : translateX(20px);
	}
	100% {
		opacity           : 1;
		-webkit-transform : translateX(0);
		-moz-transform    : translateX(0);
		transform         : translateX(0);
	}
}

@keyframes motopress-animation-right-to-left {
	0.00% {
		opacity           : 0;
		-webkit-transform : translateX(20px);
		-moz-transform    : translateX(20px);
		transform         : translateX(20px);
	}
	100% {
		opacity           : 1;
		-webkit-transform : translateX(0);
		-moz-transform    : translateX(0);
		transform         : translateX(0);
	}
}

@keyframes motopress-animation-appear {
	0.00% {
		-webkit-transform : scale(0);
		-moz-transform    : scale(0);
		transform         : scale(0);
		opacity           : 0.0;
	}
	60% {
		-webkit-transform : scale(1.1);
		-moz-transform    : scale(1.1);
		transform         : scale(1.1);
	}
	80% {
		-webkit-transform : scale(0.9);
		-moz-transform    : scale(0.9);
		transform         : scale(0.9);
		opacity           : 1;
	}
	100% {
		-webkit-transform : scale(1);
		-moz-transform    : scale(1);
		transform         : scale(1);
		opacity           : 1;
	}
}

@-webkit-keyframes motopress-animation-appear {
	0.00% {
		-webkit-transform : scale(0);
		-moz-transform    : scale(0);
		transform         : scale(0);
		opacity           : 0.0;
	}
	60% {
		-webkit-transform : scale(1.1);
		-moz-transform    : scale(1.1);
		transform         : scale(1.1);
	}
	80% {
		-webkit-transform : scale(0.9);
		-moz-transform    : scale(0.9);
		transform         : scale(0.9);
		opacity           : 1;
	}
	100% {
		-webkit-transform : scale(1);
		-moz-transform    : scale(1);
		transform         : scale(1);
		opacity           : 1;
	}
}

.motopress-animation-top-to-bottom {
	-webkit-animation-duration  : 0.5s;
	-moz-animation-duration     : 0.5s;
	-o-transition-duration      : 0.5s;
	animation-duration          : 0.5s;
	-webkit-animation-fill-mode : both;
	-moz-animation-fill-mode    : both;
	-o-animation-fill-mode      : both;
	animation-fill-mode         : both;
	-webkit-animation-name      : motopress-animation-top-to-bottom;
	-moz-animation-name         : motopress-animation-top-to-bottom;
	-o-animation-name           : motopress-animation-top-to-bottom;
	-ms-animation-name          : motopress-animation-top-to-bottom;
	animation-name              : motopress-animation-top-to-bottom;
}

.motopress-animation-bottom-to-top {
	-webkit-animation-duration  : 0.5s;
	-moz-animation-duration     : 0.5s;
	-o-transition-duration      : 0.5s;
	animation-duration          : 0.5s;
	-webkit-animation-fill-mode : both;
	-moz-animation-fill-mode    : both;
	-o-animation-fill-mode      : both;
	animation-fill-mode         : both;
	-webkit-animation-name      : motopress-animation-bottom-to-top;
	-moz-animation-name         : motopress-animation-bottom-to-top;
	-o-animation-name           : motopress-animation-bottom-to-top;
	-ms-animation-name          : motopress-animation-bottom-to-top;
	animation-name              : motopress-animation-bottom-to-top;
}

.motopress-animation-left-to-right {
	-webkit-animation-duration  : 0.5s;
	-moz-animation-duration     : 0.5s;
	-o-transition-duration      : 0.5s;
	animation-duration          : 0.5s;
	-webkit-animation-fill-mode : both;
	-moz-animation-fill-mode    : both;
	-o-animation-fill-mode      : both;
	animation-fill-mode         : both;
	-webkit-animation-name      : motopress-animation-left-to-right;
	-moz-animation-name         : motopress-animation-left-to-right;
	-o-animation-name           : motopress-animation-left-to-right;
	-ms-animation-name          : motopress-animation-left-to-right;
	animation-name              : motopress-animation-left-to-right;
}

.motopress-animation-right-to-left {
	-webkit-animation-duration  : 0.5s;
	-moz-animation-duration     : 0.5s;
	-o-transition-duration      : 0.5s;
	animation-duration          : 0.5s;
	-webkit-animation-fill-mode : both;
	-moz-animation-fill-mode    : both;
	-o-animation-fill-mode      : both;
	animation-fill-mode         : both;
	-webkit-animation-name      : motopress-animation-right-to-left;
	-moz-animation-name         : motopress-animation-right-to-left;
	-o-animation-name           : motopress-animation-right-to-left;
	-ms-animation-name          : motopress-animation-right-to-left;
	animation-name              : motopress-animation-right-to-left;
}

.motopress-animation-appear {
	-webkit-animation-duration        : 1.5s;
	-moz-animation-duration           : 1.5s;
	-o-transition-duration            : 1.5s;
	animation-duration                : 1.5s;
	-webkit-animation-fill-mode       : both;
	-moz-animation-fill-mode          : both;
	-o-animation-fill-mode            : both;
	animation-fill-mode               : both;
	-webkit-animation-name            : motopress-animation-appear;
	-moz-animation-name               : motopress-animation-appear;
	-o-animation-name                 : motopress-animation-appear;
	-ms-animation-name                : motopress-animation-appear;
	animation-name                    : motopress-animation-appear;
	-webkit-animation-timing-function : ease-in-out;
	-moz-animation-timing-function    : ease-in-out;
	animation-timing-function         : ease-in-out;
	visibility                        : visible !important;
}

@media (min-width : 979px) {
	body:not(.motopress-body) .motopress-hide-on-desktop,
	body.motopress-device-preview-action .motopress-hide-on-desktop {
		display : none !important;
	}
}

@media (min-width : 768px) and (max-width : 979px) {
	body:not(.motopress-body) .motopress-hide-on-tablet,
	body.motopress-device-preview-action .motopress-hide-on-tablet {
		display : none !important;
	}
}

@media (max-width : 767px) {
	body:not(.motopress-body) .motopress-hide-on-phone,
	body.motopress-device-preview-action .motopress-hide-on-phone {
		display : none !important;
	}
}

.mfp-bg {
	top        : 0;
	left       : 0;
	width      : 100%;
	height     : 100%;
	z-index    : 1042;
	overflow   : hidden;
	position   : fixed;
	background : #0b0b0b;
	opacity    : 0.8;
	filter     : alpha(opacity=80);
}

.mfp-wrap {
	top                         : 0;
	left                        : 0;
	width                       : 100%;
	height                      : 100%;
	z-index                     : 1043;
	position                    : fixed;
	outline                     : none !important;
	-webkit-backface-visibility : hidden;
}

.mfp-container {
	text-align         : center;
	position           : absolute;
	width              : 100%;
	height             : 100%;
	left               : 0;
	top                : 0;
	padding            : 0 8px;
	-webkit-box-sizing : border-box;
	-moz-box-sizing    : border-box;
	box-sizing         : border-box;
}

.mfp-container:before {
	content        : '';
	display        : inline-block;
	height         : 100%;
	vertical-align : middle;
}

.mfp-align-top .mfp-container:before {
	display : none;
}

.mfp-content {
	position       : relative;
	display        : inline-block;
	vertical-align : middle;
	margin         : 0 auto;
	text-align     : left;
	z-index        : 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
	width  : 100%;
	cursor : auto;
}

.mfp-ajax-cur {
	cursor : progress;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
	cursor : -moz-zoom-out;
	cursor : -webkit-zoom-out;
	cursor : zoom-out;
}

.mfp-zoom {
	cursor : pointer;
	cursor : -webkit-zoom-in;
	cursor : -moz-zoom-in;
	cursor : zoom-in;
}

.mfp-auto-cursor .mfp-content {
	cursor : auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
	-webkit-user-select : none;
	-moz-user-select    : none;
	user-select         : none;
}

.mfp-loading.mfp-figure {
	display : none;
}

.mfp-hide {
	display : none !important;
}

.mfp-preloader {
	color      : #cccccc;
	position   : absolute;
	top        : 50%;
	width      : auto;
	text-align : center;
	margin-top : -0.8em;
	left       : 8px;
	right      : 8px;
	z-index    : 1044;
}

.mfp-preloader a {
	color : #cccccc;
}

.mfp-preloader a:hover {
	color : white;
}

.mfp-s-ready .mfp-preloader {
	display : none;
}

.mfp-s-error .mfp-content {
	display : none;
}

button.mfp-close,
button.mfp-arrow {
	overflow           : visible;
	cursor             : pointer;
	background         : transparent;
	border             : 0;
	-webkit-appearance : none;
	display            : block;
	outline            : none;
	padding            : 0;
	z-index            : 1046;
	-webkit-box-shadow : none;
	box-shadow         : none;
}

button::-moz-focus-inner {
	padding : 0;
	border  : 0;
}

.mfp-close {
	width           : 44px;
	height          : 44px;
	line-height     : 44px;
	position        : absolute;
	right           : 0;
	top             : 0;
	text-decoration : none;
	text-align      : center;
	opacity         : 0.65;
	filter          : alpha(opacity=65);
	padding         : 0 0 18px 10px;
	color           : white;
	font-style      : normal;
	font-size       : 28px;
	font-family     : Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
	opacity : 1;
	filter  : alpha(opacity=100);
}

.mfp-close:active {
	top : 1px;
}

.mfp-close-btn-in .mfp-close {
	color : #333333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
	color         : white;
	right         : -6px;
	text-align    : right;
	padding-right : 6px;
	width         : 100%;
}

.mfp-counter {
	position    : absolute;
	top         : 0;
	right       : 0;
	color       : #cccccc;
	font-size   : 12px;
	line-height : 18px;
	white-space : nowrap;
}

.mfp-arrow {
	position                    : absolute;
	opacity                     : 0.65;
	filter                      : alpha(opacity=65);
	margin                      : 0;
	top                         : 50%;
	margin-top                  : -55px;
	padding                     : 0;
	width                       : 90px;
	height                      : 110px;
	-webkit-tap-highlight-color : rgba(0, 0, 0, 0);
}

.mfp-arrow:active {
	margin-top : -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
	opacity : 1;
	filter  : alpha(opacity=100);
}

.mfp-arrow:before,
.mfp-arrow:after,
.mfp-arrow .mfp-b,
.mfp-arrow .mfp-a {
	content     : '';
	display     : block;
	width       : 0;
	height      : 0;
	position    : absolute;
	left        : 0;
	top         : 0;
	margin-top  : 35px;
	margin-left : 35px;
	border      : medium inset transparent;
}

.mfp-arrow:after,
.mfp-arrow .mfp-a {
	border-top-width    : 13px;
	border-bottom-width : 13px;
	top                 : 8px;
}

.mfp-arrow:before,
.mfp-arrow .mfp-b {
	border-top-width    : 21px;
	border-bottom-width : 21px;
	opacity             : 0.7;
}

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

.mfp-arrow-left:after,
.mfp-arrow-left .mfp-a {
	border-right : 17px solid white;
	margin-left  : 31px;
}

.mfp-arrow-left:before,
.mfp-arrow-left .mfp-b {
	margin-left  : 25px;
	border-right : 27px solid #3f3f3f;
}

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

.mfp-arrow-right:after,
.mfp-arrow-right .mfp-a {
	border-left : 17px solid white;
	margin-left : 39px;
}

.mfp-arrow-right:before,
.mfp-arrow-right .mfp-b {
	border-left : 27px solid #3f3f3f;
}

.mfp-iframe-holder {
	padding-top    : 40px;
	padding-bottom : 40px;
}

.mfp-iframe-holder .mfp-content {
	line-height : 0;
	width       : 100%;
	max-width   : 900px;
}

.mfp-iframe-holder .mfp-close {
	top : -40px;
}

.mfp-iframe-scaler {
	width       : 100%;
	height      : 0;
	overflow    : hidden;
	padding-top : 56.25%;
}

.mfp-iframe-scaler iframe {
	position   : absolute;
	display    : block;
	top        : 0;
	left       : 0;
	width      : 100%;
	height     : 100%;
	box-shadow : 0 0 8px rgba(0, 0, 0, 0.6);
	background : black;
}

img.mfp-img {
	width              : auto;
	max-width          : 100%;
	height             : auto;
	display            : block;
	line-height        : 0;
	-webkit-box-sizing : border-box;
	-moz-box-sizing    : border-box;
	box-sizing         : border-box;
	padding            : 40px 0 40px;
	margin             : 0 auto;
}

.mfp-figure {
	line-height : 0;
}

.mfp-figure:after {
	content    : '';
	position   : absolute;
	left       : 0;
	top        : 40px;
	bottom     : 40px;
	display    : block;
	right      : 0;
	width      : auto;
	height     : auto;
	z-index    : -1;
	box-shadow : 0 0 8px rgba(0, 0, 0, 0.6);
	background : #444444;
}

.mfp-figure small {
	color       : #bdbdbd;
	display     : block;
	font-size   : 12px;
	line-height : 14px;
}

.mfp-figure figure {
	margin : 0;
}

.mfp-bottom-bar {
	margin-top : -36px;
	position   : absolute;
	top        : 100%;
	left       : 0;
	width      : 100%;
	cursor     : auto;
}

.mfp-title {
	text-align    : left;
	line-height   : 18px;
	color         : #f3f3f3;
	word-wrap     : break-word;
	padding-right : 36px;
}

.mfp-image-holder .mfp-content {
	max-width : 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
	cursor : pointer;
}

@media screen and (max-width : 800px) and (orientation : landscape), screen and (max-height : 300px) {
	.mfp-img-mobile .mfp-image-holder {
		padding-left  : 0;
		padding-right : 0;
	}

	.mfp-img-mobile img.mfp-img {
		padding : 0;
	}

	.mfp-img-mobile .mfp-figure:after {
		top    : 0;
		bottom : 0;
	}

	.mfp-img-mobile .mfp-figure small {
		display     : inline;
		margin-left : 5px;
	}

	.mfp-img-mobile .mfp-bottom-bar {
		background         : rgba(0, 0, 0, 0.6);
		bottom             : 0;
		margin             : 0;
		top                : auto;
		padding            : 3px 5px;
		position           : fixed;
		-webkit-box-sizing : border-box;
		-moz-box-sizing    : border-box;
		box-sizing         : border-box;
	}

	.mfp-img-mobile .mfp-bottom-bar:empty {
		padding : 0;
	}

	.mfp-img-mobile .mfp-counter {
		right : 5px;
		top   : 3px;
	}

	.mfp-img-mobile .mfp-close {
		top         : 0;
		right       : 0;
		width       : 35px;
		height      : 35px;
		line-height : 35px;
		background  : rgba(0, 0, 0, 0.6);
		position    : fixed;
		text-align  : center;
		padding     : 0;
	}
}

@media all and (max-width : 900px) {
	.mfp-arrow {
		-webkit-transform : scale(0.75);
		transform         : scale(0.75);
	}

	.mfp-arrow-left {
		-webkit-transform-origin : 0;
		transform-origin         : 0;
	}

	.mfp-arrow-right {
		-webkit-transform-origin : 100%;
		transform-origin         : 100%;
	}

	.mfp-container {
		padding-left  : 6px;
		padding-right : 6px;
	}
}

.mfp-ie7 .mfp-img {
	padding : 0;
}

.mfp-ie7 .mfp-bottom-bar {
	width          : 600px;
	left           : 50%;
	margin-left    : -300px;
	margin-top     : 5px;
	padding-bottom : 5px;
}

.mfp-ie7 .mfp-container {
	padding : 0;
}

.mfp-ie7 .mfp-content {
	padding-top : 44px;
}

.mfp-ie7 .mfp-close {
	top         : 0;
	right       : 0;
	padding-top : 0;
}

.motopress-text-obj span {
	line-height : 1em;
}

.motopress-image-obj .motopress-image-obj-basic {
	max-width : 100% !important;
	margin    : 0 !important;
	padding   : 0 !important;
	border    : none;
}

.motopress-image-obj .motopress-image-caption {
	text-align : center;
}

.motopress-list-obj {
	margin              : 0;
	list-style-position : inside;
}

.motopress-list-obj > ul.motopress-list-type-none {
	list-style : none;
}

.motopress-list-obj > ul.motopress-list-type-icon {
	list-style : none;
}

.motopress-list-obj > ul.motopress-list-type-circle {
	list-style-type : circle;
}

.motopress-list-obj > ul.motopress-list-type-disc {
	list-style-type : disc;
}

.motopress-list-obj > ul.motopress-list-type-square {
	list-style-type : square;
}

.motopress-list-obj > ul.motopress-list-type-armenian {
	list-style-type : armenian;
}

.motopress-list-obj > ul.motopress-list-type-georgian {
	list-style-type : georgian;
}

.motopress-list-obj > ul.motopress-list-type-decimal {
	list-style-type : decimal;
}

.motopress-list-obj > ul.motopress-list-type-decimal-leading-zero {
	list-style-type : decimal-leading-zero;
}

.motopress-list-obj > ul.motopress-list-type-lower-alpha {
	list-style-type : lower-alpha;
}

.motopress-list-obj > ul.motopress-list-type-lower-latin {
	list-style-type : lower-latin;
}

.motopress-list-obj > ul.motopress-list-type-lower-roman {
	list-style-type : lower-roman;
}

.motopress-list-obj > ul.motopress-list-type-lower-greek {
	list-style-type : lower-greek;
}

.motopress-list-obj > ul.motopress-list-type-upper-alpha {
	list-style-type : upper-alpha;
}

.motopress-list-obj > ul.motopress-list-type-upper-latin {
	list-style-type : upper-latin;
}

.motopress-list-obj > ul.motopress-list-type-upper-roman {
	list-style-type : upper-roman;
}

.motopress-list-obj > ul > li {
	list-style : inherit !important;
}

.motopress-list-obj > ul > li > i.fa {
	padding-right : 8px;
}

.motopress-image-slider-obj {
	line-height : normal;
	min-height  : 0;
}

.motopress-image-slider-obj * {
	line-height : normal;
}

.motopress-image-slider-obj .slides {
	list-style  : none outside none;
	margin      : 0 !important;
	padding     : 0;
	line-height : normal;
}

.motopress-image-slider-obj .slides li {
	margin      : 0;
	margin-left : 0 !important;
	padding     : 0;
}

.motopress-image-slider-obj .slides li:before,
.motopress-image-slider-obj .slides li:after {
	content : none !important;
}

.motopress-image-slider-obj .slides li img {
	margin             : 0;
	padding            : 0;
	-moz-box-shadow    : none;
	-webkit-box-shadow : none;
	box-shadow         : none;
	border             : none;
	border             : 1px solid #ffffff;
	box-sizing         : border-box;
}

.motopress-image-slider-obj .flex-control-nav {
	position    : absolute !important;
	list-style  : none outside none !important;
	margin      : 0 !important;
	padding     : 0 !important;
	line-height : normal;
	right       : auto !important;
	bottom      : -40px !important;
	text-align  : center !important;
	z-index     : auto !important;
}

.motopress-image-slider-obj .flex-control-nav li {
	margin  : 0 6px !important;
	padding : 0;
	width   : auto !important;
	height  : auto !important;
}

.motopress-image-slider-obj .flex-control-nav li:before,
.motopress-image-slider-obj .flex-control-nav li:after {
	content : none !important;
}

.motopress-image-slider-obj .flex-control-nav li a {
	position   : static;
	z-index    : auto;
	width      : 11px !important;
	height     : 11px !important;
	background : #666666 !important;
	background : rgba(0, 0, 0, 0.5) !important;
}

.motopress-image-slider-obj .flex-control-nav li a.flex-active {
	background : #000000 !important;
	background : rgba(0, 0, 0, 0.9) !important;
}

.motopress-image-slider-obj .flex-direction-nav {
	list-style  : none outside none;
	margin      : 0 !important;
	padding     : 0;
	line-height : normal;
}

.motopress-image-slider-obj .flex-direction-nav li {
	list-style : none outside none !important;
}

.motopress-image-slider-obj .flex-direction-nav li:before,
.motopress-image-slider-obj .flex-direction-nav li:after {
	content : none !important;
}

.motopress-image-slider-obj .flex-direction-nav a {
	margin      : 0 !important;
	background  : none !important;
	width       : 40px !important;
	height      : 40px !important;
	text-indent : 0 !important;
	color       : rgba(0, 0, 0, 0.8) !important;
	border      : none !important;
	outline     : none !important;
}

.motopress-image-slider-obj .flex-direction-nav a.flex-prev {
	left : 10px !important;
}

.motopress-image-slider-obj .flex-direction-nav a.flex-next {
	right : 10px !important;
}

.motopress-image-slider-obj .flex-direction-nav:hover .flex-prev:hover,
.motopress-image-slider-obj .flex-direction-nav:hover .flex-next:hover {
	opacity : 1;
}

.motopress-image-slider-obj > p {
	display : none !important;
}

.motopress-row .motopress-clmn.motopress-space {
	min-height : 10px;
}

.motopress-row .motopress-clmn.motopress-space .motopress-space-obj {
	height : 100%;
}

.motopress-row .motopress-clmn.motopress-space .motopress-space-obj > div {
	position : absolute;
	top      : 50%;
	left     : 0;
	right    : 0;
}

.motopress-row .motopress-clmn.motopress-space .motopress-space-obj.motopress-space-light > div {
	border-top : 1px solid #ebebeb;
}

.motopress-row .motopress-clmn.motopress-space .motopress-space-obj.motopress-space-normal > div {
	border-top : 2px solid #cdcdcd;
	margin-top : -1px;
}

.motopress-row .motopress-clmn.motopress-space .motopress-space-obj.motopress-space-dotted > div {
	border-top : 2px dotted #cdcdcd;
	margin-top : -1px;
}

.motopress-row .motopress-clmn.motopress-space .motopress-space-obj.motopress-space-dashed > div {
	border-top : 2px dashed #cdcdcd;
	margin-top : -1px;
}

.motopress-row .motopress-clmn.motopress-space .motopress-space-obj.motopress-space-double > div {
	border-top : 4px double #cdcdcd;
	margin-top : -2px;
}

.motopress-row .motopress-clmn.motopress-space .motopress-space-obj.motopress-space-groove > div {
	border-top : 4px groove #cdcdcd;
	margin-top : -2px;
}

.motopress-row .motopress-clmn.motopress-space .motopress-space-obj.motopress-space-ridge > div {
	border-top : 4px ridge #cdcdcd;
	margin-top : -2px;
}

.motopress-row .motopress-clmn.motopress-space .motopress-space-obj.motopress-space-heavy > div {
	border-top : 6px inset #cdcdcd;
	margin-top : -3px;
}

.motopress-video-obj {
	position       : relative;
	padding-bottom : 56.25%;
	padding-top    : 30px;
	height         : 0;
	overflow       : hidden;
}

.motopress-video-obj iframe {
	position : absolute;
	top      : 0;
	left     : 0;
	width    : 100%;
	height   : 100%;
}

.motopress-video-obj .fluid-width-video-wrapper {
	width    : auto !important;
	position : static !important;
	padding  : 0 !important;
}

.motopress-button-obj .motopress-btn,
.motopress-button-inner-obj .motopress-btn,
.motopress-cta-obj .motopress-button-wrap .motopress-btn,
.motopress-download-button-obj .motopress-btn {
	display             : inline-block;
	margin              : 10px 0 10px 0;
	color               : #ffffff;
	line-height         : 1em;
	text-shadow         : 0 1px 1px rgba(21, 21, 22, 0.25);
	text-decoration     : none;
	border              : none;
	-webkit-user-select : none;
	-moz-user-select    : none;
	-ms-user-select     : none;
	-o-user-select      : none;
	user-select         : none;
}

.motopress-button-obj .motopress-btn:hover,
.motopress-button-inner-obj .motopress-btn:hover,
.motopress-cta-obj .motopress-button-wrap .motopress-btn:hover,
.motopress-download-button-obj .motopress-btn:hover,
.motopress-button-obj .motopress-btn:visited,
.motopress-button-inner-obj .motopress-btn:visited,
.motopress-cta-obj .motopress-button-wrap .motopress-btn:visited,
.motopress-download-button-obj .motopress-btn:visited {
	text-decoration : none;
}

.motopress-button-obj .motopress-btn-color-silver,
.motopress-button-inner-obj .motopress-btn-color-silver,
.motopress-cta-obj .motopress-button-wrap .motopress-btn-color-silver,
.motopress-download-button-obj .motopress-btn-color-silver {
	color              : #4f4f4f;
	text-shadow        : 0 1px 1px rgba(255, 255, 255, 0.25);
	-webkit-box-shadow : inset 0 0 0 1px #dcdcdc;
	-moz-box-shadow    : inset 0 0 0 1px #dcdcdc;
	box-shadow         : inset 0 0 0 1px #dcdcdc;
	background-color   : #f0f0f0;
	background-image   : -moz-linear-gradient(bottom, #e6e6e6, #fefefe);
	background-image   : -webkit-gradient(linear, 0 100%, 0 0, from(#e6e6e6), to(#fefefe));
	background-image   : -webkit-linear-gradient(bottom, #e6e6e6, #fefefe);
	background-image   : -o-linear-gradient(bottom, #e6e6e6, #fefefe);
	background-image   : linear-gradient(to top, #e6e6e6, #fefefe);
	filter             : progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe6e6e6', endColorstr='#fffefefe', GradientType=0);
}

.motopress-button-obj .motopress-btn-color-silver:hover,
.motopress-button-inner-obj .motopress-btn-color-silver:hover,
.motopress-cta-obj .motopress-button-wrap .motopress-btn-color-silver:hover,
.motopress-download-button-obj .motopress-btn-color-silver:hover {
	color            : #4f4f4f;
	background-color : #f4f4f4;
	background-image : -moz-linear-gradient(bottom, #ededed, #ffffff);
	background-image : -webkit-gradient(linear, 0 100%, 0 0, from(#ededed), to(#ffffff));
	background-image : -webkit-linear-gradient(bottom, #ededed, #ffffff);
	background-image : -o-linear-gradient(bottom, #ededed, #ffffff);
	background-image : linear-gradient(to top, #ededed, #ffffff);
	filter           : progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffededed', endColorstr='#ffffffff', GradientType=0);
}

.motopress-button-obj .motopress-btn-color-red,
.motopress-button-inner-obj .motopress-btn-color-red,
.motopress-cta-obj .motopress-button-wrap .motopress-btn-color-red,
.motopress-download-button-obj .motopress-btn-color-red {
	-webkit-box-shadow : inset 0 0 0 1px #bc3d2c;
	-moz-box-shadow    : inset 0 0 0 1px #bc3d2c;
	box-shadow         : inset 0 0 0 1px #bc3d2c;
	background-color   : #dd503e;
	background-image   : -moz-linear-gradient(bottom, #d14836, #ee5d4a);
	background-image   : -webkit-gradient(linear, 0 100%, 0 0, from(#d14836), to(#ee5d4a));
	background-image   : -webkit-linear-gradient(bottom, #d14836, #ee5d4a);
	background-image   : -o-linear-gradient(bottom, #d14836, #ee5d4a);
	background-image   : linear-gradient(to top, #d14836, #ee5d4a);
	filter             : progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd14836', endColorstr='#ffee5d4a', GradientType=0);
}

.motopress-button-obj .motopress-btn-color-red:hover,
.motopress-button-inner-obj .motopress-btn-color-red:hover,
.motopress-cta-obj .motopress-button-wrap .motopress-btn-color-red:hover,
.motopress-download-button-obj .motopress-btn-color-red:hover {
	background-color : #ea6857;
	background-image : -moz-linear-gradient(bottom, #e76452, #ef6f5f);
	background-image : -webkit-gradient(linear, 0 100%, 0 0, from(#e76452), to(#ef6f5f));
	background-image : -webkit-linear-gradient(bottom, #e76452, #ef6f5f);
	background-image : -o-linear-gradient(bottom, #e76452, #ef6f5f);
	background-image : linear-gradient(to top, #e76452, #ef6f5f);
	filter           : progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe76452', endColorstr='#ffef6f5f', GradientType=0);
}

.motopress-button-obj .motopress-btn-color-pink-dreams,
.motopress-button-inner-obj .motopress-btn-color-pink-dreams,
.motopress-cta-obj .motopress-button-wrap .motopress-btn-color-pink-dreams,
.motopress-download-button-obj .motopress-btn-color-pink-dreams {
	-webkit-box-shadow : inset 0 0 0 1px #f08eb9;
	-moz-box-shadow    : inset 0 0 0 1px #f08eb9;
	box-shadow         : inset 0 0 0 1px #f08eb9;
	background-color   : #f689ba;
	background-image   : -moz-linear-gradient(bottom, #f171ab, #feaed1);
	background-image   : -webkit-gradient(linear, 0 100%, 0 0, from(#f171ab), to(#feaed1));
	background-image   : -webkit-linear-gradient(bottom, #f171ab, #feaed1);
	background-image   : -o-linear-gradient(bottom, #f171ab, #feaed1);
	background-image   : linear-gradient(to top, #f171ab, #feaed1);
	filter             : progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff171ab', endColorstr='#fffeaed1', GradientType=0);
}

.motopress-button-obj .motopress-btn-color-pink-dreams:hover,
.motopress-button-inner-obj .motopress-btn-color-pink-dreams:hover,
.motopress-cta-obj .motopress-button-wrap .motopress-btn-color-pink-dreams:hover,
.motopress-download-button-obj .motopress-btn-color-pink-dreams:hover {
	background-color : #f8a6cb;
	background-image : -moz-linear-gradient(bottom, #f58dbc, #fdcbe1);
	background-image : -webkit-gradient(linear, 0 100%, 0 0, from(#f58dbc), to(#fdcbe1));
	background-image : -webkit-linear-gradient(bottom, #f58dbc, #fdcbe1);
	background-image : -o-linear-gradient(bottom, #f58dbc, #fdcbe1);
	background-image : linear-gradient(to top, #f58dbc, #fdcbe1);
	filter           : progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff58dbc', endColorstr='#fffdcbe1', GradientType=0);
}

.motopress-button-obj .motopress-btn-color-warm,
.motopress-button-inner-obj .motopress-btn-color-warm,
.motopress-cta-obj .motopress-button-wrap .motopress-btn-color-warm,
.motopress-download-button-obj .motopress-btn-color-warm {
	-webkit-box-shadow : inset 0 0 0 1px #ea8f1a;
	-moz-box-shadow    : inset 0 0 0 1px #ea8f1a;
	box-shadow         : inset 0 0 0 1px #ea8f1a;
	background-color   : #ff8c1a;
	background-image   : -moz-linear-gradient(bottom, #ff7611, #ffac27);
	background-image   : -webkit-gradient(linear, 0 100%, 0 0, from(#ff7611), to(#ffac27));
	background-image   : -webkit-linear-gradient(bottom, #ff7611, #ffac27);
	background-image   : -o-linear-gradient(bottom, #ff7611, #ffac27);
	background-image   : linear-gradient(to top, #ff7611, #ffac27);
	filter             : progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffff7611', endColorstr='#ffffac27', GradientType=0);
}

.motopress-button-obj .motopress-btn-color-warm:hover,
.motopress-button-inner-obj .motopress-btn-color-warm:hover,
.motopress-cta-obj .motopress-button-wrap .motopress-btn-color-warm:hover,
.motopress-download-button-obj .motopress-btn-color-warm:hover {
	background-color : #fda248;
	background-image : -moz-linear-gradient(bottom, #fb8e3d, #ffbf59);
	background-image : -webkit-gradient(linear, 0 100%, 0 0, from(#fb8e3d), to(#ffbf59));
	background-image : -webkit-linear-gradient(bottom, #fb8e3d, #ffbf59);
	background-image : -o-linear-gradient(bottom, #fb8e3d, #ffbf59);
	background-image : linear-gradient(to top, #fb8e3d, #ffbf59);
	filter           : progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffb8e3d', endColorstr='#ffffbf59', GradientType=0);
}

.motopress-button-obj .motopress-btn-color-hot-summer,
.motopress-button-inner-obj .motopress-btn-color-hot-summer,
.motopress-cta-obj .motopress-button-wrap .motopress-btn-color-hot-summer,
.motopress-download-button-obj .motopress-btn-color-hot-summer {
	-webkit-box-shadow : inset 0 0 0 1px #f2bf0b;
	-moz-box-shadow    : inset 0 0 0 1px #f2bf0b;
	box-shadow         : inset 0 0 0 1px #f2bf0b;
	background-color   : #f7c712;
	background-image   : -moz-linear-gradient(bottom, #f1b000, #ffe92e);
	background-image   : -webkit-gradient(linear, 0 100%, 0 0, from(#f1b000), to(#ffe92e));
	background-image   : -webkit-linear-gradient(bottom, #f1b000, #ffe92e);
	background-image   : -o-linear-gradient(bottom, #f1b000, #ffe92e);
	background-image   : linear-gradient(to top, #f1b000, #ffe92e);
	filter             : progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff1b000', endColorstr='#ffffe92e', GradientType=0);
}

.motopress-button-obj .motopress-btn-color-hot-summer:hover,
.motopress-button-inner-obj .motopress-btn-color-hot-summer:hover,
.motopress-cta-obj .motopress-button-wrap .motopress-btn-color-hot-summer:hover,
.motopress-download-button-obj .motopress-btn-color-hot-summer:hover {
	background-color : #fbd139;
	background-image : -moz-linear-gradient(bottom, #f9be20, #ffee5e);
	background-image : -webkit-gradient(linear, 0 100%, 0 0, from(#f9be20), to(#ffee5e));
	background-image : -webkit-linear-gradient(bottom, #f9be20, #ffee5e);
	background-image : -o-linear-gradient(bottom, #f9be20, #ffee5e);
	background-image : linear-gradient(to top, #f9be20, #ffee5e);
	filter           : progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff9be20', endColorstr='#ffffee5e', GradientType=0);
}

.motopress-button-obj .motopress-btn-color-olive-garden,
.motopress-button-inner-obj .motopress-btn-color-olive-garden,
.motopress-cta-obj .motopress-button-wrap .motopress-btn-color-olive-garden,
.motopress-download-button-obj .motopress-btn-color-olive-garden {
	-webkit-box-shadow : inset 0 0 0 1px #8ad532;
	-moz-box-shadow    : inset 0 0 0 1px #8ad532;
	box-shadow         : inset 0 0 0 1px #8ad532;
	background-color   : #92ca26;
	background-image   : -moz-linear-gradient(bottom, #7fb615, #afe840);
	background-image   : -webkit-gradient(linear, 0 100%, 0 0, from(#7fb615), to(#afe840));
	background-image   : -webkit-linear-gradient(bottom, #7fb615, #afe840);
	background-image   : -o-linear-gradient(bottom, #7fb615, #afe840);
	background-image   : linear-gradient(to top, #7fb615, #afe840);
	filter             : progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff7fb615', endColorstr='#ffafe840', GradientType=0);
}

.motopress-button-obj .motopress-btn-color-olive-garden:hover,
.motopress-button-inner-obj .motopress-btn-color-olive-garden:hover,
.motopress-cta-obj .motopress-button-wrap .motopress-btn-color-olive-garden:hover,
.motopress-download-button-obj .motopress-btn-color-olive-garden:hover {
	background-color : #a2d441;
	background-image : -moz-linear-gradient(bottom, #8dc323, #c2ee6e);
	background-image : -webkit-gradient(linear, 0 100%, 0 0, from(#8dc323), to(#c2ee6e));
	background-image : -webkit-linear-gradient(bottom, #8dc323, #c2ee6e);
	background-image : -o-linear-gradient(bottom, #8dc323, #c2ee6e);
	background-image : linear-gradient(to top, #8dc323, #c2ee6e);
	filter           : progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff8dc323', endColorstr='#ffc2ee6e', GradientType=0);
}

.motopress-button-obj .motopress-btn-color-green-grass,
.motopress-button-inner-obj .motopress-btn-color-green-grass,
.motopress-cta-obj .motopress-button-wrap .motopress-btn-color-green-grass,
.motopress-download-button-obj .motopress-btn-color-green-grass {
	-webkit-box-shadow : inset 0 0 0 1px #51b41e;
	-moz-box-shadow    : inset 0 0 0 1px #51b41e;
	box-shadow         : inset 0 0 0 1px #51b41e;
	background-color   : #42b321;
	background-image   : -moz-linear-gradient(bottom, #329c0d, #5bd63f);
	background-image   : -webkit-gradient(linear, 0 100%, 0 0, from(#329c0d), to(#5bd63f));
	background-image   : -webkit-linear-gradient(bottom, #329c0d, #5bd63f);
	background-image   : -o-linear-gradient(bottom, #329c0d, #5bd63f);
	background-image   : linear-gradient(to top, #329c0d, #5bd63f);
	filter             : progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff329c0d', endColorstr='#ff5bd63f', GradientType=0);
}

.motopress-button-obj .motopress-btn-color-green-grass:hover,
.motopress-button-inner-obj .motopress-btn-color-green-grass:hover,
.motopress-cta-obj .motopress-button-wrap .motopress-btn-color-green-grass:hover,
.motopress-download-button-obj .motopress-btn-color-green-grass:hover {
	background-color : #5bc83a;
	background-image : -moz-linear-gradient(bottom, #43b41c, #80e568);
	background-image : -webkit-gradient(linear, 0 100%, 0 0, from(#43b41c), to(#80e568));
	background-image : -webkit-linear-gradient(bottom, #43b41c, #80e568);
	background-image : -o-linear-gradient(bottom, #43b41c, #80e568);
	background-image : linear-gradient(to top, #43b41c, #80e568);
	filter           : progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff43b41c', endColorstr='#ff80e568', GradientType=0);
}

.motopress-button-obj .motopress-btn-color-skyline,
.motopress-button-inner-obj .motopress-btn-color-skyline,
.motopress-cta-obj .motopress-button-wrap .motopress-btn-color-skyline,
.motopress-download-button-obj .motopress-btn-color-skyline {
	-webkit-box-shadow : inset 0 0 0 1px #0aafca;
	-moz-box-shadow    : inset 0 0 0 1px #0aafca;
	box-shadow         : inset 0 0 0 1px #0aafca;
	background-color   : #0fc1ec;
	background-image   : -moz-linear-gradient(bottom, #00aaea, #25e3ef);
	background-image   : -webkit-gradient(linear, 0 100%, 0 0, from(#00aaea), to(#25e3ef));
	background-image   : -webkit-linear-gradient(bottom, #00aaea, #25e3ef);
	background-image   : -o-linear-gradient(bottom, #00aaea, #25e3ef);
	background-image   : linear-gradient(to top, #00aaea, #25e3ef);
	filter             : progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff00aaea', endColorstr='#ff25e3ef', GradientType=0);
}

.motopress-button-obj .motopress-btn-color-skyline:hover,
.motopress-button-inner-obj .motopress-btn-color-skyline:hover,
.motopress-cta-obj .motopress-button-wrap .motopress-btn-color-skyline:hover,
.motopress-download-button-obj .motopress-btn-color-skyline:hover {
	background-color : #3cccef;
	background-image : -moz-linear-gradient(bottom, #2eb8ec, #51eaf4);
	background-image : -webkit-gradient(linear, 0 100%, 0 0, from(#2eb8ec), to(#51eaf4));
	background-image : -webkit-linear-gradient(bottom, #2eb8ec, #51eaf4);
	background-image : -o-linear-gradient(bottom, #2eb8ec, #51eaf4);
	background-image : linear-gradient(to top, #2eb8ec, #51eaf4);
	filter           : progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff2eb8ec', endColorstr='#ff51eaf4', GradientType=0);
}

.motopress-button-obj .motopress-btn-color-aqua-blue,
.motopress-button-inner-obj .motopress-btn-color-aqua-blue,
.motopress-cta-obj .motopress-button-wrap .motopress-btn-color-aqua-blue,
.motopress-download-button-obj .motopress-btn-color-aqua-blue {
	-webkit-box-shadow : inset 0 0 0 1px #228ddb;
	-moz-box-shadow    : inset 0 0 0 1px #228ddb;
	box-shadow         : inset 0 0 0 1px #228ddb;
	background-color   : #2483e1;
	background-image   : -moz-linear-gradient(bottom, #0c61d6, #48b7f1);
	background-image   : -webkit-gradient(linear, 0 100%, 0 0, from(#0c61d6), to(#48b7f1));
	background-image   : -webkit-linear-gradient(bottom, #0c61d6, #48b7f1);
	background-image   : -o-linear-gradient(bottom, #0c61d6, #48b7f1);
	background-image   : linear-gradient(to top, #0c61d6, #48b7f1);
	filter             : progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0c61d6', endColorstr='#ff48b7f1', GradientType=0);
}

.motopress-button-obj .motopress-btn-color-aqua-blue:hover,
.motopress-button-inner-obj .motopress-btn-color-aqua-blue:hover,
.motopress-cta-obj .motopress-button-wrap .motopress-btn-color-aqua-blue:hover,
.motopress-download-button-obj .motopress-btn-color-aqua-blue:hover {
	background-color : #4c98e7;
	background-image : -moz-linear-gradient(bottom, #2977e2, #81caef);
	background-image : -webkit-gradient(linear, 0 100%, 0 0, from(#2977e2), to(#81caef));
	background-image : -webkit-linear-gradient(bottom, #2977e2, #81caef);
	background-image : -o-linear-gradient(bottom, #2977e2, #81caef);
	background-image : linear-gradient(to top, #2977e2, #81caef);
	filter           : progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff2977e2', endColorstr='#ff81caef', GradientType=0);
}

.motopress-button-obj .motopress-btn-color-violet,
.motopress-button-inner-obj .motopress-btn-color-violet,
.motopress-cta-obj .motopress-button-wrap .motopress-btn-color-violet,
.motopress-download-button-obj .motopress-btn-color-violet {
	-webkit-box-shadow : inset 0 0 0 1px #9850d4;
	-moz-box-shadow    : inset 0 0 0 1px #9850d4;
	box-shadow         : inset 0 0 0 1px #9850d4;
	background-color   : #9741d9;
	background-image   : -moz-linear-gradient(bottom, #7c13c6, #c085f6);
	background-image   : -webkit-gradient(linear, 0 100%, 0 0, from(#7c13c6), to(#c085f6));
	background-image   : -webkit-linear-gradient(bottom, #7c13c6, #c085f6);
	background-image   : -o-linear-gradient(bottom, #7c13c6, #c085f6);
	background-image   : linear-gradient(to top, #7c13c6, #c085f6);
	filter             : progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff7c13c6', endColorstr='#ffc085f6', GradientType=0);
}

.motopress-button-obj .motopress-btn-color-violet:hover,
.motopress-button-inner-obj .motopress-btn-color-violet:hover,
.motopress-cta-obj .motopress-button-wrap .motopress-btn-color-violet:hover,
.motopress-download-button-obj .motopress-btn-color-violet:hover {
	background-color : #ae62e8;
	background-image : -moz-linear-gradient(bottom, #9532da, #d4a9fc);
	background-image : -webkit-gradient(linear, 0 100%, 0 0, from(#9532da), to(#d4a9fc));
	background-image : -webkit-linear-gradient(bottom, #9532da, #d4a9fc);
	background-image : -o-linear-gradient(bottom, #9532da, #d4a9fc);
	background-image : linear-gradient(to top, #9532da, #d4a9fc);
	filter           : progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff9532da', endColorstr='#ffd4a9fc', GradientType=0);
}

.motopress-button-obj .motopress-btn-color-dark-grey,
.motopress-button-inner-obj .motopress-btn-color-dark-grey,
.motopress-cta-obj .motopress-button-wrap .motopress-btn-color-dark-grey,
.motopress-download-button-obj .motopress-btn-color-dark-grey {
	-webkit-box-shadow : inset 0 0 0 1px #8c8c8c;
	-moz-box-shadow    : inset 0 0 0 1px #8c8c8c;
	box-shadow         : inset 0 0 0 1px #8c8c8c;
	background-color   : #818181;
	background-image   : -moz-linear-gradient(bottom, #5b5b5b, #bababa);
	background-image   : -webkit-gradient(linear, 0 100%, 0 0, from(#5b5b5b), to(#bababa));
	background-image   : -webkit-linear-gradient(bottom, #5b5b5b, #bababa);
	background-image   : -o-linear-gradient(bottom, #5b5b5b, #bababa);
	background-image   : linear-gradient(to top, #5b5b5b, #bababa);
	filter             : progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5b5b5b', endColorstr='#ffbababa', GradientType=0);
}

.motopress-button-obj .motopress-btn-color-dark-grey:hover,
.motopress-button-inner-obj .motopress-btn-color-dark-grey:hover,
.motopress-cta-obj .motopress-button-wrap .motopress-btn-color-dark-grey:hover,
.motopress-download-button-obj .motopress-btn-color-dark-grey:hover {
	background-color : #a3a2a2;
	background-image : -moz-linear-gradient(bottom, #878787, #cdcbcb);
	background-image : -webkit-gradient(linear, 0 100%, 0 0, from(#878787), to(#cdcbcb));
	background-image : -webkit-linear-gradient(bottom, #878787, #cdcbcb);
	background-image : -o-linear-gradient(bottom, #878787, #cdcbcb);
	background-image : linear-gradient(to top, #878787, #cdcbcb);
	filter           : progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff878787', endColorstr='#ffcdcbcb', GradientType=0);
}

.motopress-button-obj .motopress-btn-color-black,
.motopress-button-inner-obj .motopress-btn-color-black,
.motopress-cta-obj .motopress-button-wrap .motopress-btn-color-black,
.motopress-download-button-obj .motopress-btn-color-black {
	-webkit-box-shadow : inset 0 0 0 1px #1f1f1f;
	-moz-box-shadow    : inset 0 0 0 1px #1f1f1f;
	box-shadow         : inset 0 0 0 1px #1f1f1f;
	background-color   : #2b2b2b;
	background-image   : -moz-linear-gradient(bottom, #0d0d0d, #595959);
	background-image   : -webkit-gradient(linear, 0 100%, 0 0, from(#0d0d0d), to(#595959));
	background-image   : -webkit-linear-gradient(bottom, #0d0d0d, #595959);
	background-image   : -o-linear-gradient(bottom, #0d0d0d, #595959);
	background-image   : linear-gradient(to top, #0d0d0d, #595959);
	filter             : progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0d0d0d', endColorstr='#ff595959', GradientType=0);
}

.motopress-button-obj .motopress-btn-color-black:hover,
.motopress-button-inner-obj .motopress-btn-color-black:hover,
.motopress-cta-obj .motopress-button-wrap .motopress-btn-color-black:hover,
.motopress-download-button-obj .motopress-btn-color-black:hover {
	background-color : #474747;
	background-image : -moz-linear-gradient(bottom, #272727, #767676);
	background-image : -webkit-gradient(linear, 0 100%, 0 0, from(#272727), to(#767676));
	background-image : -webkit-linear-gradient(bottom, #272727, #767676);
	background-image : -o-linear-gradient(bottom, #272727, #767676);
	background-image : linear-gradient(to top, #272727, #767676);
	filter           : progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff272727', endColorstr='#ff767676', GradientType=0);
}

.motopress-button-obj .motopress-btn.ui-state-active,
.motopress-button-inner-obj .motopress-btn.ui-state-active,
.motopress-cta-obj .motopress-button-wrap .motopress-btn.ui-state-active,
.motopress-download-button-obj .motopress-btn.ui-state-active {
	background-image : none;
	box-shadow       : 2px 2px 3px rgba(0, 0, 0, 0.1) inset, -1px -1px 0px rgba(255, 255, 255, 0.6) inset;
	text-shadow      : none;
}

.motopress-button-obj .motopress-btn-size-large,
.motopress-button-inner-obj .motopress-btn-size-large,
.motopress-cta-obj .motopress-button-wrap .motopress-btn-size-large,
.motopress-download-button-obj .motopress-btn-size-large {
	padding   : 13px 36px;
	font-size : 18px;
}

.motopress-button-obj .motopress-btn-size-middle,
.motopress-button-inner-obj .motopress-btn-size-middle,
.motopress-cta-obj .motopress-button-wrap .motopress-btn-size-middle,
.motopress-download-button-obj .motopress-btn-size-middle {
	padding   : 10px 23px;
	font-size : 16px;
}

.motopress-button-obj .motopress-btn-size-small,
.motopress-button-inner-obj .motopress-btn-size-small,
.motopress-cta-obj .motopress-button-wrap .motopress-btn-size-small,
.motopress-download-button-obj .motopress-btn-size-small {
	padding   : 7px 15px;
	font-size : 13px;
}

.motopress-button-obj .motopress-btn-size-mini,
.motopress-button-inner-obj .motopress-btn-size-mini,
.motopress-cta-obj .motopress-button-wrap .motopress-btn-size-mini,
.motopress-download-button-obj .motopress-btn-size-mini {
	padding   : 6px 11px;
	font-size : 11px;
}

.motopress-button-obj .motopress-btn-rounded,
.motopress-button-inner-obj .motopress-btn-rounded,
.motopress-cta-obj .motopress-button-wrap .motopress-btn-rounded,
.motopress-download-button-obj .motopress-btn-rounded {
	-webkit-border-radius : 3px;
	-moz-border-radius    : 3px;
	border-radius         : 3px;
}

.motopress-button-obj .motopress-btn-round,
.motopress-button-inner-obj .motopress-btn-round,
.motopress-cta-obj .motopress-button-wrap .motopress-btn-round,
.motopress-download-button-obj .motopress-btn-round {
	-webkit-border-radius : 2em;
	-moz-border-radius    : 2em;
	border-radius         : 2em;
}

.motopress-button-obj .motopress-btn-icon-indent-mini i.motopress-btn-icon-align-left,
.motopress-button-inner-obj .motopress-btn-icon-indent-mini i.motopress-btn-icon-align-left,
.motopress-cta-obj .motopress-button-wrap .motopress-btn-icon-indent-mini i.motopress-btn-icon-align-left,
.motopress-download-button-obj .motopress-btn-icon-indent-mini i.motopress-btn-icon-align-left {
	padding-right : 4px;
}

.motopress-button-obj .motopress-btn-icon-indent-mini i.motopress-btn-icon-align-right,
.motopress-button-inner-obj .motopress-btn-icon-indent-mini i.motopress-btn-icon-align-right,
.motopress-cta-obj .motopress-button-wrap .motopress-btn-icon-indent-mini i.motopress-btn-icon-align-right,
.motopress-download-button-obj .motopress-btn-icon-indent-mini i.motopress-btn-icon-align-right {
	padding-left : 4px;
}

.motopress-button-obj .motopress-btn-icon-indent-small i.motopress-btn-icon-align-left,
.motopress-button-inner-obj .motopress-btn-icon-indent-small i.motopress-btn-icon-align-left,
.motopress-cta-obj .motopress-button-wrap .motopress-btn-icon-indent-small i.motopress-btn-icon-align-left,
.motopress-download-button-obj .motopress-btn-icon-indent-small i.motopress-btn-icon-align-left {
	padding-right : 8px;
}

.motopress-button-obj .motopress-btn-icon-indent-small i.motopress-btn-icon-align-right,
.motopress-button-inner-obj .motopress-btn-icon-indent-small i.motopress-btn-icon-align-right,
.motopress-cta-obj .motopress-button-wrap .motopress-btn-icon-indent-small i.motopress-btn-icon-align-right,
.motopress-download-button-obj .motopress-btn-icon-indent-small i.motopress-btn-icon-align-right {
	padding-left : 8px;
}

.motopress-button-obj .motopress-btn-icon-indent-middle i.motopress-btn-icon-align-left,
.motopress-button-inner-obj .motopress-btn-icon-indent-middle i.motopress-btn-icon-align-left,
.motopress-cta-obj .motopress-button-wrap .motopress-btn-icon-indent-middle i.motopress-btn-icon-align-left,
.motopress-download-button-obj .motopress-btn-icon-indent-middle i.motopress-btn-icon-align-left {
	padding-right : 12px;
}

.motopress-button-obj .motopress-btn-icon-indent-middle i.motopress-btn-icon-align-right,
.motopress-button-inner-obj .motopress-btn-icon-indent-middle i.motopress-btn-icon-align-right,
.motopress-cta-obj .motopress-button-wrap .motopress-btn-icon-indent-middle i.motopress-btn-icon-align-right,
.motopress-download-button-obj .motopress-btn-icon-indent-middle i.motopress-btn-icon-align-right {
	padding-left : 12px;
}

.motopress-button-obj .motopress-btn-icon-indent-large i.motopress-btn-icon-align-left,
.motopress-button-inner-obj .motopress-btn-icon-indent-large i.motopress-btn-icon-align-left,
.motopress-cta-obj .motopress-button-wrap .motopress-btn-icon-indent-large i.motopress-btn-icon-align-left,
.motopress-download-button-obj .motopress-btn-icon-indent-large i.motopress-btn-icon-align-left {
	padding-right : 24px;
}

.motopress-button-obj .motopress-btn-icon-indent-large i.motopress-btn-icon-align-right,
.motopress-button-inner-obj .motopress-btn-icon-indent-large i.motopress-btn-icon-align-right,
.motopress-cta-obj .motopress-button-wrap .motopress-btn-icon-indent-large i.motopress-btn-icon-align-right,
.motopress-download-button-obj .motopress-btn-icon-indent-large i.motopress-btn-icon-align-right {
	padding-left : 24px;
}

.motopress-button-obj .motopress-btn-full-width,
.motopress-button-inner-obj .motopress-btn-full-width,
.motopress-cta-obj .motopress-button-wrap .motopress-btn-full-width,
.motopress-download-button-obj .motopress-btn-full-width {
	width              : 100%;
	-webkit-box-sizing : border-box;
	-moz-box-sizing    : border-box;
	box-sizing         : border-box;
	text-align         : center;
}

.motopress-button-group-obj {
	font-size : 0;
}

.motopress-button-group-obj i.fa {
	line-height : 0;
}

.motopress-button-group-obj.motopress-button-group-horizontal.motopress-button-group-indent-0 .motopress-button-inner-obj {
	margin-left : 0px;
}

.motopress-button-group-obj.motopress-button-group-horizontal.motopress-button-group-indent-2 .motopress-button-inner-obj {
	margin-left : 2px;
}

.motopress-button-group-obj.motopress-button-group-horizontal.motopress-button-group-indent-5 .motopress-button-inner-obj {
	margin-left : 5px;
}

.motopress-button-group-obj.motopress-button-group-horizontal.motopress-button-group-indent-10 .motopress-button-inner-obj {
	margin-left : 10px;
}

.motopress-button-group-obj.motopress-button-group-horizontal.motopress-button-group-indent-15 .motopress-button-inner-obj {
	margin-left : 15px;
}

.motopress-button-group-obj.motopress-button-group-horizontal.motopress-button-group-indent-25 .motopress-button-inner-obj {
	margin-left : 25px;
}

.motopress-button-group-obj.motopress-button-group-horizontal > .motopress-button-inner-obj,
.motopress-button-group-obj.motopress-button-group-horizontal > div[data-motopress-shortcode] {
	display       : inline-block !important;
	margin-bottom : 0px;
}

.motopress-button-group-obj.motopress-button-group-vertical.motopress-text-align-right .motopress-button-inner-obj {
	text-align : right;
}

.motopress-button-group-obj.motopress-button-group-vertical.motopress-text-align-left .motopress-button-inner-obj {
	text-align : left;
}

.motopress-button-group-obj.motopress-button-group-vertical.motopress-text-align-center .motopress-button-inner-obj {
	text-align : center;
}

.motopress-button-group-obj.motopress-button-group-vertical.motopress-button-group-indent-0 .motopress-button-inner-obj {
	margin-bottom : 0px;
}

.motopress-button-group-obj.motopress-button-group-vertical.motopress-button-group-indent-2 .motopress-button-inner-obj {
	margin-bottom : 2px;
}

.motopress-button-group-obj.motopress-button-group-vertical.motopress-button-group-indent-5 .motopress-button-inner-obj {
	margin-bottom : 5px;
}

.motopress-button-group-obj.motopress-button-group-vertical.motopress-button-group-indent-10 .motopress-button-inner-obj {
	margin-bottom : 10px;
}

.motopress-button-group-obj.motopress-button-group-vertical.motopress-button-group-indent-15 .motopress-button-inner-obj {
	margin-bottom : 15px;
}

.motopress-button-group-obj.motopress-button-group-vertical.motopress-button-group-indent-25 .motopress-button-inner-obj {
	margin-bottom : 25px;
}

.motopress-button-group-obj.motopress-button-group-vertical > .motopress-button-inner-obj:not(:first-child) a.motopress-btn,
.motopress-button-group-obj.motopress-button-group-vertical > div[data-motopress-shortcode]:not(:first-child) a.motopress-btn {
	margin-top : 0px;
}

.motopress-button-group-obj.motopress-button-group-vertical > .motopress-button-inner-obj:not(:last-child) a.motopress-btn,
.motopress-button-group-obj.motopress-button-group-vertical > div[data-motopress-shortcode]:not(:last-child) a.motopress-btn {
	margin-bottom : 0px;
}

.motopress-button-group-obj.motopress-button-group-vertical > .motopress-button-inner-obj:last-child,
.motopress-button-group-obj.motopress-button-group-vertical > div[data-motopress-shortcode]:last-child > .motopress-button-inner-obj {
	margin-bottom : 0px;
}

.motopress-button-group-obj.motopress-button-group-vertical > .motopress-button-inner-obj:first-child,
.motopress-button-group-obj.motopress-button-group-horizontal > .motopress-button-inner-obj:first-child {
	margin-left : 0;
}

.motopress-button-group-obj.motopress-button-group-vertical > div[data-motopress-shortcode]:first-child > .motopress-button-inner-obj,
.motopress-button-group-obj.motopress-button-group-horizontal > div[data-motopress-shortcode]:first-child > .motopress-button-inner-obj {
	margin-left : 0;
}

.motopress-google-map-obj {
	min-height : inherit;
}

.motopress-google-map-obj iframe {
	width      : 100%;
	height     : 100%;
	min-height : inherit;
	margin     : 0;
}

.motopress-google-chart {
	background-image    : url("../../images/ce/loading.gif");
	background-repeat   : no-repeat;
	background-position : 50% 50%;
	min-height          : 24px;
}

.motopress-google-chart.motopress-google-chart-loaded {
	background-image : none;
}

.motopress-empty-chart {
	text-align       : center;
	background-image : none;
}

.motopress-embed-obj {
	min-height : inherit;
}

.motopress-embed-obj.fill-space {
	min-height : inherit;
}

.motopress-embed-obj.fill-space * {
	width : 100%;
}

.motopress-table-obj .motopress-table {
	width : 100% !important;
}

.motopress-table-obj .motopress-table-style-silver {
	background : none repeat scroll 0 0 #fefefe;
	border     : 1px solid #d3d3d3;
	overflow   : hidden;
	margin     : 0;
}

.motopress-table-obj .motopress-table-style-silver th,
.motopress-table-obj .motopress-table-style-silver td {
	padding    : 1em;
	text-align : center;
}

@media screen and (max-width : 767px) {
	.motopress-table-obj .motopress-table-style-silver th,
	.motopress-table-obj .motopress-table-style-silver td {
		padding : 0.5em;
	}
}

@media screen and (max-width : 480px) {
	.motopress-table-obj .motopress-table-style-silver th,
	.motopress-table-obj .motopress-table-style-silver td {
		padding : 0;
	}
}

.motopress-table-obj .motopress-table-style-silver th {
	border-bottom : 0 none;
	border-left   : 0 none;
	border-right  : 0 none;
	padding       : 1.4em 1em;
	text-shadow   : 1px 1px 1px #ffffff;
	background    : #eeeeee;
}

.motopress-table-obj .motopress-table-style-silver td {
	border-bottom : 0 none;
	border-left   : 0 none;
	border-top    : 1px solid #e0e0e0;
	border-right  : 1px solid #e0e0e0;
}

.motopress-table-obj .motopress-table-style-silver tr.odd-row td {
	background : #f6f6f6;
}

.motopress-table-obj .motopress-table-style-silver td:last-child {
	border-right : none;
}

.motopress-table-obj .motopress-table-style-silver th:last-child {
	border-right : none;
}

.motopress-table-obj .motopress-table-style-silver td {
	background-color : #fefefe;
}

.motopress-table-obj .motopress-table-style-silver tr.odd-row td {
	background-color : #f6f6f6;
}

.motopress-table-obj .motopress-table-style-silver th {
	background-color : #e5e5e5;
}

.motopress-table-obj .motopress-table-first-col-left td:first-child,
.motopress-table-obj .motopress-table-first-col-left th:first-child {
	text-align : left;
}

.motopress-share-buttons,
.motopress-social-profile-obj {
	margin  : 0;
	padding : 0;
	height  : auto;
}

.motopress-share-buttons span,
.motopress-social-profile-obj span {
	display : inline-block;
	margin  : 0 5px 0 0;
	opacity : 0.85;
}

.motopress-share-buttons span:hover,
.motopress-social-profile-obj span:hover {
	opacity : 1;
}

.motopress-share-buttons span:last-child,
.motopress-social-profile-obj span:last-child {
	margin-right : 0;
}

.motopress-share-buttons a,
.motopress-social-profile-obj a {
	background-repeat : no-repeat;
	display           : block;
	width             : 100%;
	height            : 100%;
	border            : none !important;
	outline           : none !important;
}

.motopress-buttons-32x32 span {
	width  : 32px;
	height : 32px;
}

.motopress-buttons-32x32 a {
	background-image : url("../../images/social-buttons-32x32.png?ver=2.0.3");
}

.motopress-buttons-32x32.motopress-buttons-square .motopress-button-facebook a {
	background-position : 0 0;
}

.motopress-buttons-32x32.motopress-buttons-square .motopress-button-google a {
	background-position : -32px 0;
}

.motopress-buttons-32x32.motopress-buttons-square .motopress-button-twitter a {
	background-position : -64px 0;
}

.motopress-buttons-32x32.motopress-buttons-square .motopress-button-pinterest a {
	background-position : -96px 0;
}

.motopress-buttons-32x32.motopress-buttons-square .motopress-button-linkedin a {
	background-position : -128px 0;
}

.motopress-buttons-32x32.motopress-buttons-square .motopress-button-flickr a {
	background-position : -160px 0;
}

.motopress-buttons-32x32.motopress-buttons-square .motopress-button-vk a {
	background-position : -192px 0;
}

.motopress-buttons-32x32.motopress-buttons-square .motopress-button-delicious a {
	background-position : -224px 0;
}

.motopress-buttons-32x32.motopress-buttons-square .motopress-button-youtube a {
	background-position : -256px 0;
}

.motopress-buttons-32x32.motopress-buttons-square .motopress-button-rss a {
	background-position : -288px 0;
}

.motopress-buttons-32x32.motopress-buttons-square .motopress-button-instagram a {
	background-position : -320px 0;
}

.motopress-buttons-32x32.motopress-buttons-rounded .motopress-button-facebook a {
	background-position : 0 -32px;
}

.motopress-buttons-32x32.motopress-buttons-rounded .motopress-button-google a {
	background-position : -32px -32px;
}

.motopress-buttons-32x32.motopress-buttons-rounded .motopress-button-twitter a {
	background-position : -64px -32px;
}

.motopress-buttons-32x32.motopress-buttons-rounded .motopress-button-pinterest a {
	background-position : -96px -32px;
}

.motopress-buttons-32x32.motopress-buttons-rounded .motopress-button-linkedin a {
	background-position : -128px -32px;
}

.motopress-buttons-32x32.motopress-buttons-rounded .motopress-button-flickr a {
	background-position : -160px -32px;
}

.motopress-buttons-32x32.motopress-buttons-rounded .motopress-button-vk a {
	background-position : -192px -32px;
}

.motopress-buttons-32x32.motopress-buttons-rounded .motopress-button-delicious a {
	background-position : -224px -32px;
}

.motopress-buttons-32x32.motopress-buttons-rounded .motopress-button-youtube a {
	background-position : -256px -32px;
}

.motopress-buttons-32x32.motopress-buttons-rounded .motopress-button-rss a {
	background-position : -288px -32px;
}

.motopress-buttons-32x32.motopress-buttons-rounded .motopress-button-instagram a {
	background-position : -320px -32px;
}

.motopress-buttons-32x32.motopress-buttons-circular .motopress-button-facebook a {
	background-position : 0 -64px;
}

.motopress-buttons-32x32.motopress-buttons-circular .motopress-button-google a {
	background-position : -32px -64px;
}

.motopress-buttons-32x32.motopress-buttons-circular .motopress-button-twitter a {
	background-position : -64px -64px;
}

.motopress-buttons-32x32.motopress-buttons-circular .motopress-button-pinterest a {
	background-position : -96px -64px;
}

.motopress-buttons-32x32.motopress-buttons-circular .motopress-button-linkedin a {
	background-position : -128px -64px;
}

.motopress-buttons-32x32.motopress-buttons-circular .motopress-button-flickr a {
	background-position : -160px -64px;
}

.motopress-buttons-32x32.motopress-buttons-circular .motopress-button-vk a {
	background-position : -192px -64px;
}

.motopress-buttons-32x32.motopress-buttons-circular .motopress-button-delicious a {
	background-position : -224px -64px;
}

.motopress-buttons-32x32.motopress-buttons-circular .motopress-button-youtube a {
	background-position : -256px -64px;
}

.motopress-buttons-32x32.motopress-buttons-circular .motopress-button-rss a {
	background-position : -288px -64px;
}

.motopress-buttons-32x32.motopress-buttons-circular .motopress-button-instagram a {
	background-position : -320px -64px;
}

.motopress-buttons-32x32.motopress-buttons-volume .motopress-button-facebook a {
	background-position : 0 -96px;
}

.motopress-buttons-32x32.motopress-buttons-volume .motopress-button-google a {
	background-position : -32px -96px;
}

.motopress-buttons-32x32.motopress-buttons-volume .motopress-button-twitter a {
	background-position : -64px -96px;
}

.motopress-buttons-32x32.motopress-buttons-volume .motopress-button-pinterest a {
	background-position : -96px -96px;
}

.motopress-buttons-32x32.motopress-buttons-volume .motopress-button-linkedin a {
	background-position : -128px -96px;
}

.motopress-buttons-32x32.motopress-buttons-volume .motopress-button-flickr a {
	background-position : -160px -96px;
}

.motopress-buttons-32x32.motopress-buttons-volume .motopress-button-vk a {
	background-position : -192px -96px;
}

.motopress-buttons-32x32.motopress-buttons-volume .motopress-button-delicious a {
	background-position : -224px -96px;
}

.motopress-buttons-32x32.motopress-buttons-volume .motopress-button-youtube a {
	background-position : -256px -96px;
}

.motopress-buttons-32x32.motopress-buttons-volume .motopress-button-rss a {
	background-position : -288px -96px;
}

.motopress-buttons-32x32.motopress-buttons-volume .motopress-button-instagram a {
	background-position : -320px -96px;
}

.motopress-buttons-64x64 span {
	width  : 64px;
	height : 64px;
}

.motopress-buttons-64x64 a {
	background-image : url("../../images/social-buttons-64x64.png?ver=2.0.3");
}

.motopress-buttons-64x64.motopress-buttons-square .motopress-button-facebook a {
	background-position : 0 0;
}

.motopress-buttons-64x64.motopress-buttons-square .motopress-button-google a {
	background-position : -64px 0;
}

.motopress-buttons-64x64.motopress-buttons-square .motopress-button-twitter a {
	background-position : -128px 0;
}

.motopress-buttons-64x64.motopress-buttons-square .motopress-button-pinterest a {
	background-position : -192px 0;
}

.motopress-buttons-64x64.motopress-buttons-square .motopress-button-linkedin a {
	background-position : -256px 0;
}

.motopress-buttons-64x64.motopress-buttons-square .motopress-button-flickr a {
	background-position : -320px 0;
}

.motopress-buttons-64x64.motopress-buttons-square .motopress-button-vk a {
	background-position : -384px 0;
}

.motopress-buttons-64x64.motopress-buttons-square .motopress-button-delicious a {
	background-position : -448px 0;
}

.motopress-buttons-64x64.motopress-buttons-square .motopress-button-youtube a {
	background-position : -512px 0;
}

.motopress-buttons-64x64.motopress-buttons-square .motopress-button-rss a {
	background-position : -576px 0;
}

.motopress-buttons-64x64.motopress-buttons-square .motopress-button-instagram a {
	background-position : -640px 0;
}

.motopress-buttons-64x64.motopress-buttons-rounded .motopress-button-facebook a {
	background-position : 0 -64px;
}

.motopress-buttons-64x64.motopress-buttons-rounded .motopress-button-google a {
	background-position : -64px -64px;
}

.motopress-buttons-64x64.motopress-buttons-rounded .motopress-button-twitter a {
	background-position : -128px -64px;
}

.motopress-buttons-64x64.motopress-buttons-rounded .motopress-button-pinterest a {
	background-position : -192px -64px;
}

.motopress-buttons-64x64.motopress-buttons-rounded .motopress-button-linkedin a {
	background-position : -256px -64px;
}

.motopress-buttons-64x64.motopress-buttons-rounded .motopress-button-flickr a {
	background-position : -320px -64px;
}

.motopress-buttons-64x64.motopress-buttons-rounded .motopress-button-vk a {
	background-position : -384px -64px;
}

.motopress-buttons-64x64.motopress-buttons-rounded .motopress-button-delicious a {
	background-position : -448px -64px;
}

.motopress-buttons-64x64.motopress-buttons-rounded .motopress-button-youtube a {
	background-position : -512px -64px;
}

.motopress-buttons-64x64.motopress-buttons-rounded .motopress-button-rss a {
	background-position : -576px -64px;
}

.motopress-buttons-64x64.motopress-buttons-rounded .motopress-button-instagram a {
	background-position : -640px -64px;
}

.motopress-buttons-64x64.motopress-buttons-circular .motopress-button-facebook a {
	background-position : 0 -128px;
}

.motopress-buttons-64x64.motopress-buttons-circular .motopress-button-google a {
	background-position : -64px -128px;
}

.motopress-buttons-64x64.motopress-buttons-circular .motopress-button-twitter a {
	background-position : -128px -128px;
}

.motopress-buttons-64x64.motopress-buttons-circular .motopress-button-pinterest a {
	background-position : -192px -128px;
}

.motopress-buttons-64x64.motopress-buttons-circular .motopress-button-linkedin a {
	background-position : -256px -128px;
}

.motopress-buttons-64x64.motopress-buttons-circular .motopress-button-flickr a {
	background-position : -320px -128px;
}

.motopress-buttons-64x64.motopress-buttons-circular .motopress-button-vk a {
	background-position : -384px -128px;
}

.motopress-buttons-64x64.motopress-buttons-circular .motopress-button-delicious a {
	background-position : -448px -128px;
}

.motopress-buttons-64x64.motopress-buttons-circular .motopress-button-youtube a {
	background-position : -512px -128px;
}

.motopress-buttons-64x64.motopress-buttons-circular .motopress-button-rss a {
	background-position : -576px -128px;
}

.motopress-buttons-64x64.motopress-buttons-circular .motopress-button-instagram a {
	background-position : -640px -128px;
}

.motopress-buttons-64x64.motopress-buttons-volume .motopress-button-facebook a {
	background-position : 0 -192px;
}

.motopress-buttons-64x64.motopress-buttons-volume .motopress-button-google a {
	background-position : -64px -192px;
}

.motopress-buttons-64x64.motopress-buttons-volume .motopress-button-twitter a {
	background-position : -128px -192px;
}

.motopress-buttons-64x64.motopress-buttons-volume .motopress-button-pinterest a {
	background-position : -192px -192px;
}

.motopress-buttons-64x64.motopress-buttons-volume .motopress-button-linkedin a {
	background-position : -256px -192px;
}

.motopress-buttons-64x64.motopress-buttons-volume .motopress-button-flickr a {
	background-position : -320px -192px;
}

.motopress-buttons-64x64.motopress-buttons-volume .motopress-button-vk a {
	background-position : -384px -192px;
}

.motopress-buttons-64x64.motopress-buttons-volume .motopress-button-delicious a {
	background-position : -448px -192px;
}

.motopress-buttons-64x64.motopress-buttons-volume .motopress-button-youtube a {
	background-position : -512px -192px;
}

.motopress-buttons-64x64.motopress-buttons-volume .motopress-button-rss a {
	background-position : -576px -192px;
}

.motopress-buttons-64x64.motopress-buttons-volume .motopress-button-instagram a {
	background-position : -640px -192px;
}

.motopress-tabs-obj.ui-tabs {
	height  : 100% !important;
	padding : 0 !important;
}

.motopress-tabs-obj.ui-tabs.motopress-tabs-basic.ui-widget-content:not([class*="mpce-prvt-"]):not([class*="mpce-prst-"]) {
	border           : none !important;
	background-color : transparent !important;
}

.motopress-tabs-obj.ui-tabs.motopress-tabs-basic.ui-corner-all:not([class*="mpce-prvt-"]):not([class*="mpce-prst-"]) {
	-webkit-border-radius : 0 !important;
	-moz-border-radius    : 0 !important;
	border-radius         : 0 !important;
}

.motopress-tabs-obj.ui-tabs.motopress-tabs-basic .ui-tabs-nav {
	background-image : none !important;
	background-color : transparent !important;
	margin           : 0 !important;
	padding          : 0 !important;
	border           : none !important;
	border-left      : 1px solid #dddddd !important;
	outline          : none !important;
	box-shadow       : none !important;
}

.motopress-tabs-obj.ui-tabs.motopress-tabs-basic .ui-tabs-nav.ui-corner-all {
	-webkit-border-radius : 0 !important;
	-moz-border-radius    : 0 !important;
	border-radius         : 0 !important;
}

.motopress-tabs-obj.ui-tabs.motopress-tabs-basic .ui-tabs-nav.ui-helper-clearfix:after {
	clear : both !important;
}

.motopress-tabs-obj.ui-tabs.motopress-tabs-basic .ui-tabs-nav.ui-helper-clearfix:before,
.motopress-tabs-obj.ui-tabs.motopress-tabs-basic .ui-tabs-nav.ui-helper-clearfix:after {
	content         : "" !important;
	display         : table !important;
	border-collapse : collapse !important;
}

.motopress-tabs-obj.ui-tabs.motopress-tabs-basic .ui-tabs-nav li {
	list-style       : none !important;
	float            : left;
	margin           : 0 !important;
	padding          : 0 !important;
	border-top       : 1px solid #dddddd !important;
	border-right     : 1px solid #dddddd !important;
	border-bottom    : none !important;
	border-left      : none !important;
	outline          : none !important;
	box-shadow       : none !important;
	background       : none !important;
	background-color : #ececec !important;
	position         : static !important;
	vertical-align   : middle;
}

.motopress-tabs-obj.ui-tabs.motopress-tabs-basic .ui-tabs-nav li:hover {
	background-color : #ffffff !important;
}

.motopress-tabs-obj.ui-tabs.motopress-tabs-basic .ui-tabs-nav li.ui-corner-top {
	-webkit-border-radius : 0 !important;
	-moz-border-radius    : 0 !important;
	border-radius         : 0 !important;
}

.motopress-tabs-obj.ui-tabs.motopress-tabs-basic .ui-tabs-nav li:focus {
	outline : none !important;
}

.motopress-tabs-obj.ui-tabs.motopress-tabs-basic .ui-tabs-nav li a {
	display         : block !important;
	padding         : 12px 17px !important;
	font-size       : 14px !important;
	color           : #000000 !important;
	text-decoration : none !important;
	border          : none !important;
	outline         : none !important;
}

.motopress-tabs-obj.ui-tabs.motopress-tabs-basic .ui-tabs-nav li a .fa,
.motopress-tabs-obj.ui-tabs.motopress-tabs-basic .ui-tabs-nav li a .tab-text {
	vertical-align : baseline;
}

.motopress-tabs-obj.ui-tabs.motopress-tabs-basic .ui-tabs-nav li a:hover {
	text-decoration : none !important;
}

.motopress-tabs-obj.ui-tabs.motopress-tabs-basic .ui-tabs-nav li a:focus {
	outline : none !important;
}

.motopress-tabs-obj.ui-tabs.motopress-tabs-basic .ui-tabs-nav li.ui-state-active {
	background-color : #ffffff !important;
}

.motopress-tabs-obj.ui-tabs.motopress-tabs-basic .ui-tabs-nav li.mp-icon-size-custom .fa,
.motopress-tabs-obj.ui-tabs.motopress-tabs-basic .ui-tabs-nav li.mp-icon-size-custom .tab-text {
	vertical-align : middle;
}

.motopress-tabs-obj.ui-tabs.motopress-tabs-basic .ui-tabs-panel {
	margin     : 0 !important;
	padding    : 20px;
	overflow-y : auto !important;
}

.motopress-tabs-obj.ui-tabs.motopress-tabs-basic .ui-tabs-panel.ui-widget-content {
	border           : 1px solid #dddddd !important;
	background-color : #ffffff !important;
}

.motopress-tabs-obj.ui-tabs.motopress-tabs-vertical .ui-tabs-nav li {
	border-right : none !important;
}

.motopress-tabs-obj.ui-tabs.motopress-tabs-vertical .ui-tabs-nav li a {
	text-align : center;
}

.motopress-tabs-obj.ui-tabs.motopress-tabs-vertical .ui-tabs-nav li:last-child {
	border-bottom : 1px solid #dddddd !important;
}

.motopress-tabs-obj.ui-tabs.motopress-tabs-vertical .ui-tabs-nav li.ui-state-active a {
	moz-box-shadow     : 1px 0 0 0 #ffffff, 1px 0 0 0 #ffffff !important;
	-webkit-box-shadow : 1px 0 0 0 #ffffff, 1px 0 0 0 #ffffff !important;
	box-shadow         : 1px 0 0 0 #ffffff, 1px 0 0 0 #ffffff !important;
	color              : #000000 !important;
}

.motopress-tabs-obj.ui-tabs.motopress-tabs-vertical .motopress-tab {
	-webkit-box-sizing : border-box;
	-moz-box-sizing    : border-box;
	box-sizing         : border-box;
}

.motopress-tabs-obj.ui-tabs.motopress-tabs-no-vertical .ui-tabs-nav {
	display      : table;
	table-layout : fixed;
}

.motopress-tabs-obj.ui-tabs.motopress-tabs-no-vertical .ui-tabs-nav li {
	float   : none;
	display : table-cell;
}

.motopress-tabs-obj.ui-tabs.motopress-tabs-no-vertical .ui-tabs-nav li.ui-state-active a {
	moz-box-shadow     : 0 1px 0 0 #ffffff, 0 1px 0 0 #ffffff !important;
	-webkit-box-shadow : 0 1px 0 0 #ffffff, 0 1px 0 0 #ffffff !important;
	box-shadow         : 0 1px 0 0 #ffffff, 0 1px 0 0 #ffffff !important;
	color              : #000000 !important;
}

.motopress-tabs-obj.ui-tabs.motopress-tabs-no-vertical.motopress-tabs-fullwidth .ui-tabs-nav {
	width : 100%;
}

.motopress-tabs-obj.ui-tabs.motopress-tabs-no-vertical.motopress-tabs-fullwidth .ui-tabs-nav li {
	width : 100%;
}

.motopress-tabs-obj.ui-tabs.motopress-tabs-no-vertical.motopress-tabs-fullwidth .ui-tabs-nav li a {
	text-align : center;
}

.motopress-tabs-obj.ui-tabs.motopress-tabs-vertical ul {
	float : left;
}

.motopress-tabs-obj.ui-tabs.motopress-tabs-vertical ul > li {
	float : none !important;
}

.motopress-tabs-obj.ui-tabs.motopress-tabs-no-vertical ul {
	float : none;
}

.motopress-tabs-obj.ui-tabs.motopress-tabs-no-vertical ul > li {
	float-left : left !important;
}

.motopress-tabs-obj.ui-tabs.motopress-tabs-padding-0 .ui-tabs-panel.ui-widget-content {
	padding : 0 !important;
}

.motopress-tabs-obj.ui-tabs.motopress-tabs-padding-10 .ui-tabs-panel.ui-widget-content {
	padding : 10px !important;
}

.motopress-tabs-obj.ui-tabs.motopress-tabs-padding-20 .ui-tabs-panel.ui-widget-content {
	padding : 20px !important;
}

.motopress-tabs-obj.ui-tabs.motopress-tabs-padding-30 .ui-tabs-panel.ui-widget-content {
	padding : 30px !important;
}

.motopress-tabs-obj.ui-tabs.motopress-tabs-padding-40 .ui-tabs-panel.ui-widget-content {
	padding : 40px !important;
}

.motopress-tabs-obj.ui-tabs.motopress-tabs-padding-50 .ui-tabs-panel.ui-widget-content {
	padding : 50px !important;
}

.motopress-tabs-obj > p {
	display : none !important;
}

@media screen and (max-width : 767px) {
	.motopress-tabs-obj.ui-tabs.motopress-tabs-basic .ui-tabs-nav {
		display     : block;
		float       : none;
		border-left : none !important;
	}

	.motopress-tabs-obj.ui-tabs.motopress-tabs-basic .ui-tabs-nav li {
		display       : block !important;
		width         : 100% !important;
		border        : 1px solid #dddddd !important;
		border-bottom : none !important;
		box-sizing    : border-box !important;
		text-align    : center;
	}

	.motopress-tabs-obj.ui-tabs.motopress-tabs-basic .ui-tabs-nav li.ui-state-active a {
		moz-box-shadow     : none !important;
		-webkit-box-shadow : none !important;
		box-shadow         : none !important;
		color              : #000000 !important;
	}

	.motopress-tabs-obj.ui-tabs.motopress-tabs-basic .ui-tabs-nav li:last-child {
		border-bottom : none !important;
	}

	.motopress-tabs-obj.ui-tabs.motopress-tabs-vertical .motopress-tab {
		min-height : 1px !important;
	}
}

.motopress-accordion-obj.ui-accordion .motopress-accordion-item {
	border-bottom-width : 1px;
	border-bottom-style : solid;
}

.motopress-accordion-obj.ui-accordion .ui-accordion-header {
	display    : block;
	cursor     : pointer;
	position   : relative;
	margin     : 0 !important;
	padding    : .7em .7em .7em .9em !important;
	min-height : 0;
	font-size  : 100%;
}

.motopress-accordion-obj.ui-accordion .ui-accordion-header:focus {
	outline : none;
}

.motopress-accordion-obj.ui-accordion .ui-accordion-header .ui-accordion-header-icon {
	position   : absolute;
	left       : 0;
	top        : 50%;
	margin-top : -11px;
}

.motopress-accordion-obj.ui-accordion .ui-accordion-header .ui-icon {
	background : transparent url('../../images/accordion.png?ver=2.0.3') no-repeat;
	width      : 22px;
	height     : 22px;
}

.motopress-accordion-obj.ui-accordion .ui-accordion-icons {
	padding-left : 2.4em !important;
}

.motopress-accordion-obj.ui-accordion .ui-accordion-icons .ui-accordion-icons {
	padding-left : 2.4em !important;
}

.motopress-accordion-obj.ui-accordion .ui-accordion-content {
	padding    : 0 0 1em;
	border-top : 0;
	overflow   : auto;
}

.motopress-accordion-obj.ui-accordion.motopress-accordion-light .motopress-accordion-item {
	border-bottom-color : #e0dede;
}

.motopress-accordion-obj.ui-accordion.motopress-accordion-light .ui-accordion-header .ui-icon {
	border             : 1px solid #dddddd;
	-webkit-box-sizing : border-box;
	-moz-box-sizing    : border-box;
	box-sizing         : border-box;
}

.motopress-accordion-obj.ui-accordion.motopress-accordion-light .ui-accordion-header .ui-icon-triangle-1-e {
	background-color    : #ececec;
	background-position : -1px -1px;
}

.motopress-accordion-obj.ui-accordion.motopress-accordion-light .ui-accordion-header .ui-icon-triangle-1-s {
	background-color    : #ffffff;
	background-position : -1px -23px;
}

.motopress-accordion-obj.ui-accordion.motopress-accordion-dark .motopress-accordion-item {
	border-bottom-color : #3e3e3e;
}

.motopress-accordion-obj.ui-accordion.motopress-accordion-dark .ui-accordion-header .ui-icon-triangle-1-e {
	background-color    : #3e3e3e;
	background-position : -22px 0;
}

.motopress-accordion-obj.ui-accordion.motopress-accordion-dark .ui-accordion-header .ui-icon-triangle-1-s {
	background-color    : #4c4c4c;
	background-position : -22px -22px;
}

.motopress-accordion-obj.ui-accordion > p {
	display : none !important;
}

#motopress-container .motopress-posts-grid-obj .motopress-filter,
.motopress-posts-grid-obj .motopress-filter {
	margin-bottom : 20px;
}

#motopress-container .motopress-posts-grid-obj .motopress-filter .motopress-filter-group-wrapper,
.motopress-posts-grid-obj .motopress-filter .motopress-filter-group-wrapper {
	display : table;
}

#motopress-container .motopress-posts-grid-obj .motopress-filter .motopress-filter-group-wrapper .motopress-filter-label,
.motopress-posts-grid-obj .motopress-filter .motopress-filter-group-wrapper .motopress-filter-label {
	display        : table-cell;
	vertical-align : baseline;
	white-space    : nowrap;
	margin-right   : 6px;
}

#motopress-container .motopress-posts-grid-obj .motopress-filter .motopress-filter-group-wrapper .motopress-filter-group,
.motopress-posts-grid-obj .motopress-filter .motopress-filter-group-wrapper .motopress-filter-group {
	display        : table-cell;
	vertical-align : baseline;
	overflow       : hidden;
	list-style     : none;
	margin         : 0 0 2px;
}

#motopress-container .motopress-posts-grid-obj .motopress-filter .motopress-filter-group-wrapper .motopress-filter-group li,
.motopress-posts-grid-obj .motopress-filter .motopress-filter-group-wrapper .motopress-filter-group li {
	display    : inline-block;
	list-style : none;
	margin     : 1px;
}

#motopress-container .motopress-posts-grid-obj .motopress-filter .motopress-filter-group-wrapper .motopress-filter-group li .motopress-button-obj .motopress-filter-btn,
.motopress-posts-grid-obj .motopress-filter .motopress-filter-group-wrapper .motopress-filter-group li .motopress-button-obj .motopress-filter-btn {
	margin : 0;
}

#motopress-container .motopress-posts-grid-obj .motopress-filter .motopress-filter-group-wrapper .motopress-filter-group .motopress-link,
.motopress-posts-grid-obj .motopress-filter .motopress-filter-group-wrapper .motopress-filter-group .motopress-link {
	margin : 1px 5px 1px 0px;
}

#motopress-container .motopress-posts-grid-obj .motopress-filter .motopress-filter-group-wrapper .motopress-filter-group .motopress-link > .motopress-posts-grid-filter-divider,
.motopress-posts-grid-obj .motopress-filter .motopress-filter-group-wrapper .motopress-filter-group .motopress-link > .motopress-posts-grid-filter-divider {
	margin-right : 6px;
}

#motopress-container .motopress-posts-grid-obj .motopress-filter .motopress-filter-group-wrapper .motopress-filter-group .motopress-link .motopress-filter-btn,
.motopress-posts-grid-obj .motopress-filter .motopress-filter-group-wrapper .motopress-filter-group .motopress-link .motopress-filter-btn {
	text-decoration : none !important;
}

#motopress-container .motopress-posts-grid-obj .motopress-filter .motopress-filter-group-wrapper .motopress-filter-group .motopress-link .motopress-filter-btn.ui-state-active,
.motopress-posts-grid-obj .motopress-filter .motopress-filter-group-wrapper .motopress-filter-group .motopress-link .motopress-filter-btn.ui-state-active {
	text-decoration : underline !important;
}

#motopress-container .motopress-posts-grid-obj .motopress-posts-grid-thumbnail > img,
.motopress-posts-grid-obj .motopress-posts-grid-thumbnail > img {
	margin    : 20px 0;
	max-width : 100%;
	height    : auto;
}

#motopress-container .motopress-posts-grid-obj .motopress-posts-grid-thumbnail > img:first-child,
.motopress-posts-grid-obj .motopress-posts-grid-thumbnail > img:first-child {
	margin-top : 0px;
}

#motopress-container .motopress-posts-grid-obj .motopress-paged-content,
.motopress-posts-grid-obj .motopress-paged-content {
	position : relative;
}

#motopress-container .motopress-posts-grid-obj .motopress-paged-content.ui-state-loading:before,
.motopress-posts-grid-obj .motopress-paged-content.ui-state-loading:before,
#motopress-container .motopress-posts-grid-obj .motopress-load-more-obj.ui-state-loading:before,
.motopress-posts-grid-obj .motopress-load-more-obj.ui-state-loading:before,
#motopress-container .motopress-posts-grid-obj .motopress-posts-grid-pagination > .nav-next.ui-state-loading:before,
.motopress-posts-grid-obj .motopress-posts-grid-pagination > .nav-next.ui-state-loading:before,
#motopress-container .motopress-posts-grid-obj .motopress-posts-grid-pagination > .nav-prev.ui-state-loading:before,
.motopress-posts-grid-obj .motopress-posts-grid-pagination > .nav-prev.ui-state-loading:before,
#motopress-container .motopress-posts-grid-obj .motopress-paged-content.ui-state-loading:before,
.motopress-posts-grid-obj .motopress-paged-content.ui-state-loading:before,
#motopress-container .motopress-posts-grid-obj .motopress-load-more-obj.ui-state-loading:before,
.motopress-posts-grid-obj .motopress-load-more-obj.ui-state-loading:before,
#motopress-container .motopress-posts-grid-obj .motopress-posts-grid-pagination > .nav-next.ui-state-loading:before,
.motopress-posts-grid-obj .motopress-posts-grid-pagination > .nav-next.ui-state-loading:before,
#motopress-container .motopress-posts-grid-obj .motopress-posts-grid-pagination > .nav-prev.ui-state-loading:before,
.motopress-posts-grid-obj .motopress-posts-grid-pagination > .nav-prev.ui-state-loading:before,
#motopress-container .motopress-posts-grid-obj .motopress-paged-content.ui-state-loading:before,
.motopress-posts-grid-obj .motopress-paged-content.ui-state-loading:before,
#motopress-container .motopress-posts-grid-obj .motopress-load-more-obj.ui-state-loading:before,
.motopress-posts-grid-obj .motopress-load-more-obj.ui-state-loading:before,
#motopress-container .motopress-posts-grid-obj .motopress-posts-grid-pagination > .nav-next.ui-state-loading:before,
.motopress-posts-grid-obj .motopress-posts-grid-pagination > .nav-next.ui-state-loading:before,
#motopress-container .motopress-posts-grid-obj .motopress-posts-grid-pagination > .nav-prev.ui-state-loading:before,
.motopress-posts-grid-obj .motopress-posts-grid-pagination > .nav-prev.ui-state-loading:before {
	background-color    : rgba(255, 255, 255, 0.6);
	background-image    : url("../../images/ce/loading2.gif");
	background-position : center center;
	background-repeat   : no-repeat;
	border-radius       : 50%;
	content             : "";
	display             : block;
	height              : 30px;
	left                : 50%;
	margin-left         : -15px;
	position            : absolute;
	top                 : 0;
	width               : 30px;
	z-index             : 12;
}

#motopress-container .motopress-posts-grid-obj .motopress-load-more-obj.ui-state-loading .motopress-load-more,
.motopress-posts-grid-obj .motopress-load-more-obj.ui-state-loading .motopress-load-more {
	display : none;
}

#motopress-container .motopress-posts-grid-obj .motopress-thumbnail-left .motopress-posts-grid-thumbnail,
.motopress-posts-grid-obj .motopress-thumbnail-left .motopress-posts-grid-thumbnail {
	float  : left !important;
	margin : 0 20px 20px 0;
}

#motopress-container .motopress-posts-grid-obj .motopress-thumbnail-left .motopress-posts-grid-thumbnail > img,
.motopress-posts-grid-obj .motopress-thumbnail-left .motopress-posts-grid-thumbnail > img {
	margin : 0;
}

#motopress-container .motopress-posts-grid-obj .motopress-posts-grid-meta .motopress-posts-grid-date,
.motopress-posts-grid-obj .motopress-posts-grid-meta .motopress-posts-grid-date {
	float : left;
}

#motopress-container .motopress-posts-grid-obj .motopress-posts-grid-meta .motopress-posts-grid-date.motopress-no-float,
.motopress-posts-grid-obj .motopress-posts-grid-meta .motopress-posts-grid-date.motopress-no-float {
	float : none;
}

#motopress-container .motopress-posts-grid-obj .motopress-posts-grid-meta .comments-link,
.motopress-posts-grid-obj .motopress-posts-grid-meta .comments-link {
	text-align : right;
}

#motopress-container .motopress-posts-grid-obj .motopress-posts-grid-more,
.motopress-posts-grid-obj .motopress-posts-grid-more {
	margin-top : 10px;
}

#motopress-container .motopress-posts-grid-obj .motopress-posts-grid-pagination .nav-next,
.motopress-posts-grid-obj .motopress-posts-grid-pagination .nav-next,
#motopress-container .motopress-posts-grid-obj .motopress-posts-grid-pagination .nav-prev,
.motopress-posts-grid-obj .motopress-posts-grid-pagination .nav-prev {
	display : inline-block;
}

#motopress-container .motopress-posts-grid-obj .motopress-posts-grid-pagination .nav-next,
.motopress-posts-grid-obj .motopress-posts-grid-pagination .nav-next {
	float : right;
}

#motopress-container .motopress-posts-grid-obj .motopress-posts-grid-pagination .nav-prev,
.motopress-posts-grid-obj .motopress-posts-grid-pagination .nav-prev {
	float : left;
}

#motopress-container .motopress-posts-grid-obj .no-items-found,
.motopress-posts-grid-obj .no-items-found {
	display : none;
}

#motopress-container .motopress-posts-grid-obj .hentry,
.motopress-posts-grid-obj .hentry {
	margin-top    : 0 !important;
	margin-bottom : 0 !important;
}

#motopress-container .motopress-posts-grid-obj .hentry .motopress-posts-grid-thumbnail,
.motopress-posts-grid-obj .hentry .motopress-posts-grid-thumbnail {
	max-width : 100%;
}

#motopress-container .motopress-posts-grid-obj .motopress-button-obj .motopress-btn,
.motopress-posts-grid-obj .motopress-button-obj .motopress-btn {
	margin   : 0;
	position : relative;
}

#motopress-container .motopress-posts-grid-obj .motopress-load-more-obj,
.motopress-posts-grid-obj .motopress-load-more-obj {
	margin-top : 20px;
	text-align : center;
	position   : relative;
	min-height : 30px;
}

#motopress-container .motopress-posts-grid-obj.motopress-posts-grid-gap-0 .mp-row-fluid,
.motopress-posts-grid-obj.motopress-posts-grid-gap-0 .mp-row-fluid {
	margin-bottom : 0 !important;
}

#motopress-container .motopress-posts-grid-obj.motopress-posts-grid-gap-10 .mp-row-fluid,
.motopress-posts-grid-obj.motopress-posts-grid-gap-10 .mp-row-fluid {
	margin-bottom : 10px !important;
}

#motopress-container .motopress-posts-grid-obj.motopress-posts-grid-gap-20 .mp-row-fluid,
.motopress-posts-grid-obj.motopress-posts-grid-gap-20 .mp-row-fluid {
	margin-bottom : 20px !important;
}

#motopress-container .motopress-posts-grid-obj.motopress-posts-grid-gap-30 .mp-row-fluid,
.motopress-posts-grid-obj.motopress-posts-grid-gap-30 .mp-row-fluid {
	margin-bottom : 30px !important;
}

#motopress-container .motopress-posts-grid-obj.motopress-posts-grid-gap-40 .mp-row-fluid,
.motopress-posts-grid-obj.motopress-posts-grid-gap-40 .mp-row-fluid {
	margin-bottom : 40px !important;
}

#motopress-container .motopress-posts-grid-obj.motopress-posts-grid-gap-50 .mp-row-fluid,
.motopress-posts-grid-obj.motopress-posts-grid-gap-50 .mp-row-fluid {
	margin-bottom : 50px !important;
}

#motopress-container .motopress-posts-grid-obj.motopress-posts-grid-gap-60 .mp-row-fluid,
.motopress-posts-grid-obj.motopress-posts-grid-gap-60 .mp-row-fluid {
	margin-bottom : 60px !important;
}

#motopress-container .motopress-posts-grid-obj.motopress-posts-grid-gap-70 .mp-row-fluid,
.motopress-posts-grid-obj.motopress-posts-grid-gap-70 .mp-row-fluid {
	margin-bottom : 70px !important;
}

#motopress-container .motopress-posts-grid-obj.motopress-posts-grid-gap-80 .mp-row-fluid,
.motopress-posts-grid-obj.motopress-posts-grid-gap-80 .mp-row-fluid {
	margin-bottom : 80px !important;
}

#motopress-container .motopress-posts-grid-obj.motopress-posts-grid-gap-90 .mp-row-fluid,
.motopress-posts-grid-obj.motopress-posts-grid-gap-90 .mp-row-fluid {
	margin-bottom : 90px !important;
}

#motopress-container .motopress-posts-grid-obj.motopress-posts-grid-gap-100 .mp-row-fluid,
.motopress-posts-grid-obj.motopress-posts-grid-gap-100 .mp-row-fluid {
	margin-bottom : 100px !important;
}

#motopress-container .motopress-posts-grid-obj.motopress-posts-grid-gap-0 .mp-row-fluid:last-child,
.motopress-posts-grid-obj.motopress-posts-grid-gap-0 .mp-row-fluid:last-child,
#motopress-container .motopress-posts-grid-obj.motopress-posts-grid-gap-10 .mp-row-fluid:last-child,
.motopress-posts-grid-obj.motopress-posts-grid-gap-10 .mp-row-fluid:last-child,
#motopress-container .motopress-posts-grid-obj.motopress-posts-grid-gap-20 .mp-row-fluid:last-child,
.motopress-posts-grid-obj.motopress-posts-grid-gap-20 .mp-row-fluid:last-child,
#motopress-container .motopress-posts-grid-obj.motopress-posts-grid-gap-30 .mp-row-fluid:last-child,
.motopress-posts-grid-obj.motopress-posts-grid-gap-30 .mp-row-fluid:last-child,
#motopress-container .motopress-posts-grid-obj.motopress-posts-grid-gap-40 .mp-row-fluid:last-child,
.motopress-posts-grid-obj.motopress-posts-grid-gap-40 .mp-row-fluid:last-child,
#motopress-container .motopress-posts-grid-obj.motopress-posts-grid-gap-50 .mp-row-fluid:last-child,
.motopress-posts-grid-obj.motopress-posts-grid-gap-50 .mp-row-fluid:last-child,
#motopress-container .motopress-posts-grid-obj.motopress-posts-grid-gap-60 .mp-row-fluid:last-child,
.motopress-posts-grid-obj.motopress-posts-grid-gap-60 .mp-row-fluid:last-child,
#motopress-container .motopress-posts-grid-obj.motopress-posts-grid-gap-70 .mp-row-fluid:last-child,
.motopress-posts-grid-obj.motopress-posts-grid-gap-70 .mp-row-fluid:last-child,
#motopress-container .motopress-posts-grid-obj.motopress-posts-grid-gap-80 .mp-row-fluid:last-child,
.motopress-posts-grid-obj.motopress-posts-grid-gap-80 .mp-row-fluid:last-child,
#motopress-container .motopress-posts-grid-obj.motopress-posts-grid-gap-90 .mp-row-fluid:last-child,
.motopress-posts-grid-obj.motopress-posts-grid-gap-90 .mp-row-fluid:last-child,
#motopress-container .motopress-posts-grid-obj.motopress-posts-grid-gap-100 .mp-row-fluid:last-child,
.motopress-posts-grid-obj.motopress-posts-grid-gap-100 .mp-row-fluid:last-child {
	margin-bottom : 0 !important;
}

.mp-row-fluid {
	position : relative;
}

.mp-row-fluid > .mp-video-container {
	position : absolute;
	top      : 0;
	left     : 0;
	width    : 100%;
	height   : 100%;
	overflow : hidden;
	z-index  : 0;
}

.mp-row-fluid > .mp-video-container > .mp-youtube-cover,
.mp-row-fluid > .mp-video-container > .mp-video-cover {
	position          : absolute;
	top               : 0px;
	left              : 0px;
	width             : 100%;
	height            : 100%;
	background-repeat : repeat;
}

.mp-row-fluid > .mp-video-container > .mp-youtube-container {
	position       : relative;
	padding-bottom : 56.25%;
	height         : 0;
	overflow       : hidden;
}

.mp-row-fluid > .mp-video-container > .mp-youtube-container > iframe {
	position : absolute;
	top      : 0;
	left     : 0;
	width    : 100%;
	height   : 100%;
}

.mp-row-fluid > .mp-video-container > .mp-youtube-container > img {
	position : absolute;
	top      : 0;
	left     : 0;
	width    : 100%;
	height   : 100%;
}

.mp-row-fluid > .mp-video-container > .mp-youtube-container .mp-youtube-cover {
	position : absolute;
	top      : 0px;
	left     : 0px;
	width    : 100%;
	height   : 100%;
}

.mp-row-fluid > .mp-video-container > video {
	position : absolute;
	top      : 0;
	left     : 0;
	width    : 100%;
}

.mp-row-fluid.motopress-row-color-red {
	background-color : #ff0000;
}

.mp-row-fluid.motopress-row-color-blue {
	background-color : #0000ff;
}

.mp-row-fluid.motopress-row-color-green {
	background-color : #00ff00;
}

.mp-row-fluid.motopress-row-image-1 {
	background-image    : url(data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2NzApLCBxdWFsaXR5ID0gOTAK/9sAQwADAgIDAgIDAwMDBAMDBAUIBQUEBAUKBwcGCAwKDAwLCgsLDQ4SEA0OEQ4LCxAWEBETFBUVFQwPFxgWFBgSFBUU/9sAQwEDBAQFBAUJBQUJFA0LDRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQU/8AAEQgCWAJYAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A/VOiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAopKM0ALR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JFTP5mt+y/Z28T3xH2m40+xXvlzIw/IV9KK24nnpTiK9yhwLlVF3nzS9X/kjzqnEmOmrRsvlr+LPENL/AGXrAENqmt3Vz/eS3iWIH8Tk13OgfBXwf4dZHt9HhnmXpNd/vm/8e4H4Cu2jGM0+vqMNkmW4TWjQjfu1d/e7njVsxxeI0qVH6bL7kRJAsaqqAIijAVRgAU7y+e35U+ivcWmiPNt1G7eTRj3p1FAxAMUtFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAhGaNtLRQA0qD1pQAKWigBMAUYpaKBWExRilooCwhUGk2j3p1FAWG7RS4paKBiAYpaKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigD/2Q==);
	background-position : center center;
	background-repeat   : no-repeat;
	background-size     : cover;
}

.mp-row-fluid.motopress-row-border-black {
	border : 5px solid black;
}

.mp-row-fluid.motopress-row-border-red {
	border : 5px solid red;
}

.mp-row-fluid.motopress-row-shadow-black {
	-webkit-box-shadow : 0px 0px 10px 0px black;
	-moz-box-shadow    : 0px 0px 10px 0px black;
	box-shadow         : 0px 0px 10px 0px black;
}

.mp-row-fluid.motopress-row-shadow-red {
	-webkit-box-shadow : 0px 0px 10px 0px red;
	-moz-box-shadow    : 0px 0px 10px 0px red;
	box-shadow         : 0px 0px 10px 0px red;
}

.mp-row-fluid.motopress-row-parallax {
	background-position   : center 0;
	background-repeat     : no-repeat;
	background-attachment : fixed;
}

.mp-row-fluid.mp-row-fullheight {
	display                 : -webkit-box;
	display                 : -webkit-flex;
	display                 : -ms-flexbox;
	display                 : flex;
	-webkit-box-align       : center;
	-webkit-align-items     : center;
	-ms-flex-align          : center;
	align-items             : center;
	-webkit-box-pack        : center;
	-webkit-justify-content : center;
	-ms-flex-pack           : center;
	justify-content         : center;
	min-height              : 100vh;
}

.mp-row-fluid.mp-row-fullheight.mp-row-ie-fix {
	height : 1px;
}

.mp-row-fluid.mp-row-fixed-width {
	margin-left  : auto;
	margin-right : auto;
}

.motopress-ce-icon-obj .motopress-ce-icon-preview {
	position : relative;
}

.motopress-ce-icon-obj .motopress-ce-icon-preview .motopress-ce-icon-link {
	width    : 100%;
	height   : 100%;
	display  : block;
	cursor   : pointer;
	position : absolute;
	top      : 0;
}

.motopress-ce-icon-obj .motopress-ce-icon-bg {
	display    : block;
	text-align : center;
	height     : 100%;
	width      : 100%;
	position   : relative;
	box-sizing : border-box;
}

.motopress-ce-icon-obj .motopress-ce-icon-bg .motopress-ce-icon-preview {
	position  : absolute;
	top       : 50%;
	left      : 50%;
	display   : inline-block;
	transform : translate(-50%, -50%);
}

.motopress-ce-icon-obj.motopress-ce-icon-shape-none {
	border-radius : 0%;
}

.motopress-ce-icon-obj.motopress-ce-icon-shape-circle .motopress-ce-icon-bg {
	border-radius : 50%;
}

.motopress-ce-icon-obj.motopress-ce-icon-shape-square .motopress-ce-icon-bg {
	border-radius : 0%;
}

.motopress-ce-icon-obj.motopress-ce-icon-shape-rounded .motopress-ce-icon-bg {
	border-radius : 5%;
}

.motopress-ce-icon-obj.motopress-ce-icon-shape-outline-circle .motopress-ce-icon-bg {
	border-width  : 2px;
	border-style  : solid;
	border-radius : 50%;
}

.motopress-ce-icon-obj.motopress-ce-icon-shape-outline-square .motopress-ce-icon-bg {
	border-width  : 2px;
	border-style  : solid;
	border-radius : 0%;
}

.motopress-ce-icon-obj.motopress-ce-icon-shape-outline-rounded .motopress-ce-icon-bg {
	border-width  : 2px;
	border-style  : solid;
	border-radius : 5%;
}

.motopress-ce-icon-obj.motopress-ce-icon-size-mini {
	font-size   : 12px;
	width       : 24px;
	height      : 24px;
	line-height : 24px;
}

.motopress-ce-icon-obj.motopress-ce-icon-size-small {
	font-size   : 22px;
	width       : 34px;
	height      : 34px;
	line-height : 34px;
}

.motopress-ce-icon-obj.motopress-ce-icon-size-middle {
	font-size   : 34px;
	width       : 50px;
	height      : 50px;
	line-height : 50px;
}

.motopress-ce-icon-obj.motopress-ce-icon-size-large {
	font-size   : 52px;
	width       : 75px;
	height      : 75px;
	line-height : 75px;
}

.motopress-ce-icon-obj.motopress-ce-icon-size-extra-large {
	font-size   : 70px;
	width       : 100px;
	height      : 100px;
	line-height : 100px;
}

.motopress-ce-icon-obj.motopress-ce-icon-size-custom {
	width       : 1em;
	height      : 1em;
	line-height : 1em;
}

.motopress-ce-icon-obj.motopress-ce-icon-align-left {
	float : left;
}

.motopress-ce-icon-obj.motopress-ce-icon-align-center {
	float  : none;
	margin : 0 auto;
}

.motopress-ce-icon-obj.motopress-ce-icon-align-right {
	float : right;
}

.motopress-grid-gallery-obj {
	text-align : center;
}

.motopress-grid-gallery-obj .motopress-image-caption {
	text-align : center;
}

.motopress-grid-gallery-obj > p {
	display : none;
}

.motopress-grid-gallery-obj.motopress-grid-gallery-one-column .mp-row-fluid {
	margin-top : 10px;
}

.motopress-grid-gallery-obj.motopress-grid-gallery-one-column .mp-row-fluid:first-child {
	margin-top : 0;
}

.motopress-service-box-obj .motopress-service-box-icon-section {
	display    : inline-block;
	position   : relative;
	box-sizing : border-box;
}

.motopress-service-box-obj .motopress-service-box-icon-section .motopress-service-box-icon-holder {
	position       : relative;
	display        : table-cell;
	box-sizing     : border-box;
	line-height    : 0;
	text-align     : center;
	overflow       : hidden;
	vertical-align : middle;
}

.motopress-service-box-obj .motopress-service-box-icon-section .motopress-service-box-icon-holder-rounded {
	border-radius : 5%;
}

.motopress-service-box-obj .motopress-service-box-icon-section .motopress-service-box-icon-holder-circle {
	border-radius : 50%;
}

.motopress-service-box-obj .motopress-service-box-icon-section .motopress-service-box-icon-holder i,
.motopress-service-box-obj .motopress-service-box-icon-section .motopress-service-box-icon-holder img {
	font-size : inherit !important;
}

.motopress-service-box-obj .motopress-service-box-icon-section .motopress-service-box-icon-holder i {
	position : relative;
}

.motopress-service-box-obj .motopress-service-box-icon-section .motopress-service-box-icon-holder img {
	max-width  : 1em;
	max-height : 1em;
	position   : relative;
}

.motopress-service-box-obj .motopress-service-box-icon-section .motopress-service-box-icon-holder.motopress-service-box-icon-holder-grayscaled-ie10 {
	transition         : none;
	-webkit-transition : none;
	position           : absolute;
	z-index            : 1;
	margin-top         : -2em;
}

.motopress-service-box-obj .motopress-service-box-icon-section .motopress-service-box-icon-holder.motopress-service-box-icon-holder-grayscaled-ie10 i {
	position     : absolute;
	top          : 50%;
	left         : 50%;
	margin-right : -50%;
	transform    : translate(-50%, -50%);
}

.motopress-service-box-obj .motopress-service-box-icon-section .motopress-service-box-icon-holder.motopress-service-box-icon-holder-grayscaled-ie10 img {
	max-width    : 1em;
	max-height   : 1em;
	position     : absolute;
	top          : 50%;
	left         : 50%;
	margin-right : -50%;
	transform    : translate(-50%, -50%);
}

.motopress-service-box-obj .motopress-service-box-icon-section.motopress-service-box-small-icon .motopress-service-box-icon-holder {
	min-height : 1em;
	height     : 1em;
	min-width  : 1em;
	width      : 1em;
}

.motopress-service-box-obj .motopress-service-box-icon-section.motopress-service-box-big-image {
	overflow  : hidden;
	display   : block;
	min-width : 100%;
	width     : 100%;
	max-width : 100%;
}

.motopress-service-box-obj .motopress-service-box-icon-section.motopress-service-box-big-image .motopress-service-box-icon-holder {
	display    : block;
	width      : 100%;
	min-height : 1em;
	max-height : 1em;
	height     : 1em;
	overflow   : hidden;
}

.motopress-service-box-obj .motopress-service-box-icon-section.motopress-service-box-big-image .motopress-service-box-icon-holder div {
	content             : "";
	background-size     : cover;
	background-position : center center;
	display             : block;
	width               : 100%;
	height              : 100%;
}

.motopress-service-box-obj .motopress-service-box-icon-section.motopress-service-box-big-image .motopress-service-box-icon-holder.motopress-service-box-icon-holder-grayscaled-ie10 {
	position   : relative;
	margin-top : -1em;
}

.motopress-service-box-obj.motopress-service-box-icon-effect-grayscale .motopress-service-box-icon-holder {
	filter             : url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
	filter             : gray;
	-webkit-filter     : grayscale(100%);
	filter             : grayscale(100%);
	transition         : all 0.6s ease-out;
	-webkit-transition : all 0.6s ease;
}

.motopress-service-box-obj.motopress-service-box-icon-effect-grayscale:hover .motopress-service-box-icon-holder {
	filter         : none;
	-webkit-filter : grayscale(0%);
	filter         : grayscale(0%);
}

.motopress-service-box-obj.motopress-service-box-icon-effect-zoom .motopress-service-box-icon-section:not(.motopress-service-box-big-image) .motopress-service-box-icon-holder {
	-webkit-transform  : scale(1);
	-moz-transform     : scale(1);
	-o-transform       : scale(1);
	-ms-transform      : scale(1);
	transform          : scale(1);
	transition         : all 0.6s ease-out;
	-webkit-transition : all 0.6s ease-out;
}

.motopress-service-box-obj.motopress-service-box-icon-effect-zoom .motopress-service-box-icon-section.motopress-service-box-big-image .motopress-service-box-icon-holder div {
	-webkit-transform  : scale(1);
	-moz-transform     : scale(1);
	-o-transform       : scale(1);
	-ms-transform      : scale(1);
	transform          : scale(1);
	transition         : all 0.6s ease-out;
	-webkit-transition : all 0.6s ease-out;
}

.motopress-service-box-obj.motopress-service-box-icon-effect-zoom:hover .motopress-service-box-icon-section:not(.motopress-service-box-big-image) .motopress-service-box-icon-holder {
	-webkit-transform : scale(1.2);
	-moz-transform    : scale(1.2);
	-o-transform      : scale(1.2);
	-ms-transform     : scale(1.2);
	transform         : scale(1.2);
}

.motopress-service-box-obj.motopress-service-box-icon-effect-zoom:hover .motopress-service-box-icon-section.motopress-service-box-big-image .motopress-service-box-icon-holder div {
	-webkit-transform : scale(1.2);
	-moz-transform    : scale(1.2);
	-o-transform      : scale(1.2);
	-ms-transform     : scale(1.2);
	transform         : scale(1.2);
}

.motopress-service-box-obj.motopress-service-box-icon-effect-rotate .motopress-service-box-icon-holder {
	-webkit-transform       : rotateY(0deg);
	-o-transform            : scale(1);
	-ms-transform           : rotateY(0deg);
	transform               : rotateY(0deg);
	-webkit-transform-style : preserve-3d;
	-ms-transform-style     : preserve-3d;
	transform-style         : preserve-3d;
	transition              : all 0.6s ease-out;
	-webkit-transition      : all 0.6s ease-out;
}

.motopress-service-box-obj.motopress-service-box-icon-effect-rotate:hover .motopress-service-box-icon-holder {
	-webkit-transform : rotateY(360deg);
	-moz-transform    : scale(1);
	-o-transform      : scale(1);
	-ms-transform     : rotateY(360deg);
	transform         : rotateY(360deg);
}

.motopress-service-box-obj.motopress-service-box-centered {
	text-align : center;
}

.motopress-service-box-obj.motopress-service-box-centered .motopress-service-box-icon-section {
	text-align : center;
}

.motopress-service-box-obj.motopress-service-box-heading-float .motopress-service-box-icon-section {
	display        : table-cell;
	vertical-align : middle;
}

.motopress-service-box-obj.motopress-service-box-heading-float .motopress-service-box-heading-section {
	display        : table-cell;
	vertical-align : middle;
}

.motopress-service-box-obj.motopress-service-box-text-heading-float .motopress-service-box-icon-section {
	display        : table-cell;
	vertical-align : top;
}

.motopress-service-box-obj.motopress-service-box-text-heading-float .motopress-service-box-text-heading-wrapper {
	display        : table-cell;
	vertical-align : middle;
}

.motopress-service-box-obj .motopress-service-box-button-section .motopress-btn {
	display             : inline-block;
	margin              : 10px 0 10px 0;
	color               : #ffffff;
	line-height         : 1em;
	text-shadow         : 0 1px 1px rgba(21, 21, 22, 0.25);
	text-decoration     : none;
	border              : none;
	-webkit-user-select : none;
	-moz-user-select    : none;
	-ms-user-select     : none;
	-o-user-select      : none;
	user-select         : none;
}

.motopress-service-box-obj .motopress-service-box-button-section .motopress-btn:hover,
.motopress-service-box-obj .motopress-service-box-button-section .motopress-btn:visited {
	text-decoration : none;
}

.motopress-service-box-obj .motopress-service-box-button-section .motopress-btn-color-silver {
	color              : #4f4f4f;
	text-shadow        : 0 1px 1px rgba(255, 255, 255, 0.25);
	-webkit-box-shadow : inset 0 0 0 1px #dcdcdc;
	-moz-box-shadow    : inset 0 0 0 1px #dcdcdc;
	box-shadow         : inset 0 0 0 1px #dcdcdc;
	background-color   : #f0f0f0;
	background-image   : -moz-linear-gradient(bottom, #e6e6e6, #fefefe);
	background-image   : -webkit-gradient(linear, 0 100%, 0 0, from(#e6e6e6), to(#fefefe));
	background-image   : -webkit-linear-gradient(bottom, #e6e6e6, #fefefe);
	background-image   : -o-linear-gradient(bottom, #e6e6e6, #fefefe);
	background-image   : linear-gradient(to top, #e6e6e6, #fefefe);
	filter             : progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe6e6e6', endColorstr='#fffefefe', GradientType=0);
}

.motopress-service-box-obj .motopress-service-box-button-section .motopress-btn-color-silver:hover {
	color            : #4f4f4f;
	background-color : #f4f4f4;
	background-image : -moz-linear-gradient(bottom, #ededed, #ffffff);
	background-image : -webkit-gradient(linear, 0 100%, 0 0, from(#ededed), to(#ffffff));
	background-image : -webkit-linear-gradient(bottom, #ededed, #ffffff);
	background-image : -o-linear-gradient(bottom, #ededed, #ffffff);
	background-image : linear-gradient(to top, #ededed, #ffffff);
	filter           : progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffededed', endColorstr='#ffffffff', GradientType=0);
}

.motopress-service-box-obj .motopress-service-box-button-section .motopress-btn-color-red {
	-webkit-box-shadow : inset 0 0 0 1px #bc3d2c;
	-moz-box-shadow    : inset 0 0 0 1px #bc3d2c;
	box-shadow         : inset 0 0 0 1px #bc3d2c;
	background-color   : #dd503e;
	background-image   : -moz-linear-gradient(bottom, #d14836, #ee5d4a);
	background-image   : -webkit-gradient(linear, 0 100%, 0 0, from(#d14836), to(#ee5d4a));
	background-image   : -webkit-linear-gradient(bottom, #d14836, #ee5d4a);
	background-image   : -o-linear-gradient(bottom, #d14836, #ee5d4a);
	background-image   : linear-gradient(to top, #d14836, #ee5d4a);
	filter             : progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd14836', endColorstr='#ffee5d4a', GradientType=0);
}

.motopress-service-box-obj .motopress-service-box-button-section .motopress-btn-color-red:hover {
	background-color : #ea6857;
	background-image : -moz-linear-gradient(bottom, #e76452, #ef6f5f);
	background-image : -webkit-gradient(linear, 0 100%, 0 0, from(#e76452), to(#ef6f5f));
	background-image : -webkit-linear-gradient(bottom, #e76452, #ef6f5f);
	background-image : -o-linear-gradient(bottom, #e76452, #ef6f5f);
	background-image : linear-gradient(to top, #e76452, #ef6f5f);
	filter           : progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe76452', endColorstr='#ffef6f5f', GradientType=0);
}

.motopress-service-box-obj .motopress-service-box-button-section .motopress-btn-color-pink-dreams {
	-webkit-box-shadow : inset 0 0 0 1px #f08eb9;
	-moz-box-shadow    : inset 0 0 0 1px #f08eb9;
	box-shadow         : inset 0 0 0 1px #f08eb9;
	background-color   : #f689ba;
	background-image   : -moz-linear-gradient(bottom, #f171ab, #feaed1);
	background-image   : -webkit-gradient(linear, 0 100%, 0 0, from(#f171ab), to(#feaed1));
	background-image   : -webkit-linear-gradient(bottom, #f171ab, #feaed1);
	background-image   : -o-linear-gradient(bottom, #f171ab, #feaed1);
	background-image   : linear-gradient(to top, #f171ab, #feaed1);
	filter             : progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff171ab', endColorstr='#fffeaed1', GradientType=0);
}

.motopress-service-box-obj .motopress-service-box-button-section .motopress-btn-color-pink-dreams:hover {
	background-color : #f8a6cb;
	background-image : -moz-linear-gradient(bottom, #f58dbc, #fdcbe1);
	background-image : -webkit-gradient(linear, 0 100%, 0 0, from(#f58dbc), to(#fdcbe1));
	background-image : -webkit-linear-gradient(bottom, #f58dbc, #fdcbe1);
	background-image : -o-linear-gradient(bottom, #f58dbc, #fdcbe1);
	background-image : linear-gradient(to top, #f58dbc, #fdcbe1);
	filter           : progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff58dbc', endColorstr='#fffdcbe1', GradientType=0);
}

.motopress-service-box-obj .motopress-service-box-button-section .motopress-btn-color-warm {
	-webkit-box-shadow : inset 0 0 0 1px #ea8f1a;
	-moz-box-shadow    : inset 0 0 0 1px #ea8f1a;
	box-shadow         : inset 0 0 0 1px #ea8f1a;
	background-color   : #ff8c1a;
	background-image   : -moz-linear-gradient(bottom, #ff7611, #ffac27);
	background-image   : -webkit-gradient(linear, 0 100%, 0 0, from(#ff7611), to(#ffac27));
	background-image   : -webkit-linear-gradient(bottom, #ff7611, #ffac27);
	background-image   : -o-linear-gradient(bottom, #ff7611, #ffac27);
	background-image   : linear-gradient(to top, #ff7611, #ffac27);
	filter             : progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffff7611', endColorstr='#ffffac27', GradientType=0);
}

.motopress-service-box-obj .motopress-service-box-button-section .motopress-btn-color-warm:hover {
	background-color : #fda248;
	background-image : -moz-linear-gradient(bottom, #fb8e3d, #ffbf59);
	background-image : -webkit-gradient(linear, 0 100%, 0 0, from(#fb8e3d), to(#ffbf59));
	background-image : -webkit-linear-gradient(bottom, #fb8e3d, #ffbf59);
	background-image : -o-linear-gradient(bottom, #fb8e3d, #ffbf59);
	background-image : linear-gradient(to top, #fb8e3d, #ffbf59);
	filter           : progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffb8e3d', endColorstr='#ffffbf59', GradientType=0);
}

.motopress-service-box-obj .motopress-service-box-button-section .motopress-btn-color-hot-summer {
	-webkit-box-shadow : inset 0 0 0 1px #f2bf0b;
	-moz-box-shadow    : inset 0 0 0 1px #f2bf0b;
	box-shadow         : inset 0 0 0 1px #f2bf0b;
	background-color   : #f7c712;
	background-image   : -moz-linear-gradient(bottom, #f1b000, #ffe92e);
	background-image   : -webkit-gradient(linear, 0 100%, 0 0, from(#f1b000), to(#ffe92e));
	background-image   : -webkit-linear-gradient(bottom, #f1b000, #ffe92e);
	background-image   : -o-linear-gradient(bottom, #f1b000, #ffe92e);
	background-image   : linear-gradient(to top, #f1b000, #ffe92e);
	filter             : progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff1b000', endColorstr='#ffffe92e', GradientType=0);
}

.motopress-service-box-obj .motopress-service-box-button-section .motopress-btn-color-hot-summer:hover {
	background-color : #fbd139;
	background-image : -moz-linear-gradient(bottom, #f9be20, #ffee5e);
	background-image : -webkit-gradient(linear, 0 100%, 0 0, from(#f9be20), to(#ffee5e));
	background-image : -webkit-linear-gradient(bottom, #f9be20, #ffee5e);
	background-image : -o-linear-gradient(bottom, #f9be20, #ffee5e);
	background-image : linear-gradient(to top, #f9be20, #ffee5e);
	filter           : progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff9be20', endColorstr='#ffffee5e', GradientType=0);
}

.motopress-service-box-obj .motopress-service-box-button-section .motopress-btn-color-olive-garden {
	-webkit-box-shadow : inset 0 0 0 1px #8ad532;
	-moz-box-shadow    : inset 0 0 0 1px #8ad532;
	box-shadow         : inset 0 0 0 1px #8ad532;
	background-color   : #92ca26;
	background-image   : -moz-linear-gradient(bottom, #7fb615, #afe840);
	background-image   : -webkit-gradient(linear, 0 100%, 0 0, from(#7fb615), to(#afe840));
	background-image   : -webkit-linear-gradient(bottom, #7fb615, #afe840);
	background-image   : -o-linear-gradient(bottom, #7fb615, #afe840);
	background-image   : linear-gradient(to top, #7fb615, #afe840);
	filter             : progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff7fb615', endColorstr='#ffafe840', GradientType=0);
}

.motopress-service-box-obj .motopress-service-box-button-section .motopress-btn-color-olive-garden:hover {
	background-color : #a2d441;
	background-image : -moz-linear-gradient(bottom, #8dc323, #c2ee6e);
	background-image : -webkit-gradient(linear, 0 100%, 0 0, from(#8dc323), to(#c2ee6e));
	background-image : -webkit-linear-gradient(bottom, #8dc323, #c2ee6e);
	background-image : -o-linear-gradient(bottom, #8dc323, #c2ee6e);
	background-image : linear-gradient(to top, #8dc323, #c2ee6e);
	filter           : progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff8dc323', endColorstr='#ffc2ee6e', GradientType=0);
}

.motopress-service-box-obj .motopress-service-box-button-section .motopress-btn-color-green-grass {
	-webkit-box-shadow : inset 0 0 0 1px #51b41e;
	-moz-box-shadow    : inset 0 0 0 1px #51b41e;
	box-shadow         : inset 0 0 0 1px #51b41e;
	background-color   : #42b321;
	background-image   : -moz-linear-gradient(bottom, #329c0d, #5bd63f);
	background-image   : -webkit-gradient(linear, 0 100%, 0 0, from(#329c0d), to(#5bd63f));
	background-image   : -webkit-linear-gradient(bottom, #329c0d, #5bd63f);
	background-image   : -o-linear-gradient(bottom, #329c0d, #5bd63f);
	background-image   : linear-gradient(to top, #329c0d, #5bd63f);
	filter             : progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff329c0d', endColorstr='#ff5bd63f', GradientType=0);
}

.motopress-service-box-obj .motopress-service-box-button-section .motopress-btn-color-green-grass:hover {
	background-color : #5bc83a;
	background-image : -moz-linear-gradient(bottom, #43b41c, #80e568);
	background-image : -webkit-gradient(linear, 0 100%, 0 0, from(#43b41c), to(#80e568));
	background-image : -webkit-linear-gradient(bottom, #43b41c, #80e568);
	background-image : -o-linear-gradient(bottom, #43b41c, #80e568);
	background-image : linear-gradient(to top, #43b41c, #80e568);
	filter           : progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff43b41c', endColorstr='#ff80e568', GradientType=0);
}

.motopress-service-box-obj .motopress-service-box-button-section .motopress-btn-color-skyline {
	-webkit-box-shadow : inset 0 0 0 1px #0aafca;
	-moz-box-shadow    : inset 0 0 0 1px #0aafca;
	box-shadow         : inset 0 0 0 1px #0aafca;
	background-color   : #0fc1ec;
	background-image   : -moz-linear-gradient(bottom, #00aaea, #25e3ef);
	background-image   : -webkit-gradient(linear, 0 100%, 0 0, from(#00aaea), to(#25e3ef));
	background-image   : -webkit-linear-gradient(bottom, #00aaea, #25e3ef);
	background-image   : -o-linear-gradient(bottom, #00aaea, #25e3ef);
	background-image   : linear-gradient(to top, #00aaea, #25e3ef);
	filter             : progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff00aaea', endColorstr='#ff25e3ef', GradientType=0);
}

.motopress-service-box-obj .motopress-service-box-button-section .motopress-btn-color-skyline:hover {
	background-color : #3cccef;
	background-image : -moz-linear-gradient(bottom, #2eb8ec, #51eaf4);
	background-image : -webkit-gradient(linear, 0 100%, 0 0, from(#2eb8ec), to(#51eaf4));
	background-image : -webkit-linear-gradient(bottom, #2eb8ec, #51eaf4);
	background-image : -o-linear-gradient(bottom, #2eb8ec, #51eaf4);
	background-image : linear-gradient(to top, #2eb8ec, #51eaf4);
	filter           : progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff2eb8ec', endColorstr='#ff51eaf4', GradientType=0);
}

.motopress-service-box-obj .motopress-service-box-button-section .motopress-btn-color-aqua-blue {
	-webkit-box-shadow : inset 0 0 0 1px #228ddb;
	-moz-box-shadow    : inset 0 0 0 1px #228ddb;
	box-shadow         : inset 0 0 0 1px #228ddb;
	background-color   : #2483e1;
	background-image   : -moz-linear-gradient(bottom, #0c61d6, #48b7f1);
	background-image   : -webkit-gradient(linear, 0 100%, 0 0, from(#0c61d6), to(#48b7f1));
	background-image   : -webkit-linear-gradient(bottom, #0c61d6, #48b7f1);
	background-image   : -o-linear-gradient(bottom, #0c61d6, #48b7f1);
	background-image   : linear-gradient(to top, #0c61d6, #48b7f1);
	filter             : progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0c61d6', endColorstr='#ff48b7f1', GradientType=0);
}

.motopress-service-box-obj .motopress-service-box-button-section .motopress-btn-color-aqua-blue:hover {
	background-color : #4c98e7;
	background-image : -moz-linear-gradient(bottom, #2977e2, #81caef);
	background-image : -webkit-gradient(linear, 0 100%, 0 0, from(#2977e2), to(#81caef));
	background-image : -webkit-linear-gradient(bottom, #2977e2, #81caef);
	background-image : -o-linear-gradient(bottom, #2977e2, #81caef);
	background-image : linear-gradient(to top, #2977e2, #81caef);
	filter           : progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff2977e2', endColorstr='#ff81caef', GradientType=0);
}

.motopress-service-box-obj .motopress-service-box-button-section .motopress-btn-color-violet {
	-webkit-box-shadow : inset 0 0 0 1px #9850d4;
	-moz-box-shadow    : inset 0 0 0 1px #9850d4;
	box-shadow         : inset 0 0 0 1px #9850d4;
	background-color   : #9741d9;
	background-image   : -moz-linear-gradient(bottom, #7c13c6, #c085f6);
	background-image   : -webkit-gradient(linear, 0 100%, 0 0, from(#7c13c6), to(#c085f6));
	background-image   : -webkit-linear-gradient(bottom, #7c13c6, #c085f6);
	background-image   : -o-linear-gradient(bottom, #7c13c6, #c085f6);
	background-image   : linear-gradient(to top, #7c13c6, #c085f6);
	filter             : progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff7c13c6', endColorstr='#ffc085f6', GradientType=0);
}

.motopress-service-box-obj .motopress-service-box-button-section .motopress-btn-color-violet:hover {
	background-color : #ae62e8;
	background-image : -moz-linear-gradient(bottom, #9532da, #d4a9fc);
	background-image : -webkit-gradient(linear, 0 100%, 0 0, from(#9532da), to(#d4a9fc));
	background-image : -webkit-linear-gradient(bottom, #9532da, #d4a9fc);
	background-image : -o-linear-gradient(bottom, #9532da, #d4a9fc);
	background-image : linear-gradient(to top, #9532da, #d4a9fc);
	filter           : progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff9532da', endColorstr='#ffd4a9fc', GradientType=0);
}

.motopress-service-box-obj .motopress-service-box-button-section .motopress-btn-color-dark-grey {
	-webkit-box-shadow : inset 0 0 0 1px #8c8c8c;
	-moz-box-shadow    : inset 0 0 0 1px #8c8c8c;
	box-shadow         : inset 0 0 0 1px #8c8c8c;
	background-color   : #818181;
	background-image   : -moz-linear-gradient(bottom, #5b5b5b, #bababa);
	background-image   : -webkit-gradient(linear, 0 100%, 0 0, from(#5b5b5b), to(#bababa));
	background-image   : -webkit-linear-gradient(bottom, #5b5b5b, #bababa);
	background-image   : -o-linear-gradient(bottom, #5b5b5b, #bababa);
	background-image   : linear-gradient(to top, #5b5b5b, #bababa);
	filter             : progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5b5b5b', endColorstr='#ffbababa', GradientType=0);
}

.motopress-service-box-obj .motopress-service-box-button-section .motopress-btn-color-dark-grey:hover {
	background-color : #a3a2a2;
	background-image : -moz-linear-gradient(bottom, #878787, #cdcbcb);
	background-image : -webkit-gradient(linear, 0 100%, 0 0, from(#878787), to(#cdcbcb));
	background-image : -webkit-linear-gradient(bottom, #878787, #cdcbcb);
	background-image : -o-linear-gradient(bottom, #878787, #cdcbcb);
	background-image : linear-gradient(to top, #878787, #cdcbcb);
	filter           : progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff878787', endColorstr='#ffcdcbcb', GradientType=0);
}

.motopress-service-box-obj .motopress-service-box-button-section .motopress-btn-color-black {
	-webkit-box-shadow : inset 0 0 0 1px #1f1f1f;
	-moz-box-shadow    : inset 0 0 0 1px #1f1f1f;
	box-shadow         : inset 0 0 0 1px #1f1f1f;
	background-color   : #2b2b2b;
	background-image   : -moz-linear-gradient(bottom, #0d0d0d, #595959);
	background-image   : -webkit-gradient(linear, 0 100%, 0 0, from(#0d0d0d), to(#595959));
	background-image   : -webkit-linear-gradient(bottom, #0d0d0d, #595959);
	background-image   : -o-linear-gradient(bottom, #0d0d0d, #595959);
	background-image   : linear-gradient(to top, #0d0d0d, #595959);
	filter             : progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0d0d0d', endColorstr='#ff595959', GradientType=0);
}

.motopress-service-box-obj .motopress-service-box-button-section .motopress-btn-color-black:hover {
	background-color : #474747;
	background-image : -moz-linear-gradient(bottom, #272727, #767676);
	background-image : -webkit-gradient(linear, 0 100%, 0 0, from(#272727), to(#767676));
	background-image : -webkit-linear-gradient(bottom, #272727, #767676);
	background-image : -o-linear-gradient(bottom, #272727, #767676);
	background-image : linear-gradient(to top, #272727, #767676);
	filter           : progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff272727', endColorstr='#ff767676', GradientType=0);
}

.motopress-service-box-obj .motopress-service-box-button-section .motopress-btn.ui-state-active {
	background-image : none;
	box-shadow       : 2px 2px 3px rgba(0, 0, 0, 0.1) inset, -1px -1px 0px rgba(255, 255, 255, 0.6) inset;
	text-shadow      : none;
}

.motopress-service-box-obj .motopress-service-box-button-section .motopress-btn-size-large {
	padding   : 13px 36px;
	font-size : 18px;
}

.motopress-service-box-obj .motopress-service-box-button-section .motopress-btn-size-middle {
	padding   : 10px 23px;
	font-size : 16px;
}

.motopress-service-box-obj .motopress-service-box-button-section .motopress-btn-size-small {
	padding   : 7px 15px;
	font-size : 13px;
}

.motopress-service-box-obj .motopress-service-box-button-section .motopress-btn-size-mini {
	padding   : 6px 11px;
	font-size : 11px;
}

.motopress-service-box-obj .motopress-service-box-button-section .motopress-btn-rounded {
	-webkit-border-radius : 3px;
	-moz-border-radius    : 3px;
	border-radius         : 3px;
}

.motopress-service-box-obj .motopress-service-box-button-section .motopress-btn-round {
	-webkit-border-radius : 2em;
	-moz-border-radius    : 2em;
	border-radius         : 2em;
}

.motopress-service-box-obj .motopress-service-box-button-section .motopress-btn-icon-indent-mini i.motopress-btn-icon-align-left {
	padding-right : 4px;
}

.motopress-service-box-obj .motopress-service-box-button-section .motopress-btn-icon-indent-mini i.motopress-btn-icon-align-right {
	padding-left : 4px;
}

.motopress-service-box-obj .motopress-service-box-button-section .motopress-btn-icon-indent-small i.motopress-btn-icon-align-left {
	padding-right : 8px;
}

.motopress-service-box-obj .motopress-service-box-button-section .motopress-btn-icon-indent-small i.motopress-btn-icon-align-right {
	padding-left : 8px;
}

.motopress-service-box-obj .motopress-service-box-button-section .motopress-btn-icon-indent-middle i.motopress-btn-icon-align-left {
	padding-right : 12px;
}

.motopress-service-box-obj .motopress-service-box-button-section .motopress-btn-icon-indent-middle i.motopress-btn-icon-align-right {
	padding-left : 12px;
}

.motopress-service-box-obj .motopress-service-box-button-section .motopress-btn-icon-indent-large i.motopress-btn-icon-align-left {
	padding-right : 24px;
}

.motopress-service-box-obj .motopress-service-box-button-section .motopress-btn-icon-indent-large i.motopress-btn-icon-align-right {
	padding-left : 24px;
}

.motopress-service-box-obj .motopress-service-box-button-section .motopress-btn-full-width {
	width              : 100%;
	-webkit-box-sizing : border-box;
	-moz-box-sizing    : border-box;
	box-sizing         : border-box;
	text-align         : center;
}

.motopress-cta-obj.style-3d {
	padding-bottom : 5px;
}

.motopress-cta-obj .motopress-cta {
	padding            : 28px;
	margin             : 0 auto;
	-webkit-box-sizing : border-box;
	-moz-box-sizing    : border-box;
	box-sizing         : border-box;
	position           : relative;
}

.motopress-cta-obj .motopress-cta.animate {
	opacity : 0;
	filter  : alpha(opacity=0);
}

.motopress-cta-obj .motopress-cta.motopress-cta-shape-rounded {
	-webkit-border-radius : 5px;
	-moz-border-radius    : 5px;
	border-radius         : 5px;
}

.motopress-cta-obj .motopress-cta.motopress-cta-shape-round {
	-webkit-border-radius : 4em;
	-moz-border-radius    : 4em;
	border-radius         : 4em;
}

.motopress-cta-obj .motopress-cta.motopress-cta-style-classic {
	background-color : #f0f0f0;
	border           : 1px solid #f7f7f7;
}

.motopress-cta-obj .motopress-cta.motopress-cta-style-flat {
	background-color : #5aa1e3;
	border           : 1px solid transparent;
	color            : #dce9f5;
}

.motopress-cta-obj .motopress-cta.motopress-cta-style-flat .motopress-cta-content-heading,
.motopress-cta-obj .motopress-cta.motopress-cta-style-flat .motopress-cta-content-subheading {
	color : #ffffff;
}

.motopress-cta-obj .motopress-cta.motopress-cta-style-outline {
	background-color : transparent;
	border           : 3px solid #5aa1e3;
}

.motopress-cta-obj .motopress-cta.motopress-cta-style-outline .motopress-cta-content-heading,
.motopress-cta-obj .motopress-cta.motopress-cta-style-outline .motopress-cta-content-subheading {
	color : #5aa1e3;
}

.motopress-cta-obj .motopress-cta.motopress-cta-style-3d {
	background-color : #5aa1e3;
	border           : 1px solid transparent;
	color            : #dce9f5;
	box-shadow       : 0 5px 0 #2a86db;
}

.motopress-cta-obj .motopress-cta.motopress-cta-style-3d .motopress-cta-content-heading,
.motopress-cta-obj .motopress-cta.motopress-cta-style-3d .motopress-cta-content-subheading {
	color : #ffffff;
}

.motopress-cta-obj .motopress-cta.motopress-cta-icon-aside .motopress-cta-icon-section {
	display        : table-cell;
	vertical-align : middle;
}

.motopress-cta-obj .motopress-cta.motopress-cta-icon-aside .motopress-cta-content-container {
	display : table-cell;
}

.motopress-cta-obj .motopress-cta.motopress-cta-icon-aside.motopress-cta-icon-left .motopress-cta-content-container {
	padding-left : 1em;
}

.motopress-cta-obj .motopress-cta.motopress-cta-icon-aside.motopress-cta-icon-right .motopress-cta-content-container {
	padding-right : 1em;
}

.motopress-cta-obj .motopress-cta.motopress-cta-icon-in-column.motopress-cta-icon-top .motopress-cta-content-container {
	padding-top : 1em;
}

.motopress-cta-obj .motopress-cta.motopress-cta-icon-in-column.motopress-cta-icon-bottom .motopress-cta-content-container {
	padding-bottom : 1em;
}

.motopress-cta-obj .motopress-cta.motopress-cta-icon-on-border.motopress-cta-icon-top {
	margin-top : 50px;
}

.motopress-cta-obj .motopress-cta.motopress-cta-icon-on-border.motopress-cta-icon-bottom {
	margin-bottom : 50px;
}

.motopress-cta-obj .motopress-cta.motopress-cta-icon-on-border.motopress-cta-fullwidth.motopress-cta-icon-left {
	margin-left : 50px;
}

.motopress-cta-obj .motopress-cta.motopress-cta-icon-on-border.motopress-cta-fullwidth.motopress-cta-icon-right {
	margin-right : 50px;
}

.motopress-cta-obj .motopress-cta.motopress-cta-icon-on-border.motopress-cta-icon-in-column.motopress-cta-icon-top .motopress-cta-icon-section {
	position          : absolute;
	top               : 0;
	left              : 50%;
	-webkit-transform : translate(-50%, -50%);
	-moz-transform    : translate(-50%, -50%);
	-ms-transform     : translate(-50%, -50%);
	transform         : translate(-50%, -50%);
}

.motopress-cta-obj .motopress-cta.motopress-cta-icon-on-border.motopress-cta-icon-in-column.motopress-cta-icon-top .motopress-cta-content-container {
	padding-top : 28px;
}

.motopress-cta-obj .motopress-cta.motopress-cta-icon-on-border.motopress-cta-icon-in-column.motopress-cta-icon-bottom .motopress-cta-icon-section {
	position          : absolute;
	bottom            : 0;
	left              : 50%;
	-webkit-transform : translate(-50%, 50%);
	-moz-transform    : translate(-50%, 50%);
	-ms-transform     : translate(-50%, 50%);
	transform         : translate(-50%, 50%);
}

.motopress-cta-obj .motopress-cta.motopress-cta-icon-on-border.motopress-cta-icon-in-column.motopress-cta-icon-bottom .motopress-cta-content-container {
	padding-bottom : 28px;
}

.motopress-cta-obj .motopress-cta.motopress-cta-icon-on-border.motopress-cta-icon-aside.motopress-cta-icon-left .motopress-cta-icon-section {
	position          : absolute;
	top               : 50%;
	left              : 0;
	-webkit-transform : translate(-50%, -50%);
	-moz-transform    : translate(-50%, -50%);
	-ms-transform     : translate(-50%, -50%);
	transform         : translate(-50%, -50%);
}

.motopress-cta-obj .motopress-cta.motopress-cta-icon-on-border.motopress-cta-icon-aside.motopress-cta-icon-left .motopress-cta-content-container {
	padding-left : 28px;
}

.motopress-cta-obj .motopress-cta.motopress-cta-icon-on-border.motopress-cta-icon-aside.motopress-cta-icon-right .motopress-cta-icon-section {
	position          : absolute;
	top               : 50%;
	right             : 0;
	-webkit-transform : translate(50%, -50%);
	-moz-transform    : translate(50%, -50%);
	-ms-transform     : translate(50%, -50%);
	transform         : translate(50%, -50%);
}

.motopress-cta-obj .motopress-cta.motopress-cta-icon-on-border.motopress-cta-icon-aside.motopress-cta-icon-right .motopress-cta-content-container {
	padding-right : 28px;
}

.motopress-cta-obj .motopress-cta .motopress-cta-icon-section {
	text-align : center;
}

.motopress-cta-obj .motopress-cta .motopress-cta-content-container.motopress-cta-button-aside .motopress-button-wrap {
	display        : table-cell;
	vertical-align : middle;
}

.motopress-cta-obj .motopress-cta .motopress-cta-content-container.motopress-cta-button-aside .motopress-cta-content-section {
	display        : table-cell;
	vertical-align : top;
}

.motopress-cta-obj .motopress-cta .motopress-cta-content-container.motopress-cta-button-top .motopress-cta-content-section {
	margin-top : 1em;
}

.motopress-cta-obj .motopress-cta .motopress-cta-content-container.motopress-cta-button-bottom .motopress-cta-content-section {
	margin-bottom : 1em;
}

.motopress-cta-obj .motopress-cta .motopress-cta-content-container.motopress-cta-button-left .motopress-cta-content-section {
	padding-left : 1em;
}

.motopress-cta-obj .motopress-cta .motopress-cta-content-container.motopress-cta-button-right .motopress-cta-content-section {
	padding-right : 1em;
}

.motopress-cta-obj .motopress-cta .motopress-cta-content-container .motopress-cta-content-heading,
.motopress-cta-obj .motopress-cta .motopress-cta-content-container .motopress-cta-content-subheading {
	margin : 0 0 12px 0;
}

.motopress-cta-obj .motopress-cta .motopress-cta-content-container .motopress-cta-content-text {
	margin : 0;
}

.motopress-cta-obj .motopress-cta .motopress-cta-content-container .motopress-button-wrap .motopress-btn {
	margin      : 0;
	text-align  : center;
	white-space : nowrap;
}

.motopress-cta-obj .motopress-cta .motopress-cta-content-container .motopress-button-wrap .motopress-btn i {
	display : inline;
}

@media (max-width : 480px) {
	.motopress-cta-obj .motopress-cta .motopress-cta-content-container {
		padding : 0em !important;
	}

	.motopress-cta-obj .motopress-cta .motopress-cta-icon-section,
	.motopress-cta-obj .motopress-cta .motopress-cta-content-section,
	.motopress-cta-obj .motopress-cta .motopress-button-wrap {
		display : block !important;
		padding : 0.5em 0em !important;
	}
}

.motopress-countdown_timer {
	position : relative;
}

.motopress-countdown_timer .CE_timer {
	position   : relative;
	text-align : center !important;
}

.motopress-countdown_timer .countdown-section {
	overflow : hidden !important;
	float    : none !important;
	display  : inline-block !important;
}

.motopress-countdown_timer .countdown-section .countdown-element {
	display        : table-cell;
	text-align     : center;
	vertical-align : middle;
}

.motopress-countdown_timer .countdown-section .countdown-element .countdown-amount {
	display : block;
}

.motopress-countdown_timer .countdown-section .countdown-element .countdown-period {
	display : block;
}

.motopress-countdown_timer .countdown-row {
	padding    : 0px 0px !important;
	text-align : center;
	width      : 100%;
	clear      : both;
}

.motopress-countdown_timer .countdown-rtl {
	direction : rtl;
}

.motopress-modal-obj .motopress-btn {
	display             : inline-block;
	margin              : 10px 0 10px 0;
	color               : #ffffff;
	line-height         : 1em;
	text-shadow         : 0 1px 1px rgba(21, 21, 22, 0.25);
	text-decoration     : none;
	border              : none;
	-webkit-user-select : none;
	-moz-user-select    : none;
	-ms-user-select     : none;
	-o-user-select      : none;
	user-select         : none;
}

.motopress-modal-obj .motopress-btn:hover,
.motopress-modal-obj .motopress-btn:visited {
	text-decoration : none;
}

.motopress-modal-obj .motopress-btn-color-silver {
	color              : #4f4f4f;
	text-shadow        : 0 1px 1px rgba(255, 255, 255, 0.25);
	-webkit-box-shadow : inset 0 0 0 1px #dcdcdc;
	-moz-box-shadow    : inset 0 0 0 1px #dcdcdc;
	box-shadow         : inset 0 0 0 1px #dcdcdc;
	background-color   : #f0f0f0;
	background-image   : -moz-linear-gradient(bottom, #e6e6e6, #fefefe);
	background-image   : -webkit-gradient(linear, 0 100%, 0 0, from(#e6e6e6), to(#fefefe));
	background-image   : -webkit-linear-gradient(bottom, #e6e6e6, #fefefe);
	background-image   : -o-linear-gradient(bottom, #e6e6e6, #fefefe);
	background-image   : linear-gradient(to top, #e6e6e6, #fefefe);
	filter             : progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe6e6e6', endColorstr='#fffefefe', GradientType=0);
}

.motopress-modal-obj .motopress-btn-color-silver:hover {
	color            : #4f4f4f;
	background-color : #f4f4f4;
	background-image : -moz-linear-gradient(bottom, #ededed, #ffffff);
	background-image : -webkit-gradient(linear, 0 100%, 0 0, from(#ededed), to(#ffffff));
	background-image : -webkit-linear-gradient(bottom, #ededed, #ffffff);
	background-image : -o-linear-gradient(bottom, #ededed, #ffffff);
	background-image : linear-gradient(to top, #ededed, #ffffff);
	filter           : progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffededed', endColorstr='#ffffffff', GradientType=0);
}

.motopress-modal-obj .motopress-btn-color-red {
	-webkit-box-shadow : inset 0 0 0 1px #bc3d2c;
	-moz-box-shadow    : inset 0 0 0 1px #bc3d2c;
	box-shadow         : inset 0 0 0 1px #bc3d2c;
	background-color   : #dd503e;
	background-image   : -moz-linear-gradient(bottom, #d14836, #ee5d4a);
	background-image   : -webkit-gradient(linear, 0 100%, 0 0, from(#d14836), to(#ee5d4a));
	background-image   : -webkit-linear-gradient(bottom, #d14836, #ee5d4a);
	background-image   : -o-linear-gradient(bottom, #d14836, #ee5d4a);
	background-image   : linear-gradient(to top, #d14836, #ee5d4a);
	filter             : progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd14836', endColorstr='#ffee5d4a', GradientType=0);
}

.motopress-modal-obj .motopress-btn-color-red:hover {
	background-color : #ea6857;
	background-image : -moz-linear-gradient(bottom, #e76452, #ef6f5f);
	background-image : -webkit-gradient(linear, 0 100%, 0 0, from(#e76452), to(#ef6f5f));
	background-image : -webkit-linear-gradient(bottom, #e76452, #ef6f5f);
	background-image : -o-linear-gradient(bottom, #e76452, #ef6f5f);
	background-image : linear-gradient(to top, #e76452, #ef6f5f);
	filter           : progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe76452', endColorstr='#ffef6f5f', GradientType=0);
}

.motopress-modal-obj .motopress-btn-color-pink-dreams {
	-webkit-box-shadow : inset 0 0 0 1px #f08eb9;
	-moz-box-shadow    : inset 0 0 0 1px #f08eb9;
	box-shadow         : inset 0 0 0 1px #f08eb9;
	background-color   : #f689ba;
	background-image   : -moz-linear-gradient(bottom, #f171ab, #feaed1);
	background-image   : -webkit-gradient(linear, 0 100%, 0 0, from(#f171ab), to(#feaed1));
	background-image   : -webkit-linear-gradient(bottom, #f171ab, #feaed1);
	background-image   : -o-linear-gradient(bottom, #f171ab, #feaed1);
	background-image   : linear-gradient(to top, #f171ab, #feaed1);
	filter             : progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff171ab', endColorstr='#fffeaed1', GradientType=0);
}

.motopress-modal-obj .motopress-btn-color-pink-dreams:hover {
	background-color : #f8a6cb;
	background-image : -moz-linear-gradient(bottom, #f58dbc, #fdcbe1);
	background-image : -webkit-gradient(linear, 0 100%, 0 0, from(#f58dbc), to(#fdcbe1));
	background-image : -webkit-linear-gradient(bottom, #f58dbc, #fdcbe1);
	background-image : -o-linear-gradient(bottom, #f58dbc, #fdcbe1);
	background-image : linear-gradient(to top, #f58dbc, #fdcbe1);
	filter           : progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff58dbc', endColorstr='#fffdcbe1', GradientType=0);
}

.motopress-modal-obj .motopress-btn-color-warm {
	-webkit-box-shadow : inset 0 0 0 1px #ea8f1a;
	-moz-box-shadow    : inset 0 0 0 1px #ea8f1a;
	box-shadow         : inset 0 0 0 1px #ea8f1a;
	background-color   : #ff8c1a;
	background-image   : -moz-linear-gradient(bottom, #ff7611, #ffac27);
	background-image   : -webkit-gradient(linear, 0 100%, 0 0, from(#ff7611), to(#ffac27));
	background-image   : -webkit-linear-gradient(bottom, #ff7611, #ffac27);
	background-image   : -o-linear-gradient(bottom, #ff7611, #ffac27);
	background-image   : linear-gradient(to top, #ff7611, #ffac27);
	filter             : progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffff7611', endColorstr='#ffffac27', GradientType=0);
}

.motopress-modal-obj .motopress-btn-color-warm:hover {
	background-color : #fda248;
	background-image : -moz-linear-gradient(bottom, #fb8e3d, #ffbf59);
	background-image : -webkit-gradient(linear, 0 100%, 0 0, from(#fb8e3d), to(#ffbf59));
	background-image : -webkit-linear-gradient(bottom, #fb8e3d, #ffbf59);
	background-image : -o-linear-gradient(bottom, #fb8e3d, #ffbf59);
	background-image : linear-gradient(to top, #fb8e3d, #ffbf59);
	filter           : progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffb8e3d', endColorstr='#ffffbf59', GradientType=0);
}

.motopress-modal-obj .motopress-btn-color-hot-summer {
	-webkit-box-shadow : inset 0 0 0 1px #f2bf0b;
	-moz-box-shadow    : inset 0 0 0 1px #f2bf0b;
	box-shadow         : inset 0 0 0 1px #f2bf0b;
	background-color   : #f7c712;
	background-image   : -moz-linear-gradient(bottom, #f1b000, #ffe92e);
	background-image   : -webkit-gradient(linear, 0 100%, 0 0, from(#f1b000), to(#ffe92e));
	background-image   : -webkit-linear-gradient(bottom, #f1b000, #ffe92e);
	background-image   : -o-linear-gradient(bottom, #f1b000, #ffe92e);
	background-image   : linear-gradient(to top, #f1b000, #ffe92e);
	filter             : progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff1b000', endColorstr='#ffffe92e', GradientType=0);
}

.motopress-modal-obj .motopress-btn-color-hot-summer:hover {
	background-color : #fbd139;
	background-image : -moz-linear-gradient(bottom, #f9be20, #ffee5e);
	background-image : -webkit-gradient(linear, 0 100%, 0 0, from(#f9be20), to(#ffee5e));
	background-image : -webkit-linear-gradient(bottom, #f9be20, #ffee5e);
	background-image : -o-linear-gradient(bottom, #f9be20, #ffee5e);
	background-image : linear-gradient(to top, #f9be20, #ffee5e);
	filter           : progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff9be20', endColorstr='#ffffee5e', GradientType=0);
}

.motopress-modal-obj .motopress-btn-color-olive-garden {
	-webkit-box-shadow : inset 0 0 0 1px #8ad532;
	-moz-box-shadow    : inset 0 0 0 1px #8ad532;
	box-shadow         : inset 0 0 0 1px #8ad532;
	background-color   : #92ca26;
	background-image   : -moz-linear-gradient(bottom, #7fb615, #afe840);
	background-image   : -webkit-gradient(linear, 0 100%, 0 0, from(#7fb615), to(#afe840));
	background-image   : -webkit-linear-gradient(bottom, #7fb615, #afe840);
	background-image   : -o-linear-gradient(bottom, #7fb615, #afe840);
	background-image   : linear-gradient(to top, #7fb615, #afe840);
	filter             : progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff7fb615', endColorstr='#ffafe840', GradientType=0);
}

.motopress-modal-obj .motopress-btn-color-olive-garden:hover {
	background-color : #a2d441;
	background-image : -moz-linear-gradient(bottom, #8dc323, #c2ee6e);
	background-image : -webkit-gradient(linear, 0 100%, 0 0, from(#8dc323), to(#c2ee6e));
	background-image : -webkit-linear-gradient(bottom, #8dc323, #c2ee6e);
	background-image : -o-linear-gradient(bottom, #8dc323, #c2ee6e);
	background-image : linear-gradient(to top, #8dc323, #c2ee6e);
	filter           : progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff8dc323', endColorstr='#ffc2ee6e', GradientType=0);
}

.motopress-modal-obj .motopress-btn-color-green-grass {
	-webkit-box-shadow : inset 0 0 0 1px #51b41e;
	-moz-box-shadow    : inset 0 0 0 1px #51b41e;
	box-shadow         : inset 0 0 0 1px #51b41e;
	background-color   : #42b321;
	background-image   : -moz-linear-gradient(bottom, #329c0d, #5bd63f);
	background-image   : -webkit-gradient(linear, 0 100%, 0 0, from(#329c0d), to(#5bd63f));
	background-image   : -webkit-linear-gradient(bottom, #329c0d, #5bd63f);
	background-image   : -o-linear-gradient(bottom, #329c0d, #5bd63f);
	background-image   : linear-gradient(to top, #329c0d, #5bd63f);
	filter             : progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff329c0d', endColorstr='#ff5bd63f', GradientType=0);
}

.motopress-modal-obj .motopress-btn-color-green-grass:hover {
	background-color : #5bc83a;
	background-image : -moz-linear-gradient(bottom, #43b41c, #80e568);
	background-image : -webkit-gradient(linear, 0 100%, 0 0, from(#43b41c), to(#80e568));
	background-image : -webkit-linear-gradient(bottom, #43b41c, #80e568);
	background-image : -o-linear-gradient(bottom, #43b41c, #80e568);
	background-image : linear-gradient(to top, #43b41c, #80e568);
	filter           : progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff43b41c', endColorstr='#ff80e568', GradientType=0);
}

.motopress-modal-obj .motopress-btn-color-skyline {
	-webkit-box-shadow : inset 0 0 0 1px #0aafca;
	-moz-box-shadow    : inset 0 0 0 1px #0aafca;
	box-shadow         : inset 0 0 0 1px #0aafca;
	background-color   : #0fc1ec;
	background-image   : -moz-linear-gradient(bottom, #00aaea, #25e3ef);
	background-image   : -webkit-gradient(linear, 0 100%, 0 0, from(#00aaea), to(#25e3ef));
	background-image   : -webkit-linear-gradient(bottom, #00aaea, #25e3ef);
	background-image   : -o-linear-gradient(bottom, #00aaea, #25e3ef);
	background-image   : linear-gradient(to top, #00aaea, #25e3ef);
	filter             : progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff00aaea', endColorstr='#ff25e3ef', GradientType=0);
}

.motopress-modal-obj .motopress-btn-color-skyline:hover {
	background-color : #3cccef;
	background-image : -moz-linear-gradient(bottom, #2eb8ec, #51eaf4);
	background-image : -webkit-gradient(linear, 0 100%, 0 0, from(#2eb8ec), to(#51eaf4));
	background-image : -webkit-linear-gradient(bottom, #2eb8ec, #51eaf4);
	background-image : -o-linear-gradient(bottom, #2eb8ec, #51eaf4);
	background-image : linear-gradient(to top, #2eb8ec, #51eaf4);
	filter           : progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff2eb8ec', endColorstr='#ff51eaf4', GradientType=0);
}

.motopress-modal-obj .motopress-btn-color-aqua-blue {
	-webkit-box-shadow : inset 0 0 0 1px #228ddb;
	-moz-box-shadow    : inset 0 0 0 1px #228ddb;
	box-shadow         : inset 0 0 0 1px #228ddb;
	background-color   : #2483e1;
	background-image   : -moz-linear-gradient(bottom, #0c61d6, #48b7f1);
	background-image   : -webkit-gradient(linear, 0 100%, 0 0, from(#0c61d6), to(#48b7f1));
	background-image   : -webkit-linear-gradient(bottom, #0c61d6, #48b7f1);
	background-image   : -o-linear-gradient(bottom, #0c61d6, #48b7f1);
	background-image   : linear-gradient(to top, #0c61d6, #48b7f1);
	filter             : progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0c61d6', endColorstr='#ff48b7f1', GradientType=0);
}

.motopress-modal-obj .motopress-btn-color-aqua-blue:hover {
	background-color : #4c98e7;
	background-image : -moz-linear-gradient(bottom, #2977e2, #81caef);
	background-image : -webkit-gradient(linear, 0 100%, 0 0, from(#2977e2), to(#81caef));
	background-image : -webkit-linear-gradient(bottom, #2977e2, #81caef);
	background-image : -o-linear-gradient(bottom, #2977e2, #81caef);
	background-image : linear-gradient(to top, #2977e2, #81caef);
	filter           : progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff2977e2', endColorstr='#ff81caef', GradientType=0);
}

.motopress-modal-obj .motopress-btn-color-violet {
	-webkit-box-shadow : inset 0 0 0 1px #9850d4;
	-moz-box-shadow    : inset 0 0 0 1px #9850d4;
	box-shadow         : inset 0 0 0 1px #9850d4;
	background-color   : #9741d9;
	background-image   : -moz-linear-gradient(bottom, #7c13c6, #c085f6);
	background-image   : -webkit-gradient(linear, 0 100%, 0 0, from(#7c13c6), to(#c085f6));
	background-image   : -webkit-linear-gradient(bottom, #7c13c6, #c085f6);
	background-image   : -o-linear-gradient(bottom, #7c13c6, #c085f6);
	background-image   : linear-gradient(to top, #7c13c6, #c085f6);
	filter             : progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff7c13c6', endColorstr='#ffc085f6', GradientType=0);
}

.motopress-modal-obj .motopress-btn-color-violet:hover {
	background-color : #ae62e8;
	background-image : -moz-linear-gradient(bottom, #9532da, #d4a9fc);
	background-image : -webkit-gradient(linear, 0 100%, 0 0, from(#9532da), to(#d4a9fc));
	background-image : -webkit-linear-gradient(bottom, #9532da, #d4a9fc);
	background-image : -o-linear-gradient(bottom, #9532da, #d4a9fc);
	background-image : linear-gradient(to top, #9532da, #d4a9fc);
	filter           : progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff9532da', endColorstr='#ffd4a9fc', GradientType=0);
}

.motopress-modal-obj .motopress-btn-color-dark-grey {
	-webkit-box-shadow : inset 0 0 0 1px #8c8c8c;
	-moz-box-shadow    : inset 0 0 0 1px #8c8c8c;
	box-shadow         : inset 0 0 0 1px #8c8c8c;
	background-color   : #818181;
	background-image   : -moz-linear-gradient(bottom, #5b5b5b, #bababa);
	background-image   : -webkit-gradient(linear, 0 100%, 0 0, from(#5b5b5b), to(#bababa));
	background-image   : -webkit-linear-gradient(bottom, #5b5b5b, #bababa);
	background-image   : -o-linear-gradient(bottom, #5b5b5b, #bababa);
	background-image   : linear-gradient(to top, #5b5b5b, #bababa);
	filter             : progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5b5b5b', endColorstr='#ffbababa', GradientType=0);
}

.motopress-modal-obj .motopress-btn-color-dark-grey:hover {
	background-color : #a3a2a2;
	background-image : -moz-linear-gradient(bottom, #878787, #cdcbcb);
	background-image : -webkit-gradient(linear, 0 100%, 0 0, from(#878787), to(#cdcbcb));
	background-image : -webkit-linear-gradient(bottom, #878787, #cdcbcb);
	background-image : -o-linear-gradient(bottom, #878787, #cdcbcb);
	background-image : linear-gradient(to top, #878787, #cdcbcb);
	filter           : progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff878787', endColorstr='#ffcdcbcb', GradientType=0);
}

.motopress-modal-obj .motopress-btn-color-black {
	-webkit-box-shadow : inset 0 0 0 1px #1f1f1f;
	-moz-box-shadow    : inset 0 0 0 1px #1f1f1f;
	box-shadow         : inset 0 0 0 1px #1f1f1f;
	background-color   : #2b2b2b;
	background-image   : -moz-linear-gradient(bottom, #0d0d0d, #595959);
	background-image   : -webkit-gradient(linear, 0 100%, 0 0, from(#0d0d0d), to(#595959));
	background-image   : -webkit-linear-gradient(bottom, #0d0d0d, #595959);
	background-image   : -o-linear-gradient(bottom, #0d0d0d, #595959);
	background-image   : linear-gradient(to top, #0d0d0d, #595959);
	filter             : progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0d0d0d', endColorstr='#ff595959', GradientType=0);
}

.motopress-modal-obj .motopress-btn-color-black:hover {
	background-color : #474747;
	background-image : -moz-linear-gradient(bottom, #272727, #767676);
	background-image : -webkit-gradient(linear, 0 100%, 0 0, from(#272727), to(#767676));
	background-image : -webkit-linear-gradient(bottom, #272727, #767676);
	background-image : -o-linear-gradient(bottom, #272727, #767676);
	background-image : linear-gradient(to top, #272727, #767676);
	filter           : progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff272727', endColorstr='#ff767676', GradientType=0);
}

.motopress-modal-obj .motopress-btn.ui-state-active {
	background-image : none;
	box-shadow       : 2px 2px 3px rgba(0, 0, 0, 0.1) inset, -1px -1px 0px rgba(255, 255, 255, 0.6) inset;
	text-shadow      : none;
}

.motopress-modal-obj .motopress-btn-size-large {
	padding   : 13px 36px;
	font-size : 18px;
}

.motopress-modal-obj .motopress-btn-size-middle {
	padding   : 10px 23px;
	font-size : 16px;
}

.motopress-modal-obj .motopress-btn-size-small {
	padding   : 7px 15px;
	font-size : 13px;
}

.motopress-modal-obj .motopress-btn-size-mini {
	padding   : 6px 11px;
	font-size : 11px;
}

.motopress-modal-obj .motopress-btn-rounded {
	-webkit-border-radius : 3px;
	-moz-border-radius    : 3px;
	border-radius         : 3px;
}

.motopress-modal-obj .motopress-btn-round {
	-webkit-border-radius : 2em;
	-moz-border-radius    : 2em;
	border-radius         : 2em;
}

.motopress-modal-obj .motopress-btn-icon-indent-mini i.motopress-btn-icon-align-left {
	padding-right : 4px;
}

.motopress-modal-obj .motopress-btn-icon-indent-mini i.motopress-btn-icon-align-right {
	padding-left : 4px;
}

.motopress-modal-obj .motopress-btn-icon-indent-small i.motopress-btn-icon-align-left {
	padding-right : 8px;
}

.motopress-modal-obj .motopress-btn-icon-indent-small i.motopress-btn-icon-align-right {
	padding-left : 8px;
}

.motopress-modal-obj .motopress-btn-icon-indent-middle i.motopress-btn-icon-align-left {
	padding-right : 12px;
}

.motopress-modal-obj .motopress-btn-icon-indent-middle i.motopress-btn-icon-align-right {
	padding-left : 12px;
}

.motopress-modal-obj .motopress-btn-icon-indent-large i.motopress-btn-icon-align-left {
	padding-right : 24px;
}

.motopress-modal-obj .motopress-btn-icon-indent-large i.motopress-btn-icon-align-right {
	padding-left : 24px;
}

.motopress-modal-obj .motopress-btn-full-width {
	width              : 100%;
	-webkit-box-sizing : border-box;
	-moz-box-sizing    : border-box;
	box-sizing         : border-box;
	text-align         : center;
}

.motopress-modal-obj .motopress-button {
	cursor : pointer;
}

.motopress-modal.mfp-bg {
	z-index : 1000000;
}

.motopress-modal.mfp-bg.motopress-modal-dark {
	background-color : #0b0b0b;
}

.motopress-modal.mfp-bg.motopress-modal-light {
	background-color : #ffffff;
}

.motopress-modal.mfp-wrap {
	z-index : 1000001;
}

.motopress-modal.mfp-wrap .mfp-content {
	text-align : center;
}

.motopress-modal.mfp-wrap .mfp-content .motopress-modal-content {
	margin-left   : auto;
	margin-right  : auto;
	margin-top    : 60px;
	margin-bottom : 50px;
	border-radius : 10px;
	padding       : 50px;
	width         : auto;
	max-width     : 800px;
	display       : inline-block;
	box-sizing    : border-box;
}

.motopress-modal.mfp-wrap .motopress-modal-close {
	position : absolute;
	right    : 0px;
	top      : 0px;
	width    : 80px;
	height   : 80px;
	opacity  : 0.8;
	padding  : 0 !important;
	border   : none !important;
	outline  : none !important;
}

.motopress-modal.mfp-wrap .motopress-modal-close,
.motopress-modal.mfp-wrap .motopress-modal-close:hover {
	z-index        : 1046;
	background     : rgba(0, 0, 0, 0) !important;
	outline        : none !important;
	border         : none !important;
	text-transform : none !important;
	cursor         : pointer !important;
}

.motopress-modal.mfp-wrap .motopress-modal-close:before,
.motopress-modal.mfp-wrap .motopress-modal-close:after {
	position         : absolute;
	top              : 0;
	left             : 40px;
	content          : ' ';
	height           : 80px;
	width            : 2px;
	background-color : #ffffff;
}

.motopress-modal.mfp-wrap .motopress-modal-close:before {
	-webkit-transform : rotate(45deg);
	-ms-transform     : rotate(45deg);
	transform         : rotate(45deg);
}

.motopress-modal.mfp-wrap .motopress-modal-close:after {
	-webkit-transform : rotate(-45deg);
	-ms-transform     : rotate(-45deg);
	transform         : rotate(-45deg);
}

.motopress-modal.mfp-wrap .motopress-modal-close:hover {
	opacity : 1;
}

.motopress-modal.mfp-wrap.motopress-modal-dark .motopress-modal-content {
	background : #ffffff;
}

.motopress-modal.mfp-wrap.motopress-modal-dark .motopress-modal-close:before,
.motopress-modal.mfp-wrap.motopress-modal-dark .motopress-modal-close:after {
	background : #ffffff;
}

.motopress-modal.mfp-wrap.motopress-modal-light .motopress-modal-content {
	background : #0b0b0b;
}

.motopress-modal.mfp-wrap.motopress-modal-light .motopress-modal-close:before,
.motopress-modal.mfp-wrap.motopress-modal-light .motopress-modal-close:after {
	background : #0b0b0b;
}

@media screen and (max-width : 767px) {
	.motopress-modal.mfp-wrap .motopress-modal-close {
		width  : 24px;
		height : 24px;
		top    : 10px;
		right  : 10px;
	}

	.motopress-modal.mfp-wrap .motopress-modal-close:before,
	.motopress-modal.mfp-wrap .motopress-modal-close:after {
		left   : 12px;
		height : 24px;
	}

	.motopress-modal.mfp-wrap .mfp-content .motopress-modal-content {
		max-width : 90%;
		padding   : 20px;
	}
}

.motopress-modal-animated:not(.motopress-modal-animation-bounceIn):not(.motopress-modal-animation-bounceOut):not(.motopress-modal-animation-flipOutX):not(.motopress-modal-animation-flipOutY) {
	-webkit-animation-duration  : 1s;
	-moz-animation-duration     : 1s;
	-o-transition-duration      : 1s;
	animation-duration          : 1s;
	-webkit-animation-fill-mode : both;
	-moz-animation-fill-mode    : both;
	-o-animation-fill-mode      : both;
	animation-fill-mode         : both;
}

.motopress-modal-animation-bounceIn,
.motopress-modal-animation-bounceOut,
.motopress-modal-animation-flipOutX,
.motopress-modal-animation-flipOutY {
	-webkit-animation-duration  : 0.75s;
	-moz-animation-duration     : 0.75s;
	-o-transition-duration      : 0.75s;
	animation-duration          : 0.75s;
	-webkit-animation-fill-mode : both;
	-moz-animation-fill-mode    : both;
	-o-animation-fill-mode      : both;
	animation-fill-mode         : both;
}

.motopress-modal-animation-bounce {
	-webkit-animation-name : motopress-modal-animation-bounce;
	-moz-animation-name    : motopress-modal-animation-bounce;
	-o-animation-name      : motopress-modal-animation-bounce;
	-ms-animation-name     : motopress-modal-animation-bounce;
	animation-name         : motopress-modal-animation-bounce;
}

.motopress-modal-animation-bounce.mfp-bg {
	-webkit-animation-name : motopress-modal-animation-bounce-bg;
	-moz-animation-name    : motopress-modal-animation-bounce-bg;
	-o-animation-name      : motopress-modal-animation-bounce-bg;
	-ms-animation-name     : motopress-modal-animation-bounce-bg;
	animation-name         : motopress-modal-animation-bounce-bg;
}

.motopress-modal-animation-pulse {
	-webkit-animation-name : motopress-modal-animation-pulse;
	-moz-animation-name    : motopress-modal-animation-pulse;
	-o-animation-name      : motopress-modal-animation-pulse;
	-ms-animation-name     : motopress-modal-animation-pulse;
	animation-name         : motopress-modal-animation-pulse;
}

.motopress-modal-animation-pulse.mfp-bg {
	-webkit-animation-name : motopress-modal-animation-pulse-bg;
	-moz-animation-name    : motopress-modal-animation-pulse-bg;
	-o-animation-name      : motopress-modal-animation-pulse-bg;
	-ms-animation-name     : motopress-modal-animation-pulse-bg;
	animation-name         : motopress-modal-animation-pulse-bg;
}

.motopress-modal-animation-rubberBand {
	-webkit-animation-name : motopress-modal-animation-rubberBand;
	-moz-animation-name    : motopress-modal-animation-rubberBand;
	-o-animation-name      : motopress-modal-animation-rubberBand;
	-ms-animation-name     : motopress-modal-animation-rubberBand;
	animation-name         : motopress-modal-animation-rubberBand;
}

.motopress-modal-animation-rubberBand.mfp-bg {
	-webkit-animation-name : motopress-modal-animation-rubberBand-bg;
	-moz-animation-name    : motopress-modal-animation-rubberBand-bg;
	-o-animation-name      : motopress-modal-animation-rubberBand-bg;
	-ms-animation-name     : motopress-modal-animation-rubberBand-bg;
	animation-name         : motopress-modal-animation-rubberBand-bg;
}

.motopress-modal-animation-shake {
	-webkit-animation-name : motopress-modal-animation-shake;
	-moz-animation-name    : motopress-modal-animation-shake;
	-o-animation-name      : motopress-modal-animation-shake;
	-ms-animation-name     : motopress-modal-animation-shake;
	animation-name         : motopress-modal-animation-shake;
}

.motopress-modal-animation-shake.mfp-bg {
	-webkit-animation-name : motopress-modal-animation-shake-bg;
	-moz-animation-name    : motopress-modal-animation-shake-bg;
	-o-animation-name      : motopress-modal-animation-shake-bg;
	-ms-animation-name     : motopress-modal-animation-shake-bg;
	animation-name         : motopress-modal-animation-shake-bg;
}

.motopress-modal-animation-swing {
	-webkit-animation-name : motopress-modal-animation-swing;
	-moz-animation-name    : motopress-modal-animation-swing;
	-o-animation-name      : motopress-modal-animation-swing;
	-ms-animation-name     : motopress-modal-animation-swing;
	animation-name         : motopress-modal-animation-swing;
}

.motopress-modal-animation-swing.mfp-bg {
	-webkit-animation-name : motopress-modal-animation-swing-bg;
	-moz-animation-name    : motopress-modal-animation-swing-bg;
	-o-animation-name      : motopress-modal-animation-swing-bg;
	-ms-animation-name     : motopress-modal-animation-swing-bg;
	animation-name         : motopress-modal-animation-swing-bg;
}

.motopress-modal-animation-tada {
	-webkit-animation-name : motopress-modal-animation-tada;
	-moz-animation-name    : motopress-modal-animation-tada;
	-o-animation-name      : motopress-modal-animation-tada;
	-ms-animation-name     : motopress-modal-animation-tada;
	animation-name         : motopress-modal-animation-tada;
}

.motopress-modal-animation-tada.mfp-bg {
	-webkit-animation-name : motopress-modal-animation-tada-bg;
	-moz-animation-name    : motopress-modal-animation-tada-bg;
	-o-animation-name      : motopress-modal-animation-tada-bg;
	-ms-animation-name     : motopress-modal-animation-tada-bg;
	animation-name         : motopress-modal-animation-tada-bg;
}

.motopress-modal-animation-wobble {
	-webkit-animation-name : motopress-modal-animation-wobble;
	-moz-animation-name    : motopress-modal-animation-wobble;
	-o-animation-name      : motopress-modal-animation-wobble;
	-ms-animation-name     : motopress-modal-animation-wobble;
	animation-name         : motopress-modal-animation-wobble;
}

.motopress-modal-animation-wobble.mfp-bg {
	-webkit-animation-name : motopress-modal-animation-wobble-bg;
	-moz-animation-name    : motopress-modal-animation-wobble-bg;
	-o-animation-name      : motopress-modal-animation-wobble-bg;
	-ms-animation-name     : motopress-modal-animation-wobble-bg;
	animation-name         : motopress-modal-animation-wobble-bg;
}

.motopress-modal-animation-jello {
	-webkit-animation-name : motopress-modal-animation-jello;
	-moz-animation-name    : motopress-modal-animation-jello;
	-o-animation-name      : motopress-modal-animation-jello;
	-ms-animation-name     : motopress-modal-animation-jello;
	animation-name         : motopress-modal-animation-jello;
}

.motopress-modal-animation-jello.mfp-bg {
	-webkit-animation-name : motopress-modal-animation-jello-bg;
	-moz-animation-name    : motopress-modal-animation-jello-bg;
	-o-animation-name      : motopress-modal-animation-jello-bg;
	-ms-animation-name     : motopress-modal-animation-jello-bg;
	animation-name         : motopress-modal-animation-jello-bg;
}

.motopress-modal-animation-bounceIn {
	-webkit-animation-name : motopress-modal-animation-bounceIn;
	-moz-animation-name    : motopress-modal-animation-bounceIn;
	-o-animation-name      : motopress-modal-animation-bounceIn;
	-ms-animation-name     : motopress-modal-animation-bounceIn;
	animation-name         : motopress-modal-animation-bounceIn;
}

.motopress-modal-animation-bounceIn.mfp-bg {
	-webkit-animation-name : motopress-modal-animation-bounceIn-bg;
	-moz-animation-name    : motopress-modal-animation-bounceIn-bg;
	-o-animation-name      : motopress-modal-animation-bounceIn-bg;
	-ms-animation-name     : motopress-modal-animation-bounceIn-bg;
	animation-name         : motopress-modal-animation-bounceIn-bg;
}

.motopress-modal-animation-bounceInDown {
	-webkit-animation-name : motopress-modal-animation-bounceInDown;
	-moz-animation-name    : motopress-modal-animation-bounceInDown;
	-o-animation-name      : motopress-modal-animation-bounceInDown;
	-ms-animation-name     : motopress-modal-animation-bounceInDown;
	animation-name         : motopress-modal-animation-bounceInDown;
}

.motopress-modal-animation-bounceInDown.mfp-bg {
	-webkit-animation-name : motopress-modal-animation-bounceInDown-bg;
	-moz-animation-name    : motopress-modal-animation-bounceInDown-bg;
	-o-animation-name      : motopress-modal-animation-bounceInDown-bg;
	-ms-animation-name     : motopress-modal-animation-bounceInDown-bg;
	animation-name         : motopress-modal-animation-bounceInDown-bg;
}

.motopress-modal-animation-bounceInLeft {
	-webkit-animation-name : motopress-modal-animation-bounceInLeft;
	-moz-animation-name    : motopress-modal-animation-bounceInLeft;
	-o-animation-name      : motopress-modal-animation-bounceInLeft;
	-ms-animation-name     : motopress-modal-animation-bounceInLeft;
	animation-name         : motopress-modal-animation-bounceInLeft;
}

.motopress-modal-animation-bounceInLeft.mfp-bg {
	-webkit-animation-name : motopress-modal-animation-bounceInLeft-bg;
	-moz-animation-name    : motopress-modal-animation-bounceInLeft-bg;
	-o-animation-name      : motopress-modal-animation-bounceInLeft-bg;
	-ms-animation-name     : motopress-modal-animation-bounceInLeft-bg;
	animation-name         : motopress-modal-animation-bounceInLeft-bg;
}

.motopress-modal-animation-bounceInRight {
	-webkit-animation-name : motopress-modal-animation-bounceInRight;
	-moz-animation-name    : motopress-modal-animation-bounceInRight;
	-o-animation-name      : motopress-modal-animation-bounceInRight;
	-ms-animation-name     : motopress-modal-animation-bounceInRight;
	animation-name         : motopress-modal-animation-bounceInRight;
}

.motopress-modal-animation-bounceInRight.mfp-bg {
	-webkit-animation-name : motopress-modal-animation-bounceInRight-bg;
	-moz-animation-name    : motopress-modal-animation-bounceInRight-bg;
	-o-animation-name      : motopress-modal-animation-bounceInRight-bg;
	-ms-animation-name     : motopress-modal-animation-bounceInRight-bg;
	animation-name         : motopress-modal-animation-bounceInRight-bg;
}

.motopress-modal-animation-bounceInUp {
	-webkit-animation-name : motopress-modal-animation-bounceInUp;
	-moz-animation-name    : motopress-modal-animation-bounceInUp;
	-o-animation-name      : motopress-modal-animation-bounceInUp;
	-ms-animation-name     : motopress-modal-animation-bounceInUp;
	animation-name         : motopress-modal-animation-bounceInUp;
}

.motopress-modal-animation-bounceInUp.mfp-bg {
	-webkit-animation-name : motopress-modal-animation-bounceInUp-bg;
	-moz-animation-name    : motopress-modal-animation-bounceInUp-bg;
	-o-animation-name      : motopress-modal-animation-bounceInUp-bg;
	-ms-animation-name     : motopress-modal-animation-bounceInUp-bg;
	animation-name         : motopress-modal-animation-bounceInUp-bg;
}

.motopress-modal-animation-fadeIn {
	-webkit-animation-name : motopress-modal-animation-fadeIn;
	-moz-animation-name    : motopress-modal-animation-fadeIn;
	-o-animation-name      : motopress-modal-animation-fadeIn;
	-ms-animation-name     : motopress-modal-animation-fadeIn;
	animation-name         : motopress-modal-animation-fadeIn;
}

.motopress-modal-animation-fadeIn.mfp-bg {
	-webkit-animation-name : motopress-modal-animation-fadeIn-bg;
	-moz-animation-name    : motopress-modal-animation-fadeIn-bg;
	-o-animation-name      : motopress-modal-animation-fadeIn-bg;
	-ms-animation-name     : motopress-modal-animation-fadeIn-bg;
	animation-name         : motopress-modal-animation-fadeIn-bg;
}

.motopress-modal-animation-fadeInDown {
	-webkit-animation-name : motopress-modal-animation-fadeInDown;
	-moz-animation-name    : motopress-modal-animation-fadeInDown;
	-o-animation-name      : motopress-modal-animation-fadeInDown;
	-ms-animation-name     : motopress-modal-animation-fadeInDown;
	animation-name         : motopress-modal-animation-fadeInDown;
}

.motopress-modal-animation-fadeInDown.mfp-bg {
	-webkit-animation-name : motopress-modal-animation-fadeInDown-bg;
	-moz-animation-name    : motopress-modal-animation-fadeInDown-bg;
	-o-animation-name      : motopress-modal-animation-fadeInDown-bg;
	-ms-animation-name     : motopress-modal-animation-fadeInDown-bg;
	animation-name         : motopress-modal-animation-fadeInDown-bg;
}

.motopress-modal-animation-fadeInDownBig {
	-webkit-animation-name : motopress-modal-animation-fadeInDownBig;
	-moz-animation-name    : motopress-modal-animation-fadeInDownBig;
	-o-animation-name      : motopress-modal-animation-fadeInDownBig;
	-ms-animation-name     : motopress-modal-animation-fadeInDownBig;
	animation-name         : motopress-modal-animation-fadeInDownBig;
}

.motopress-modal-animation-fadeInDownBig.mfp-bg {
	-webkit-animation-name : motopress-modal-animation-fadeInDownBig-bg;
	-moz-animation-name    : motopress-modal-animation-fadeInDownBig-bg;
	-o-animation-name      : motopress-modal-animation-fadeInDownBig-bg;
	-ms-animation-name     : motopress-modal-animation-fadeInDownBig-bg;
	animation-name         : motopress-modal-animation-fadeInDownBig-bg;
}

.motopress-modal-animation-fadeInLeft {
	-webkit-animation-name : motopress-modal-animation-fadeInLeft;
	-moz-animation-name    : motopress-modal-animation-fadeInLeft;
	-o-animation-name      : motopress-modal-animation-fadeInLeft;
	-ms-animation-name     : motopress-modal-animation-fadeInLeft;
	animation-name         : motopress-modal-animation-fadeInLeft;
}

.motopress-modal-animation-fadeInLeft.mfp-bg {
	-webkit-animation-name : motopress-modal-animation-fadeInLeft-bg;
	-moz-animation-name    : motopress-modal-animation-fadeInLeft-bg;
	-o-animation-name      : motopress-modal-animation-fadeInLeft-bg;
	-ms-animation-name     : motopress-modal-animation-fadeInLeft-bg;
	animation-name         : motopress-modal-animation-fadeInLeft-bg;
}

.motopress-modal-animation-fadeInLeftBig {
	-webkit-animation-name : motopress-modal-animation-fadeInLeftBig;
	-moz-animation-name    : motopress-modal-animation-fadeInLeftBig;
	-o-animation-name      : motopress-modal-animation-fadeInLeftBig;
	-ms-animation-name     : motopress-modal-animation-fadeInLeftBig;
	animation-name         : motopress-modal-animation-fadeInLeftBig;
}

.motopress-modal-animation-fadeInLeftBig.mfp-bg {
	-webkit-animation-name : motopress-modal-animation-fadeInLeftBig-bg;
	-moz-animation-name    : motopress-modal-animation-fadeInLeftBig-bg;
	-o-animation-name      : motopress-modal-animation-fadeInLeftBig-bg;
	-ms-animation-name     : motopress-modal-animation-fadeInLeftBig-bg;
	animation-name         : motopress-modal-animation-fadeInLeftBig-bg;
}

.motopress-modal-animation-fadeInRight {
	-webkit-animation-name : motopress-modal-animation-fadeInRight;
	-moz-animation-name    : motopress-modal-animation-fadeInRight;
	-o-animation-name      : motopress-modal-animation-fadeInRight;
	-ms-animation-name     : motopress-modal-animation-fadeInRight;
	animation-name         : motopress-modal-animation-fadeInRight;
}

.motopress-modal-animation-fadeInRight.mfp-bg {
	-webkit-animation-name : motopress-modal-animation-fadeInRight-bg;
	-moz-animation-name    : motopress-modal-animation-fadeInRight-bg;
	-o-animation-name      : motopress-modal-animation-fadeInRight-bg;
	-ms-animation-name     : motopress-modal-animation-fadeInRight-bg;
	animation-name         : motopress-modal-animation-fadeInRight-bg;
}

.motopress-modal-animation-fadeInRightBig {
	-webkit-animation-name : motopress-modal-animation-fadeInRightBig;
	-moz-animation-name    : motopress-modal-animation-fadeInRightBig;
	-o-animation-name      : motopress-modal-animation-fadeInRightBig;
	-ms-animation-name     : motopress-modal-animation-fadeInRightBig;
	animation-name         : motopress-modal-animation-fadeInRightBig;
}

.motopress-modal-animation-fadeInRightBig.mfp-bg {
	-webkit-animation-name : motopress-modal-animation-fadeInRightBig-bg;
	-moz-animation-name    : motopress-modal-animation-fadeInRightBig-bg;
	-o-animation-name      : motopress-modal-animation-fadeInRightBig-bg;
	-ms-animation-name     : motopress-modal-animation-fadeInRightBig-bg;
	animation-name         : motopress-modal-animation-fadeInRightBig-bg;
}

.motopress-modal-animation-fadeInUp {
	-webkit-animation-name : motopress-modal-animation-fadeInUp;
	-moz-animation-name    : motopress-modal-animation-fadeInUp;
	-o-animation-name      : motopress-modal-animation-fadeInUp;
	-ms-animation-name     : motopress-modal-animation-fadeInUp;
	animation-name         : motopress-modal-animation-fadeInUp;
}

.motopress-modal-animation-fadeInUp.mfp-bg {
	-webkit-animation-name : motopress-modal-animation-fadeInUp-bg;
	-moz-animation-name    : motopress-modal-animation-fadeInUp-bg;
	-o-animation-name      : motopress-modal-animation-fadeInUp-bg;
	-ms-animation-name     : motopress-modal-animation-fadeInUp-bg;
	animation-name         : motopress-modal-animation-fadeInUp-bg;
}

.motopress-modal-animation-fadeInUpBig {
	-webkit-animation-name : motopress-modal-animation-fadeInUpBig;
	-moz-animation-name    : motopress-modal-animation-fadeInUpBig;
	-o-animation-name      : motopress-modal-animation-fadeInUpBig;
	-ms-animation-name     : motopress-modal-animation-fadeInUpBig;
	animation-name         : motopress-modal-animation-fadeInUpBig;
}

.motopress-modal-animation-fadeInUpBig.mfp-bg {
	-webkit-animation-name : motopress-modal-animation-fadeInUpBig-bg;
	-moz-animation-name    : motopress-modal-animation-fadeInUpBig-bg;
	-o-animation-name      : motopress-modal-animation-fadeInUpBig-bg;
	-ms-animation-name     : motopress-modal-animation-fadeInUpBig-bg;
	animation-name         : motopress-modal-animation-fadeInUpBig-bg;
}

.motopress-modal-animation-flip {
	-webkit-animation-name : motopress-modal-animation-flip;
	-moz-animation-name    : motopress-modal-animation-flip;
	-o-animation-name      : motopress-modal-animation-flip;
	-ms-animation-name     : motopress-modal-animation-flip;
	animation-name         : motopress-modal-animation-flip;
}

.motopress-modal-animation-flip.mfp-bg {
	-webkit-animation-name : motopress-modal-animation-flip-bg;
	-moz-animation-name    : motopress-modal-animation-flip-bg;
	-o-animation-name      : motopress-modal-animation-flip-bg;
	-ms-animation-name     : motopress-modal-animation-flip-bg;
	animation-name         : motopress-modal-animation-flip-bg;
}

.motopress-modal-animation-flipInX {
	-webkit-animation-name : motopress-modal-animation-flipInX;
	-moz-animation-name    : motopress-modal-animation-flipInX;
	-o-animation-name      : motopress-modal-animation-flipInX;
	-ms-animation-name     : motopress-modal-animation-flipInX;
	animation-name         : motopress-modal-animation-flipInX;
}

.motopress-modal-animation-flipInX.mfp-bg {
	-webkit-animation-name : motopress-modal-animation-flipInX-bg;
	-moz-animation-name    : motopress-modal-animation-flipInX-bg;
	-o-animation-name      : motopress-modal-animation-flipInX-bg;
	-ms-animation-name     : motopress-modal-animation-flipInX-bg;
	animation-name         : motopress-modal-animation-flipInX-bg;
}

.motopress-modal-animation-flipInY {
	-webkit-animation-name : motopress-modal-animation-flipInY;
	-moz-animation-name    : motopress-modal-animation-flipInY;
	-o-animation-name      : motopress-modal-animation-flipInY;
	-ms-animation-name     : motopress-modal-animation-flipInY;
	animation-name         : motopress-modal-animation-flipInY;
}

.motopress-modal-animation-flipInY.mfp-bg {
	-webkit-animation-name : motopress-modal-animation-flipInY-bg;
	-moz-animation-name    : motopress-modal-animation-flipInY-bg;
	-o-animation-name      : motopress-modal-animation-flipInY-bg;
	-ms-animation-name     : motopress-modal-animation-flipInY-bg;
	animation-name         : motopress-modal-animation-flipInY-bg;
}

.motopress-modal-animation-lightSpeedIn {
	-webkit-animation-name : motopress-modal-animation-lightSpeedIn;
	-moz-animation-name    : motopress-modal-animation-lightSpeedIn;
	-o-animation-name      : motopress-modal-animation-lightSpeedIn;
	-ms-animation-name     : motopress-modal-animation-lightSpeedIn;
	animation-name         : motopress-modal-animation-lightSpeedIn;
}

.motopress-modal-animation-lightSpeedIn.mfp-bg {
	-webkit-animation-name : motopress-modal-animation-lightSpeedIn-bg;
	-moz-animation-name    : motopress-modal-animation-lightSpeedIn-bg;
	-o-animation-name      : motopress-modal-animation-lightSpeedIn-bg;
	-ms-animation-name     : motopress-modal-animation-lightSpeedIn-bg;
	animation-name         : motopress-modal-animation-lightSpeedIn-bg;
}

.motopress-modal-animation-rotateIn {
	-webkit-animation-name : motopress-modal-animation-rotateIn;
	-moz-animation-name    : motopress-modal-animation-rotateIn;
	-o-animation-name      : motopress-modal-animation-rotateIn;
	-ms-animation-name     : motopress-modal-animation-rotateIn;
	animation-name         : motopress-modal-animation-rotateIn;
}

.motopress-modal-animation-rotateIn.mfp-bg {
	-webkit-animation-name : motopress-modal-animation-rotateIn-bg;
	-moz-animation-name    : motopress-modal-animation-rotateIn-bg;
	-o-animation-name      : motopress-modal-animation-rotateIn-bg;
	-ms-animation-name     : motopress-modal-animation-rotateIn-bg;
	animation-name         : motopress-modal-animation-rotateIn-bg;
}

.motopress-modal-animation-rotateInDownLeft {
	-webkit-animation-name : motopress-modal-animation-rotateInDownLeft;
	-moz-animation-name    : motopress-modal-animation-rotateInDownLeft;
	-o-animation-name      : motopress-modal-animation-rotateInDownLeft;
	-ms-animation-name     : motopress-modal-animation-rotateInDownLeft;
	animation-name         : motopress-modal-animation-rotateInDownLeft;
}

.motopress-modal-animation-rotateInDownLeft.mfp-bg {
	-webkit-animation-name : motopress-modal-animation-rotateInDownLeft-bg;
	-moz-animation-name    : motopress-modal-animation-rotateInDownLeft-bg;
	-o-animation-name      : motopress-modal-animation-rotateInDownLeft-bg;
	-ms-animation-name     : motopress-modal-animation-rotateInDownLeft-bg;
	animation-name         : motopress-modal-animation-rotateInDownLeft-bg;
}

.motopress-modal-animation-rotateInDownRight {
	-webkit-animation-name : motopress-modal-animation-rotateInDownRight;
	-moz-animation-name    : motopress-modal-animation-rotateInDownRight;
	-o-animation-name      : motopress-modal-animation-rotateInDownRight;
	-ms-animation-name     : motopress-modal-animation-rotateInDownRight;
	animation-name         : motopress-modal-animation-rotateInDownRight;
}

.motopress-modal-animation-rotateInDownRight.mfp-bg {
	-webkit-animation-name : motopress-modal-animation-rotateInDownRight-bg;
	-moz-animation-name    : motopress-modal-animation-rotateInDownRight-bg;
	-o-animation-name      : motopress-modal-animation-rotateInDownRight-bg;
	-ms-animation-name     : motopress-modal-animation-rotateInDownRight-bg;
	animation-name         : motopress-modal-animation-rotateInDownRight-bg;
}

.motopress-modal-animation-rotateInUpLeft {
	-webkit-animation-name : motopress-modal-animation-rotateInUpLeft;
	-moz-animation-name    : motopress-modal-animation-rotateInUpLeft;
	-o-animation-name      : motopress-modal-animation-rotateInUpLeft;
	-ms-animation-name     : motopress-modal-animation-rotateInUpLeft;
	animation-name         : motopress-modal-animation-rotateInUpLeft;
}

.motopress-modal-animation-rotateInUpLeft.mfp-bg {
	-webkit-animation-name : motopress-modal-animation-rotateInUpLeft-bg;
	-moz-animation-name    : motopress-modal-animation-rotateInUpLeft-bg;
	-o-animation-name      : motopress-modal-animation-rotateInUpLeft-bg;
	-ms-animation-name     : motopress-modal-animation-rotateInUpLeft-bg;
	animation-name         : motopress-modal-animation-rotateInUpLeft-bg;
}

.motopress-modal-animation-rotateInUpRight {
	-webkit-animation-name : motopress-modal-animation-rotateInUpRight;
	-moz-animation-name    : motopress-modal-animation-rotateInUpRight;
	-o-animation-name      : motopress-modal-animation-rotateInUpRight;
	-ms-animation-name     : motopress-modal-animation-rotateInUpRight;
	animation-name         : motopress-modal-animation-rotateInUpRight;
}

.motopress-modal-animation-rotateInUpRight.mfp-bg {
	-webkit-animation-name : motopress-modal-animation-rotateInUpRight-bg;
	-moz-animation-name    : motopress-modal-animation-rotateInUpRight-bg;
	-o-animation-name      : motopress-modal-animation-rotateInUpRight-bg;
	-ms-animation-name     : motopress-modal-animation-rotateInUpRight-bg;
	animation-name         : motopress-modal-animation-rotateInUpRight-bg;
}

.motopress-modal-animation-rollIn {
	-webkit-animation-name : motopress-modal-animation-rollIn;
	-moz-animation-name    : motopress-modal-animation-rollIn;
	-o-animation-name      : motopress-modal-animation-rollIn;
	-ms-animation-name     : motopress-modal-animation-rollIn;
	animation-name         : motopress-modal-animation-rollIn;
}

.motopress-modal-animation-rollIn.mfp-bg {
	-webkit-animation-name : motopress-modal-animation-rollIn-bg;
	-moz-animation-name    : motopress-modal-animation-rollIn-bg;
	-o-animation-name      : motopress-modal-animation-rollIn-bg;
	-ms-animation-name     : motopress-modal-animation-rollIn-bg;
	animation-name         : motopress-modal-animation-rollIn-bg;
}

.motopress-modal-animation-zoomIn {
	-webkit-animation-name : motopress-modal-animation-zoomIn;
	-moz-animation-name    : motopress-modal-animation-zoomIn;
	-o-animation-name      : motopress-modal-animation-zoomIn;
	-ms-animation-name     : motopress-modal-animation-zoomIn;
	animation-name         : motopress-modal-animation-zoomIn;
}

.motopress-modal-animation-zoomIn.mfp-bg {
	-webkit-animation-name : motopress-modal-animation-zoomIn-bg;
	-moz-animation-name    : motopress-modal-animation-zoomIn-bg;
	-o-animation-name      : motopress-modal-animation-zoomIn-bg;
	-ms-animation-name     : motopress-modal-animation-zoomIn-bg;
	animation-name         : motopress-modal-animation-zoomIn-bg;
}

.motopress-modal-animation-zoomInDown {
	-webkit-animation-name : motopress-modal-animation-zoomInDown;
	-moz-animation-name    : motopress-modal-animation-zoomInDown;
	-o-animation-name      : motopress-modal-animation-zoomInDown;
	-ms-animation-name     : motopress-modal-animation-zoomInDown;
	animation-name         : motopress-modal-animation-zoomInDown;
}

.motopress-modal-animation-zoomInDown.mfp-bg {
	-webkit-animation-name : motopress-modal-animation-zoomInDown-bg;
	-moz-animation-name    : motopress-modal-animation-zoomInDown-bg;
	-o-animation-name      : motopress-modal-animation-zoomInDown-bg;
	-ms-animation-name     : motopress-modal-animation-zoomInDown-bg;
	animation-name         : motopress-modal-animation-zoomInDown-bg;
}

.motopress-modal-animation-zoomInLeft {
	-webkit-animation-name : motopress-modal-animation-zoomInLeft;
	-moz-animation-name    : motopress-modal-animation-zoomInLeft;
	-o-animation-name      : motopress-modal-animation-zoomInLeft;
	-ms-animation-name     : motopress-modal-animation-zoomInLeft;
	animation-name         : motopress-modal-animation-zoomInLeft;
}

.motopress-modal-animation-zoomInLeft.mfp-bg {
	-webkit-animation-name : motopress-modal-animation-zoomInLeft-bg;
	-moz-animation-name    : motopress-modal-animation-zoomInLeft-bg;
	-o-animation-name      : motopress-modal-animation-zoomInLeft-bg;
	-ms-animation-name     : motopress-modal-animation-zoomInLeft-bg;
	animation-name         : motopress-modal-animation-zoomInLeft-bg;
}

.motopress-modal-animation-zoomInRight {
	-webkit-animation-name : motopress-modal-animation-zoomInRight;
	-moz-animation-name    : motopress-modal-animation-zoomInRight;
	-o-animation-name      : motopress-modal-animation-zoomInRight;
	-ms-animation-name     : motopress-modal-animation-zoomInRight;
	animation-name         : motopress-modal-animation-zoomInRight;
}

.motopress-modal-animation-zoomInRight.mfp-bg {
	-webkit-animation-name : motopress-modal-animation-zoomInRight-bg;
	-moz-animation-name    : motopress-modal-animation-zoomInRight-bg;
	-o-animation-name      : motopress-modal-animation-zoomInRight-bg;
	-ms-animation-name     : motopress-modal-animation-zoomInRight-bg;
	animation-name         : motopress-modal-animation-zoomInRight-bg;
}

.motopress-modal-animation-zoomInUp {
	-webkit-animation-name : motopress-modal-animation-zoomInUp;
	-moz-animation-name    : motopress-modal-animation-zoomInUp;
	-o-animation-name      : motopress-modal-animation-zoomInUp;
	-ms-animation-name     : motopress-modal-animation-zoomInUp;
	animation-name         : motopress-modal-animation-zoomInUp;
}

.motopress-modal-animation-zoomInUp.mfp-bg {
	-webkit-animation-name : motopress-modal-animation-zoomInUp-bg;
	-moz-animation-name    : motopress-modal-animation-zoomInUp-bg;
	-o-animation-name      : motopress-modal-animation-zoomInUp-bg;
	-ms-animation-name     : motopress-modal-animation-zoomInUp-bg;
	animation-name         : motopress-modal-animation-zoomInUp-bg;
}

.motopress-modal-animation-slideInDown {
	-webkit-animation-name : motopress-modal-animation-slideInDown;
	-moz-animation-name    : motopress-modal-animation-slideInDown;
	-o-animation-name      : motopress-modal-animation-slideInDown;
	-ms-animation-name     : motopress-modal-animation-slideInDown;
	animation-name         : motopress-modal-animation-slideInDown;
}

.motopress-modal-animation-slideInDown.mfp-bg {
	-webkit-animation-name : motopress-modal-animation-slideInDown-bg;
	-moz-animation-name    : motopress-modal-animation-slideInDown-bg;
	-o-animation-name      : motopress-modal-animation-slideInDown-bg;
	-ms-animation-name     : motopress-modal-animation-slideInDown-bg;
	animation-name         : motopress-modal-animation-slideInDown-bg;
}

.motopress-modal-animation-slideInLeft {
	-webkit-animation-name : motopress-modal-animation-slideInLeft;
	-moz-animation-name    : motopress-modal-animation-slideInLeft;
	-o-animation-name      : motopress-modal-animation-slideInLeft;
	-ms-animation-name     : motopress-modal-animation-slideInLeft;
	animation-name         : motopress-modal-animation-slideInLeft;
}

.motopress-modal-animation-slideInLeft.mfp-bg {
	-webkit-animation-name : motopress-modal-animation-slideInLeft-bg;
	-moz-animation-name    : motopress-modal-animation-slideInLeft-bg;
	-o-animation-name      : motopress-modal-animation-slideInLeft-bg;
	-ms-animation-name     : motopress-modal-animation-slideInLeft-bg;
	animation-name         : motopress-modal-animation-slideInLeft-bg;
}

.motopress-modal-animation-slideInRight {
	-webkit-animation-name : motopress-modal-animation-slideInRight;
	-moz-animation-name    : motopress-modal-animation-slideInRight;
	-o-animation-name      : motopress-modal-animation-slideInRight;
	-ms-animation-name     : motopress-modal-animation-slideInRight;
	animation-name         : motopress-modal-animation-slideInRight;
}

.motopress-modal-animation-slideInRight.mfp-bg {
	-webkit-animation-name : motopress-modal-animation-slideInRight-bg;
	-moz-animation-name    : motopress-modal-animation-slideInRight-bg;
	-o-animation-name      : motopress-modal-animation-slideInRight-bg;
	-ms-animation-name     : motopress-modal-animation-slideInRight-bg;
	animation-name         : motopress-modal-animation-slideInRight-bg;
}

.motopress-modal-animation-slideInUp {
	-webkit-animation-name : motopress-modal-animation-slideInUp;
	-moz-animation-name    : motopress-modal-animation-slideInUp;
	-o-animation-name      : motopress-modal-animation-slideInUp;
	-ms-animation-name     : motopress-modal-animation-slideInUp;
	animation-name         : motopress-modal-animation-slideInUp;
}

.motopress-modal-animation-slideInUp.mfp-bg {
	-webkit-animation-name : motopress-modal-animation-slideInUp-bg;
	-moz-animation-name    : motopress-modal-animation-slideInUp-bg;
	-o-animation-name      : motopress-modal-animation-slideInUp-bg;
	-ms-animation-name     : motopress-modal-animation-slideInUp-bg;
	animation-name         : motopress-modal-animation-slideInUp-bg;
}

.motopress-modal-animation-bounceOut {
	-webkit-animation-name : motopress-modal-animation-bounceOut;
	-moz-animation-name    : motopress-modal-animation-bounceOut;
	-o-animation-name      : motopress-modal-animation-bounceOut;
	-ms-animation-name     : motopress-modal-animation-bounceOut;
	animation-name         : motopress-modal-animation-bounceOut;
}

.motopress-modal-animation-bounceOut.mfp-bg {
	-webkit-animation-name : motopress-modal-animation-bounceOut-bg;
	-moz-animation-name    : motopress-modal-animation-bounceOut-bg;
	-o-animation-name      : motopress-modal-animation-bounceOut-bg;
	-ms-animation-name     : motopress-modal-animation-bounceOut-bg;
	animation-name         : motopress-modal-animation-bounceOut-bg;
}

.motopress-modal-animation-bounceOutDown {
	-webkit-animation-name : motopress-modal-animation-bounceOutDown;
	-moz-animation-name    : motopress-modal-animation-bounceOutDown;
	-o-animation-name      : motopress-modal-animation-bounceOutDown;
	-ms-animation-name     : motopress-modal-animation-bounceOutDown;
	animation-name         : motopress-modal-animation-bounceOutDown;
}

.motopress-modal-animation-bounceOutDown.mfp-bg {
	-webkit-animation-name : motopress-modal-animation-bounceOutDown-bg;
	-moz-animation-name    : motopress-modal-animation-bounceOutDown-bg;
	-o-animation-name      : motopress-modal-animation-bounceOutDown-bg;
	-ms-animation-name     : motopress-modal-animation-bounceOutDown-bg;
	animation-name         : motopress-modal-animation-bounceOutDown-bg;
}

.motopress-modal-animation-bounceOutLeft {
	-webkit-animation-name : motopress-modal-animation-bounceOutLeft;
	-moz-animation-name    : motopress-modal-animation-bounceOutLeft;
	-o-animation-name      : motopress-modal-animation-bounceOutLeft;
	-ms-animation-name     : motopress-modal-animation-bounceOutLeft;
	animation-name         : motopress-modal-animation-bounceOutLeft;
}

.motopress-modal-animation-bounceOutLeft.mfp-bg {
	-webkit-animation-name : motopress-modal-animation-bounceOutLeft-bg;
	-moz-animation-name    : motopress-modal-animation-bounceOutLeft-bg;
	-o-animation-name      : motopress-modal-animation-bounceOutLeft-bg;
	-ms-animation-name     : motopress-modal-animation-bounceOutLeft-bg;
	animation-name         : motopress-modal-animation-bounceOutLeft-bg;
}

.motopress-modal-animation-bounceOutRight {
	-webkit-animation-name : motopress-modal-animation-bounceOutRight;
	-moz-animation-name    : motopress-modal-animation-bounceOutRight;
	-o-animation-name      : motopress-modal-animation-bounceOutRight;
	-ms-animation-name     : motopress-modal-animation-bounceOutRight;
	animation-name         : motopress-modal-animation-bounceOutRight;
}

.motopress-modal-animation-bounceOutRight.mfp-bg {
	-webkit-animation-name : motopress-modal-animation-bounceOutRight-bg;
	-moz-animation-name    : motopress-modal-animation-bounceOutRight-bg;
	-o-animation-name      : motopress-modal-animation-bounceOutRight-bg;
	-ms-animation-name     : motopress-modal-animation-bounceOutRight-bg;
	animation-name         : motopress-modal-animation-bounceOutRight-bg;
}

.motopress-modal-animation-bounceOutUp {
	-webkit-animation-name : motopress-modal-animation-bounceOutUp;
	-moz-animation-name    : motopress-modal-animation-bounceOutUp;
	-o-animation-name      : motopress-modal-animation-bounceOutUp;
	-ms-animation-name     : motopress-modal-animation-bounceOutUp;
	animation-name         : motopress-modal-animation-bounceOutUp;
}

.motopress-modal-animation-bounceOutUp.mfp-bg {
	-webkit-animation-name : motopress-modal-animation-bounceOutUp-bg;
	-moz-animation-name    : motopress-modal-animation-bounceOutUp-bg;
	-o-animation-name      : motopress-modal-animation-bounceOutUp-bg;
	-ms-animation-name     : motopress-modal-animation-bounceOutUp-bg;
	animation-name         : motopress-modal-animation-bounceOutUp-bg;
}

.motopress-modal-animation-fadeOut {
	-webkit-animation-name : motopress-modal-animation-fadeOut;
	-moz-animation-name    : motopress-modal-animation-fadeOut;
	-o-animation-name      : motopress-modal-animation-fadeOut;
	-ms-animation-name     : motopress-modal-animation-fadeOut;
	animation-name         : motopress-modal-animation-fadeOut;
}

.motopress-modal-animation-fadeOut.mfp-bg {
	-webkit-animation-name : motopress-modal-animation-fadeOut-bg;
	-moz-animation-name    : motopress-modal-animation-fadeOut-bg;
	-o-animation-name      : motopress-modal-animation-fadeOut-bg;
	-ms-animation-name     : motopress-modal-animation-fadeOut-bg;
	animation-name         : motopress-modal-animation-fadeOut-bg;
}

.motopress-modal-animation-fadeOutDown {
	-webkit-animation-name : motopress-modal-animation-fadeOutDown;
	-moz-animation-name    : motopress-modal-animation-fadeOutDown;
	-o-animation-name      : motopress-modal-animation-fadeOutDown;
	-ms-animation-name     : motopress-modal-animation-fadeOutDown;
	animation-name         : motopress-modal-animation-fadeOutDown;
}

.motopress-modal-animation-fadeOutDown.mfp-bg {
	-webkit-animation-name : motopress-modal-animation-fadeOutDown-bg;
	-moz-animation-name    : motopress-modal-animation-fadeOutDown-bg;
	-o-animation-name      : motopress-modal-animation-fadeOutDown-bg;
	-ms-animation-name     : motopress-modal-animation-fadeOutDown-bg;
	animation-name         : motopress-modal-animation-fadeOutDown-bg;
}

.motopress-modal-animation-fadeOutDownBig {
	-webkit-animation-name : motopress-modal-animation-fadeOutDownBig;
	-moz-animation-name    : motopress-modal-animation-fadeOutDownBig;
	-o-animation-name      : motopress-modal-animation-fadeOutDownBig;
	-ms-animation-name     : motopress-modal-animation-fadeOutDownBig;
	animation-name         : motopress-modal-animation-fadeOutDownBig;
}

.motopress-modal-animation-fadeOutDownBig.mfp-bg {
	-webkit-animation-name : motopress-modal-animation-fadeOutDownBig-bg;
	-moz-animation-name    : motopress-modal-animation-fadeOutDownBig-bg;
	-o-animation-name      : motopress-modal-animation-fadeOutDownBig-bg;
	-ms-animation-name     : motopress-modal-animation-fadeOutDownBig-bg;
	animation-name         : motopress-modal-animation-fadeOutDownBig-bg;
}

.motopress-modal-animation-fadeOutLeft {
	-webkit-animation-name : motopress-modal-animation-fadeOutLeft;
	-moz-animation-name    : motopress-modal-animation-fadeOutLeft;
	-o-animation-name      : motopress-modal-animation-fadeOutLeft;
	-ms-animation-name     : motopress-modal-animation-fadeOutLeft;
	animation-name         : motopress-modal-animation-fadeOutLeft;
}

.motopress-modal-animation-fadeOutLeft.mfp-bg {
	-webkit-animation-name : motopress-modal-animation-fadeOutLeft-bg;
	-moz-animation-name    : motopress-modal-animation-fadeOutLeft-bg;
	-o-animation-name      : motopress-modal-animation-fadeOutLeft-bg;
	-ms-animation-name     : motopress-modal-animation-fadeOutLeft-bg;
	animation-name         : motopress-modal-animation-fadeOutLeft-bg;
}

.motopress-modal-animation-fadeOutLeftBig {
	-webkit-animation-name : motopress-modal-animation-fadeOutLeftBig;
	-moz-animation-name    : motopress-modal-animation-fadeOutLeftBig;
	-o-animation-name      : motopress-modal-animation-fadeOutLeftBig;
	-ms-animation-name     : motopress-modal-animation-fadeOutLeftBig;
	animation-name         : motopress-modal-animation-fadeOutLeftBig;
}

.motopress-modal-animation-fadeOutLeftBig.mfp-bg {
	-webkit-animation-name : motopress-modal-animation-fadeOutLeftBig-bg;
	-moz-animation-name    : motopress-modal-animation-fadeOutLeftBig-bg;
	-o-animation-name      : motopress-modal-animation-fadeOutLeftBig-bg;
	-ms-animation-name     : motopress-modal-animation-fadeOutLeftBig-bg;
	animation-name         : motopress-modal-animation-fadeOutLeftBig-bg;
}

.motopress-modal-animation-fadeOutRight {
	-webkit-animation-name : motopress-modal-animation-fadeOutRight;
	-moz-animation-name    : motopress-modal-animation-fadeOutRight;
	-o-animation-name      : motopress-modal-animation-fadeOutRight;
	-ms-animation-name     : motopress-modal-animation-fadeOutRight;
	animation-name         : motopress-modal-animation-fadeOutRight;
}

.motopress-modal-animation-fadeOutRight.mfp-bg {
	-webkit-animation-name : motopress-modal-animation-fadeOutRight-bg;
	-moz-animation-name    : motopress-modal-animation-fadeOutRight-bg;
	-o-animation-name      : motopress-modal-animation-fadeOutRight-bg;
	-ms-animation-name     : motopress-modal-animation-fadeOutRight-bg;
	animation-name         : motopress-modal-animation-fadeOutRight-bg;
}

.motopress-modal-animation-fadeOutRightBig {
	-webkit-animation-name : motopress-modal-animation-fadeOutRightBig;
	-moz-animation-name    : motopress-modal-animation-fadeOutRightBig;
	-o-animation-name      : motopress-modal-animation-fadeOutRightBig;
	-ms-animation-name     : motopress-modal-animation-fadeOutRightBig;
	animation-name         : motopress-modal-animation-fadeOutRightBig;
}

.motopress-modal-animation-fadeOutRightBig.mfp-bg {
	-webkit-animation-name : motopress-modal-animation-fadeOutRightBig-bg;
	-moz-animation-name    : motopress-modal-animation-fadeOutRightBig-bg;
	-o-animation-name      : motopress-modal-animation-fadeOutRightBig-bg;
	-ms-animation-name     : motopress-modal-animation-fadeOutRightBig-bg;
	animation-name         : motopress-modal-animation-fadeOutRightBig-bg;
}

.motopress-modal-animation-fadeOutUp {
	-webkit-animation-name : motopress-modal-animation-fadeOutUp;
	-moz-animation-name    : motopress-modal-animation-fadeOutUp;
	-o-animation-name      : motopress-modal-animation-fadeOutUp;
	-ms-animation-name     : motopress-modal-animation-fadeOutUp;
	animation-name         : motopress-modal-animation-fadeOutUp;
}

.motopress-modal-animation-fadeOutUp.mfp-bg {
	-webkit-animation-name : motopress-modal-animation-fadeOutUp-bg;
	-moz-animation-name    : motopress-modal-animation-fadeOutUp-bg;
	-o-animation-name      : motopress-modal-animation-fadeOutUp-bg;
	-ms-animation-name     : motopress-modal-animation-fadeOutUp-bg;
	animation-name         : motopress-modal-animation-fadeOutUp-bg;
}

.motopress-modal-animation-fadeOutUpBig {
	-webkit-animation-name : motopress-modal-animation-fadeOutUpBig;
	-moz-animation-name    : motopress-modal-animation-fadeOutUpBig;
	-o-animation-name      : motopress-modal-animation-fadeOutUpBig;
	-ms-animation-name     : motopress-modal-animation-fadeOutUpBig;
	animation-name         : motopress-modal-animation-fadeOutUpBig;
}

.motopress-modal-animation-fadeOutUpBig.mfp-bg {
	-webkit-animation-name : motopress-modal-animation-fadeOutUpBig-bg;
	-moz-animation-name    : motopress-modal-animation-fadeOutUpBig-bg;
	-o-animation-name      : motopress-modal-animation-fadeOutUpBig-bg;
	-ms-animation-name     : motopress-modal-animation-fadeOutUpBig-bg;
	animation-name         : motopress-modal-animation-fadeOutUpBig-bg;
}

.motopress-modal-animation-flipOutX {
	-webkit-animation-name : motopress-modal-animation-flipOutX;
	-moz-animation-name    : motopress-modal-animation-flipOutX;
	-o-animation-name      : motopress-modal-animation-flipOutX;
	-ms-animation-name     : motopress-modal-animation-flipOutX;
	animation-name         : motopress-modal-animation-flipOutX;
}

.motopress-modal-animation-flipOutX.mfp-bg {
	-webkit-animation-name : motopress-modal-animation-flipOutX-bg;
	-moz-animation-name    : motopress-modal-animation-flipOutX-bg;
	-o-animation-name      : motopress-modal-animation-flipOutX-bg;
	-ms-animation-name     : motopress-modal-animation-flipOutX-bg;
	animation-name         : motopress-modal-animation-flipOutX-bg;
}

.motopress-modal-animation-flipOutY {
	-webkit-animation-name : motopress-modal-animation-flipOutY;
	-moz-animation-name    : motopress-modal-animation-flipOutY;
	-o-animation-name      : motopress-modal-animation-flipOutY;
	-ms-animation-name     : motopress-modal-animation-flipOutY;
	animation-name         : motopress-modal-animation-flipOutY;
}

.motopress-modal-animation-flipOutY.mfp-bg {
	-webkit-animation-name : motopress-modal-animation-flipOutY-bg;
	-moz-animation-name    : motopress-modal-animation-flipOutY-bg;
	-o-animation-name      : motopress-modal-animation-flipOutY-bg;
	-ms-animation-name     : motopress-modal-animation-flipOutY-bg;
	animation-name         : motopress-modal-animation-flipOutY-bg;
}

.motopress-modal-animation-lightSpeedOut {
	-webkit-animation-name : motopress-modal-animation-lightSpeedOut;
	-moz-animation-name    : motopress-modal-animation-lightSpeedOut;
	-o-animation-name      : motopress-modal-animation-lightSpeedOut;
	-ms-animation-name     : motopress-modal-animation-lightSpeedOut;
	animation-name         : motopress-modal-animation-lightSpeedOut;
}

.motopress-modal-animation-lightSpeedOut.mfp-bg {
	-webkit-animation-name : motopress-modal-animation-lightSpeedOut-bg;
	-moz-animation-name    : motopress-modal-animation-lightSpeedOut-bg;
	-o-animation-name      : motopress-modal-animation-lightSpeedOut-bg;
	-ms-animation-name     : motopress-modal-animation-lightSpeedOut-bg;
	animation-name         : motopress-modal-animation-lightSpeedOut-bg;
}

.motopress-modal-animation-rotateOut {
	-webkit-animation-name : motopress-modal-animation-rotateOut;
	-moz-animation-name    : motopress-modal-animation-rotateOut;
	-o-animation-name      : motopress-modal-animation-rotateOut;
	-ms-animation-name     : motopress-modal-animation-rotateOut;
	animation-name         : motopress-modal-animation-rotateOut;
}

.motopress-modal-animation-rotateOut.mfp-bg {
	-webkit-animation-name : motopress-modal-animation-rotateOut-bg;
	-moz-animation-name    : motopress-modal-animation-rotateOut-bg;
	-o-animation-name      : motopress-modal-animation-rotateOut-bg;
	-ms-animation-name     : motopress-modal-animation-rotateOut-bg;
	animation-name         : motopress-modal-animation-rotateOut-bg;
}

.motopress-modal-animation-rotateOutDownLeft {
	-webkit-animation-name : motopress-modal-animation-rotateOutDownLeft;
	-moz-animation-name    : motopress-modal-animation-rotateOutDownLeft;
	-o-animation-name      : motopress-modal-animation-rotateOutDownLeft;
	-ms-animation-name     : motopress-modal-animation-rotateOutDownLeft;
	animation-name         : motopress-modal-animation-rotateOutDownLeft;
}

.motopress-modal-animation-rotateOutDownLeft.mfp-bg {
	-webkit-animation-name : motopress-modal-animation-rotateOutDownLeft-bg;
	-moz-animation-name    : motopress-modal-animation-rotateOutDownLeft-bg;
	-o-animation-name      : motopress-modal-animation-rotateOutDownLeft-bg;
	-ms-animation-name     : motopress-modal-animation-rotateOutDownLeft-bg;
	animation-name         : motopress-modal-animation-rotateOutDownLeft-bg;
}

.motopress-modal-animation-rotateOutDownRight {
	-webkit-animation-name : motopress-modal-animation-rotateOutDownRight;
	-moz-animation-name    : motopress-modal-animation-rotateOutDownRight;
	-o-animation-name      : motopress-modal-animation-rotateOutDownRight;
	-ms-animation-name     : motopress-modal-animation-rotateOutDownRight;
	animation-name         : motopress-modal-animation-rotateOutDownRight;
}

.motopress-modal-animation-rotateOutDownRight.mfp-bg {
	-webkit-animation-name : motopress-modal-animation-rotateOutDownRight-bg;
	-moz-animation-name    : motopress-modal-animation-rotateOutDownRight-bg;
	-o-animation-name      : motopress-modal-animation-rotateOutDownRight-bg;
	-ms-animation-name     : motopress-modal-animation-rotateOutDownRight-bg;
	animation-name         : motopress-modal-animation-rotateOutDownRight-bg;
}

.motopress-modal-animation-rotateOutUpLeft {
	-webkit-animation-name : motopress-modal-animation-rotateOutUpLeft;
	-moz-animation-name    : motopress-modal-animation-rotateOutUpLeft;
	-o-animation-name      : motopress-modal-animation-rotateOutUpLeft;
	-ms-animation-name     : motopress-modal-animation-rotateOutUpLeft;
	animation-name         : motopress-modal-animation-rotateOutUpLeft;
}

.motopress-modal-animation-rotateOutUpLeft.mfp-bg {
	-webkit-animation-name : motopress-modal-animation-rotateOutUpLeft-bg;
	-moz-animation-name    : motopress-modal-animation-rotateOutUpLeft-bg;
	-o-animation-name      : motopress-modal-animation-rotateOutUpLeft-bg;
	-ms-animation-name     : motopress-modal-animation-rotateOutUpLeft-bg;
	animation-name         : motopress-modal-animation-rotateOutUpLeft-bg;
}

.motopress-modal-animation-rotateOutUpRight {
	-webkit-animation-name : motopress-modal-animation-rotateOutUpRight;
	-moz-animation-name    : motopress-modal-animation-rotateOutUpRight;
	-o-animation-name      : motopress-modal-animation-rotateOutUpRight;
	-ms-animation-name     : motopress-modal-animation-rotateOutUpRight;
	animation-name         : motopress-modal-animation-rotateOutUpRight;
}

.motopress-modal-animation-rotateOutUpRight.mfp-bg {
	-webkit-animation-name : motopress-modal-animation-rotateOutUpRight-bg;
	-moz-animation-name    : motopress-modal-animation-rotateOutUpRight-bg;
	-o-animation-name      : motopress-modal-animation-rotateOutUpRight-bg;
	-ms-animation-name     : motopress-modal-animation-rotateOutUpRight-bg;
	animation-name         : motopress-modal-animation-rotateOutUpRight-bg;
}

.motopress-modal-animation-rollOut {
	-webkit-animation-name : motopress-modal-animation-rollOut;
	-moz-animation-name    : motopress-modal-animation-rollOut;
	-o-animation-name      : motopress-modal-animation-rollOut;
	-ms-animation-name     : motopress-modal-animation-rollOut;
	animation-name         : motopress-modal-animation-rollOut;
}

.motopress-modal-animation-rollOut.mfp-bg {
	-webkit-animation-name : motopress-modal-animation-rollOut-bg;
	-moz-animation-name    : motopress-modal-animation-rollOut-bg;
	-o-animation-name      : motopress-modal-animation-rollOut-bg;
	-ms-animation-name     : motopress-modal-animation-rollOut-bg;
	animation-name         : motopress-modal-animation-rollOut-bg;
}

.motopress-modal-animation-zoomOut {
	-webkit-animation-name : motopress-modal-animation-zoomOut;
	-moz-animation-name    : motopress-modal-animation-zoomOut;
	-o-animation-name      : motopress-modal-animation-zoomOut;
	-ms-animation-name     : motopress-modal-animation-zoomOut;
	animation-name         : motopress-modal-animation-zoomOut;
}

.motopress-modal-animation-zoomOut.mfp-bg {
	-webkit-animation-name : motopress-modal-animation-zoomOut-bg;
	-moz-animation-name    : motopress-modal-animation-zoomOut-bg;
	-o-animation-name      : motopress-modal-animation-zoomOut-bg;
	-ms-animation-name     : motopress-modal-animation-zoomOut-bg;
	animation-name         : motopress-modal-animation-zoomOut-bg;
}

.motopress-modal-animation-zoomOutDown {
	-webkit-animation-name : motopress-modal-animation-zoomOutDown;
	-moz-animation-name    : motopress-modal-animation-zoomOutDown;
	-o-animation-name      : motopress-modal-animation-zoomOutDown;
	-ms-animation-name     : motopress-modal-animation-zoomOutDown;
	animation-name         : motopress-modal-animation-zoomOutDown;
}

.motopress-modal-animation-zoomOutDown.mfp-bg {
	-webkit-animation-name : motopress-modal-animation-zoomOutDown-bg;
	-moz-animation-name    : motopress-modal-animation-zoomOutDown-bg;
	-o-animation-name      : motopress-modal-animation-zoomOutDown-bg;
	-ms-animation-name     : motopress-modal-animation-zoomOutDown-bg;
	animation-name         : motopress-modal-animation-zoomOutDown-bg;
}

.motopress-modal-animation-zoomOutLeft {
	-webkit-animation-name : motopress-modal-animation-zoomOutLeft;
	-moz-animation-name    : motopress-modal-animation-zoomOutLeft;
	-o-animation-name      : motopress-modal-animation-zoomOutLeft;
	-ms-animation-name     : motopress-modal-animation-zoomOutLeft;
	animation-name         : motopress-modal-animation-zoomOutLeft;
}

.motopress-modal-animation-zoomOutLeft.mfp-bg {
	-webkit-animation-name : motopress-modal-animation-zoomOutLeft-bg;
	-moz-animation-name    : motopress-modal-animation-zoomOutLeft-bg;
	-o-animation-name      : motopress-modal-animation-zoomOutLeft-bg;
	-ms-animation-name     : motopress-modal-animation-zoomOutLeft-bg;
	animation-name         : motopress-modal-animation-zoomOutLeft-bg;
}

.motopress-modal-animation-zoomOutRight {
	-webkit-animation-name : motopress-modal-animation-zoomOutRight;
	-moz-animation-name    : motopress-modal-animation-zoomOutRight;
	-o-animation-name      : motopress-modal-animation-zoomOutRight;
	-ms-animation-name     : motopress-modal-animation-zoomOutRight;
	animation-name         : motopress-modal-animation-zoomOutRight;
}

.motopress-modal-animation-zoomOutRight.mfp-bg {
	-webkit-animation-name : motopress-modal-animation-zoomOutRight-bg;
	-moz-animation-name    : motopress-modal-animation-zoomOutRight-bg;
	-o-animation-name      : motopress-modal-animation-zoomOutRight-bg;
	-ms-animation-name     : motopress-modal-animation-zoomOutRight-bg;
	animation-name         : motopress-modal-animation-zoomOutRight-bg;
}

.motopress-modal-animation-zoomOutUp {
	-webkit-animation-name : motopress-modal-animation-zoomOutUp;
	-moz-animation-name    : motopress-modal-animation-zoomOutUp;
	-o-animation-name      : motopress-modal-animation-zoomOutUp;
	-ms-animation-name     : motopress-modal-animation-zoomOutUp;
	animation-name         : motopress-modal-animation-zoomOutUp;
}

.motopress-modal-animation-zoomOutUp.mfp-bg {
	-webkit-animation-name : motopress-modal-animation-zoomOutUp-bg;
	-moz-animation-name    : motopress-modal-animation-zoomOutUp-bg;
	-o-animation-name      : motopress-modal-animation-zoomOutUp-bg;
	-ms-animation-name     : motopress-modal-animation-zoomOutUp-bg;
	animation-name         : motopress-modal-animation-zoomOutUp-bg;
}

.motopress-modal-animation-slideOutDown {
	-webkit-animation-name : motopress-modal-animation-slideOutDown;
	-moz-animation-name    : motopress-modal-animation-slideOutDown;
	-o-animation-name      : motopress-modal-animation-slideOutDown;
	-ms-animation-name     : motopress-modal-animation-slideOutDown;
	animation-name         : motopress-modal-animation-slideOutDown;
}

.motopress-modal-animation-slideOutDown.mfp-bg {
	-webkit-animation-name : motopress-modal-animation-slideOutDown-bg;
	-moz-animation-name    : motopress-modal-animation-slideOutDown-bg;
	-o-animation-name      : motopress-modal-animation-slideOutDown-bg;
	-ms-animation-name     : motopress-modal-animation-slideOutDown-bg;
	animation-name         : motopress-modal-animation-slideOutDown-bg;
}

.motopress-modal-animation-slideOutLeft {
	-webkit-animation-name : motopress-modal-animation-slideOutLeft;
	-moz-animation-name    : motopress-modal-animation-slideOutLeft;
	-o-animation-name      : motopress-modal-animation-slideOutLeft;
	-ms-animation-name     : motopress-modal-animation-slideOutLeft;
	animation-name         : motopress-modal-animation-slideOutLeft;
}

.motopress-modal-animation-slideOutLeft.mfp-bg {
	-webkit-animation-name : motopress-modal-animation-slideOutLeft-bg;
	-moz-animation-name    : motopress-modal-animation-slideOutLeft-bg;
	-o-animation-name      : motopress-modal-animation-slideOutLeft-bg;
	-ms-animation-name     : motopress-modal-animation-slideOutLeft-bg;
	animation-name         : motopress-modal-animation-slideOutLeft-bg;
}

.motopress-modal-animation-slideOutRight {
	-webkit-animation-name : motopress-modal-animation-slideOutRight;
	-moz-animation-name    : motopress-modal-animation-slideOutRight;
	-o-animation-name      : motopress-modal-animation-slideOutRight;
	-ms-animation-name     : motopress-modal-animation-slideOutRight;
	animation-name         : motopress-modal-animation-slideOutRight;
}

.motopress-modal-animation-slideOutRight.mfp-bg {
	-webkit-animation-name : motopress-modal-animation-slideOutRight-bg;
	-moz-animation-name    : motopress-modal-animation-slideOutRight-bg;
	-o-animation-name      : motopress-modal-animation-slideOutRight-bg;
	-ms-animation-name     : motopress-modal-animation-slideOutRight-bg;
	animation-name         : motopress-modal-animation-slideOutRight-bg;
}

.motopress-modal-animation-slideOutUp {
	-webkit-animation-name : motopress-modal-animation-slideOutUp;
	-moz-animation-name    : motopress-modal-animation-slideOutUp;
	-o-animation-name      : motopress-modal-animation-slideOutUp;
	-ms-animation-name     : motopress-modal-animation-slideOutUp;
	animation-name         : motopress-modal-animation-slideOutUp;
}

.motopress-modal-animation-slideOutUp.mfp-bg {
	-webkit-animation-name : motopress-modal-animation-slideOutUp-bg;
	-moz-animation-name    : motopress-modal-animation-slideOutUp-bg;
	-o-animation-name      : motopress-modal-animation-slideOutUp-bg;
	-ms-animation-name     : motopress-modal-animation-slideOutUp-bg;
	animation-name         : motopress-modal-animation-slideOutUp-bg;
}

@keyframes motopress-modal-animation-flash {
	0.00%,
	50%,
	100% {
		opacity : 1;
	}
	25%,
	75% {
		opacity : 0;
	}
}

@-webkit-keyframes motopress-modal-animation-flash {
	0.00%,
	50%,
	100% {
		opacity : 1;
	}
	25%,
	75% {
		opacity : 0;
	}
}

@-webkit-keyframes motopress-modal-animation-flash-bg {
	0.00%,
	50%,
	100% {
		opacity : 0.8;
	}
	25%,
	75% {
		opacity : 0;
	}
}

@keyframes motopress-modal-animation-flash-bg {
	0.00%,
	50%,
	100% {
		opacity : 0.8;
	}
	25%,
	75% {
		opacity : 0;
	}
}

@keyframes motopress-modal-animation-bounce {
	0.00%,
	20%,
	53%,
	80%,
	100% {
		-webkit-animation-timing-function : cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function         : cubic-bezier(0.215, 0.61, 0.355, 1);
		-webkit-transform                 : translate3d(0, 0, 0);
		transform                         : translate3d(0, 0, 0);
	}
	40%,
	43% {
		-webkit-animation-timing-function : cubic-bezier(0.755, 0.05, 0.855, 0.06);
		animation-timing-function         : cubic-bezier(0.755, 0.05, 0.855, 0.06);
		-webkit-transform                 : translate3d(0, -30px, 0);
		transform                         : translate3d(0, -30px, 0);
	}
	70% {
		-webkit-animation-timing-function : cubic-bezier(0.755, 0.05, 0.855, 0.06);
		animation-timing-function         : cubic-bezier(0.755, 0.05, 0.855, 0.06);
		-webkit-transform                 : translate3d(0, -15px, 0);
		transform                         : translate3d(0, -15px, 0);
	}
	90% {
		-webkit-transform : translate3d(0, -4px, 0);
		transform         : translate3d(0, -4px, 0);
	}
}

@-webkit-keyframes motopress-modal-animation-bounce {
	0.00%,
	20%,
	53%,
	80%,
	100% {
		-webkit-animation-timing-function : cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function         : cubic-bezier(0.215, 0.61, 0.355, 1);
		-webkit-transform                 : translate3d(0, 0, 0);
		transform                         : translate3d(0, 0, 0);
	}
	40%,
	43% {
		-webkit-animation-timing-function : cubic-bezier(0.755, 0.05, 0.855, 0.06);
		animation-timing-function         : cubic-bezier(0.755, 0.05, 0.855, 0.06);
		-webkit-transform                 : translate3d(0, -30px, 0);
		transform                         : translate3d(0, -30px, 0);
	}
	70% {
		-webkit-animation-timing-function : cubic-bezier(0.755, 0.05, 0.855, 0.06);
		animation-timing-function         : cubic-bezier(0.755, 0.05, 0.855, 0.06);
		-webkit-transform                 : translate3d(0, -15px, 0);
		transform                         : translate3d(0, -15px, 0);
	}
	90% {
		-webkit-transform : translate3d(0, -4px, 0);
		transform         : translate3d(0, -4px, 0);
	}
}

@-webkit-keyframes motopress-modal-animation-bounce-bg {
	0.00%,
	20%,
	53%,
	80%,
	100% {
		-webkit-animation-timing-function : cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function         : cubic-bezier(0.215, 0.61, 0.355, 1);
		-webkit-transform                 : translate3d(0, 0, 0);
		transform                         : translate3d(0, 0, 0);
	}
	40%,
	43% {
		-webkit-animation-timing-function : cubic-bezier(0.755, 0.05, 0.855, 0.06);
		animation-timing-function         : cubic-bezier(0.755, 0.05, 0.855, 0.06);
		-webkit-transform                 : translate3d(0, -30px, 0);
		transform                         : translate3d(0, -30px, 0);
	}
	70% {
		-webkit-animation-timing-function : cubic-bezier(0.755, 0.05, 0.855, 0.06);
		animation-timing-function         : cubic-bezier(0.755, 0.05, 0.855, 0.06);
		-webkit-transform                 : translate3d(0, -15px, 0);
		transform                         : translate3d(0, -15px, 0);
	}
	90% {
		-webkit-transform : translate3d(0, -4px, 0);
		transform         : translate3d(0, -4px, 0);
	}
}

@keyframes motopress-modal-animation-bounce-bg {
	0.00%,
	20%,
	53%,
	80%,
	100% {
		-webkit-animation-timing-function : cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function         : cubic-bezier(0.215, 0.61, 0.355, 1);
		-webkit-transform                 : translate3d(0, 0, 0);
		transform                         : translate3d(0, 0, 0);
	}
	40%,
	43% {
		-webkit-animation-timing-function : cubic-bezier(0.755, 0.05, 0.855, 0.06);
		animation-timing-function         : cubic-bezier(0.755, 0.05, 0.855, 0.06);
		-webkit-transform                 : translate3d(0, -30px, 0);
		transform                         : translate3d(0, -30px, 0);
	}
	70% {
		-webkit-animation-timing-function : cubic-bezier(0.755, 0.05, 0.855, 0.06);
		animation-timing-function         : cubic-bezier(0.755, 0.05, 0.855, 0.06);
		-webkit-transform                 : translate3d(0, -15px, 0);
		transform                         : translate3d(0, -15px, 0);
	}
	90% {
		-webkit-transform : translate3d(0, -4px, 0);
		transform         : translate3d(0, -4px, 0);
	}
}

@keyframes motopress-modal-animation-pulse {
	0.00% {
		-webkit-transform : scale3d(1, 1, 1);
		transform         : scale3d(1, 1, 1);
	}
	50% {
		-webkit-transform : scale3d(1.05, 1.05, 1.05);
		transform         : scale3d(1.05, 1.05, 1.05);
	}
	100% {
		-webkit-transform : scale3d(1, 1, 1);
		transform         : scale3d(1, 1, 1);
	}
}

@-webkit-keyframes motopress-modal-animation-pulse {
	0.00% {
		-webkit-transform : scale3d(1, 1, 1);
		transform         : scale3d(1, 1, 1);
	}
	50% {
		-webkit-transform : scale3d(1.05, 1.05, 1.05);
		transform         : scale3d(1.05, 1.05, 1.05);
	}
	100% {
		-webkit-transform : scale3d(1, 1, 1);
		transform         : scale3d(1, 1, 1);
	}
}

@-webkit-keyframes motopress-modal-animation-pulse-bg {
	0.00% {
		-webkit-transform : scale3d(1, 1, 1);
		transform         : scale3d(1, 1, 1);
	}
	50% {
		-webkit-transform : scale3d(1.05, 1.05, 1.05);
		transform         : scale3d(1.05, 1.05, 1.05);
	}
	100% {
		-webkit-transform : scale3d(1, 1, 1);
		transform         : scale3d(1, 1, 1);
	}
}

@keyframes motopress-modal-animation-pulse-bg {
	0.00% {
		-webkit-transform : scale3d(1, 1, 1);
		transform         : scale3d(1, 1, 1);
	}
	50% {
		-webkit-transform : scale3d(1.05, 1.05, 1.05);
		transform         : scale3d(1.05, 1.05, 1.05);
	}
	100% {
		-webkit-transform : scale3d(1, 1, 1);
		transform         : scale3d(1, 1, 1);
	}
}

@keyframes motopress-modal-animation-rubberBand {
	0.00% {
		-webkit-transform : scale3d(1, 1, 1);
		transform         : scale3d(1, 1, 1);
	}
	30% {
		-webkit-transform : scale3d(1.25, 0.75, 1);
		transform         : scale3d(1.25, 0.75, 1);
	}
	40% {
		-webkit-transform : scale3d(0.75, 1.25, 1);
		transform         : scale3d(0.75, 1.25, 1);
	}
	50% {
		-webkit-transform : scale3d(1.15, 0.85, 1);
		transform         : scale3d(1.15, 0.85, 1);
	}
	65% {
		-webkit-transform : scale3d(0.95, 1.05, 1);
		transform         : scale3d(0.95, 1.05, 1);
	}
	75% {
		-webkit-transform : scale3d(1.05, 0.95, 1);
		transform         : scale3d(1.05, 0.95, 1);
	}
	100% {
		-webkit-transform : scale3d(1, 1, 1);
		transform         : scale3d(1, 1, 1);
	}
}

@-webkit-keyframes motopress-modal-animation-rubberBand {
	0.00% {
		-webkit-transform : scale3d(1, 1, 1);
		transform         : scale3d(1, 1, 1);
	}
	30% {
		-webkit-transform : scale3d(1.25, 0.75, 1);
		transform         : scale3d(1.25, 0.75, 1);
	}
	40% {
		-webkit-transform : scale3d(0.75, 1.25, 1);
		transform         : scale3d(0.75, 1.25, 1);
	}
	50% {
		-webkit-transform : scale3d(1.15, 0.85, 1);
		transform         : scale3d(1.15, 0.85, 1);
	}
	65% {
		-webkit-transform : scale3d(0.95, 1.05, 1);
		transform         : scale3d(0.95, 1.05, 1);
	}
	75% {
		-webkit-transform : scale3d(1.05, 0.95, 1);
		transform         : scale3d(1.05, 0.95, 1);
	}
	100% {
		-webkit-transform : scale3d(1, 1, 1);
		transform         : scale3d(1, 1, 1);
	}
}

@-webkit-keyframes motopress-modal-animation-rubberBand-bg {
	0.00% {
		-webkit-transform : scale3d(1, 1, 1);
		transform         : scale3d(1, 1, 1);
	}
	30% {
		-webkit-transform : scale3d(1.25, 0.75, 1);
		transform         : scale3d(1.25, 0.75, 1);
	}
	40% {
		-webkit-transform : scale3d(0.75, 1.25, 1);
		transform         : scale3d(0.75, 1.25, 1);
	}
	50% {
		-webkit-transform : scale3d(1.15, 0.85, 1);
		transform         : scale3d(1.15, 0.85, 1);
	}
	65% {
		-webkit-transform : scale3d(0.95, 1.05, 1);
		transform         : scale3d(0.95, 1.05, 1);
	}
	75% {
		-webkit-transform : scale3d(1.05, 0.95, 1);
		transform         : scale3d(1.05, 0.95, 1);
	}
	100% {
		-webkit-transform : scale3d(1, 1, 1);
		transform         : scale3d(1, 1, 1);
	}
}

@keyframes motopress-modal-animation-rubberBand-bg {
	0.00% {
		-webkit-transform : scale3d(1, 1, 1);
		transform         : scale3d(1, 1, 1);
	}
	30% {
		-webkit-transform : scale3d(1.25, 0.75, 1);
		transform         : scale3d(1.25, 0.75, 1);
	}
	40% {
		-webkit-transform : scale3d(0.75, 1.25, 1);
		transform         : scale3d(0.75, 1.25, 1);
	}
	50% {
		-webkit-transform : scale3d(1.15, 0.85, 1);
		transform         : scale3d(1.15, 0.85, 1);
	}
	65% {
		-webkit-transform : scale3d(0.95, 1.05, 1);
		transform         : scale3d(0.95, 1.05, 1);
	}
	75% {
		-webkit-transform : scale3d(1.05, 0.95, 1);
		transform         : scale3d(1.05, 0.95, 1);
	}
	100% {
		-webkit-transform : scale3d(1, 1, 1);
		transform         : scale3d(1, 1, 1);
	}
}

@keyframes motopress-modal-animation-shake {
	0.00%,
	100% {
		-webkit-transform : translate3d(0, 0, 0);
		transform         : translate3d(0, 0, 0);
	}
	10%,
	30%,
	50%,
	70%,
	90% {
		-webkit-transform : translate3d(-10px, 0, 0);
		transform         : translate3d(-10px, 0, 0);
	}
	20%,
	40%,
	60%,
	80% {
		-webkit-transform : translate3d(10px, 0, 0);
		transform         : translate3d(10px, 0, 0);
	}
}

@-webkit-keyframes motopress-modal-animation-shake {
	0.00%,
	100% {
		-webkit-transform : translate3d(0, 0, 0);
		transform         : translate3d(0, 0, 0);
	}
	10%,
	30%,
	50%,
	70%,
	90% {
		-webkit-transform : translate3d(-10px, 0, 0);
		transform         : translate3d(-10px, 0, 0);
	}
	20%,
	40%,
	60%,
	80% {
		-webkit-transform : translate3d(10px, 0, 0);
		transform         : translate3d(10px, 0, 0);
	}
}

@-webkit-keyframes motopress-modal-animation-shake-bg {
	0.00%,
	100% {
		-webkit-transform : translate3d(0, 0, 0);
		transform         : translate3d(0, 0, 0);
	}
	10%,
	30%,
	50%,
	70%,
	90% {
		-webkit-transform : translate3d(-10px, 0, 0);
		transform         : translate3d(-10px, 0, 0);
	}
	20%,
	40%,
	60%,
	80% {
		-webkit-transform : translate3d(10px, 0, 0);
		transform         : translate3d(10px, 0, 0);
	}
}

@keyframes motopress-modal-animation-shake-bg {
	0.00%,
	100% {
		-webkit-transform : translate3d(0, 0, 0);
		transform         : translate3d(0, 0, 0);
	}
	10%,
	30%,
	50%,
	70%,
	90% {
		-webkit-transform : translate3d(-10px, 0, 0);
		transform         : translate3d(-10px, 0, 0);
	}
	20%,
	40%,
	60%,
	80% {
		-webkit-transform : translate3d(10px, 0, 0);
		transform         : translate3d(10px, 0, 0);
	}
}

@keyframes motopress-modal-animation-swing {
	20% {
		-webkit-transform : rotate3d(0, 0, 1, 15deg);
		transform         : rotate3d(0, 0, 1, 15deg);
	}
	40% {
		-webkit-transform : rotate3d(0, 0, 1, -10deg);
		transform         : rotate3d(0, 0, 1, -10deg);
	}
	60% {
		-webkit-transform : rotate3d(0, 0, 1, 5deg);
		transform         : rotate3d(0, 0, 1, 5deg);
	}
	80% {
		-webkit-transform : rotate3d(0, 0, 1, -5deg);
		transform         : rotate3d(0, 0, 1, -5deg);
	}
	100% {
		-webkit-transform : rotate3d(0, 0, 1, 0deg);
		transform         : rotate3d(0, 0, 1, 0deg);
	}
}

@-webkit-keyframes motopress-modal-animation-swing {
	20% {
		-webkit-transform : rotate3d(0, 0, 1, 15deg);
		transform         : rotate3d(0, 0, 1, 15deg);
	}
	40% {
		-webkit-transform : rotate3d(0, 0, 1, -10deg);
		transform         : rotate3d(0, 0, 1, -10deg);
	}
	60% {
		-webkit-transform : rotate3d(0, 0, 1, 5deg);
		transform         : rotate3d(0, 0, 1, 5deg);
	}
	80% {
		-webkit-transform : rotate3d(0, 0, 1, -5deg);
		transform         : rotate3d(0, 0, 1, -5deg);
	}
	100% {
		-webkit-transform : rotate3d(0, 0, 1, 0deg);
		transform         : rotate3d(0, 0, 1, 0deg);
	}
}

@-webkit-keyframes motopress-modal-animation-swing-bg {
	20% {
		-webkit-transform : rotate3d(0, 0, 1, 15deg);
		transform         : rotate3d(0, 0, 1, 15deg);
	}
	40% {
		-webkit-transform : rotate3d(0, 0, 1, -10deg);
		transform         : rotate3d(0, 0, 1, -10deg);
	}
	60% {
		-webkit-transform : rotate3d(0, 0, 1, 5deg);
		transform         : rotate3d(0, 0, 1, 5deg);
	}
	80% {
		-webkit-transform : rotate3d(0, 0, 1, -5deg);
		transform         : rotate3d(0, 0, 1, -5deg);
	}
	100% {
		-webkit-transform : rotate3d(0, 0, 1, 0deg);
		transform         : rotate3d(0, 0, 1, 0deg);
	}
}

@keyframes motopress-modal-animation-swing-bg {
	20% {
		-webkit-transform : rotate3d(0, 0, 1, 15deg);
		transform         : rotate3d(0, 0, 1, 15deg);
	}
	40% {
		-webkit-transform : rotate3d(0, 0, 1, -10deg);
		transform         : rotate3d(0, 0, 1, -10deg);
	}
	60% {
		-webkit-transform : rotate3d(0, 0, 1, 5deg);
		transform         : rotate3d(0, 0, 1, 5deg);
	}
	80% {
		-webkit-transform : rotate3d(0, 0, 1, -5deg);
		transform         : rotate3d(0, 0, 1, -5deg);
	}
	100% {
		-webkit-transform : rotate3d(0, 0, 1, 0deg);
		transform         : rotate3d(0, 0, 1, 0deg);
	}
}

@keyframes motopress-modal-animation-tada {
	0.00% {
		-webkit-transform : scale3d(1, 1, 1);
		transform         : scale3d(1, 1, 1);
	}
	10%,
	20% {
		-webkit-transform : scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
		transform         : scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
	}
	30%,
	50%,
	70%,
	90% {
		-webkit-transform : scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
		transform         : scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
	}
	40%,
	60%,
	80% {
		-webkit-transform : scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
		transform         : scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
	}
	100% {
		-webkit-transform : scale3d(1, 1, 1);
		transform         : scale3d(1, 1, 1);
	}
}

@-webkit-keyframes motopress-modal-animation-tada {
	0.00% {
		-webkit-transform : scale3d(1, 1, 1);
		transform         : scale3d(1, 1, 1);
	}
	10%,
	20% {
		-webkit-transform : scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
		transform         : scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
	}
	30%,
	50%,
	70%,
	90% {
		-webkit-transform : scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
		transform         : scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
	}
	40%,
	60%,
	80% {
		-webkit-transform : scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
		transform         : scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
	}
	100% {
		-webkit-transform : scale3d(1, 1, 1);
		transform         : scale3d(1, 1, 1);
	}
}

@-webkit-keyframes motopress-modal-animation-tada-bg {
	0.00% {
		-webkit-transform : scale3d(1, 1, 1);
		transform         : scale3d(1, 1, 1);
	}
	10%,
	20% {
		-webkit-transform : scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
		transform         : scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
	}
	30%,
	50%,
	70%,
	90% {
		-webkit-transform : scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
		transform         : scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
	}
	40%,
	60%,
	80% {
		-webkit-transform : scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
		transform         : scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
	}
	100% {
		-webkit-transform : scale3d(1, 1, 1);
		transform         : scale3d(1, 1, 1);
	}
}

@keyframes motopress-modal-animation-tada-bg {
	0.00% {
		-webkit-transform : scale3d(1, 1, 1);
		transform         : scale3d(1, 1, 1);
	}
	10%,
	20% {
		-webkit-transform : scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
		transform         : scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
	}
	30%,
	50%,
	70%,
	90% {
		-webkit-transform : scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
		transform         : scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
	}
	40%,
	60%,
	80% {
		-webkit-transform : scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
		transform         : scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
	}
	100% {
		-webkit-transform : scale3d(1, 1, 1);
		transform         : scale3d(1, 1, 1);
	}
}

@keyframes motopress-modal-animation-wobble {
	0.00% {
		-webkit-transform : none;
		transform         : none;
	}
	15% {
		-webkit-transform : translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
		transform         : translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
	}
	30% {
		-webkit-transform : translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
		transform         : translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
	}
	45% {
		-webkit-transform : translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
		transform         : translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
	}
	60% {
		-webkit-transform : translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
		transform         : translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
	}
	75% {
		-webkit-transform : translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
		transform         : translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
	}
	100% {
		-webkit-transform : none;
		transform         : none;
	}
}

@-webkit-keyframes motopress-modal-animation-wobble {
	0.00% {
		-webkit-transform : none;
		transform         : none;
	}
	15% {
		-webkit-transform : translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
		transform         : translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
	}
	30% {
		-webkit-transform : translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
		transform         : translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
	}
	45% {
		-webkit-transform : translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
		transform         : translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
	}
	60% {
		-webkit-transform : translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
		transform         : translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
	}
	75% {
		-webkit-transform : translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
		transform         : translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
	}
	100% {
		-webkit-transform : none;
		transform         : none;
	}
}

@-webkit-keyframes motopress-modal-animation-wobble-bg {
	0.00% {
		-webkit-transform : none;
		transform         : none;
	}
	15% {
		-webkit-transform : translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
		transform         : translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
	}
	30% {
		-webkit-transform : translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
		transform         : translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
	}
	45% {
		-webkit-transform : translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
		transform         : translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
	}
	60% {
		-webkit-transform : translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
		transform         : translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
	}
	75% {
		-webkit-transform : translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
		transform         : translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
	}
	100% {
		-webkit-transform : none;
		transform         : none;
	}
}

@keyframes motopress-modal-animation-wobble-bg {
	0.00% {
		-webkit-transform : none;
		transform         : none;
	}
	15% {
		-webkit-transform : translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
		transform         : translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
	}
	30% {
		-webkit-transform : translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
		transform         : translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
	}
	45% {
		-webkit-transform : translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
		transform         : translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
	}
	60% {
		-webkit-transform : translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
		transform         : translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
	}
	75% {
		-webkit-transform : translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
		transform         : translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
	}
	100% {
		-webkit-transform : none;
		transform         : none;
	}
}

@keyframes motopress-modal-animation-jello {
	11.1% {
		-webkit-transform : none;
		transform         : none;
	}
	22.2% {
		-webkit-transform : skewX(-12.5deg) skewY(-12.5deg);
		transform         : skewX(-12.5deg) skewY(-12.5deg);
	}
	33.3% {
		-webkit-transform : skewX(6.25deg) skewY(6.25deg);
		transform         : skewX(6.25deg) skewY(6.25deg);
	}
	44.4% {
		-webkit-transform : skewX(-3.125deg) skewY(-3.125deg);
		transform         : skewX(-3.125deg) skewY(-3.125deg);
	}
	55.5% {
		-webkit-transform : skewX(1.5625deg) skewY(1.5625deg);
		transform         : skewX(1.5625deg) skewY(1.5625deg);
	}
	66.6% {
		-webkit-transform : skewX(-0.78125deg) skewY(-0.78125deg);
		transform         : skewX(-0.78125deg) skewY(-0.78125deg);
	}
	77.7% {
		-webkit-transform : skewX(0.390625deg) skewY(0.390625deg);
		transform         : skewX(0.390625deg) skewY(0.390625deg);
	}
	88.8% {
		-webkit-transform : skewX(-0.1953125deg) skewY(-0.1953125deg);
		transform         : skewX(-0.1953125deg) skewY(-0.1953125deg);
	}
	100% {
		-webkit-transform : none;
		transform         : none;
	}
}

@-webkit-keyframes motopress-modal-animation-jello {
	11.1% {
		-webkit-transform : none;
		transform         : none;
	}
	22.2% {
		-webkit-transform : skewX(-12.5deg) skewY(-12.5deg);
		transform         : skewX(-12.5deg) skewY(-12.5deg);
	}
	33.3% {
		-webkit-transform : skewX(6.25deg) skewY(6.25deg);
		transform         : skewX(6.25deg) skewY(6.25deg);
	}
	44.4% {
		-webkit-transform : skewX(-3.125deg) skewY(-3.125deg);
		transform         : skewX(-3.125deg) skewY(-3.125deg);
	}
	55.5% {
		-webkit-transform : skewX(1.5625deg) skewY(1.5625deg);
		transform         : skewX(1.5625deg) skewY(1.5625deg);
	}
	66.6% {
		-webkit-transform : skewX(-0.78125deg) skewY(-0.78125deg);
		transform         : skewX(-0.78125deg) skewY(-0.78125deg);
	}
	77.7% {
		-webkit-transform : skewX(0.390625deg) skewY(0.390625deg);
		transform         : skewX(0.390625deg) skewY(0.390625deg);
	}
	88.8% {
		-webkit-transform : skewX(-0.1953125deg) skewY(-0.1953125deg);
		transform         : skewX(-0.1953125deg) skewY(-0.1953125deg);
	}
	100% {
		-webkit-transform : none;
		transform         : none;
	}
}

@-webkit-keyframes motopress-modal-animation-jello-bg {
	11.1% {
		-webkit-transform : none;
		transform         : none;
	}
	22.2% {
		-webkit-transform : skewX(-12.5deg) skewY(-12.5deg);
		transform         : skewX(-12.5deg) skewY(-12.5deg);
	}
	33.3% {
		-webkit-transform : skewX(6.25deg) skewY(6.25deg);
		transform         : skewX(6.25deg) skewY(6.25deg);
	}
	44.4% {
		-webkit-transform : skewX(-3.125deg) skewY(-3.125deg);
		transform         : skewX(-3.125deg) skewY(-3.125deg);
	}
	55.5% {
		-webkit-transform : skewX(1.5625deg) skewY(1.5625deg);
		transform         : skewX(1.5625deg) skewY(1.5625deg);
	}
	66.6% {
		-webkit-transform : skewX(-0.78125deg) skewY(-0.78125deg);
		transform         : skewX(-0.78125deg) skewY(-0.78125deg);
	}
	77.7% {
		-webkit-transform : skewX(0.390625deg) skewY(0.390625deg);
		transform         : skewX(0.390625deg) skewY(0.390625deg);
	}
	88.8% {
		-webkit-transform : skewX(-0.1953125deg) skewY(-0.1953125deg);
		transform         : skewX(-0.1953125deg) skewY(-0.1953125deg);
	}
	100% {
		-webkit-transform : none;
		transform         : none;
	}
}

@keyframes motopress-modal-animation-jello-bg {
	11.1% {
		-webkit-transform : none;
		transform         : none;
	}
	22.2% {
		-webkit-transform : skewX(-12.5deg) skewY(-12.5deg);
		transform         : skewX(-12.5deg) skewY(-12.5deg);
	}
	33.3% {
		-webkit-transform : skewX(6.25deg) skewY(6.25deg);
		transform         : skewX(6.25deg) skewY(6.25deg);
	}
	44.4% {
		-webkit-transform : skewX(-3.125deg) skewY(-3.125deg);
		transform         : skewX(-3.125deg) skewY(-3.125deg);
	}
	55.5% {
		-webkit-transform : skewX(1.5625deg) skewY(1.5625deg);
		transform         : skewX(1.5625deg) skewY(1.5625deg);
	}
	66.6% {
		-webkit-transform : skewX(-0.78125deg) skewY(-0.78125deg);
		transform         : skewX(-0.78125deg) skewY(-0.78125deg);
	}
	77.7% {
		-webkit-transform : skewX(0.390625deg) skewY(0.390625deg);
		transform         : skewX(0.390625deg) skewY(0.390625deg);
	}
	88.8% {
		-webkit-transform : skewX(-0.1953125deg) skewY(-0.1953125deg);
		transform         : skewX(-0.1953125deg) skewY(-0.1953125deg);
	}
	100% {
		-webkit-transform : none;
		transform         : none;
	}
}

@keyframes motopress-modal-animation-bounceIn {
	0.00%,
	20%,
	40%,
	60%,
	80%,
	100% {
		-webkit-animation-timing-function : cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function         : cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0.00% {
		opacity           : 0;
		-webkit-transform : scale3d(0.3, 0.3, 0.3);
		transform         : scale3d(0.3, 0.3, 0.3);
	}
	20% {
		-webkit-transform : scale3d(1.1, 1.1, 1.1);
		transform         : scale3d(1.1, 1.1, 1.1);
	}
	40% {
		-webkit-transform : scale3d(0.9, 0.9, 0.9);
		transform         : scale3d(0.9, 0.9, 0.9);
	}
	60% {
		opacity           : 1;
		-webkit-transform : scale3d(1.03, 1.03, 1.03);
		transform         : scale3d(1.03, 1.03, 1.03);
	}
	80% {
		-webkit-transform : scale3d(0.97, 0.97, 0.97);
		transform         : scale3d(0.97, 0.97, 0.97);
	}
	100% {
		opacity           : 1;
		-webkit-transform : scale3d(1, 1, 1);
		transform         : scale3d(1, 1, 1);
	}
}

@-webkit-keyframes motopress-modal-animation-bounceIn {
	0.00%,
	20%,
	40%,
	60%,
	80%,
	100% {
		-webkit-animation-timing-function : cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function         : cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0.00% {
		opacity           : 0;
		-webkit-transform : scale3d(0.3, 0.3, 0.3);
		transform         : scale3d(0.3, 0.3, 0.3);
	}
	20% {
		-webkit-transform : scale3d(1.1, 1.1, 1.1);
		transform         : scale3d(1.1, 1.1, 1.1);
	}
	40% {
		-webkit-transform : scale3d(0.9, 0.9, 0.9);
		transform         : scale3d(0.9, 0.9, 0.9);
	}
	60% {
		opacity           : 1;
		-webkit-transform : scale3d(1.03, 1.03, 1.03);
		transform         : scale3d(1.03, 1.03, 1.03);
	}
	80% {
		-webkit-transform : scale3d(0.97, 0.97, 0.97);
		transform         : scale3d(0.97, 0.97, 0.97);
	}
	100% {
		opacity           : 1;
		-webkit-transform : scale3d(1, 1, 1);
		transform         : scale3d(1, 1, 1);
	}
}

@-webkit-keyframes motopress-modal-animation-bounceIn-bg {
	0.00%,
	20%,
	40%,
	60%,
	80%,
	100% {
		-webkit-animation-timing-function : cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function         : cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0.00% {
		opacity           : 0;
		-webkit-transform : scale3d(0.3, 0.3, 0.3);
		transform         : scale3d(0.3, 0.3, 0.3);
	}
	20% {
		-webkit-transform : scale3d(1.1, 1.1, 1.1);
		transform         : scale3d(1.1, 1.1, 1.1);
	}
	40% {
		-webkit-transform : scale3d(0.9, 0.9, 0.9);
		transform         : scale3d(0.9, 0.9, 0.9);
	}
	60% {
		opacity           : 0.8;
		-webkit-transform : scale3d(1.03, 1.03, 1.03);
		transform         : scale3d(1.03, 1.03, 1.03);
	}
	80% {
		-webkit-transform : scale3d(0.97, 0.97, 0.97);
		transform         : scale3d(0.97, 0.97, 0.97);
	}
	100% {
		opacity           : 0.8;
		-webkit-transform : scale3d(1, 1, 1);
		transform         : scale3d(1, 1, 1);
	}
}

@keyframes motopress-modal-animation-bounceIn-bg {
	0.00%,
	20%,
	40%,
	60%,
	80%,
	100% {
		-webkit-animation-timing-function : cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function         : cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0.00% {
		opacity           : 0;
		-webkit-transform : scale3d(0.3, 0.3, 0.3);
		transform         : scale3d(0.3, 0.3, 0.3);
	}
	20% {
		-webkit-transform : scale3d(1.1, 1.1, 1.1);
		transform         : scale3d(1.1, 1.1, 1.1);
	}
	40% {
		-webkit-transform : scale3d(0.9, 0.9, 0.9);
		transform         : scale3d(0.9, 0.9, 0.9);
	}
	60% {
		opacity           : 0.8;
		-webkit-transform : scale3d(1.03, 1.03, 1.03);
		transform         : scale3d(1.03, 1.03, 1.03);
	}
	80% {
		-webkit-transform : scale3d(0.97, 0.97, 0.97);
		transform         : scale3d(0.97, 0.97, 0.97);
	}
	100% {
		opacity           : 0.8;
		-webkit-transform : scale3d(1, 1, 1);
		transform         : scale3d(1, 1, 1);
	}
}

@keyframes motopress-modal-animation-bounceInDown {
	0.00%,
	60%,
	75%,
	90%,
	100% {
		-webkit-animation-timing-function : cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function         : cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0.00% {
		opacity           : 0;
		-webkit-transform : translate3d(0, -3000px, 0);
		transform         : translate3d(0, -3000px, 0);
	}
	60% {
		opacity           : 1;
		-webkit-transform : translate3d(0, 25px, 0);
		transform         : translate3d(0, 25px, 0);
	}
	75% {
		-webkit-transform : translate3d(0, -10px, 0);
		transform         : translate3d(0, -10px, 0);
	}
	90% {
		-webkit-transform : translate3d(0, 5px, 0);
		transform         : translate3d(0, 5px, 0);
	}
	100% {
		-webkit-transform : none;
		transform         : none;
	}
}

@-webkit-keyframes motopress-modal-animation-bounceInDown {
	0.00%,
	60%,
	75%,
	90%,
	100% {
		-webkit-animation-timing-function : cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function         : cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0.00% {
		opacity           : 0;
		-webkit-transform : translate3d(0, -3000px, 0);
		transform         : translate3d(0, -3000px, 0);
	}
	60% {
		opacity           : 1;
		-webkit-transform : translate3d(0, 25px, 0);
		transform         : translate3d(0, 25px, 0);
	}
	75% {
		-webkit-transform : translate3d(0, -10px, 0);
		transform         : translate3d(0, -10px, 0);
	}
	90% {
		-webkit-transform : translate3d(0, 5px, 0);
		transform         : translate3d(0, 5px, 0);
	}
	100% {
		-webkit-transform : none;
		transform         : none;
	}
}

@-webkit-keyframes motopress-modal-animation-bounceInDown-bg {
	0.00%,
	60%,
	75%,
	90%,
	100% {
		-webkit-animation-timing-function : cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function         : cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0.00% {
		opacity           : 0;
		-webkit-transform : translate3d(0, -3000px, 0);
		transform         : translate3d(0, -3000px, 0);
	}
	60% {
		opacity           : 0.8;
		-webkit-transform : translate3d(0, 25px, 0);
		transform         : translate3d(0, 25px, 0);
	}
	75% {
		-webkit-transform : translate3d(0, -10px, 0);
		transform         : translate3d(0, -10px, 0);
	}
	90% {
		-webkit-transform : translate3d(0, 5px, 0);
		transform         : translate3d(0, 5px, 0);
	}
	100% {
		-webkit-transform : none;
		transform         : none;
	}
}

@keyframes motopress-modal-animation-bounceInDown-bg {
	0.00%,
	60%,
	75%,
	90%,
	100% {
		-webkit-animation-timing-function : cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function         : cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0.00% {
		opacity           : 0;
		-webkit-transform : translate3d(0, -3000px, 0);
		transform         : translate3d(0, -3000px, 0);
	}
	60% {
		opacity           : 0.8;
		-webkit-transform : translate3d(0, 25px, 0);
		transform         : translate3d(0, 25px, 0);
	}
	75% {
		-webkit-transform : translate3d(0, -10px, 0);
		transform         : translate3d(0, -10px, 0);
	}
	90% {
		-webkit-transform : translate3d(0, 5px, 0);
		transform         : translate3d(0, 5px, 0);
	}
	100% {
		-webkit-transform : none;
		transform         : none;
	}
}

@keyframes motopress-modal-animation-bounceInLeft {
	0.00%,
	60%,
	75%,
	90%,
	100% {
		-webkit-animation-timing-function : cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function         : cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0.00% {
		opacity           : 0;
		-webkit-transform : translate3d(-3000px, 0, 0);
		transform         : translate3d(-3000px, 0, 0);
	}
	60% {
		opacity           : 1;
		-webkit-transform : translate3d(25px, 0, 0);
		transform         : translate3d(25px, 0, 0);
	}
	75% {
		-webkit-transform : translate3d(-10px, 0, 0);
		transform         : translate3d(-10px, 0, 0);
	}
	90% {
		-webkit-transform : translate3d(5px, 0, 0);
		transform         : translate3d(5px, 0, 0);
	}
	100% {
		-webkit-transform : none;
		transform         : none;
	}
}

@-webkit-keyframes motopress-modal-animation-bounceInLeft {
	0.00%,
	60%,
	75%,
	90%,
	100% {
		-webkit-animation-timing-function : cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function         : cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0.00% {
		opacity           : 0;
		-webkit-transform : translate3d(-3000px, 0, 0);
		transform         : translate3d(-3000px, 0, 0);
	}
	60% {
		opacity           : 1;
		-webkit-transform : translate3d(25px, 0, 0);
		transform         : translate3d(25px, 0, 0);
	}
	75% {
		-webkit-transform : translate3d(-10px, 0, 0);
		transform         : translate3d(-10px, 0, 0);
	}
	90% {
		-webkit-transform : translate3d(5px, 0, 0);
		transform         : translate3d(5px, 0, 0);
	}
	100% {
		-webkit-transform : none;
		transform         : none;
	}
}

@-webkit-keyframes motopress-modal-animation-bounceInLeft-bg {
	0.00%,
	60%,
	75%,
	90%,
	100% {
		-webkit-animation-timing-function : cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function         : cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0.00% {
		opacity           : 0;
		-webkit-transform : translate3d(-3000px, 0, 0);
		transform         : translate3d(-3000px, 0, 0);
	}
	60% {
		opacity           : 0.8;
		-webkit-transform : translate3d(25px, 0, 0);
		transform         : translate3d(25px, 0, 0);
	}
	75% {
		-webkit-transform : translate3d(-10px, 0, 0);
		transform         : translate3d(-10px, 0, 0);
	}
	90% {
		-webkit-transform : translate3d(5px, 0, 0);
		transform         : translate3d(5px, 0, 0);
	}
	100% {
		-webkit-transform : none;
		transform         : none;
	}
}

@keyframes motopress-modal-animation-bounceInLeft-bg {
	0.00%,
	60%,
	75%,
	90%,
	100% {
		-webkit-animation-timing-function : cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function         : cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0.00% {
		opacity           : 0;
		-webkit-transform : translate3d(-3000px, 0, 0);
		transform         : translate3d(-3000px, 0, 0);
	}
	60% {
		opacity           : 0.8;
		-webkit-transform : translate3d(25px, 0, 0);
		transform         : translate3d(25px, 0, 0);
	}
	75% {
		-webkit-transform : translate3d(-10px, 0, 0);
		transform         : translate3d(-10px, 0, 0);
	}
	90% {
		-webkit-transform : translate3d(5px, 0, 0);
		transform         : translate3d(5px, 0, 0);
	}
	100% {
		-webkit-transform : none;
		transform         : none;
	}
}

@keyframes motopress-modal-animation-bounceInRight {
	0.00%,
	60%,
	75%,
	90%,
	100% {
		-webkit-animation-timing-function : cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function         : cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0.00% {
		opacity           : 0;
		-webkit-transform : translate3d(3000px, 0, 0);
		transform         : translate3d(3000px, 0, 0);
	}
	60% {
		opacity           : 1;
		-webkit-transform : translate3d(-25px, 0, 0);
		transform         : translate3d(-25px, 0, 0);
	}
	75% {
		-webkit-transform : translate3d(10px, 0, 0);
		transform         : translate3d(10px, 0, 0);
	}
	90% {
		-webkit-transform : translate3d(-5px, 0, 0);
		transform         : translate3d(-5px, 0, 0);
	}
	100% {
		-webkit-transform : none;
		transform         : none;
	}
}

@-webkit-keyframes motopress-modal-animation-bounceInRight {
	0.00%,
	60%,
	75%,
	90%,
	100% {
		-webkit-animation-timing-function : cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function         : cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0.00% {
		opacity           : 0;
		-webkit-transform : translate3d(3000px, 0, 0);
		transform         : translate3d(3000px, 0, 0);
	}
	60% {
		opacity           : 1;
		-webkit-transform : translate3d(-25px, 0, 0);
		transform         : translate3d(-25px, 0, 0);
	}
	75% {
		-webkit-transform : translate3d(10px, 0, 0);
		transform         : translate3d(10px, 0, 0);
	}
	90% {
		-webkit-transform : translate3d(-5px, 0, 0);
		transform         : translate3d(-5px, 0, 0);
	}
	100% {
		-webkit-transform : none;
		transform         : none;
	}
}

@-webkit-keyframes motopress-modal-animation-bounceInRight-bg {
	0.00%,
	60%,
	75%,
	90%,
	100% {
		-webkit-animation-timing-function : cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function         : cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0.00% {
		opacity           : 0;
		-webkit-transform : translate3d(3000px, 0, 0);
		transform         : translate3d(3000px, 0, 0);
	}
	60% {
		opacity           : 0.8;
		-webkit-transform : translate3d(-25px, 0, 0);
		transform         : translate3d(-25px, 0, 0);
	}
	75% {
		-webkit-transform : translate3d(10px, 0, 0);
		transform         : translate3d(10px, 0, 0);
	}
	90% {
		-webkit-transform : translate3d(-5px, 0, 0);
		transform         : translate3d(-5px, 0, 0);
	}
	100% {
		-webkit-transform : none;
		transform         : none;
	}
}

@keyframes motopress-modal-animation-bounceInRight-bg {
	0.00%,
	60%,
	75%,
	90%,
	100% {
		-webkit-animation-timing-function : cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function         : cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0.00% {
		opacity           : 0;
		-webkit-transform : translate3d(3000px, 0, 0);
		transform         : translate3d(3000px, 0, 0);
	}
	60% {
		opacity           : 0.8;
		-webkit-transform : translate3d(-25px, 0, 0);
		transform         : translate3d(-25px, 0, 0);
	}
	75% {
		-webkit-transform : translate3d(10px, 0, 0);
		transform         : translate3d(10px, 0, 0);
	}
	90% {
		-webkit-transform : translate3d(-5px, 0, 0);
		transform         : translate3d(-5px, 0, 0);
	}
	100% {
		-webkit-transform : none;
		transform         : none;
	}
}

@keyframes motopress-modal-animation-bounceInUp {
	0.00%,
	60%,
	75%,
	90%,
	100% {
		-webkit-animation-timing-function : cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function         : cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0.00% {
		opacity           : 0;
		-webkit-transform : translate3d(0, 3000px, 0);
		transform         : translate3d(0, 3000px, 0);
	}
	60% {
		opacity           : 1;
		-webkit-transform : translate3d(0, -20px, 0);
		transform         : translate3d(0, -20px, 0);
	}
	75% {
		-webkit-transform : translate3d(0, 10px, 0);
		transform         : translate3d(0, 10px, 0);
	}
	90% {
		-webkit-transform : translate3d(0, -5px, 0);
		transform         : translate3d(0, -5px, 0);
	}
	100% {
		-webkit-transform : translate3d(0, 0, 0);
		transform         : translate3d(0, 0, 0);
	}
}

@-webkit-keyframes motopress-modal-animation-bounceInUp {
	0.00%,
	60%,
	75%,
	90%,
	100% {
		-webkit-animation-timing-function : cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function         : cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0.00% {
		opacity           : 0;
		-webkit-transform : translate3d(0, 3000px, 0);
		transform         : translate3d(0, 3000px, 0);
	}
	60% {
		opacity           : 1;
		-webkit-transform : translate3d(0, -20px, 0);
		transform         : translate3d(0, -20px, 0);
	}
	75% {
		-webkit-transform : translate3d(0, 10px, 0);
		transform         : translate3d(0, 10px, 0);
	}
	90% {
		-webkit-transform : translate3d(0, -5px, 0);
		transform         : translate3d(0, -5px, 0);
	}
	100% {
		-webkit-transform : translate3d(0, 0, 0);
		transform         : translate3d(0, 0, 0);
	}
}

@-webkit-keyframes motopress-modal-animation-bounceInUp-bg {
	0.00%,
	60%,
	75%,
	90%,
	100% {
		-webkit-animation-timing-function : cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function         : cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0.00% {
		opacity           : 0;
		-webkit-transform : translate3d(0, 3000px, 0);
		transform         : translate3d(0, 3000px, 0);
	}
	60% {
		opacity           : 0.8;
		-webkit-transform : translate3d(0, -20px, 0);
		transform         : translate3d(0, -20px, 0);
	}
	75% {
		-webkit-transform : translate3d(0, 10px, 0);
		transform         : translate3d(0, 10px, 0);
	}
	90% {
		-webkit-transform : translate3d(0, -5px, 0);
		transform         : translate3d(0, -5px, 0);
	}
	100% {
		-webkit-transform : translate3d(0, 0, 0);
		transform         : translate3d(0, 0, 0);
	}
}

@keyframes motopress-modal-animation-bounceInUp-bg {
	0.00%,
	60%,
	75%,
	90%,
	100% {
		-webkit-animation-timing-function : cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function         : cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0.00% {
		opacity           : 0;
		-webkit-transform : translate3d(0, 3000px, 0);
		transform         : translate3d(0, 3000px, 0);
	}
	60% {
		opacity           : 0.8;
		-webkit-transform : translate3d(0, -20px, 0);
		transform         : translate3d(0, -20px, 0);
	}
	75% {
		-webkit-transform : translate3d(0, 10px, 0);
		transform         : translate3d(0, 10px, 0);
	}
	90% {
		-webkit-transform : translate3d(0, -5px, 0);
		transform         : translate3d(0, -5px, 0);
	}
	100% {
		-webkit-transform : translate3d(0, 0, 0);
		transform         : translate3d(0, 0, 0);
	}
}

@keyframes motopress-modal-animation-fadeIn {
	0.00% {
		opacity : 0;
	}
	100% {
		opacity : 1;
	}
}

@-webkit-keyframes motopress-modal-animation-fadeIn {
	0.00% {
		opacity : 0;
	}
	100% {
		opacity : 1;
	}
}

@-webkit-keyframes motopress-modal-animation-fadeIn-bg {
	0.00% {
		opacity : 0;
	}
	100% {
		opacity : 0.8;
	}
}

@keyframes motopress-modal-animation-fadeIn-bg {
	0.00% {
		opacity : 0;
	}
	100% {
		opacity : 0.8;
	}
}

@keyframes motopress-modal-animation-fadeInDown {
	0.00% {
		opacity           : 0;
		-webkit-transform : translate3d(0, -100%, 0);
		transform         : translate3d(0, -100%, 0);
	}
	100% {
		opacity           : 1;
		-webkit-transform : none;
		transform         : none;
	}
}

@-webkit-keyframes motopress-modal-animation-fadeInDown {
	0.00% {
		opacity           : 0;
		-webkit-transform : translate3d(0, -100%, 0);
		transform         : translate3d(0, -100%, 0);
	}
	100% {
		opacity           : 1;
		-webkit-transform : none;
		transform         : none;
	}
}

@-webkit-keyframes motopress-modal-animation-fadeInDown-bg {
	0.00% {
		opacity           : 0;
		-webkit-transform : translate3d(0, -100%, 0);
		transform         : translate3d(0, -100%, 0);
	}
	100% {
		opacity           : 0.8;
		-webkit-transform : none;
		transform         : none;
	}
}

@keyframes motopress-modal-animation-fadeInDown-bg {
	0.00% {
		opacity           : 0;
		-webkit-transform : translate3d(0, -100%, 0);
		transform         : translate3d(0, -100%, 0);
	}
	100% {
		opacity           : 0.8;
		-webkit-transform : none;
		transform         : none;
	}
}

@keyframes motopress-modal-animation-fadeInDownBig {
	0.00% {
		opacity           : 0;
		-webkit-transform : translate3d(0, -2000px, 0);
		transform         : translate3d(0, -2000px, 0);
	}
	100% {
		opacity           : 1;
		-webkit-transform : none;
		transform         : none;
	}
}

@-webkit-keyframes motopress-modal-animation-fadeInDownBig {
	0.00% {
		opacity           : 0;
		-webkit-transform : translate3d(0, -2000px, 0);
		transform         : translate3d(0, -2000px, 0);
	}
	100% {
		opacity           : 1;
		-webkit-transform : none;
		transform         : none;
	}
}

@-webkit-keyframes motopress-modal-animation-fadeInDownBig-bg {
	0.00% {
		opacity           : 0;
		-webkit-transform : translate3d(0, -2000px, 0);
		transform         : translate3d(0, -2000px, 0);
	}
	100% {
		opacity           : 0.8;
		-webkit-transform : none;
		transform         : none;
	}
}

@keyframes motopress-modal-animation-fadeInDownBig-bg {
	0.00% {
		opacity           : 0;
		-webkit-transform : translate3d(0, -2000px, 0);
		transform         : translate3d(0, -2000px, 0);
	}
	100% {
		opacity           : 0.8;
		-webkit-transform : none;
		transform         : none;
	}
}

@keyframes motopress-modal-animation-fadeInLeft {
	0.00% {
		opacity           : 0;
		-webkit-transform : translate3d(-100%, 0, 0);
		transform         : translate3d(-100%, 0, 0);
	}
	100% {
		opacity           : 1;
		-webkit-transform : none;
		transform         : none;
	}
}

@-webkit-keyframes motopress-modal-animation-fadeInLeft {
	0.00% {
		opacity           : 0;
		-webkit-transform : translate3d(-100%, 0, 0);
		transform         : translate3d(-100%, 0, 0);
	}
	100% {
		opacity           : 1;
		-webkit-transform : none;
		transform         : none;
	}
}

@-webkit-keyframes motopress-modal-animation-fadeInLeft-bg {
	0.00% {
		opacity           : 0;
		-webkit-transform : translate3d(-100%, 0, 0);
		transform         : translate3d(-100%, 0, 0);
	}
	100% {
		opacity           : 0.8;
		-webkit-transform : none;
		transform         : none;
	}
}

@keyframes motopress-modal-animation-fadeInLeft-bg {
	0.00% {
		opacity           : 0;
		-webkit-transform : translate3d(-100%, 0, 0);
		transform         : translate3d(-100%, 0, 0);
	}
	100% {
		opacity           : 0.8;
		-webkit-transform : none;
		transform         : none;
	}
}

@keyframes motopress-modal-animation-fadeInLeftBig {
	0.00% {
		opacity           : 0;
		-webkit-transform : translate3d(-2000px, 0, 0);
		transform         : translate3d(-2000px, 0, 0);
	}
	100% {
		opacity           : 1;
		-webkit-transform : none;
		transform         : none;
	}
}

@-webkit-keyframes motopress-modal-animation-fadeInLeftBig {
	0.00% {
		opacity           : 0;
		-webkit-transform : translate3d(-2000px, 0, 0);
		transform         : translate3d(-2000px, 0, 0);
	}
	100% {
		opacity           : 1;
		-webkit-transform : none;
		transform         : none;
	}
}

@-webkit-keyframes motopress-modal-animation-fadeInLeftBig-bg {
	0.00% {
		opacity           : 0;
		-webkit-transform : translate3d(-2000px, 0, 0);
		transform         : translate3d(-2000px, 0, 0);
	}
	100% {
		opacity           : 0.8;
		-webkit-transform : none;
		transform         : none;
	}
}

@keyframes motopress-modal-animation-fadeInLeftBig-bg {
	0.00% {
		opacity           : 0;
		-webkit-transform : translate3d(-2000px, 0, 0);
		transform         : translate3d(-2000px, 0, 0);
	}
	100% {
		opacity           : 0.8;
		-webkit-transform : none;
		transform         : none;
	}
}

@keyframes motopress-modal-animation-fadeInRight {
	0.00% {
		opacity           : 0;
		-webkit-transform : translate3d(100%, 0, 0);
		transform         : translate3d(100%, 0, 0);
	}
	100% {
		opacity           : 1;
		-webkit-transform : none;
		transform         : none;
	}
}

@-webkit-keyframes motopress-modal-animation-fadeInRight {
	0.00% {
		opacity           : 0;
		-webkit-transform : translate3d(100%, 0, 0);
		transform         : translate3d(100%, 0, 0);
	}
	100% {
		opacity           : 1;
		-webkit-transform : none;
		transform         : none;
	}
}

@-webkit-keyframes motopress-modal-animation-fadeInRight-bg {
	0.00% {
		opacity           : 0;
		-webkit-transform : translate3d(100%, 0, 0);
		transform         : translate3d(100%, 0, 0);
	}
	100% {
		opacity           : 0.8;
		-webkit-transform : none;
		transform         : none;
	}
}

@keyframes motopress-modal-animation-fadeInRight-bg {
	0.00% {
		opacity           : 0;
		-webkit-transform : translate3d(100%, 0, 0);
		transform         : translate3d(100%, 0, 0);
	}
	100% {
		opacity           : 0.8;
		-webkit-transform : none;
		transform         : none;
	}
}

@keyframes motopress-modal-animation-fadeInRightBig {
	0.00% {
		opacity           : 0;
		-webkit-transform : translate3d(2000px, 0, 0);
		transform         : translate3d(2000px, 0, 0);
	}
	100% {
		opacity           : 1;
		-webkit-transform : none;
		transform         : none;
	}
}

@-webkit-keyframes motopress-modal-animation-fadeInRightBig {
	0.00% {
		opacity           : 0;
		-webkit-transform : translate3d(2000px, 0, 0);
		transform         : translate3d(2000px, 0, 0);
	}
	100% {
		opacity           : 1;
		-webkit-transform : none;
		transform         : none;
	}
}

@-webkit-keyframes motopress-modal-animation-fadeInRightBig-bg {
	0.00% {
		opacity           : 0;
		-webkit-transform : translate3d(2000px, 0, 0);
		transform         : translate3d(2000px, 0, 0);
	}
	100% {
		opacity           : 0.8;
		-webkit-transform : none;
		transform         : none;
	}
}

@keyframes motopress-modal-animation-fadeInRightBig-bg {
	0.00% {
		opacity           : 0;
		-webkit-transform : translate3d(2000px, 0, 0);
		transform         : translate3d(2000px, 0, 0);
	}
	100% {
		opacity           : 0.8;
		-webkit-transform : none;
		transform         : none;
	}
}

@keyframes motopress-modal-animation-fadeInUp {
	0.00% {
		opacity           : 0;
		-webkit-transform : translate3d(0, 100%, 0);
		transform         : translate3d(0, 100%, 0);
	}
	100% {
		opacity           : 1;
		-webkit-transform : none;
		transform         : none;
	}
}

@-webkit-keyframes motopress-modal-animation-fadeInUp {
	0.00% {
		opacity           : 0;
		-webkit-transform : translate3d(0, 100%, 0);
		transform         : translate3d(0, 100%, 0);
	}
	100% {
		opacity           : 1;
		-webkit-transform : none;
		transform         : none;
	}
}

@-webkit-keyframes motopress-modal-animation-fadeInUp-bg {
	0.00% {
		opacity           : 0;
		-webkit-transform : translate3d(0, 100%, 0);
		transform         : translate3d(0, 100%, 0);
	}
	100% {
		opacity           : 0.8;
		-webkit-transform : none;
		transform         : none;
	}
}

@keyframes motopress-modal-animation-fadeInUp-bg {
	0.00% {
		opacity           : 0;
		-webkit-transform : translate3d(0, 100%, 0);
		transform         : translate3d(0, 100%, 0);
	}
	100% {
		opacity           : 0.8;
		-webkit-transform : none;
		transform         : none;
	}
}

@keyframes motopress-modal-animation-fadeInUpBig {
	0.00% {
		opacity           : 0;
		-webkit-transform : translate3d(0, 2000px, 0);
		transform         : translate3d(0, 2000px, 0);
	}
	100% {
		opacity           : 1;
		-webkit-transform : none;
		transform         : none;
	}
}

@-webkit-keyframes motopress-modal-animation-fadeInUpBig {
	0.00% {
		opacity           : 0;
		-webkit-transform : translate3d(0, 2000px, 0);
		transform         : translate3d(0, 2000px, 0);
	}
	100% {
		opacity           : 1;
		-webkit-transform : none;
		transform         : none;
	}
}

@-webkit-keyframes motopress-modal-animation-fadeInUpBig-bg {
	0.00% {
		opacity           : 0;
		-webkit-transform : translate3d(0, 2000px, 0);
		transform         : translate3d(0, 2000px, 0);
	}
	100% {
		opacity           : 0.8;
		-webkit-transform : none;
		transform         : none;
	}
}

@keyframes motopress-modal-animation-fadeInUpBig-bg {
	0.00% {
		opacity           : 0;
		-webkit-transform : translate3d(0, 2000px, 0);
		transform         : translate3d(0, 2000px, 0);
	}
	100% {
		opacity           : 0.8;
		-webkit-transform : none;
		transform         : none;
	}
}

@keyframes motopress-modal-animation-flip {
	0.00% {
		-webkit-transform                 : perspective(400px) rotate3d(0, 1, 0, -360deg);
		transform                         : perspective(400px) rotate3d(0, 1, 0, -360deg);
		-webkit-animation-timing-function : ease-out;
		animation-timing-function         : ease-out;
	}
	40% {
		-webkit-transform                 : perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
		transform                         : perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
		-webkit-animation-timing-function : ease-out;
		animation-timing-function         : ease-out;
	}
	50% {
		-webkit-transform                 : perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
		transform                         : perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
		-webkit-animation-timing-function : ease-in;
		animation-timing-function         : ease-in;
	}
	80% {
		-webkit-transform                 : perspective(400px) scale3d(0.95, 0.95, 0.95);
		transform                         : perspective(400px) scale3d(0.95, 0.95, 0.95);
		-webkit-animation-timing-function : ease-in;
		animation-timing-function         : ease-in;
	}
	100% {
		-webkit-transform                 : perspective(400px);
		transform                         : perspective(400px);
		-webkit-animation-timing-function : ease-in;
		animation-timing-function         : ease-in;
	}
}

@-webkit-keyframes motopress-modal-animation-flip {
	0.00% {
		-webkit-transform                 : perspective(400px) rotate3d(0, 1, 0, -360deg);
		transform                         : perspective(400px) rotate3d(0, 1, 0, -360deg);
		-webkit-animation-timing-function : ease-out;
		animation-timing-function         : ease-out;
	}
	40% {
		-webkit-transform                 : perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
		transform                         : perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
		-webkit-animation-timing-function : ease-out;
		animation-timing-function         : ease-out;
	}
	50% {
		-webkit-transform                 : perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
		transform                         : perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
		-webkit-animation-timing-function : ease-in;
		animation-timing-function         : ease-in;
	}
	80% {
		-webkit-transform                 : perspective(400px) scale3d(0.95, 0.95, 0.95);
		transform                         : perspective(400px) scale3d(0.95, 0.95, 0.95);
		-webkit-animation-timing-function : ease-in;
		animation-timing-function         : ease-in;
	}
	100% {
		-webkit-transform                 : perspective(400px);
		transform                         : perspective(400px);
		-webkit-animation-timing-function : ease-in;
		animation-timing-function         : ease-in;
	}
}

@-webkit-keyframes motopress-modal-animation-flip-bg {
	0.00% {
		-webkit-transform                 : perspective(400px) rotate3d(0, 1, 0, -360deg);
		transform                         : perspective(400px) rotate3d(0, 1, 0, -360deg);
		-webkit-animation-timing-function : ease-out;
		animation-timing-function         : ease-out;
	}
	40% {
		-webkit-transform                 : perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
		transform                         : perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
		-webkit-animation-timing-function : ease-out;
		animation-timing-function         : ease-out;
	}
	50% {
		-webkit-transform                 : perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
		transform                         : perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
		-webkit-animation-timing-function : ease-in;
		animation-timing-function         : ease-in;
	}
	80% {
		-webkit-transform                 : perspective(400px) scale3d(0.95, 0.95, 0.95);
		transform                         : perspective(400px) scale3d(0.95, 0.95, 0.95);
		-webkit-animation-timing-function : ease-in;
		animation-timing-function         : ease-in;
	}
	100% {
		-webkit-transform                 : perspective(400px);
		transform                         : perspective(400px);
		-webkit-animation-timing-function : ease-in;
		animation-timing-function         : ease-in;
	}
}

@keyframes motopress-modal-animation-flip-bg {
	0.00% {
		-webkit-transform                 : perspective(400px) rotate3d(0, 1, 0, -360deg);
		transform                         : perspective(400px) rotate3d(0, 1, 0, -360deg);
		-webkit-animation-timing-function : ease-out;
		animation-timing-function         : ease-out;
	}
	40% {
		-webkit-transform                 : perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
		transform                         : perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
		-webkit-animation-timing-function : ease-out;
		animation-timing-function         : ease-out;
	}
	50% {
		-webkit-transform                 : perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
		transform                         : perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
		-webkit-animation-timing-function : ease-in;
		animation-timing-function         : ease-in;
	}
	80% {
		-webkit-transform                 : perspective(400px) scale3d(0.95, 0.95, 0.95);
		transform                         : perspective(400px) scale3d(0.95, 0.95, 0.95);
		-webkit-animation-timing-function : ease-in;
		animation-timing-function         : ease-in;
	}
	100% {
		-webkit-transform                 : perspective(400px);
		transform                         : perspective(400px);
		-webkit-animation-timing-function : ease-in;
		animation-timing-function         : ease-in;
	}
}

@keyframes motopress-modal-animation-flipInX {
	0.00% {
		-webkit-transform                 : perspective(400px) rotate3d(1, 0, 0, 90deg);
		transform                         : perspective(400px) rotate3d(1, 0, 0, 90deg);
		-webkit-animation-timing-function : ease-in;
		animation-timing-function         : ease-in;
		opacity                           : 0;
	}
	40% {
		-webkit-transform                 : perspective(400px) rotate3d(1, 0, 0, -20deg);
		transform                         : perspective(400px) rotate3d(1, 0, 0, -20deg);
		-webkit-animation-timing-function : ease-in;
		animation-timing-function         : ease-in;
	}
	60% {
		-webkit-transform : perspective(400px) rotate3d(1, 0, 0, 10deg);
		transform         : perspective(400px) rotate3d(1, 0, 0, 10deg);
		opacity           : 1;
	}
	80% {
		-webkit-transform : perspective(400px) rotate3d(1, 0, 0, -5deg);
		transform         : perspective(400px) rotate3d(1, 0, 0, -5deg);
	}
	100% {
		-webkit-transform : perspective(400px);
		transform         : perspective(400px);
	}
}

@-webkit-keyframes motopress-modal-animation-flipInX {
	0.00% {
		-webkit-transform                 : perspective(400px) rotate3d(1, 0, 0, 90deg);
		transform                         : perspective(400px) rotate3d(1, 0, 0, 90deg);
		-webkit-animation-timing-function : ease-in;
		animation-timing-function         : ease-in;
		opacity                           : 0;
	}
	40% {
		-webkit-transform                 : perspective(400px) rotate3d(1, 0, 0, -20deg);
		transform                         : perspective(400px) rotate3d(1, 0, 0, -20deg);
		-webkit-animation-timing-function : ease-in;
		animation-timing-function         : ease-in;
	}
	60% {
		-webkit-transform : perspective(400px) rotate3d(1, 0, 0, 10deg);
		transform         : perspective(400px) rotate3d(1, 0, 0, 10deg);
		opacity           : 1;
	}
	80% {
		-webkit-transform : perspective(400px) rotate3d(1, 0, 0, -5deg);
		transform         : perspective(400px) rotate3d(1, 0, 0, -5deg);
	}
	100% {
		-webkit-transform : perspective(400px);
		transform         : perspective(400px);
	}
}

@-webkit-keyframes motopress-modal-animation-flipInX-bg {
	0.00% {
		-webkit-transform                 : perspective(400px) rotate3d(1, 0, 0, 90deg);
		transform                         : perspective(400px) rotate3d(1, 0, 0, 90deg);
		-webkit-animation-timing-function : ease-in;
		animation-timing-function         : ease-in;
		opacity                           : 0;
	}
	40% {
		-webkit-transform                 : perspective(400px) rotate3d(1, 0, 0, -20deg);
		transform                         : perspective(400px) rotate3d(1, 0, 0, -20deg);
		-webkit-animation-timing-function : ease-in;
		animation-timing-function         : ease-in;
	}
	60% {
		-webkit-transform : perspective(400px) rotate3d(1, 0, 0, 10deg);
		transform         : perspective(400px) rotate3d(1, 0, 0, 10deg);
		opacity           : 0.8;
	}
	80% {
		-webkit-transform : perspective(400px) rotate3d(1, 0, 0, -5deg);
		transform         : perspective(400px) rotate3d(1, 0, 0, -5deg);
	}
	100% {
		-webkit-transform : perspective(400px);
		transform         : perspective(400px);
	}
}

@keyframes motopress-modal-animation-flipInX-bg {
	0.00% {
		-webkit-transform                 : perspective(400px) rotate3d(1, 0, 0, 90deg);
		transform                         : perspective(400px) rotate3d(1, 0, 0, 90deg);
		-webkit-animation-timing-function : ease-in;
		animation-timing-function         : ease-in;
		opacity                           : 0;
	}
	40% {
		-webkit-transform                 : perspective(400px) rotate3d(1, 0, 0, -20deg);
		transform                         : perspective(400px) rotate3d(1, 0, 0, -20deg);
		-webkit-animation-timing-function : ease-in;
		animation-timing-function         : ease-in;
	}
	60% {
		-webkit-transform : perspective(400px) rotate3d(1, 0, 0, 10deg);
		transform         : perspective(400px) rotate3d(1, 0, 0, 10deg);
		opacity           : 0.8;
	}
	80% {
		-webkit-transform : perspective(400px) rotate3d(1, 0, 0, -5deg);
		transform         : perspective(400px) rotate3d(1, 0, 0, -5deg);
	}
	100% {
		-webkit-transform : perspective(400px);
		transform         : perspective(400px);
	}
}

@keyframes motopress-modal-animation-flipInY {
	0.00% {
		-webkit-transform                 : perspective(400px) rotate3d(0, 1, 0, 90deg);
		transform                         : perspective(400px) rotate3d(0, 1, 0, 90deg);
		-webkit-animation-timing-function : ease-in;
		animation-timing-function         : ease-in;
		opacity                           : 0;
	}
	40% {
		-webkit-transform                 : perspective(400px) rotate3d(0, 1, 0, -20deg);
		transform                         : perspective(400px) rotate3d(0, 1, 0, -20deg);
		-webkit-animation-timing-function : ease-in;
		animation-timing-function         : ease-in;
	}
	60% {
		-webkit-transform : perspective(400px) rotate3d(0, 1, 0, 10deg);
		transform         : perspective(400px) rotate3d(0, 1, 0, 10deg);
		opacity           : 1;
	}
	80% {
		-webkit-transform : perspective(400px) rotate3d(0, 1, 0, -5deg);
		transform         : perspective(400px) rotate3d(0, 1, 0, -5deg);
	}
	100% {
		-webkit-transform : perspective(400px);
		transform         : perspective(400px);
	}
}

@-webkit-keyframes motopress-modal-animation-flipInY {
	0.00% {
		-webkit-transform                 : perspective(400px) rotate3d(0, 1, 0, 90deg);
		transform                         : perspective(400px) rotate3d(0, 1, 0, 90deg);
		-webkit-animation-timing-function : ease-in;
		animation-timing-function         : ease-in;
		opacity                           : 0;
	}
	40% {
		-webkit-transform                 : perspective(400px) rotate3d(0, 1, 0, -20deg);
		transform                         : perspective(400px) rotate3d(0, 1, 0, -20deg);
		-webkit-animation-timing-function : ease-in;
		animation-timing-function         : ease-in;
	}
	60% {
		-webkit-transform : perspective(400px) rotate3d(0, 1, 0, 10deg);
		transform         : perspective(400px) rotate3d(0, 1, 0, 10deg);
		opacity           : 1;
	}
	80% {
		-webkit-transform : perspective(400px) rotate3d(0, 1, 0, -5deg);
		transform         : perspective(400px) rotate3d(0, 1, 0, -5deg);
	}
	100% {
		-webkit-transform : perspective(400px);
		transform         : perspective(400px);
	}
}

@-webkit-keyframes motopress-modal-animation-flipInY-bg {
	0.00% {
		-webkit-transform                 : perspective(400px) rotate3d(0, 1, 0, 90deg);
		transform                         : perspective(400px) rotate3d(0, 1, 0, 90deg);
		-webkit-animation-timing-function : ease-in;
		animation-timing-function         : ease-in;
		opacity                           : 0;
	}
	40% {
		-webkit-transform                 : perspective(400px) rotate3d(0, 1, 0, -20deg);
		transform                         : perspective(400px) rotate3d(0, 1, 0, -20deg);
		-webkit-animation-timing-function : ease-in;
		animation-timing-function         : ease-in;
	}
	60% {
		-webkit-transform : perspective(400px) rotate3d(0, 1, 0, 10deg);
		transform         : perspective(400px) rotate3d(0, 1, 0, 10deg);
		opacity           : 0.8;
	}
	80% {
		-webkit-transform : perspective(400px) rotate3d(0, 1, 0, -5deg);
		transform         : perspective(400px) rotate3d(0, 1, 0, -5deg);
	}
	100% {
		-webkit-transform : perspective(400px);
		transform         : perspective(400px);
	}
}

@keyframes motopress-modal-animation-flipInY-bg {
	0.00% {
		-webkit-transform                 : perspective(400px) rotate3d(0, 1, 0, 90deg);
		transform                         : perspective(400px) rotate3d(0, 1, 0, 90deg);
		-webkit-animation-timing-function : ease-in;
		animation-timing-function         : ease-in;
		opacity                           : 0;
	}
	40% {
		-webkit-transform                 : perspective(400px) rotate3d(0, 1, 0, -20deg);
		transform                         : perspective(400px) rotate3d(0, 1, 0, -20deg);
		-webkit-animation-timing-function : ease-in;
		animation-timing-function         : ease-in;
	}
	60% {
		-webkit-transform : perspective(400px) rotate3d(0, 1, 0, 10deg);
		transform         : perspective(400px) rotate3d(0, 1, 0, 10deg);
		opacity           : 0.8;
	}
	80% {
		-webkit-transform : perspective(400px) rotate3d(0, 1, 0, -5deg);
		transform         : perspective(400px) rotate3d(0, 1, 0, -5deg);
	}
	100% {
		-webkit-transform : perspective(400px);
		transform         : perspective(400px);
	}
}

@keyframes motopress-modal-animation-lightSpeedIn {
	0.00% {
		-webkit-transform : translate3d(100%, 0, 0) skewX(-30deg);
		transform         : translate3d(100%, 0, 0) skewX(-30deg);
		opacity           : 0;
	}
	60% {
		-webkit-transform : skewX(20deg);
		transform         : skewX(20deg);
		opacity           : 1;
	}
	80% {
		-webkit-transform : skewX(-5deg);
		transform         : skewX(-5deg);
		opacity           : 1;
	}
	100% {
		-webkit-transform : none;
		transform         : none;
		opacity           : 1;
	}
}

@-webkit-keyframes motopress-modal-animation-lightSpeedIn {
	0.00% {
		-webkit-transform : translate3d(100%, 0, 0) skewX(-30deg);
		transform         : translate3d(100%, 0, 0) skewX(-30deg);
		opacity           : 0;
	}
	60% {
		-webkit-transform : skewX(20deg);
		transform         : skewX(20deg);
		opacity           : 1;
	}
	80% {
		-webkit-transform : skewX(-5deg);
		transform         : skewX(-5deg);
		opacity           : 1;
	}
	100% {
		-webkit-transform : none;
		transform         : none;
		opacity           : 1;
	}
}

@-webkit-keyframes motopress-modal-animation-lightSpeedIn-bg {
	0.00% {
		-webkit-transform : translate3d(100%, 0, 0) skewX(-30deg);
		transform         : translate3d(100%, 0, 0) skewX(-30deg);
		opacity           : 0;
	}
	60% {
		-webkit-transform : skewX(20deg);
		transform         : skewX(20deg);
		opacity           : 0.8;
	}
	80% {
		-webkit-transform : skewX(-5deg);
		transform         : skewX(-5deg);
		opacity           : 0.8;
	}
	100% {
		-webkit-transform : none;
		transform         : none;
		opacity           : 0.8;
	}
}

@keyframes motopress-modal-animation-lightSpeedIn-bg {
	0.00% {
		-webkit-transform : translate3d(100%, 0, 0) skewX(-30deg);
		transform         : translate3d(100%, 0, 0) skewX(-30deg);
		opacity           : 0;
	}
	60% {
		-webkit-transform : skewX(20deg);
		transform         : skewX(20deg);
		opacity           : 0.8;
	}
	80% {
		-webkit-transform : skewX(-5deg);
		transform         : skewX(-5deg);
		opacity           : 0.8;
	}
	100% {
		-webkit-transform : none;
		transform         : none;
		opacity           : 0.8;
	}
}

@keyframes motopress-modal-animation-rotateIn {
	0.00% {
		-webkit-transform-origin : center;
		transform-origin         : center;
		-webkit-transform        : rotate3d(0, 0, 1, -200deg);
		transform                : rotate3d(0, 0, 1, -200deg);
		opacity                  : 0;
	}
	100% {
		-webkit-transform-origin : center;
		transform-origin         : center;
		-webkit-transform        : none;
		transform                : none;
		opacity                  : 1;
	}
}

@-webkit-keyframes motopress-modal-animation-rotateIn {
	0.00% {
		-webkit-transform-origin : center;
		transform-origin         : center;
		-webkit-transform        : rotate3d(0, 0, 1, -200deg);
		transform                : rotate3d(0, 0, 1, -200deg);
		opacity                  : 0;
	}
	100% {
		-webkit-transform-origin : center;
		transform-origin         : center;
		-webkit-transform        : none;
		transform                : none;
		opacity                  : 1;
	}
}

@-webkit-keyframes motopress-modal-animation-rotateIn-bg {
	0.00% {
		-webkit-transform-origin : center;
		transform-origin         : center;
		-webkit-transform        : rotate3d(0, 0, 1, -200deg);
		transform                : rotate3d(0, 0, 1, -200deg);
		opacity                  : 0;
	}
	100% {
		-webkit-transform-origin : center;
		transform-origin         : center;
		-webkit-transform        : none;
		transform                : none;
		opacity                  : 0.8;
	}
}

@keyframes motopress-modal-animation-rotateIn-bg {
	0.00% {
		-webkit-transform-origin : center;
		transform-origin         : center;
		-webkit-transform        : rotate3d(0, 0, 1, -200deg);
		transform                : rotate3d(0, 0, 1, -200deg);
		opacity                  : 0;
	}
	100% {
		-webkit-transform-origin : center;
		transform-origin         : center;
		-webkit-transform        : none;
		transform                : none;
		opacity                  : 0.8;
	}
}

@keyframes motopress-modal-animation-rotateInDownLeft {
	0.00% {
		-webkit-transform-origin : left bottom;
		transform-origin         : left bottom;
		-webkit-transform        : rotate3d(0, 0, 1, -45deg);
		transform                : rotate3d(0, 0, 1, -45deg);
		opacity                  : 0;
	}
	100% {
		-webkit-transform-origin : left bottom;
		transform-origin         : left bottom;
		-webkit-transform        : none;
		transform                : none;
		opacity                  : 1;
	}
}

@-webkit-keyframes motopress-modal-animation-rotateInDownLeft {
	0.00% {
		-webkit-transform-origin : left bottom;
		transform-origin         : left bottom;
		-webkit-transform        : rotate3d(0, 0, 1, -45deg);
		transform                : rotate3d(0, 0, 1, -45deg);
		opacity                  : 0;
	}
	100% {
		-webkit-transform-origin : left bottom;
		transform-origin         : left bottom;
		-webkit-transform        : none;
		transform                : none;
		opacity                  : 1;
	}
}

@-webkit-keyframes motopress-modal-animation-rotateInDownLeft-bg {
	0.00% {
		-webkit-transform-origin : left bottom;
		transform-origin         : left bottom;
		-webkit-transform        : rotate3d(0, 0, 1, -45deg);
		transform                : rotate3d(0, 0, 1, -45deg);
		opacity                  : 0;
	}
	100% {
		-webkit-transform-origin : left bottom;
		transform-origin         : left bottom;
		-webkit-transform        : none;
		transform                : none;
		opacity                  : 0.8;
	}
}

@keyframes motopress-modal-animation-rotateInDownLeft-bg {
	0.00% {
		-webkit-transform-origin : left bottom;
		transform-origin         : left bottom;
		-webkit-transform        : rotate3d(0, 0, 1, -45deg);
		transform                : rotate3d(0, 0, 1, -45deg);
		opacity                  : 0;
	}
	100% {
		-webkit-transform-origin : left bottom;
		transform-origin         : left bottom;
		-webkit-transform        : none;
		transform                : none;
		opacity                  : 0.8;
	}
}

@keyframes motopress-modal-animation-rotateInDownRight {
	0.00% {
		-webkit-transform-origin : right bottom;
		transform-origin         : right bottom;
		-webkit-transform        : rotate3d(0, 0, 1, 45deg);
		transform                : rotate3d(0, 0, 1, 45deg);
		opacity                  : 0;
	}
	100% {
		-webkit-transform-origin : right bottom;
		transform-origin         : right bottom;
		-webkit-transform        : none;
		transform                : none;
		opacity                  : 1;
	}
}

@-webkit-keyframes motopress-modal-animation-rotateInDownRight {
	0.00% {
		-webkit-transform-origin : right bottom;
		transform-origin         : right bottom;
		-webkit-transform        : rotate3d(0, 0, 1, 45deg);
		transform                : rotate3d(0, 0, 1, 45deg);
		opacity                  : 0;
	}
	100% {
		-webkit-transform-origin : right bottom;
		transform-origin         : right bottom;
		-webkit-transform        : none;
		transform                : none;
		opacity                  : 1;
	}
}

@-webkit-keyframes motopress-modal-animation-rotateInDownRight-bg {
	0.00% {
		-webkit-transform-origin : right bottom;
		transform-origin         : right bottom;
		-webkit-transform        : rotate3d(0, 0, 1, 45deg);
		transform                : rotate3d(0, 0, 1, 45deg);
		opacity                  : 0;
	}
	100% {
		-webkit-transform-origin : right bottom;
		transform-origin         : right bottom;
		-webkit-transform        : none;
		transform                : none;
		opacity                  : 0.8;
	}
}

@keyframes motopress-modal-animation-rotateInDownRight-bg {
	0.00% {
		-webkit-transform-origin : right bottom;
		transform-origin         : right bottom;
		-webkit-transform        : rotate3d(0, 0, 1, 45deg);
		transform                : rotate3d(0, 0, 1, 45deg);
		opacity                  : 0;
	}
	100% {
		-webkit-transform-origin : right bottom;
		transform-origin         : right bottom;
		-webkit-transform        : none;
		transform                : none;
		opacity                  : 0.8;
	}
}

@keyframes motopress-modal-animation-rotateInUpLeft {
	0.00% {
		-webkit-transform-origin : left bottom;
		transform-origin         : left bottom;
		-webkit-transform        : rotate3d(0, 0, 1, 45deg);
		transform                : rotate3d(0, 0, 1, 45deg);
		opacity                  : 0;
	}
	100% {
		-webkit-transform-origin : left bottom;
		transform-origin         : left bottom;
		-webkit-transform        : none;
		transform                : none;
		opacity                  : 1;
	}
}

@-webkit-keyframes motopress-modal-animation-rotateInUpLeft {
	0.00% {
		-webkit-transform-origin : left bottom;
		transform-origin         : left bottom;
		-webkit-transform        : rotate3d(0, 0, 1, 45deg);
		transform                : rotate3d(0, 0, 1, 45deg);
		opacity                  : 0;
	}
	100% {
		-webkit-transform-origin : left bottom;
		transform-origin         : left bottom;
		-webkit-transform        : none;
		transform                : none;
		opacity                  : 1;
	}
}

@-webkit-keyframes motopress-modal-animation-rotateInUpLeft-bg {
	0.00% {
		-webkit-transform-origin : left bottom;
		transform-origin         : left bottom;
		-webkit-transform        : rotate3d(0, 0, 1, 45deg);
		transform                : rotate3d(0, 0, 1, 45deg);
		opacity                  : 0;
	}
	100% {
		-webkit-transform-origin : left bottom;
		transform-origin         : left bottom;
		-webkit-transform        : none;
		transform                : none;
		opacity                  : 0.8;
	}
}

@keyframes motopress-modal-animation-rotateInUpLeft-bg {
	0.00% {
		-webkit-transform-origin : left bottom;
		transform-origin         : left bottom;
		-webkit-transform        : rotate3d(0, 0, 1, 45deg);
		transform                : rotate3d(0, 0, 1, 45deg);
		opacity                  : 0;
	}
	100% {
		-webkit-transform-origin : left bottom;
		transform-origin         : left bottom;
		-webkit-transform        : none;
		transform                : none;
		opacity                  : 0.8;
	}
}

@keyframes motopress-modal-animation-rotateInUpRight {
	0.00% {
		-webkit-transform-origin : right bottom;
		transform-origin         : right bottom;
		-webkit-transform        : rotate3d(0, 0, 1, -90deg);
		transform                : rotate3d(0, 0, 1, -90deg);
		opacity                  : 0;
	}
	100% {
		-webkit-transform-origin : right bottom;
		transform-origin         : right bottom;
		-webkit-transform        : none;
		transform                : none;
		opacity                  : 1;
	}
}

@-webkit-keyframes motopress-modal-animation-rotateInUpRight {
	0.00% {
		-webkit-transform-origin : right bottom;
		transform-origin         : right bottom;
		-webkit-transform        : rotate3d(0, 0, 1, -90deg);
		transform                : rotate3d(0, 0, 1, -90deg);
		opacity                  : 0;
	}
	100% {
		-webkit-transform-origin : right bottom;
		transform-origin         : right bottom;
		-webkit-transform        : none;
		transform                : none;
		opacity                  : 1;
	}
}

@-webkit-keyframes motopress-modal-animation-rotateInUpRight-bg {
	0.00% {
		-webkit-transform-origin : right bottom;
		transform-origin         : right bottom;
		-webkit-transform        : rotate3d(0, 0, 1, -90deg);
		transform                : rotate3d(0, 0, 1, -90deg);
		opacity                  : 0;
	}
	100% {
		-webkit-transform-origin : right bottom;
		transform-origin         : right bottom;
		-webkit-transform        : none;
		transform                : none;
		opacity                  : 0.8;
	}
}

@keyframes motopress-modal-animation-rotateInUpRight-bg {
	0.00% {
		-webkit-transform-origin : right bottom;
		transform-origin         : right bottom;
		-webkit-transform        : rotate3d(0, 0, 1, -90deg);
		transform                : rotate3d(0, 0, 1, -90deg);
		opacity                  : 0;
	}
	100% {
		-webkit-transform-origin : right bottom;
		transform-origin         : right bottom;
		-webkit-transform        : none;
		transform                : none;
		opacity                  : 0.8;
	}
}

@keyframes motopress-modal-animation-rollIn {
	0.00% {
		opacity           : 0;
		-webkit-transform : translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
		transform         : translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
	}
	100% {
		opacity           : 1;
		-webkit-transform : none;
		transform         : none;
	}
}

@-webkit-keyframes motopress-modal-animation-rollIn {
	0.00% {
		opacity           : 0;
		-webkit-transform : translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
		transform         : translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
	}
	100% {
		opacity           : 1;
		-webkit-transform : none;
		transform         : none;
	}
}

@-webkit-keyframes motopress-modal-animation-rollIn-bg {
	0.00% {
		opacity           : 0;
		-webkit-transform : translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
		transform         : translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
	}
	100% {
		opacity           : 0.8;
		-webkit-transform : none;
		transform         : none;
	}
}

@keyframes motopress-modal-animation-rollIn-bg {
	0.00% {
		opacity           : 0;
		-webkit-transform : translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
		transform         : translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
	}
	100% {
		opacity           : 0.8;
		-webkit-transform : none;
		transform         : none;
	}
}

@keyframes motopress-modal-animation-zoomIn {
	0.00% {
		opacity           : 0;
		-webkit-transform : scale3d(0.3, 0.3, 0.3);
		transform         : scale3d(0.3, 0.3, 0.3);
	}
	50% {
		opacity : 1;
	}
}

@-webkit-keyframes motopress-modal-animation-zoomIn {
	0.00% {
		opacity           : 0;
		-webkit-transform : scale3d(0.3, 0.3, 0.3);
		transform         : scale3d(0.3, 0.3, 0.3);
	}
	50% {
		opacity : 1;
	}
}

@-webkit-keyframes motopress-modal-animation-zoomIn-bg {
	0.00% {
		opacity           : 0;
		-webkit-transform : scale3d(0.3, 0.3, 0.3);
		transform         : scale3d(0.3, 0.3, 0.3);
	}
	50% {
		opacity : 0.8;
	}
}

@keyframes motopress-modal-animation-zoomIn-bg {
	0.00% {
		opacity           : 0;
		-webkit-transform : scale3d(0.3, 0.3, 0.3);
		transform         : scale3d(0.3, 0.3, 0.3);
	}
	50% {
		opacity : 0.8;
	}
}

@keyframes motopress-modal-animation-zoomInDown {
	0.00% {
		opacity                           : 0;
		-webkit-transform                 : scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
		transform                         : scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
		-webkit-animation-timing-function : cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function         : cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	60% {
		opacity                           : 1;
		-webkit-transform                 : scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		transform                         : scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		-webkit-animation-timing-function : cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function         : cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}

@-webkit-keyframes motopress-modal-animation-zoomInDown {
	0.00% {
		opacity                           : 0;
		-webkit-transform                 : scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
		transform                         : scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
		-webkit-animation-timing-function : cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function         : cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	60% {
		opacity                           : 1;
		-webkit-transform                 : scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		transform                         : scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		-webkit-animation-timing-function : cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function         : cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}

@-webkit-keyframes motopress-modal-animation-zoomInDown-bg {
	0.00% {
		opacity                           : 0;
		-webkit-transform                 : scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
		transform                         : scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
		-webkit-animation-timing-function : cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function         : cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	60% {
		opacity                           : 0.8;
		-webkit-transform                 : scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		transform                         : scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		-webkit-animation-timing-function : cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function         : cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}

@keyframes motopress-modal-animation-zoomInDown-bg {
	0.00% {
		opacity                           : 0;
		-webkit-transform                 : scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
		transform                         : scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
		-webkit-animation-timing-function : cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function         : cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	60% {
		opacity                           : 0.8;
		-webkit-transform                 : scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		transform                         : scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		-webkit-animation-timing-function : cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function         : cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}

@keyframes motopress-modal-animation-zoomInLeft {
	0.00% {
		opacity                           : 0;
		-webkit-transform                 : scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
		transform                         : scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
		-webkit-animation-timing-function : cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function         : cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	60% {
		opacity                           : 1;
		-webkit-transform                 : scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
		transform                         : scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
		-webkit-animation-timing-function : cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function         : cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}

@-webkit-keyframes motopress-modal-animation-zoomInLeft {
	0.00% {
		opacity                           : 0;
		-webkit-transform                 : scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
		transform                         : scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
		-webkit-animation-timing-function : cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function         : cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	60% {
		opacity                           : 1;
		-webkit-transform                 : scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
		transform                         : scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
		-webkit-animation-timing-function : cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function         : cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}

@-webkit-keyframes motopress-modal-animation-zoomInLeft-bg {
	0.00% {
		opacity                           : 0;
		-webkit-transform                 : scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
		transform                         : scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
		-webkit-animation-timing-function : cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function         : cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	60% {
		opacity                           : 0.8;
		-webkit-transform                 : scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
		transform                         : scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
		-webkit-animation-timing-function : cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function         : cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}

@keyframes motopress-modal-animation-zoomInLeft-bg {
	0.00% {
		opacity                           : 0;
		-webkit-transform                 : scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
		transform                         : scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
		-webkit-animation-timing-function : cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function         : cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	60% {
		opacity                           : 0.8;
		-webkit-transform                 : scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
		transform                         : scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
		-webkit-animation-timing-function : cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function         : cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}

@keyframes motopress-modal-animation-zoomInRight {
	0.00% {
		opacity                           : 0;
		-webkit-transform                 : scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
		transform                         : scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
		-webkit-animation-timing-function : cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function         : cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	60% {
		opacity                           : 1;
		-webkit-transform                 : scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
		transform                         : scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
		-webkit-animation-timing-function : cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function         : cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}

@-webkit-keyframes motopress-modal-animation-zoomInRight {
	0.00% {
		opacity                           : 0;
		-webkit-transform                 : scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
		transform                         : scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
		-webkit-animation-timing-function : cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function         : cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	60% {
		opacity                           : 1;
		-webkit-transform                 : scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
		transform                         : scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
		-webkit-animation-timing-function : cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function         : cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}

@-webkit-keyframes motopress-modal-animation-zoomInRight-bg {
	0.00% {
		opacity                           : 0;
		-webkit-transform                 : scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
		transform                         : scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
		-webkit-animation-timing-function : cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function         : cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	60% {
		opacity                           : 0.8;
		-webkit-transform                 : scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
		transform                         : scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
		-webkit-animation-timing-function : cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function         : cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}

@keyframes motopress-modal-animation-zoomInRight-bg {
	0.00% {
		opacity                           : 0;
		-webkit-transform                 : scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
		transform                         : scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
		-webkit-animation-timing-function : cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function         : cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	60% {
		opacity                           : 0.8;
		-webkit-transform                 : scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
		transform                         : scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
		-webkit-animation-timing-function : cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function         : cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}

@keyframes motopress-modal-animation-zoomInUp {
	0.00% {
		opacity                           : 0;
		-webkit-transform                 : scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
		transform                         : scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
		-webkit-animation-timing-function : cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function         : cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	60% {
		opacity                           : 1;
		-webkit-transform                 : scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		transform                         : scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		-webkit-animation-timing-function : cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function         : cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}

@-webkit-keyframes motopress-modal-animation-zoomInUp {
	0.00% {
		opacity                           : 0;
		-webkit-transform                 : scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
		transform                         : scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
		-webkit-animation-timing-function : cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function         : cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	60% {
		opacity                           : 1;
		-webkit-transform                 : scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		transform                         : scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		-webkit-animation-timing-function : cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function         : cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}

@-webkit-keyframes motopress-modal-animation-zoomInUp-bg {
	0.00% {
		opacity                           : 0;
		-webkit-transform                 : scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
		transform                         : scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
		-webkit-animation-timing-function : cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function         : cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	60% {
		opacity                           : 0.8;
		-webkit-transform                 : scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		transform                         : scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		-webkit-animation-timing-function : cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function         : cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}

@keyframes motopress-modal-animation-zoomInUp-bg {
	0.00% {
		opacity                           : 0;
		-webkit-transform                 : scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
		transform                         : scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
		-webkit-animation-timing-function : cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function         : cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	60% {
		opacity                           : 0.8;
		-webkit-transform                 : scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		transform                         : scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		-webkit-animation-timing-function : cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function         : cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}

@keyframes motopress-modal-animation-slideInDown {
	0.00% {
		-webkit-transform : translate3d(0, -100%, 0);
		transform         : translate3d(0, -100%, 0);
		visibility        : visible;
	}
	100% {
		-webkit-transform : translate3d(0, 0, 0);
		transform         : translate3d(0, 0, 0);
	}
}

@-webkit-keyframes motopress-modal-animation-slideInDown {
	0.00% {
		-webkit-transform : translate3d(0, -100%, 0);
		transform         : translate3d(0, -100%, 0);
		visibility        : visible;
	}
	100% {
		-webkit-transform : translate3d(0, 0, 0);
		transform         : translate3d(0, 0, 0);
	}
}

@-webkit-keyframes motopress-modal-animation-slideInDown-bg {
	0.00% {
		-webkit-transform : translate3d(0, -100%, 0);
		transform         : translate3d(0, -100%, 0);
		visibility        : visible;
	}
	100% {
		-webkit-transform : translate3d(0, 0, 0);
		transform         : translate3d(0, 0, 0);
	}
}

@keyframes motopress-modal-animation-slideInDown-bg {
	0.00% {
		-webkit-transform : translate3d(0, -100%, 0);
		transform         : translate3d(0, -100%, 0);
		visibility        : visible;
	}
	100% {
		-webkit-transform : translate3d(0, 0, 0);
		transform         : translate3d(0, 0, 0);
	}
}

@keyframes motopress-modal-animation-slideInLeft {
	0.00% {
		-webkit-transform : translate3d(-100%, 0, 0);
		transform         : translate3d(-100%, 0, 0);
		visibility        : visible;
	}
	100% {
		-webkit-transform : translate3d(0, 0, 0);
		transform         : translate3d(0, 0, 0);
	}
}

@-webkit-keyframes motopress-modal-animation-slideInLeft {
	0.00% {
		-webkit-transform : translate3d(-100%, 0, 0);
		transform         : translate3d(-100%, 0, 0);
		visibility        : visible;
	}
	100% {
		-webkit-transform : translate3d(0, 0, 0);
		transform         : translate3d(0, 0, 0);
	}
}

@-webkit-keyframes motopress-modal-animation-slideInLeft-bg {
	0.00% {
		-webkit-transform : translate3d(-100%, 0, 0);
		transform         : translate3d(-100%, 0, 0);
		visibility        : visible;
	}
	100% {
		-webkit-transform : translate3d(0, 0, 0);
		transform         : translate3d(0, 0, 0);
	}
}

@keyframes motopress-modal-animation-slideInLeft-bg {
	0.00% {
		-webkit-transform : translate3d(-100%, 0, 0);
		transform         : translate3d(-100%, 0, 0);
		visibility        : visible;
	}
	100% {
		-webkit-transform : translate3d(0, 0, 0);
		transform         : translate3d(0, 0, 0);
	}
}

@keyframes motopress-modal-animation-slideInRight {
	0.00% {
		-webkit-transform : translate3d(100%, 0, 0);
		transform         : translate3d(100%, 0, 0);
		visibility        : visible;
	}
	100% {
		-webkit-transform : translate3d(0, 0, 0);
		transform         : translate3d(0, 0, 0);
	}
}

@-webkit-keyframes motopress-modal-animation-slideInRight {
	0.00% {
		-webkit-transform : translate3d(100%, 0, 0);
		transform         : translate3d(100%, 0, 0);
		visibility        : visible;
	}
	100% {
		-webkit-transform : translate3d(0, 0, 0);
		transform         : translate3d(0, 0, 0);
	}
}

@-webkit-keyframes motopress-modal-animation-slideInRight-bg {
	0.00% {
		-webkit-transform : translate3d(100%, 0, 0);
		transform         : translate3d(100%, 0, 0);
		visibility        : visible;
	}
	100% {
		-webkit-transform : translate3d(0, 0, 0);
		transform         : translate3d(0, 0, 0);
	}
}

@keyframes motopress-modal-animation-slideInRight-bg {
	0.00% {
		-webkit-transform : translate3d(100%, 0, 0);
		transform         : translate3d(100%, 0, 0);
		visibility        : visible;
	}
	100% {
		-webkit-transform : translate3d(0, 0, 0);
		transform         : translate3d(0, 0, 0);
	}
}

@keyframes motopress-modal-animation-slideInUp {
	0.00% {
		-webkit-transform : translate3d(0, 100%, 0);
		transform         : translate3d(0, 100%, 0);
		visibility        : visible;
	}
	100% {
		-webkit-transform : translate3d(0, 0, 0);
		transform         : translate3d(0, 0, 0);
	}
}

@-webkit-keyframes motopress-modal-animation-slideInUp {
	0.00% {
		-webkit-transform : translate3d(0, 100%, 0);
		transform         : translate3d(0, 100%, 0);
		visibility        : visible;
	}
	100% {
		-webkit-transform : translate3d(0, 0, 0);
		transform         : translate3d(0, 0, 0);
	}
}

@-webkit-keyframes motopress-modal-animation-slideInUp-bg {
	0.00% {
		-webkit-transform : translate3d(0, 100%, 0);
		transform         : translate3d(0, 100%, 0);
		visibility        : visible;
	}
	100% {
		-webkit-transform : translate3d(0, 0, 0);
		transform         : translate3d(0, 0, 0);
	}
}

@keyframes motopress-modal-animation-slideInUp-bg {
	0.00% {
		-webkit-transform : translate3d(0, 100%, 0);
		transform         : translate3d(0, 100%, 0);
		visibility        : visible;
	}
	100% {
		-webkit-transform : translate3d(0, 0, 0);
		transform         : translate3d(0, 0, 0);
	}
}

@keyframes motopress-modal-animation-bounceOut {
	20% {
		-webkit-transform : scale3d(0.9, 0.9, 0.9);
		transform         : scale3d(0.9, 0.9, 0.9);
	}
	50%,
	55% {
		opacity           : 1;
		-webkit-transform : scale3d(1.1, 1.1, 1.1);
		transform         : scale3d(1.1, 1.1, 1.1);
	}
	100% {
		opacity           : 0;
		-webkit-transform : scale3d(0.3, 0.3, 0.3);
		transform         : scale3d(0.3, 0.3, 0.3);
	}
}

@-webkit-keyframes motopress-modal-animation-bounceOut {
	20% {
		-webkit-transform : scale3d(0.9, 0.9, 0.9);
		transform         : scale3d(0.9, 0.9, 0.9);
	}
	50%,
	55% {
		opacity           : 1;
		-webkit-transform : scale3d(1.1, 1.1, 1.1);
		transform         : scale3d(1.1, 1.1, 1.1);
	}
	100% {
		opacity           : 0;
		-webkit-transform : scale3d(0.3, 0.3, 0.3);
		transform         : scale3d(0.3, 0.3, 0.3);
	}
}

@-webkit-keyframes motopress-modal-animation-bounceOut-bg {
	20% {
		-webkit-transform : scale3d(0.9, 0.9, 0.9);
		transform         : scale3d(0.9, 0.9, 0.9);
	}
	50%,
	55% {
		opacity           : 0.8;
		-webkit-transform : scale3d(1.1, 1.1, 1.1);
		transform         : scale3d(1.1, 1.1, 1.1);
	}
	100% {
		opacity           : 0;
		-webkit-transform : scale3d(0.3, 0.3, 0.3);
		transform         : scale3d(0.3, 0.3, 0.3);
	}
}

@keyframes motopress-modal-animation-bounceOut-bg {
	20% {
		-webkit-transform : scale3d(0.9, 0.9, 0.9);
		transform         : scale3d(0.9, 0.9, 0.9);
	}
	50%,
	55% {
		opacity           : 0.8;
		-webkit-transform : scale3d(1.1, 1.1, 1.1);
		transform         : scale3d(1.1, 1.1, 1.1);
	}
	100% {
		opacity           : 0;
		-webkit-transform : scale3d(0.3, 0.3, 0.3);
		transform         : scale3d(0.3, 0.3, 0.3);
	}
}

@keyframes motopress-modal-animation-bounceOutDown {
	20% {
		-webkit-transform : translate3d(0, 10px, 0);
		transform         : translate3d(0, 10px, 0);
	}
	40%,
	45% {
		opacity           : 1;
		-webkit-transform : translate3d(0, -20px, 0);
		transform         : translate3d(0, -20px, 0);
	}
	100% {
		opacity           : 0;
		-webkit-transform : translate3d(0, 2000px, 0);
		transform         : translate3d(0, 2000px, 0);
	}
}

@-webkit-keyframes motopress-modal-animation-bounceOutDown {
	20% {
		-webkit-transform : translate3d(0, 10px, 0);
		transform         : translate3d(0, 10px, 0);
	}
	40%,
	45% {
		opacity           : 1;
		-webkit-transform : translate3d(0, -20px, 0);
		transform         : translate3d(0, -20px, 0);
	}
	100% {
		opacity           : 0;
		-webkit-transform : translate3d(0, 2000px, 0);
		transform         : translate3d(0, 2000px, 0);
	}
}

@-webkit-keyframes motopress-modal-animation-bounceOutDown-bg {
	20% {
		-webkit-transform : translate3d(0, 10px, 0);
		transform         : translate3d(0, 10px, 0);
	}
	40%,
	45% {
		opacity           : 0.8;
		-webkit-transform : translate3d(0, -20px, 0);
		transform         : translate3d(0, -20px, 0);
	}
	100% {
		opacity           : 0;
		-webkit-transform : translate3d(0, 2000px, 0);
		transform         : translate3d(0, 2000px, 0);
	}
}

@keyframes motopress-modal-animation-bounceOutDown-bg {
	20% {
		-webkit-transform : translate3d(0, 10px, 0);
		transform         : translate3d(0, 10px, 0);
	}
	40%,
	45% {
		opacity           : 0.8;
		-webkit-transform : translate3d(0, -20px, 0);
		transform         : translate3d(0, -20px, 0);
	}
	100% {
		opacity           : 0;
		-webkit-transform : translate3d(0, 2000px, 0);
		transform         : translate3d(0, 2000px, 0);
	}
}

@keyframes motopress-modal-animation-bounceOutLeft {
	20% {
		opacity           : 1;
		-webkit-transform : translate3d(20px, 0, 0);
		transform         : translate3d(20px, 0, 0);
	}
	100% {
		opacity           : 0;
		-webkit-transform : translate3d(-2000px, 0, 0);
		transform         : translate3d(-2000px, 0, 0);
	}
}

@-webkit-keyframes motopress-modal-animation-bounceOutLeft {
	20% {
		opacity           : 1;
		-webkit-transform : translate3d(20px, 0, 0);
		transform         : translate3d(20px, 0, 0);
	}
	100% {
		opacity           : 0;
		-webkit-transform : translate3d(-2000px, 0, 0);
		transform         : translate3d(-2000px, 0, 0);
	}
}

@-webkit-keyframes motopress-modal-animation-bounceOutLeft-bg {
	20% {
		opacity           : 0.8;
		-webkit-transform : translate3d(20px, 0, 0);
		transform         : translate3d(20px, 0, 0);
	}
	100% {
		opacity           : 0;
		-webkit-transform : translate3d(-2000px, 0, 0);
		transform         : translate3d(-2000px, 0, 0);
	}
}

@keyframes motopress-modal-animation-bounceOutLeft-bg {
	20% {
		opacity           : 0.8;
		-webkit-transform : translate3d(20px, 0, 0);
		transform         : translate3d(20px, 0, 0);
	}
	100% {
		opacity           : 0;
		-webkit-transform : translate3d(-2000px, 0, 0);
		transform         : translate3d(-2000px, 0, 0);
	}
}

@keyframes motopress-modal-animation-bounceOutRight {
	20% {
		opacity           : 1;
		-webkit-transform : translate3d(-20px, 0, 0);
		transform         : translate3d(-20px, 0, 0);
	}
	100% {
		opacity           : 0;
		-webkit-transform : translate3d(2000px, 0, 0);
		transform         : translate3d(2000px, 0, 0);
	}
}

@-webkit-keyframes motopress-modal-animation-bounceOutRight {
	20% {
		opacity           : 1;
		-webkit-transform : translate3d(-20px, 0, 0);
		transform         : translate3d(-20px, 0, 0);
	}
	100% {
		opacity           : 0;
		-webkit-transform : translate3d(2000px, 0, 0);
		transform         : translate3d(2000px, 0, 0);
	}
}

@-webkit-keyframes motopress-modal-animation-bounceOutRight-bg {
	20% {
		opacity           : 0.8;
		-webkit-transform : translate3d(-20px, 0, 0);
		transform         : translate3d(-20px, 0, 0);
	}
	100% {
		opacity           : 0;
		-webkit-transform : translate3d(2000px, 0, 0);
		transform         : translate3d(2000px, 0, 0);
	}
}

@keyframes motopress-modal-animation-bounceOutRight-bg {
	20% {
		opacity           : 0.8;
		-webkit-transform : translate3d(-20px, 0, 0);
		transform         : translate3d(-20px, 0, 0);
	}
	100% {
		opacity           : 0;
		-webkit-transform : translate3d(2000px, 0, 0);
		transform         : translate3d(2000px, 0, 0);
	}
}

@keyframes motopress-modal-animation-bounceOutUp {
	20% {
		-webkit-transform : translate3d(0, -10px, 0);
		transform         : translate3d(0, -10px, 0);
	}
	40%,
	45% {
		opacity           : 1;
		-webkit-transform : translate3d(0, 20px, 0);
		transform         : translate3d(0, 20px, 0);
	}
	100% {
		opacity           : 0;
		-webkit-transform : translate3d(0, -2000px, 0);
		transform         : translate3d(0, -2000px, 0);
	}
}

@-webkit-keyframes motopress-modal-animation-bounceOutUp {
	20% {
		-webkit-transform : translate3d(0, -10px, 0);
		transform         : translate3d(0, -10px, 0);
	}
	40%,
	45% {
		opacity           : 1;
		-webkit-transform : translate3d(0, 20px, 0);
		transform         : translate3d(0, 20px, 0);
	}
	100% {
		opacity           : 0;
		-webkit-transform : translate3d(0, -2000px, 0);
		transform         : translate3d(0, -2000px, 0);
	}
}

@-webkit-keyframes motopress-modal-animation-bounceOutUp-bg {
	20% {
		-webkit-transform : translate3d(0, -10px, 0);
		transform         : translate3d(0, -10px, 0);
	}
	40%,
	45% {
		opacity           : 0.8;
		-webkit-transform : translate3d(0, 20px, 0);
		transform         : translate3d(0, 20px, 0);
	}
	100% {
		opacity           : 0;
		-webkit-transform : translate3d(0, -2000px, 0);
		transform         : translate3d(0, -2000px, 0);
	}
}

@keyframes motopress-modal-animation-bounceOutUp-bg {
	20% {
		-webkit-transform : translate3d(0, -10px, 0);
		transform         : translate3d(0, -10px, 0);
	}
	40%,
	45% {
		opacity           : 0.8;
		-webkit-transform : translate3d(0, 20px, 0);
		transform         : translate3d(0, 20px, 0);
	}
	100% {
		opacity           : 0;
		-webkit-transform : translate3d(0, -2000px, 0);
		transform         : translate3d(0, -2000px, 0);
	}
}

@keyframes motopress-modal-animation-fadeOut {
	0.00% {
		opacity : 1;
	}
	100% {
		opacity : 0;
	}
}

@-webkit-keyframes motopress-modal-animation-fadeOut {
	0.00% {
		opacity : 1;
	}
	100% {
		opacity : 0;
	}
}

@-webkit-keyframes motopress-modal-animation-fadeOut-bg {
	0.00% {
		opacity : 0.8;
	}
	100% {
		opacity : 0;
	}
}

@keyframes motopress-modal-animation-fadeOut-bg {
	0.00% {
		opacity : 0.8;
	}
	100% {
		opacity : 0;
	}
}

@keyframes motopress-modal-animation-fadeOutDown {
	0.00% {
		opacity : 1;
	}
	100% {
		opacity           : 0;
		-webkit-transform : translate3d(0, 100%, 0);
		transform         : translate3d(0, 100%, 0);
	}
}

@-webkit-keyframes motopress-modal-animation-fadeOutDown {
	0.00% {
		opacity : 1;
	}
	100% {
		opacity           : 0;
		-webkit-transform : translate3d(0, 100%, 0);
		transform         : translate3d(0, 100%, 0);
	}
}

@-webkit-keyframes motopress-modal-animation-fadeOutDown-bg {
	0.00% {
		opacity : 0.8;
	}
	100% {
		opacity           : 0;
		-webkit-transform : translate3d(0, 100%, 0);
		transform         : translate3d(0, 100%, 0);
	}
}

@keyframes motopress-modal-animation-fadeOutDown-bg {
	0.00% {
		opacity : 0.8;
	}
	100% {
		opacity           : 0;
		-webkit-transform : translate3d(0, 100%, 0);
		transform         : translate3d(0, 100%, 0);
	}
}

@keyframes motopress-modal-animation-fadeOutDownBig {
	0.00% {
		opacity : 1;
	}
	100% {
		opacity           : 0;
		-webkit-transform : translate3d(0, 2000px, 0);
		transform         : translate3d(0, 2000px, 0);
	}
}

@-webkit-keyframes motopress-modal-animation-fadeOutDownBig {
	0.00% {
		opacity : 1;
	}
	100% {
		opacity           : 0;
		-webkit-transform : translate3d(0, 2000px, 0);
		transform         : translate3d(0, 2000px, 0);
	}
}

@-webkit-keyframes motopress-modal-animation-fadeOutDownBig-bg {
	0.00% {
		opacity : 0.8;
	}
	100% {
		opacity           : 0;
		-webkit-transform : translate3d(0, 2000px, 0);
		transform         : translate3d(0, 2000px, 0);
	}
}

@keyframes motopress-modal-animation-fadeOutDownBig-bg {
	0.00% {
		opacity : 0.8;
	}
	100% {
		opacity           : 0;
		-webkit-transform : translate3d(0, 2000px, 0);
		transform         : translate3d(0, 2000px, 0);
	}
}

@keyframes motopress-modal-animation-fadeOutLeft {
	0.00% {
		opacity : 1;
	}
	100% {
		opacity           : 0;
		-webkit-transform : translate3d(-100%, 0, 0);
		transform         : translate3d(-100%, 0, 0);
	}
}

@-webkit-keyframes motopress-modal-animation-fadeOutLeft {
	0.00% {
		opacity : 1;
	}
	100% {
		opacity           : 0;
		-webkit-transform : translate3d(-100%, 0, 0);
		transform         : translate3d(-100%, 0, 0);
	}
}

@-webkit-keyframes motopress-modal-animation-fadeOutLeft-bg {
	0.00% {
		opacity : 0.8;
	}
	100% {
		opacity           : 0;
		-webkit-transform : translate3d(-100%, 0, 0);
		transform         : translate3d(-100%, 0, 0);
	}
}

@keyframes motopress-modal-animation-fadeOutLeft-bg {
	0.00% {
		opacity : 0.8;
	}
	100% {
		opacity           : 0;
		-webkit-transform : translate3d(-100%, 0, 0);
		transform         : translate3d(-100%, 0, 0);
	}
}

@keyframes motopress-modal-animation-fadeOutLeftBig {
	0.00% {
		opacity : 1;
	}
	100% {
		opacity           : 0;
		-webkit-transform : translate3d(-2000px, 0, 0);
		transform         : translate3d(-2000px, 0, 0);
	}
}

@-webkit-keyframes motopress-modal-animation-fadeOutLeftBig {
	0.00% {
		opacity : 1;
	}
	100% {
		opacity           : 0;
		-webkit-transform : translate3d(-2000px, 0, 0);
		transform         : translate3d(-2000px, 0, 0);
	}
}

@-webkit-keyframes motopress-modal-animation-fadeOutLeftBig-bg {
	0.00% {
		opacity : 0.8;
	}
	100% {
		opacity           : 0;
		-webkit-transform : translate3d(-2000px, 0, 0);
		transform         : translate3d(-2000px, 0, 0);
	}
}

@keyframes motopress-modal-animation-fadeOutLeftBig-bg {
	0.00% {
		opacity : 0.8;
	}
	100% {
		opacity           : 0;
		-webkit-transform : translate3d(-2000px, 0, 0);
		transform         : translate3d(-2000px, 0, 0);
	}
}

@keyframes motopress-modal-animation-fadeOutRight {
	0.00% {
		opacity : 1;
	}
	100% {
		opacity           : 0;
		-webkit-transform : translate3d(100%, 0, 0);
		transform         : translate3d(100%, 0, 0);
	}
}

@-webkit-keyframes motopress-modal-animation-fadeOutRight {
	0.00% {
		opacity : 1;
	}
	100% {
		opacity           : 0;
		-webkit-transform : translate3d(100%, 0, 0);
		transform         : translate3d(100%, 0, 0);
	}
}

@-webkit-keyframes motopress-modal-animation-fadeOutRight-bg {
	0.00% {
		opacity : 0.8;
	}
	100% {
		opacity           : 0;
		-webkit-transform : translate3d(100%, 0, 0);
		transform         : translate3d(100%, 0, 0);
	}
}

@keyframes motopress-modal-animation-fadeOutRight-bg {
	0.00% {
		opacity : 0.8;
	}
	100% {
		opacity           : 0;
		-webkit-transform : translate3d(100%, 0, 0);
		transform         : translate3d(100%, 0, 0);
	}
}

@keyframes motopress-modal-animation-fadeOutRightBig {
	0.00% {
		opacity : 1;
	}
	100% {
		opacity           : 0;
		-webkit-transform : translate3d(2000px, 0, 0);
		transform         : translate3d(2000px, 0, 0);
	}
}

@-webkit-keyframes motopress-modal-animation-fadeOutRightBig {
	0.00% {
		opacity : 1;
	}
	100% {
		opacity           : 0;
		-webkit-transform : translate3d(2000px, 0, 0);
		transform         : translate3d(2000px, 0, 0);
	}
}

@-webkit-keyframes motopress-modal-animation-fadeOutRightBig-bg {
	0.00% {
		opacity : 0.8;
	}
	100% {
		opacity           : 0;
		-webkit-transform : translate3d(2000px, 0, 0);
		transform         : translate3d(2000px, 0, 0);
	}
}

@keyframes motopress-modal-animation-fadeOutRightBig-bg {
	0.00% {
		opacity : 0.8;
	}
	100% {
		opacity           : 0;
		-webkit-transform : translate3d(2000px, 0, 0);
		transform         : translate3d(2000px, 0, 0);
	}
}

@keyframes motopress-modal-animation-fadeOutUp {
	0.00% {
		opacity : 1;
	}
	100% {
		opacity           : 0;
		-webkit-transform : translate3d(0, -100%, 0);
		transform         : translate3d(0, -100%, 0);
	}
}

@-webkit-keyframes motopress-modal-animation-fadeOutUp {
	0.00% {
		opacity : 1;
	}
	100% {
		opacity           : 0;
		-webkit-transform : translate3d(0, -100%, 0);
		transform         : translate3d(0, -100%, 0);
	}
}

@-webkit-keyframes motopress-modal-animation-fadeOutUp-bg {
	0.00% {
		opacity : 0.8;
	}
	100% {
		opacity           : 0;
		-webkit-transform : translate3d(0, -100%, 0);
		transform         : translate3d(0, -100%, 0);
	}
}

@keyframes motopress-modal-animation-fadeOutUp-bg {
	0.00% {
		opacity : 0.8;
	}
	100% {
		opacity           : 0;
		-webkit-transform : translate3d(0, -100%, 0);
		transform         : translate3d(0, -100%, 0);
	}
}

@keyframes motopress-modal-animation-fadeOutUpBig {
	0.00% {
		opacity : 1;
	}
	100% {
		opacity           : 0;
		-webkit-transform : translate3d(0, -2000px, 0);
		transform         : translate3d(0, -2000px, 0);
	}
}

@-webkit-keyframes motopress-modal-animation-fadeOutUpBig {
	0.00% {
		opacity : 1;
	}
	100% {
		opacity           : 0;
		-webkit-transform : translate3d(0, -2000px, 0);
		transform         : translate3d(0, -2000px, 0);
	}
}

@-webkit-keyframes motopress-modal-animation-fadeOutUpBig-bg {
	0.00% {
		opacity : 0.8;
	}
	100% {
		opacity           : 0;
		-webkit-transform : translate3d(0, -2000px, 0);
		transform         : translate3d(0, -2000px, 0);
	}
}

@keyframes motopress-modal-animation-fadeOutUpBig-bg {
	0.00% {
		opacity : 0.8;
	}
	100% {
		opacity           : 0;
		-webkit-transform : translate3d(0, -2000px, 0);
		transform         : translate3d(0, -2000px, 0);
	}
}

@keyframes motopress-modal-animation-flipOutX {
	0.00% {
		-webkit-transform : perspective(400px);
		transform         : perspective(400px);
	}
	30% {
		-webkit-transform : perspective(400px) rotate3d(1, 0, 0, -20deg);
		transform         : perspective(400px) rotate3d(1, 0, 0, -20deg);
		opacity           : 1;
	}
	100% {
		-webkit-transform : perspective(400px) rotate3d(1, 0, 0, 90deg);
		transform         : perspective(400px) rotate3d(1, 0, 0, 90deg);
		opacity           : 0;
	}
}

@-webkit-keyframes motopress-modal-animation-flipOutX {
	0.00% {
		-webkit-transform : perspective(400px);
		transform         : perspective(400px);
	}
	30% {
		-webkit-transform : perspective(400px) rotate3d(1, 0, 0, -20deg);
		transform         : perspective(400px) rotate3d(1, 0, 0, -20deg);
		opacity           : 1;
	}
	100% {
		-webkit-transform : perspective(400px) rotate3d(1, 0, 0, 90deg);
		transform         : perspective(400px) rotate3d(1, 0, 0, 90deg);
		opacity           : 0;
	}
}

@-webkit-keyframes motopress-modal-animation-flipOutX-bg {
	0.00% {
		-webkit-transform : perspective(400px);
		transform         : perspective(400px);
	}
	30% {
		-webkit-transform : perspective(400px) rotate3d(1, 0, 0, -20deg);
		transform         : perspective(400px) rotate3d(1, 0, 0, -20deg);
		opacity           : 0.8;
	}
	100% {
		-webkit-transform : perspective(400px) rotate3d(1, 0, 0, 90deg);
		transform         : perspective(400px) rotate3d(1, 0, 0, 90deg);
		opacity           : 0;
	}
}

@keyframes motopress-modal-animation-flipOutX-bg {
	0.00% {
		-webkit-transform : perspective(400px);
		transform         : perspective(400px);
	}
	30% {
		-webkit-transform : perspective(400px) rotate3d(1, 0, 0, -20deg);
		transform         : perspective(400px) rotate3d(1, 0, 0, -20deg);
		opacity           : 0.8;
	}
	100% {
		-webkit-transform : perspective(400px) rotate3d(1, 0, 0, 90deg);
		transform         : perspective(400px) rotate3d(1, 0, 0, 90deg);
		opacity           : 0;
	}
}

@keyframes motopress-modal-animation-flipOutY {
	0.00% {
		-webkit-transform : perspective(400px);
		transform         : perspective(400px);
	}
	30% {
		-webkit-transform : perspective(400px) rotate3d(0, 1, 0, -15deg);
		transform         : perspective(400px) rotate3d(0, 1, 0, -15deg);
		opacity           : 1;
	}
	100% {
		-webkit-transform : perspective(400px) rotate3d(0, 1, 0, 90deg);
		transform         : perspective(400px) rotate3d(0, 1, 0, 90deg);
		opacity           : 0;
	}
}

@-webkit-keyframes motopress-modal-animation-flipOutY {
	0.00% {
		-webkit-transform : perspective(400px);
		transform         : perspective(400px);
	}
	30% {
		-webkit-transform : perspective(400px) rotate3d(0, 1, 0, -15deg);
		transform         : perspective(400px) rotate3d(0, 1, 0, -15deg);
		opacity           : 1;
	}
	100% {
		-webkit-transform : perspective(400px) rotate3d(0, 1, 0, 90deg);
		transform         : perspective(400px) rotate3d(0, 1, 0, 90deg);
		opacity           : 0;
	}
}

@-webkit-keyframes motopress-modal-animation-flipOutY-bg {
	0.00% {
		-webkit-transform : perspective(400px);
		transform         : perspective(400px);
	}
	30% {
		-webkit-transform : perspective(400px) rotate3d(0, 1, 0, -15deg);
		transform         : perspective(400px) rotate3d(0, 1, 0, -15deg);
		opacity           : 0.8;
	}
	100% {
		-webkit-transform : perspective(400px) rotate3d(0, 1, 0, 90deg);
		transform         : perspective(400px) rotate3d(0, 1, 0, 90deg);
		opacity           : 0;
	}
}

@keyframes motopress-modal-animation-flipOutY-bg {
	0.00% {
		-webkit-transform : perspective(400px);
		transform         : perspective(400px);
	}
	30% {
		-webkit-transform : perspective(400px) rotate3d(0, 1, 0, -15deg);
		transform         : perspective(400px) rotate3d(0, 1, 0, -15deg);
		opacity           : 0.8;
	}
	100% {
		-webkit-transform : perspective(400px) rotate3d(0, 1, 0, 90deg);
		transform         : perspective(400px) rotate3d(0, 1, 0, 90deg);
		opacity           : 0;
	}
}

@keyframes motopress-modal-animation-lightSpeedOut {
	0.00% {
		opacity : 1;
	}
	100% {
		-webkit-transform : translate3d(100%, 0, 0) skewX(30deg);
		transform         : translate3d(100%, 0, 0) skewX(30deg);
		opacity           : 0;
	}
}

@-webkit-keyframes motopress-modal-animation-lightSpeedOut {
	0.00% {
		opacity : 1;
	}
	100% {
		-webkit-transform : translate3d(100%, 0, 0) skewX(30deg);
		transform         : translate3d(100%, 0, 0) skewX(30deg);
		opacity           : 0;
	}
}

@-webkit-keyframes motopress-modal-animation-lightSpeedOut-bg {
	0.00% {
		opacity : 0.8;
	}
	100% {
		-webkit-transform : translate3d(100%, 0, 0) skewX(30deg);
		transform         : translate3d(100%, 0, 0) skewX(30deg);
		opacity           : 0;
	}
}

@keyframes motopress-modal-animation-lightSpeedOut-bg {
	0.00% {
		opacity : 0.8;
	}
	100% {
		-webkit-transform : translate3d(100%, 0, 0) skewX(30deg);
		transform         : translate3d(100%, 0, 0) skewX(30deg);
		opacity           : 0;
	}
}

@keyframes motopress-modal-animation-rotateOut {
	0.00% {
		-webkit-transform-origin : center;
		transform-origin         : center;
		opacity                  : 1;
	}
	100% {
		-webkit-transform-origin : center;
		transform-origin         : center;
		-webkit-transform        : rotate3d(0, 0, 1, 200deg);
		transform                : rotate3d(0, 0, 1, 200deg);
		opacity                  : 0;
	}
}

@-webkit-keyframes motopress-modal-animation-rotateOut {
	0.00% {
		-webkit-transform-origin : center;
		transform-origin         : center;
		opacity                  : 1;
	}
	100% {
		-webkit-transform-origin : center;
		transform-origin         : center;
		-webkit-transform        : rotate3d(0, 0, 1, 200deg);
		transform                : rotate3d(0, 0, 1, 200deg);
		opacity                  : 0;
	}
}

@-webkit-keyframes motopress-modal-animation-rotateOut-bg {
	0.00% {
		-webkit-transform-origin : center;
		transform-origin         : center;
		opacity                  : 0.8;
	}
	100% {
		-webkit-transform-origin : center;
		transform-origin         : center;
		-webkit-transform        : rotate3d(0, 0, 1, 200deg);
		transform                : rotate3d(0, 0, 1, 200deg);
		opacity                  : 0;
	}
}

@keyframes motopress-modal-animation-rotateOut-bg {
	0.00% {
		-webkit-transform-origin : center;
		transform-origin         : center;
		opacity                  : 0.8;
	}
	100% {
		-webkit-transform-origin : center;
		transform-origin         : center;
		-webkit-transform        : rotate3d(0, 0, 1, 200deg);
		transform                : rotate3d(0, 0, 1, 200deg);
		opacity                  : 0;
	}
}

@keyframes motopress-modal-animation-rotateOutDownLeft {
	0.00% {
		-webkit-transform-origin : left bottom;
		transform-origin         : left bottom;
		opacity                  : 1;
	}
	100% {
		-webkit-transform-origin : left bottom;
		transform-origin         : left bottom;
		-webkit-transform        : rotate3d(0, 0, 1, 45deg);
		transform                : rotate3d(0, 0, 1, 45deg);
		opacity                  : 0;
	}
}

@-webkit-keyframes motopress-modal-animation-rotateOutDownLeft {
	0.00% {
		-webkit-transform-origin : left bottom;
		transform-origin         : left bottom;
		opacity                  : 1;
	}
	100% {
		-webkit-transform-origin : left bottom;
		transform-origin         : left bottom;
		-webkit-transform        : rotate3d(0, 0, 1, 45deg);
		transform                : rotate3d(0, 0, 1, 45deg);
		opacity                  : 0;
	}
}

@-webkit-keyframes motopress-modal-animation-rotateOutDownLeft-bg {
	0.00% {
		-webkit-transform-origin : left bottom;
		transform-origin         : left bottom;
		opacity                  : 0.8;
	}
	100% {
		-webkit-transform-origin : left bottom;
		transform-origin         : left bottom;
		-webkit-transform        : rotate3d(0, 0, 1, 45deg);
		transform                : rotate3d(0, 0, 1, 45deg);
		opacity                  : 0;
	}
}

@keyframes motopress-modal-animation-rotateOutDownLeft-bg {
	0.00% {
		-webkit-transform-origin : left bottom;
		transform-origin         : left bottom;
		opacity                  : 0.8;
	}
	100% {
		-webkit-transform-origin : left bottom;
		transform-origin         : left bottom;
		-webkit-transform        : rotate3d(0, 0, 1, 45deg);
		transform                : rotate3d(0, 0, 1, 45deg);
		opacity                  : 0;
	}
}

@keyframes motopress-modal-animation-rotateOutDownRight {
	0.00% {
		-webkit-transform-origin : right bottom;
		transform-origin         : right bottom;
		opacity                  : 1;
	}
	100% {
		-webkit-transform-origin : right bottom;
		transform-origin         : right bottom;
		-webkit-transform        : rotate3d(0, 0, 1, -45deg);
		transform                : rotate3d(0, 0, 1, -45deg);
		opacity                  : 0;
	}
}

@-webkit-keyframes motopress-modal-animation-rotateOutDownRight {
	0.00% {
		-webkit-transform-origin : right bottom;
		transform-origin         : right bottom;
		opacity                  : 1;
	}
	100% {
		-webkit-transform-origin : right bottom;
		transform-origin         : right bottom;
		-webkit-transform        : rotate3d(0, 0, 1, -45deg);
		transform                : rotate3d(0, 0, 1, -45deg);
		opacity                  : 0;
	}
}

@-webkit-keyframes motopress-modal-animation-rotateOutDownRight-bg {
	0.00% {
		-webkit-transform-origin : right bottom;
		transform-origin         : right bottom;
		opacity                  : 0.8;
	}
	100% {
		-webkit-transform-origin : right bottom;
		transform-origin         : right bottom;
		-webkit-transform        : rotate3d(0, 0, 1, -45deg);
		transform                : rotate3d(0, 0, 1, -45deg);
		opacity                  : 0;
	}
}

@keyframes motopress-modal-animation-rotateOutDownRight-bg {
	0.00% {
		-webkit-transform-origin : right bottom;
		transform-origin         : right bottom;
		opacity                  : 0.8;
	}
	100% {
		-webkit-transform-origin : right bottom;
		transform-origin         : right bottom;
		-webkit-transform        : rotate3d(0, 0, 1, -45deg);
		transform                : rotate3d(0, 0, 1, -45deg);
		opacity                  : 0;
	}
}

@keyframes motopress-modal-animation-rotateOutUpLeft {
	0.00% {
		-webkit-transform-origin : left bottom;
		transform-origin         : left bottom;
		opacity                  : 1;
	}
	100% {
		-webkit-transform-origin : left bottom;
		transform-origin         : left bottom;
		-webkit-transform        : rotate3d(0, 0, 1, -45deg);
		transform                : rotate3d(0, 0, 1, -45deg);
		opacity                  : 0;
	}
}

@-webkit-keyframes motopress-modal-animation-rotateOutUpLeft {
	0.00% {
		-webkit-transform-origin : left bottom;
		transform-origin         : left bottom;
		opacity                  : 1;
	}
	100% {
		-webkit-transform-origin : left bottom;
		transform-origin         : left bottom;
		-webkit-transform        : rotate3d(0, 0, 1, -45deg);
		transform                : rotate3d(0, 0, 1, -45deg);
		opacity                  : 0;
	}
}

@-webkit-keyframes motopress-modal-animation-rotateOutUpLeft-bg {
	0.00% {
		-webkit-transform-origin : left bottom;
		transform-origin         : left bottom;
		opacity                  : 0.8;
	}
	100% {
		-webkit-transform-origin : left bottom;
		transform-origin         : left bottom;
		-webkit-transform        : rotate3d(0, 0, 1, -45deg);
		transform                : rotate3d(0, 0, 1, -45deg);
		opacity                  : 0;
	}
}

@keyframes motopress-modal-animation-rotateOutUpLeft-bg {
	0.00% {
		-webkit-transform-origin : left bottom;
		transform-origin         : left bottom;
		opacity                  : 0.8;
	}
	100% {
		-webkit-transform-origin : left bottom;
		transform-origin         : left bottom;
		-webkit-transform        : rotate3d(0, 0, 1, -45deg);
		transform                : rotate3d(0, 0, 1, -45deg);
		opacity                  : 0;
	}
}

@keyframes motopress-modal-animation-rotateOutUpRight {
	0.00% {
		-webkit-transform-origin : right bottom;
		transform-origin         : right bottom;
		opacity                  : 1;
	}
	100% {
		-webkit-transform-origin : right bottom;
		transform-origin         : right bottom;
		-webkit-transform        : rotate3d(0, 0, 1, 90deg);
		transform                : rotate3d(0, 0, 1, 90deg);
		opacity                  : 0;
	}
}

@-webkit-keyframes motopress-modal-animation-rotateOutUpRight {
	0.00% {
		-webkit-transform-origin : right bottom;
		transform-origin         : right bottom;
		opacity                  : 1;
	}
	100% {
		-webkit-transform-origin : right bottom;
		transform-origin         : right bottom;
		-webkit-transform        : rotate3d(0, 0, 1, 90deg);
		transform                : rotate3d(0, 0, 1, 90deg);
		opacity                  : 0;
	}
}

@-webkit-keyframes motopress-modal-animation-rotateOutUpRight-bg {
	0.00% {
		-webkit-transform-origin : right bottom;
		transform-origin         : right bottom;
		opacity                  : 0.8;
	}
	100% {
		-webkit-transform-origin : right bottom;
		transform-origin         : right bottom;
		-webkit-transform        : rotate3d(0, 0, 1, 90deg);
		transform                : rotate3d(0, 0, 1, 90deg);
		opacity                  : 0;
	}
}

@keyframes motopress-modal-animation-rotateOutUpRight-bg {
	0.00% {
		-webkit-transform-origin : right bottom;
		transform-origin         : right bottom;
		opacity                  : 0.8;
	}
	100% {
		-webkit-transform-origin : right bottom;
		transform-origin         : right bottom;
		-webkit-transform        : rotate3d(0, 0, 1, 90deg);
		transform                : rotate3d(0, 0, 1, 90deg);
		opacity                  : 0;
	}
}

@keyframes motopress-modal-animation-rollOut {
	0.00% {
		opacity : 1;
	}
	100% {
		opacity           : 0;
		-webkit-transform : translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
		transform         : translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
	}
}

@-webkit-keyframes motopress-modal-animation-rollOut {
	0.00% {
		opacity : 1;
	}
	100% {
		opacity           : 0;
		-webkit-transform : translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
		transform         : translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
	}
}

@-webkit-keyframes motopress-modal-animation-rollOut-bg {
	0.00% {
		opacity : 0.8;
	}
	100% {
		opacity           : 0;
		-webkit-transform : translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
		transform         : translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
	}
}

@keyframes motopress-modal-animation-rollOut-bg {
	0.00% {
		opacity : 0.8;
	}
	100% {
		opacity           : 0;
		-webkit-transform : translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
		transform         : translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
	}
}

@keyframes motopress-modal-animation-zoomOut {
	0.00% {
		opacity : 1;
	}
	50% {
		opacity           : 0;
		-webkit-transform : scale3d(0.3, 0.3, 0.3);
		transform         : scale3d(0.3, 0.3, 0.3);
	}
	100% {
		opacity : 0;
	}
}

@-webkit-keyframes motopress-modal-animation-zoomOut {
	0.00% {
		opacity : 1;
	}
	50% {
		opacity           : 0;
		-webkit-transform : scale3d(0.3, 0.3, 0.3);
		transform         : scale3d(0.3, 0.3, 0.3);
	}
	100% {
		opacity : 0;
	}
}

@-webkit-keyframes motopress-modal-animation-zoomOut-bg {
	0.00% {
		opacity : 0.8;
	}
	50% {
		opacity           : 0;
		-webkit-transform : scale3d(0.3, 0.3, 0.3);
		transform         : scale3d(0.3, 0.3, 0.3);
	}
	100% {
		opacity : 0;
	}
}

@keyframes motopress-modal-animation-zoomOut-bg {
	0.00% {
		opacity : 0.8;
	}
	50% {
		opacity           : 0;
		-webkit-transform : scale3d(0.3, 0.3, 0.3);
		transform         : scale3d(0.3, 0.3, 0.3);
	}
	100% {
		opacity : 0;
	}
}

@keyframes motopress-modal-animation-zoomOutDown {
	40% {
		opacity                           : 1;
		-webkit-transform                 : scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		transform                         : scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		-webkit-animation-timing-function : cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function         : cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	100% {
		opacity                           : 0;
		-webkit-transform                 : scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
		transform                         : scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
		-webkit-transform-origin          : center bottom;
		transform-origin                  : center bottom;
		-webkit-animation-timing-function : cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function         : cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}

@-webkit-keyframes motopress-modal-animation-zoomOutDown {
	40% {
		opacity                           : 1;
		-webkit-transform                 : scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		transform                         : scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		-webkit-animation-timing-function : cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function         : cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	100% {
		opacity                           : 0;
		-webkit-transform                 : scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
		transform                         : scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
		-webkit-transform-origin          : center bottom;
		transform-origin                  : center bottom;
		-webkit-animation-timing-function : cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function         : cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}

@-webkit-keyframes motopress-modal-animation-zoomOutDown-bg {
	40% {
		opacity                           : 0.8;
		-webkit-transform                 : scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		transform                         : scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		-webkit-animation-timing-function : cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function         : cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	100% {
		opacity                           : 0;
		-webkit-transform                 : scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
		transform                         : scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
		-webkit-transform-origin          : center bottom;
		transform-origin                  : center bottom;
		-webkit-animation-timing-function : cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function         : cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}

@keyframes motopress-modal-animation-zoomOutDown-bg {
	40% {
		opacity                           : 0.8;
		-webkit-transform                 : scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		transform                         : scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		-webkit-animation-timing-function : cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function         : cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	100% {
		opacity                           : 0;
		-webkit-transform                 : scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
		transform                         : scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
		-webkit-transform-origin          : center bottom;
		transform-origin                  : center bottom;
		-webkit-animation-timing-function : cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function         : cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}

@keyframes motopress-modal-animation-zoomOutLeft {
	40% {
		opacity           : 1;
		-webkit-transform : scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
		transform         : scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
	}
	100% {
		opacity                  : 0;
		-webkit-transform        : scale(0.1) translate3d(-2000px, 0, 0);
		transform                : scale(0.1) translate3d(-2000px, 0, 0);
		-webkit-transform-origin : left center;
		transform-origin         : left center;
	}
}

@-webkit-keyframes motopress-modal-animation-zoomOutLeft {
	40% {
		opacity           : 1;
		-webkit-transform : scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
		transform         : scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
	}
	100% {
		opacity                  : 0;
		-webkit-transform        : scale(0.1) translate3d(-2000px, 0, 0);
		transform                : scale(0.1) translate3d(-2000px, 0, 0);
		-webkit-transform-origin : left center;
		transform-origin         : left center;
	}
}

@-webkit-keyframes motopress-modal-animation-zoomOutLeft-bg {
	40% {
		opacity           : 0.8;
		-webkit-transform : scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
		transform         : scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
	}
	100% {
		opacity                  : 0;
		-webkit-transform        : scale(0.1) translate3d(-2000px, 0, 0);
		transform                : scale(0.1) translate3d(-2000px, 0, 0);
		-webkit-transform-origin : left center;
		transform-origin         : left center;
	}
}

@keyframes motopress-modal-animation-zoomOutLeft-bg {
	40% {
		opacity           : 0.8;
		-webkit-transform : scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
		transform         : scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
	}
	100% {
		opacity                  : 0;
		-webkit-transform        : scale(0.1) translate3d(-2000px, 0, 0);
		transform                : scale(0.1) translate3d(-2000px, 0, 0);
		-webkit-transform-origin : left center;
		transform-origin         : left center;
	}
}

@keyframes motopress-modal-animation-zoomOutRight {
	40% {
		opacity           : 1;
		-webkit-transform : scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
		transform         : scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
	}
	100% {
		opacity                  : 0;
		-webkit-transform        : scale(0.1) translate3d(2000px, 0, 0);
		transform                : scale(0.1) translate3d(2000px, 0, 0);
		-webkit-transform-origin : right center;
		transform-origin         : right center;
	}
}

@-webkit-keyframes motopress-modal-animation-zoomOutRight {
	40% {
		opacity           : 1;
		-webkit-transform : scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
		transform         : scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
	}
	100% {
		opacity                  : 0;
		-webkit-transform        : scale(0.1) translate3d(2000px, 0, 0);
		transform                : scale(0.1) translate3d(2000px, 0, 0);
		-webkit-transform-origin : right center;
		transform-origin         : right center;
	}
}

@-webkit-keyframes motopress-modal-animation-zoomOutRight-bg {
	40% {
		opacity           : 0.8;
		-webkit-transform : scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
		transform         : scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
	}
	100% {
		opacity                  : 0;
		-webkit-transform        : scale(0.1) translate3d(2000px, 0, 0);
		transform                : scale(0.1) translate3d(2000px, 0, 0);
		-webkit-transform-origin : right center;
		transform-origin         : right center;
	}
}

@keyframes motopress-modal-animation-zoomOutRight-bg {
	40% {
		opacity           : 0.8;
		-webkit-transform : scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
		transform         : scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
	}
	100% {
		opacity                  : 0;
		-webkit-transform        : scale(0.1) translate3d(2000px, 0, 0);
		transform                : scale(0.1) translate3d(2000px, 0, 0);
		-webkit-transform-origin : right center;
		transform-origin         : right center;
	}
}

@keyframes motopress-modal-animation-zoomOutUp {
	40% {
		opacity                           : 1;
		-webkit-transform                 : scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		transform                         : scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		-webkit-animation-timing-function : cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function         : cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	100% {
		opacity                           : 0;
		-webkit-transform                 : scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
		transform                         : scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
		-webkit-transform-origin          : center bottom;
		transform-origin                  : center bottom;
		-webkit-animation-timing-function : cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function         : cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}

@-webkit-keyframes motopress-modal-animation-zoomOutUp {
	40% {
		opacity                           : 1;
		-webkit-transform                 : scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		transform                         : scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		-webkit-animation-timing-function : cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function         : cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	100% {
		opacity                           : 0;
		-webkit-transform                 : scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
		transform                         : scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
		-webkit-transform-origin          : center bottom;
		transform-origin                  : center bottom;
		-webkit-animation-timing-function : cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function         : cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}

@-webkit-keyframes motopress-modal-animation-zoomOutUp-bg {
	40% {
		opacity                           : 0.8;
		-webkit-transform                 : scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		transform                         : scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		-webkit-animation-timing-function : cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function         : cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	100% {
		opacity                           : 0;
		-webkit-transform                 : scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
		transform                         : scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
		-webkit-transform-origin          : center bottom;
		transform-origin                  : center bottom;
		-webkit-animation-timing-function : cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function         : cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}

@keyframes motopress-modal-animation-zoomOutUp-bg {
	40% {
		opacity                           : 0.8;
		-webkit-transform                 : scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		transform                         : scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		-webkit-animation-timing-function : cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function         : cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	100% {
		opacity                           : 0;
		-webkit-transform                 : scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
		transform                         : scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
		-webkit-transform-origin          : center bottom;
		transform-origin                  : center bottom;
		-webkit-animation-timing-function : cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function         : cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}

@keyframes motopress-modal-animation-slideOutDown {
	0.00% {
		-webkit-transform : translate3d(0, 0, 0);
		transform         : translate3d(0, 0, 0);
	}
	100% {
		visibility        : hidden;
		-webkit-transform : translate3d(0, 100%, 0);
		transform         : translate3d(0, 100%, 0);
	}
}

@-webkit-keyframes motopress-modal-animation-slideOutDown {
	0.00% {
		-webkit-transform : translate3d(0, 0, 0);
		transform         : translate3d(0, 0, 0);
	}
	100% {
		visibility        : hidden;
		-webkit-transform : translate3d(0, 100%, 0);
		transform         : translate3d(0, 100%, 0);
	}
}

@-webkit-keyframes motopress-modal-animation-slideOutDown-bg {
	0.00% {
		-webkit-transform : translate3d(0, 0, 0);
		transform         : translate3d(0, 0, 0);
	}
	100% {
		visibility        : hidden;
		-webkit-transform : translate3d(0, 100%, 0);
		transform         : translate3d(0, 100%, 0);
	}
}

@keyframes motopress-modal-animation-slideOutDown-bg {
	0.00% {
		-webkit-transform : translate3d(0, 0, 0);
		transform         : translate3d(0, 0, 0);
	}
	100% {
		visibility        : hidden;
		-webkit-transform : translate3d(0, 100%, 0);
		transform         : translate3d(0, 100%, 0);
	}
}

@keyframes motopress-modal-animation-slideOutLeft {
	0.00% {
		-webkit-transform : translate3d(0, 0, 0);
		transform         : translate3d(0, 0, 0);
	}
	100% {
		visibility        : hidden;
		-webkit-transform : translate3d(-100%, 0, 0);
		transform         : translate3d(-100%, 0, 0);
	}
}

@-webkit-keyframes motopress-modal-animation-slideOutLeft {
	0.00% {
		-webkit-transform : translate3d(0, 0, 0);
		transform         : translate3d(0, 0, 0);
	}
	100% {
		visibility        : hidden;
		-webkit-transform : translate3d(-100%, 0, 0);
		transform         : translate3d(-100%, 0, 0);
	}
}

@-webkit-keyframes motopress-modal-animation-slideOutLeft-bg {
	0.00% {
		-webkit-transform : translate3d(0, 0, 0);
		transform         : translate3d(0, 0, 0);
	}
	100% {
		visibility        : hidden;
		-webkit-transform : translate3d(-100%, 0, 0);
		transform         : translate3d(-100%, 0, 0);
	}
}

@keyframes motopress-modal-animation-slideOutLeft-bg {
	0.00% {
		-webkit-transform : translate3d(0, 0, 0);
		transform         : translate3d(0, 0, 0);
	}
	100% {
		visibility        : hidden;
		-webkit-transform : translate3d(-100%, 0, 0);
		transform         : translate3d(-100%, 0, 0);
	}
}

@keyframes motopress-modal-animation-slideOutRight {
	0.00% {
		-webkit-transform : translate3d(0, 0, 0);
		transform         : translate3d(0, 0, 0);
	}
	100% {
		visibility        : hidden;
		-webkit-transform : translate3d(100%, 0, 0);
		transform         : translate3d(100%, 0, 0);
	}
}

@-webkit-keyframes motopress-modal-animation-slideOutRight {
	0.00% {
		-webkit-transform : translate3d(0, 0, 0);
		transform         : translate3d(0, 0, 0);
	}
	100% {
		visibility        : hidden;
		-webkit-transform : translate3d(100%, 0, 0);
		transform         : translate3d(100%, 0, 0);
	}
}

@-webkit-keyframes motopress-modal-animation-slideOutRight-bg {
	0.00% {
		-webkit-transform : translate3d(0, 0, 0);
		transform         : translate3d(0, 0, 0);
	}
	100% {
		visibility        : hidden;
		-webkit-transform : translate3d(100%, 0, 0);
		transform         : translate3d(100%, 0, 0);
	}
}

@keyframes motopress-modal-animation-slideOutRight-bg {
	0.00% {
		-webkit-transform : translate3d(0, 0, 0);
		transform         : translate3d(0, 0, 0);
	}
	100% {
		visibility        : hidden;
		-webkit-transform : translate3d(100%, 0, 0);
		transform         : translate3d(100%, 0, 0);
	}
}

@keyframes motopress-modal-animation-slideOutUp {
	0.00% {
		-webkit-transform : translate3d(0, 0, 0);
		transform         : translate3d(0, 0, 0);
	}
	100% {
		visibility        : hidden;
		-webkit-transform : translate3d(0, -100%, 0);
		transform         : translate3d(0, -100%, 0);
	}
}

@-webkit-keyframes motopress-modal-animation-slideOutUp {
	0.00% {
		-webkit-transform : translate3d(0, 0, 0);
		transform         : translate3d(0, 0, 0);
	}
	100% {
		visibility        : hidden;
		-webkit-transform : translate3d(0, -100%, 0);
		transform         : translate3d(0, -100%, 0);
	}
}

@-webkit-keyframes motopress-modal-animation-slideOutUp-bg {
	0.00% {
		-webkit-transform : translate3d(0, 0, 0);
		transform         : translate3d(0, 0, 0);
	}
	100% {
		visibility        : hidden;
		-webkit-transform : translate3d(0, -100%, 0);
		transform         : translate3d(0, -100%, 0);
	}
}

@keyframes motopress-modal-animation-slideOutUp-bg {
	0.00% {
		-webkit-transform : translate3d(0, 0, 0);
		transform         : translate3d(0, 0, 0);
	}
	100% {
		visibility        : hidden;
		-webkit-transform : translate3d(0, -100%, 0);
		transform         : translate3d(0, -100%, 0);
	}
}

.motopress-posts_slider-obj {
	background    : none !important;
	border-radius : 0px !important;
	border        : none !important;
	box-shadow    : none !important;
	margin-bottom : 40px !important;
	line-height   : normal;
	min-height    : 0;
}

.motopress-posts_slider-obj hide {
	display : none !important;
}

.motopress-posts_slider-obj .post-title {
	color : #373737;
}

.motopress-posts_slider-obj .motopress-flexslider {
	background-image : none;
}

.motopress-posts_slider-obj .motopress-flexslider ul.slides {
	margin : 0 !important;
}

.motopress-posts_slider-obj .motopress-flexslider ul.slides .mp-ce-align-left {
	text-align : left !important;
}

.motopress-posts_slider-obj .motopress-flexslider ul.slides .mp-ce-align-right {
	text-align : right !important;
}

.motopress-posts_slider-obj .motopress-flexslider ul.slides img {
	width       : auto !important;
	box-sizing  : border-box;
	display     : inline-block !important;
	margin-top  : 0px !important;
	padding-top : 0px !important;
}

.motopress-posts_slider-obj .motopress-flexslider .flex-viewport .slides {
}

.motopress-posts_slider-obj .motopress-flexslider ol.flex-control-nav {
	position    : absolute !important;
	list-style  : none outside none !important;
	margin      : 0 !important;
	padding     : 0 !important;
	line-height : normal;
	right       : auto !important;
	bottom      : -40px !important;
	text-align  : center !important;
	z-index     : auto !important;
}

.motopress-posts_slider-obj .motopress-flexslider ol.flex-control-nav li {
	list-style : none !important;
}

.motopress-posts_slider-obj .motopress-flexslider ol.flex-control-nav li a.flex-active {
	background : #000000 !important;
}

.motopress-posts_slider-obj .motopress-flexslider ol.flex-control-nav li a:hover {
	background : #333333 !important;
}

.motopress-posts_slider-obj .motopress-flexslider ol.flex-control-nav li a {
	background : #666666 !important;
}

.motopress-posts_slider-obj .motopress-flexslider ul.flex-direction-nav {
	margin : 0 !important;
}

.motopress-posts_slider-obj .motopress-flexslider ul.flex-direction-nav li {
	position   : static !important;
	list-style : none !important;
}

.motopress-posts_slider-obj .motopress-flexslider ul.flex-direction-nav a {
	opacity     : 0;
	z-index     : 9;
	text-indent : 0;
	background  : none;
	cursor      : pointer;
	transition  : opacity .2s;
	color       : #333333;
	font-size   : 40px;
	text-align  : center;
	line-height : 40px;
	width       : 40px;
	height      : 40px;
}

.motopress-posts_slider-obj .motopress-flexslider ul.flex-direction-nav a:hover {
	opacity : 1;
}

.motopress-posts_slider-obj .motopress-flexslider ul.flex-direction-nav .flex-prev {
	left            : 10px;
	text-decoration : none;
}

.motopress-posts_slider-obj .motopress-flexslider ul.flex-direction-nav .flex-next {
	right           : 10px;
	text-decoration : none;
}

.motopress-posts_slider-obj .motopress-flexslider:hover .flex-direction-nav a {
	opacity : 0.7;
	color   : #333333;
}

.motopress-posts_slider-obj .motopress-flexslider:hover .flex-direction-nav a:hover {
	opacity : 1;
}

.motopress-posts_slider-obj .motopress-slide-link {
	text-decoration : none !important;
}

.motopress-posts_slider-obj .motopress-slide-link:hover {
	text-decoration : none !important;
}

.motopress-posts_slider-obj .motopress-ps-description {
	color          : #373737;
	display        : block;
	text-align     : justify !important;
	vertical-align : top !important;
}

.motopress-posts_slider-obj .mp-ps-top-title {
	display : block;
}

.motopress-posts_slider-obj .mp-ps-title-img-inline {
	display  : block !important;
	overflow : hidden !important;
}

.motopress-posts_slider-obj .mp-ps-title-img-inline img {
	margin-right  : 10px;
	margin-bottom : 5px;
	float         : left !important;
}

.motopress-posts_slider-obj .mp-ps-title-img-inline h1,
.motopress-posts_slider-obj .mp-ps-title-img-inline h2,
.motopress-posts_slider-obj .mp-ps-title-img-inline h3,
.motopress-posts_slider-obj .mp-ps-title-img-inline h4,
.motopress-posts_slider-obj .mp-ps-title-img-inline h5,
.motopress-posts_slider-obj .mp-ps-title-img-inline h6 {
	display        : inline !important;
	vertical-align : top !important;
	text-align     : left !important;
}

.motopress-posts_slider-obj .mp-ps-title-img-inline.mp-ce-align-right img {
	float         : right !important;
	margin-left   : 10px;
	margin-bottom : 5px;
}

.motopress-posts_slider-obj .mp-ps-title-img-inline.mp-ce-align-right .post-title {
	text-align : right !important;
}

.motopress-posts_slider-obj .layout-text-wrap.mp-ce-align-left img {
	padding-right  : 18px;
	padding-bottom : 10px;
	margin-top     : 6px;
	float          : left;
}

.motopress-posts_slider-obj .layout-text-wrap.mp-ce-align-right img {
	padding-left   : 18px;
	padding-bottom : 10px;
	margin-top     : 6px;
	float          : right !important;
}

.motopress-posts_slider-obj .layout-text-wrap .motopress-ps-description {
	vertical-align : middle !important;
}

.zero-margin {
	margin-bottom : 0px !important;
}

.motopress-margin-0 {
	margin : 0 !important;
}

.motopress-margin-10 {
	margin : 10px !important;
}

.motopress-margin-15 {
	margin : 15px !important;
}

.motopress-margin-20 {
	margin : 20px !important;
}

.motopress-margin-25 {
	margin : 25px !important;
}

.motopress-margin-50 {
	margin : 50px !important;
}

.motopress-margin-100 {
	margin : 100px !important;
}

.motopress-margin-top-0 {
	margin-top : 0 !important;
}

.motopress-margin-top-10 {
	margin-top : 10px !important;
}

.motopress-margin-top-15 {
	margin-top : 15px !important;
}

.motopress-margin-top-20 {
	margin-top : 20px !important;
}

.motopress-margin-top-25 {
	margin-top : 25px !important;
}

.motopress-margin-top-50 {
	margin-top : 50px !important;
}

.motopress-margin-top-100 {
	margin-top : 100px !important;
}

.motopress-margin-bottom-0 {
	margin-bottom : 0 !important;
}

.motopress-margin-bottom-10 {
	margin-bottom : 10px !important;
}

.motopress-margin-bottom-15 {
	margin-bottom : 15px !important;
}

.motopress-margin-bottom-20 {
	margin-bottom : 20px !important;
}

.motopress-margin-bottom-25 {
	margin-bottom : 25px !important;
}

.motopress-margin-bottom-50 {
	margin-bottom : 50px !important;
}

.motopress-margin-bottom-100 {
	margin-bottom : 100px !important;
}

.motopress-margin-left-0 {
	margin-left : 0 !important;
}

.motopress-margin-left-10 {
	margin-left : 10px !important;
}

.motopress-margin-left-15 {
	margin-left : 15px !important;
}

.motopress-margin-left-20 {
	margin-left : 20px !important;
}

.motopress-margin-left-25 {
	margin-left : 25px !important;
}

.motopress-margin-left-50 {
	margin-left : 50px !important;
}

.motopress-margin-left-100 {
	margin-left : 100px !important;
}

.motopress-margin-right-0 {
	margin-right : 0 !important;
}

.motopress-margin-right-10 {
	margin-right : 10px !important;
}

.motopress-margin-right-15 {
	margin-right : 15px !important;
}

.motopress-margin-right-20 {
	margin-right : 20px !important;
}

.motopress-margin-right-25 {
	margin-right : 25px !important;
}

.motopress-margin-right-50 {
	margin-right : 50px !important;
}

.motopress-margin-right-100 {
	margin-right : 100px !important;
}

@media screen and (max-width : 767px) {
	.motopress-margin-10 {
		margin : 5px !important;
	}

	.motopress-margin-15 {
		margin : 7.5px !important;
	}

	.motopress-margin-20 {
		margin : 10px !important;
	}

	.motopress-margin-25 {
		margin : 12.5px !important;
	}

	.motopress-margin-50 {
		margin : 25px !important;
	}

	.motopress-margin-100 {
		margin : 50px !important;
	}

	.motopress-margin-top-10 {
		margin-top : 5px !important;
	}

	.motopress-margin-top-15 {
		margin-top : 7.5px !important;
	}

	.motopress-margin-top-20 {
		margin-top : 10px !important;
	}

	.motopress-margin-top-25 {
		margin-top : 12.5px !important;
	}

	.motopress-margin-top-50 {
		margin-top : 25px !important;
	}

	.motopress-margin-top-100 {
		margin-top : 50px !important;
	}

	.motopress-margin-bottom-10 {
		margin-bottom : 5px !important;
	}

	.motopress-margin-bottom-15 {
		margin-bottom : 7.5px !important;
	}

	.motopress-margin-bottom-20 {
		margin-bottom : 10px !important;
	}

	.motopress-margin-bottom-25 {
		margin-bottom : 12.5px !important;
	}

	.motopress-margin-bottom-50 {
		margin-bottom : 25px !important;
	}

	.motopress-margin-bottom-100 {
		margin-bottom : 50px !important;
	}

	.motopress-margin-left-10 {
		margin-left : 5px !important;
	}

	.motopress-margin-left-15 {
		margin-left : 7.5px !important;
	}

	.motopress-margin-left-20 {
		margin-left : 10px !important;
	}

	.motopress-margin-left-25 {
		margin-left : 12.5px !important;
	}

	.motopress-margin-left-50 {
		margin-left : 25px !important;
	}

	.motopress-margin-left-100 {
		margin-left : 50px !important;
	}

	.motopress-margin-right-10 {
		margin-right : 5px !important;
	}

	.motopress-margin-right-15 {
		margin-right : 7.5px !important;
	}

	.motopress-margin-right-20 {
		margin-right : 10px !important;
	}

	.motopress-margin-right-25 {
		margin-right : 12.5px !important;
	}

	.motopress-margin-right-50 {
		margin-right : 25px !important;
	}

	.motopress-margin-right-100 {
		margin-right : 50px !important;
	}
}

@media screen and (max-width : 480px) {
	.motopress-margin-10 {
		margin : 2.5px !important;
	}

	.motopress-margin-15 {
		margin : 3.75px !important;
	}

	.motopress-margin-20 {
		margin : 5px !important;
	}

	.motopress-margin-25 {
		margin : 6.25px !important;
	}

	.motopress-margin-50 {
		margin : 12.5px !important;
	}

	.motopress-margin-100 {
		margin : 25px !important;
	}

	.motopress-margin-top-10 {
		margin-top : 2.5px !important;
	}

	.motopress-margin-top-15 {
		margin-top : 3.75px !important;
	}

	.motopress-margin-top-20 {
		margin-top : 5px !important;
	}

	.motopress-margin-top-25 {
		margin-top : 6.25px !important;
	}

	.motopress-margin-top-50 {
		margin-top : 12.5px !important;
	}

	.motopress-margin-top-100 {
		margin-top : 25px !important;
	}

	.motopress-margin-bottom-10 {
		margin-bottom : 2.5px !important;
	}

	.motopress-margin-bottom-15 {
		margin-bottom : 3.75px !important;
	}

	.motopress-margin-bottom-20 {
		margin-bottom : 5px !important;
	}

	.motopress-margin-bottom-25 {
		margin-bottom : 6.25px !important;
	}

	.motopress-margin-bottom-50 {
		margin-bottom : 12.5px !important;
	}

	.motopress-margin-bottom-100 {
		margin-bottom : 25px !important;
	}

	.motopress-margin-left-10 {
		margin-left : 2.5px !important;
	}

	.motopress-margin-left-15 {
		margin-left : 3.75px !important;
	}

	.motopress-margin-left-20 {
		margin-left : 5px !important;
	}

	.motopress-margin-left-25 {
		margin-left : 6.25px !important;
	}

	.motopress-margin-left-50 {
		margin-left : 12.5px !important;
	}

	.motopress-margin-left-100 {
		margin-left : 25px !important;
	}

	.motopress-margin-right-10 {
		margin-right : 2.5px !important;
	}

	.motopress-margin-right-15 {
		margin-right : 3.75px !important;
	}

	.motopress-margin-right-20 {
		margin-right : 5px !important;
	}

	.motopress-margin-right-25 {
		margin-right : 6.25px !important;
	}

	.motopress-margin-right-50 {
		margin-right : 12.5px !important;
	}

	.motopress-margin-right-100 {
		margin-right : 25px !important;
	}
}

.mp-text-color-default {
	color : #e1e1e1;
}

.mp-text-color-red {
	color : #e25441;
}

.mp-text-color-pink-dreams {
	color : #f78ebd;
}

.mp-text-color-warm {
	color : #ff8f1b;
}

.mp-text-color-hot-summer {
	color : #f8cc17;
}

.mp-text-color-olive-garden {
	color : #98d02c;
}

.mp-text-color-green-grass {
	color : #48ba27;
}

.mp-text-color-skyline {
	color : #0ec0ec;
}

.mp-text-color-aqua-blue {
	color : #2a8ce3;
}

.mp-text-color-violet {
	color : #a456e2;
}

.mp-text-color-dark-grey {
	color : #9a9a9a;
}

.mp-text-color-black {
	color : #373737;
}

.motopress-text-align-left {
	text-align : left;
}

.motopress-text-align-center {
	text-align : center;
}

.motopress-text-align-right {
	text-align : right;
}

.motopress-text-align-justify {
	text-align : justify;
}

.motopress-border-small {
	border-width : 1px;
}

.motopress-border-middle {
	border-width : 5px;
}

.motopress-border-large {
	border-width : 10px;
}

.motopress-border-radius-small {
	border-radius : 1px;
}

.motopress-border-radius-middle {
	border-radius : 5px;
}

.motopress-border-radius-large {
	border-radius : 10px;
}

.motopress-border {
	border : 1px solid #606060;
}

.motopress-shadow {
	box-shadow : 0 0 2px #606060;
}

.motopress-shadow-bottom {
	box-shadow : 0 10px 6px -6px #606060;
}

.motopress-bg-color-white {
	background-color : #ffffff;
}

.motopress-bg-color-white.motopress-border {
	border-color : #e6e6e6;
}

.motopress-bg-color-white.motopress-border-radius {
	border-radius : 5px;
}

.motopress-bg-color-white.motopress-shadow {
	box-shadow : 0 1px 2px rgba(179, 179, 179, 0.75);
}

.motopress-bg-color-white.motopress-shadow-bottom {
	box-shadow : 0 10px 6px -6px rgba(179, 179, 179, 0.75);
}

.motopress-bg-color-white.motopress-border-top {
	border-top : 10px solid #e6e6e6;
}

.motopress-bg-color-white.motopress-border-right {
	border-right : 10px solid #e6e6e6;
}

.motopress-bg-color-white.motopress-border-bottom {
	border-bottom : 10px solid #e6e6e6;
}

.motopress-bg-color-white.motopress-border-left {
	border-left : 10px solid #e6e6e6;
}

.motopress-bg-color-white.motopress-text-shadow {
	text-shadow : 1px 1px rgba(255, 255, 255, 0.25);
}

.motopress-bg-color-white.motopress-color-light .motopress-text-obj {
	color : #efefef;
}

.motopress-bg-color-white.motopress-color-light.motopress-text-shadow .motopress-text-obj {
	text-shadow : 1px 1px rgba(40, 40, 40, 0.2);
}

.motopress-bg-color-white.motopress-color-dark .motopress-text-obj {
	color : #606060;
}

.motopress-bg-color-white.motopress-color-dark.motopress-text-shadow .motopress-text-obj {
	text-shadow : 1px 1px rgba(255, 255, 255, 0.3);
}

.motopress-bg-color-white.motopress-bg-alpha-75 {
	background-color : rgba(255, 255, 255, 0.75);
}

.motopress-bg-color-silver {
	background-color : #f6f6f6;
}

.motopress-bg-color-silver.motopress-border {
	border-color : #dddddd;
}

.motopress-bg-color-silver.motopress-border-radius {
	border-radius : 5px;
}

.motopress-bg-color-silver.motopress-shadow {
	box-shadow : 0 1px 2px rgba(170, 170, 170, 0.75);
}

.motopress-bg-color-silver.motopress-shadow-bottom {
	box-shadow : 0 10px 6px -6px rgba(170, 170, 170, 0.75);
}

.motopress-bg-color-silver.motopress-border-top {
	border-top : 10px solid #dddddd;
}

.motopress-bg-color-silver.motopress-border-right {
	border-right : 10px solid #dddddd;
}

.motopress-bg-color-silver.motopress-border-bottom {
	border-bottom : 10px solid #dddddd;
}

.motopress-bg-color-silver.motopress-border-left {
	border-left : 10px solid #dddddd;
}

.motopress-bg-color-silver.motopress-text-shadow {
	text-shadow : 1px 1px rgba(255, 255, 255, 0.25);
}

.motopress-bg-color-silver.motopress-color-light .motopress-text-obj {
	color : #efefef;
}

.motopress-bg-color-silver.motopress-color-light.motopress-text-shadow .motopress-text-obj {
	text-shadow : 1px 1px rgba(40, 40, 40, 0.2);
}

.motopress-bg-color-silver.motopress-color-dark .motopress-text-obj {
	color : #606060;
}

.motopress-bg-color-silver.motopress-color-dark.motopress-text-shadow .motopress-text-obj {
	text-shadow : 1px 1px rgba(255, 255, 255, 0.3);
}

.motopress-bg-color-silver.motopress-bg-alpha-75 {
	background-color : rgba(246, 246, 246, 0.75);
}

.motopress-bg-color-red {
	background-color : #e74c3c;
}

.motopress-bg-color-red.motopress-border {
	border-color : #d62c1a;
}

.motopress-bg-color-red.motopress-border-radius {
	border-radius : 5px;
}

.motopress-bg-color-red.motopress-shadow {
	box-shadow : 0 1px 2px rgba(123, 25, 15, 0.75);
}

.motopress-bg-color-red.motopress-shadow-bottom {
	box-shadow : 0 10px 6px -6px rgba(123, 25, 15, 0.75);
}

.motopress-bg-color-red.motopress-border-top {
	border-top : 10px solid #d62c1a;
}

.motopress-bg-color-red.motopress-border-right {
	border-right : 10px solid #d62c1a;
}

.motopress-bg-color-red.motopress-border-bottom {
	border-bottom : 10px solid #d62c1a;
}

.motopress-bg-color-red.motopress-border-left {
	border-left : 10px solid #d62c1a;
}

.motopress-bg-color-red.motopress-text-shadow {
	text-shadow : 1px 1px rgba(255, 255, 255, 0.25);
}

.motopress-bg-color-red.motopress-color-light .motopress-text-obj {
	color : #efefef;
}

.motopress-bg-color-red.motopress-color-light.motopress-text-shadow .motopress-text-obj {
	text-shadow : 1px 1px rgba(40, 40, 40, 0.2);
}

.motopress-bg-color-red.motopress-color-dark .motopress-text-obj {
	color : #606060;
}

.motopress-bg-color-red.motopress-color-dark.motopress-text-shadow .motopress-text-obj {
	text-shadow : 1px 1px rgba(255, 255, 255, 0.3);
}

.motopress-bg-color-red.motopress-bg-alpha-75 {
	background-color : rgba(231, 76, 60, 0.75);
}

.motopress-bg-color-green {
	background-color : #99d427;
}

.motopress-bg-color-green.motopress-border {
	border-color : #7aa91f;
}

.motopress-bg-color-green.motopress-border-radius {
	border-radius : 5px;
}

.motopress-bg-color-green.motopress-shadow {
	box-shadow : 0 1px 2px rgba(60, 83, 15, 0.75);
}

.motopress-bg-color-green.motopress-shadow-bottom {
	box-shadow : 0 10px 6px -6px rgba(60, 83, 15, 0.75);
}

.motopress-bg-color-green.motopress-border-top {
	border-top : 10px solid #7aa91f;
}

.motopress-bg-color-green.motopress-border-right {
	border-right : 10px solid #7aa91f;
}

.motopress-bg-color-green.motopress-border-bottom {
	border-bottom : 10px solid #7aa91f;
}

.motopress-bg-color-green.motopress-border-left {
	border-left : 10px solid #7aa91f;
}

.motopress-bg-color-green.motopress-text-shadow {
	text-shadow : 1px 1px rgba(255, 255, 255, 0.25);
}

.motopress-bg-color-green.motopress-color-light .motopress-text-obj {
	color : #efefef;
}

.motopress-bg-color-green.motopress-color-light.motopress-text-shadow .motopress-text-obj {
	text-shadow : 1px 1px rgba(40, 40, 40, 0.2);
}

.motopress-bg-color-green.motopress-color-dark .motopress-text-obj {
	color : #606060;
}

.motopress-bg-color-green.motopress-color-dark.motopress-text-shadow .motopress-text-obj {
	text-shadow : 1px 1px rgba(255, 255, 255, 0.3);
}

.motopress-bg-color-green.motopress-bg-alpha-75 {
	background-color : rgba(153, 212, 39, 0.75);
}

.motopress-bg-color-blue {
	background-color : #3498db;
}

.motopress-bg-color-blue.motopress-border {
	border-color : #217dbb;
}

.motopress-bg-color-blue.motopress-border-radius {
	border-radius : 5px;
}

.motopress-bg-color-blue.motopress-shadow {
	box-shadow : 0 1px 2px rgba(18, 67, 100, 0.75);
}

.motopress-bg-color-blue.motopress-shadow-bottom {
	box-shadow : 0 10px 6px -6px rgba(18, 67, 100, 0.75);
}

.motopress-bg-color-blue.motopress-border-top {
	border-top : 10px solid #217dbb;
}

.motopress-bg-color-blue.motopress-border-right {
	border-right : 10px solid #217dbb;
}

.motopress-bg-color-blue.motopress-border-bottom {
	border-bottom : 10px solid #217dbb;
}

.motopress-bg-color-blue.motopress-border-left {
	border-left : 10px solid #217dbb;
}

.motopress-bg-color-blue.motopress-text-shadow {
	text-shadow : 1px 1px rgba(255, 255, 255, 0.25);
}

.motopress-bg-color-blue.motopress-color-light .motopress-text-obj {
	color : #efefef;
}

.motopress-bg-color-blue.motopress-color-light.motopress-text-shadow .motopress-text-obj {
	text-shadow : 1px 1px rgba(40, 40, 40, 0.2);
}

.motopress-bg-color-blue.motopress-color-dark .motopress-text-obj {
	color : #606060;
}

.motopress-bg-color-blue.motopress-color-dark.motopress-text-shadow .motopress-text-obj {
	text-shadow : 1px 1px rgba(255, 255, 255, 0.3);
}

.motopress-bg-color-blue.motopress-bg-alpha-75 {
	background-color : rgba(52, 152, 219, 0.75);
}

.motopress-bg-color-dark {
	background-color : #414141;
}

.motopress-bg-color-dark.motopress-border {
	border-color : #272727;
}

.motopress-bg-color-dark.motopress-border-radius {
	border-radius : 5px;
}

.motopress-bg-color-dark.motopress-shadow {
	box-shadow : 0 1px 2px rgba(0, 0, 0, 0.75);
}

.motopress-bg-color-dark.motopress-shadow-bottom {
	box-shadow : 0 10px 6px -6px rgba(0, 0, 0, 0.75);
}

.motopress-bg-color-dark.motopress-border-top {
	border-top : 10px solid #272727;
}

.motopress-bg-color-dark.motopress-border-right {
	border-right : 10px solid #272727;
}

.motopress-bg-color-dark.motopress-border-bottom {
	border-bottom : 10px solid #272727;
}

.motopress-bg-color-dark.motopress-border-left {
	border-left : 10px solid #272727;
}

.motopress-bg-color-dark.motopress-text-shadow {
	text-shadow : 1px 1px rgba(255, 255, 255, 0.25);
}

.motopress-bg-color-dark.motopress-color-light .motopress-text-obj {
	color : #efefef;
}

.motopress-bg-color-dark.motopress-color-light.motopress-text-shadow .motopress-text-obj {
	text-shadow : 1px 1px rgba(40, 40, 40, 0.2);
}

.motopress-bg-color-dark.motopress-color-dark .motopress-text-obj {
	color : #606060;
}

.motopress-bg-color-dark.motopress-color-dark.motopress-text-shadow .motopress-text-obj {
	text-shadow : 1px 1px rgba(255, 255, 255, 0.3);
}

.motopress-bg-color-dark.motopress-bg-alpha-75 {
	background-color : rgba(65, 65, 65, 0.75);
}

.motopress-bg-color-yellow {
	background-color : #f1c40f;
}

.motopress-bg-color-yellow.motopress-border {
	border-color : #c29d0b;
}

.motopress-bg-color-yellow.motopress-border-radius {
	border-radius : 5px;
}

.motopress-bg-color-yellow.motopress-shadow {
	box-shadow : 0 1px 2px rgba(97, 79, 6, 0.75);
}

.motopress-bg-color-yellow.motopress-shadow-bottom {
	box-shadow : 0 10px 6px -6px rgba(97, 79, 6, 0.75);
}

.motopress-bg-color-yellow.motopress-border-top {
	border-top : 10px solid #c29d0b;
}

.motopress-bg-color-yellow.motopress-border-right {
	border-right : 10px solid #c29d0b;
}

.motopress-bg-color-yellow.motopress-border-bottom {
	border-bottom : 10px solid #c29d0b;
}

.motopress-bg-color-yellow.motopress-border-left {
	border-left : 10px solid #c29d0b;
}

.motopress-bg-color-yellow.motopress-text-shadow {
	text-shadow : 1px 1px rgba(255, 255, 255, 0.25);
}

.motopress-bg-color-yellow.motopress-color-light .motopress-text-obj {
	color : #efefef;
}

.motopress-bg-color-yellow.motopress-color-light.motopress-text-shadow .motopress-text-obj {
	text-shadow : 1px 1px rgba(40, 40, 40, 0.2);
}

.motopress-bg-color-yellow.motopress-color-dark .motopress-text-obj {
	color : #606060;
}

.motopress-bg-color-yellow.motopress-color-dark.motopress-text-shadow .motopress-text-obj {
	text-shadow : 1px 1px rgba(255, 255, 255, 0.3);
}

.motopress-bg-color-yellow.motopress-bg-alpha-75 {
	background-color : rgba(241, 196, 15, 0.75);
}

.motopress-bg-color-gray {
	background-color : #474f58;
}

.motopress-bg-color-gray.motopress-border {
	border-color : #30363c;
}

.motopress-bg-color-gray.motopress-border-radius {
	border-radius : 5px;
}

.motopress-bg-color-gray.motopress-shadow {
	box-shadow : 0 1px 2px rgba(3, 3, 3, 0.75);
}

.motopress-bg-color-gray.motopress-shadow-bottom {
	box-shadow : 0 10px 6px -6px rgba(3, 3, 3, 0.75);
}

.motopress-bg-color-gray.motopress-border-top {
	border-top : 10px solid #30363c;
}

.motopress-bg-color-gray.motopress-border-right {
	border-right : 10px solid #30363c;
}

.motopress-bg-color-gray.motopress-border-bottom {
	border-bottom : 10px solid #30363c;
}

.motopress-bg-color-gray.motopress-border-left {
	border-left : 10px solid #30363c;
}

.motopress-bg-color-gray.motopress-text-shadow {
	text-shadow : 1px 1px rgba(255, 255, 255, 0.25);
}

.motopress-bg-color-gray.motopress-color-light .motopress-text-obj {
	color : #efefef;
}

.motopress-bg-color-gray.motopress-color-light.motopress-text-shadow .motopress-text-obj {
	text-shadow : 1px 1px rgba(40, 40, 40, 0.2);
}

.motopress-bg-color-gray.motopress-color-dark .motopress-text-obj {
	color : #606060;
}

.motopress-bg-color-gray.motopress-color-dark.motopress-text-shadow .motopress-text-obj {
	text-shadow : 1px 1px rgba(255, 255, 255, 0.3);
}

.motopress-bg-color-gray.motopress-bg-alpha-75 {
	background-color : rgba(71, 79, 88, 0.75);
}

.motopress-padding-5 {
	padding : 5px;
}

.motopress-padding-10 {
	padding : 10px;
}

.motopress-padding-15 {
	padding : 15px;
}

.motopress-padding-25 {
	padding : 25px;
}

.motopress-padding-50 {
	padding : 50px;
}

.motopress-padding-75 {
	padding : 75px;
}

.motopress-padding-100 {
	padding : 100px;
}

.motopress-padding-150 {
	padding : 150px;
}

.motopress-padding-200 {
	padding : 200px;
}

.motopress-padding-250 {
	padding : 250px;
}

.motopress-padding-300 {
	padding : 300px;
}

.motopress-vetical-padding-5 {
	padding-top    : 5px;
	padding-bottom : 5px;
}

.motopress-vetical-padding-10 {
	padding-top    : 10px;
	padding-bottom : 10px;
}

.motopress-vetical-padding-15 {
	padding-top    : 15px;
	padding-bottom : 15px;
}

.motopress-vetical-padding-25 {
	padding-top    : 25px;
	padding-bottom : 25px;
}

.motopress-vetical-padding-50 {
	padding-top    : 50px;
	padding-bottom : 50px;
}

.motopress-vetical-padding-75 {
	padding-top    : 75px;
	padding-bottom : 75px;
}

.motopress-vetical-padding-100 {
	padding-top    : 100px;
	padding-bottom : 100px;
}

.motopress-vetical-padding-150 {
	padding-top    : 150px;
	padding-bottom : 150px;
}

.motopress-vetical-padding-200 {
	padding-top    : 200px;
	padding-bottom : 200px;
}

.motopress-vetical-padding-250 {
	padding-top    : 250px;
	padding-bottom : 250px;
}

.motopress-vetical-padding-300 {
	padding-top    : 300px;
	padding-bottom : 300px;
}

.motopress-hide-script {
	display : none;
}
