@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,600);

/*** COMMON STYLES ***/
body, html {
	height: 100%;
}
body {
	margin: 0px auto;
	font-size: 14px;
	color: #141414;
	font-family: 'Open Sans', sans-serif !important;
	font-weight: 400;
	/*text-rendering: optimizeLegibility;*/
	-webkit-font-smoothing: antialiased;
}

input,select,option,p,form,ul,li,ol,h1,h2,h3,h4,h5,h6,td,img,table {
	margin: 0;
	padding: 0;
	border: 0;
}
::selection {
	background: #707070;
	color: white;
}
::-moz-selection {
	background: #707070;
	color: white;
}

.clearfix:before,
.clearfix:after {
	display: table;
	content: " ";
}
.clearfix:after {
	clear: both;
}
.clearfix {
    *zoom: 1;
}

h1,h2,h3,h4,h5,h6 {
	font-weight: normal;
}
body:not([class*="static-page"]) ul, body:not([class*="static-page"]) li {
	list-style: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
	border-padding: 0;
	width: 100%;
}
table.fixed {
	table-layout: fixed;
}
img {
	vertical-align: middle;
}
label {
	-moz-user-select: none;
	-webkit-user-select: none;
}
b, strong {
	font-weight: 600;
}

.hide {
	display: none;
}
.hidden {
	visibility: hidden;
}
.invisble {
	opacity: 0;
	filter: "alpha(opacity=0)"; -ms-filter: "alpha(opacity=0)";
}
.clear {
	clear: both;
}
.fleft {
	float: left;
}
.fright {
	float: right;
}
.ralign {
	text-align: right!important;
}
.lalign {
	text-align: left!important;
}
.align-center {
	text-align: center;
}
.relative {
	position: relative;
}
.nowrap {
	white-space: nowrap;
}

/* links */
a:link,
a:visited,
.link {
    color: #0e5486;
    cursor: pointer;
    font-size: 1em;
    font-weight: 600;
    text-decoration: none;
}
a:hover,
a:active,
.link:hover {

}
/* links end */

/* fonts */
.font1, /* light font on the dark bg or instead */
a.font1 {
	color: #6b6b6b;
}
a.font1:hover,
a.active.font1,
.active .font1 {
	color: #0e5486;
}
.currency-selector .font1,
.font2,
a.font2 { /* light font on the dark bg or instead */
	color: white;
}
.currency-selector .font1.active,
.currency-selector .font1:hover,
a.font2:hover {
	color: #ff7171;
}
.link-large {
	font-size: 1.143em!important;
	font-weight: 600!important;
}
span.text-notice,
div.text-notice {
	padding-bottom: 10px;
}
.close,
.red {
	color: #e44848!important;
}
.close:hover,
.red:hover {
	color: #ff5d5d!important;
}
.red.margin {
	padding-left: 10px!important;
	cursor: pointer;
}
.date {
	font-size: 0.857em;
	color: #949494;
}
.notice,
.notice_message {
	color: #c95265;
	font-size: 0.929em;
}
.notice_message {
	padding-top: 5px;
}
/* fonts end */

/* h1 */
h1 {
    color: #333333;
    font-size: 23px !important;
    font-weight: 400 !important;
    line-height: 34px !important;
    margin: 0 0 30px !important;
    overflow: hidden;
    padding: 0;
}
#controller_area > h1 {
	margin-bottom: 22px;
}
.h1-nav h1 {
	overflow: hidden;
	margin-top: 0;
}
.h1-nav nav {
	float: right;
	vertical-align: top;
}
.h1-nav nav > a.icon {
	display: none!important;
}
/* h1 end */

/* global style items */
.hlight {
	background: #ffffff;
}
.hborder {
	border-color: #e9e9e9;
}
/* global style items end */

/* inputs */
input[type=text],
input[type=password],
input[type=number],
textarea,
select,
span.pills {
    border: 1px solid #ccc;
    border-radius: 2px;
    color: #111111;
    font-family: "Open Sans",sans-serif !important;
    font-size: 1.071em;
    font-weight: 300;
    padding: 5px 8px;
    transition: border-color 0.3s ease 0s;

	-webkit-appearance: none;
	-moz-appearance: none;
	
}
input:focus,
select:focus {
	border-color: #3b3b3b;
}
textarea {
	line-height: normal;
	height: auto;
	padding: 8px 10px 8px;
	width: 100%;
}
select {
	background: white url("../img/arrow-down.png") no-repeat scroll right center;
    border: 1px solid #bbb;
    cursor: pointer;
    padding: 1px 1px 1px 5px;
    width: 100%;
	display: inline-block;
	height: 33px;
	border-radius: 0;
    -webkit-appearance:none;
    -moz-appearance:none;
    appearance:none;
}
select.disabled,
select[disabled=disabled],
input[disabled=disabled] {
    cursor: not-allowed;
	color: #959595;
	background: #dedede;
	box-shadow: 0 1px 3px rgba(0,0,0,.2);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
}
input[type=number] {
    -moz-appearance: textfield;
    margin: 0;
}
option {
	padding: 2px 0;
}
input[type=submit],
input[type=button],
.file-input span,
a.button,
.btn {
	background: #0e5486;
	height: 34px;
	padding: 0 25px 0px;
	color: white;
	font-size: 1em;
	font-weight: 300;
	font-family: 'Open Sans', sans-serif !important;
	cursor: pointer;
	text-transform: uppercase;
	-webkit-appearance: none;
	border-radius: 2px;
}
input[type=submit]:hover,
input[type=button]:hover,
a.button:not(.disabled):hover,
.file-input span:hover,
.btn:hover {
	background: #444;
}
a.button {
	display: inline-block;
	line-height: 34px;
}
a.button.disabled,
input[type=submit][disabled=disabled],
input[type=button][disabled=disabled],
input[type=submit].disabled,
input[type=button].disabled {
    cursor: not-allowed;
	background: #b1b1b1 !important;
	color: #e6e6e6;
	box-shadow: none;
}
input[type=submit].low,
input[type=button].low,
a.button.low {
	height: 28px;
	line-height: 26px;
	font-size: 0.929em;
	padding: 0 11px;
	white-space: nowrap;
}

@keyframes hover-color {
  from {
    border-color: #c0c0c0; }
  to {
    border-color: #334e5d; } }

input[type=radio],
input[type=checkbox] {
  position: absolute;
  display: none; }

input[type=radio][disabled],
input[type=checkbox][disabled] {
  cursor: not-allowed; }

input[type=radio] + label,
input[type=checkbox] + label {
  position: relative;
  display: block;
  padding-left: 27px;
  cursor: pointer;
  vertical-align: middle; }
  input[type=radio] + label:hover:before,
  input[type=checkbox] + label:hover:before {
    animation-duration: 0.4s;
    animation-fill-mode: both;
    animation-name: hover-color; }
  input[type=radio] + label:before,
  input[type=checkbox] + label:before {
    position: absolute;
    top: 0;
	background: #FFF;
    left: 0;
    display: inline-block;
    width: 17px;
    height: 17px;
    content: '';
    border: 1px solid #c0c0c0; }
  input[type=radio] + label:after,
  input[type=checkbox] + label:after {
    position: absolute;
    display: none;
    content: ''; }

input[type=radio][disabled] + label,
input[type=checkbox][disabled] + label {
  cursor: not-allowed;
  color: #e4e4e4; }
  input[type=radio][disabled] + label:hover, input[type=radio][disabled] + label:before, input[type=radio][disabled] + label:after,
  input[type=checkbox][disabled] + label:hover,
  input[type=checkbox][disabled] + label:before,
  input[type=checkbox][disabled] + label:after {
    cursor: not-allowed; }
  input[type=radio][disabled] + label:hover:before,
  input[type=checkbox][disabled] + label:hover:before {
    border: 1px solid #e4e4e4;
    animation-name: none; }
  input[type=radio][disabled] + label:before,
  input[type=checkbox][disabled] + label:before {
    border-color: #e4e4e4; }

input[type=radio]:checked + label:before,
input[type=checkbox]:checked + label:before {
  animation-name: none; }

input[type=radio]:checked + label:after,
input[type=checkbox]:checked + label:after {
  display: block; }

input[type=radio] + label:before {
  border-radius: 50%; }

input[type=radio] + label:after {
  top: 4px;
  left: 4px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #334e5d; }

input[type=radio]:checked + label:before {
  border: 1px solid #334e5d; }

input[type=radio]:checked[disabled] + label:before {
  border: 1px solid #c9e2f9; }

input[type=radio]:checked[disabled] + label:after {
  background: #c9e2f9; }

input[type=checkbox] + label:before {
  border-radius: 3px; }

input[type=checkbox] + label:after {
  top: 2px;
  left: 6px;
  box-sizing: border-box;
  width: 6px;
  height: 10px;
  transform: rotate(45deg);
  border-width: 2px;
  border-style: solid;
  border-color: #fff;
  border-top: 0;
  border-left: 0; }

input[type=checkbox]:checked + label:before {
  border: #334e5d;
  background: #334e5d; }

input[type=checkbox]:checked[disabled] + label:before {
  border: #c9e2f9;
  background: #c9e2f9; }

input[type=radio].multiline + label,
input[type=checkbox].multiline + label {
	height: auto;
	text-align: left;
	color: #46ad37;
	font-size: 0.929em;
}
input[type=radio].multiline:checked + label,
input[type=checkbox].multiline:checked + label {
	color: #010101;
}
input[type=checkbox].multiline:not(.default) + label > span,
input[type=radio].multiline:not(.default) + label > span {
	display: block;
	margin: 0 auto 5px;
}
input[type=radio].multiline[disabled=disabled] + label > span {
	opacity: 0.5;
}
input[type=radio].multiline[disabled=disabled] + label {
	color: #707070;
}

input[type=checkbox].inline + label {
	display: inline;
}
input[type=checkbox].inline + label > span {
	margin: 0;
}
input.search,
input.search:hover {
	background-image: url('../img/gallery.png');
	background-position: 12px -430px;
	width: 0;
}

/* Switcher */
label.switcher input[type=checkbox] {
    display: none;
}
label.switcher > input[type=checkbox] + span:not(.status) {
    margin-top: -1px;
    display: inline-block;
    width: 34px;
    height: 18px;
    background: #969696;
    position: relative;
    cursor: pointer;
    vertical-align: middle;
    transition: background-color 0.4s, opacity 0.4s;
    opacity: 0.7;
}
label.switcher > input[type=checkbox] + span:not(.status):after {
    content: "";
    position: absolute;
    top: 2px;
    right: 2px;
    width: 14px;
    height: 14px;
    background: #fff;
    transition: transform 0.4s;
    z-index: 2;
}
label.switcher > input[type=checkbox] + span:not(.status):before {
    content: "";
    position: absolute;
    top: 5px;
    right: 5px;
    width: 8px;
    height: 8px;
    background: url(../img/gallery.png) -8px -775px no-repeat;
    transition: transform 0.4s;
    z-index: 3;
}
label.switcher:hover > input[type=checkbox] + span:not(.status) {
    opacity: 1;
}
label.switcher > input[type=checkbox]:checked + span:not(.status) {
    background: #52b600;
    transition: background-color 0.4s;
}
label.switcher > input[type=checkbox]:checked + span:not(.status):after {
    transform: translateX(-16px);
}
label.switcher > input[type=checkbox]:checked + span:not(.status):before {
    transform: translateX(-16px);
    background-position: 0 -775px;
}
label.switcher > input[type=checkbox] ~ .status {
	margin-left: 10px
}
label.switcher > input[type=checkbox] ~ .status:before {
	content: attr(data-enabled);
}
label.switcher > input[type=checkbox]:checked ~ .status:before {
	content: attr(data-disabled);
}

::-webkit-input-placeholder {
    color: #999;
    font-size: 13px;
    line-height: 20px;
    opacity: 1;
}
:-moz-placeholder {
    color: #999;
    font-size: 13px;
    line-height: 20px;
    opacity: 1;
}
::-moz-placeholder {
    color: #999;
    font-size: 13px;
    line-height: 20px;
    opacity: 1;
}
input:-ms-input-placeholder {
    color: #999;
    font-size: 13px;
    line-height: 20px;
    opacity: 1;
}
*:focus {
    outline: none;
}

input[type=text].error,
input[type=password].error,
textarea.error {
	background: #fff2f4;
	color: #c92a44;
	border-color: #f79d9d;
}
div.field.error label {
	color: #c92a44;
}
select.error {
	background-color: #fff3f5;
	border-color: #ffccd4;
	color: #c92a44
}
.image-field-preview {
    margin-bottom: 10px;
}
.image-field-preview > div.relative {
    width: 100%;
}
.file-input {
	position: relative;
	overflow: hidden;
	display: inline-block;
}
.file-input input.file {
	position: absolute;
	right: 0;
	height: 40px;
	opacity: 0;
	filter: "alpha(opacity=0)"; -ms-filter: "alpha(opacity=0)";
}
.file-input input.file-name {
	width: 200px;
	position: relative;
}
.file-input span {
	display: inline-block;
	vertical-align: top;
	line-height: 36px;
    margin-left: 3px;
}
span.pills {
	white-space: nowrap;
	display: inline-block;
	vertical-align: top;
	padding: 0;
}
span.pills > label > span {
	display: none!important;
}
span.pills > label {
	padding: 0 15px!important;
	height: 34px!important;
	line-height: 32px;
	border-right: 2px #dcdcdc solid;
	display: inline-block;
	text-align: center;
}
span.pills > label:last-child {
	border: 0;
}
span.pills input[type=radio]:checked + label {
	background: #dcdcdc;
	text-decoration: none;
	cursor: default;
}
span.pills > label:not(.active) {
	cursor: pointer;
	color: #0e5486;
}
span.pills > label:not(.active):hover {
	text-decoration: underline;
}
/* inputs end */
/*** COMMON STYLES END ***/

/*** PAGE HEADER ***/
header.page-header > div.point1 {
	max-width: 100%;
	height: 100%;
}
header.page-header {
	width: 100%;
	float: left;
	z-index: 1000;
	/*border-bottom: 2px #f2f2f2 solid;*/
	margin: 0 !important;
	transition: top 0.3s ease;
	padding-bottom: 0 !Important;

}
header.page-header div.top-navigation {
	height: 30px;
	margin: 0 auto;
	position: relative;
	width: 100%;
	float: left;
	background: #fff;
	border-bottom: 1px solid #eee;
}
header.page-header section.main-menu {
	width: 100%;
	float: left;
	background: #FFF;
}
header.page-header > div > * > * {
	margin: 0 auto;
	position: relative;
}
div#logo {
    float: left;
    height: 65px;
    margin-bottom: 12px;
    margin-top: -13px;
    width: 25%;
}
div#logo a {
	box-shadow: none;
}
div#logo img {
	width: 100%;
	height: 100%;
	background: url('../img/logo.png') 0 0 no-repeat;
	background-size: contain;
}
div.header-banner-cont {
	height: 108px;
	line-height: 90px;
	background: #535353;
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	padding: 8px 0;
	border-bottom: 2px #793030 solid;
}
div.header-banner-cont > div {
	margin: 0 auto;
	height: 100%;
}
div#header-banner {
	overflow: hidden;
}
div#header-banner > div.no-banner {
	box-shadow: inset 0 0 0 1px #242424;
	width: 100%;
	height: 100%;
	color: #242424;
	font-size: 1.286em;
	text-align: center;

	width: 726px\9;
	height: 88px\9;
	border: 1px #242424 solid\9;
}
div#header-banner > *:not(.no_banner) {
	width: 100%;
	height: 100%;
}
div#header-banner div.bmb10 {
	margin: 0!important;
	width: auto!important;
	height: auto!important;
}
div#header-banner img {
	width: 100%;
}
div#header-banner div.banner {
	width: 100%;
}
div#header-banner tr.banner-here {
	border: 0;
}
div#header-banner tr.banner-here > td {
	box-shadow: inset 0 0 0 1px #aed0c4;
	color: #92bfaf;
	background: #d5f1e7;
}

/* top navigation */
.circle {
	color: white;
	font-size: 0.929em;
	position: relative;
	-moz-user-select: none;
	-webkit-user-select: none;
	display: inline-block;
	vertical-align: top;
	z-index: 103;
}
.circle > .default {
	padding: 0 10px;
	cursor: pointer;
	display: inline-block;
	position: relative;
}
.circle > .default > span {
	vertical-align: top;
}
.circle > .default:after {
	content: '';
	display: inline-block;
	opacity: 0.7;
	margin-bottom: 2px;
	filter: "alpha(opacity=70)"; -ms-filter: "alpha(opacity=70)";
}
.circle:not(.circle_opened):hover > .default:after {
	opacity: 1;
	filter: "alpha(opacity=100)"; -ms-filter: "alpha(opacity=100)";
}
.circle_opened > .default:after {
	background-position: -14px -315px;
	opacity: 1;
	filter: "alpha(opacity=100)"; -ms-filter: "alpha(opacity=100)";
}
.circle_opened > .content {
    display: inline-block;
	background: #fff;
	border: 1px solid #ddd;
    left: 0;
    min-width: 100%;
    padding: 0;
    position: absolute;
    text-align: center;
    top: 29px;
    z-index: 20;
}
.currency-selector .font1, .font2, a.font2 {
	color: #444 !important;
}
div.fright > .circle {
	float: left;
}
div.top-navigation div.fright,
.lang-wrapper {

}
.lang-wrapper {
	display: inline-block;
}
div.fright > .circle_opened > .content {
	left: auto;
	right: 0;
}
.circle_opened {


}
.circle ul > li {
	height: 28px;
	line-height: 28px;
	white-space: nowrap;
}

#lang-selector img.lang {
	width: 14px;
	height: 11px;
	background-repeat: no-repeat;
	background-position: -1px 0;
	margin: 0 7px 3px 0;
}

#currency_selector > span.default > span.code {
	font-size: inherit!important;
}

#user-navbar > span.default:before {
	content: '';
	display: inline-block;
	background: url('../img/gallery.png') 0 -244px no-repeat;
	width: 11px;
	height: 13px;
	vertical-align: middle;
	margin: 0 10px 2px 0;

	opacity: 0.7;
	filter: "alpha(opacity=70)"; -ms-filter: "alpha(opacity=70)";
}
#user-navbar.circle:not(.circle_opened):hover > span.default:before {
	opacity: 1;
	filter: "alpha(opacity=100)"; -ms-filter: "alpha(opacity=100)";
}
#user-navbar.circle_opened > span.default:before {
	opacity: 1;
	filter: "alpha(opacity=100)"; -ms-filter: "alpha(opacity=100)";
}
#user-navbar > span.default > span.logged-in {
	background-position: -19px -255px;
	width: 14px;
	height: 20px;
	margin: 8px 0 0 0;
}

#user-navbar.notify > span.default:before {
    -webkit-animation: blinker 2.0s infinite ease-in-out;
	animation: blinker 2.0s infinite ease-in-out;
}

@-webkit-keyframes blinker {  
    0% { opacity: .2; }
    50% { opacity: .8; }
    100% { opacity: .2; }
}
keyframes blinker {  
    0% { opacity: .2; }
    50% { opacity: .8; }
    100% { opacity: .2; }
}

.user-navbar-container {
	display: inline-block;
	padding: 10px 0;
	min-width: 218px;
}
.user-navbar-container input[name=username],
.user-navbar-container input[name=password] {
	width: 100%;
	margin: 0 0 20px;
}
.user-navbar-container .links {
	padding: 20px 0 0 0;
	text-align: center;
	display: inline-block;
	width: 100%;
}
.user-navbar-container .links > span {
	padding: 0 0 10px 0;
	display: inline-block;
	width: 100%;
}
.hookUserNavbar {
	display: inline-block;
	vertical-align: top;
}
#user-navbar ul {
	/*min-width: 200px;*/
}
#user-navbar span.content.a-menu {
	padding: 13px 20px;
}
#user-navbar ul > li {
	padding-right: 25px;
	position: relative;
}
#user-navbar ul > li > a {
	white-space: nowrap;
	text-transform: none;
}
#user-navbar ul > li > a.active {
	color: #ff7e7e;
}
#user-navbar ul > li > a.logout {
	color: #f25353;
}
#user-navbar ul > li > a.logout:hover {
	color: #ff7e7e;
}
#user-navbar a.counter,
.account-menu-content a.counter {
	color: #0e5486;
	padding: 0;
	font-weight: 400;
	display: inline-block;
	line-height: initial;
	position: absolute;
	right: 0;
	top: 5px;
}
/* top navigation end */

/* main menu */
section.main-menu ul.menu > li > a,
ul#main_menu_more > li > a {
	color: white;
}
/* main menu end */

/* keyword search */
div.kw-search {
	position: absolute;
	right: 0;
	top: 25px;
}
#autocomplete {
	height: 30px;
	width: 300px;
	border-color: black;
	background: url('../img/gallery.png') 9px -699px no-repeat #e0e0e0;
	box-shadow: inset 0 2px 4px rgba(0,0,0,.4);
	padding-left: 30px;
	padding-bottom: 2px;
}
#autocomplete::-moz-placeholder {
   line-height: 26px!important;
}
#autocomplete:-ms-input-placeholder {
   line-height: 26px!important;
}
input#autocomplete:-ms-input-placeholder {
	line-height: 29px!important;
}
/* keyword search end */

/* autocomplete search */
#ac_interface {
	width: 450px;
	max-height: 210px;
	position: absolute;
	display: none;
	overflow: hidden;
	background: #dddddd;
	z-index: 20;
	right: 1px;
	top: 30px;
}
#ac_interface li.active {
	background: #c7c7c7;
}
#ac_interface li a {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	border: 0;
}
#ac_interface div.ac-listing {
	width: 300px;
	float: left;
}
#ac_interface div.ac-listing a {
	display: block;
	padding: 8px 15px;
	box-shadow: none;
}
#ac_interface div.ac-listing a b {
	color: black;
	font-weight: 600!important;
}
#ac_interface div.ac-category {
	width: 130px;
	float: left;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
#ac_interface div.ac-category a {
	display: block;
	padding: 8px 15px 8px 5px;
	color: #444444;
}
#ac_interface .mCSB_scrollTools {
	right: 12px;
}
#ac_interface .mCSB_draggerContainer {
	margin: 10px 0;
}
/* autocomplete search end */
/*** PAGE HEADER END ***/

/*** PAGE CONTENT ***/
body > div.main-wrapper {
	overflow: hidden;
	min-height: 100%;
	position: relative;
	margin: 0 auto;
	width: 100%;
}
body.header-banner > div.main-wrapper {
	padding-top: 108px;
}
div#wrapper {
	background: #f8f8f8;
	min-height: 100%;
	margin: 0 auto;
	overflow: hidden;
	width: 100%;
	float: left;
}
section#controller_area:empty {
	padding-bottom: 0!important;
}
section#main_container {
	position: relative;
    overflow: hidden;
}
section#main_container > div.inside-container {
	margin: 0 auto;
	position: relative;
	padding: 20px 0 40px;
}
body.bc-exists section#main_container > div.inside-container {
	padding-top: 0;
}
section#content {
	vertical-align: top;
}

aside.bottom > section:last-child {
	margin-top: 0;
	margin-bottom: 0;
}

/* bread crubmbs */
#bread_crumbs {
	margin: 0 auto;
	min-height: 42px;
}
#bread_crumbs > ul {
	margin: 0 auto;
	min-height: 42px;
	padding: 6px 0 16px;
}
#bread_crumbs > ul > * {
	display: inline-block;
	font-size: 0.929em;
	padding-top: 10px;
	vertical-align: top;
}
#bread_crumbs > ul > *:not(:last-child):after {
	content: '';
	display: inline-block;
	width: 8px;
	height: 14px;
	margin: 1px 15px 0;
	background: url('../img/gallery.png') right -731px no-repeat;
	vertical-align: top;
}
#bread_crumbs > ul > li:first-child > a {
	width: 20px;
	height: 20px;
	background: url('../img/ico-logo.png') no-repeat;
	display: inline-block;
	vertical-align: top;
	margin-top: 1px;
	box-shadow: none;
}
/* bread crubmbs end */

/* content/sidebar block */
section.content_block,
section.side_block {
	position: relative;
	margin-bottom: 30px;
}
section.content_block > h3,
section.side_block > h3 {
	color: #121212;
	font-size: 1.286em;
	display: inline-block;
	vertical-align: top;
}
section.content_block > div,
section.side_block > div {
	position: relative;
}
section.content_block > div h3,
section.side_block > div h3 {
	font-size: 1.286em;
	margin-top: -5px;
	margin-bottom: 25px;
}
section.content_block:not(.no-header) > div,
section.side_block:not(.no-header) > div {
	margin: 6px 0 0 0;

}
section.content_block:not(.no-style) > div,
section.side_block:not(.no-style) > div {
	background: white;
	padding: 25px 30px;
}
section.side_block:not(.no-style) > div {
	    background: #f9f9f9 none repeat scroll 0 0;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
}
section.content_block.no-style:not(.no-header) > div,
section.side_block.no-style:not(.no-header) > div {
	padding-top: 20px;
}
aside.middle {
	margin-bottom: 30px;
}
aside.middle section.content_block:last-child {
	margin-bottom: 0;
}
section.contact-seller-bottom {
	margin-top: 30px;
	padding-bottom: 0!important;
}
section.contact-seller-bottom > div {
	background: white!important;
}
/* content/sidebar block end */

/* sidebar search block */

section.side_block_search.tabs-inside {
	margin-top: 34px;
}

section.side_block_search div.search-item {
	padding: 0 0 15px;
}
section.side_block_search div.search-item:last-child {
	padding-bottom: 0;
}
section.side_block_search:not(.tabs-inside) div.search-item select.multicat {
	margin-bottom: 15px;
}
section.side_block_search div.search-item > select.multicat:not(:last-child) {
	margin-bottom: 15px;
}
section.side_block_search div.field {
	padding: 0 0 5px 0;
	min-height: 8px;
}
.search-button {
	padding-top: 10px;
}
.search-button > a {
	margin-left: 20px;
	white-space: nowrap;
	text-transform: none;
}
/* single */
.search-item.single-field > select,
.search-item.single-field > input[type=text] {
	width: 100%;
}
/* two */
.search-item.two-fields > select,
.search-item.two-fields > input[type=text] {
	width: 48%;
	margin-right: 4%;
}
.search-item.two-fields > select:last-child,
.search-item.two-fields > input[type=text]:last-child {
	margin-right: 0;
}
.search-item.two-fields > .custom-input,
.search-item.couple-field > .custom-input {
	width: 50%;
	display: inline-block;
}
/* three */
.search-item.three-field > select,
.search-item.three-field > span {
	width: 24%;
	margin-right: 4%;
}
.search-item.three-field > input {
	width: 34%;
	margin-right: 4%;
}
.search-item.three-field > span,
.search-form-cell.three-field > div > div > span {
	text-overflow: ellipsis;
	overflow: hidden;
	display: inline-block;
	padding-top: 9px;
	vertical-align: top;
}
.three-field > select.multicat {
	width: 31%;
	margin-right: 3.5%;
}
.search-item.three-field > *:last-child {
	margin-right: 0;
	vertical-align: top;
}

/* checkbox */
.search-item.checkbox-field {
	margin-bottom: -10px;
}
.search-item.checkbox-field > .custom-input {
	display: inline-block;
	width: 50%;
}
.search-item.checkbox-field > .custom-input {
	padding: 0 0 10px 0;
}
.search-item.checkbox-field > .custom-input > label {
	padding-right: 5px;
}
.search-item.checkbox-field div.field,
.search-item.couple-field div.field {
	padding-bottom: 8px;
}

.search-item span.divider {
	padding: 0 10px;
}
/* sidebar search block end */

/* search form elements */
.search-form-cell {
	display: inline-block;
	vertical-align: top;
}
.search-form-cell > div {
	margin: 10px 15px 0;
}
.search-form-cell > div > span {
	color: #555555;
	font-size: 0.929em;
	display: inline-block;
	vertical-align: top;
	padding-bottom: 6px;
	height: 24px;
	white-space: nowrap;
}
.search-form-cell.vertical-middle > div > div {
	padding-top: 8px;
}

.search-form-cell.numeric-field > div > span {
	max-width: 120px;
	text-overflow: ellipsis;
	overflow: hidden;
}

.search-form-cell > div > div input[type=text],
.search-form-cell > div > div input[type=number],
.search-form-cell > div > div select {
	width: 100%;
}
.search-form-cell.three-field > div > div input[type=text],
.search-form-cell.three-field > div > div input[type=number] {
	width: 33%;
	vertical-align: top;
}
.search-form-cell.three-field > div > div select {
	width: 28%;
	vertical-align: top;
}
.search-form-cell.three-field > div > div > *:not(:last-child) {
	margin-right: 3%;
}
.search-form-cell.two-fields > div > div select {
	width: 48%;
	margin-right: 3%;
}
.search-form-cell.two-fields > div > div select:last-of-type {
	margin-right: 0;
}

.search-form-cell .two-inline input.wauto {
	width: 100%!important;
}
/* search form elements end */
/*** PAGE CONTENT END ***/

/*** PAGE FOOTER ***/
footer.page-footer {
	width: 100%;
	color: #444;
	float: left;
	background: url(../img/footer-bgg.jpg);
	border-top: 1px solid #e5e5e5;
	background-size: 100% auto;
	background-repeat: no-repeat;
	background-position: 0px -59px;
}
footer.page-footer > div {
	padding: 24px 0 0;
	min-height: 168px;
	margin: 0 auto;
	position: relative;
}
footer.page-footer span.scroll-top {
	width: 34px;
	height: 34px;
	position: absolute;
	top: -50px;
	left: -34px;
	background: rgba(166,166,166,.8);
	cursor: pointer;

	transition: background 0.3s ease;
}
footer.page-footer span.scroll-top:hover {
	background: rgba(166,166,166,1);
}
footer.page-footer span.scroll-top:before {
	content: '';
	width: 16px;
	height: 18px;
	position: absolute;
	top: 8px;
	left: 9px;
	background: url('../img/gallery.png') left -40px no-repeat;
}
nav.footer-menu {
	position: relative;
	float: right;
	width: 75%;
	padding-left: 30px;
}
nav.footer-menu > ul {
	margin-top: -3px;
}
nav.footer-menu > ul > li {
	display: inline-block;
	width: 33.33%;
	padding-bottom: 5px;
}
nav.footer-menu a {
	color: #444;
	text-decoration: none;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	font-size: 0.857em;
}
nav.footer-menu a:hover {
	box-shadow: inset 0 -1px 0 rgba(205,205,205,.4);
}
nav.footer-menu a.active {
	color: #0e5486;
}
nav.footer-menu a.active:hover {
	box-shadow: none;
}
.footer-data {
	font-size: 0.857em;
	color: #767676;
	overflow: hidden;
}
.footer-data div.logo {
	width: 220px;
	height: 40px;
	margin-bottom: 8px;
}
.footer-data div.logo a {
	box-shadow: none;
}
.footer-data div.logo img {
	width: 100%;
	height: 100%;
	background: url('../img/footer-logo.png') 0 0 no-repeat;
}
.footer-data div.cp {
	padding: 0 33px;
	max-width: 240px;
}
.footer-data div.cp > div {
	padding-bottom: 5px;
}

footer.page-footer div.social {
	width: 215px;
	padding-left: 25px;
}
footer.page-footer div.social a.rss {
	color: #676767;
	font-size: 0.929em;
	text-transform: none;
	width: 105px;
	padding: 0 0 0 35px;
	display: inline-block;
	margin-bottom: 28px;
	position: relative;
	box-shadow: none;
}
footer.page-footer div.social a.rss:after {
	content: '';
	width: 24px;
	height: 24px;
	position: absolute;
	top: 2px;
	left: 0;
	background: url('../img/gallery.png') left -731px no-repeat;
}
footer.page-footer .tweet_padding {
	margin-top: 8px;
}
/*** PAGE FOOTER END ***/

/*** PAGINATION ***/
ul.pagination {
	margin: 30px 0 0;
	height: 37px;
	text-align: right;
}
ul.pagination > li {
	display: inline-block;
	height: 37px;
	vertical-align: top;
	font-size: 0.929em;
}
ul.pagination > li.transit {
	padding: 0 20px;
}
ul.pagination > li.transit input {
	width: 45px;
	margin: 0 5px;
}
ul.pagination > li.navigator a {
	padding-left: 15px;
	padding-right: 15px;
	font-size: 28px;
	line-height: 32px;
}
/*** PAGINATION END ***/

/*** MISCELLANEOUS ***/
.two-inline > *:first-child {
	float: right;
}
.two-inline > *:last-child {
	overflow: hidden;
}
.two-inline.left > *:first-child {
	float: left;
}

div.text-overflow {
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}
.mass-actions {
	padding: 15px 0 0 0;
}
.qtip-content {
	font-weight: 300!important;
}

div.textarea_counter_default,
div.textarea_counter_warning {
	font-size: 0.857em;
	text-align: right;
	display: inline-block;
}
div.textarea_counter_warning {
	color: #a81818;
}

/* enlarge media */
span.media-enlarge {
	width: 46px;
	height: 46px;
	position: absolute;
	right: 0;
	top: 0;
}
span.media-enlarge:after {
	content: '';
	width: 18px;
	height: 18px;
	background: url('../img/gallery.png') 0 -389px no-repeat;
	position: absolute;
	left: 14px;
	top: 14px;

	opacity: 0.7;
	filter: "alpha(opacity=70)"; -ms-filter: "alpha(opacity=70)";
}
span.media-enlarge:hover:after {
	opacity: 1;
	filter: "alpha(opacity=100)"; -ms-filter: "alpha(opacity=100)";
}
/* enlarge media end */

/* keyword search in box */
.kws-block {
	padding-bottom: 10px;
}
.kws-block input[type=text] {
	width: 100%;
}
.kws-block .options ul {
	padding: 10px 0 0;
}
.kws-block .options ul > li {
	padding: 0 0 7px 0;
}
.kws-block .options ul > li:last-child {
	padding: 0;
}
.kws-block a {
	margin-top: 10px;
	display: inline-block;
}
#area_keyword form.kws-block .two-inline {
	width: 70%;
}
/* keyword search in box end */

/* close bars */
div.close-black {
	width: 28px;
	height: 28px;
	position: absolute;
	top: 0;
	right: 0;
	cursor: pointer;
}
div.close-black:before {
	content: '';
	width: 8px;
	height: 8px;
	position: absolute;
	top: 10px;
	right: 10px;
	background: url('../img/gallery.png') 0 -287px no-repeat;
	opacity: 0.7;
	filter: "alpha(opacity=70)"; -ms-filter: "alpha(opacity=70)";
}
div.close-black:hover:before {
	opacity: 1;
	filter: "alpha(opacity=100)"; -ms-filter: "alpha(opacity=100)";
}

.close-red {
	width: 12px;
	height: 12px;
	display: inline-block;
	cursor: pointer;
	background: url('../img/gallery.png') -3px -11px no-repeat;
	opacity: 0.5;
	filter: "alpha(opacity=50)"; -ms-filter: "alpha(opacity=50)";
}
.close-red:hover {
	opacity: 0.8;
	filter: "alpha(opacity=80)"; -ms-filter: "alpha(opacity=80)";
}

img.remove {
	cursor: pointer;
	width: 10px;
	height: 12px;
	margin: 0 0 0 8px;
	background: url('../img/gallery.png') 0 -1460px no-repeat;
	opacity: 0.7;
}
img.remove:hover {
	opacity: 1;
}
/* close bars end */

#save_search {
	margin: 20px 0 0;
	display: inline-block;
}

.h1-nav nav > a:not(.button) {
	display: inline-block;
}
.h1-nav nav > a:not(.button):not(.post_ad) {
	margin-top: 10px;
}
.h1-nav nav > a:hover {
	opacity: 1;
	filter: "alpha(opacity=100)"; -ms-filter: "alpha(opacity=100)";
}
.h1-nav nav > a.post_ad {
    background: #0e5486 none repeat scroll 0 0;
    border-radius: 2px;
    color: white;
    font-size: 0.929em;
    line-height: 22px;
    margin-top: 5px;
    padding: 5px 17px 5px 30px;
    position: relative;
}
.h1-nav nav > a.post_ad:before,
.h1-nav nav > a.post_ad:after {
	content: '';
	width: 2px;
	height: 10px;
	background: white;
	position: absolute;
	top: 6px;
	left: 11px;
}
.h1-nav nav > a.post_ad:after {
	width: 10px;
	height: 2px;
	top: 10px;
	left: 7px;
}
.h1-nav nav > a.post_ad:hover {
	background-color: #444;
}

/* credit card styles */
img.cvc {
	width: 45px;
	height: 26px;
	background: url('../img/cc.png') 0 0 no-repeat;
	margin: 0 0 4px 6px;
}
img#card_icon {
	width: 38px;
	height: 24px;
	background: url('../img/cc.png') 0 150px no-repeat;
	margin: 0 0 4px 6px;
}
img#card_icon.visa,
img#card_icon.visa_electron {
	background-position: 0 -122px;
}
img#card_icon.mastercard {
	background-position: 0 -98px;
}
img#card_icon.discover {
	background-position: 0 -50px;
}
img#card_icon.maestro {
	background-position: 0 -74px;
}
img#card_icon.amex {
	background-position: 0 -26px;
}
/* credit card styles end */

/* geo autocomplete styles */
.pac-container {
	box-shadow: none;
	border: 2px #aaaaaa solid;
	margin: 2px 0 0 0;
	border-radius: 0;
	box-sizing: content-box;
}
.pac-container:after {
	content: none;
	display: none;
}
.pac-container > .pac-item.pac-item-selected {
	background-color: #ececec;
}
.pac-container > .pac-item:first-child {
	border-top: 0;
}
/* geo autocomplete styles end */
/*** MISCELLANEOUS END ***/

/*** TABS ***/
ul.tabs {
	height: 35px;
	white-space: nowrap;
	border-bottom: 1px #d4d4d4 solid;
	margin-bottom: 20px;
	position: relative;
	float: left;
	width: 85%;
}
.tab_area {
    float: left;
    width: 100%;
}
.make-offer-wrap {
    border-bottom: 1px solid #ddd;
    float: right;
    height: 35px;
    width: 15%;
}
.make-offer-btn {
	width: 100%;
	float: left;
}
.make-offer-btn > a {
    background: #0e5486 none repeat scroll 0 0;
    border-radius: 2px;
    color: #fff;
    float: left;
    padding: 5px 0;
    text-align: center;
    width: 100%;
}
ul.tabs > li {
	display: inline-block;
	height: 35px;
	white-space: nowrap;
    -moz-user-select: none;
    -webkit-user-select: none;
}
ul.tabs > li > a {
    display: inline-block;
    height: 35px;
    line-height: 34px;
    cursor: pointer;
    position: relative;
    color: #0e5486;
    vertical-align: top;
    padding: 0 15px;
    text-decoration: none;
}
ul.tabs > li:first-child {
	margin-left: 0;
}
ul.tabs > li:last-child {
	margin-right: 0;
}
ul.tabs > li.active {
	z-index: 10;
    cursor: default;
}
ul.tabs > li.active > a {
	color: white;
	background: #1c1c1c;
	z-index: 10;
    cursor: default;
}
ul.tabs > li.more {
	padding: 0;
	margin: 0;
	width: 40px;
	height: 34px;
	text-align: center;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 41;
}
ul.tabs > li.more.opened {
	background: white;
	box-shadow: inset 0 2px 0 0px #aaaaaa, inset 2px 0 0 0px #aaaaaa, inset -2px 0 0 0px #aaaaaa;
}
ul.tabs > li.more > span {
	width: 4px;
	height: 4px;
	background: #000000;
	display: inline-block;
	margin: 19px 3px 12px 0;
	border-radius: 2px;
	vertical-align: top;
}
ul.tabs > li.more > span:last-child {
	margin-right: 0;
}
ul.tabs > li.overflowed {
	position: absolute;
	right: 0;
	top: 32px;
	padding: 0;
	display: none;
	z-index: 40;
}
ul.tabs > li.overflowed.opened {
	display: block;
}
ul.tabs > li.overflowed > ul {
	background: white;
	padding: 3px 0 5px;
	border: 2px #aaaaaa solid;
}
ul.tabs > li.overflowed > ul > li > a {
    display: block;
	padding: 0 18px;
	white-space: nowrap;
	line-height: 40px;
    text-decoration: none;
}
ul.tabs > li.overflowed > ul > li.active > a {
	color: #2b2b2b;
}

ul.tabs.search_tabs {
	position: absolute;
	width: 100%;
	height: 34px;
	left: -2px;
	top: -36px;
	margin: 0;
	border: 0;
}
ul.tabs.search_tabs > li {
	height: 34px;
	border: 0;
	padding: 0;
	margin: 0;
}
ul.tabs.search_tabs > li:not(.more) > a {
	display: block;
	height: 100%;
	line-height: 34px;
	margin: 0 10px 0 0;
	padding: 0 15px;
	border: 0;
	color: white;
	font-weight: 400;
	font-size: 0.929em;
	background: #323232;
	position: relative;
}
ul.tabs.search_tabs > li:not(.more) > a:after {
	content: '';
	position: absolute;
	right: -17px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 34px 0 0 17px;
	border-color: transparent transparent transparent #323232;
}
ul.tabs.search_tabs > li.active {
	background: transparent;
}
ul.tabs.search_tabs > li.active > a {
	background: #e42d2d;
	color: white;
}
ul.tabs.search_tabs > li.active > a:after {
	border-color: transparent transparent transparent #e42d2d;
}
/*** TABS END ***/

/*** ALPHABETIC SEARCH ***/
div.alphabetic-saerch {
	margin: 0 auto;
}
div.alphabetic-saerch > div {
	margin: 2px 0 0 2px;
}
div.alphabetic-saerch > div > a {
	width: 41px;
	height: 41px;
	border: 2px #d0d0d0 solid;
	display: inline-block;
	text-align: center;
	margin: -2px 0 0 -2px;
	line-height: 38px;
	box-shadow: none;
}
div.alphabetic-saerch > div > a.wide {
	width: 80px;
}
div.alphabetic-saerch > div > a:hover {
	background: #d0d0d0;
	color: #010101;
}
div.alphabetic-saerch > div > a.active {
	background: #707070;
	color: white;
}
/*** ALPHABETIC SEARCH END ***/

/*** SUBMIT FORM ELEMENTS ***/
div.submit-cell {
	padding-bottom: 10px;
	*zoom: 1;
}
div.submit-cell:after {
	clear: both;
	content: '';
	display: table;
}

form > div.submit-cell:last-of-type {
	padding-bottom: 0;
}
div.submit-cell > div.name {
	float: left;
	width: 185px;
	color: #4f4f4f;
	padding: 8px 10px 8px 0;
}
div.submit-cell > div.field {
	overflow: hidden;
	min-height: 38px;
}
div.submit-cell > div.field.checkbox-field,
div.submit-cell > div.field.inline-fields {
	padding-top: 10px;
	min-height: 28px;
}
div.submit-cell.custom-padding {
	padding: 5px 0 10px 0;
}
div.submit-cell.custom-padding > div {
	min-height: 25px;
}
div.submit-cell.buttons {
	padding: 10px 0 0 0;
}

#modal_block div.submit-cell div.name {
	width: 120px;
}
#modal_block div.submit-cell div.field input[type=text],
#modal_block div.submit-cell div.field input[type=password] {
	width: 100%;
}

/* single */
.field.single-field > select {
	width: 250px;
}
.field.single-field > input[type=text] {
	width: 400px;
	min-width: 80px;
}
.field.single-field > textarea {
	max-width: 600px;
	display: block;
}
/* inline */
.field.inline-fields > span.custom-input {
	display: inline-block;
	padding: 0 30px 0 0;
}
/* two */
.field.two-fields > select,
.field.two-fields > input[type=text] {
	margin-right: 10px;
	min-width: 80px!important;
}
.field.two-fields > select:last-child,
.field.two-fields > input[type=text]:nth-child(2n) {
	margin-right: 0;
}
.field.two-fields > .custom-input,
.field.couple-field > .custom-input {
	display: inline-block;
	padding-top: 10px;
}
/* combo */
.field.combo-field > input {
	width: 150px;
	margin-right: 20px;
}
.field.combo-field > select {
	width: 80px;
}
/* three */
.field.three-field > select {
	width: 90px;
}
.field.three-field > input {
	margin-right: 10px;
}
.field.three-field > *:last-child {
	margin-right: 0;
}
/* checkbox */
.field.checkbox-field .custom-input {
	display: inline-block;
	width: 33.33%;
}
.field.checkbox-field .custom-input {
	padding: 0 0 10px 0;
}
.field.checkbox-field .custom-input > label {
	padding-right: 5px;
}
span.phone-field > select {
	width: 80px;
}
input.date {
	width: 140px!important;
}

.field span.divider,
.search-form-cell span.divider {
	padding: 0 10px;
}

.form-buttons {
	display: block;
}
.form-buttons:not(.no-top-padding) {
	padding-top: 30px;
}
.form-buttons a:not(.button) {
	padding: 0 30px 0 0;
}
.form-buttons.right {
	text-align: right;
}
.form-buttons.form a {
	display: inline-block;
	width: 147px;
	text-align: right;
}

.wauto {
	width: auto!important;
	max-width: 100%;
}
.w120 {
	width: 120px!important;
}
.w210 {
	width: 210px!important;
}

/* qtip */
img.qtip {
	width: 18px;
	height: 18px;
	background: url('../img/gallery.png') 0 -467px no-repeat rgba(255,58,58,.7);
	margin: -3px 0 0 10px;
}
img.qtip:hover {
	background-color: rgba(255,58,58,1);
}
div.qtip_cont {
	display: none;
}
div.qtip-defaults {
	max-width: 300px;
}
/* qtip end */

/* multilingual tabs */
div.ml_tabs {
	overflow: hidden;
	position: relative;
}
div.ml_tabs > ul {
	height: 40px;
	white-space: nowrap;
	border-bottom: 1px #d4d4d4 solid;
	margin-bottom: 8px;
	position: relative;
}
div.ml_tabs > ul li {
	display: inline-block;
	padding: 5px 0 0;
	height: 40px;
	cursor: pointer;
	position: relative;
	white-space: nowrap;
	color: #0e5486;
	-moz-user-select: none;
	-webkit-user-select: none;
	vertical-align: top;
	margin: 0 20px;
}
div.ml_tabs > ul li:first-child {
	margin-left: 0;
}
div.ml_tabs > ul li:last-child {
	margin-right: 0;
}
div.ml_tabs > ul li.active {
	color: #030303;
	border-bottom: 3px #030303 solid;	
	cursor: default;
}
div.ml_tabs_content {
	padding: 10px 0;
}
div.ml_tabs_content input[type=text] {
	width: 100%;
	max-width: 600px;
}

div.ml_tabs div.nav {
	display: none;
}
/* multilingual tabs end */
/*** SUBMIT FORM ELEMENTS END ***/

/*** MESSAGES ***/
img.account-picture {
	width: 200px;
	height: 100px;
	background-color: white;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	background-image: url('../img/no-account.png');
}
div.picture.no-picture img {
	background-size: inherit;
}
table.contacts-list td.info {
	vertical-align: top;
}
table.contacts-list td.info .name {
	color: #494949;
}
table.contacts-list td.info .name > span:not(.new) {
	font-size: 0.929em;
	color: black;
}
table.contacts-list td.info .date {
	color: #949494;
	font-size: 0.929em;
	padding: 0 0 10px 0;
}
table.contacts-list div.picture {
	position: relative;
	display: inline-block;
}
table.contacts-list div.picture span {
	width: 10px;
	height: 10px;
	background: #60d400;
	position: absolute;
	border-radius: 7px;
	top: -5px;
	right: -5px;
}
table.contacts-list div.name span.new {
	width: 10px;
	height: 10px;
	background: #60d400;
	border-radius: 7px;
	border: 2px white solid;
	display: none;
}

div#messages_cont {
	max-height: 600px;
	margin-bottom: 20px;
}
div#messages_cont .mCSB_container {
	margin-right: 10px;
}
ul#messages_area {
	margin-left: 13px;
}
ul#messages_area > li {
	border: 2px #e1e1e1 solid;
	padding: 15px 24px 15px 20px;
	margin: 0 40px 20px 0;
	position: relative;
}
ul#messages_area > li > div {
	padding: 0 0 10px 0;
}
ul#messages_area > li:last-child {
	margin-bottom: 0;
}
ul#messages_area > li.me {
	border-color: white;
	background: white;
	margin: 0 13px 20px 20px;
}
ul#messages_area > li.removed {
	opacity: 0.5;
	filter: "alpha(opacity=50)"; -ms-filter: "alpha(opacity=50)";
}
ul#messages_area > li div.date {
	margin-top: 5px;
}
ul#messages_area > li:before,
ul#messages_area > li:after {
	content: '';
	position: absolute;
	width: 0px;
	height: 0px;
	left: -15px;
	bottom: -2px;
	border-style: solid;
	border-width: 0 0 14px 14px;
	border-color: transparent transparent #e1e1e1 transparent;
}
ul#messages_area > li:after {
	left: -10px;
	bottom: 0;
	border-width: 0 0 10px 10px;
	border-color: transparent transparent #f2f2f2 transparent;
}
ul#messages_area > li.me:after {
	display: none;
}
ul#messages_area > li.me:before {
	left: auto;
	right: -15px;
	border-width: 0 14px 14px 0;
	border-color: transparent transparent white transparent;
}
ul#messages_area > li > span {
	width: 14px;
	height: 14px;
	position: absolute;
	top: 8px;
	right: 8px;
	background: url('../img/gallery.png') right -469px no-repeat;
	cursor: pointer;
	display: none;
	opacity: 0.5;
	filter: "alpha(opacity=50)"; -ms-filter: "alpha(opacity=50)";
}
ul#messages_area > li > span:hover {
	opacity: 0.9;
	filter: "alpha(opacity=90)"; -ms-filter: "alpha(opacity=90)";
}
ul#messages_area > li:hover > span {
	display: block;
}

div.send-controls {
	margin: 0 0 0 33px;
	text-align: right;
}
div.send-controls > div {
	display: inline-block;
	margin: 0 0 0 20px;
}
textarea#message_text {
	margin-bottom: 10px;
}
/*** MESSAGES ***/

/*** FEATURED LISTINGS BOX ***/
.carousel ul.featured > li {
	padding: 0;
}
ul.featured > li {
	margin-bottom: 30px;
}
ul.featured:not(.row) {
	margin-left: -15px;
	margin-right: -15px;
}
section ul.featured:last-child {
	margin-bottom: -30px;
}
ul.featured > li img {
	width: 100%;
	height: 60%;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	background-color: #e9e9e9;
	background-image: url('../img/no-picture.png');
}
ul.featured > li.no-picture > a > img {
	background-size: auto auto;
}
ul.featured > li > ul {
	position: relative;
	padding: 9px 13px;
	background: white;
}
section.side_block:not(.no-style) ul.featured > li > ul,
section.content_block:not(.no-style) ul.featured > li > ul {
	padding-left: 0;
	padding-right: 0;
}
ul.featured > li > ul > li:not(:last-child) {
	margin-bottom: 6px;
}
ul.featured > li > ul > li a {
	font-weight: 400;
}
ul.featured > li > ul > li.two-inline > nav > span {
	margin-top: 5px;
}

ul.featured.list > li {
	position: relative;
}
ul.featured.list > li:before {
	content: '';
	width: 5px;
	height: 5px;
	position: absolute;
	background: #707070;
	border-radius: 4px;
	top: 8px;
}
ul.featured.list > li {
	display: block!important;
}
ul.featured.list > li > ul > li {
	padding: 0 0 5px 15px;
	position: relative;
	white-space: normal;
}

ul.featured.with-pictures ul.ad-info > li.title {
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

article.item:not(.no-image) ul.ad-info > li.title,
article.item:not(.no-image) ul.ad-info:not(.with-names) > li.fields {

}
article.item:not(.no-image) ul.ad-info:not(.with-names) > li.fields {

}
article.item:not(.no-image) ul.ad-info > li.fields:empty {
	display: none;
}
ul.ad-info > li.fields > span:not(:last-child) {
	margin-right: 5px;
}
ul.ad-info > li.fields > span:not(:last-child):after {
	content: ',';
}
section#listings.list ul.ad-info > li.fields > span {
    display: block;
}
ul.ad-info > li.fields {
	color: #444444;
}
ul.ad-info > li.price_tag > div > span,
ul.ad-info .price-tag > span,
ul.ad-info > li.system .type {
	font-weight: 400;
	font-size: 1.429em;
}
/*** FEATURED LISTINGS BOX END ***/

/*** GRID NAVIGATION BAR ***/
.grid_navbar {
	height: 40px;
	border-bottom: 1px #d4d4d4 solid;
	margin-bottom: 20px;
	display: inline-block;
width: 100%;
}
.grid_navbar .switcher {
	float: right;
	line-height: normal;
	height: 40px;
}
.grid_navbar .switcher > div {
	display: inline-block;
	height: 40px;
	line-height: 40px;
}
.grid_navbar .hook {
	vertical-align: top;
}
.grid_navbar .buttons > div {
	position: relative;
	width: 40px;
	height: 40px;
	display: inline-block;
	cursor: pointer;
	vertical-align: top;
	margin-left: 2px;
}
.grid_navbar .buttons > div.active {
	border-bottom: 3px #030303 solid;
}
.grid_navbar .buttons > div > div {
	width: 18px;
	height: 18px;
	position: absolute;
	top: 11px;
	left: 11px;
	line-height: 0;
	-moz-user-select: none;
	-webkit-user-select: none;
}
.grid_navbar .buttons > div > div > span {
	display: inline-block;
	border: 2px #0e5486 solid;
	border-radius: 1px;
	vertical-align: top;
}

/* list view */
.grid_navbar div.list > div {
	top: 12px;
}
.grid_navbar div.list > div > span {
	width: 10px;
	height: 2px;
	margin: 0 0 2px 2px;
	border: 0;
	background: #0e5486;
}
.grid_navbar div.list > div > span:nth-child(3n+1) {
	width: 6px;
	height: 6px;
	border: 2px #0e5486 solid;
	background: none;
	margin: 0 0 4px 0;
}
.grid_navbar div.list > div > span:nth-child(3n) {
	width: 6px;
	height: 2px;
	float: right;
	margin: -6px 4px 0 0;
	border: 0;
	background: #0e5486;
}

/* grid view */
.grid_navbar div.grid > div > span {
	width: 8px;
	height: 8px;
}
.grid_navbar div.grid > div > span:nth-child(2n) {
	margin: 0 0 2px 2px;
}

.grid_navbar div.list.active > div > span {
	background-color: #030303;
}
.grid_navbar div.list:not(.active):hover > div > span {
	background-color: #c21515;
}

.grid_navbar div.grid.active div > span,
.grid_navbar div.list.active div > span:nth-child(3n+1) {
	border-color: #030303;
	background: none;
}
.grid_navbar div.grid:not(.active):hover div > span,
.grid_navbar div.list:not(.active):hover div > span:nth-child(3n+1) {
	border-color: #c21515;
	background: none;
}

/* map view */
.grid_navbar div.map > div {
	width: 14px;
	left: 13px;
}
.grid_navbar div.map > div > span {
	width: 14px;
	border: 0;
	height: 18px;
	background: url('../img/gallery.png') 0 -67px no-repeat;

	opacity: 0.7;
	filter: "alpha(opacity=70)"; -ms-filter: "alpha(opacity=70)";
}
.grid_navbar div.map.active span {
	background: url('../img/gallery.png') -26px -67px no-repeat;
}
.grid_navbar div.map:hover span,
.grid_navbar div.map.active span {
	opacity: 1;
	filter: "alpha(opacity=100)"; -ms-filter: "alpha(opacity=100)";
}

/* sroting */
.grid_navbar .sorting {
	display: inline-block;
	position: absolute;
	line-height: 40px;
}
.grid_navbar .sorting > div.current.disabled {
	cursor: default;
	background: #e2e2e2;
}
.grid_navbar .sorting > div.current.disabled span.link {
	color: inherit;
}
.grid_navbar .current {
	height: 40px;
	padding: 0 20px 0 18px;
	cursor: pointer;
	-moz-user-select: none;
	-webkit-user-select: none;
}
.grid_navbar .current.active {
	background: white;
	z-index: 11;
	position: relative;
	box-shadow: inset 0 2px 0 0px #aaaaaa, inset 2px 0 0 0px #aaaaaa, inset -2px 0 0 0px #aaaaaa;
	border-bottom: 0;
}
.grid_navbar .sorting span.arrow {
	width: 9px;
	height: 6px;
	display: inline-block;
	margin: 0 0 0 2px;
	background: url('../img/gallery.png') -22px -1280px no-repeat;
}

.grid_navbar .sorting .active span.arrow {
	background-position: -22px -1267px;
}
.grid_navbar ul.fields {
	z-index: 10;
	background: white;
	position: absolute;
	top: 38px;
	left: 0;
	display: none;
	padding: 3px 0 5px;
	min-width: 100%;
	border: 2px #aaaaaa solid;
}
.grid_navbar ul.fields > li {
	padding: 0 18px;
	white-space: nowrap;
}
.grid_navbar ul.fields > li a.active {
	color: #2b2b2b;
}
/*** GRID NAVIGATION BAR END ***/

/*** LISTINGS GRID ***/
/* grid view */
section#listings > article {
	position: relative;
	    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
}
section#listings div.picture > img,
div.map-balloon div.picture > img {
	width: 190px;
	height: 130px;
	background-image: url('../img/no-picture.png');
	background-color: #e9e9e9;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
section#listings div.picture.no-picture > img,
div.map-balloon div.picture.no-picture > img {
	background-size: auto auto!important;
	background-color: #fcfcfc;
}
section#listings div.picture {
	position: relative;
	border: 1px solid #ddd;
}
section#listings div.picture > span,
div.map-balloon div.picture > span {
	min-width: 20px;
	height: 20px;
	position: absolute;
	bottom: 8px;
	left: 4px;
	background: white;
	text-align: center;
	line-height: 18px;
	cursor: pointer;
	z-index: 2;
}
section#listings div.picture > span:after,
div.map-balloon div.picture > span:after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	border: 2px white solid;
	left: 4px;
	top: 4px;
	z-index: -1;
}
section#listings ul.nav-column > li span.icon {
	opacity: 0.7;
	filter: "alpha(opacity=70)"; -ms-filter: "alpha(opacity=70)";
}
section#listings ul.nav-column > li:hover span.icon {
	opacity: 1;
	filter: "alpha(opacity=100)"; -ms-filter: "alpha(opacity=100)";
}
section#listings ul.nav-column > li span.icon {
	width: 18px;
	height: 18px;
	position: absolute;
	left: 0;
	top: 5px;
	cursor: pointer;
}
.favorite span.icon {
	background: url('../img/gallery.png') 0 -94px no-repeat;
	display: inline-block;
	width: 18px;
	height: 16px!important;
}
section#listings.grid .favorite span.icon {
	top: 1px!important;
}
.favorite.remove span.icon {
	background-position: -22px -94px;
}

section#listings ul.ad-info > li:not(:last-of-type) {
	margin-bottom: 8px;
}
section#listings div.stat-line {
	position: absolute;
	bottom: 0;
}
section#listings span.price-tag + div.stat-line {
	position: static;
	display: inline-block;
}
section#listings div.stat-line > li,
section#listings div.stat-line > span {
	display: inline-block;
	margin-right: 10px;
}
section#listings div.stat-line > * > a,
section#listings div.stat-line > * > span {
	padding: 0 0 0 22px;
	position: relative;
}
section#listings div.stat-line > * > a:after,
section#listings div.stat-line > * > span:after {
	content: '';
	width: 16px;
	height: 16px;
	position: absolute;
	left: 0;
	top: 2px;
	background: url('../img/gallery.png') left -675px no-repeat;

	opacity: 0.7;
	filter: "alpha(opacity=70)"; -ms-filter: "alpha(opacity=70)";
}
section#listings div.stat-line > * > a:hover:after,
section#listings div.stat-line > * > span:hover:after {
	opacity: 1;
	filter: "alpha(opacity=100)"; -ms-filter: "alpha(opacity=100)";
}

section#listings > article div.navigation-column {
	width: 21%;
	padding-left: 20px
}
section#listings > article div.navigation-column div.before-nav {
	margin-bottom: 10px;
}
section#listings > article div.navigation-column div.before-nav:empty {
	display: none;
}

/* featured */
article.featured div.picture > span,
div.map-balloon.featured div.picture > span {
	background-color: #0e5486!important;
}
div.map-balloon.featured div.picture > span:after,
article.featured div.picture > span:after {
	border-color: #0e5486!important;
}
article.featured div.picture > span,
div.map-balloon.featured div.picture > span {
	color: white!important;
}
article.featured div.picture > div.label,
div.map-balloon div.picture > div.f-label {
	position: absolute;
	right: 0;
	top: 0;
	height: 22px;
	line-height: 22px;
	padding: 0 10px;
	background: #0e5486;
	font-size: 0.857em;
	text-align: center;
	color: white;
	font-weight: 300;
}
section.my-listings article.featured div.picture > div.label {
	top: 0;
}
/* featured end */

/* list view */
section#listings:not(.list):not(.grid) {
	display: none;
}
section.list > article {
	margin: 0 0 15px 0;
	min-height: 95px;
    width: 100%;
}
section#listings.list > article:last-of-type {
	margin-bottom: 0;
}
section#listings.list div.picture {
	display: inline-block;
	vertical-align: top;
	margin-right: 20px;
	float: left;
}
section#listings.list ul.ad-info {
	overflow: hidden;
}
section#listings ul.ad-info > li.system > span:not(:last-child) {
	margin-right: 30px;
}
section#listings ul.ad-info span.favorite {
	display: inline-block;
	vertical-align: middle;
}

section#listings.list ul.nav-column {
    text-transform: none;
}
section#listings.list ul.nav-column.stick-top {
	padding: 0;
}
section#listings.list ul.nav-column > li {
	cursor: pointer;
	position: relative;
	padding: 3px 0 8px 25px;
	text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
	-moz-user-select: none;
	-webkit-user-select: none;
}
section#listings.list ul.ad-info > li.fields > div.table-cell:last-child > div {
	padding-bottom: 0;
}
/* list view end */

/* grid view */
section.grid > article {
	padding-bottom: 30px;
}
section#listings ul.ad-info {
	text-transform: none;
}
section#listings.grid ul.ad-info > ol {
	display: none;
}
section#listings.grid > article div.picture {
	margin-bottom: 10px;
}
section#listings.grid > article div.picture > img {
	width: 100%;
	height: auto;
}
section#listings.grid > article:not(.no-image) ul.ad-info > li.title,
section#listings.grid > article:not(.no-image) ul.ad-info > li.fields {
	display: block;
	white-space: nowrap;
	overflow: hidden;
    text-overflow: ellipsis;
}
section#listings.grid ul.ad-info > li:not(:last-of-type) {
	margin-bottom: 4px;
}
section#listings.grid > article div.navigation-column {
	position: absolute;
	width: auto;
	bottom: 30px;
	right: 16px;
	z-index: 1;
	display: none;
}
section#listings.grid > article div.navigation-column div.before-nav {
	display: none;
}
section#listings.grid ul.nav-column > li {
	display: inline-block;
	height: 18px;
	width: 18px;
	margin-left: 8px;
	position: relative;
}
section#listings.grid ul.nav-column > li:first-child {
	margin-left: 0;
}
section#listings.grid ul.nav-column > li span.icon {
	top: 0;
}
section#listings.grid ul.nav-column > li > span.link {
	display: none;
}
/* grid view end */

/* no image grid view */
section#listings.list.no-image {
	margin: 0;
	padding: 0;
}
section#listings.list.no-image > article {
	width: auto;
	display: block;
	border-bottom: 2px #e6e6e6 solid;
	margin: 0 0 20px 0;
	padding: 0 0 10px;
	float: none;
}
section#listings.list.no-image a.link-large {
	font-size: 1.125em!important;
}
section#listings.list.no-image li.fields {
	padding-top: 7px;
}
section#listings.list.no-image ul.ad-info > li.title {
	padding-bottom: 0;
}
/* no image grid view end */

/* map view */
#listings_map,
#accounts_map {
	height: 500px;
}
div.map-balloon div.picture {
	position: relative;
	display: inline-block;
}
div.map-balloon div.picture > img {
	width: 150px;
	height: 103px;
}
div.map-balloon div.title {
	padding: 10px 0 5px;
	font-size: 15px;
	max-width: 180px;
}
div.map-balloon div.picture > span  {
	width: 22px;
	height: 16px;
	line-height: 15px;
	font-size: 12px;
}

div.map-balloon-account {
	padding: 0 0 5px 0;
}
div.map-balloon-account div.picture {
	width: 200px;
	height: 100px;
	margin-bottom: 10px;
}
div.map-balloon-account div.picture img {
	width: 100%;
	height: 100%;
}
div.map-balloon-account div.statistics {
	margin-bottom: 5px;
}
div.map-balloon-account ul.info > li {
	line-height: 20px;
}
/* map view end */

.category-description {
	border: 2px #e9e9e9 solid;
	padding: 14px 18px;
	margin: 0 0 20px;
}
/*** LISTINGS GRID END ***/

/*** LISTING DETAILS ***/
div.listing-details {
	position: relative;
}
div.listing-details h1 {
	margin: 0 !important;
}

/* top navigation */
div.listing-details div.top-navigation {
	height: 42px;
	padding: 0 15px;
	background: #e1e1e1;
	position: relative;
}

div.listing-details div.top-navigation div.icons {
	height: 42px;
	line-height: 42px;
	overflow: hidden;
	display: block;
	text-align: center;

	-moz-user-select: none;
	-webkit-user-select: none;
}
div.listing-details div.top-navigation div.icons a.button {
	white-space: nowrap;
	overflow: hidden;
	max-width: 100%;
	text-overflow: ellipsis;
	text-align: left;
}
div.listing-details div.top-navigation div.icons > *:not(.button) {
	width: 18px;
	height: 18px;
	display: inline-block;
	vertical-align: top;
	cursor: pointer;
	margin: 12px 10px 0;

	opacity: 0.7;
	filter: "alpha(opacity=70)"; -ms-filter: "alpha(opacity=70)";
}
div.listing-details div.top-navigation div.icons > *:not(.button):hover {
	opacity: 1;
	filter: "alpha(opacity=100)"; -ms-filter: "alpha(opacity=100)";
}
div.listing-details div.top-navigation div.icons > a.button {
	margin-top: 7px;
}
div.listing-details div.top-navigation div.icons > * > span {
	width: 18px;
	height: 18px;
	display: inline-block;
	vertical-align: top;
}
div.listing-details div.top-navigation div.icons > span.favorite {
	margin-top: 13px;
}
/* top navigation end */

/* gallery */
div.gallery > div#media {
	height: 400px;
	position: relative;
}
div.gallery div.preview,
div.gallery div.map-container,
div.gallery div#street_view,
div.gallery div#player {
	height: 100%;
	background: white;
}
div.gallery div.map-container {
	background-color: #e9e9e9;
}

div.gallery div#media.map .preview,
div.gallery div#media.street-view .preview,
div.gallery div#media.map + div.thumbs,
div.gallery div#media.locked span.zoom,
div.gallery div#media.street-view + div.thumbs {
	display: none;
}
div.gallery div#media.map span.map,
div.gallery div#media.map span.zoom,
div.gallery div#media.video span.zoom,
div.gallery div#media.video span.map,
div.gallery div#media.video span.street-view,
div.gallery div#media.gallery span.gallery,
div.gallery div#media.street-view span.zoom,
div.gallery div#media.street-view span.street-view {
	position: absolute!important;
	left: -9999px!important;
}
div.gallery div#media > .nav-buttons span.nav-button {
	position: absolute;
	left: 10px;
	top: 10px;
	height: 38px;
	line-height: 36px;
	padding: 0 12px;
	background: rgba(55,55,55,.6);
	color: white;
	font-size: 0.929em;
	cursor: pointer;
}
div.gallery div#media > .nav-buttons > .map {
	left: auto;
	right: 10px;
}

div.gallery div#media > .nav-buttons > span.map-group {
	position: absolute;
	right: 10px;
	top: 10px;
	z-index: 99;
}
div.gallery div#media > .nav-buttons > span.map-group span {
	position: static;
	display: inline-block;
}

div.gallery div#media.map > .nav-buttons .gallery {
	position: static;
	left: auto;
}

div.gallery div#media.map .map-container,
div.gallery div#media.street-view #street_view {
	display: block;
}

div.gallery div.preview iframe {
	width: 100%;
	height: 100%;
	display: none;
}
div.gallery div#media.video:not(.local) div.preview iframe {
	display: block;
}
div.gallery div#media.local div.preview div#player {
	display: block;
}
div.gallery div#media.video div.preview img {
	display: none;
}
div.gallery div.preview.video span.media-enlarge,
div.gallery div.preview.video img {
	display: none;
}
div.gallery div.preview > img {
	width: 100%;
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	cursor: pointer;
}

/* locked gallery */
div.gallery div#media.locked div.preview > * {
	display: none;
}
div.gallery div#media.locked div.preview div#picture_locked {
	display: block;
}
div#picture_locked {
	height: 100%;
	background-color: white;
}
div#picture_locked > div {
	height: 100%;
	text-align: center;

	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
}
div#picture_locked > div > div {
	width: 100%;

	-webkit-align-self: center;
	-moz-align-self: center;
	-ms-align-self: center;
	align-self: center;
}
div#picture_locked img {
	width: 96px;
	height: 142px;
	background: url('../img/locked-large.png') center center no-repeat;
	text-align: center;
	margin-bottom: 20px;
}
#media.picture #picture_locked p.picture-hint {
	display: block;
}
#media.fake-video #picture_locked p.video-hint {
	display: block;
}
/* locked gallery end */

/* gallery thumbnains bar */
div.gallery > div.thumbs {
	height: 95px;
	padding: 11px;
	background: #f4f4f4;
	position: relative;
}
div.gallery > div.thumbs > div.prev,
div.gallery > div.thumbs > div.next {
	width: 71px;
	height: 71px;
	background: white;
	position: absolute;
	cursor: pointer;
	left: 11px;
	top: 11px;
	-moz-user-select: none;
	-webkit-user-select: none;
}
div.gallery > div.thumbs > div.next {
	left: auto;
	right: 11px;
}
div.gallery > div.thumbs > div.disabled {
	cursor: default;
	opacity: 0.5;
	filter: "alpha(opacity=50)"; -ms-filter: "alpha(opacity=50)";
}
div.gallery > div.thumbs > div.prev:before,
div.gallery > div.thumbs > div.next:before {
	content: '';
	width: 12px;
	height: 22px;
	background: url('../img/gallery.png') 0 -366px no-repeat;
	position: absolute;
	top: 24px;
	left: 29px;
	opacity: 0.7;
	filter: "alpha(opacity=70)"; -ms-filter: "alpha(opacity=70)";
}
div.gallery > div.thumbs > div.next:before {
	background-position: -12px -366px;
	left: 32px;
}
div.gallery > div.thumbs > div.prev:not(.disabled):hover:before,
div.gallery > div.thumbs > div.next:not(.disabled):hover:before {
	opacity: 1;
	filter: "alpha(opacity=100)"; -ms-filter: "alpha(opacity=100)";
}
div.gallery > div.thumbs > div.slider {
	margin: -23px 73px 0;
	padding: 23px 0 0;
}
div.gallery > div.thumbs > div.slider > ul {
	white-space: nowrap;
}
div.gallery > div.thumbs > div.slider > ul > li {
	display: inline-block;
	vertical-align: top;
	position: relative;

	transition: margin 0.3s ease;
}
div.gallery > div.thumbs > div.slider > ul > li span.play {
	position: absolute;
	background: url('../img/play.png') center center no-repeat rgba(0,0,0,.2);
	margin: 2px;
	left: 0px;
	top: 0;
	right: 2px;
	bottom: 0px;
	cursor: pointer;
}
div.gallery > div.thumbs > div.slider > ul > li img {
	width: 71px;
	height: 71px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	border: 2px white solid;
	cursor: pointer;
	margin-right: 2px;
}
div.gallery > div.thumbs > div.slider > ul > li.active {
	border-color: #444;
}
div.gallery > div.thumbs > div.slider > ul > li.active.video {
	border-color: #444;
}
div.gallery > div.thumbs > div.slider > ul > li.locked img {
	background-color: #eeeeee;
	background-image: url('../img/locked.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: auto;
}
div.gallery span.img-loading {
	background: url('../img/img_loader.gif') center center no-repeat #444444;
	position: absolute;
	top: 0;
	left: 0;
	margin: 2px;
}
/* gallery thumbnains bar end */
/* gallery end */

div.listing-details {
	overflow: hidden;
}
div.listing-details div.price-tag {
	height: 42px;
	line-height: 38px;
	color: #c8383d;
	font-size: 25px;
	font-weight: 700;
	padding: 0 13px 0 19px;
	margin-left: 30px;
	margin-top: -6px;
	position: relative;
}
div.listing-details div.price-tag > div {

}
div.listing-details div.price-tag > div > span {

}
div.listing-details div.price-tag > div:before,
div.listing-details div.price-tag > div:after {

}
div.listing-details div.price-tag > div:after {

}

#area_listing > div.row {
	margin-bottom: 25px;
}

/* icons */
a.print > span {
	background: url('../img/gallery.png') right -389px no-repeat;
}
/* icons end */

/* content section */
div.listing-details .content-section {
	padding: 30px 0px 25px;
	background: white;
}
div.listing-details .content-section div.details {
	overflow: hidden;
}
div.listing-details div.tab_area div.no-group + div:not(.no-group) {
    margin-top: 25px;
}
div.table-cell + div.fieldset {
	margin-top: 20px;
}
#area_listing > div.content-padding > div.table-cell:last-of-type {
	margin-bottom: 20px;
}
/* content section end */

/* seller info section */
.seller-short div.picture {
	margin: 0 0 15px 0;
}
.seller-short div.picture img {
	width: 140px;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}
.seller-short ul.seller-info {
	padding-bottom: 45px;
	position: relative;
}
.seller-short ul.seller-info > li.name {
	margin-top: -2px;
}
.seller-short div.landscape ul.seller-info > li.name {
	font-size: 1.286em;
	padding-bottom: 10px;
}
.seller-short ul.seller-info > li.name a {
	font-weight: 400;
}
.seller-short ul.seller-info .type {
	font-weight: 400;
	color: #8e8e8e;
	font-size: 0.929em;
	font-style: italic;
}
.seller-short ul.seller-info > li.about {
	font-size: 0.929em;
	padding: 10px 0 0;
}
.seller-short:not(.no-pucture) a.low {
	position: absolute;
	bottom: 0;
}
.seller-short div.form {
	margin-top: 25px;
}
.seller-short form div.field {
	position: relative;
}
.seller-short form input[type=text]:not([name=security_code]) {
	width: 100%;
	padding-left: 37px;
}
.seller-short form input + span {
	position: absolute;
	left: 11px;
	top: 10px;
	width: 18px;
	height: 18px;
	background: url('../img/gallery.png') right -141px no-repeat;

	opacity: 0.7;
	filter: "alpha(opacity=70)"; -ms-filter: "alpha(opacity=70)";
	transition: opacity 0.3s ease;
}
.seller-short form input[name=contact_email] + span {
	background-position: right -159px;
	height: 16px;
	top: 11px;
}
.seller-short form input[name=contact_phone] + span {
	background-position: right -175px;
}
.seller-short form input:focus + span {
	opacity: 1;
	filter: "alpha(opacity=100)"; -ms-filter: "alpha(opacity=100)";
}

.seller-short div.info-table:not(.no-top-gap),
.seller-short div.owner-details {
	margin-top: 25px;
}

/* masked fields */
h3.cd-caption {
	margin: 0!important;
	padding-bottom: 10px;
}
h3.cd-caption + div.info-table:not(.no-top-gap) {
	margin-top: 0!important;
}
.masked > h3 {
	font-size: 1.286em;
	margin-top: 0;
	margin-bottom: 10px;
}
.masked {
	position: relative;
	min-height: 90px;
}
.masked > *:not(.login-mask):not(h3) {
	-webkit-filter: blur(2px);
	-moz-filter: blur(2px);
	filter: blur(2px)
}
.masked div.login-mask {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 100%;
	background: rgba(255,255,255,.6);
	text-align: center;
	box-shadow: 0 0 6px 6px rgba(255,255,255,.6);

	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
}
.masked div.login-mask > div {
	width: 100%;

	-webkit-align-self: center;
	-moz-align-self: center;
	-ms-align-self: center;
	align-self: center;
}
.restricted-content > span {
	display: inline-block;
	margin-top: 10px;
}
.masked div.login-mask p {
	text-shadow: 1px 0 0 white;
}
.restricted-content > span > span {
	padding: 0 10px;
}
/* seller info section */

/* map capture */
section.map-capture {
	cursor: pointer;
	position: relative;
}
section.map-capture > img {
	width: 100%;
	height: 180px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	background-color: #e9e9e9;
}
/* map capture end */

/* statistics section */
div.listing-details section.statistics ul.counters {
	overflow: hidden;
}
div.listing-details section.statistics ul.counters > li {
	padding: 5px 0;
	color: #222222;
	min-height: 26px;
	line-height: 26px;
	font-size: 0.929em;
}
div.listing-details section.statistics ul.counters > li span.count {
	font-size: 1.714em;
	margin-right: 5px;
}

div.listing-details section.statistics ul.controls {
	float: right;
	width: 70%;
}
div.listing-details section.statistics ul.controls > li:first-child {
	padding: 4px 0 10px;
}
div.listing-details section.statistics ul.controls > li {
	padding: 7px 0 12px;
	min-height: 20px;
}
/* statistics section end */
/*** LISTING DETAILS END ***/

/*** ACCOUNTS GRID ***/
section#accounts > article div.picture {
	width: 200px;
	max-width: 200px;
	height: 100px;
	margin-right: 15px;
	float: left;
}
section#accounts > article div.picture img {
	width: 100%;
	height: 100%;
	background-color: white;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	background-image: url('../img/no-account.png');
}
section#accounts > article div.no-picture div.picture img {
	background-size: auto;
}
section#accounts > article div.statistics {
	overflow: hidden;
	position: relative;
	height: 100px;
}
section#accounts div.statistics > ul {
	margin-top: -6px;
}
section#accounts div.statistics > ul > li.name {
	padding: 5px 0;
}
section#accounts div.statistics div.counter {
	position: absolute;
	top: 58px;
}
section#accounts div.statistics div.counter span:first-child {
	display: block;
	font-size: 1.286em;
	font-weight: 600;
}
section#accounts div.statistics div.counter span:last-child {
	font-size: 0.929em;
}
section#accounts > article > ul > li {
	line-height: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
}
section#accounts > article > ul > li.fields {
	font-size: 0.929em;
	line-height: 18px;
    text-transform: none;
	/*white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;*/
}
section#accounts > article > ul > li.fields > span:after {
	content: ',';
}
section#accounts > article > ul > li.fields > span:last-child:after {
	content: '';
}
section#accounts > article > ul > li.tel a {
	font-weight: 400;
}

section#accounts > article .landscape {
	position: relative;
}
section#accounts > article .landscape div.picture {
	margin-right: 0;
	margin-left: 0;
	float: none;
}
section#accounts > article .landscape div.statistics {
	height: auto;
	position: static;
}
section#accounts > article .landscape div.statistics > ul {
	margin-top: 0;
}
section#accounts > article .landscape div.statistics > div.counter {
	top: 0;
	background: rgba(0,0,0,.8);
	height: 22px;
	line-height: 20px;
	padding: 0 5px;
	color: white;
	pointer-events: none;
}
section#accounts > article .landscape div.statistics > div.counter span:first-child {
	display: inline;
	font-size: 0.929em;
	font-weight: 400;
}
/*** ACCOUNTS GRID END ***/

/*** ACCOUNT DETAILS PAGE ***/
section.seller-short li.counter {
	padding: 15px 0 0 0;
}
section.seller-short li.counter span:first-child {
	font-size: 1.286em;
	font-weight: 600;
}
section.seller-short li.counter span:last-child {
	font-size: 0.929em;
}

div.map-capture {
	height: 219px;
	border: 1px #e9e9e9 solid;
	margin: 15px -18px -18px;
	cursor: pointer;
	position: relative;
}
div.map-capture > img {
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center center;
}
/*** ACCOUNT DETAILS PAGE END ***/

/*** ACCOUNT AREA ***/
.login-form input[type=text],
.login-form input[type=password] {
	width: 250px;
	display: block;
	margin: 0 0 20px;
}
.login-form div.button {
	padding-bottom: 15px;
}
.login-form div.divider {
	padding-top: 5px;
}
.fb-connect {
	display: inline-block;
	line-height: 34px;
	height: 34px;
	padding: 0 20px 0;
	color: white!important;
	font-size: 1.071em;
	background: #547fd8;
	padding-left: 45px;
	position: relative;
	margin: 0 0 0 10px;
	vertical-align: top;
	box-shadow: none!important;
}
.fb-connect:before {
	content: 'f';
	position: absolute;
	width: 17px;
	height: 20px;
	line-height: 20px;
	left: 12px;
	top: 7px;
	text-transform: none;
	font-size: 1em;
	border-right: 1px #a3b5da solid;
	text-align: left;
}
.fb-connect:hover {
	background: #618be2;
}

.welcome {
	padding: 0 0 10px;
	font-size: 1.071em;
}
ul.account-menu-content {
	display: inline-block;
}
ul.account-menu-content > li {
	padding: 5px 30px 5px 0;
	position: relative;
}
ul.account-menu-content > li:last-child {
	padding: 0;
}
div.attention:not(:empty) {
	padding: 0 0 15px;
}
div.attention span.red {
	padding: 0;
}
/*** ACCOUNT AREA END ***/

/*** MY PROFILE ***/
.my-profile-sidebar .info {
	margin-top: 10px;
}
.my-profile-sidebar table.info td.name {
	width: 85px;
}
.image-preview-wrapper {
	position: relative;
	overflow: hidden;
	display: inline-block;
}
.image-preview-wrapper .image-preview {
	background-color: white;
	width: 200px;
	height: 100px;
	background-image: url('../img/no-account.png');
	background-size: inherit;
	background-position: center center;
	background-repeat: no-repeat;
	cursor: pointer;
}
.image-preview-wrapper .image-preview.loaded {
	background-size: cover!important;
}
.image-preview-wrapper label {
	text-decoration: underline;
	font-size: 0.857em;
	padding-top: 5px;
}
.image-preview-wrapper label:hover {
	text-decoration: none;
}
.image-preview-wrapper input[type=file] {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: 0;
	border: 0;
	opacity: 0;
	filter: alpha(opacity=0);
	-o-transform: translate(250px, -50px) scale(1);
	-moz-transform: translate(-300px, 0) scale(4);
	direction: ltr;
	cursor: pointer;
	height: 200px;
}
.image-preview-wrapper div.two-inline {
	margin: 5px 0 0 0;
}
.image-preview-wrapper div.two-inline div.icons > span {
	margin: 1px 0 0 10px;
}
/*** MY PROFILE END ***/

/*** MY PACKAGES ***/
ul.packages > li {
	display: block;
	margin-bottom: 30px;
}
ul.packages > li div.frame {
	width: 55%;
	float: left;
	border: 1px #ddd solid;
	padding: 15px 18px;
}
ul.packages > li div.plan-info {
	width: 45%;
	float: left;
	margin-top: -3px;
}
ul.packages > li .highlight {
	color: black;
}
ul.packages > li div.listing-info {
	overflow: hidden;
	padding: 3px 0 0 20px;
}
ul.packages li > div > div > span {
	display: block;
}
ul.packages h3 {
	color: #393939;
	font-size: 1.286em;
	font-weight: 200;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin: -5px 0 10px 0;
}
ul.packages span.price {
	color: #3a3a3a;
	font-size: 2.429em;
	font-weight: normal;
	padding: 0 0 15px;
}
ul.packages span.count {
	color: #888;
	font-weight: 300;
}
ul.packages div.listing-info > span.count:not(:last-child) {
	padding-bottom: 8px;
}
ul.packages > li div.listing-info > span.count:last-child {
	padding: 0;
}

ul.packages > li div.status {
	margin: auto;
	margin-left: 30px;
	float: left;
}
ul.packages > li div.status div.renew {
	padding-top: 15px;
}
ul.packages .overdue,
ul.packages .expired {
	color: #a52323;
}
ul.packages .active {
	color: #63b53b;
}
.plans-container ~ .nav-buttons {
    padding-top: 20px;
}
form[name="payment"] div.nav-buttons {
    padding-top: 20px;
}
/*** MY PACKAGES END ***/

/*** TABLES ***/
/* submit table */
table.submit {
	table-layout: fixed;
}
table.submit td {
	height: 38px;
	padding: 0 0 10px;
}
table.submit td.name {
	width: 180px;
	padding-right: 10px;
}
table.submit td .name {
	padding: 5px 0 5px;
}
table.submit td.field input[type=text],
table.submit textarea {
	width: 100%;
}
table.submit td.button {
	padding: 10px 0 0 0;
}
table.submit a.close {
	padding-left: 20px;
}
/* submit table end */

/* details table */
div.table-cell > div {
	min-height: 28px;
	line-height: 26px;
	vertical-align: top;
}
div.table-cell:not(.wide-field) > div {
	font-size: 0.929em;
}
div.table-cell > div.name {
    color: #888888;
    float: left;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 36%;
}
div.table-cell > div.name > div {
	background: url('../img/gallery.png') 0 16px repeat-x;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	height: 24px;
}
div.table-cell > div.name > div > span {
	background: #f2f2f2;
	padding-right: 7px;
}
section.content-section div.table-cell > div.name > div > span {
	background: white;
}
div.table-cell div.value {
	color: #111111;
	word-wrap: break-word;
	overflow: hidden;
	text-transform: none;
}
div.table-cell > div.name + div.value {
	padding-left: 10px;
}
div:not(.body) > div > div.table-cell.wide-field {
	margin-top: 10px;
	margin-bottom: 20px;
}
#area_listing div.table-cell.wide-field:first-child div.name {
	display: none;
}
div.table-cell.wide-field div.name {
	float: none;
	width: 100%!important;
}
div.table-cell.wide-field div.name > div {
	background: none;
}
div.table-cell.wide-field > div.name + div.value {
	padding-left: 0px;
}
div.table-cell ul.checkboxes {
	margin-bottom: 15px;
}
div.table-cell ul.checkboxes > li {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
div.table-cell ul.checkboxes > li img {
	width: 17px;
	height: 12px;
	vertical-align: baseline;
	margin-right: 8px;
	margin-left: 2px;
}
div.table-cell ul.checkboxes > li.active img {
	background: url('../img/gallery.png') 0 -147px no-repeat;
}
div.table-cell ul.checkboxes > li:not(.active) {
	color: #9e9e9e;
	text-decoration: line-through;
}
/* details table end */

/* information table */
table.info {
	table-layout: fixed;
}
table.info td,
div.table-cell.small > div {
	vertical-align: top;
	padding-bottom: 5px;
	font-weight: normal!important;
	line-height: normal;
	min-height: inherit;
	text-transform: none;
}
table.info td.name:after,
div.table-cell.small > div.name:after  {
	content: ':';
}
div.table-cell.small > div.value {
	white-space: normal;
}
table.info td.image,
div.table-cell.small > div.image {
	padding-top: 5px;
}
div.info-table > div.table-cell:last-of-type {
	margin-bottom: 0!important;
}
/* information table end */

/* table view table */
table.table {
	table-layout: fixed;
}
table.table td {
	min-height: 30px;
	padding: 5px 0;
	vertical-align: top;
}
table.table td.name {
	width: 215px;
	color: #949494;
	padding-right: 10px;
}
table.table td.value {
	color: #000000;
	word-wrap: break-word;
}
/* table view table end */

/* list table */
table.list {
	width: 100%;
	table-layout: fixed;
}
table.list span.text {
	color: #515151;
	font-size: 0.857em;
}
table.list > tbody > tr.header {
	border: 2px #e9e9e9 solid;
}
table.list > tbody > tr.header > td {
	font-size: 0.929em;
	padding: 0 0 0 30px;
	height: 40px;
}
table.list > tbody > tr.header > td:first-child {
	padding-left: 10px;
	width: 33px;
}
table.list tr.header td.divider {
	padding: 0;
	width: 5px;
	border: 0;
}
table.list > tbody > tr.body {
	border-bottom: 2px #e9e9e9 solid;
}
table.list > tbody > tr.body > td {
	padding: 20px 0 20px 30px;
	white-space: nowrap;
	text-overflow: ellipsis;
}
table.list > tbody > tr.body > td.info > a {
    white-space: normal;
}
table.list > tbody > tr.body > td:first-child {
	padding-left: 11px;
}
table.list>tbody td.no_padding
{
	padding-left: 5px!important;
	padding-right: 5px!important;
}
table.list tr.body td.divider {
	border: 0;
}
table.list td.price div {
	width: 50px;
	background: red;
	color: #000000;
	font-size: 16px;
	line-height: 17px;
	padding: 5px 5px;
	margin-right: 10px;
	text-align: center;
	white-space: nowrap;
	text-overflow: ellipsis;
	font-weight: 600;
	overflow: hidden;
}
table.list span.name
{
	text-transform: uppercase;
}
/* list table end */

div.list-table {
	display: table;
	width: 100%;
}
div.list-table > div {
	display: table-row;
	position: relative;
	margin: 0;
}
div.list-table > div:not(.header):hover {
	background: rgba(0,0,0,.05)
}
div.list-table > div:before,
div.list-table > div:after {
	content: none;
}
div.list-table > div.header {
	height: 28px;
}
div.list-table > div > div {
	display: table-cell;
	padding-right: 15px;
}
div.list-table > div > div:last-child {
	padding-right: 0;
}
div.list-table > div.header > div {
	vertical-align: top;
	font-size: 0.929em;
	color: #8e8e8e;
	border-bottom: 2px #e9e9e9 solid;
	text-transform: uppercase;
	font-weight: 400;
	white-space: nowrap;
}
div.list-table > div > div.center {
	padding-right: 0!important;
}
div.list-table > div.row > div {
	vertical-align: top;
	padding-top: 11px;
	padding-bottom: 11px;
	color: #111111;
}
div.list-table > div.row > div > div.inline {
	display: inline;
}
div.list-table > div.row > div.text {
	padding-top: 22px;
}
div.list-table > div.row > div > table.table {
	margin-top: -5px;
}
div.list-table > div.row > div > table.table td.name {
	width: 150px;
}
div.list-table .text {
	color: #515151;
	font-size: 0.857em;
}
div.list-table span.title {
	display: none;
}

.transactions div.table-cell.small > div.name {
	width: 95px;
}

.mass-actions {
	padding: 15px 0 0 14px;
}
.mass-actions > a:not(:last-child):after {
	content: '|';
	padding: 0 10px;
	color: #5c5c5c;
	font-size: 0.929em;
}

.statuses .paid,
.statuses .unpaid,
.statuses .active,
.statuses .approval,
.statuses .incomplete,
.statuses .pending,
.statuses .expired {
	color: #63b53b;
	font-size: 0.929em;
}
.statuses .approval {
	color: #666666;
}
.statuses .incomplete {
	color: #2767b5;
}
.statuses .pending {
	color: #e88d22;
}
.statuses .expired {
	color: #fb0000;
}
.statuses .paid {
	color: #63b53b;	
}
.statuses .unpaid {
	color: #fb0000;
}

.statuses .active:paid,
.statuses .active:unpaid,
.statuses .active:before,
.statuses .approval:before,
.statuses .incomplete:before,
.statuses .pending:before,
.statuses .expired:before {
	content: '';
	display: inline-block;
	width: 7px;
	height: 7px;
	background: #63b53b;
	margin-right: 8px;
}
.statuses .approval:before {
	background: #666666;
}
.statuses .incomplete:before {
	background: #2767b5;
}
.statuses .pending:before {
	background: #e88d22;
}
.statuses .expired:before {
	background: #fb0000;
}
/*** TABLES END ***/

/*** NEWS BLOCK ***/
ul.news > li {
	padding: 0 0 20px;
	display: inline-block;
}
ul.news > li:last-child {
	padding: 0;
}
ul.news div.date {
	float: right;
	padding-top: 4px;
}
ul.news h4 {
	overflow: hidden;
	padding: 0 10px 0 0;
}
ul.news article {
	padding: 10px 0 0 0;
	font-size: 0.929em;
}
article.news {
	padding: 10px 0;
	line-height: 26px;
	font-size: 1.143em;
}
/*** NEWS BLOCK END ***/

/*** FIELDSET ***/
div.fieldset {
	margin: 0;
}
div.fieldset > header {
    background: #0e5486 none repeat scroll 0 0;
    color: #fff;
    font-weight: 700;
    padding: 7px 15px !important;
    text-transform: uppercase;
	margin: -1px;
}
div.fieldset > header > span.arrow {
	display: none;
}
div.fieldset > div.body > div {
	padding: 15px 15px 5px;
}

#controller_area div.fieldset > header,
.content_block div.fieldset > header {
	border: 0;
	padding-bottom: 0;
}
#controller_area div.fieldset > header:after {
	content: '';
	display: inline-block;
	background: red;
}

#controller_area div.fieldset > header > span.arrow {
	width: 18px;
	height: 18px;
	display: inline-block;
	vertical-align: top;
	margin: 0 8px 0 -4px;
	cursor: pointer;
	position: relative;
}
#controller_area div.fieldset > header > span.arrow:after {
	content: '';
	position: absolute;
	width: 8px;
	height: 4px;
	top: 6px;
    left: 4px;
	background: url('../img/gallery.png') -14px -315px no-repeat;
}
#controller_area div.fieldset > header > span.arrow.up:after {
	background-position: 0 -315px;
}
#controller_area div.fieldset > div.body > div {
    padding-left: 15px;
    padding-top: 15px;
}

.row > div.fieldset.divider {
    padding-left: 15px;
    padding-right: 15px;
}
div.fieldset.divider {
	margin: 0 0 15px 0;
}
div.fieldset.divider > header {
	margin: 0;	
}
/*** FIELDSET END ***/

/*** CATEGORIES BLOCK ***/
div.categories {
	width: auto;
	overflow: hidden;
	margin-bottom: -10px;
}

div.categories ul > li {
	float: left;
	width: 100%;
}
div.categories ul div.item div.parent-cateory {
	padding: 0 0 10px;
	white-space: nowrap;
}
div.categories div.category-name {
	padding: 0 5px 0 0;
	overflow: hidden;
	background: url('../img/gallery.png') 0 15px repeat-x;
	text-overflow: ellipsis;
}
div.categories div.category-counter {
	text-align: right;
	float: right;
}
a.category {
	font-size: 1.071em;
	text-decoration: none;
	display: inline-block;
	white-space: nowrap;
	text-overflow: ellipsis;
	background: white;
	margin-right: 5px;
}
div.categories div.category-counter > span {
	color: #222222;
	font-size: 1.286em;
	font-weight: 400;
	display: inline-block;
	height: 22px;
	margin-top: -2px;
	padding: 0 0 0 7px;
}
aside.left > section.side_block:not(.no-style) a.category { 
	background-color: #e9e9e9;
}
.empty-category a,
.empty-category a:hover,
.empty-category div.category-counter > span,
.empty-category div.sub_categories {
	color: #bbbbbb!important;
}
div.category-slider-bar {
	position: absolute;
	top: -31px;
	right: -5px;
}
div.fieldset div.category-slider-bar {
	position: static!important;
	top: auto;
	right: auto;
	text-align: center;
	padding-top: 3px;
}
div.category-slider-bar > span.arrow {
	width: 19px;
	height: 24px;
	display: inline-block;
	vertical-align: top;
	cursor: pointer;
}
div.category-slider-bar span.prev,
div.category-slider-bar span.next {
	width: 7px;
	height: 12px;
	display: inline-block;
	background: url('../img/gallery.png') 0px -583px no-repeat;
	margin: 6px;
	-moz-user-select: none;
	-webkit-user-select: none;
}
div.category-slider-bar span.next {
	background-position: right -583px;
}
div.category-slider-bar > span.navigation {
	height: 24px;
	display: inline-block;
	vertical-align: top;
	margin: 0 5px;
	height: 4px;
	margin-top: 6px;
}
div.category-slider-bar > span.navigation > span {
	width: 18px;
	height: 12px;
	display: inline-block;
	vertical-align: top;
	position: relative;
	cursor: pointer;
}
div.category-slider-bar > span.navigation > span:after {
	content: '';
	position: absolute;
	left: 6px;
	top: 3px;
	width: 6px;
	height: 6px;
	background: #0e5486;
	border-radius: 50%;
}
div.category-slider-bar > span.navigation > span.active:after {
	background-color: #141414;
	width: 8px;
	height: 8px;
	top: 2px;
}
section.categories-box {
	box-shadow: none;
	background: #f1f1f1;
}
section.categories-box ul.cat-tree > li {
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}
section.categories-box div.cat-tree-cont.limit-height {
	overflow: hidden;
}
.sub-categories-exist div.parent-cateory {
	padding-bottom: 0!important;
}
.sub-categories-exist div.category-name {
	background: none!important;
}
.sub-categories-exist div.category-counter > span {
	padding: 0!important;
}
.sub-categories-exist div.category-name > a {
	padding: 0;
}
.categories .sub_categories {
	padding: 0 0 15px 5px;
}
.categories .sub_categories span.more {
	cursor: pointer;
	color: #02a5b8;
	font-size: 0.929em;
	display: inline-block;
}

div.other_categories_tmp {
	position: absolute;
	z-index: 3;
}
div.other_categories_tmp div {
	background: white;
	border: 2px #e9e9e9 solid;
	padding: 13px 25px 15px 17px;
	margin: 20px 0 0 15px;
	max-width: 200px;
	position: relative;
}
div.other_categories_tmp div img.close {
	display: block;
	cursor: pointer;
	top: 0;
	right: 0;
	position: absolute;
	width: 12px;
	height: 12px;
	margin: 4px;
	background: url('../img/gallery.png') -27px -470px no-repeat;
	opacity: 0.7;
	filter: "alpha(opacity=70)"; -ms-filter: "alpha(opacity=70)";
}
div.other_categories_tmp div img.close:hover {
	opacity: 1;
	filter: "alpha(opacity=100)"; -ms-filter: "alpha(opacity=100)";
}
/*** CATEGORIES BLOCK END ***/

/*** CATEGORIES TREE BLOCK ***/
ul.cat-tree li {
	padding-top: 4px;
	padding-bottom: 6px;
}
ul.cat-tree > li.rest {
	display: none;
}
ul.cat-tree span.counter {
	display: inline-block;
}
ul.cat-tree li ul {
	display: none;
}
ul.cat-tree li ul > li {
	padding-left: 25px!important;
}
ul.cat-tree li span.toggle {
	width: 12px;
	display: inline-block;
	vertical-align: top;
	cursor: pointer;
	font-size: 0.929em;
	-moz-user-select: none;
	-webkit-user-select: none;
}
.cat-toggle {
	background: #d4d4d4;
	height: 10px;
	margin-top: 3px;
	-moz-user-select: none;
	-webkit-user-select: none;
	cursor: pointer;
	line-height: 2px;
	text-align: center;
}
section.side_block > span.expander {
	width: 18px;
	height: 18px;
	background: url('../img/gallery.png') right -119px no-repeat;
	cursor: pointer;
	-moz-user-select: none;
	-webkit-user-select: none;
	display: inline-block;
	vertical-align: top;
	margin-top: 3px;
	margin-left: 10px;
}
section.side_block > span.expander.active {
	background-position: 0 -119px;
}

ul.cat-tree li ul.sub-cats {
	margin-top: 5px;
}
div.filter-area ul > li,
div.other_filters_tmp ul > li {
    padding: 0 0 10px 0;
}
div.cat-tree-cont.limit-height {
	max-height: 370px!important;
}
/*** CATEGORIES TREE BLOCK END ***/

/*** STATISTICS BLOCK ***/
table.stats {
	margin-bottom: 0!important;
	border-spacing: 2px;
	border-collapse: separate;
	margin: 0 0 5px;
	table-layout: fixed;
}
table.stats td.column,
table.stats td.counter {
	white-space: nowrap;
	text-align: center;
}
table.stats td.counter {
	background: #f4f4f4;
}
table.stats td.divider {
	width: 5px;
	text-align: center;
	padding: 0 5px;
}
table.stats td.dotted {
	background: #f4f4f4;
	padding: 2px 5px 4px;
}
table.stats td.dotted a {
	display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;	
}
section > div > table.stats:last-child {
	margin-bottom: 0;
}
/*** STATISTICS BLOCK END ***/

/*** STEPS ***/
ul.steps {
	/*border: 2px #e9e9e9 solid;*/
	box-shadow: inset 0 0 0 2px #e1e1e1;
	height: 44px;
	margin: 0 0 25px 0;
	white-space: nowrap;
	overflow: hidden;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
ul.steps > li {
	display: inline-block;
	height: 44px;
	line-height: 44px;
	text-align: center;
	position: relative;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
ul.steps > li a {
	cursor: default;
	margin: 0 0 0 15px;
}
ul.steps > li.past a {
	cursor: pointer;
}
ul.steps > li.past,
ul.steps > li.current {
	background: #e1e1e1;
}
ul.steps > li:not(.past) a {
	color: #5c5c5c;
	box-shadow: none;
}
ul.steps > li:not(:last-child):not(.past):after,
ul.steps > li:not(:last-child):not(.past):before {
	left: 100%;
	top: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}
ul.steps > li:not(:last-child):not(.past):after {
	border-color: transparent;
	border-left-color: #f2f2f2;
	border-width: 20px 0 20px 10px;
	margin-top: -20px;
}
ul.steps > li:not(:last-child):not(.past):before {
	border-color: transparent;
	border-left-color: #e1e1e1;
	border-width: 24px 0 24px 13px;
	margin-top: -24px;
}
ul.steps > li.current:after {
	display: none;
}
/*** STEPS END ***/

/*** ADD LISTING ***/
/* category selector */
ul.select-type {
	margin: 15px 0 0;
}
ul.select-type > li {
	display: inline-block;
	margin: 0 30px 0 0;
}
ul.select-category {
	white-space: nowrap;
	margin-top: 15px;
	width: 100%;
	float: left;
	display: block;
	border: 1px solid #aaa;
	padding-top: 30px;
padding-bottom: 10px;
}
ul.select-category > li > div {
    display: inline-block;
    float: left;
    margin-bottom: 15px;
    margin-right: 10px !important;
    text-align: center;
    width: 100%;
}

ul.select-category select {
	height: auto;
	min-height: 30px;
	width: 40%;
	
}
ul.select-category > li > div:last-child {
	margin-right: 0;
}
ul.select-category select option {
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}
ul.select-category span.tmp-category {
	display: block;
	white-space: normal;
	padding: 10px 0 0 0;
}
/* category selector end */

/* plans */
div.plans-container {
    width: 100%;
	float: left;
}
ul.plans {
	display: block;
}
div.plans-container:not(.mCustomScrollbar) {
	border-bottom: 2px #e1e1e1 solid;
	padding-bottom: 20px;
}
ul.plans > li {
	display: block;
    position: relative;
    max-width: 31.33333%;
	width: 31.33333%;
	float: left;
	margin-right: 2%;
}
ul.plans > li > div.frame {
    padding-bottom: 10px;
	display: block;
	width: 100%;
	float: left;
    margin-bottom: 80px;
}
ul.plans > li > div.frame:not(.disabled) {
	cursor: pointer;
}
ul.plans > li:first-child > div.frame {

}
ul.plans > li:last-child > div.frame {

}
ul.plans div.frame > span {
	display: block;
	text-align: center;
}
ul.plans span.description {
    position: absolute;
    bottom: -9px;
    left: 50%;
    margin-left: -9px;
    z-index: 1;
}
ul.plans span.description img {
	margin: 0;
}
ul.plans span.name {
	color: #393939;
	font-size: 1.571em;
	font-weight: 200;
	padding: 10px 0 0 0;
	height: 70px;
}
ul.plans span.price {
	color: #3a3a3a;
	font-size: 2.429em;
	font-weight: normal;
	padding: 0 0 32px;
}
ul.plans span.type {
	color: #3a3a3a;
	font-size: 1.286em;
	padding: 0 0 10px;
	font-weight: 400;
}
ul.plans span.count {
	color: #3a3a3a;
	font-size: 1.143em;
	padding: 0 0 10px;
}
ul.plans > li > div.frame div.selector {
	width: 100%;
	float: left;
	padding: 10px;
}
ul.plans > li > div.frame div.selector > div {
  
}
ul.plans.with-featured li div.frame,
ul.plans.with-subscription li div.frame {
    margin-bottom: 0;
}
ul.plans.with-subscription.with-featured li div.frame {
    margin-bottom: 10px;
}
ul.plans .plan {
	margin-bottom: 2%;
}
ul.plans.more-5 li {
    -webkit-flex: 0 0 205px;
    -ms-flex: 0 0 205px;
    flex: 0 0 205px;
    width: 205px;
}
/* plans end */

/* authorization */
div.auth {
	background: white;
	padding: 20px 20px 22px;
	margin: 10px 0 5px 0;
	max-width: 700px;
}
div.auth > div.cell {
	width: 43%;
	display: inline-block;
	vertical-align: top;
	text-align: center;
}
div.auth > div.cell > div {
	text-align: left;
	display: inline-block;
	margin: 0 auto;
}
div.auth > div.divider {
	width: 14%;
	font-size: 1.143em;
	padding-top: 95px;
	display: inline-block;
	vertical-align: top;
	text-align: center;
}
div.auth div.caption {
	font-weight: 600;
	color: #2b2b2b;
}
div.auth div.name {
	padding: 15px 0 5px;
}
/* authorization end */

/* tree */
div.tree ul {
	display: none;
	padding: 2px 0 2px 15px;
}
div.tree ul.first {
	display: block;
	padding: 0 0 0 5px;
}
div.tree ul li {
	padding: 2px 0;
}
div.tree ul li > img {
	width: 9px;
	height: 10px;
	background: url('../img/gallery.png') -2px -1825px no-repeat;
	margin: 0 3px 0 0;
	cursor: pointer;
	vertical-align: super;
}
div.tree ul li img.opened {
	background-position: -2px -1837px;
}
div.tree ul li img.no_child {
	background-position: 2px -1851px;
	width: 12px;
	margin: 0;
	cursor: default;
}
div.tree ul li.locked > a,
div.tree ul li.locked > label {
	background: url('../img/gallery.png') right -1865px no-repeat;
	padding: 1px 15px 0 0;
	text-decoration: none;
}
span.tmp_input span {
	position: relative;
}
span.tmp_input input[type=text] {
	vertical-align: top;
	width: 130px;
}
span.tmp_input input[type=button] {
	height: 37px;
	margin: 0 0 0 5px;
	line-height: 37px;
	padding-right: 13px;
	padding-left: 13px;
}
#crossed_selected {
	padding: 0 0 15px;
}
#crossed_selected li {
	list-style: disc;
	margin: 0 0 0 21px;
	padding: 1px 0;
}
#crossed_selected li.first {
	list-style: none;
	margin: 0;
}
span.tree_loader {
	background: url('../img/tree_loader.gif') center center no-repeat;
	padding: 0 7px;
	vertical-align: super;
	display: none;
	font-size: 10px;
	margin: 0 0 0 4px;
}
/* tree end */

/* file upload */
label.upload {
	position: relative;
	overflow: hidden;
	display: inline-block;
}
label.upload input,
span.draft input {
	position: absolute;
	top: 0;
	right: 0;
	margin: 0;
	border: solid transparent;
	border-width: 0 0 100px 200px;
	opacity: 0;
	filter: alpha(opacity=0);
	-o-transform: translate(250px, -50px) scale(1);
	-moz-transform: translate(-300px, 0) scale(4);
	direction: ltr;
	cursor: pointer;
	height: 100px;
}
.files canvas,
.files div.canvas > div {
	display: block;
	width: 160px!important;
	height: 110px!important;
	background: #f5f5f5;
}
div#fileupload img.thumbnail {
	width: 160px;
	height: 110px;
	background: #f5f5f5;
}
div#fileupload span.active,
div#fileupload span.hover {
	position: relative;
	display: inline-block;
	margin: 0 30px 30px 0;
	vertical-align: top;
	width: 160px;
	height: 140px;
	background: none;
	padding: 0;
}
.template-download img.thumbnail:hover {
	box-shadow: 0 0 0 2px #0e5486;
}

div#fileupload span.draft {
	width: 160px;
	height: 110px;
	margin: 0 0 20px 0;
	font-size: 0.929em;
	text-align: center;
	cursor: pointer;
	display: inline-block;
    overflow: hidden;
    position: relative;
    vertical-align: top;
    background: #e9e9e9;
}
div#fileupload span.draft > span {
	display: block;
}
div#fileupload span.draft > span.icon {
	width: 40px;
	height: 28px;
	background: url('../img/gallery.png') center -861px no-repeat;
	margin: 18px auto 15px;
}

div#fileupload {
	padding: 15px 0 10px 0;
	-moz-user-select: none;
	-webkit-user-select: none;
}
div#fileupload > form {
	margin-left: 2px;
}
div#fileupload span.active {
	color: inherit!important;
	font-size: inherit!important;
}
div#fileupload span.allowed {
	display: block;
}
div#fileupload span.progress {
	top: 95px;
    display: inline-block;
    height: 15px;
	position: absolute;
    width: 100%;
	background: none;
	margin: 0;
	opacity: 0.4;
	filter: "alpha(opacity=40)"; -ms-filter: "alpha(opacity=40)";
}
div#fileupload span.progress div {
	height: 15px;
	background: #e42d2d!important;
	border-radius: 0!important;
	border: 0!important;
}
div#fileupload span.hover,
ul.thumbnails li.hover {
	background: #fbdede;
}
div#fileupload div.photo_navbar {
	height: 25px;
	position: relative;
	padding: 6px 0 0 0;
}
div#fileupload div.photo_navbar span.primary input {
	display: block!important;
	margin-top: 4px;
}
img.delete,
img.cancel {
    width: 17px;
    height: 17px;
    background: url('../img/gallery.png') right -489px no-repeat;
    cursor: pointer;
    position: absolute;
    bottom: -33px;
    right: 0;
    opacity: 0.7;
    filter: "alpha(opacity=70)"; -ms-filter: "alpha(opacity=70)";
}
#area_video img.delete,
#area_video img.cancel {
    bottom: -23px;
}
div#fileupload img.manage,
div#fileupload img.delete,
div#fileupload img.cancel,
div#fileupload img.crop {
	width: 17px;
	height: 17px;
	background: url('../img/gallery.png') 0 -489px no-repeat;
	cursor: pointer;
	position: absolute;
	right: 30px;
	top: 10px;
	opacity: 0.7;
	filter: "alpha(opacity=70)"; -ms-filter: "alpha(opacity=70)";
}
div#fileupload img.delete,
div#fileupload img.cancel {
	background-position: right -489px;
	right: 0px
}div#fileupload img.crop {
	background-position: 0 -513px;
	right: 62px
}
div#fileupload img:hover {
	opacity: 1;
	filter: "alpha(opacity=100)"; -ms-filter: "alpha(opacity=100)";
}
.template-download img.thumbnail,
.move {
	cursor: move;
}
.pointer {
	cursor: pointer!important;
}
span.suspended canvas {
	box-shadow: 0 0 0 2px #e36565;
}

.fade {
	opacity: 0;
	transition: opacity 0.15s linear;
}
.fade.in {
	opacity: 1;
}
.fileupload-loading {
	display: none;
	background: red;
}
/* file upload end */

/* video */
ul.thumbnails {
	margin-left: 2px;
}
ul.thumbnails li {
	display: inline-block;
	vertical-align: top;
	margin: 0 15px 30px 0;
    position: relative;
}
ul.thumbnails li img.item {
	width: 160px;
	height: 110px;
	background: #f5f5f5;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: auto 100%
}
ul.thumbnails li img.item:hover {
	box-shadow: 0 0 0 2px #0e5486;
}
ul.thumbnails li.hover {
	width: 160px;
	height: 110px;
	background: #fbdede;
}
ul.thumbnails li div.video_navbar {
	height: 16px;
	padding-top: 10px;
	text-align: right;
}
/* video end */

/* payment gateways */
ul#payment_gateways li {
	display: inline-block;
	width: 120px;
	height: 85px;
	text-align: center;
	padding: 15px 0 0 0;
	margin: 0 10px 10px 0;
	box-shadow: inset 0 0 0 2px #e9e9e9;
}
ul#payment_gateways li.active,
ul#payment_gateways li:hover {
	background: #e9e9e9;
}
ul#payment_gateways li p {
	padding: 5px 0 0 0;
}
ul#payment_gateways li input {
	opacity: 1;
	filter: "alpha(opacity=100)"; -ms-filter: "alpha(opacity=100)";
	position: relative;
	width: auto;
	height: auto;
}
/* payment gateways end */
/*** ADD LISTING END ***/

/*** REGISTRATION ***/
/* password strange control */
div.password_strength {
	padding: 0 0 0 10px;
}
div.password_strength div.scale {
	background: #dfdfdf;
	width: 71px;
	height: 7px;
	position: relative;
}
div.password_strength div.scale div.color {
	height: 7px;
	width: 0;
}
div.password_strength div.scale div.red {
	background: #ed2f0b;
}
div.password_strength div.scale div.green {
	background: #23a50c;
}
div.password_strength div.scale div.yellow {
	background: #ebcc00;
}
div.password_strength div.scale div.shine {
	width: 0;
	height: 7px;
	position: absolute;
	top: 0;
	left: 0;
}
div.area_profile div.notice {
	padding: 7px 0 10px;
}
div.area_profile div.options {
	padding-top: 10px;
}
div.area_profile div.field img.qtip {
	margin-top: 1px;
}
/* password strange control end */

span.fail_field,
span.success_field {
	display: none;
}
/*** REGISTRATION END ***/

/*** MAP AMENITY ***/
div.flgServicesArea {
	position: absolute;
	z-index: 100000;
	bottom: 23px;
	right: 45px;
	background: rgba(255, 255, 255, 0.7);
	padding: 5px 8px;
	overflow: hidden;
	
	-moz-user-select: none;
	-webkit-user-select: none;
	border: 1px #b8b8b8 solid;
}
div.flgServicesArea ul li input {
	margin-right: 24px;
}
div.flgServicesArea div.caption {
    font-size: 1em!important;
    font-weight: normal!important;
    padding: 0!important;
    margin: 0!important;
}
div.flgServicesArea span.fkgSlide {
	cursor: pointer;
}
div.flgServicesArea ul {
	padding: 5px 0 10px 0;
	margin: 0;
}
div.flgServicesArea ul li {
	padding: 5px 0;
	background-position: 18px 6px!important;
}
div.flgServicesArea ul li label span {
	margin: -1px 25px 0 0;
}

div.modal_content div.flgServicesArea {
	right: 105px;
}
/*** MAP AMENITY END ***/

/*** MODAL WINDOW ***/
#modal_mask {
	background: rgba(0,0,0,0.6);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1005;

	background: url('../img/blank0.4.png')\9;
}
.modal_block {
	position: absolute;
	left: 50%;
	margin-left: -176px;
	width: 340px;
	height: 230px;
	background: white;
	border: 2px #0e5486 solid;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.75);
}
.modal_block.fullscreen {
	position: fixed;
	left: 0;
	top: 0;
	margin: 0;
}
.modal_block.fullscreen .gmnoprint {
	margin-right: 60px!important;
}
.modal_block div.inner div.close {
	position: absolute;
	top: 5px;
	right: 0;
	width: 40px;
	height: 40px;
	cursor: pointer;
}
.modal_block div.inner div.close > div {
	width: 14px;
	height: 14px;
	margin: 11px;
	background: url('../img/gallery.png') right -469px no-repeat;
	opacity: 0.7;
	filter: "alpha(opacity=70)"; -ms-filter: "alpha(opacity=70)";
}
.modal_block div.inner div.close:hover > div {
	opacity: 1;
	filter: "alpha(opacity=100)"; -ms-filter: "alpha(opacity=100)";
}
.modal_block div.inner div.modal_content {
	padding: 25px 50px 25px 30px;
	position: relative;
}
.modal_block.fullscreen div.inner,
.modal_block.fullscreen div.inner > .modal_content {
	width: 100%;
	height: 100%;
	overflow: auto;
}
.modal_block.fill-edge div.inner div.modal_content {
	padding: 0;
}
#map_fullscreen {
	width: 100%;
	height: 100%;
}
.modal_block div.inner div.caption,
.modal_block div.inner div.caption_padding {
	color: #2b2b2b;
	font-size: 1.143em;
	padding: 0 0 20px;
	font-weight: bold;
	margin-top: -7px;
}
.modal_block div.inner div.caption_padding {
	padding: 0 0 20px 70px;
}
.modal_block div.inner div.warning,
.modal_block div.inner div.notice {
	background: url('../img/gallery.png') -20px -1594px no-repeat;
	padding: 0 0 0 30px;
	margin: 0 0 20px;
}
.modal_block div.inner div.notice {
	background-position: -21px -1346px;
}
.modal_block div.prompt {
	padding: 20px 0 0 0;
}
.modal_block div.prompt input {
	margin: 0 15px 0 0;
}
.modal_block div.submit-cell div.name {
	width: 80px!important;
	padding-right: 10px;
}
/*** MODAL WINDOW END ***/

/*** NOTIFICATIONS ***/
div.notification {
	min-height: 45px;
	position: absolute;
	top: 0;
	width: 576px;
	left: 50%;
	margin-left: -288px;
	z-index: 100;
}
div.notification > div {
	background: rgba(0,0,0,.3);
	min-height: 46px;
	color: white;
	position: relative;
	font-size: 0.929em;
	font-weight: 300;
	padding: 3px;
}
div.notification > div > div.message {
	background: #31c26b;
}
div.notification.fixed {
	position: fixed;
}
div.notification.done {
	top: 0;
	transition: top 0.3s ease;
	border: none;
}
div.notification.top {
	z-index: 1200;
	position: fixed;
	top: 0;
}
div.notification.error > div > div.message {
	background: #f2695e;
}
div.notification.warning > div > div.message {
	background: #dab500;
}
div.notification > div > div.message {
	padding: 14px 45px 14px 18px;
	word-wrap: break-word;
	line-height: 1.640em;
	font-size: 1.143em;
}
div.notification ul {
	padding: 0 0 0 20px;

}
div.notification ul > li {
	list-style: circle;
}
div.notification ul > li:not(:first-child) {
	list-style: circle;
	padding: 4px 0 0 0;
}
div.notification div.close-black {
	top: 3px;
	right: 3px;
}
/*** NOTIFICATIONS END ***/

/*** MY LISTINGS ***/
.my-listings > article div.picture {
	margin: 0!important;
}
.my-listings > article {
	margin: 0 0 15px 0!important;
	padding: 0 0 15px 0;
	min-height: 95px;
	border-bottom: 2px #e6e6e6 solid;
	text-transform: none;
}
.my-listings > article:last-child {
	margin-bottom: 0;
}
.my-listings > article > div.nav > div {
	display: inline-block;
	vertical-align: top;
	margin-right: 30px;
}
.my-listings > article > div:last-child {
	margin-right: 0;
}
.my-listings div.title {
	font-size: 1.143em!important;
	font-weight: 500!important;
	padding-bottom: 15px;
}
.my-listings div.navigation ul > li {
	padding: 0 0 12px 0;
}
.my-listings div.navigation ul > li:last-child {
	padding: 0;
}
.my-listings div.navigation ul > li select {
	width: 100%;
}
.my-listings div.navigation ul > li a {
	position: relative;
	display: inline-block;
	padding: 0 0 0 25px;
}
.my-listings div.navigation ul li.nav-icon > a:before {
	content: '';
	background-image: url('../img/gallery.png');
	background-repeat: no-repeat;
	background-position: right -535px;
	width: 16px;
	height: 16px;
	left: 0;
	top: 2px;
	position: absolute;
	opacity: 0.5;
	filter: "alpha(opacity=50)"; -ms-filter: "alpha(opacity=50)";
}
.my-listings div.navigation ul li.nav-icon > a.add-video:before {
	background-position: right -513px;
}
.my-listings div.navigation ul li.nav-icon > a.edit:before {
	background-position: 0 -488px;
}
.my-listings div.navigation ul li.nav-icon > a.unsubscription:before {
	background-position: right -621px;
}
.my-listings div.navigation ul li.nav-icon > a.delete:before {
	background-position: right -489px;
}
.my-listings div.navigation ul li.nav-icon > a:hover:before {
	opacity: 0.8;
	filter: "alpha(opacity=80)"; -ms-filter: "alpha(opacity=80)";
}
.my-listings div.stat ul > li {
	padding: 0 0 8px 0;
	color: black;
}
.my-listings div.stat ul > li.switcher-controll {
	padding-bottom: 12px;
}
.my-listings div.stat ul > li span.name {
	color: #666666;
}
.my-listings div.stat ul > li span.name:after {
	content: ':';
}
.delete.icon {
	display: inline-block;
	width: 16px;
	height: 16px;
	background: url('../img/gallery.png') right -489px no-repeat;
	cursor: pointer;
	opacity: 0.5;
	filter: "alpha(opacity=50)"; -ms-filter: "alpha(opacity=50)";
}
.delete.icon:hover {
	opacity: 0.8;
	filter: "alpha(opacity=80)"; -ms-filter: "alpha(opacity=80)";
}
.crop.icon {
	display: inline-block;
	width: 16px;
	height: 16px;
	background: url('../img/gallery.png') 0 -513px no-repeat;
	cursor: pointer;
	opacity: 0.5;
	filter: "alpha(opacity=50)"; -ms-filter: "alpha(opacity=50)";
}
.crop.icon:hover {
	opacity: 0.8;
	filter: "alpha(opacity=80)"; -ms-filter: "alpha(opacity=80)";
}
/*** MY LISTINGS END ***/

/*** MY BANNERS ***/
body.my-banners-page .my-listings > article > div {
	display: inline-block;
	vertical-align: top;
	width: 190px;
	margin-right: 30px;
}
body.my-banners-page .my-listings div.title {
	padding-top: 5px;
}
/*** MY BANNERS END ***/

/*** HOME PAGE GALLERY ***/
div.featured_gallery {
	margin: 0 0 30px 0;
	position: relative;
}
div.featured_gallery div.preview {
	height: 440px;
	background: white;
	position: relative;
	-moz-user-select: none;
	-webkit-user-select: none;
}
div.featured_gallery div.preview:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 0;

	width: 30px;
	height: 30px;
	background-color: #0e5486;

	margin: -15px 0 0 -15px;
	-webkit-animation: rotateplane 1.2s infinite ease-in-out;
	animation: rotateplane 1.2s infinite ease-in-out;
}
@-webkit-keyframes rotateplane {
  0% { -webkit-transform: perspective(120px) }
  50% { -webkit-transform: perspective(120px) rotateY(180deg) }
  100% { -webkit-transform: perspective(120px) rotateY(180deg)  rotateX(180deg) }
}

@keyframes rotateplane {
  0% { 
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg) 
  } 50% { 
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg) 
  } 100% { 
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}
div.featured_gallery div.preview > a > div {
	height: 100%;
	display: none;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	position: relative;
}
div.featured_gallery div.preview > span {
	position: absolute;
	width: 48px;
	height: 48px;
	background: #0e5486;
	left: 0;
	top: 50%;
	margin: -24px 0 0 -7px;
	border: 2px white solid;
	border-radius: 3px;
	cursor: pointer;

	-moz-user-select: none;
	-webkit-user-select: none;
}
div.featured_gallery div.preview > span:hover {
	background: #ff6868;
}
div.featured_gallery div.preview > span:after {
	content: '';
	width: 14px;
	height: 28px;
	position: absolute;
	top: 8px;
	left: 14px;
	background: url('../img/gallery.png') left -1578px no-repeat;
}
div.featured_gallery div.preview > span.next {
	left: auto;
	right: 0;
	margin: -21px -7px 0 0;
}
div.featured_gallery div.preview > span.next:after {
	background-position: right -1578px;
	left: auto;
	right: 14px;
}

div.featured_gallery ul.featured {
	white-space: nowrap;
	overflow: hidden;
	margin-bottom: 0;
	padding-top: 15px;
	margin-top: -15px;
}
div.featured_gallery ul.featured > li {
	float: none;
	display: inline-block;
	vertical-align: top;
	margin: 20px 0 0 0;
	position: relative;
}
div.featured_gallery ul.featured > li ul.ad-info {
	display: none;
}
div.featured_gallery ul.featured > li img {
	width: 100%;
	cursor: pointer;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
div.featured_gallery ul.featured > li:not(.no-picture) img {
	filter: brightness(0.7) contrast(110%);
	-webkit-filter: brightness(0.7) contrast(110%);
	-moz-filter: brightness(0.7) contrast(110%);
	-ms-filter: brightness(0.7) contrast(110%);
	-o-filter: brightness(0.7) contrast(110%);
	filter: url(desaturate.svg#greyscale);
	filter: gray;
}
div.featured_gallery ul.featured > li a {
	color: white;
}
div.featured_gallery ul.featured > li:last-child img {
	margin: 0;
}
div.featured_gallery ul.featured li.active ul.ad-info {
	display: block;
	position: absolute;
	top: 0;
	left: 15px;
	right: 15px;
	bottom: 0;
	background: #0e5486;
	color: white;
	padding: 8px 13px;
}
div.featured_gallery ul.featured li.active:after {
	content: '';
	left: 50%;
	top: -10px;
	position: absolute;

	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 10px 10px 10px;
	border-color: transparent transparent #0e5486 transparent;
}
div.featured_gallery ul.featured li.active img {
	filter: none;
	-webkit-filter: none;
	-moz-filter: none;
	-ms-filter: none;
	-o-filter: none;
	filter: none;
	filter: none;
	cursor: default;
}
div.featured_gallery ul.featured li.title {
	display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 35px;
    padding-bottom: 0;
    white-space: normal!important;
    margin-bottom: 8px;
}
div.featured_gallery ul.featured li.fields {
	color: white;
	text-transform: none;
	font-size: inherit;
}
div.featured_gallery ul.featured li.price_tag {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
}
div.featured_gallery ul.featured li.price_tag span {
	font-size: 1.571em;
	display: inline-block;
	padding: 0 13px 10px;
}
/*** HOME PAGE GALLERY END ***/

/*** PLUGINS CUSTOM ***/
#geo_autocomplete {
	width: 100%!important;
}
.geo_autocomplete li.item {
	padding: 5px 13px!important;
	height: auto!important;
}
.geo_autocomplete li.item:hover {
	background: #eeeeee;
}
.geo_autocomplete li.item {
	color: #777777;
	font-family: 'Open Sans', sans-serif !important!important;
	font-size: 1em!important;
}
.geo_autocomplete li.item > b {
	color: #222222;
}
#vs_geo_interface {
	margin-top: 0!important;
	width: 100%;
}
ul.gf-list {
	margin: 0!important;
	padding: 0!important;
	max-height: 217px!important;
}
div.gf-caption {
	padding: 15px 0 7px 0!important;
}

a.reportBroken {
	color: #d04525;
}

div#compare_listings_tab {
	max-width: 145px!important;
}
div#compare_listings_area {
	width: 270px!important;
}
.compare-icon > span,
section#listings ul.nav-column > li.add_to_compare span.icon {
	background: url('../img/gallery.png') right -22px no-repeat!important;
}
.compare-icon.remove > span,
section#listings ul.nav-column > li.remove_from_compare span.icon {
	background: url('../img/gallery.png') right -40px no-repeat!important;
}

#lnp_container {
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
}
#lnp_container > li {
	position: absolute;
	top: 7px;
	left: 15px;
}
#lnp_container > li.link {
	display: none;
}
#lnp_container li.nav a {
	display: block;
	font-size: 0.929em;
	height: 24px;
	line-height: 24px;
	padding: 0 0 0 16px;
}
#lnp_container li.nav a:before {
	content: '';
	position: absolute;
	width: 6px;
	height: 10px;
	left: 0;
	top: 8px;
	background: url('../img/gallery.png') -26px -8px no-repeat;

	opacity: 0.7;
	filter: "alpha(opacity=70)"; -ms-filter: "alpha(opacity=70)";
}
#lnp_container li.next {
	left: auto;
	right: 15px;
}
#lnp_container li.next a {
	padding: 0 16px 0 0;
}
#lnp_container li.next a:before {
	left: auto;
	right: 0;
	background-position: -20px -8px;
}
#lnp_container li:hover a:before {
	opacity: 1;
	filter: "alpha(opacity=100)"; -ms-filter: "alpha(opacity=100)";
}

li#listing_rating_dom {
	padding: 7px 0 12px!important;
	text-transform: none;
}

/* field bound boxes */
section.fieldBoundBoxes > div {
	padding-bottom: 10px!important;
}
ul.field-bound-box {
	margin-bottom: -2px;
}
ul.field-bound-box:not(.list) {
	
}
ul.field-bound-box:not(.list) > li {
	display: inline-block;
	padding-bottom: 20px;
	text-align: center;
}
ul.field-bound-box > li > a {
	display: inline-block;
	box-shadow: none;
}
ul.field-bound-box > li.empty {
	opacity: 0.5;
}
ul.field-bound-box:not(.list) > li span.count {
	display: block;
	font-size: 1.286em;
	color: #141414;
	padding: 5px 0 0 0;
}
ul.field-bound-box:not(.list) > li:not(.empty):hover span.count {
	color: #0e5486;
}
ul.field-bound-box > li.left img {
	float: left;
}
ul.field-bound-box > li.left span.count {
	overflow: hidden;
	padding: 2px 0 0 5px;
}
ul.field-bound-box > li.right img {
	float: right;
}
ul.field-bound-box > li.right span.count {
	overflow: hidden;
	padding: 2px 5px 0 0;
}

ul.field-bound-box.list > li {
	width: 48%;
	margin-right: 4%;
	display: inline-block;
}
ul.field-bound-box.list > li:nth-child(2n) {
	margin-right: 0;
}
ul.field-bound-box.list > li > a {
	padding: 0 0 5px;
}
ul.field-bound-box.list > li > a > span.count {
	font-size: 1.143em;
	padding: 0 0 0 5px;
	color: #797979;
}
/* field bound boxes */

#loan_reset_form {
	content: '';
	display: inline-block;
	width: 18px;
	height: 16px;
	background: url('../img/gallery.png') 0 -621px no-repeat;
	margin-left: 20px;
	cursor: pointer;

	opacity: 0.7;
	filter: "alpha(opacity=70)"; -ms-filter: "alpha(opacity=70)";
}
#loan_reset_form:hover {
	opacity: 1;
	filter: "alpha(opacity=100)"; -ms-filter: "alpha(opacity=100)";
}

ul.comments li > div:after,
ul.comments li > div:before {
	content: '';
	bottom: -15px;
	left: 17px;
	height: 0;
	width: 0;
	position: absolute;
	
	border-style: solid;
	border-width: 0 15px 15px 0;
	border-color: transparent white transparent transparent;
}

ul.comments li > div:before {
	border-color: transparent #e9e9e9 transparent transparent!important;
	border-width: 0 17px 17px 0!important;
	left: 16px!important;
	bottom: -18px!important;
}

.jslider .jslider-bg .v {
	background-color: #0e5486!important;
}

/* slider */
div.slider {
	overflow: hidden;
	position: relative;
	-moz-user-select: none;
	-webkit-user-select: none;
}
/* horizontal mode */
div.slider > div.container {
	margin: 0 20px;
	overflow: hidden;
	white-space: nowrap;
	font-size: 0;
}
div.horizontal div.prev,
div.horizontal div.next {
	width: 20px;
	height: 40px;
	position: absolute;
	top: 50%;
	left: -40px;
	margin-top: -38px;
	cursor: pointer;
}
div.carousel.horizontal div.next {
	left: auto;
	right: -40px;
}
div.carousel.horizontal .carousel_block ul > li {
    clear: none;
}
div.horizontal div.prev:before,
div.horizontal div.next:before {
	content: '';
	position: absolute;
	width: 12px;
	height: 22px;
	top: 10px;
	left: 4px;
	background: url('../img/gallery.png') 0 -366px no-repeat;
}
div.horizontal div.next:before {
	background-position: -12px -366px;
	left: auto;
	right: 3px;
}
/* vertical mode */
div.vertical {
	padding: 25px 0!important;
}
div.vertical div.prev,
div.vertical div.next {
	width: 40px;
	height: 15px;
	position: absolute;
	top: 0;
	left: 50%;
	margin-left: -20px;
	cursor: pointer;
}
div.vertical div.next {
	background-position: 0 -1525px;
	top: auto;
	bottom: 0;
}
div.vertical div.prev:before,
div.vertical div.next:before {
	content: '';
	position: absolute;
	width: 18px;
	height: 10px;
	top: 2px;
	left: 11px;
	background: url('../img/gallery.png') 0 -663px no-repeat;
}
div.vertical div.next:before {
	background-position: right -663px;
	top: 4px;
}
/* slider end */

#booking_calendar div.horizontal > div.prev {
	left: 0;
}
#booking_calendar div.horizontal > div.prev:before {
	left: 0!important;
	top: 3px!important;
}
#booking_calendar div.horizontal > div.next {
	left: auto;
	left: right;
}
#booking_calendar div.horizontal > div.next:before {
	left: auto!important;
	right: 0!important;
	top: 3px!important;
}

div.banner {
	display: inherit!important;
}

#recaptcha_response_field {
	height: 20px;
}
body > iframe[src='about:blank'] {
	display: none;
}

div#compare_listings_tab {
	background: url('../img/blank0.4.png')\9;
}

.testimonials .side_block .header {
	height: 34px;
}
.testimonials .side_block > div:last-child {
	margin-top: 21px;
}
.testimonials .side_block .header > p {
	color: #484848;
	font-size: 1.786em;
	font-weight: 300;
}
.testimonials .side_block .header > a.add-testimonial {
	top: 7px;
}
.testimonials .area {
	font-style: normal!important;
	font-size: 0.929em!important;
	padding: 25px 30px 25px 60px!important;
}
.testimonials .area > div.quotes {
	top: 30px!important;
	left: 20px!important;
	width: 19px!important;
	height: 12px!important;
	background: url('../img/gallery.png') 0 -26px no-repeat!important;
}
.testimonials .bottom span.author {
	font-size: 13px;
	font-style: italic;
	font-weight: 400;
}
.testimonials .bottom {
	padding-left: 60px!important;
}
.testimonials .triangle {
	border-width: 0 25px 25px 0!important;
	left: 20px!important;
}

div#compare_listings_area {
	bottom: 48px!important;
}

div.cHorizontal ul.featured > li {
	max-width: 270px;
}
div.carousel div.carousel_block {
	margin: 0!important;
}
section#listings div.stat-line .comments_icon {
	padding: 0;
	background: none!important;
}
section#listings div.stat-line li.bids > a:after {
	background-position: right -675px;
}
#rv_listings div.rv_first,
#rv_listings div.rv_last {
    text-transform: none;
}
ul.comments_block div.dark {
	text-transform: none;
}

.jslider .jslider-bg .r,
.jslider .jslider-bg .l {
    background: #d4d4d4!important;
}
#currency_selector > span.default > span.symbol {
    font-size: 1.5em;
}
.testimonials .side_block .header > p {
	font-size: 1.286em!important;
	font-weight: inherit!important;
	color: inherit!important;
}
.testimonials .side_block .header > a.add-testimonial {
	top: 0!important;
}
.testimonials .side_block .header {
	max-height: 24px!important;
}
.testimonials .side_block > div:last-child {
    margin-top: 10px!important;
}
body a.reportBroken img,
body a.removeBroken img {
    background-image: url(../img/gallery.png) !important;
    background-position: 0 -790px !important;
}
body  a.removeBroken img {
    background-position: 0 -808px !important;
}
body #listings a.reportBroken img,
body #listings a.removeBroken img {
    margin-top: -1px;
}
/*** PLUGINS CUSTOM END ***/

/*** RESPONSIVE ***/
@-ms-viewport {
  width: device-width;
}
.point1 {
	width: 100%;
}

	section#controller_area {
		padding-bottom: 30px;
		width: 100%;
	}

/*** ALL DESKTOP VIEWS ***/
@media screen and (min-width: 992px) {
	div#header-banner {
		width: 728px;
		height: 90px;
		margin: auto;
	}
	section#main_container > div.inside-container {
		padding: 30px 0 50px;
	}
	section#controller_area {
		padding-bottom: 30px;
		width: 100%;
	}
	body.home-page section#main_container > div.inside-container aside.left {
		float: left;
	}
	div#header-banner > div.no-banner {
		line-height: 86px;
	}

	/* main menu */
	header.page-header.stick {
		transition: none;
	}
	section.main-menu nav {
		
	}
	section.main-menu ul.menu {
		white-space: nowrap;
		background: #0e5486;
		width: 100%;
		overflow: hidden;
	}
	section.main-menu div.mobile-menu-button {
		display: none;
	}
	section.main-menu ul.menu > li {
		display: inline-block;
		height: 100%;
		vertical-align: top;
        text-align: left;
	}
	section.main-menu ul.menu > li:first-child:not(.active) {
		padding-left: 0;
	}
	section.main-menu ul.menu > li:last-of-type:not(.active) {
		padding-right: 0;
	}
	section.main-menu ul.menu > li > a {
    display: block;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 15px !important;
    text-transform: uppercase;
}
	section.main-menu ul.menu > li > a:hover,
	ul#main_menu_more > li > a:hover,
	section.main-menu ul.menu > li.active > a {
		color: #e42d2d;
		box-shadow: none;
	}
	section.main-menu ul.menu > li.active {
		background: url(../img/main-bg.gif) repeat top center #f9f9f9;
		box-shadow: 0 -4px 0 0 #191919, 0 -6px 0 0 #e42d2d;
	}
	section.main-menu ul.menu > ol.more {
		display: inline-block;
		height: 100%;
		line-height: 50px;
		text-align: right;
	}
	section.main-menu ul.menu > ol.more > span {
		display: inline-block;
		padding: 0 15px;
		cursor: pointer;
		-moz-user-select: none;
		-webkit-user-select: none;
	}
	section.main-menu ul.menu > ol.more > span > span {
		width: 4px;
		height: 4px;
		background: white;
		display: inline-block;
		margin: 24px 2px 0 0;
		border-radius: 2px;
		vertical-align: top;
	}
	section.main-menu ul.menu > ol.more_active > span > span {
		background: #0e5486;
	}
	ul#main_menu_more {
		display: none;
		position: absolute;
		top: 148px;
		right: 0;
		padding: 5px 20px;
		background: #111111;
		z-index: 10;
		border-top: 0;
		text-align: left;
	}
	ul#main_menu_more > li {
		padding: 10px 0;
	}
	ul#main_menu_more > li > a {
		white-space: nowrap;
		text-decoration: none;
		box-shadow: none;
	}
	/* main menu end */
	
	section#content aside:last-of-type > section:not(.no-style):last-of-type > div {
		background: #e9e9e9;
	}
	/* sidebar block end */

	section.side_block span.expander {
		display: none;
	}
	section.categories-box ul.cat-tree > li.rest {
		display: none;
	}
	section.categories-box div.cat-tree-cont.limit-height {
		max-height: 360px;
	}

	.grid_navbar {
		margin-bottom: 30px;
	}

	ul.select-category select {

	}
	body.no-sidebar .advanced-search-form {
		width: 60%;
	}

	section.side_block ul.featured {
		text-align: center;
		margin: 0;
	}
	section.side_block ul.featured > li {
		width: 100%;
		padding-left: 0;
		padding-right: 0;
	}
	section.side_block ul.featured > li:last-child {
		margin-bottom: 0;
	}
	section.side_block ul.featured > li img {
		width: 100%;
		height: auto;
	}
	section.side_block ul.featured:not(.list) > li ul {
		width: 100%;
		padding: 10px 0 0 0;
		text-align: left;
		background: none;
	}
	section.side_block ul.featured:not(.list):not(.accounts) > li ul > li.fields {
		display: none;
	}
	body.view-details-page aside.left {
		float: right!important;
	}

	span.pills > label {
		width: auto!important;
	}

	section.side_block_search div.field:empty {
		min-height: 0;
	}

	div.submit-cell > div.field.checkbox-field,
	div.submit-cell > div.field.inline-fields {
		max-width: 600px;
	}

	.seller-short div.landscape ul.seller-info {
		padding: 0;
	}
	.seller-short div.landscape ul.seller-info > li.name {
		margin-top: 0;
	}
	.seller-short div.landscape ul.seller-info > li {
		padding-bottom: 5px;
	}
	.seller-short div.landscape ul.seller-info a.low {
		position: static;
		margin-top: 10px;
	}

	div.special-block .col-md-3 {
		width: 100%;
	}

	section.side_block table.table td.name {
		width: 45%;
	}
}
/*** LARGE DESKTOP VIEW ***/
@media screen and (min-width: 1200px) {
	.point1 {
		max-width: 1040px;
	}
	section.main-menu nav {
		
	}
	section.main-menu .main-nav {

	}

	a.category {
		font-size: 1.143em;
	}
	div.table-mode .search-form-cell {
		display: table-cell;
	}
	#search_area div.table-mode {
		display: table;
		width: 100%;
	}
	#search_area div.table-mode > form {
		display: table-row;
	}

	div.table-mode .search-form-cell.numeric-field,
	div.table-mode .search-form-cell.single-field {
		width: 10%;
	}
	div.table-mode .search-form-cell.checkbox-field {
		width: 15%;
	}
	div.table-mode .search-form-cell.submit {
		width: 8%;
	}

	section#listings div.picture > img {
    height: 155px;
    width: 220px;
}

	section.side_block ul.featured > li > a {
		float: left;
		box-shadow: none;
	}
	section.side_block ul.featured > li > a > img {
		width: 120px;
		height: 75px;
		margin-right: 20px;
	}
	section.side_block ul.featured > li > ul {
		padding: 0!important;
		overflow: hidden;
		width: auto!important;
	}
	section.side_block ul.featured > li > ul > li:first-child {
		margin-top: -2px;
	}

	section.account-info h3 {
		white-space: normal;
		max-width: 230px;
	}
	table.info td.name,
	div.table-cell.small > div.name {
		width: 110px;
		white-space: nowrap;
	}

	.seller-short ul.seller-info {
		min-width: 170px;
	}

	div.special-block section > div.clearfix {
		height: 230px;
	}
	div.special-block a.category {
		font-size: 1.214em;
	}
}
/*** LAPTOP VIEW ***/
@media screen and (width: 1280px) {
	
}
/*** MIDDLE DESKTOP VIEW ***/
@media screen and (min-width: 992px) and (max-width: 1199px) {
	.point1 {
		max-width: 980px;
	}
	section.main-menu nav {
		width: 100%;
	}
	.navbar .nav > li > a {
		padding: 8px 13.6px;
	}
	.shc-group ul.checkboxes > li {
		width: 100%!important;
	}

	section.side_block:not(.no-style) > div,
	section.content_block:not(.no-style) > div {
		padding: 18px 20px;
	}

	/* home page featured gallery */
	div.featured_gallery ul.featured {
		margin-left: -10px;
		margin-right: -10px;
	}
	div.featured_gallery ul.featured > li {
		padding-left: 10px;
		padding-right: 10px;
		margin-top: 15px;
	}
	div.featured_gallery ul.featured li.active ul.ad-info {
		padding: 5px 7px;
		left: 10px;
		right: 10px;
	}
	div.featured_gallery ul.featured li.price_tag span {
		padding: 0 7px 5px;
		font-size: 1.286em;
	}

	div.featured_gallery ul.featured li.active:after {
		border-width: 25px 0 0 25px;
		left: 10px;
		top: -25px;
	}
	/* home page featured gallery end */

	div.gallery > div#media {
		height: 406px;
	}
	div.gallery > div.thumbs {
		height: 86px;
	}
	div.gallery > div.thumbs > div.slider > ul > li img {
		width: 65px;
		height: 65px;
	}
	div.gallery > div.thumbs > div.prev,
	div.gallery > div.thumbs > div.next {
		width: 62px;
		height: 65px;	
	}
	div.gallery > div.thumbs > div.slider {
		margin: -23px 64px 0;
	}
	div.gallery > div.thumbs > div.prev:before {
		top: 21px;
		left: 25px;
	}
	div.gallery > div.thumbs > div.next:before {
		top: 21px;
		left: 27px;
	}

	div.table-cell > div.name {
		width: 140px;
	}

	section.account-info h3 {
		white-space: normal;
		max-width: 160px;
	}

	table.info td.name,
	div.table-cell.small > div.name {
		width: 75px;
	}

	.search-item.checkbox-field > .custom-input {
		width: 100%;
	}

	.seller-short ul.seller-info {
		min-width: 110px;
	}



	section#listings > article div.navigation-column {
		width: 150px;
	}
	section#listings ul.ad-info > li {
		margin-bottom: 4px;
	}

	/* page footer */
	nav.footer-menu {
		width: 70%;
	}
	nav.footer-menu > ul > li {
		width: 50%;
	}
	/* page footer end */
}
/*** ALL TABLET/DESKTOP VIEWS ***/
@media screen and (min-width: 768px) {
	/*** CATEGORIES TREE BLOCK ***/
	section.content_block ul.cat-tree li span.toggle {
		display: none;
	}
	/*** CATEGORIES TREE BLOCK END ***/
}
/*** ALL TABLET/MOBILE VIEWS ***/
@media screen and (max-width: 991px) {
	body header.page-header {
	}
	body header.page-header section.main-menu {

	}
	div#logo {
		margin-top: 0;
	}
	div#wrapper {

	}

	header.page-header > div > * > * {
		position: static;
	}
	div.kw-search {
		display: none;
	}

	section#controller_area:not(:empty) + aside {
		margin-top: 22px;
	}

	section.main-menu {
		padding-top: 10px;
	}
	section.main-menu div.point1 {
		/*position: relative;*/
	}
	section.main-menu nav.menu {
		float: right;
	}
	section.main-menu span.menu-button {
		float: right;
		display: inline-block;
		width: 38px;
		height: 38px;
		margin-left: 30px;
		cursor: pointer;
		position: relative;
	}
	section.main-menu span.menu-button > span {
		position: absolute;
		width: 20px;
		height: 4px;
		background: #0e5486;
		right: 0;
		top: 11px;
		border-radius: 2px;
		
		transition: background 0.3s ease;
	}
	section.main-menu span.menu-button > span:nth-child(2n) {
		top: 18px;
	}
	section.main-menu span.menu-button > span:last-child {
		top: 25px;
	}
	section.main-menu span.menu-button:hover > span {
		background: #c21515;
	}
	section.main-menu nav.menu ul.menu {
		display: none;

		background: #2b2b2b;
		position: absolute;
		top: 0;
		right: 0;
		z-index: 105;
		min-width: 230px;
		max-width: 305px;
		max-height: 100%;

		overflow: auto;
		-webkit-overflow-scrolling: touch;

		padding: 58px 22px 55px;
	}
	body.header-banner section.main-menu nav.menu ul.menu {
		top: 106px;
	}
	section.main-menu nav.menu ul.menu ol.more {
		margin-bottom: 30px;
		display: block!important;
	}
	section.main-menu nav.menu ul.menu > li > a {
		padding: 8px 0;
		display: inline-block;
	}
	section.main-menu nav.menu ul.menu > li > a:hover {
		color: #ff7e7e;
	}
	section.main-menu nav.menu ul.menu > li.active > a {
		color: white;
	}
	section.main-menu ul.menu span.mobile-menu-header {
		display: block;
		margin-bottom: 15px;
		position: relative;
	}
	section.main-menu span.mobile-menu-header > span:first-child {
		color: #6f6f6f;
		font-size: 1.286em;
	}
	section.main-menu span.mobile-menu-header > span:last-child {
		position: absolute;
		width: 25px;
		height: 32px;
		right: 0;
		top: -3px;
		cursor: pointer;
	}
	section.main-menu span.mobile-menu-header > span:last-child:before {
		content: '';
		position: absolute;
		width: 18px;
		height: 18px;
		left: 7px;
		top: 8px;
		background: url('../img/gallery.png') 0 -8px no-repeat;
		opacity: 0.7;
		filter: "alpha(opacity=70)"; -ms-filter: "alpha(opacity=70)";

		transition: opacity 0.3s ease;
	}
	section.main-menu span.mobile-menu-header > span:last-child:hover:before {
		opacity: 1;
		filter: "alpha(opacity=100)"; -ms-filter: "alpha(opacity=100)";
	}

	/* page footer */
	footer.page-footer > div {
		min-height: 80px;
		height: 80px;
		padding: 20px 0 0;
	}
	footer.page-footer .footer-menu,
	footer.page-footer .logo {
		display: none;
	}
	footer.page-footer .footer-data {
		padding-left: 20px;
	}
	.footer-data div.cp {
		max-width: none;
	}
	footer.page-footer span.scroll-top {
		top: 0px;
		left: 0px;
	}

	footer.page-footer div.social {
		width: auto;
	}
	footer.page-footer div.social div.buttons {
		display: none;
	}
	footer.page-footer div.social a.rss {
		margin: 0;
	}
	/* page footer end */

	section#main_container aside.left {
		display: block;
		width: auto;
		vertical-align: top;
		float: none;
	}
	body.view-details-page section#main_container section.seller-short {
		display: none;
	}

	section.side_block_search > h3 {
		color: #0e5486;
	}

	div.search-footer div.search-item {
		float: left;
	}
	div.search-footer div.align-button {
		text-align: right;
	}

	ul#messages_area > li > span {
		display: block;
	}

	a.category {
		font-size: 1.214em;
	}
}
/*** FIXED TABLET VIEW ***/
@media screen and (width: 768px) {
	section.main-menu nav.menu ul.menu {
		right: 0;
	}
}
/*** TABLET VIEW ***/
@media screen and (min-width: 768px) and (max-width: 991px) {
	.point1 {
		max-width: 720px;
	}
	section#listings > article div.navigation-column {
		width: 19%;
	}
	.short-info {
		width: 64% !important;
	}
	section.content_block {
		margin-bottom: 20px;
	}
	aside.middle section.content_block:last-child {
		margin-bottom: 0;
	}
	span.pills > label {
		width: auto!important;
	}
	div#header-banner {
		width: auto;
		height: auto;
	}
	div#header-banner > div.no-banner {
		line-height: 90px;
	}
	
	.copyright-container .col-sm-4 {
		width: 100%;
		text-align: center;
	}
	.copyright-container .col-sm-8 {
		width: 100%;
		text-align: center;
		padding-bottom: 20px;
	}
	.copyright-container .textwidget > p {
    text-align: center !important;
	}
	.footer-breadcrumbs {
		display: inline-block !important;
		margin: 0 auto !important;
		text-align: center;
		float: unset !important;
	}

	aside.bottom {
		margin-top: 20px;
	}
	/* home content block end */

	/* home page featured listings gallery */
	div.featured_gallery div.preview {
		height: 380px;
		margin-right: 145px;
		-moz-user-select: none;
		-webkit-user-select: none;
	}
	div.featured_gallery div.preview > span {
		display: none;
	}
	div.featured_gallery ul.featured {
		width: 140px;
		height: 380px;
		position: absolute;
		top: 0;
		right: 0;
		padding: 0 0 0 6px;
		margin: 0;
	}
	div.featured_gallery ul.featured > li {
		width: 100%;
		margin: 0;
		padding: 0;
		float: none;
		display: block;
	}
	div.featured_gallery ul.featured > li > img {
		margin-bottom: 2px;
	}
	div.featured_gallery ul.featured li.active ul.ad-info {
		left: 0;
		right: 0;
		bottom: 2px;
	    padding: 5px 7px;
	}
	div.featured_gallery ul.featured li.price_tag span {
		padding: 0 7px 5px;
	    font-size: 1.286em;
	}

	div.featured_gallery ul.featured li.active:after {
		border-width: 5px 6px 5px 0;
		border-color: transparent #0e5486 transparent transparent;
		top: 50%;
		left: -6px;
		margin: -2px 0 0 0;
	}
	/* home page featured listings gallery end */


	div.featured_gallery > ul.featured > li:nth-child(4n) {
		display: inherit;
	}

	section.seller-short > div > div.picture img {
		height: 92px;
	}

	section.side_block_search div.search-item {
		width: 48%;
		margin-right: 4%;
		display: inline-block;
		vertical-align: top;
	}
	section.side_block_search div.search-item:nth-of-type(2n) {
		margin-right: 0;
	}
	.search-item.checkbox-field > .custom-input {
		width: 50%;
	}
	.field.search-item.checkbox-field > .custom-input {
		width: 33.33%;
	}
	.search-item.couple-field > .custom-input {
		width: 33.33%;
	}
	section#listings.list div.main-column {
		max-width: 720px;
	}
	section#listings.list ul.nav-column {
		width: 160px;
	}
	.ad-info.with-names {
		width: 43%;
	}
	section#listings div.picture > img {
		width: 226px;
		height: 156px;
	}
	section#listings.grid ul.info {
		padding-top: 8px;
	}
	section#listings.list ul.info {
		max-width: 320px;
	}
	.link-large {
		font-size: 1.286em!important;
	}

	section.categories-box div.cat-tree-cont.limit-height {
		max-height: 222px;
	}
	section.categories-box div.cat-toggle {
		display: none;
	}

	/* listing details gallery */
	div.gallery > div#media {
		height: 482px;
	}
	div.gallery > div.thumbs > div.slider > ul > li img {
		width: 68px;
		height: 68px;
	}
	div.gallery > div.thumbs > div.prev,
	div.gallery > div.thumbs > div.next {
		width: 68px;
		height: 68px;	
	}
	div.gallery > div.thumbs > div.slider {
		margin: -23px 70px 0 70px;
	}
	div.gallery > div.thumbs {
		height: 90px;
	}
	div.gallery > div.thumbs > div.prev:before {
		top: 23px;
		left: 27px;
	}
	div.gallery > div.thumbs > div.next:before {
		top: 23px;
		left: 29px;
	}
	div.gallery div#media > .nav-buttons span.nav-button.zoom {
		display: none;
	}
	/* listing details gallery */
	
	div.table-cell > div.name {
		width: 140px;
	}

	div.listing-details section.statistics ul.controls {
		width: 60%;
	}

	section.account-location table.info {
		float: left;
		width: 235px;
		display: inline-block;
	}

	section.account-location div.location-info {
		float: left;
		max-width: 300px;
	}
	section.account-location div.map-capture {
		width: 55%;
		margin: -18px -18px -18px 0;
		float: right;
	}
	
	section.account-info div.relative {
		float: left;
		width: 50%;
	}
	section.account-info div.info-table {
		overflow: hidden;
		margin-top: 0;
	}

	ul.select-category {
		width: 360px;
		white-space: normal;
	}
	ul.select-category select {
		height: 37px;
	}
	ul.select-category > li > div {
		width: 350px;
		margin: 0 0 10px;
	}
	ul.select-category > li > div:last-child {
		margin: 0;
	}

	div.notification {
		width: 442px;
		margin-left: -221px;
	}
	div.notification.done {
		top: 0;
	}

	.my-profile-sidebar .picture {
		float: left;
		margin-right: 20px;
	}
	.my-profile-sidebar .info {
		overflow: hidden;
		margin-top: 0;
	}
	ul.packages > li div.frame {
		width: 420px;
	}
	body.no-sidebar .advanced-search-form {
		width: 80%;
	}

	div.cHorizontal ul.featured > li {
		max-width: 200px;
	}
}
/*** MOBILE VIEW ***/
@media screen and (max-width: 767px) {
	h1 {
		font-size: 1.714em;
		padding: 0 10px;
		margin-bottom: 20px;
	}
	.h1-nav nav > a.post_ad {
		margin-right: 10px;
	}

	body.header-banner > div.main-wrapper {
		padding-top: 79px;
	}

	div#header-banner {
		width: 100%;
		height: 59px;
	}
	div.header-banner-cont {
		height: 79px;
	}
	div#header-banner > div.no-banner {
		line-height: 59px;
	}
	#header-banner div.banner table {
		height: 58px;
	}

	div#logo {
    	width: 100%;
	}

	.point1 {
		max-width: 480px;
		min-width: 320px;
	}

	.circle > .default {
		padding: 0 10px;
	}
	div.top-navigation div.fright,
	div.top-navigation div.fright > span.circle:not(.circle_opened):last-child {
		border-right: 0;
	}
	.lang-wrapper,
	.lang-wrapper .circle:not(.circle_opened) {
		border-left: 0;
	}

	#lang-selector > span.default {
		text-indent: -300px;
		width: 56px;
	}
	#lang-selector > span.default:before {
		content: attr(accesskey);
		position: absolute;
		right: 32px;
		text-indent: initial;

	}
	#lang-selector > .default:after {
		position: absolute;
		right: 10px;
		top: 17px;
	}
	#user-navbar > .default > span {
		max-width: 110px;
		white-space: nowrap;
		overflow: hidden;
		display: inline-block;
		text-overflow: ellipsis;
	}
	div#logo {
		margin-left: 10px;	
	}

	body.header-banner section.main-menu nav.menu ul.menu {
		top: 77px;
	}
	section.main-menu span.menu-button {
		margin-left: 10px;
		margin-right: 10px;
	}

	footer.page-footer span.scroll-top {
		left: auto;
		right: 10px;
		top: -36px;
	}
	footer.page-footer .footer-data {
		padding-left: 10px;
	}
	.footer-data div.cp {
		padding: 0;
	}
	footer.page-footer div.social {
		margin-right: 10px;
	}

	ul.tabs.search_tabs {
		width: 100%;
	}
	ul.tabs.search_tabs.tabs_count_2 > li {
		width: 50%;
	}
	ul.tabs.search_tabs.tabs_count_3 > li {
		width: 33.333%;
	}
	ul.tabs.search_tabs.tabs_count_4 > li {
		width: 25%;
	}
	ul.tabs.search_tabs > li:not(.more) > span {
		padding: 0 10px;
		font-size: 1em;
	    margin: 0 15px 0 0;
	}

	/* home page featured gallery */
	div.featured_gallery div.preview > span {
		display: none;
	}
	div.featured_gallery {
		padding-bottom: 108px;
		position: relative;
	}
	div.featured_gallery div.preview {
		height: 240px;
	}
	div.featured_gallery ul.featured {
		float: none;
		position: absolute;
		bottom: 0;
		margin: 0;
		width: 100%;
		height: 108px;
		padding: 10px 0 0 0;
	}
	div.featured_gallery ul.featured > li {
		display: inline-block;
		width: 140px;
		margin: 0 2px 0 0;
		padding: 0;
	}
	div.featured_gallery ul.featured li.active ul.ad-info {
		left: 0;
		right: 0;
		padding: 5px 7px;
	}
	div.featured_gallery ul.featured li.price_tag span {
	    padding: 0 7px 5px;
	    font-size: 1.286em;
	}
	/* home page featured gallery end */

	.search-form-cell {
		width: 100%;
	}
	.search-form-cell > div {
		margin-left: 10px;
		margin-right: 10px;
	}
	.search-form-cell > div > div,
	.search-form-cell > div span.pills {
		width: 100%!important;
	}
	.search-form-cell.numeric-field {
		width: 50%;
	}
	.search-form-cell.numeric-field > div {
		margin-right: 10px;
	}
	.search-form-cell.numeric-field + .search-form-cell.numeric-field > div {
		margin-right: 0;
		margin-left: 10px;
	}
	.search-form-cell.submit > div {
		margin-top: 15px;
		float: right;
	}
	.search-form-cell.vertical-middle > div > span,
	.search-form-cell.submit > div > span {
		display: none;
	}

	.search-form-cell.three-field > div > div input[type=text],
	.search-form-cell.three-field > div > div input[type=number] {
		width: 33%!important;
		margin-right: 4%;
	}
	.search-form-cell.three-field > div > div select {
		width: 26%;
	}
	.search-form-cell.three-field > div > div > *:not(:last-child) {
		margin-right: 0;
	}

	section.main-menu nav.menu ul.menu {
		padding: 58px 14px 55px 22px;
	}

	section.content_block,
	section.side_block {
		margin-left: 10px;
		margin-right: 10px;
	}
	section.content_block:not(.no-style) > div,
	section.side_block:not(.no-style) > div {
		padding: 20px 20px;
	}
	
	/* home content block */
	section.home-content {
		margin: 0 0 20px 0;
	}
	aside.bottom {
		margin-top: 20px;
	}
	/* home content block end */

	ul.tabs {
		margin-left: 10px;
		margin-right: 10px;
		height: 35px;
	}
	ul.tabs:not(.search_tabs) > li {
		margin: 0px 10px;
		font-size: 1em;
		height: 42px;
		line-height: 40px;
	}

	section.content-section ul.tabs {
		margin-left: 0;
		margin-right: 0;
	}
	#bread_crumbs > ul {
		padding-left: 10px;
		padding-right: 10px;
	}
	
	.grid_navbar .buttons > div.grid {
		display: none;
	}
	.grid_navbar .current,
	.grid_navbar ul.fields > li {
		padding: 0 10px;
	}
	
	/* listing list view */
	section#listings > article div.navigation-column {
		position: absolute;
		width: auto;
		bottom: 8px;
		right: 30px;
		z-index: 1;
	}
	section#listings > article div.navigation-column div.before-nav {
		display: none;
	}
	section#listings ul.nav-column > li {
		display: inline-block;
		height: 18px;
		margin-left: 5px;
	}
	section#listings ul.nav-column > li span.icon {
		top: 0;
	}
    section#listings ul.nav-column > li > a > span.link,
	section#listings ul.nav-column > li > span.link {
		display: none;
	}

	section.list > article {
		width: 100%;
		max-width: 320px;
		margin-left: auto;
		margin-right: auto;
		padding-left: 0;
		padding-right: 0;
		display: block;
		position: relative;
	}
	section#listings.list > article:not(.no-image) div.main-column {
		padding: 0 10px;
	}
	section#listings.list div.picture {
		width: 100%;
		float: none;
		margin: 0;
	}
	section#listings.list div.picture img {
		width: 100%;
		height: auto;
	}
	article.featured div.picture > div.label {
		top: 0;
	}
	section#listings.list ul.ad-info {
		background: white;
		padding: 10px;
	}
	section#listings ul.ad-info span.favorite {
		display: inline-block;
		vertical-align: middle;
	}
	section#listings.list ul.ad-info span.favorite {
		float: right;
		margin-top: 5px;
	}
	section#listings.list ul.ad-info > li:last-child {
		padding-bottom: 0;
	}
	section#listings div.picture.no-picture > img {
		background-color: #f6feff;
	}

	section#listings.list ul.ad-info > ol {
		display: none;
	}
	/* listing list view end */

	section.categories-box div.cat-tree-cont.limit-height {
		max-height: 185px;
	}
	section.categories-box div.cat-toggle {
		display: none;
	}

	div.listing-details.loc-exists .content-section {
		margin-top: 42px;
	}
	#lnp_container > li {
		left: 10px;
	}
	#lnp_container li.next {
		left: auto;
		right: 10px;
	}
	div.listing-details .content-section {
		padding: 10px 10px 0;
	}
	div.gallery {
		position: relative;
	}
	div.gallery > div#media {
		height: initial;
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
	}
	div.gallery > div#media .preview,
	div.gallery > div#media .map-container,
	div.gallery > div#media #street_view,
	div.gallery > div#media .zoom,
	div.gallery > div.thumbs > div.prev,
	div.gallery > div.thumbs > div.next {
		display: none;
	}

	div.gallery > div#media .nav-buttons {
		position: absolute;
		width: 100%;
		height: 42px;
		bottom: -42px;
		text-align: center;
		padding: 2px;
	}

	div.gallery > div#media .map,
	div.gallery > div#media .gallery,
	div.gallery > div#media .map-group {
		position: static!important;
		display: inline-block;
		vertical-align: top;
	}

	div.gallery div#media.map > .nav-buttons > .gallery {
		display: inline-block;
	}
	div.gallery > div#media.map + div.thumbs,
	div.gallery > div#media.street-view + div.thumbs {
		visibility: hidden;
	}

	div.gallery > div.thumbs {
		margin-top: 0;
		padding: 10px;
		height: inherit;
		display: block!important;
	}
	div.gallery > div.thumbs > div.slider {
		margin: 0;
		padding: 0;
		position: relative;
	}
	div.gallery > div.thumbs > div.slider > ul {
		width: 100%;
	}
	div.gallery > div.thumbs > div.slider > ul > li {
		display: inline-block;
		width: 100%;
		margin-top: 0!important;
	}
	div.gallery > div.thumbs > div.slider > ul > li img {
		margin: 0!important;
		width: 100%;
		height: auto;
		border: 0;
	}
	div.gallery > div.thumbs > div.slider > ul > li span.play {
		margin: 0;
		right: 0;
	}
	div.gallery > div.thumbs > div.slider > ul > li iframe {
		position: absolute;
		left: 0;
		top: 0;
		right: 0;
		bottom: 0;
		width: 100%;
		height: 100%;
	}
	div.gallery > div.thumbs > div.slider > ul > li iframe + div,
	div.gallery > div.thumbs > div.slider > ul > li iframe + div + div {
		position: absolute;
		left: 0;
		top: 0;
		bottom: 0;
		width: 40%;
		height: 65%;
	}
	div.gallery > div.thumbs > div.slider > ul > li iframe + div + div {
		left: auto;
		right: 0;
	}

	#area_keyword .kws-block .two-inline {
		width: 100%;
	}

	div.listing-details h1 {
		margin-bottom: 15px;
		padding: 0;
	}
	div.listing-details div.price-tag {
		float: none;
		margin-bottom: 14px;
		display: inline-block;
		margin-left: 13px;
	}
	body.view-details-page .seller-short div.info-table {
		display: none;
	}
	.seller-short > div:last-child {
		margin-top: 20px;
	}
	.seller-short.landscape div.picture {
		float: none;
	}

	div.table-cell > div.name {
		width: 35%!important;
	}

	div.listing-details section.statistics ul.controls {
		float: none;
		width: 100%;
	}
	div.submit-cell > div.name {
		float: none;
		width: auto;
		padding: 0;
		min-height: 26px;
		line-height: 26px;
	}
	div.submit-cell > div.name:empty {
		display: none;
	}
	#modal_block div.submit-cell div.name {
		width: 120px;
	}

	div.submit-cell.buttons div.name {
		min-height: inherit;
		height: 0;
	}

	.field.single-field > select {
		width: 100%;
		max-width: 300px;
	}
	.field.single-field > input[type=text] {
		width: 100%;
	}
	.field.checkbox-field .custom-input {
		width: 50%;
	}

	/* two */
	.field.two-fields > select,
	.field.two-fields > input[type=text] {
		width: 48%;
		margin-right: 4%;
	}
	.field.two-fields > select:last-child,
	.field.two-fields > input[type=text]:nth-child(2n) {
		margin-right: 0;
	}
	.field.two-fields > .custom-input,
	.field.couple-field > .custom-input {
		width: 50%;
		display: inline-block;
		padding-top: 10px;
	}
	/* three */
	.field.three-field > select {
		width: 26%;
		margin-right: 4%;
	}
	.field.three-field > input {
		width: 33%!important;
		margin-right: 4%;
	}
	.field.three-field > *:last-child {
		margin-right: 0;
	}

	.form-buttons.form a {
		width: auto;
	}
	section#accounts.grid {
		text-align: center;
	}
	section#accounts.grid > article {
		display: inline-block;
		vertical-align: top;
	}
	section#accounts > article > div,
	section#accounts > article > ul {
		text-align: left;
	}

	section.seller-short > div > div.picture {
		margin: 0 20px 0 0;
		float: left;
	}
	section.seller-short > div > div.picture img {
		max-width: 150px;
		height: auto;
	}
	section.seller-short ul.seller-info > li:first-child {
		margin-top: 0;
	}
	section.seller-short ul.seller-info {
		overflow: hidden;
	}

	section.seller-short div.picture + div div.name,
	section.account-location div.name {
		width: 120px!important;
	}
	section.seller-short div.picture > div:first-child {
		margin-top: 10px;
	}
	section.seller-short div.counter {
		display: block;
	}

	ul.steps.mobile > li {
		display: none;
	}
	ul.steps.mobile > li.prev,
	ul.steps.mobile > li.current,
	ul.steps.mobile > li.current + li,
	ul.steps.mobile > li.current + li + li {
		display: inline-block;
		width: 33.33333%!important;
	}
	ul.steps.mobile > li.prev + li + li + li {
		display: none!important;
	}

	/*** ADD LISTING ***/
	ul.select-type > li {
		display: block;
		margin: 0 0 5px 0;
	}
	ul.select-category {
		white-space: normal;
		overflow: auto;
	}
	ul.select-category select {
		height: 37px;
	}
	ul.select-category > li > div {
		width: 100%;
		margin: 0 0 10px!important;
	}
	ul.select-category > li > div:last-child {
		margin: 0;
	}
	ul.select-category select option {
		text-overflow: ellipsis;
		white-space: nowrap;
		overflow: hidden;
	}

	div.plans-container:not(.mCustomScrollbar) {
		padding-bottom: 0;
		border: 0;
	}
	ul.plans span.name {
		padding: 15px 0 0 0;
	}
	ul.plans span.price {
		padding: 0 0 18px;
	}
	ul.plans {
		overflow-x: auto;
		white-space: normal;
		border: 0;
        display: block
	}
	ul.plans > li {
		height: auto;
		width: 100%!important;
		position: relative;
        max-width: none;
        display: block
	}
	ul.plans > li > div.frame {
		width: 100%;
		height: inherit;
		border-width: 2px;
		border-top-width: 1px;
		border-bottom-width: 1px;
        display: block;
        margin-bottom: 0 !important;
        padding-bottom: 20px;
	}
    ul.plans > li > div.frame div.selector,
    ul.plans > li > div.frame span.description {
        position: static;
	}
	ul.plans > li.plan-package > div.frame,
	ul.plans > li.plan-listing.subscription > div.frame {
		padding-bottom: 100px;
	}
	ul.plans > li.plan-package.subscription > div.frame {
		padding-bottom: 140px;
	}
	ul.plans > li div.selector {
        padding-top: 20px;
	}
	ul.plans > li > div.selector > div {
		padding-top: 5px;
	}
	ul.plans > li:first-child > div.frame {
		border-top-width: 2px;
	}
	ul.plans > li:last-child > div.frame {
		border-bottom-width: 2px;
	}

	ul.plans input[type=radio].multiline + label,
	ul.plans input[type=checkbox].multiline + label {
		line-height: 22px;
		white-space: normal;
		text-align: left;
        margin-left: -11px;
	}
	ul.plans input[type=radio].multiline + label > span,
	ul.plans input[type=checkbox].multiline + label > span {
		display: inline-block;
	}
    ul.plans span.description {
        bottom: -2px;
    }
	.form-buttons {
		padding-left: 10px;
		padding-right: 10px;
		text-align: center;
	}
	/*** ADD LISTING END ***/

	table.contacts-list tr > td:nth-child(2n) {
		display: none;
	}
	table.contacts-list div.name span.new {
		display: inline-block;
	}

	div.notification {
		width: 100%;
		left: 0;
		margin: 0;
	}
	div.notification > div {
		width: 100%;
		max-width: 480px;
		margin: 0 auto;
	}
	div.notification.done {
		top: 0;
	}

	div.auth > div {
		display: block;
		width: 100%;
		text-align: left!important;
	}
	div.auth > div.cell > div {
		text-align: left;
		margin: 0;
	}
	div.auth > div.divider {
		padding: 20px 0;
		width: 100%;
	}

	span.text-notice,
	div.text-notice {
		padding: 0 10px;
	}
	.content-padding {
		padding-left: 10px;
		padding-right: 10px;
	}
	.content-padding .content-padding,
	.content-padding .text-notice,
	div.listing-details .content-section .content-padding {
		padding-left: 0!important;
		padding-right: 0!important;
	}

	/* tables content */
	div.list-table {
		display: block;
	}
	div.list-table > div.header {
		display: none;
	}
	div.list-table > div.row {
		display: block;
		border-bottom: 2px #e9e9e9 solid;
		position: relative;
		padding: 13px 25px;
		margin: 0;
	}
	div.list-table > div:nth-child(2) {
		padding-top: 0;
	}
	div.list-table > div:last-child {
		padding-bottom: 0;
		border: 0;
	}
	div.list-table > div.row > div {
		display: block;
		border: 0;
		padding: 5px 0 5px 95px!important;
		overflow: hidden;
		position: relative;
	}
	div.list-table > div.row > div:not(.no-flex):before {
		content: attr(data-caption) ":";
		width: 85px;
		display: inline-block;
		white-space: normal;
		word-wrap: break-word;
		font-size: 0.929em;
		color: #949494;
		position: absolute;
		left: 0;
		top: 5px;

		/* it is the best solution for now */
		text-overflow: ellipsis;
		white-space: nowrap;
		overflow: hidden;
	}
	div.list-table > div.row > div.iteration {
		position: absolute;
		top: 50%;
		left: 0;
		margin-top: -10px;
		padding: 0!important;
	}
	div.list-table > div.row > div.action {
		position: absolute;
		top: 50%;
		right: 0;
		margin-top: -12px;
	}
	div.list-table > div.row > div > div.inline {
		display: inline-block;
	}
	div.list-table > div.row > div.content {
		padding-top: 2px!important;
	}

	div.content div.table-cell > div.name {
		float: none;
		width: auto!important;
	}
	div.content div.table-cell > div.name + div.value {
		padding: 0;
		min-height: 18px;
		line-height: 18px;
	}
	div.content div.table-cell {
		margin-bottom: 10px;
	}
	/* tables content end */

	/* my listings */
	section#listings.my-listings .item div.info {
		display: block;
		width: 100%;
		padding: 0;
	}
	section#listings.my-listings .item div.info div.picture img {
		width: 100%;
		height: auto;
	}
	section#listings.my-listings .item div.picture > span {
		width: 34px;
		height: 24px;
		bottom: 20px;
		right: 20px;
		line-height: 22px;
		font-size: 1.071em;
	}
	section#listings.my-listings .item div.info .title {
		position: absolute;
		top: 10px;
		background: white;
		height: 38px;
		line-height: 36px;
		box-shadow: 0 4px 0 rgba(0,0,0,.1);
		max-width: 100%;
		white-space: nowrap;
	}
	section#listings.my-listings .item .title {
		padding: 5px 10px 10px;
		display: block;		
		overflow: hidden;
		text-overflow: ellipsis;
	}
	section#listings.my-listings .item.featured div.info .title {
		background: #0e5486;
		color: #010101;
	}
	section#listings.my-listings div.picture > div.label {
		display: none;
	}
	section#listings.my-listings .item div.navigation {
		display: block;
		width: 100%;
		margin-bottom: 10px;
	}
	section#listings.my-listings .item div.navigation > ul {
		padding: 10px 10px 0;
	}
	section#listings.my-listings .item div.navigation > ul > li {
		display: inline-block;
		vertical-align: top;
		padding-bottom: 0;
	}
	section#listings.my-listings .item div.navigation > ul > li.single-inline {
		display: block;
		margin-bottom: 5px;
	}
	section#listings.my-listings .item div.navigation > ul > li select {
		max-width: 200px;
		width: 100%;
	}
	section#listings.my-listings .item div.navigation > ul > li.nav-icon {
		padding: 8px 0 0 12px;
	}
	section#listings.my-listings .item div.navigation > ul > li a {
		padding: 5px 10px;
	}
	section#listings.my-listings .item div.navigation > ul > li a > span {
		display: none;
	}

	section#listings.my-listings .item div.stat {
		display: block;
		width: 100%;
		position: relative;
	}
	section#listings.my-listings .item div.stat > ul {
		padding: 0 10px;
	}
	section#listings.my-listings .item div.stat .two-inline > *:first-child {
		float: none;
	}
	section#listings.my-listings .item div.stat ul > li {
		width: 48%;
		display: inline-block;
		vertical-align: top;
		margin-right: 4%;
	}
	section#listings.my-listings .item div.stat ul > li:nth-child(2n) {
		margin-right: 0;
	}
	/* my listings end */

	#controller_area div.fieldset.divider > header {
		padding: 0 10px;
	}
	.content-padding div.fieldset > header,
	div.fieldset.light > header {
		padding-left: 0!important;
		padding-right: 0!important;
	}

	ul.pagination {
		padding-left: 20px;
		padding-right: 20px;
	}

	/*** MY PACKAGES ***/
	ul.packages > li {
		display: block;
	}
	ul.packages > li div.frame {
		width: auto;
		display: block;
	}
	ul.packages > li div.status {
		margin: 15px 0 0 0;
		padding: 0 20px;
	}
	ul.packages > li div.status div.renew {
		overflow: hidden;
		text-align: right;
		margin-top: 3px;
	}
	ul.packages > li div.status ul.package_info {
		float: left;
	}
	/*** MY PACKAGES END ***/

	ul.account-menu-content > li {
		padding: 2px 0 10px;
	}
	ul.account-menu-content > li a {
		font-size: 1.143em;
	}

	.modal_block div.inner div.close {
		right: 20px;
	}

	.map-search > div.controls > div > div.buttons {
		top: auto;
		left: 10px;
		bottom: 210px;
	}

	ul.featured > li  {
		max-width: 350px;
		margin-left: auto;
		margin-right: auto;
	}

	section.side_block table.table td.name {
		width: 45%;
	}
	.shc-group ul.checkboxes > li {
		width: 100%!important;
	}
}
@media screen and (max-width: 383px) {
	div#header-banner {
		max-width: 100%;
		height: 62px;
		top: 20px;
		left: 0;
		margin-left: 0;
	}
	section.seller-short > div > div.picture {
		margin: 0 0 15px 0;
		float: none;
	}
	section.seller-short > div > div.picture img {
		max-width: 150px;
		height: auto;
	}
	section.seller-short ul.seller-info {
		overflow: auto;
	}
	.login-form input[type=text],
	.login-form input[type=password] {
		width: 100%;
	}
	div.table-cell ul.checkboxes > li {
		float: none;
		width: 100%;
		margin: 0;
	}
	section#listings.my-listings .item > div.navigation > ul > li select {
		width: 130px;
	}
}
/*** RESPONCIVE END ***/

/*** PIXEL RATIO 1.5 ***/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min--moz-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5),
only screen and (min-resolution: 144dpi) {
	body {
		background: url(../img/@2x/main-bg.gif) repeat top center #f9f9f9;
		background-size: 10px 10px;
	}
	div#logo img {
		    width: 100%;
			height: 100%;
			background: url(../img/@2x/logo.png) center 0 no-repeat;
			background-size: contain;
	}
	.circle > .default:after {
		background: url('../img/@2x/gallery2.png') left -62px no-repeat;
		background-size: 40px auto;
	}
	.circle_opened > .default:after {
		background-position: -12px -62px;
	}
	#user-navbar > span.default:before {
		background: url('../img/@2x/gallery2.png') left -12px no-repeat;
		background-size: 40px auto;
	}
	div.controls span#full_screen:before,
	div.controls span#my_location:before {
		background: url('../img/@2x/gallery2.png') left -31px no-repeat;
		background-size: 40px auto;
	}
	div.controls span#my_location:before {
		background-position: right -31px;
	}
	.map_fullscreen_area div.controls span#full_screen:before {
		background-position: right -819px;
	}

	.infobox-wrapper > img {
		background: url('../img/@2x/gallery2.png') -26px -853px no-repeat #0e5486;
		background-size: 40px auto;
	}
	section.main-menu span.mobile-menu-header > span:last-child:before {
		background: url('../img/@2x/gallery2.png') right -50px no-repeat;
		background-size: 40px auto;	
	}

	div.close-black:before {
		background: url('../img/@2x/gallery2.png') right -857px no-repeat;
		background-size: 40px auto;
	}

	select {
		background: rgba(229,229,229,1);
		background: url('../img/@2x/gallery2.png') right -68px no-repeat, -moz-linear-gradient(top, rgba(229,229,229,1) 0%, rgba(214,214,215,1) 100%);
		background: url('../img/@2x/gallery2.png') right -68px no-repeat, -webkit-gradient(left top, left bottom, color-stop(0%, rgba(229,229,229,1)), color-stop(100%, rgba(214,214,215,1)));
		background: url('../img/@2x/gallery2.png') right -68px no-repeat, -webkit-linear-gradient(top, rgba(229,229,229,1) 0%, rgba(214,214,215,1) 100%);
		background: url('../img/@2x/gallery2.png') right -68px no-repeat, -o-linear-gradient(top, rgba(229,229,229,1) 0%, rgba(214,214,215,1) 100%);
		background: url('../img/@2x/gallery2.png') right -68px no-repeat, -ms-linear-gradient(top, rgba(229,229,229,1) 0%, rgba(214,214,215,1) 100%);
		background: url('../img/@2x/gallery2.png') right -68px no-repeat, linear-gradient(to bottom, rgba(229,229,229,1) 0%, rgba(214,214,215,1) 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e5e5e5', endColorstr='#d6d6d7', GradientType=0 );

		background-size: 40px auto, auto;
	}
	input[type=number] {
		background-image: url('../img/@2x/gallery2.png');
		background-position: right -94px;
		background-repeat: no-repeat;
		background-size: 40px auto;
	}
    label.switcher > input[type=checkbox] + span:not(.status):before {
        background-image: url('../img/@2x/gallery2.png');
        background-position: -8px -794px;
        background-repeat: no-repeat;
        background-size: 40px auto;
    }
    label.switcher > input[type=checkbox]:checked + span:not(.status):before {
        background-image: url('../img/@2x/gallery2.png');
        background-position: 0 -794px;
        background-repeat: no-repeat;
        background-size: 40px auto;
    }
	div#fileupload span.draft > span.icon {
		background: url('../img/@2x/gallery2.png') 0 -540px no-repeat!important;
		background-size: 40px auto!important;
	}

	.testimonials .area > div.quotes {
		background: url('../img/@2x/gallery2.png') -22px -212px no-repeat!important;
		background-size: 40px auto!important;
	}
	footer.page-footer span.scroll-top:before {
		background: url('../img/@2x/gallery2.png') right -224px no-repeat;
		background-size: 40px auto;
	}
	.footer-data div.icons a:before {
		background: url('../img/@2x/gallery2.png') 0 -270px no-repeat;
		background-size: 40px auto;
	}
	.footer-data div.icons a.facebook:before {
		background-position: -13px -270px;
	}
	.footer-data div.icons a.twitter:before {
		background-position: -24px -270px;
	}

	input[type=checkbox]:not(.default) + label > span,
	input[type=radio]:not(.default) + label > span {
		background: url('../img/@2x/gallery2.png') 0 -224px no-repeat;
		background-size: 40px auto;
	}
	input[type=radio]:not(.default) + label > span {
		background-position: 0 -155px;
	}
	input[type=checkbox]:not(.default):hover + label > span {
		background-position: 0 -201px;
	}
	input[type=checkbox]:not(.default):checked + label > span {
		background-position: 0 -247px;
	}
	input[type=radio]:not(.default):hover + label > span {
		background-position: 0 -132px;
	}
	input[type=radio]:not(.default):checked + label > span {
		background-position: 0 -178px;
	}
	div.category-slider-bar span.prev,
	div.category-slider-bar span.next,
	div.gallery > div.thumbs > div.prev > div,
	div.gallery > div.thumbs > div.next > div {
		background: url('../img/@2x/gallery2.png') -0px -467px no-repeat;
		background-size: 40px auto;
	}
	div.category-slider-bar span.next,
	div.gallery > div.thumbs > div.next > div {
		background-position: -7px -467px;
	}
	.footer-data img.rss,
	.footer-data img.facebook,
	.footer-data img.twitter {
		background: url('../img/@2x/gallery2.png') 0 -288px no-repeat;
		background-size: 40px auto;
	}
	.footer-data img.facebook {
		background-position: 0 -329px;
	}
	.footer-data img.twitter {
		background-position: 0 -370px;
	}
	.footer-data div.logo img {
		background: url('../img/@2x/footer-logo.png') 0 0 no-repeat;
		background-size: 100%;
	}
	ul.menu-mobile:before {
		background: url('../img/@2x/gallery2.png') right -409px no-repeat;
		background-size: 40px auto;
	}
	.grid_navbar div.map > div > span {
		background: url('../img/@2x/gallery2.png') 0 -449px no-repeat;
		background-size: 40px auto;
	}
	.grid_navbar div.map:hover span,
	.grid_navbar div.map.active span {
		background: url('../img/@2x/gallery2.png') -14px -449px no-repeat;
		background-size: 40px auto;
	}
	.grid_navbar .sorting span.arrow {
		background: url('../img/@2x/gallery2.png') -22px -114px no-repeat;
		background-size: 40px auto;
	}
	.grid_navbar .sorting .active span.arrow {
		background-position: -22px -101px;
	}

	.favorite span.icon {
		background: url('../img/@2x/gallery2.png') right -178px no-repeat;
		background-size: 40px auto;
	}
	.favorite.remove span.icon {
		background-position: right -195px;
	}

	span.media-enlarge:after {
		background: url('../img/@2x/gallery2.png') left -345px no-repeat;
		background-size: 40px auto;
	}

	div.gallery > div.thumbs > div.prev:before,
	div.gallery > div.thumbs > div.next:before {
		background: url('../img/@2x/gallery2.png') left -400px no-repeat;
		background-size: 40px auto;
	}
	div.gallery > div.thumbs > div.next:before {
		background-position: 0 -422px;
	}
	div.gallery > div.thumbs > div.slider > ul > li.locked img {
		background-image: url('../img/@2x/locked.png');
		background-size: 25px auto;
	}
	div#picture_locked img {
		background-image: url('../img/@2x/locked-large.png');
		background-size: 96px auto;
	}
	#loan_reset_form {
		background: url('../img/@2x/gallery2.png') right -426px no-repeat;
		background-size: 40px auto;
	}

	section#listings div.picture > img {
		background-image: url('../img/@2x/no-picture.png');
		background-size: cover;
	}
	section#listings div.picture.no-picture > img {
		background-size: cover!important;
	}
	.seller-short form input + span {
		background: url('../img/@2x/gallery2.png') right -373px no-repeat;
		background-size: 40px auto;
	}
	.seller-short form input[name=contact_email] + span {
		background-position: right -391px;
	}
	.seller-short form input[name=contact_phone] + span {
		background-position: right -407px;	
	}

	div.categories div.category-name {
		background: url('../img/@2x/gallery2.png') 0 14px repeat-x;
		background-size: 40px auto!important;
	}
	div.table-cell > div.name > div {
		background: url('../img/@2x/gallery2.png') 0 17px repeat-x;
		background-size: 40px auto!important;
	}
	div.gallery > div.preview a > span > span {
		background: url('../img/@2x/gallery2.png') right -604px no-repeat;
		background-size: 40px auto;
	}

	.modal_block div.inner div.close > div {
		background: url('../img/@2x/gallery2.png') right -326px no-repeat;
		background-size: 40px auto;
	}
	a.print > span {
		background: url('../img/@2x/gallery2.png') right -625px no-repeat;
		background-size: 40px auto;
	}
	div.table-cell ul.checkboxes > li.active img {
		background: url('../img/@2x/gallery2.png') 0 -625px no-repeat;
		background-size: 40px auto;
	}
	div.ps-toolbar div div.ps-toolbar-content {
		background-image: url('../img/@2x/photoswipe@2x.png');
		background-size: 176px 88px;
	}

	#lnp_container li.nav a:before {
		background: url('../img/@2x/gallery2.png') right -362px no-repeat;
		background-size: 40px auto;
	}
	#lnp_container li.next a:before {
		background-position: -28px -362px;
	}
	.compare-icon > span,
	section#listings ul.nav-column > li.add_to_compare span.icon {
		background: url('../img/@2x/gallery2.png') 0 -363px no-repeat!important;
		background-size: 40px auto!important;
	}
	.compare-icon.remove > span,
	section#listings ul.nav-column > li.remove_from_compare span.icon {
		background: url('../img/@2x/gallery2.png') 0 -381px no-repeat!important;
		background-size: 40px auto!important;
	}

	section#listings ul.nav-column > li.add-to-cart span.icon {
		background: url('../img/@2x/gallery2.png') 0 -949px no-repeat!important;
		background-size: 40px auto!important;
	}

	div.horizontal div.prev:before,
	div.horizontal div.next:before,
	div.vertical div.prev:before,
	div.vertical div.next:before {
		background: url('../img/@2x/gallery2.png') 0 -648px no-repeat;
		background-size: 40px auto;
	}
	div.horizontal div.next:before {
		background-position: right -648px;
	}
	div.vertical div.prev:before {
		background-position: 0 -839px;
	}
	div.vertical div.next:before {
	background-position: right -839px;
	}

	section#accounts > article div.no-picture div.picture img,
	.my-profile-sidebar .image-preview-wrapper .image-preview,
	img.account-picture {
		background-image: url('../img/@2x/no-account.png');
		background-size: contain;
	}

	div.picture.no-picture img {
		background-size: 100px;
	}

	section.side_block > span.expander {
		background: url('../img/@2x/gallery2.png') right -502px no-repeat;
		background-size: 40px auto;
	}
	section.side_block > span.expander.active {
		background-position: 0 -502px;
	}

	ul.featured > li.no-picture > a > img {
		background-image: url('../img/@2x/no-picture.png');
		background-size: 190px auto!important;
	}
	input.search:hover {
		height: 37px;
		background: url('../img/gallery.png') 12px -431px no-repeat #fec04f;
	}
	div.gallery > div.thumbs > div.slider > ul > li span.play {
		background: url('../img/@2x/play.png') center center no-repeat rgba(0,0,0,.2);
		background-size: 100% auto;
	}

	div.close-black > div {
		background: url('../img/@2x/gallery2.png') right -675px no-repeat;
		background-size: 40px auto;
	}
	.close-red {
		background: url('../img/@2x/gallery2.png') -25px -53px no-repeat;
		background-size: 40px auto;
	}
	div.close-black:hover > div,
	.close-red:hover {
		opacity: 0.8;
		filter: "alpha(opacity=80)"; -ms-filter: "alpha(opacity=80)";
	}
	img.remove {
		background: url('../img/@2x/gallery2.png') 0 -857px no-repeat;
		background-size: 40px auto;
	}

	ul#messages_area > li > span {
		background: url('../img/@2x/gallery2.png') right -326px no-repeat;
		background-size: 40px auto;
	}

	img.qtip {
		background-image: url('../img/@2x/gallery2.png');
		background-position: 6px -325px;
		background-size: 40px auto;
	}
	div#fileupload img.manage,
	div#fileupload img.delete,
	div#fileupload img.cancel,
	div#fileupload img.crop {
		background: url('../img/@2x/gallery2.png') 0 -755px no-repeat;
		background-size: 40px auto;
	}
	div#fileupload img.delete,
	div#fileupload img.cancel {
		background-position: right -755px;
	}
	div#fileupload img.crop {
		background-position: right -776px;	
	}

	#controller_area div.fieldset > header > span.arrow:after {
		background: url('../img/@2x/gallery2.png') -12px -62px no-repeat;
		background-size: 40px auto;
	}
	#controller_area div.fieldset > header > span.arrow.up:after {
		background-position: 0 -62px;
	}
	.my-listings div.navigation ul li.nav-icon > a:before {
		background: url('../img/@2x/gallery2.png') 0 -776px no-repeat;
		background-size: 40px auto;
	}
	.my-listings div.navigation ul li.nav-icon > a.add-video:before {
		background-position: 0 -821px;
	}
	.my-listings div.navigation ul li.nav-icon > a.edit:before {
		background-position: 0 -755px;
	}
	.my-listings div.navigation ul li.nav-icon > a.unsubscription:before {
		background-position: left -933px;
	}
    .my-listings div.navigation ul li.nav-icon > a.delete:before,
	.delete.icon {
		background: url('../img/@2x/gallery2.png') right -755px no-repeat;
		background-size: 40px auto;
	}
	span.media-enlarge > span {
		background: url('../img/@2x/gallery2.png') right -604px no-repeat;
		background-size: 40px auto;
	}

	div.map-capture > img {
		background-size: auto 100%;
	}
	div.controls a#advanced_search:after {
		background: url('../img/@2x/gallery2.png') right -449px no-repeat;
		background-size: 40px auto;
	}

	#search_area #advanced_search:after {
		background: url('../img/@2x/gallery2.png') -34px -449px no-repeat;
		background-size: 40px auto;
	}

	div.featured_gallery div.preview > span:after {
		background: url('../img/@2x/gallery2.png') right -933px no-repeat;
		background-size: 40px auto;
	}
	div.featured_gallery div.preview > span.next:after {
		background-position: right -961px;
	}

	footer.page-footer div.social a.rss:after {
		background: url('../img/@2x/gallery2.png') left -968px no-repeat;
		background-size: 40px auto;
	}


    body a.reportBroken img {
        background: url(../img/@2x/gallery2.png) 0 -520px no-repeat !important;
        background-size: 40px auto !important;
    }
    body a.removeBroken img {
        background: url(../img/@2x/gallery2.png) -20px -520px no-repeat !important;
        background-size: 40px auto !important;
    }
}
/*** PIXEL RETIO 1.5 END ***/

/*** PIXEL RATIO 1.5 ***/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5) and (max-width: 767px),
only screen and (min--moz-device-pixel-ratio: 1.5) and (max-width: 767px),
only screen and (min-device-pixel-ratio: 1.5) and (max-width: 767px),
only screen and (min-resolution: 144dpi) and (max-width: 767px) {
	div.gallery > div.thumbs > div.slider > ul > li span.play {
		background-size: 40% auto;
	}
}

/*** CUSTOM SCROLLBAR ***/
.mCSB_container {
	width: auto;
	margin-right: 15px;
	margin-left: 15px;
	overflow: hidden;
}
.mCSB_container.mCS_no_scrollbar {
	margin-right: 0;
}
.mCustomScrollBox > .mCSB_scrollTools {
	width: 4px;
	height: 100%;
	top: 0;
	right: 0;
	opacity: 0.65;
	-ms-touch-action: none;
}
.mCustomScrollBox:hover > .mCSB_scrollTools {
	opacity: 1;
}
.mCSB_scrollTools .mCSB_draggerRail {
	background-color: #f1f1f1;
	background-color: rgba(153,153,153,0.4);
}
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
	background: #0e5486;
}
.mCSB_scrollTools .mCSB_draggerRail {
	width: 3px;
	height: 100%;
	margin: 0 auto;
}
.mCSB_scrollTools .mCSB_draggerContainer {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0; 
	height: auto;
}
.mCSB_scrollTools .mCSB_dragger {
	cursor: pointer;
	width: 100%;
	height: 30px;
}
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
	width: 3px;
	height: 100%;
	margin: 0 auto;
	text-align:center;
}

/* horizontal scrollbar */
.mCSB_horizontal > .mCSB_container {
	height: auto;
	margin-right: 0;
	margin-bottom: 20px;
	overflow: hidden;
}
.mCSB_horizontal >. mCSB_container.mCS_no_scrollbar {
	margin-bottom: 0;
}
.mCSB_horizontal.mCustomScrollBox>.mCSB_scrollTools{
	width: 100%;
	height: 3px;
	top:auto;
	right:auto;
	bottom:0;
	left:0;
	overflow:hidden;
}
.mCSB_horizontal>.mCSB_scrollTools a+.mCSB_draggerContainer{
	margin:0 20px;
}
.mCSB_horizontal>.mCSB_scrollTools .mCSB_draggerRail{
	width:100%;
	height: 3px;
	margin: 0;
}
.mCSB_horizontal>.mCSB_scrollTools .mCSB_dragger{
	width:30px;
	height:100%;
}
.mCSB_horizontal>.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
	width:100%;
	height: 3px;
	margin: 0 auto;
}
.mCustomScrollBox {
	-ms-touch-action:none;
}
/*** CUSTOM SCROLLBAR END ***/

/*** IE fallback ***/
body.ie-fallback div.controls span.loading {
	display: none;
}
body.ie-fallback .map-search > div.controls {
	height: 0;
	top: auto;
	bottom: 0;
}
body.ie-fallback .map-search > div.controls > div > div.buttons {
	top: auto;
	bottom: 470px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
	select {
		padding: 4px 5px;
	}
	input[type=text],
	input[type=password],
	input[type=number] {
		padding-bottom: 1px;
	}
}
/*** IE fallback end ***/

/*** UNIVERSAL GRID CLEANER ***/
@media (max-width: 767px) {
    .col-xs-1:nth-child(12n+1),
    .col-xs-2:nth-child(6n+1),
    .col-xs-3:nth-child(4n+1),
    .col-xs-4:nth-child(3n+1),
    .col-xs-6:nth-child(2n+1) {
        clear: both;
    }
}
@media (min-width:767px){
    .col-xs-1[class*="col-sm"],
    .col-xs-2[class*="col-sm"],
    .col-xs-3[class*="col-sm"],
    .col-xs-4[class*="col-sm"],
    .col-xs-6[class*="col-sm"],
    .col-xs-1[class*="col-md"],
    .col-xs-2[class*="col-md"],
    .col-xs-3[class*="col-md"],
    .col-xs-4[class*="col-md"],
    .col-xs-6[class*="col-md"],
    .col-xs-1[class*="col-lg"],
    .col-xs-2[class*="col-lg"],
    .col-xs-3[class*="col-lg"],
    .col-xs-4[class*="col-lg"],
    .col-xs-6[class*="col-lg"] {
        clear: none;
    }
    .col-sm-1:nth-child(12n+1),
    .col-sm-2:nth-child(6n+1),
    .col-sm-3:nth-child(4n+1),
    .col-sm-4:nth-child(3n+1),
    .col-sm-6:nth-child(2n+1) {
        
    }
}
@media (min-width:992px){
    .col-sm-1[class*="col-md"],
    .col-sm-2[class*="col-md"],
    .col-sm-3[class*="col-md"],
    .col-sm-4[class*="col-md"],
    .col-sm-6[class*="col-md"],
    .col-sm-1[class*="col-lg"],
    .col-sm-2[class*="col-lg"],
    .col-sm-3[class*="col-lg"],
    .col-sm-4[class*="col-lg"],
    .col-sm-6[class*="col-lg"] {
        clear: none;
    }
    .col-md-1:nth-child(12n+1),
    .col-md-2:nth-child(6n+1),
    .col-md-3:nth-child(4n+1),
    .col-md-4:nth-child(3n+1),
    .col-md-6:nth-child(2n+1) {
        clear: both;
    }
}
@media (min-width:1200px){
    .col-md-1[class*="col-lg"],
    .col-md-2[class*="col-lg"],
    .col-md-3[class*="col-lg"],
    .col-md-4[class*="col-lg"],
    .col-md-6[class*="col-lg"] {
        clear: none;
    }
    .col-lg-1:nth-child(12n+1),
    .col-lg-2:nth-child(6n+1),
    .col-lg-3:nth-child(4n+1),
    .col-lg-4:nth-child(3n+1),
    .col-lg-6:nth-child(2n+1) {
        clear: both;
    }
}
/*** UNIVERSAL GRID CLEANER END ***/
.logo-wrap {
    float: left;
	padding-top: 20px;
    width: 100%;
}
.logo-wrap .point1 {
    margin: 0 auto;
}
section.main-menu .main-nav {
    float: left;
    width: 100%;
}
section.main-menu nav {
    margin: 0 auto;
    position: relative;
}
.copyright-container {
    float: left;
    width: 100%;
	background: #444;
	color: #fff;
	padding: 15px 0;
}
.copyright-container .point1 {
    margin: 0 auto;
	font-size: 13px;
	font-weight: 600;
	padding: 2px 0;
}
.menu-footer-container .menu-item {
    float: left;
}
.menu-footer-container .menu-item a{
    color: #FFF;
	font-weight: 600;
	margin-right: 15px;
}
.footer-breadcrumbs {
    float: right;
	margin: 0 !important;
}
.categoryFilter > div {
    padding: 0 !important;
}
.fieldset .body {
    background: rgba(255, 255, 255, 0.75) none repeat scroll 0 0;
    border-bottom: 1px solid #eee;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
    margin: 1px 0 2px;
}
.textwidget > p {
    margin: 0 !important;
}
.aircraft-types {
    float: left;
    width: 100%;
}
.aircraft-types ul {
    float: left;
    width: 100%;
}
.aircraft-types ul li {
    float: left;
    width: 23.5%;
	margin-right: 2%;
	border: 1px solid #aaa;
	margin-bottom: 2%;
	text-align: center;
}
.aircraft-types ul li img{
    width: 83%;
	padding-top: 10px;
	padding-bottom: 10px;
}
.aircraft-types li:nth-child(4n) {
    margin-right: 0 !important;
}
.aircraft-types ul li span{
    width: 100%;
	float: left;
	padding-bottom: 10px;
}

.login-reg > a {
    color: #555;
    float: left;
    font-weight: 600;
    padding: 0 10px;
	font-size: 13px;
}
.login-reg a .fa {
    color: #555;
	padding-right: 7px;
}
.login-reg .separ {
    float: left;
}
.login-reg > p {
    float: left;
    font-size: 13px;
    line-height: 18px;
    padding-right: 15px;
}
.login-reg {
	float: right;
	padding: 5px 0;
}
.step1 {
    float: left;
    width: 21%;
}
.line {
    border-bottom: 1px solid #555;
    float: left;
    width: 5%;
	margin-top: 23px;
}
.step1 .fa {
    float: left;
    font-size: 36px;
    text-align: center;
    width: 100%;
}
.step1 > span {
    float: left;
    text-align: center !important;
    width: 100%;
	font-weight: 600;
}
.step-active {
    color: #0e5486;
}
.a-steps {
    border: 1px solid #aaa;
    float: left;
    padding: 10px 0 23px;
    width: 100%;
}
.a-steps h1 {
    font-size: 18px !important;
    margin-bottom: 20px !important;
    text-align: center;
}
.step_area {
    float: left;
    width: 100%;
}
.add-tips {
    float: left;
    margin-bottom: 20px;
    width: 100%;
}
.done {
    border: 1px solid #aaa;
    padding: 20px;
	width: 100%;
	float: left;
}
.done .fa {
    float: left;
    font-size: 58px;
    text-align: center;
    width: 100%;
	color: #0e5486;
}
.done > span {
    float: left;
    font-weight: 600;
    text-align: center;
    width: 100%;
}
.area_category1 {
    border: 1px solid #aaa;
    padding: 20px;
}
.bottom_links.latest_posts_wig {
    border-right: 1px solid #ddd;
    margin-bottom: 20px;
    min-height: 160px;
}
.widget.widget-footer-heading > p {
    color: #0e5486 !important;
    font-family: Open Sans;
    font-size: 19px;
    font-weight: 600;
    padding-bottom: 10px;
}
.footer-links {
    border-bottom: 1px solid #ddd;
    padding-left: 0;
}
.footer-links > li {
    border-top: 1px solid #ddd;
    font-size: 13px;
    padding: 5px 4px;
}
.footer-links .fa {
    float: right;
}
.footer-links a {
    color: #333;
    font-weight: 400;
}
.add-button {
    float: right;
    margin-right: 10px;
    margin-top: 50px;
}
.add-button a {
    background: #c8383d none repeat scroll 0 0;
    border-radius: 2px;
    color: #fff;
    font-size: 16px;
    padding: 6px 16px;
}
.add-button a:hover {
    background: #444 none repeat scroll 0 0;
    border-radius: 2px;
    color: #fff;
    font-size: 16px;
    padding: 6px 16px;
}
#area_listing > div {
    background: #fff none repeat scroll 0 0;
    margin-bottom: 10px;
}
.navigation-column img {
    background-repeat: no-repeat;
    background-size: 100% auto;
    float: left;
    height: 70px;
    padding: 0;
}
.navigation-column > a {
    background: #0e5486 none repeat scroll 0 0 !important;
    width: 100%;
	color: #FFF;
	text-align: center;
    float: left;
}
.navigation-column .photo {
    width: 100% !important;
}
.navigation-column .picture {
    width: 100%;
	padding: 2px;
	height: 75px;
	overflow: hidden;
	margin-bottom: 2px;
}
.ad-info .fields .table-cell {
    border-right: 1px solid #ddd;
    float: left;
    margin-right: 5px;
    padding-right: 7px;
    padding-top: 6px;
}
.ad-info .fields .table-cell .name, .ad-info .fields .table-cell .value {
    float: left;
    padding-bottom: 4px !important;
    width: auto;
}
.item .main-column {
    width: 100%;
}
.ad-info.with-names {
    width: 45%;
	float: left;
}
.navigation-column {
    float: left;
}

.short-info {
    border-top: 1px solid #ddd;
    float: left;
    margin-top: 10px;
    width: 66%;
}
.left > .seller-short > div {
    border-top: 1px solid #eee;
}
.reg-left {
    background: rgba(0, 0, 0, 0) url("../img/plane-reg.png") no-repeat scroll right 200px/ 80% auto;
    float: left;
    height: auto;
    width: 60%;
}
.log-left {
    background: rgba(0, 0, 0, 0) url("../img/plane-reg.png") no-repeat scroll right bottom/ 80% auto;
    float: left;
    height: 352px;
    width: 58%;
}
.reg-right {
    background: #fff none repeat scroll 0 0;
    border: 1px solid #ddd;
    border-radius: 3px;
    float: left;
    padding: 25px;
    width: 40%;
}

.reg-right .submit-cell {
    float: left;
    width: 100%;
	padding-bottom: 0;
}

.reg-right .submit-cell .name {
    float: left;
    width: 100%;
}

.reg-right .submit-cell .field {
    float: left;
    width: 100%;
}
.registration-page #wrapper {
    background: #f5f5f5 none repeat scroll 0 0;
}

#plan_26 .frame {
    background: #5476a5 none repeat scroll 0 0;
    border: medium none;
}
#plan_26 .plan-name {
    background: #3e5e8b none repeat scroll 0 0;
    float: left;
    text-align: center;
    width: 100%;
}
#plan_44 .frame, #plan_40 .frame, #plan_42 .frame, #plan_41 .frame, #plan_46 .frame, .plan .frame {
    background: #35598b none repeat scroll 0 0;
    border: medium none;
}
#plan_44 .plan-name, #plan_40 .plan-name, #plan_42 .plan-name, #plan_41 .plan-name, #plan_46 .plan-name, .plan .plan-name {
    background: #24436d none repeat scroll 0 0;
    float: left;
    text-align: center;
    width: 100%;
}
.plan-price {
    text-align: center;
	width: 100%;
	float: left;
}
.plan-name .name {
    color: #fff !important;
    float: left;
    font-size: 16px !important;
    font-weight: 600 !important;
    height: auto !important;
    line-height: 20px;
    padding: 9px 10px !important;
    text-transform: uppercase;
    width: 100%;
}
.plan-price .price {
    color: #fff !important;
    float: left;
    font-size: 24px !important;
    padding: 12px 0 0 !important;
    width: 100%;
}
.plan-features {
    float: left;
    padding: 15px;
    width: 100%;
}
.features-wrap {
	width: 100%;
	float: left;
	background: #FFF;
}
.features-wrap ul li {
    border-bottom: 1px solid #ddd;
    float: left;
    padding: 5px 0;
    width: 100%;
}
.features-wrap ul {
    padding: 15px;
    float: left;
    width: 100%;
}

.select-span{
	position: absolute;
	left: 0;
	width: 100%;
	height: 30px;
	line-height: 25px;
	padding: 3px;
	color: #FFF;
	text-align: center;
	background: #c8383d;
}
 
.select-span:after{
	content: "Select"; /*if CSS is disabled span elements are not displayed*/
}
.sel-plan{
	position: absolute;
	right: 0;
	margin: 0 !important;
	width: 100% !important;
	height: 31px !important;
	/*hide the radio button*/
	filter:alpha(opacity=0);
	-moz-opacity:0;
	-khtml-opacity: 0;
	opacity: 0;
    cursor: pointer;
}
input.sel-plan + span{ /*the span element that immediately follow the radio button */
	visibility: hidden; /*temporarily hide the "YES" label*/
	background: #307936;
	font-weight: 600;
}

input.sel-plan + span:after{
	content: "Selected";
}
input.sel-plan:checked + span{
	visibility: visible; /*show the "YES" label only if the radio button is checked*/
}
.select-span.hint {
    background: #777 none repeat scroll 0 0;
}
.sel-btn {
    position: relative;
}
.sel-btn > li {
    position: relative;
}
.reg-right .field input, .reg-right .field select {
    width: 100%;
}
.area_account .form-buttons a {
    background: #a33030 none repeat scroll 0 0;
    border-radius: 3px;
    color: #fff;
    float: left;
    padding: 7px 0;
    text-align: center;
    width: 47%;
}
.area_account .form-buttons input {
    float: right;
    width: 47%;
}
.phone-field input {
    width: auto !important;
}
.reg-left-content > h1 {
    font-weight: 600 !important;
}
.reg-left-content h2 {
    font-size: 22px;
    margin-top: 0 !important;
}
.reg-left-content li {
    list-style: inside disc !important;
    margin-left: 15px;
}
.password-row {
    float: left;
    width: 47% !important;
}
.password-row input{
    float: left;
    width: 100% !important;
}
.rpassword-row {
    float: left;
    width: 47% !important;
	margin-left: 6%;
}
.captcha-row .field img {
    float: right;
}
.captcha-row .field input {
    float: left;
	width: 60% !important;
}
.registration-page .area_done {
    background: #fff none repeat scroll 0 0;
    border: 1px solid #ddd;
    border-radius: 3px;
    padding: 30px;
    text-align: center;
    width: 100%;
}
.add-aircraft-page #controller_area {
    display: none;
}
.plan-support span {
    text-align: center;
}
.plan-support .title {
    font-size: 14px;
	font-weight: 600;
	padding-bottom: 20px;
}
.cat-head, .plan-head{
    float: left;
    font-weight: 600;
    padding-bottom: 10px;
    padding-top: 30px;
    width: 100%;
	text-align: center;
}
#listing_form .form-buttons input {
    float: right;
}
#listing_form .form-buttons a {
    background: #a33030 none repeat scroll 0 0;
    border-radius: 3px;
    color: #fff;
    float: left;
    padding: 7px 17px;
}
#next_step {
    background: #0e5486 none repeat scroll 0 0;
    float: right;
    padding: 1px 32px;
}
.add_listing_left .clearfix {
    background: transparent none repeat scroll 0 0 !important;
}
.create-list h2 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 5px;
}
.create-list li {
    font-size: 13px;
    line-height: 15px;
    list-style: outside disc !important;
    margin-bottom: 11px;
    margin-left: 20px;
}
#listing_form div.fieldset > header, .area_checkout div.fieldset > header {
    margin: 0 !important;
}
#listing_form .fieldset {
    margin-bottom: 5px;
}
.area_photo #fileupload {
    border-bottom: 1px solid #aaa;
}
.law-notice {
    float: left;
    font-size: 12px;
    line-height: 15px !important;
    margin-top: 20px;
    width: 100%;
}
.reg-notice {
    border-top: 1px solid #aaa;
    font-size: 13px;
    margin-right: 15px;
    margin-top: 50px;
    padding-top: 25px;
}
.login-form {
    background: #fff none repeat scroll 0 0;
    border: 1px solid #bbb;
    border-radius: 3px;
    float: right;
    padding: 25px !important;
    width: 42%;
}
.login-form input {
    width: 100%;
}
 .tagline {
    border-bottom: 1px solid #ccc;
    text-align: center;
}
.tagline span {
    background: #fff none repeat scroll 0 0;
    color: #666666;
    display: inline-block;
    font-size: 12px;
    font-weight: bold;
    padding: 3px 5px;
    position: relative;
    top: 10px;
}
.fill-img {
    border: 1px solid #aaa;
    color: #0e5486;
    float: right;
    font-size: 100px;
    line-height: 120px;
    text-align: center;
    width: 21%;
}
.simplified-form > p {
    float: left;
    margin-top: 20px;
    width: 79%;
}
.notice-populate {
    background: #dfefe0 none repeat scroll 0 0;
    border: 1px solid #bbdebd;
    color: #2c782f;
    font-size: 12px;
    margin-bottom: 10px;
    padding: 5px 10px;
}
.notice-populate .fa{
    padding-right: 10px;
}
.st-l {
    border-bottom: 1px solid #999 !important;
    height: 80px;
}
.sel-btn p {
    font-size: 13px;
    font-weight: 600;
    margin: 5px 0;
    text-align: center;
}
#plan_46 .sel-btn {
    padding-top: 0;
}
.login-page .account-menu-content li {
    background: #fff none repeat scroll 0 0;
    border: 1px solid #ddd;
    float: left;
    margin-bottom: 1%;
    margin-right: 1%;
    padding: 0;
    width: 32%;
}
.login-page .account-menu-content li a {
    float: left;
    padding: 6px 10px !important;
    width: 100%;
}
.login-page .account-menu-content li a:hover {
    background: #eee;
}
.my-account-page .account-menu-content li {
    background: #fff none repeat scroll 0 0;
    border: 1px solid #ddd;
    float: left;
    margin-bottom: 1%;
    margin-right: 1%;
    padding: 0;
    width: 32%;
}
.my-account-page .account-menu-content li a {
    float: left;
    padding: 6px 10px !important;
    width: 100%;
}
.my-account-page .account-menu-content li a:hover {
    background: #eee;
}
.search-page .tabs a {
    padding: 0 10px;
	font-weight: 400;
}
.search-page .tabs li {
    border-top: 1px solid #DDD;
	border-left: 1px solid #DDD;
	border-right: 1px solid #DDD;
	height: auto !important;
}
.search-page .tabs li.active {
    border-color: #0e5486 !important;
}
.search-page .tabs li.active a {
	background: #0e5486 !important;
}
.search-page .tabs {
	height: auto !Important;
	margin-bottom: 0 !Important;
	border: none !Important;
}
.search-page .tab_area {
    background: #fff none repeat scroll 0 0;
    border: 1px solid #ddd;
    padding: 15px;
}
.search-page ul.tabs > li.more.opened {
	box-shadow: none !Important;
	background: #0e5486 !important;
	border-color: #0e5486 !important;
}
.search-page ul.tabs > li.opened > span {
	background: #fff;
}
.search-page ul.tabs > li.overflowed.opened {
	border: none !important;
}
.search-page ul.tabs > li.overflowed > ul {
	border: none !Important;
	padding: 0 !Important;
}
.kws-block .options ul li {
    float: left;
    width: 33%;
}
.kws-block .options ul li label {
    font-weight: 400 !important;
	font-size: 13px !important; 
}
.account_area .clearfix {
    padding: 0 !important;
}
.account_area .account-menu-content li {
    border-bottom: 1px solid #ddd;
    float: left;
    width: 100%;
	padding: 0 !Important;
}
.account_area .account-menu-content li a {
    background: #fff none repeat scroll 0 0;
    float: left;
    padding: 7px 15px !important;
    width: 100% !important;
}
.account_area .account-menu-content li a:hover {
	background: #eee;
}
.account_area .welcome {
    border-bottom: 1px solid #ddd;
    font-size: 14px;
    padding: 11px 10px;
}
.select-span.hint {
    float: left;
    width: 100%;
    z-index: 100000;
}
#listings .main-column {
    background: #f7f7f7 none repeat scroll 0 0;
}
#listings .item .ad-info {
	padding-top: 10px;
}
#listings .item .navigation-column {
	padding-top: 10px;
}
#listings .item .short-info {
	padding-top: 0 !important;
}
#listings {
	margin: 0 !important;
}
#listings article {
	padding: 0 !Important;
	border-bottom: 0 !Important;
}
article .price-tag span {
    color: #c8383d;
    font-size: 21px !important;
    font-weight: 600 !important;
}
article .price-tag {
    float: left;
    line-height: 20px;
    margin-right: 15px !important;
}
.price-change {
    background: #c8383d none repeat scroll 0 0;
    border: medium none;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 2px 8px;
}
.account_page_left .clearfix {
    background: #fcfcfc none repeat scroll 0 0 !important;
    border: 1px solid #ddd !important;
    font-size: 14px;
    padding: 20px !important;
} 

*::before, *::after {
    box-sizing: border-box;
}
*::before, *::after {
    box-sizing: border-box;
}
.modal .price-diff.increase {
    background: #bf1f1f none repeat scroll 0 0;
    color: #fff;
    font-size: 12px;
    padding: 2px 5px;
}
.modal .price-diff.reduce {
    background: #218c29 none repeat scroll 0 0;
    color: #fff;
    font-size: 12px;
    padding: 2px 5px;
}
.modal .price-diff.reduce:before {
    font-family: "FontAwesome";
	content: "\f175";
	font-size: 11px;
    padding-right: 6px;
}

.modal .price-diff.increase:before {
    font-family: "FontAwesome";
	content: "\f176";
	font-size: 11px;
    padding-right: 6px;
}
.jets_short_links {
	width: 100%;
	float: left;
}
.jets_short_links > div {
	background: transparent !Important;
	width: 100%;
	padding: 0 !important;
	float: left;
}
.single_pistons_quick_links {
	width: 100%;
	float: left;
}
.single_pistons_quick_links > div {
	background: transparent !Important;
	width: 100%;
	padding: 0 !important;
	float: left;
}
.aviation_services_quick_links {
	width: 100%;
	float: left;
}
.aviation_services_quick_links > div {
	background: transparent !Important;
	width: 100%;
	padding: 0 !important;
	float: left;
}

.engines_quick_links {
	width: 100%;
	float: left;
}
.engines_quick_links > div {
	background: transparent !Important;
	width: 100%;
	padding: 0 !important;
	float: left;
}

.aircraft_parts_quick_links {
	width: 100%;
	float: left;
}
.aircraft_parts_quick_links > div {
	background: transparent !Important;
	width: 100%;
	padding: 0 !important;
	float: left;
}

.multi_engine_quick_links {
	width: 100%;
	float: left;
}
.multi_engine_quick_links > div {
	background: transparent !Important;
	width: 100%;
	padding: 0 !important;
	float: left;
}

.turboprobs_quick_links {
	width: 100%;
	float: left;
}
#brcr {
	width: 100%;
	float: left;
	height: 30px;
}
.turboprobs_quick_links > div {
	background: transparent !Important;
	width: 100%;
	padding: 0 !important;
	float: left;
}
.main-nav {

}
.warbirds_quick_links {
	width: 100%;
	float: left;
}
.warbirds_quick_links > div {
	background: transparent !Important;
	width: 100%;
	padding: 0 !important;
	float: left;
}

.sailplanes_quick_links {
	width: 100%;
	float: left;
}
.sailplanes_quick_links > div {
	background: transparent !Important;
	width: 100%;
	padding: 0 !important;
	float: left;
}

.helicopters_quick_links {
	width: 100%;
	float: left;
}
.helicopters_quick_links > div {
	background: transparent !Important;
	width: 100%;
	padding: 0 !important;
	float: left;
}
.rotary_wing_quick_links {
	width: 100%;
	float: left;
}
.rotary_wing_quick_links > div {
	background: transparent !Important;
	width: 100%;
	padding: 0 !important;
	float: left;
}
.pilot_clubs_quick_links {
	width: 100%;
	float: left;
}
.pilot_clubs_quick_links > div {
	background: transparent !Important;
	width: 100%;
	padding: 0 !important;
	float: left;
}
.quick-cat {
    float: left;
    margin-right: 2%;
    width: 31.996%;
}
.quick-cat:last-child {
    float: left;
    margin-right: 0%;
}
.quick-cat h2 {
    background: #555 none repeat scroll 0 0;
    color: #fff;
    float: left;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
    margin-top: 0;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
}
.quick-cat h2 a{
    background: #555 none repeat scroll 0 0;
    color: #fff;
    float: left;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
    margin-top: 0;
    padding: 5px 0;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
}
.quick-cat .cat-img{
    float: left;
    width: 100%;
}
.cat-img img {
    width: 100% !important;
	max-width: 100% !important;
}

@media only screen and (max-width: 767px) {
  .navbar-nav ul.mega-sub-menu {
    float: left;
    position: static;
    width: 100% !important;
  }
}

.navbar-nav ul.mega-sub-menu li.mega-menu-columns-1-of-6 {
  width: 20%;
}
.navbar-nav ul.mega-sub-menu li.mega-menu-columns-2-of-5 {
  width: 40%;
}
.navbar-nav ul.mega-sub-menu .mega-menu-item {
	float: left;
}
.navbar-nav ul.mega-sub-menu li.mega-menu-columns-3-of-5 {
  width: 60%;
}
.navbar-nav ul.mega-sub-menu li.mega-menu-columns-4-of-5 {
  width: 80%;
}
.navbar-nav ul.mega-sub-menu li.mega-menu-columns-5-of-5 {
  width: 100%;
}
#mega-menu-item-text-9 {
	background: #0e5486 !important;
	color: #FFF !important;
	font-size: 13px !important;
	border-top: 1px solid #fff !important;
}
.mega-menu-item-text-9 .textwidget{
	color: #FFF !important;
	font-size: 13px !important;
	line-height: 21px !important;
}
.mega-block-title {
    border-bottom: 1px dotted #0e5486 !important;
    color: #0e5486 !important;
    font-size: 13px !important;
	margin-bottom: 5px !important;
}

.mega-menu-columns-1-of-6 .textwidget a .fa {
	padding-right: 5px;
}
.mega-menu-columns-1-of-6 .textwidget a {
    font-size: 13px !important;
    padding-left: 5px !important;
	color: #333 !important;
}
.dropdown-menu {
	margin: 0 !important!;
	border: none !important;
	padding: 0 !important;
}
ul.mega-sub-menu > li.mega-menu-item {
    clear: none;
    color: #666;
    display: block;
    float: left;
    font-family: inherit;
    font-size: 14px;
    padding: 15px;
    vertical-align: top;
}

ul.mega-sub-menu > li.mega-menu-item h4.mega-block-title {
    border-color: #555;
    border-style: solid;
    border-width: 0;
    color: #555;
    display: block;
    font-family: inherit;
    font-size: 16px;
    font-weight: bold;
    margin: 0;
    padding: 0 0 5px;
    text-decoration: none;
    text-transform: uppercase;
    vertical-align: top;
}


ul.mega-sub-menu > li.mega-menu-item a {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border: 0 none;
    border-radius: 0;
    bottom: auto;
    box-shadow: none;
    box-sizing: border-box;
    clip: auto;
    color: #666;
    display: block;
    float: none;
    font-family: inherit;
    font-size: 14px;
	font-weight: 400;
    height: auto;
    left: auto;
    line-height: 1.7;
    list-style-type: none;
    margin: 0;
    min-height: 0;
    opacity: 1;
    outline: medium none;
    overflow: visible;
    padding: 0;
    position: relative;
    right: auto;
    text-align: left;
    text-decoration: none;
    text-transform: none;
    top: auto;
    transition: none 0s ease 0s ;
    vertical-align: baseline;
    visibility: inherit;
    width: auto;
}
.asalestatus {
    color: #888;
    font-size: 18px;
    font-weight: 400;
}
.price-title {
	margin-bottom: 5px !important;
}
#listings.grid article {
    margin-bottom: 2%;
    margin-right: 2%;
    height: 362px;
    overflow: hidden;
    width: 31.999%;
}

#listings.grid article:nth-child(3n+3) {
    margin-right: 0;
}
#listings.grid article .ad-info {
    float: left;
    padding: 0 15px;
    width: 100%;
}

#listings.grid article .ad-info.short-info .fields .table-cell {
    border-right: medium none;
    float: left;
    margin-right: 0;
    padding-top: 0;
    width: 100%;
}
#listings.grid article .ad-info.short-info .fields {
	padding-top: 10px;
}

#listings.grid article .price-change {
    float: right;
    font-size: 11px;
    font-weight: 400;
    padding: 2px 3px;
}
#listings.grid .main-column {
	height: 100%;
}
.categoryFilter .fieldset .body {
    background: #fbfbfb none repeat scroll 0 0 !important;
    border-bottom: 1px solid #eee;
    border-left: medium none !important;
    border-right: medium none !important;
    margin: 1px 0;
}

.latest_posts_wig .textwidget img {
    max-width: 96%;
}
section#listings div.picture > img {
    background-color: #fff;
    background-size: 100% auto;
}

ul.resp-tabs-list, p {
    margin: 0px;
    padding: 0px;
}

.resp-tabs-list li {
    font-weight: 600;
    font-size: 13px;
    display: inline-block;
    padding: 13px 15px;
    margin: 0 4px 0 0;
    list-style: none;
    cursor: pointer;
    float: left;
}

.resp-tabs-container {
    padding: 0px;
    background-color: #fff;
    clear: left;
}

h2.resp-accordion {
    cursor: pointer;
    padding: 5px;
    display: none;
}

.resp-tab-content {
    display: none;
    padding: 15px;
}

.resp-tab-active {
	border: 1px solid #0e5486 !important;
	border-bottom: none;
	margin-bottom: -1px !important;
	padding: 12px 14px 14px 14px !important;
	border-top: 4px solid #0e5486 !important;
	border-bottom: 0px #fff solid !important;
}

.resp-tab-active {
    border-bottom: none;
    background-color: #fff;
}

.resp-content-active, .resp-accordion-active {
    display: block;
}

.resp-tab-content {
    border: 1px solid #c1c1c1;
	border-top-color: #0e5486;
	width: 100%;
	float: left;
	background: #fff;
}

h2.resp-accordion {
    font-size: 13px;
    border: 1px solid #c1c1c1;
    border-top: 0px solid #c1c1c1;
    margin: 0px;
    padding: 10px 15px;
}

h2.resp-tab-active {
    border-bottom: 0px solid #c1c1c1 !important;
    margin-bottom: 0px !important;
    padding: 10px 15px !important;
}

h2.resp-tab-title:last-child {
    border-bottom: 12px solid #c1c1c1 !important;
    background: blue;
}

/*-----------Vertical tabs-----------*/
.resp-vtabs ul.resp-tabs-list {
    float: left;
    width: 30%;
	margin-top: 0 !important;
}

.resp-vtabs {
	width: 100%;
	float: left;
}
.resp-vtabs .resp-tabs-list li {
    display: block;
    padding: 15px 15px !important;
    margin: 0 0 4px;
    cursor: pointer;
    float: none;
}

.resp-vtabs .resp-tabs-container {
    padding: 0px;
    background-color: #fff;
    border: 1px solid #c1c1c1;
    float: left;
    width: 68%;
    min-height: 250px;
    border-radius: 0;
    clear: none;
}

.resp-vtabs .resp-tab-content {
    border: none;
    word-wrap: break-word;
}

.resp-vtabs li.resp-tab-active { 
position: relative;
z-index: 1;
margin-right: 0px !important;
padding: 14px 15px 15px 14px !important;
border-top: 1px solid;
border: 1px solid #0e5486 !important;
border-left: 4px solid #0e5486 !important;
margin-bottom: 4px !important;
border-right: 1px #FFF solid !important;
}

.resp-arrow {
    width: 0;
    height: 0;
    float: right;
    margin-top: 3px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 12px solid #c1c1c1;
}

h2.resp-tab-active span.resp-arrow {
    border: none;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 12px solid #9B9797;
}

/*-----------Accordion styles-----------*/
h2.resp-tab-active {
    background: #DBDBDB;/* !important;*/
}

.resp-easy-accordion h2.resp-accordion {
    display: block;
}

.resp-easy-accordion .resp-tab-content {
    border: 1px solid #c1c1c1;
}

.resp-easy-accordion .resp-tab-content:last-child {
    border-bottom: 1px solid #c1c1c1;/* !important;*/
}

.resp-jfit {
    width: 100%;
    margin: 0px;
}

.resp-tab-content-active {
    display: block;

}

h2.resp-accordion:first-child {
    border-top: 1px solid #c1c1c1;/* !important;*/
}

/*Here your can change the breakpoint to set the accordion, when screen resolution changed*/
@media only screen and (max-width: 768px) {
    ul.resp-tabs-list {
        display: none;
    }

    h2.resp-accordion {
        display: block;
    }

    .resp-vtabs .resp-tab-content {
        border: 1px solid #C1C1C1;
    }

    .resp-vtabs .resp-tabs-container {
        border: none;
        float: none;
        width: 100%;
        min-height: 100px;
        clear: none;
    }

    .resp-accordion-closed {
        display: none !important;
    }

    .resp-vtabs .resp-tab-content:last-child {
        border-bottom: 1px solid #c1c1c1 !important;
    }
}
#currency_selector .default .code {
    color: #555;
    float: left;
	font-weight: 600;
	font-size: 13px !important;
}
#currency_selector .default .symbol {
    color: #444;
    float: left;
	font-weight: 600;
	font-size: 13px !important;
}
#currency_selector .angle-down {
    color: #555;
    font-size: 18px;
    line-height: 18px;
    padding: 0 5px;
}
#currency_selector {
    padding: 7px 0;
}
.copyright-container .col-sm-4 {
    float: left;
}
.copyright-container .col-sm-8 {
    float: right;
}
#make-offer-form label {
    float: left;
    width: 30%;
}
#make-offer-form input {
    float: left;
    width: 70%;
}
#make-offer-form select {
    float: left;
    width: 70%;
}
#make-offer-form textarea {
    float: left;
    width: 70%;
}
.tabs-rent {
	width: 100% !important; 
	margin-bottom: 0 !Important;
}
.tabs-rent li {
    border: 1px solid #ddd;
    border-radius: 2px;
}
.tabs-rent li.active {
	border: none;
}
.tabs-rent li.active a {
    background: #0e5486 none repeat scroll 0 0 !important;
    border: medium none;
    border-radius: 2px 2px 0 0;
    margin-top: -1px;
}
.listing-details-rentals .top-navigation {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0 !important;
    padding-left: 0 !important;
}
 
.seller-short-rentals > div {
    background: #f5f5f5 none repeat scroll 0 0 !important;
    border: medium none !important;
    padding: 20px !important;
}
.inquiry-button > a {
    background: #0e5486 none repeat scroll 0 0;
    border-radius: 2px;
    color: #fff;
    float: left;
    padding: 5px 0;
    text-align: center;
    width: 100%;
}
.make-offer-btn > a:hover {
    background: #274875 none repeat scroll 0 0;
    color: #fff;
}
.inquiry-button > a:hover {
    background: #274875 none repeat scroll 0 0;
    color: #fff;
}
.seller-short-rentals div.picture img {
    height: 120px !important;
    width: 100% !important;
}
.seller-short-rentals div.picture {
	padding: 3px !important;
	border: 1px solid #aaa;
	background: #FFF;
	border-radius: 3px;
}
.seller-short-rentals .seller-info {
    padding-bottom: 0 !important;
}
.seller-short-rentals .owner-details .name {
    color: #222;
    font-weight: 600 !important;
    width: 60px !important;
}
.rent-this {
    float: left;
    font-size: 13px;
    font-weight: 600;
    line-height: 52px;
}
.rent-price {
    float: right;
}
.r-price {
    color: #c8383d;
    font-size: 30px;
    font-weight: 600;
}
.per-hour {
    font-size: 13px;
}
.price-include {
    float: left;
    font-size: 12px;
    text-align: right;
	color: #333;
    width: 100%;
}
.price-rental {
    color: #c8383d;
    float: left;
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px !important;
    width: 100%;
}
.per-hour {
	color: #333;
}
.inquiry-button {
    float: left;
    margin-bottom: 25px;
    width: 100%;
}
.operator-info h2 {
    background: #dedede none repeat scroll 0 0;
    font-size: 15px;
    font-weight: 600;
    line-height: 23px !important;
    padding: 1px 10px 4px 7px;
    text-align: center;
}
.medical_class {
    width: 39% !important;
}
#id_medical_special_issuance {
    margin-left: 10px;
    width: 3% !important;
}
#id_medical_issued_month, #id_last_review_month, #id_last_ipc_month {
	width: 25% !important;
	margin-right: 10px;
}
#id_medical_issued_day, #id_last_review_day, #id_last_ipc_day {
	width: 15% !important;
	margin-right: 10px;
}
#id_medical_issued_year, #id_last_review_year, #id_last_ipc_year {
	width: 15% !important;
}
.divider-row {
    border-bottom: 1px dotted #aaa;
    color: #0e5486;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 5px;
    text-align: left;
}
#ratings_checkbox {
	width: 70%;
	float: left;
}
#ratings_checkbox .span2 {
	width: 33% !important;
	float: left;
}
#ratings_checkbox .span2 label{
	width: 100% !Important;
}
.message-mark {
    background: #3d7ca8 none repeat scroll 0 0;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    margin-right: 5px;
    padding: 2px 8px;
}
.rentals-short .price-include {
    float: right;
    margin-right: 8px;
    width: auto;
}
.rental-location {
    float: left;
    font-size: 13px;
    padding-top: 46px;
    width: 60%;
}
.rental-location .fa{
    padding-right: 8px;
}
#parentHorizontalTab {
    float: left !important;
}
#comments_dom {
    margin-top: 20px;
}
.navbar-nav > li:not(:last-child):after {
	content: '';
	display: inline-block;
	width: 2px;
	height: 35px;
	margin: 0;
	vertical-align: middle;
}
.post-button {
    float: right !important;
    position: absolute !important;
    right: 0;
}
.post-button a {
    background: #c8383d;
    line-height: 14px !important;
    margin-top: 5px;
    padding-top: 3px !important;
    margin-bottom: 7px;
    padding-bottom: 3px !important;
    border-radius: 2px;
}
.post-button a:hover, .post-button a:focus {
    background: #a9252a !important;
    line-height: 14px !important;
    margin-top: 5px !important;
    padding-top: 3px !important;
    margin-bottom: 7px !important;
    padding-bottom: 3px !important;
    border-radius: 2px;
	text-shadow: none !important;
}
.home-icon a {
    font-size: 24px;
    line-height: 21px !important;
    padding: 6px 20px 6px 15px !important;
    vertical-align: sub;
}
.multicat.level2 {
	display: none;
}
.multicat.level3 {
	display: none;
}
.flevel2 {
	display: none;
}
.home-img {
    background: url('/templates/aviadvise/img/header-img.jpg') no-repeat center center / cover;
    height: 258px;
}
.page-header {
	border-bottom: none !Important;
}
.side_block:not(.no-style) {
    background: #fefefe;
    box-shadow: 0 0px 2px rgba(0, 0, 0, 0.15);
    padding: 25px;
}
.side_block > div {
    padding: 0 !important;
    border: none !important;
	background: #fefefe !important
}

.general_search .search-item {
    padding-bottom: 15px;
}
.general_search .multicat {
    margin-bottom: 15px;
}
.general_search .field {
    padding-bottom: 5px;
}
.general_search .search-button {
    width: 100%;
}
.general_search .search-button input {
    width: 100%;
}
#advanced_general_search_title {
    cursor: pointer;
    text-align: center;
    background: #ddd;
    margin-top: 15px;
    padding: 9px 0px;
    font-weight: 600;
	margin-bottom: 15px;
}
.general_search select {
    border-radius: 3px;
    border: 1px solid #ccc;
}

.tt-menu {
    width: 100%;
    background: #FFF;
    border: 1px solid #DDD;
    padding: 10px;
    max-height: 300px;
    overflow-y: auto;
}
.autocomplete-aircrafts {
    width: 100%;
    float: left;
    margin-bottom: 30px;
}

.listings_box h3 {
    overflow: hidden;
	text-transform: uppercase;
	display: block !important;
    text-align: center;
	padding-bottom: 15px;
}
.listings_box h3:before,
.listings_box h3:after {
    background-color: #000;
    content: "";
    display: inline-block;
    height: 3px;
    position: relative;
    vertical-align: middle;
    width: 50%;
}
.listings_box h3:before {
    right: 0.5em;
    margin-left: -50%;
}
.listings_box h3:after {
    left: 0.5em;
    margin-right: -50%;
}
.listings_box > div {
    padding: 0 !important;
    background: transparent !important;
}
.listings_box li a img {
    border-bottom: 4px solid #004a80;
    height: 145px;
}

.home-page #main_container {
    background: #e5e6e7;
}
.inside-home-block {
	margin: 0 auto;
}
.home-middle-block {
    background: #004a80;
    margin: 0 auto;
    width: 100%;
    position: relative;
    overflow: hidden;
}
.home_middle {
    background: url("../img/home-plane.png") no-repeat right 10px;
    background-size: auto 86%;
}
.home_middle > div {
    background: transparent !important;
    color: #FFF;
    padding-left: 0 !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    width: 60%;
    padding-right: 0 !important;
}
.home_middle h3 {
	color: #FFF !important;
}
.home-page .middle {
	margin-bottom: 0;
	padding-top: 20px;
	padding-bottom: 30px;
}
.listings_box ul li .ad-info {
    padding: 10px !important;
}
.side_block h3 {
    margin-top: 0;
}
.bb_aviadvise_partners .banners-box .banner {
	display: inline-block !important;
	margin-left: 1% !important;
	margin-right: 1% !important;
	width: 18% !important;
}
.make-offer-page .inside-container {
	padding-top: 30px !important;
}
.news-img {
    display: inline-block;
    float: left;
    width: 25% !important;
	height: 120px;
	
}
.news-img img {
    width: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	display: inline-block;
}
.news-content {
	width: 73%;
	float: right;
}
.news-img > div {
    width: 100%;
    height: 100%;
}
.logo-wrap .main-nav {
	float: right;
	width: 75% !important;
}
.navbar-left {
	float: right;
}
.active-item a {
	background: transparent !important;
}
.post-btn {
    background: #c8383d;
    margin-left: 12px;
    margin-top: 0;
    padding: 5px 15px !important;
    float: right;
    color: #FFF !important;
}
 
.other_services .mp0 li {
	float: left;
	width: 50%;
	background: #fff;
	color: #555 !important;
	border-bottom: 1px solid #ddd;
	border-left: 1px solid #DDD;
}
.other_services {
	background: #fefefe;
	box-shadow: 0 0px 2px rgba(0, 0, 0, 0.15);
}
.other_services .mp0 li a {
	width: 100%;
	float: left;
	color: #555;
	background: #fff;
	padding: 8px 10px;
}
.other_services .mp0 li a:hover {
	background: #ddd;
}
.other_services .mp0 li a i {
	padding-right: 6px;
}
.service_head {
	background: #fff;
	color: #666;
	padding: 7px 12px;
	text-align: center;
	border-left: 1px solid #eee;
	border-bottom: 1px solid #eee;
}
.listings_box .price-tag.p-number {
	background: #c8383d;
	color: #FFF;
	padding: 4px 5px 2px 4px;
	font-weight: 700 !important;
	line-height: 18px;
}
.listings_box .price_tag {
	text-align: right;
}
.listings_box h3 {
	color: #ed1b34 !important;
	font-size: 23px !important;
	font-weight: 600;
}
.bb_aviadvise_partners h3 {
	text-align: center !important;
	width: 100%;
	text-transform: uppercase;
	font-size: 23px !important;
	color: #ed1b34 !important;
	font-weight: 600;
}
.home-img .inside-container {
    width: 100%;
    height: 100%;
    background-color: rgba(16, 63, 97, 0.84);
    width: 100%;
    max-width: 100% !important;
}
.img-text {
	margin: 0 auto;
}
.img-text-inside {
    padding-top: 10px;
    display: inline-block;
    width: 100%;
    background: rgba(2,2,2,0.1);
    padding-bottom: 10px;
	font-size: 23px;
}
.img-in {
	width: 67%;
	float: right;
	background: rgba(0,0,0,0.4);
	border-radius: 2px;
}
.img-text-small {
	width: 100%;
	display: inline-block;
	text-align: center;
	font-size: 14px;
	padding-top: 10px;
	padding-bottom: 15px;
}
.img-btn a {
	color: #fff;
	background: #004a80;
	padding: 5px 13px;
	border-radius: 3px;
	display: inline-block;
	font-size: 20px;
}
.img-btn {
	padding-bottom: 20px;
	display: inline-block;
	padding-top: 11px;
}
ul.list-planes li:before {
    content: "\f072";
    transform: rotate(45deg);
    font-family: 'FontAwesome';
    font-size: 18px;
    color: #2f5e8e;
    margin-left: -30px;
    display: inline-block;
    width: 30px;
    position: relative;
    top: 7px;
}
.down-content ul.list-planes li {
    border: 0 none;
    padding-right: 0;
    padding-left: 40px;
    font-size: 14px;
    color: #444;
    line-height: 26px;
    margin-bottom: 15px;
}
.down-content .post-info {
    border-left: 4px solid #f4c23d;
    padding-left: 15px;
}
.img-left {
    float: left;
    width: 49.9%;
    background: rgba(2,2,2,0.05);
}
.img-right {
    float: right;
	 background: rgba(2,2,2,0.05);
    width: 49.9%;
}
.img-left .img-text-small {
    padding-bottom: 30px;
}
.email-phone {
    font-size: 13px;
    line-height: 28px;
}
.box-img1 {
	width: 100%;
	height: 102px;
	background-image: url(../img/sell-aircraft.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}
.box-img2 {
	width: 100%;
	height: 102px;
	background-image: url(../img/buy-aircraft.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}
.box-img3 {
	width: 100%;
	height: 102px;
	background-image: url(../img/flight-training.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}
.box-img4 {
	width: 100%;
	height: 102px;
	background-image: url(../img/rent-aircraft.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}
.home-box:hover {
	opacity: 0.8;
	font-weight: 600;
}
.box-text {
	color: #FFF;
	font-size: 21px;
	font-weight: 400;
	text-align: center;
}
.home-box-heading {
	text-align: center;
	width: 100%;
	float: left;
	color: #fff;
	font-size: 25px;
	line-height: 85px;
}
.home-box {
	width: 25%;
	float: left;
}
#listing_form {
	width: 100%;
	float: left;
}
.notice-populate {
	width: 100%;
	float: left;
}
.select-category .col-md-4 {
	width: 100%;
	float: left;
}
.view-details-page .fieldset {
	width: 100%;
	float: left;
	margin-bottom: 7px;
}
#area_listing .fieldset .body {
	width: 100%;
	float: left;
}
#area_listing .table-cell.col-md-6.two-columns {
	width: 100%;
}
#area_comments .body {
	display: block !important;
}
.listings_box .price_tag .converted-price {
	background: #c8383d;
	color: #FFF;
	padding: 4px 5px 2px 4px;
	font-weight: 700 !important;
	line-height: 18px;
}