/*

License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

*/

/*--------------------------------------------------------------
1.0 - Reset
--------------------------------------------------------------*/

#sequence ul {
	border: 0;
	font-family: inherit;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
}

*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

/*body {
	background: #f4f4f4; *//* Fallback for when there is no custom background color defined. *//*
}*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
	display: block;
}

ol, ul {
	list-style: none;
}

table { /* tables still need 'cellspacing="0"' in the markup */
	border-collapse: separate;
	border-spacing: 0;
}

caption, th, td {
	font-weight: normal;
	text-align: left;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}

blockquote, q {
	quotes: "" "";
}

a {
	text-decoration: none;
	outline: 0;
}

a:focus {
	outline: 0;
}

a:hover,
a:active {
	outline: 0;
}

a img {
	border: 0;
}

/*--------------------------------------------------------------
2.0 Typography
--------------------------------------------------------------*/
/*body,
button,
input,
select,
textarea {
	color: #404040;
	font-family: 'Oswald', Helvetica, arial, sans-serif;
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 1.5;
}*/
h1, h2, h3, h4, h5, h6 {
	clear: both;
}

/*h1 { font-size: 34px; }
h2 { font-size: 30px; }
h3 { font-size: 26px; }
h4 { font-size: 22px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }*/

.entry-meta h2 {
	font-size: 16px;
}

/*p {
	margin-bottom: 1.5em;
	font-weight: 300;
}*/
b, strong {
	font-weight: bold;
}

dfn, cite, em, i {
	font-style: italic;
}

blockquote {
	padding: 22px 20px 1px;
	background: #ededed;
	color: #999;
	font-style: italic;
	border-left: 5px solid #dc6263;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: 1.5rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code, kbd, tt, var {
	font: 15px Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr, acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark, ins {
	background: #fff9c0;
	text-decoration: none;
}

sup,
sub {
	font-size: 75%;
	height: 0;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	bottom: 1ex;
}

sub {
	top: .5ex;
}

small {
	font-size: 75%;
}

big {
	font-size: 125%;
}

.uppercase {
	text-transform: uppercase;
}

.overview {
	text-transform: uppercase;
	padding-bottom: .25em;
	margin: .25em 0 .25em;
	border-bottom: 1px dotted #999;
}

.location {
	text-transform: uppercase;
	padding-bottom: .25em;
	margin: .25em 0 .5em;
	border-bottom: 1px dotted #999;
}

.details {
	text-transform: uppercase;
	padding-bottom: .25em;
	margin: .25em 0 0em;
	border-bottom: 1px dotted #999;
}

/*--------------------------------------------------------------
3.0 Elements
--------------------------------------------------------------*/
hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul, ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

img {
	height: auto; /* Make sure images are scaled correctly. */
	max-width: 100%; /* Adhere to container width. */
}

figure {
	margin: 0;
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

th {
	font-weight: bold;
}

.red-plus {
	border: 3px solid #dc6263;
	color: #dc6263;
	border-radius: 100px;
	height: 28px;
	width: 28px;
	font-size: 15px;
	line-height: 14px;
	padding: 5px;
	transition: all 0.15s ease-out 0s;
}

.red-plus:hover {
	color: #fff;
	-wekbit-transition: all 0.15s ease-out 0s;
	-moz-transition: all 0.15s ease-out 0s;
	-o-transition: all 0.15s ease-out 0s;
	-ms-transition: all 0.15s ease-out 0s;
	transition: all 0.15s ease-out 0s;
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-o-transform: scale(1.2);
	-ms-transform: scale(1.2);
	transform: scale(1.2);
}

.dark-plus {
	border: 3px solid #dc6263;
	color: #dc6263;
	border-radius: 100px;
	height: 29px;
	width: 29px;
	font-size: 15px;
	line-height: 14px;
	padding: 5px 5px;
	transition: all 0.15s ease-out 0s;
}

.dark-plus:hover {
	color: #323232;
	-wekbit-transition: all 0.15s ease-out 0s;
	-moz-transition: all 0.15s ease-out 0s;
	-o-transition: all 0.15s ease-out 0s;
	-ms-transition: all 0.15s ease-out 0s;
	transition: all 0.15s ease-out 0s;
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-o-transform: scale(1.2);
	-ms-transform: scale(1.2);
	transform: scale(1.2);
}

/*--------------------------------------------------------------
4.0 Forms
--------------------------------------------------------------*/
button,
input,
select,
textarea {
	font-size: 100%; /* Corrects font size not being inherited in all browsers */
	margin: 0; /* Addresses margins set differently in IE6/7, F3/4, S5, Chrome */
	vertical-align: baseline; /* Improves appearance and consistency in all browsers */
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: none;
	background: #dc6263;
	color: #FFF;
	cursor: pointer; /* Improves usability and consistency of cursor style between image-type 'input' and others */
	-webkit-appearance: button; /* Corrects inability to style clickable 'input' types in iOS */
	font-size: 14px;
	line-height: 1;
	text-transform: uppercase;
	padding: 1.3em 2em 1.2em;
	-webkit-transition: all 0.25s ease-in-out 0s;
	-moz-transition: all 0.25s ease-in-out 0s;
	-o-transition: all 0.25s ease-in-out 0s;
	-ms-transition: all 0.25s ease-in-out 0s;
	transition: all 0.25s ease-in-out 0s;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	background: #d55455;
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
	-webkit-transition: all 0.25s ease-in-out 0s;
	-moz-transition: all 0.25s ease-in-out 0s;
	-o-transition: all 0.25s ease-in-out 0s;
	-ms-transition: all 0.25s ease-in-out 0s;
	transition: all 0.25s ease-in-out 0s;
}

button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
	background: #d55455;
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
	-webkit-transition: all 0.25s ease-in-out 0s;
	-moz-transition: all 0.25s ease-in-out 0s;
	-o-transition: all 0.25s ease-in-out 0s;
	-ms-transition: all 0.25s ease-in-out 0s;
	transition: all 0.25s ease-in-out 0s;
}

button.read-more {
	padding: 15px 20px;
	font-size: 13px;
}

.widget button {
	width: 100%;
}

input[type="checkbox"],
input[type="radio"] {
	padding: 0; /* Addresses excess padding in IE8/9 */
}

input[type="search"] {
	-webkit-appearance: textfield; /* Addresses appearance set to searchfield in S5, Chrome */
	-webkit-box-sizing: content-box; /* Addresses box sizing set to border-box in S5, Chrome (include -moz to future-proof) */
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}

input[type="search"]::-webkit-search-decoration { /* Corrects inner padding displayed oddly in S5, Chrome on OSX */
	-webkit-appearance: none;
}

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

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
	width: 100%;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
	color: #111;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"] {
	padding: 3px;
}

textarea {
	overflow: auto; /* Removes default vertical scrollbar in IE6/7/8/9 */
	padding-left: 3px;
	vertical-align: top; /* Improves readability and alignment in all browsers */
	width: 100%;
}

.contact-form input[type="text"], .contact-form input[type="url"], .contact-form input[type="email"], .contact-form input[type="tel"], .contact-form input[type="number"], .contact-form input[type="password"] {
	margin-bottom: 6px !important;
}

.contact-form input[type="text"], .contact-form input[type="url"], .contact-form input[type="email"], .contact-form input[type="tel"], .contact-form input[type="number"], .contact-form input[type="password"] {
	font-family: inherit;
	font-size: 11px;
	letter-spacing: normal;
	outline-style: none;
	padding: 5px 2px;
}

.contact_left_half {
	clear: left !important;
	float: left;
	width: 49%;
}

.contact_right_half {
	clear: right !important;
	float: right;
	width: 49%;
}

.contact-form textarea {
	margin-bottom: 6px !important;
	font-family: inherit;
	font-size: 11px;
	letter-spacing: normal;
	outline-style: none;
	padding: 5px 2px;
}

.contact-form {
	margin-top: 5px !important;
}

.contact-form input[type="submit"] {
	width: 100%;
}

.contact-form {
	list-style: none;
	margin: 0;
}

/*--------------------------------------------------------------
5.0 Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
5.1 Links
--------------------------------------------------------------*/
a {
	/*color: #dc6263;*/
	color: #000000;
}

a:hover,
a:focus,
a:active {
	/*color: #d55455;*/
	color: #000000;
}

/*--------------------------------------------------------------
5.2 Menus
--------------------------------------------------------------*/
.main-navigation {
	clear: both;
	display: block;
}

.nav-container {
	-webkit-font-smoothing: antialiased;
	padding-right: 0px !important;
}

.main-navigation ul {
	list-style: none;
	margin: 0;
	padding-left: 0;
	float: right;
}

.main-navigation li {
	float: left;
	position: relative;
}

.main-navigation a {
	display: block;
	text-decoration: none;
	color: #fff;
	padding: 25px 22px;
	font-weight: 300;
	font-size: 14px;
	text-transform: uppercase;
}

.main-navigation ul ul {
	background: #1e1c1d;
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 70px;
	left: -999em;
	z-index: 99999;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul a {
	width: 200px;
	padding: 10px 20px;
	color: #fff;
	border-bottom: 1px dotted #666;
}

.main-navigation ul ul li {
	border-left: 4px solid #dc6263;
}

.main-navigation li:hover > a {
	color: #dc6263;
}

.main-navigation ul ul :hover > a {
}

.main-navigation ul ul a:hover {
}

.main-navigation ul li:hover > ul {
	left: auto;
}

.main-navigation ul ul li:hover > ul {
	left: 100%;
}

.main-navigation .current_page_item a,
.main-navigation .current-menu-item a {
}

/* Small menu */
.menu-toggle {
	display: none;
}

.sequence-pagination {
	position: absolute;
	width: 100%;
	text-align: center;
	z-index: 5;
	bottom: 28px;
}

.sequence-pagination li {
	display: inline-block;
	padding: 0px 5px;
}

.sequence-pagination .current {
	font-weight: bold;
}

.site-main .comment-navigation,
.site-main .paging-navigation,
.site-main .post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}

.comment-navigation .nav-previous,
.paging-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 48%;
	padding: 18px 20px 20px;
	background: #dc6263;
	font-size: 15px;
	line-height: 15px;
	font-style: italic;
	font-weight: 300;
	color: #fff;
	text-align: center;
}

.comment-navigation .nav-next,
.paging-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: center;
	width: 48%;
	padding: 18px 20px 20px;
	background: #dc6263;
	font-size: 15px;
	line-height: 15px;
	font-style: italic;
	font-weight: 300;
}

.meta-nav {
	color: #fff;
	font-size: 20px;
	padding: 0px 5px;
}

.nav-links a {
	color: #fff;
}

.header-overflow {
	overflow: visible !important;
}

/*--------------------------------------------------------------
6.0 Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:hover,
.screen-reader-text:active,
.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar */
}

/*--------------------------------------------------------------
7.0 Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin: 0 auto;
}

/*--------------------------------------------------------------
8.0 Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: '';
	display: table;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

/*--------------------------------------------------------------
9.0 Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
}

/* Make sure select elements fit in widgets */
.widget select {
	max-width: 100%;
}

/* Search widget */
.widget_search .search-submit {
	display: none;
}

.widget-area {
	background: rgba(0, 0, 0, 0.85);
	border-radius: 0 8px 8px 0;
	padding: 20px !important;
	margin-top: 20px;
	color: #999;
	font-weight: 300;
}

.widget-title {
	color: #fff;
	font-size: 20px;
	text-transform: uppercase;
	font-weight: 400;
}

.widget ul {
	margin: 0;
	list-style: none;
}

/*--------------------------------------------------------------
10.0 Content
--------------------------------------------------------------*/

.site-header {
	background: rgba(0, 0, 0, 0.85);
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 99;
	color: #fff;
	height: 70px;
}

.site-title, .site-title a {
	color: #fff;
	font-size: 1.7em;
	font-weight: 300;
	text-transform: uppercase;
}

.schedule-title span {
	background: #dc6263;
	color: #fff;
	padding: 14px 30px;
	height: 45px;
	text-transform: uppercase;
	-webkit-font-smoothing: antialiased;
}

.schedule-title {
	position: absolute;
	margin-top: -39px;
	max-width: 350px;
	z-index: 999;
}

.socials {
	text-align: right;
}

ul.social-media-icons {
	margin: 0;
	text-align: right;
}

.social-media-icons li {
	color: #fff;
	display: inline-block;
	float: none;
	list-style: none outside none;
}

.social-media-icons li a {
	padding: 0;
}

.social-container {
	padding-right: 0 !important;
}

.social-container .fa {
	padding: 25px 5px;
	color: #fff;
	font-size: 1.25em;
	-o-transition: .5s;
	-ms-transition: .5s;
	-moz-transition: .5s;
	-webkit-transition: .5s;
	transition: .5s;
}

.social-container .fa:hover {
	opacity: 0.5;
}

.class {
	padding-right: 0px !important;
	background: #fff;
	text-align: center;
	padding-bottom: 10px;
	overflow: hidden;
}

.class:hover > .dark-plus {
	color: #323232;
	-wekbit-transition: all 0.15s ease-out 0s;
	-moz-transition: all 0.15s ease-out 0s;
	-o-transition: all 0.15s ease-out 0s;
	-ms-transition: all 0.15s ease-out 0s;
	transition: all 0.15s ease-out 0s;
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-o-transform: scale(1.2);
	-ms-transform: scale(1.2);
	transform: scale(1.2);
}

.class img {
	width: 100%;
}

.class h1 {
	text-transform: uppercase;
	font-size: 16px;
	line-height: 16px;
	padding-top: 8px;
}

a > .class > h1 {
	color: #404040;
}

.class h2 {
	font-size: 13px;
	color: #dc6263;
	text-transform: uppercase;
	padding-bottom: 8px;
}

.class-schedule {
	border: 1px solid #b3b3b3;
	border-top: 5px solid #dc6263;
	color: #dc6263;
	background: #fff;
	text-align: center;
	overflow: hidden;
	font-size: 14px;
	font-style: italic;
	font-weight: 300;
	margin-bottom: 20px;
}

.class-schedule:hover > .dark-plus {
	color: #323232;
	-wekbit-transition: all 0.15s ease-out 0s;
	-moz-transition: all 0.15s ease-out 0s;
	-o-transition: all 0.15s ease-out 0s;
	-ms-transition: all 0.15s ease-out 0s;
	transition: all 0.15s ease-out 0s;
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-o-transform: scale(1.2);
	-ms-transform: scale(1.2);
	transform: scale(1.2);
}

.class-schedule img {
	width: 100%;
}

.class-schedule h1 {
	color: #404040;
	text-transform: uppercase;
	font-size: 20px;
	padding: 10px;
	border-bottom: 1px dotted #999;
	font-style: normal;
	font-weight: 500;
}

.schedule-class {
	width: 100%;
}

.cta {
	margin: 60px auto !important;
	padding: 40px 30px 35px !important;
	color: #fff;
	font-size: 30px;
	text-transform: uppercase;
}

.site-footer {
	background-color: #1e1c1d !important;
	color: #fff;
	margin-top: 40px;
	text-align: center;
	padding-top: 5px;
}

.site-footer-image {
	margin-bottom: 30px;
	width: 185px;
}

.site-footer h5 {
	font-weight: 300;
	font-size: 20px;
}

.site-info {
	background: #000;
	margin-top: 40px;
	font-size: 12px;
	padding: 20px;
	text-transform: uppercase;
}

.top-footer-text {
	font-size: 30px;
	margin-bottom: 0px;
}

.class-content {
	margin: 0 0 1.5em;
	font-weight: 500;
	text-align: center;
}

.class-third {
	border-right: 1px dotted #999;
	padding: 10px;
	width: 32%;
	margin-right: 2%;
	float: left;
	font-size: 90%;
}

.class-third-last {
	padding: 10px;
	width: 32%;
	float: left;
	font-size: 90%;
}

.class-address {
	border-top: 1px dotted #999;
	border-bottom: 1px dotted #999;
	padding: 10px;
}

.class-table {
	min-width: 0px !important;
}

.site-logo {
	padding-top: 10px;
}

/*--------------------------------------------------------------
10.1 Posts and pages
--------------------------------------------------------------*/
.sticky {
}

.hentry {
	margin: 0 0 1.5em;
}

.byline,
.updated {
	display: none;
}

.single .byline,
.group-blog .byline {
	display: inline;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.entry-title, .entry-title a {
	font-size: 28px;
	line-height: 30px;
	color: #404040;
	text-transform: uppercase;
}

.page-entry-title {
	padding-bottom: 1em;
	border-bottom: 1px dotted #999;
}

.entry-meta, .entry-meta a {
	color: #dc6263;
	text-transform: uppercase;
}

.entry-meta h2 {
	padding-bottom: 15px;
	border-bottom: 1px dotted #999;
}

.fc-single-header {
	padding-bottom: 1.5em;
	border-bottom: 1px dotted #999;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

.home-blog {
	background: #fff;
	margin-bottom: 20px !important;
}

.home-blog-info {
	padding: 20px !important;
}

.home-blog-info .hentry {
	margin-bottom: 0;
}

.home-blog-photo {
	padding: 0 !important;
}

.home-blog-photo img {
	margin-bottom: -4px;
}

.home-blog-info .entry-content {
	margin-top: 15px;
}

.home-blog-title span {
	background: #dc6263;
	color: #fff;
	display: inline-block;
	padding: 14px 30px;
	text-transform: uppercase;
}

.home-blog-title {
	max-width: 350px;
	z-index: 999;
}

.comments-link {
	font-size: 14px;
	text-transform: uppercase;
}

.page-area {
	padding-top: 110px !important;
	padding-right: 20px !important;
}

.class-page-area {
	padding-top: 110px !important;
}

.page-wrapper {
	background: #fff;
	padding: 20px;
	border: 1px solid #ccc;
	border-top: 5px solid #dc6263;
}

.fc-post-image {
	width: 100%;
	padding-top: 20px;
}

.fc-class-image {
	width: 100%;
	padding-bottom: 20px;
}

.archive-title {
	color: #dc6263;
	font-size: 32px;
	text-transform: uppercase;
	padding-bottom: 20px;
}

.archive-wrapper article {
	border-top: 1px dotted #999;
	padding-top: 20px;
}

.blog-wrapper article {
	border-bottom: 1px dotted #999;
	padding-bottom: 25px;
}

.blog-wrapper article:last-child {
	border-bottom: none;
	padding-bottom: 0px;
}

/*--------------------------------------------------------------
10.2 Asides
--------------------------------------------------------------*/
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
	display: none;
}

/*--------------------------------------------------------------
10.3 Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
}

.comment-form-author, .comment-form-email, .comment-form-url {
	float: left;
	font-size: 15px;
	font-weight: 500;
	text-transform: uppercase;
	width: 33.2833%;
}

.comment-form-author, .comment-form-email {
	padding-right: 0.5em;
}

.form-allowed-tags {
	display: none;
}

#reply-title, .comment-form-comment {
	font-size: 15px;
	font-weight: 500;
	text-transform: uppercase;
}

.comment-notes {
	font-size: 13px;
	font-style: italic;
}

#comments {
	border-top: 1px dotted #999;
	padding-top: 20px;
}

/*--------------------------------------------------------------
11.0 Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .paging-navigation, /* Older / Newer Posts Navigation (always hidden) */
.infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */
	display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
12.0 Media
--------------------------------------------------------------*/
.page-content img.wp-smiley,
.entry-content img.wp-smiley,
.comment-content img.wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers */
embed,
iframe,
object {
	max-width: 100%;
}

/*--------------------------------------------------------------
12.1 Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin: 0 auto;
}

.wp-caption-text {
	text-align: center;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

/*--------------------------------------------------------------
12.2 Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
}

/*--------------------------------------------------------------
12.3 Slider
--------------------------------------------------------------*/

#sequence {
	position: relative;
	/*height: 675px;*/
	height: 500px;
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
	color: white;
	z-index: 1;
}

ul.sequence-canvas {
	margin: 0;
	list-style: none;
}

#sequence > .sequence-canvas {
	height: 100%;
	width: 100%;
}

#sequence > .sequence-canvas > li {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 1;
}

#sequence > .sequence-canvas li > * {
	position: absolute;
	-webkit-transition-timing-function: ease-in-out;
	-moz-transition-timing-function: ease-in-out;
	-ms-transition-timing-function: ease-in-out;
	-o-transition-timing-function: ease-in-out;
	transition-timing-function: ease-in-out;
}

#sequence .sequence-next,
#sequence .sequence-prev {
	cursor: pointer;
	display: none;
	font-size: 40px;
	font-weight: bold;
	position: absolute;
	opacity: 0.4;
	/*top: 46%;*/
	top: 87%;
	height: 41px;
	width: 39px;
	z-index: 20;
	color: #fff;
	-webkit-transition-duration: 0.4s;
	-moz-transition-duration: 0.4s;
	-ms-transition-duration: 0.4s;
	-o-transition-duration: 0.4s;
	transition-duration: 0.4s;
}

#sequence .sequence-prev {
	left: 50%;
	margin-left: -60px; /*left: 40px;*/
}

#sequence .sequence-next {
	right: 50%;
	margin-right: -60px; /*right: 20px; */
}

#sequence .sequence-next:hover,
#sequence .sequence-prev:hover {
	opacity: 1;
	/*top: 45.7%;*/
	top: 86.7%;
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-ms-transform: scale(1.2);
	-o-transform: scale(1.2);
	transform: scale(1.2);
	-webkit-transition-duration: 0.4s;
	-moz-transition-duration: 0.4s;
	-ms-transition-duration: 0.4s;
	-o-transition-duration: 0.4s;
	transition-duration: 0.4s;
}

#sequence .bg {
	opacity: 0;
	/*opacity: 1; slide*/
	z-index: 1;
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	/*left: 100%; slide*/
	/*	right: 0;*/
	bottom: 0;
}

#sequence .animate-in .bg {
	opacity: 1;
	z-index: 1;

	left: 0%;

	-webkit-transition-duration: 1.3s;
	-moz-transition-duration: 1.3s;
	-ms-transition-duration: 1.3s;
	-o-transition-duration: 1.3s;
	transition-duration: 1.3s;
}

#sequence .animate-out .bg {
	opacity: 0;
	/*opacity: 1; slide*/
	z-index: 1;

	/*left: -100%; slide*/

	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-ms-transform: scale(1.2);
	-o-transform: scale(1.2);
	transform: scale(1.2);
	-webkit-transition-duration: 1.8s;
	-moz-transition-duration: 1.8s;
	-ms-transition-duration: 1.8s;
	-o-transition-duration: 1.8s;
	transition-duration: 1.8s;
}

/*#sequence .mainImgBlock {
    width: 1200px;
    height: 500px;
    margin: 0 auto !important;
    position: relative !important;
    z-index: 12;
}*/

.slide-title span {
	text-transform: uppercase;
	letter-spacing: 0.01em;
}

#sequence .slide-title {
	/*    opacity: 0;*/
	opacity: 1;
	z-index: 10;
	/*	text-align: center;*/
	/*	right: 150%;*/
	bottom: 58%;
	/*background: #dc6263;*/
	/*width: 330px;
	padding: 15px 10px;*/
	width: 1200px;
	padding: 15px 0px;

	right: -150%;
	/*    left: 150%;*/
	margin-right: -600px;

	-webkit-transition-duration: 1.3s;
	-moz-transition-duration: 1.3s;
	-ms-transition-duration: 1.3s;
	-o-transition-duration: 1.3s;
	transition-duration: 1.3s;
}

#sequence .animate-in .slide-title {
	opacity: 1;
	z-index: 10;
	/*right: 340px;*/
	/*right: 14.6%;*/
	bottom: 58%;
	/*background: #dc6263;*/
	/*width: 330px;
	padding: 15px 10px;*/
	width: 1200px;
	padding: 15px 0px;
	right: 50%;
	margin-right: -600px;
	-webkit-transition-duration: 1.3s;
	-moz-transition-duration: 1.3s;
	-ms-transition-duration: 1.3s;
	-o-transition-duration: 1.3s;
	transition-duration: 1.3s;
}

#sequence .animate-out .slide-title {
	/*    opacity: 0;*/
	opacity: 0;
	z-index: 10;
	/*right: 340px;*/
	/*right: 14.6%;*/

	bottom: 58%;
	/*	bottom: 150%;*/

	/*background: #dc6263;*/
	/*width: 330px;
	padding: 15px 10px;*/
	width: 1200px;
	padding: 15px 0px;
	right: 170%;
	margin-right: -600px;
	/*    margin-right: 0px;*/
	-webkit-transition-duration: 2.3s;
	-moz-transition-duration: 2.3s;
	-ms-transition-duration: 2.3s;
	-o-transition-duration: 2.3s;
	transition-duration: 2.3s;
}

#sequence .slide-description span {
	/*display: block;*/
	margin-bottom: 7px;
}

#sequence .slide-description:hover > .red-plus {
	color: #fff;
	-wekbit-transition: all 0.15s ease-out 0s;
	-moz-transition: all 0.15s ease-out 0s;
	-o-transition: all 0.15s ease-out 0s;
	-ms-transition: all 0.15s ease-out 0s;
	transition: all 0.15s ease-out 0s;
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-o-transform: scale(1.2);
	-ms-transform: scale(1.2);
	transform: scale(1.2);
}

#sequence .slide-description {
	font-weight: 300;
	/*    opacity: 0;*/
	opacity: 1;
	z-index: 10;
	/*	right: -150%;*/
	top: 36%;
	/*background: #1e1c1d;*/
	/*width: 330px;*/
	width: 1200px;
	padding: 15px 0px 10px;
	/*      right: 50%;*/
	right: -150%;
	margin-right: -600px;
	-webkit-transition-duration: 1.3s;
	-moz-transition-duration: 1.3s;
	-ms-transition-duration: 1.3s;
	-o-transition-duration: 1.3s;
	transition-duration: 1.3s;
}

#sequence .animate-in .slide-description {
	opacity: 1;
	z-index: 10;
	/*right: 170px;*/
	/*right: 15%;*/
	/*left: 50%;
      margin-left:15.2%;*/
	top: 36%;
	/*background: #1e1c1d;*/
	/*width: 330px;*/
	width: 1200px;
	padding: 15px 0px 10px;
	right: 50%;
	margin-right: -600px;
	-webkit-transition-duration: 1.3s;
	-moz-transition-duration: 1.3s;
	-ms-transition-duration: 1.3s;
	-o-transition-duration: 1.3s;
	transition-duration: 1.3s;
}

#sequence .animate-out .slide-description {
	opacity: 0;
	z-index: 10;
	/*right: 170px;*/
	/*right: 15%;*/
	/*left: 50%;
	  margin-left:15.2%;*/
	/*	top: 150%;*/
	top: 36%;
	/*background: #1e1c1d;*/
	/*width: 380px;*/
	width: 1200px;
	padding: 15px 0px 10px;
	right: 170%;
	margin-right: -600px;
	/*      margin-right: 0px;*/
	-webkit-transition-duration: 2.3s;
	-moz-transition-duration: 2.3s;
	-ms-transition-duration: 2.3s;
	-o-transition-duration: 2.3s;
	transition-duration: 2.3s;
}

/*--------------------------------------------------------------
13.0 - Skeleton
--------------------------------------------------------------*/

*, *:after, *:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	margin: 0px;
}

[class*='col-'] {
	float: left;
	padding-right: 20px; /* column-space */
}

.grid {
	width: 100%;
	max-width: 1140px;
	min-width: 755px;
	margin: 0 auto;
	overflow: hidden;
}

.grid:after {
	content: "";
	display: table;
	clear: both;
}

.grid-pad {
	padding-top: 20px;
	padding-left: 20px; /* grid-space to left */
	padding-right: 0px; /* grid-space to right: (grid-space-left - column-space) e.g. 20px-20px=0 */
}

.side-pad {
	padding-left: 20px !important;
	padding-right: 20px !important;
}

.push-right {
	float: right;
}

/* Content Columns */

.col-1-1 {
	width: 100%;
}

.col-2-3, .col-8-12 {
	width: 66.66%;
}

.col-1-2, .col-6-12 {
	width: 50%;
}

.col-1-3, .col-4-12 {
	width: 33.33%;
}

.col-1-4, .col-3-12 {
	width: 25%;
}

.col-1-5 {
	width: 20%;
}

.col-1-6, .col-2-12 {
	width: 16.667%;
}

.col-1-7 {
	width: 14.28%;
}

.col-1-8 {
	width: 12.5%;
}

.col-1-9 {
	width: 11.1%;
}

.col-1-10 {
	width: 10%;
}

.col-1-11 {
	width: 9.09%;
}

.col-1-12 {
	width: 8.33%
}

/* Layout Columns */

.col-11-12 {
	width: 91.66%
}

.col-10-12 {
	width: 83.333%;
}

.col-9-12 {
	width: 75%;
}

.col-5-12 {
	width: 41.66%;
}

.col-7-12 {
	width: 58.33%
}

/* Pushing blocks */

.push-2-3, .push-8-12 {
	margin-left: 66.66%;
}

.push-1-2, .push-6-12 {
	margin-left: 50%;
}

.push-1-3, .push-4-12 {
	margin-left: 33.33%;
}

.push-1-4, .push-3-12 {
	margin-left: 25%;
}

.push-1-5 {
	margin-left: 20%;
}

.push-1-6, .push-2-12 {
	margin-left: 16.667%;
}

.push-1-7 {
	margin-left: 14.28%;
}

.push-1-8 {
	margin-left: 12.5%;
}

.push-1-9 {
	margin-left: 11.1%;
}

.push-1-10 {
	margin-left: 10%;
}

.push-1-11 {
	margin-left: 9.09%;
}

.push-1-12 {
	margin-left: 8.33%
}

/*--------------------------------------------------------------
14.0 - Media Queries
--------------------------------------------------------------*/

@media handheld, only screen and (min-width: 900px) and (max-width: 1251px) {
	#sequence {
		height: 500px;
	}

	#sequence .slide-title {
		right: -150%;
		/*    right: 50%;*/
		bottom: 58%;
		/*width: 330px;*/
		width: 94%;
		margin-right: -47%;

	}

	#sequence .animate-in .slide-title {
		/*right: 150px;*/
		/*right: 6.2%;*/
		bottom: 58%;
		/*width: 330px;*/
		width: 94%;
		right: 50%;
		margin-right: -47%;
	}

	#sequence .animate-out .slide-title {
		/*right: 150px;*/
		/*right: 6.2%;*/
		/*	bottom: 150%;*/
		bottom: 58%;
		/*width: 330px;*/
		width: 94%;
		/*      right: 50%;*/
		right: 200%;
		margin-right: -47%;
	}

	#sequence .slide-description {
		right: -150%;
		/*	right: 50%;*/
		top: 36%;
		/*width: 330px;*/
		width: 94%;
		margin-right: -47%;
	}

	#sequence .animate-in .slide-description {
		/*right: 100px;*/
		/*right: 7%;*/
		top: 36%;
		/*width: 330px;*/
		width: 94%;
		right: 50%;
		margin-right: -47%;
	}

	#sequence .animate-out .slide-description {
		/*right: 100px;*/
		/*right: 7%;*/
		/*		top: 150%;*/
		top: 36%;
		/*width: 330px;*/
		width: 94%;
		/*        right: 50%;*/
		right: 200%;
		margin-right: -47%;
	}

	.menu-toggle,
	.main-navigation.toggled .nav-menu {
		display: block;
		float: right;
		height: 70px;
	}

	.menu-toggle:hover {
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-o-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1);
	}

	.main-navigation ul {
		display: none;
	}

}

@media handheld, only screen and (min-width: 521px) and (max-width: 900px) {

	/* для разблокировки верхних строчек меню*/
	/*    #Header {position: relative;}
		#CarsLine {top:0;position: relative;}
		#MainImg {margin-top: 0;}*/
	/* для разблокировки верхних строчек меню*/
	.hide-on-mobile {
		display: none !important;
		width: 0;
		height: 0;
	}

	#sequence {
		height: 500px;
	}

	#sequence .slide-title {
		right: -150%;
		/*	right: 50%;*/
		bottom: 58%;
		/*width: 330px;*/
		width: 94%;
		margin-right: -47%;
	}

	#sequence .animate-in .slide-title {
		/*right: 150px;*/
		/*right: 6.2%;*/
		bottom: 58%;
		/*width: 330px;*/
		width: 94%;
		right: 50%;
		margin-right: -47%;
	}

	#sequence .animate-out .slide-title {
		/*right: 150px;*/
		/*right: 6.2%;*/
		/*	bottom: 150%;*/
		bottom: 58%;
		/*width: 330px;*/
		width: 94%;
		right: 250%;
		margin-right: -47%;
	}

	#sequence .slide-description {
		right: -150%;
		/*		right: 50%;*/
		top: 36%;
		/*width: 330px;*/
		width: 94%;
		margin-right: -47%;
	}

	#sequence .animate-in .slide-description {
		/*right: 100px;*/
		/*right: 7%;*/
		top: 36%;
		/*width: 330px;*/
		width: 94%;
		right: 50%;
		margin-right: -47%;
	}

	#sequence .animate-out .slide-description {
		/*right: 100px;*/
		/*right: 7%;*/
		/*		top: 150%;*/
		top: 36%;
		/*width: 330px;*/
		width: 94%;
		right: 250%;
		/*        right: 50%;*/
		margin-right: -47%;
	}

	.menu-toggle,
	.main-navigation.toggled .nav-menu {
		display: block;
		float: right;
		height: 70px;
	}

	.menu-toggle:hover {
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-o-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1);
	}

	.main-navigation ul {
		display: none;
	}

}

@media handheld, only screen and (max-width: 520px) {

	/* для разблокировки верхних строчек меню*/
	#Header {
		position: relative;
	}

	#CarsLine {
		top: 0;
		position: relative;
	}

	#MainImg {
		margin-top: 0;
	}

	/* для разблокировки верхних строчек меню*/
	.main-navigation ul ul {

		position: initial;

	}

	.main-navigation.toggled ul ul {
		display: block;
		float: right;
		height: 100%;
	}

	.schedule-title {
		z-index: 0;
	}

	.grid {
		width: 100%;
		min-width: 0;
		margin-left: 0px;
		margin-right: 0px;
		padding-left: 20px; /* grid-space to left */
		padding-right: 10px; /* grid-space to right: (grid-space-left - column-space) e.g. 20px-10px=10px */
	}

	.socials {
		margin-bottom: 0 !important;
		text-align: center;
	}

	[class*='col-'] {
		width: auto;
		float: none;
		margin-left: 0px;
		margin-right: 0px;
		margin-top: 10px;
		margin-bottom: 10px;
		padding-left: 0px;
		padding-right: 10px; /* column-space */
	}

	/* Mobile Layout */
	[class*='mobile-col-'] {
		float: left;
		margin-left: 0px;
		margin-right: 0px;
		margin-top: 0px;
		margin-bottom: 10px;
		padding-left: 0px;
		padding-right: 10px; /* column-space */
		padding-bottom: 0px;
	}

	.mobile-col-1-1 {
		width: 100%;
	}

	.mobile-col-2-3, .mobile-col-8-12 {
		width: 66.66%;
	}

	.mobile-col-1-2, .mobile-col-6-12 {
		width: 50%;
	}

	.mobile-col-1-3, .mobile-col-4-12 {
		width: 33.33%;
	}

	.mobile-col-1-4, .mobile-col-3-12 {
		width: 25%;
	}

	.mobile-col-1-5 {
		width: 20%;
	}

	.mobile-col-1-6, .mobile-col-2-12 {
		width: 16.667%;
	}

	.mobile-col-1-7 {
		width: 14.28%;
	}

	.mobile-col-1-8 {
		width: 12.5%;
	}

	.mobile-col-1-9 {
		width: 11.1%;
	}

	.mobile-col-1-10 {
		width: 10%;
	}

	.mobile-col-1-11 {
		width: 9.09%;
	}

	.mobile-col-1-12 {
		width: 8.33%
	}

	/* Layout Columns */
	.mobile-col-11-12 {
		width: 91.66%
	}

	.mobile-col-10-12 {
		width: 83.333%;
	}

	.mobile-col-9-12 {
		width: 75%;
	}

	.mobile-col-5-12 {
		width: 41.66%;
	}

	.mobile-col-7-12 {
		width: 58.33%
	}

	.hide-on-mobile {
		display: none !important;
		width: 0;
		height: 0;
	}

	#sequence {
		min-height: 570px;
		height: auto;
	}

	/*  	#sequence { min-height: 695px; height:auto;}*/
	.header-overflow, .nav-container {
		padding-right: 0px !important;
	}

	#MainImg {
		height: auto; /*height: 639px;*/
	}

	#sequence .bg {
		height: 280px;
	}

	#sequence .animate-in .bg {
		opacity: 1;
		left: 0%;
		transform: scale(1.0);
		transition-duration: 1.3s;
		z-index: 1;
	}

	#sequence .animate-out .bg {
		opacity: 0;
		transform: scale(1.0);
		transition-duration: 1.3s;
		z-index: 1;
	}

	/*    #sequence .slide-title span {color: rgb(43, 124, 211);}*/
	.mainImgButton {
		width: 100%;
		min-width: 280px;
	}

	#box1, .box1 {
		width: 85%;
	}

	#box2, .box2 {
		width: 14.9%;
	}

	.text18 {
		width: 85%;
	}

	.box3 {
		width: 14.9%;
	}

	.LADA_Finance {
		width: 100%;
		background-color: rgb(180, 180, 180);
	}

	.Akciya {
		display: none;
	}

	/*.Akciya {
		clear: none;
		display: block;
		float: right;
		height: 133px;
		position: absolute;
		right: 0px;
		top: -123px;
		width: 181px;
		left: auto;
	}
	#text22 {margin-top: 5px;}*/
	/*#textspan7 { font-size: 300%; }*/
	#sequence .slide-title {
		/*		right: -150%;*/
		opacity: 0;
		/*right: 3%;*/
		right: -150%;
		bottom: 50%;
		/*		top: 280px;*/
		/*width: 290px;*/
		width: 94%;
		min-width: 280px;
		padding: 10px 0px;
		margin-right: 0px;
	}

	#sequence .animate-in .slide-title {
		opacity: 1;
		/*right: 0px;*/
		right: 3%;
		bottom: 50%;
		/*        top: 280px;*/
		/*width: 290px;*/
		width: 94%;
		padding: 10px 0px;
		margin-right: 0px;
	}

	#sequence .animate-out .slide-title {
		opacity: 1;
		/*		right: 150%;*/
		right: 150%;
		/*bottom: 150%;*/
		bottom: 50%;
		/*width: 290px;*/
		width: 94%;
		padding: 10px 0px;
		margin-right: 0px;
	}

	#sequence .slide-description {
		height: 330px;
		right: -150%;
		/*		right: 3%;*/
		top: 49.5%;
		/*top: 40%;*/
		/*width: 300px;*/
		width: 94%;
		min-width: 280px;
		padding: 10px 0px;
		margin-right: 0px;
		background-color: #fff;
	}

	#sequence .animate-in .slide-description {
		/*right: 0px;*/
		right: 3%;
		/*top: 40%;*/
		top: 49.5%;
		/*width: 300px;*/
		width: 94%;
		padding: 10px 0px;
		margin-right: 0px;
	}

	#sequence .animate-out .slide-description {
		right: 150%;
		/*	        right: 3%;*/
		/*top: 150%;*/
		top: 49.5%;
		/*width: 300px; */
		width: 94%;
		padding: 10px 0px;
		margin-right: 0px;
	}

	.schedule-title {
		position: relative;
		margin-top: 30px;
		padding-bottom: 5px;
	}

	.home-class-grid {
		padding-left: 0px !important;
		padding-right: 0px !important;
	}

	.home-blog-info {
		padding: 10px 0 !important;
	}

	.home-blog-photo img {
		width: 100%;
		margin-bottom: 5px;
	}

	.home-blog {
		padding-right: 20px !important;
	}

	.page-wrapper {
		padding: 20px !important;
	}

	.widget-area {
		border-radius: 8px;
	}

	.main-navigation li {
		width: 200px;
		background: #1e1c1d;
	}

	.main-navigation a {
		border-bottom: 1px dotted #666;
		padding: 12px 20px;
	}

	.class-third {
		width: 100%;
		margin-right: 0;
		border-right: 0px;
		border-bottom: 1px dotted #999;
	}

	.class-third-last {
		width: 100%;
	}

	.class-table {
		padding-left: 0 !important;
		padding-right: 0 !important;
	}

	.page-area {
		padding-top: 80px !important;
	}
}

.gform_wrapper span.gform_description, .gform_wrapper .top_label .gfield_label {
	font-weight: 300 !important;
}

.gform_wrapper input[type="text"], .gform_wrapper input[type="url"], .gform_wrapper input[type="email"], .gform_wrapper input[type="tel"], .gform_wrapper input[type="number"], .gform_wrapper input[type="password"] {
	margin-bottom: 6px !important;
}

.gform_wrapper .top_label li.gfield.gf_left_half input.medium, .gform_wrapper .top_label li.gfield.gf_left_half input.large, .gform_wrapper .top_label li.gfield.gf_left_half select.medium, .gform_wrapper .top_label li.gfield.gf_left_half select.large, .gform_wrapper .top_label li.gfield.gf_right_half input.medium, .gform_wrapper .top_label li.gfield.gf_right_half input.large, .gform_wrapper .top_label li.gfield.gf_right_half select.medium, .gform_wrapper .top_label li.gfield.gf_right_half select.large {
	width: 98.5% !important;
}

.gform_wrapper .gform_footer {
	margin-top: 0 !important;
	padding-top: 0px !important;
}

.gform_wrapper .gform_footer input.button, .gform_wrapper .gform_footer input[type="submit"] {
	font-size: 14px !important;
	width: 100%;
	padding: 1.2em 2em 1.1em !important;
}

.gform_wrapper {
	max-width: 100% !important;
}

/* ориентация экрана горизонт и разрешениедо 900 */
@media handheld, only screen
and (min-device-width: 168px)
and (max-device-width: 640px)
and (orientation: landscape) {
	/* для разблокировки верхних строчек меню*/
	#Header {
		position: relative !important;
	}

	#CarsLine {
		top: 0;
		position: relative !important;
	}

	#MainImg {
		margin-top: 0 !important;
	}

	.CarsMenuBox {
		position: absolute;
		width: 100%;
		top: 30px;
	}

	/* для разблокировки верхних строчек меню*/
}

/* ориентация экрана горизонт и разрешениедо 900 */
