BODY
{
font-family: Calibri, 'calibri_web', verdana;
background-image: url('./img/bg.jpg');
background-position: top center;
background-attachment: fixed;
font-size: 24px;
color: #000;
margin: 0px;
overflow-y: scroll;
}

.siteriatable
{
/* position: absolute; */
display: inline-block;
text-align: left;
bottom: 0px;
left: 0px;
color: #000;
font-size: 12px;
/* width: 400px; */
}

.siteriaurl
{
text-decoration: none;
color: #fff;
font-weight: bold;
font-size: 20px;
text-shadow: 0 0 5px #000;
}

.siteriaurl:HOVER
{
text-shadow: 0 0 10px #000;
}

.siteriatable IMG
{
margin-top: 5px;
}

INPUT, TEXTAREA, BUTTON
{
font-family: Calibri, 'calibri_web', verdana;
}

/* кнопка наверх */
.b-top {z-index:2600;position:fixed;left:0;bottom:90px;width:0%;opacity: 0.5;filter:alpha(opacity=50); background-color: green;}
.b-top:hover {opacity:0.9;filter:alpha(opacity=90);cursor:pointer;}
.b-top-but {z-index:2600;position:absolute;display:block;left:56px;bottom:0;margin:0 0 0 100%;padding:32px 12px 4px;
color:white;background:#C80405 url('./img/top.png') no-repeat 50% 11px;border-radius:0px;}

/* шрифты  */

@media all and (min-width: 620px) {
	@font-face {
		font-family: 'calibri_web';
		src: url('/fonts/calibri.eot');
		src: url('/fonts/calibri.eot?#iefix') format('embedded-opentype'),
			 url('/fonts/calibri.woff') format('woff'),
			 url('/fonts/calibri.ttf') format('truetype'),
			 url('/fonts/calibri.svg#calibri') format('svg');
		font-weight: normal;
		font-style: normal;
	}
	@font-face {
		font-family: 'calibri_web';
		src: url('/fonts/calibrib.eot');
		src: url('/fonts/calibrib.eot?#iefix') format('embedded-opentype'),
			 url('/fonts/calibrib.woff') format('woff'),
			 url('/fonts/calibrib.ttf') format('truetype'),
			 url('/fonts/calibrib.svg#calibri') format('svg');
		font-weight: bold;
		font-style: normal;
	}
	@font-face {
		font-family: 'calibri_web';
		src: url('/fonts/calibrii.eot');
		src: url('/fonts/calibrii.eot?#iefix') format('embedded-opentype'),
			 url('/fonts/calibrii.woff') format('woff'),
			 url('/fonts/calibrii.ttf') format('truetype'),
			 url('/fonts/calibrii.svg#calibri') format('svg');
		font-weight: normal;
		font-style: italic;
	}
	@font-face {
		font-family: 'calibri_web';
		src: url('/fonts/calibriz.eot');
		src: url('/fonts/calibriz.eot?#iefix') format('embedded-opentype'),
			 url('/fonts/calibriz.woff') format('woff'),
			 url('/fonts/calibriz.ttf') format('truetype'),
			 url('/fonts/calibriz.svg#calibri') format('svg');
		font-weight: bold;
		font-style: italic;
	}
}


.imgurl
{
margin-top: 14px;
margin-left: 1px;
	filter: saturate(100%); 
	-webkit-filter: saturate(100%); 
	-moz-filter: saturate(100%); 
	-o-filter: saturate(100%); 
	-ms-filter: saturate(100%);
		brightness(100%); 
	-webkit-filter: brightness(100%); 
	-moz-filter: brightness(100%); 
	-o-filter: brightness(100%); 
	-ms-filter: brightness(100%);
	transition: filter .30s ease-in-out;
   -moz-transition: -moz-filter .30s ease-in-out;
   -webkit-transition: -webkit-filter .30s ease-in-out;
}

.imgurl:HOVER
{
	filter: saturate(150%); 
	-webkit-filter: saturate(150%); 
	-moz-filter: saturate(150%); 
	-o-filter: saturate(150%); 
	-ms-filter: saturate(150%);
	brightness(150%); 
	-webkit-filter: brightness(150%); 
	-moz-filter: brightness(150%); 
	-o-filter: brightness(150%); 
	-ms-filter: brightness(150%);
	
	transition: filter .30s ease-in-out;
   -moz-transition: -moz-filter .30s ease-in-out;
   -webkit-transition: -webkit-filter .30s ease-in-out;
}

.imgurlactive
{
	filter: saturate(150%); 
	-webkit-filter: saturate(150%); 
	-moz-filter: saturate(150%); 
	-o-filter: saturate(150%); 
	-ms-filter: saturate(150%);
	brightness(150%); 
	-webkit-filter: brightness(150%); 
	-moz-filter: brightness(150%); 
	-o-filter: brightness(150%); 
	-ms-filter: brightness(150%);
	
	transition: filter .30s ease-in-out;
   -moz-transition: -moz-filter .30s ease-in-out;
   -webkit-transition: -webkit-filter .30s ease-in-out;
}

#filter
{
display: none;
opacity: 0;
}

/* модальное окно*/
#modal_form {
	width: 400px; 
	height: 554px; /* Размеры должны быть фиксированы */
	border-radius: 0px;
	border: 0px #000 solid;
	background: #fff;
	position: fixed; /* чтобы окно было в видимой зоне в любом месте */
	top: 45%; /* отступаем сверху 45%, остальные 5% подвинет скрипт */
	left: 50%; /* половина экрана слева */
	margin-top: -277px;
	margin-left: -200px; /* тут вся магия центровки css, отступаем влево и вверх минус половину ширины и высоты соответственно =) */
	display: none; /* в обычном состоянии окна не должно быть */
	opacity: 0; /* полностью прозрачно для анимирования */
	z-index: 101; /* окно должно быть наиболее большем слое */
	padding: 20px 20px;
}
/* Кнопка закрыть для тех кто в танке) */
#modal_form #modal_close {
	width: 21px;
	height: 21px;
	position: absolute;
	top: 10px;
	right: 10px;
	cursor: pointer;
	display: block;
}
/* Подложка */
#overlay {
	z-index: 100; /* подложка должна быть выше слоев элементов сайта, но ниже слоя модального окна */
	position: fixed; /* всегда перекрывает весь сайт */
	background-color: #000; /* черная */
	opacity: 0.8; /* но немного прозрачна */
	width: 100%; 
	height: 100%; /* размером во весь экран */
	top: 0; 
	left: 0; /* сверху и слева 0, обязательные свойства! */
	cursor: pointer;
	display: none; /* в обычном состоянии её нет) */
}

.header
{
background-image: url('./img/header-bg.png');
background-position: center top;
background-attachment: fixed;
width: 100%;
height: 257px;
}

.bodytext
{
width: 1000px;
margin: auto;
position: relative;
}

.headerdiv11, .headerdiv12, .headerdiv21, .headerdiv22
{
display: inline-block;
vertical-align: middle;
width: 49%;
}

.headerdiv21
{
width: 70%;
}

.headerdiv22
{
width: 29%;
text-align: right;
}

.blue
{
color: #0086F7;
}

.white
{
color: #fff;
}

.green
{
color: #BFD92E;
}

.mainlogo
{
margin-top: 28px;
}

.headerdiv12
{
text-align: right;
}

.menudiv
{
margin-top: 10px;
}

.buttons
{
border: none;
text-decoration: none;
color: #fff;
background-color: #0086F7;
font-size: 20px;
padding: 10px 31px;
	-moz-transition: all .2s linear;
	-o-transition: all .2s linear;
	-webkit-transition: all .2s linear;
cursor: pointer;	
}

.buttons:HOVER
{
background-color: #BFD92E;
color: #000;
}

.buttons2
{
border: none;
text-decoration: none;
color: #000;
background-color: #fff;
font-size: 20px;
padding: 10px 31px;
	-moz-transition: all .2s linear;
	-o-transition: all .2s linear;
	-webkit-transition: all .2s linear;
cursor: pointer;	
}

.buttons2:HOVER
{
background-color: #BFD92E;
color: #000;
}


.menuurl
{
text-decoration: none;
color: #fff;
font-size: 26px;
padding: 10px;
	-moz-transition: all .2s linear;
	-o-transition: all .2s linear;
	-webkit-transition: all .2s linear;
}

.menuurl:HOVER
{
background-color: #BFD92E;
color: #000;
}
.menuurlActive{
background-color: #BFD92E;
color: #000;	
}
.menuurl2
{
text-decoration: none;
color: #fff;
background-color: #0086F7;
font-size: 26px;
padding: 10px 31px;
	-moz-transition: all .2s linear;
	-o-transition: all .2s linear;
	-webkit-transition: all .2s linear;
}

.menuurl2:HOVER
{
background-color: #BFD92E;
color: #000;
}

.menuactive
{
background-color: #BFD92E;
color: #000;
}

.menuactive2
{
background-color: #BFD92E;
color: #000;
}

.menuslash
{
margin-bottom: -4px;
}

.headerbutton
{
background-color: #fff;
color: #0086F7;
font-size: 18px;
border: none;
padding: 15px 30px;
margin-right: 10px;
}

.headerbutton:HOVER
{
cursor: pointer;
box-shadow: 0 0 10px #555;
}

.footercall
{
margin-bottom: 82px;
margin-right: 0px;
}

.formsend
{
background-color: #0086F7;
color: #fff;
font-size: 18px;
border: none;
padding: 15px 30px;
}

.textfield
{
padding: 30px;
padding-bottom: 60px;
border-top: solid 14px #BFD92E;
background-image: url('./img/body-bg.png');
margin-top: 400px;
}

.nametext
{
font-weight: normal;
color: #0086F7;
border-bottom: solid 4px #BFD92E;
display: inline;
font-size: 40px;
}

.nametext2
{
font-weight: normal;
color: #FFF;
border-bottom: solid 4px #55D2FE;
display: inline;
font-size: 40px;
}

.bold
{
font-weight: bold;
}

.urls
{
text-decoration: none;
color: #0086F7;
border-bottom: solid 2px #BFD92E;
}

.bluecheck
{
color: #0086F7;
margin-right: 20px;
margin-left: 20px;
}

.spisok
{
margin-top: 10px;
margin-bottom: 10px;
}

.bluediv
{
/* min-height: 540px; */
background-color: #0086F7;
}

.bluediv2
{
min-height: 250px;
background: #0086F7 url('./img/footer-bottom-line.png') center bottom no-repeat;
}

.whitediv2
{
height: 85px;
background-color: #fff;
margin-bottom: -4px;
overflow-x: hidden;
}

.whitediv
{
min-height: 700px;
padding-top: 40px;
background-color: #fff;
}

.whitebg
{
background-color: #fff;
}

.footer
{
background: url('./img/hot-topline.png') top center no-repeat;
padding-top: 61px;
margin-top: -61px;
position: relative;
}

.formimg
{
float: right;
margin-top: 130px;
}

.inputorder
{
border: solid 2px #000;
font-size: 28px;
padding: 15px 20px;
margin-bottom: 20px;
width: 100%;
box-sizing: border-box;
}

.inputorder2
{
border: solid 2px #000;
font-size: 20px;
padding: 10px 20px;
margin-bottom: 20px;
width: 100%;
box-sizing: border-box;
}

.formdiv
{
display: inline-block;
max-width: 500px;
text-align: right;
}

.formdiv P
{
text-align: justify;
}

.footerlogo
{
margin-top: -15px;
}

.cityleft
{
position: absolute;
left: -469px;
}

.cityright
{
position: absolute;
right: -519px;
}

.footer1
{
color: #fff;
min-width: 49%;
display: inline-block;
vertical-align: middle;
}

.footer2
{
color: #fff;
min-width: 49%;
display: inline-block;
text-align: right;
position: relative;
vertical-align: bottom;
}

.footercopy
{
color: #000;
}

.submenu
{

}

.submenu A
{
margin-right: 10px;
}

.submenu A:last-child
{
margin-right: 0px !important;
}

.filtrdiv
{
/* display: none; */
background-color: #0086F7;
padding: 30px;
text-align: center;
}

.filtr
{
font-size: 20px;
color: #fff;
width: 100%;
text-align: left;
}

.filtr TD
{
/* border: solid 1px #fff; */
height: 40px;
}

.hidden
{
display: none;
}

.object
{
border-top: solid 2px #0086F7;
border-bottom: solid 2px #0086F7;
margin-bottom: 20px;
margin-top: 20px;
padding: 20px 0px;
font-size: 16px;
position:relative;
}
.object P{
margin: 10px 0px;	
}
.nameobject
{
color: #0086F7;
font-weight: bold;
font-size: 24px;
margin-top: 0px;
margin-bottom: 20px !important;
}

.pricetd
{
text-align: right;
font-size: 24px;
}

.prices
{
background-color: #BFD92E;
color: #000;
padding: 10px 30px;
font-weight: bold;
position: absolute;
right: 0px;
top:20px;
font-size: 24px;
}

.objectpic
{
width: 330px;
}

.objectname
{
font-weight: bold;
min-width: 100px;
display:inline-block;
}

.sold
{
position: absolute;
z-index: 100;
margin-left: 50px;
margin-top: 50px;
}

.center
{
text-align: center;
}

.left
{
text-align: left;
position: relative;
}

.buttontd
{
text-align: center;
}

.inputs
{
height: 30px;
font-size: 20px;
width: 49.5%;
border: none;
padding: 0px 20px;
box-sizing: border-box;
}

.inputs2
{
height: 30px;
font-size: 20px;
border: none;
padding: 0px 20px;
box-sizing: border-box;
}

.inputs2 OPTION
{
padding: 5px;
margin-top: 5px;
margin-bottom: 5px;
font-size: 16px;
}

.hottable1
{
color: #fff;
text-align: center;
display: inline-block;
margin: 40px;
}

.dotted
{
color: #fff;
border: solid 2px #fff;
text-decoration: none;
font-size: 20px;
padding: 10px 31px;
	-moz-transition: all .2s linear;
	-o-transition: all .2s linear;
	-webkit-transition: all .2s linear;
cursor: pointer;
}

.dotted:HOVER
{
border: solid 2px #BFD92E;
background-color: #BFD92E;
color: #000;
}

.hoturl
{
padding-top: 30px;
}

.pricetdhot
{
font-weight: bold;
}

.butright
{
right: 0px;
position: absolute;
top: 10px;
}

.adressheader 
{
margin: 0px;
margin-top: 18px;
margin-bottom: 8px;
}
.objectImg{
width: 330px;	
display: inline-block;
vertical-align:top;
}
.objectText{
width: 610px;	
display: inline-block;	
vertical-align:top;
}
.hotdiv1{
display:inline-block;
color:#fff;
margin: 40px;
}
.hotdiv1 P{
margin:0px;	
}
.buttonPage{
border: none;
text-decoration: none;
color: #fff;
background-color: #0086F7;
font-size: 20px;
padding: 6px 20px;
	-moz-transition: all .2s linear;
	-o-transition: all .2s linear;
	-webkit-transition: all .2s linear;
cursor: pointer;
margin-right: 4px;
}
.buttonPage:HOVER{
background-color: #BFD92E;
color: #000;
}
.buttonPageActive{
background-color: #BFD92E;
color: #000;	
}
.nourl{
text-decoration:none;
color:inherit;
	
}
.pageDiv{
margin:40px 0px;	
}
.divotzyv{
border-top: solid 2px #0086F7;
border-bottom: solid 2px #0086F7;
margin-bottom: 20px;
margin-top: 20px;
padding: 20px 0px;
position: relative;	
}
.podpis{
text-align: right;
font-size: 18px;
margin-top:0px;
}
.answerotzyvy{
text-align: right;
font-size: 20px;
margin: 0px;
margin-top:20px;
}
.nameotzyvy{
font-weight:bold;
margin:0px;	
}
.textotz{
margin:0px;	
}
.more{
display:none;	
}
.mobileHeader{
display:none;	

}
.mobileMenuOverflow{
display:none;	
}
.filtr1{
display:inline-block;
width:300px;	
vertical-align: top;
}
.filtr2{
display:inline-block;
width:580px;
vertical-align: top;		
}