@charset "utf-8"; /* Мои стили */
/* Logo **************************/ 
.myLogo {
	width:151px;
	height:62px;
	padding:0px;
}
.myLogo .textLogo1 {
	width:88px;
	height:42px;
	float:left;
	border-bottom:3px solid #5ec79e;
	color:#5ec79e;
	font-size:35px;
	padding-top:8px;
}
.myLogo .textLogo2 {
	width:63px;
	height:42px;
	float:left;
	color:#FFF;
	background:#5ec79e;
	font-size:29px;
	padding-top:9px;
	padding-left:5px;
	border:1px solid #5ec79e;
	border-radius:15px 0px 15px 0px;
	-moz-border-radius:15px 0px 15px 0px;
	-webkit-border-radius:15px 0px 15px 0px;
	-khtml-border-radius:15px 0px 15px 0px;
	behavior: url(border-radius.htc);
}
.myLogo .textLogo3 {
	width:151px;
	height:20px;
	float:left;
	color:#5ec79e;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.myLogo:hover .textLogo1 {
	color:#666;
	border-bottom:3px solid #666;
}
.myLogo:hover .textLogo2 {
	background:#666;
	border:1px solid #666;
}
.myLogo:hover .textLogo3 {
	color:#666;
}
/* Menu **************************/ 
.myMenu {
	display:none;
	cursor:pointer;
	float:right;
	margin-top:8px;
	border-bottom:0px;
	font-size:40px;
	background: none;
	color:#5ec79e;
	padding-left:8px;
	padding-right:8px;
	border:3px solid #5ec79e; 
	border-radius:8px 8px 8px 8px;
	-moz-border-radius:8px 8px 8px 8px;
	-webkit-border-radius:8px 8px 8px 8px;
	-khtml-border-radius:8px 8px 8px 8px;
	behavior: url(border-radius.htc);
}
.myMenu:hover {
	color:#666;
	border:3px solid #666; 
}
.myMenu:focus {
	color:#666;
	border:3px solid #666; 
}
/* Модальное окно ****************/ 
.modal {
	position:fixed; 
	z-index:1; 
	left:0; 
	top:0; 
	width:100%; 
	height:100%; 
	overflow:auto; 
	background-color:rgba(0, 0, 0, 0.3);
}
.modalBody {
	background-color:#fefefe; 
	margin:15% auto;
	margin-top:8%;
	width:50%;
	border:1px solid #e8e8e8; 
	border-radius:10px 10px 10px 10px;
	-moz-border-radius:10px 10px 10px 10px;
	-webkit-border-radius:10px 10px 10px 10px;
	-khtml-border-radius:10px 10px 10px 10px;
	behavior: url(border-radius.htc);
}
.modalHead {
	color:#aaa;
	border-bottom:1px solid #e8e8e8;
	padding:10px;
	padding-left:15px;
	padding-right:15px;
}
.close {
	color:#aaa;
	float:right; 
	font-size:28px; 
	font-weight:bold; 
	cursor:pointer;
}
.modalContent {
	padding:10px;
	padding-left:15px;
	padding-right:15px;
}
.modalContent input[type="text"], 
.modalContent input[type="email"], 
.modalContent textarea {
	width:100%;
	font-size:16px;
	padding:10px;
	border:1px solid #999;
	border-radius: 0 0 0 0;
	margin-bottom:10px;
}
.modalContent input[type="text"]:hover, .modalContent input[type="text"]:focus,
.modalContent input[type="email"]:hover, .modalContent input[type="email"]:focus, 
.modalContent textarea:hover, .modalContent textarea:focus {
	border:1px solid #5ec79e;
}
.modalContent a, .modalContent input[type="submit"] {
	text-decoration:none;
	width:100%;
	padding:10px;
	background:#5ec79e;
	color:#fff;
	border:1px solid #5ec79e;
	margin-bottom:10px;
	text-align:center;
}
.modalContent a:hover, .modalContent input[type="submit"]:hover {
	background:#999;
	border:1px solid #999;
}
.modalFooter {
	border-top:1px solid #e8e8e8;
	padding:10px;
	padding-left:15px;
	padding-right:15px;
	padding-bottom:50px;
}
.modalSubmit input[type="submit"] {
	float:left;
	width:64%;
	padding:10px;
	background:#5ec79e;
	color:#fff;
	border:1px solid #5ec79e; 
	border-radius:10px 0px 0px 10px;
	-moz-border-radius:10px 0px 0px 10px;
	-webkit-border-radius:10px 0px 0px 10px;
	-khtml-border-radius:10px 0px 0px 10px;
	behavior: url(border-radius.htc);
}
.modalSubmit input[type="submit"]:hover {
	background:#666;
	border:1px solid #666; 
}
.modalReset input[type="reset"], .modalReset button {
	text-decoration:none;
	float:right;
	width:35%;
	padding:10px;
	background:#999;
	color:#fff;
	border:1px solid #999; 
	border-radius:0px 10px 10px 0px;
	-moz-border-radius:0px 10px 10px 0px;
	-webkit-border-radius:0px 10px 10px 0px;
	-khtml-border-radius:0px 10px 10px 0px;
	behavior: url(border-radius.htc);
}
.modalReset input[type="reset"]:hover, .modalReset button:hover {
	background:#666;
	border:1px solid #666; 
}
/* Меню заголовка ****************/ 
.headMenu {
	width:100%;
	height:auto;
	color:#5ec79e;
}
.headMenu a {
	font-family:Fantazyor;
	text-decoration:none;
	color:#5ec79e;
	cursor:pointer;
}
.headMenu .activ {
	border-bottom:2px solid #5ec79e;
	cursor:text;
}
/* Меню поиска *******************/ 
.headSearch {
	width:100%;
	height:50px;
	text-align:center;
	margin-bottom:50px;
	border-bottom:2px solid #5ec79e;
}
.headSearch input[type="text"] {
	width:40%;
	text-align:center;
	border:2px solid #5ec79e;
	border-radius:10px 0px 0px 10px;
	-moz-border-radius:10px 0px 0px 10px;
	-webkit-border-radius:10px 0px 0px 10px;
	-khtml-border-radius:10px 0px 0px 10px;
	behavior: url(border-radius.htc);
	border-right:none;
	font-size:23px;
	padding:5px;
	padding-left:10px;
	padding-right:10px;
}
.headSearch button {
	font-family:Fantazyor;
	border:2px solid #5ec79e;
	border-radius:0px 10px 10px 0px;
	-moz-border-radius:0px 10px 10px 0px;
	-webkit-border-radius:0px 10px 10px 0px;
	-khtml-border-radius:0px 10px 10px 0px;
	behavior: url(border-radius.htc);
	width:40%;
	padding:5px;
	padding-left:10px;
	padding-right:10px;
	background:#5ec79e;
	color:#FFF;
	font-size:24px;
	text-decoration:none;
}
.headSearch input[type="text"]:hover, .headSearch input[type="text"]:focus {
	border:2px solid #666;
	border-right:none;
}
.headSearch button:hover, .headSearch button:focus {
	background:#666;
	border:2px solid #666;
}
/* Форма *************************/ 
.myForm {
	font-family:PF Scandal Pro Black Regular;
	width:100%;
	height:auto;
	padding:15px 15px 15px 15px;
	background:#f3f3f3;
	border:1px solid #e2e2e2;
}
.myForm p {
	margin-left:10px;
	margin-bottom:2px;
}
.myForm input[type="text"] {
	width:100%;
	height:auto;
	padding:10px 15px 10px 15px;
	font-size:16px;
	border:1px solid #e2e2e2;
	border-radius:0px 0px 0px 0px;
	margin-bottom:5px;
}
.myForm select {
	width:100%;
	height:auto;
	padding:10px 15px 10px 15px;
	font-size:16px;
	border:1px solid #e2e2e2;
	border-radius:0px 0px 0px 0px;
	margin-bottom:5px;
}
.myForm textarea {
	width:100%;
	height:auto;
	padding:10px 15px 10px 15px;
	font-size:16px;
	border:1px solid #e2e2e2;
	border-radius:0px 0px 0px 0px;
	margin-bottom:5px;
}
.myForm button {
	margin-top:10px;
	margin-left:20px;
	font-family:Fantazyor;
	background:#5ec79e;
	color:#FFF;
	padding:10px 15px 10px 15px;
	font-size:16px;
	border:1px solid #e2e2e2;
	border-radius:0px 0px 0px 0px;
}
.myForm button:hover, .myForm button:focus {
	background:#666;
}
.myForm input[type="reset"] {
	margin-top:5px;
	font-family:Fantazyor;
	background:#999;
	color:#FFF;
	padding:10px 15px 10px 15px;
	font-size:16px;
	border:1px solid #e2e2e2;
	border-radius:0px 0px 0px 0px;
}
.myForm input[type="reset"]:hover, .myForm input[type="reset"]:focus {
	background:#666;
}
/* Показ видео *******************/ 
.video { width:100%; height:400px; display:block; }
/* Форма публикации **************/ 
.publicForm{
	padding-bottom:10px;
    padding-top:20px;
    padding-left:20px;
    padding-right:40px;
    background:#FFF;
    border:#5ec79e 2px outset;
	border-left:solid 4px #5ec79e;
}
.publicForm input[type="text"], 
.publicForm select{
	width:100%;
	padding:7px;
	margin-bottom:10px;
	font-size:24px;
	border:1px outset #5ec79e;
	border-top:none;
	border-right:none;
	-moz-border-radius:0px 0px 0px 0px; 
	-webkit-border-radius:0px 0px 0px 0px;  
	-khtml-border-radius:0px 0px 0px 0px; 
	border-radius:0px 0px 0px 0px;
	behavior: url(border-radius.htc);
}
.publicForm textarea{
	width:100%;
	height:130px;
	padding:7px;
	margin-bottom:10px;
	font-size:24px;
	border: 1px outset #5ec79e;
	border-top:none;
	border-right:none;
}
.publicForm input[type="text"]:active, 
.publicForm input[type="text"]:hover, 
.publicForm input[type="text"]:focus, 
.publicForm textarea:active, 
.publicForm textarea:hover, 
.publicForm textarea:focus, 
.publicForm select:active, 
.publicForm select:hover, 
.publicForm select:focus{
	outline:none;
	border:1px outset #666;
	border-top:none;
	border-right:none;
	transition:0.5s all;
	-webkit-transition:0.5s all;
	-moz-transition:0.5s all;
	-o-transition:0.5s all;
	-ms-transition:0.5s all;
}
.publicForm input[type="submit"]{
	width:100%;
	background:#5ec79e; 
	border: 2px solid #5ec79e; 
	-moz-border-radius:7px 7px 7px 7px; 
	-webkit-border-radius:7px 7px 7px 7px; 
	-khtml-border-radius:7px 7px 7px 7px; 
	border-radius:7px 7px 7px 7px;
	behavior: url(border-radius.htc);
	color:#fff;
	margin-bottom:15px;
	padding:10px;
}
.publicForm input[type="submit"]:active, 
.publicForm input[type="submit"]:hover, 
.publicForm input[type="submit"]:focus{
	transition:0.5s all;
	-webkit-transition:0.5s all;
	-moz-transition:0.5s all;
	-o-transition:0.5s all;
	-ms-transition:0.5s all;
	background: #666;
	border: 2px solid #666; 
	-moz-border-radius:7px 7px 7px 7px; 
	-webkit-border-radius:7px 7px 7px 7px; 
	-khtml-border-radius:7px 7px 7px 7px; 
	border-radius:7px 7px 7px 7px;
	behavior: url(border-radius.htc);
}
.fileform{
	border:none;
	background:none;
	float:left;
	width:auto;
	height:auto;
	font-size:30px;
    position:relative;
    text-align:left;
    cursor:pointer;
	margin-right:10px;
}
.fileform .selectbutton {
    cursor:pointer;
    background-color:#5ec79e;
    border:1px solid #5ec79e;
	-moz-border-radius:5px 5px 5px 5px;
	-webkit-border-radius:5px 5px 5px 5px;
	-khtml-border-radius:5px 5px 5px 5px; 
	border-radius:5px 5px 5px 5px;
	behavior: url(border-radius.htc);
    color:#FFF;
    float:right;
    font-size:30px;
	width:auto;
    height:auto;
    line-height:20px;
    overflow:hidden;
    padding:2px 6px;
    text-align:center;
    vertical-align:middle;
}
.fileform .selectbutton:active, 
.fileform .selectbutton:hover, 
.fileform .selectbutton:focus{
    cursor:pointer;
	transition:0.5s all;
	-webkit-transition:0.5s all;
	-moz-transition:0.5s all;
	-o-transition:0.5s all;
	-ms-transition:0.5s all;
    background-color:#666;
    border:1px solid #666;
}
 
.fileform #upload_0,
.fileform #upload_1,
.fileform #upload_2,
.fileform #upload_3 {
    position:absolute; 
    top:0; 
    left:0; 
    width:100%; 
    -moz-opacity: 0; 
    filter: alpha(opacity=0); 
    opacity: 0; 
    font-size: 150px; 
    height: 30px; 
    z-index:20;
}
.fileform #fileformlabel_0,
.fileform #fileformlabel_1,
.fileform #fileformlabel_2,
.fileform #fileformlabel_3 { 
    background:none;
    float:left;
    height:auto;
    line-height: 22px;
    overflow: hidden;    text-align: left;
    vertical-align: middle;
	width:80%;
}
.menuForm, .menuForm a {
	display:none;
	padding-left:10px;
	font-size:18px;
	width:auto;
	float:left;
	text-decoration:none;
	color:#5ec79e;
	cursor:pointer;
}
.menuForm:active, 
.menuForm:hover, 
.menuForm:focus {
	transition:0.5s all;
	-webkit-transition:0.5s all;
	-moz-transition:0.5s all;
	-o-transition:0.5s all;
	-ms-transition:0.5s all;
	color:#666;
}
#youTubeVideoForm,
#youTubeShortsForm,
#ruTubeVideoForm,
#ruTubeShortsForm,
#vkVideoForm,
#vkShortsForm,
#youtubeVideoDemo {
	margin-top:0px;
	margin-left:25px;
	width:95%;
	display:none;
}
/* Ошибки ************************/ 
.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}
.alert h4 {
  margin-top: 0;
  color: inherit;
}
.alert .alert-link {
  font-weight: bold;
}
.alert > p,
.alert > ul {
  margin-bottom: 0;
}
.alert > p + p {
  margin-top: 5px;
}
.alert-dismissable,
.alert-dismissible {
  padding-right: 35px;
}
.alert-dismissable .close,
.alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}
.alert-success {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}
.alert-success hr {
  border-top-color: #c9e2b3;
}
.alert-success .alert-link {
  color: #2b542c;
}
.alert-info {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}
.alert-info hr {
  border-top-color: #a6e1ec;
}
.alert-info .alert-link {
  color: #245269;
}
.alert-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}
.alert-warning hr {
  border-top-color: #f7e1b5;
}
.alert-warning .alert-link {
  color: #66512c;
}
.alert-danger {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}
.alert-danger hr {
  border-top-color: #e4b9c0;
}
.alert-danger .alert-link {
  color: #843534;
}
/* Счотчики книг *****************/ 
.counterAddedBooks {
	width:100%;
	height:43px;
	padding:5px;
	margin-top:0px;
	margin-bottom:20px;
	border:solid #e2e2e2 1px;
	background:#f3f3f3;
}
.platform {
	width:100%;
	height:auto;
	font-family:PF Scandal Pro Black Regular;
}
.platform .content1 {
	float:left;
	width:50%;
	height:auto;
	padding:3px;
	text-align:center;
	cursor:pointer;
	background:#5ec79e;
	color:#FFF;
	border:1px solid #f3f3f3;
	border-radius:5px 0px 0px 5px;
	-moz-border-radius:5px 0px 0px 5px;
	-webkit-border-radius:5px 0px 0px 5px;
	-khtml-border-radius:5px 0px 0px 5px;
	behavior: url(border-radius.htc);
}
.platform .content2 {
	float:right;
	width:50%;
	height:auto;
	padding:3px;
	text-align:center;
	cursor:pointer;
	background:#5ec79e;
	color:#FFF;
	border:1px solid #f3f3f3;
	border-radius:0px 5px 5px 0px;
	-moz-border-radius:0px 5px 5px 0px;
	-webkit-border-radius:0px 5px 5px 0px;
	-khtml-border-radius:0px 5px 5px 0px;
	behavior: url(border-radius.htc);
}
.platform .content1:hover, .platform .content1:focus, 
.platform .content2:hover, .platform .content2:focus {
	background:#666;
}
.contentA {
	text-decoration:none;
	font-family: Fantazyor;
	color:#5ec79e;
}
.contentA:hover, .contentA:focus {
	color:#666;
}
/* Кнопки в ленте публикаций *****/ 
.open{
	margin-top:5px;
}
.open a {
	margin-right:5px;
	cursor:pointer;
	color:#5ec79e;
	padding:2px;
	text-decoration:none;
	border:none;
	background:none;
	/*border:1px solid #5ec79e;
	-moz-border-radius:3px 3px 3px 3px; 
	-webkit-border-radius:3px 3px 3px 3px; 
	-khtml-border-radius:3px 3px 3px 3px; 
	border-radius:3px 3px 3px 3px;
	behavior: url(border-radius.htc);*/
}
.open a:hover{
	color:#666;
	/*border:1px solid #666;*/
}
.open a:focus{
	color:#666;
	/*border:1px solid #666;*/
}
.open button {
	margin-right:5px;
	cursor:pointer;
	color:#5ec79e;
	padding:2px;
	border:none;
	background:none;
}
.open button:hover { color:#666; }
.open button:focus { color:#666; }
/* Иконки ************************/ 
.fontFocusColor:hover, .fontFocusColor:focus { color:#5ec79e; }

.size-12 { font-size: 12px; }
.size-14 { font-size: 14px; }
.size-16 { font-size: 16px; }
.size-18 { font-size: 18px; }
.size-21 { font-size: 21px; }
.size-24 { font-size: 24px; }
.size-36 { font-size: 36px; }
.size-48 { font-size: 48px; }
.size-60 { font-size: 60px; }
.size-72 { font-size: 72px; }
/* Лайки *************************/ 
a {
outline:none;
}

.entry {
	width: auto;
	background: #ffffff;
	-moz-border-radius:8px;
	margin-top: 5px;
	margin-right: auto;
	margin-bottom: 5px;
	margin-left: auto;
	padding-top: 6px;
	padding-right: 6px;
	padding-bottom: 6px;
	padding-left: 6px;
	border: 1px solid #ffff;
}

span.link a {
	font-size:100%;
	color: #000000;
	text-decoration:none;
}

a.vote_up, a.vote_down {
	display:inline-block;
	background-repeat:none;
	background-position:left;
	/*height:20px;
	width:20px;*/
	margin-left:4px;
}

a.vote_up .onOk {
	background:#5ec79e;
	color:#FFF;
	padding-left:4px;
	padding-right:4px;
	padding-top:1px;
	border:1px solid #5ec79e;
	border-radius:10px 0px 10px 0px;
	-moz-border-radius:10px 0px 10px 0px;
	-webkit-border-radius:10px 0px 10px 0px;
	-khtml-border-radius:10px 0px 10px 0px;
	behavior: url(border-radius.htc);
}
a.vote_up .onOk:hover {
	background:#666;
	color:#FFF;
	padding-left:4px;
	padding-right:4px;
	padding-top:1px;
	border:1px solid #666;
	border-radius:10px 0px 10px 0px;
	-moz-border-radius:10px 0px 10px 0px;
	-webkit-border-radius:10px 0px 10px 0px;
	-khtml-border-radius:10px 0px 10px 0px;
	behavior: url(border-radius.htc);
}

a.vote_up .offOk {
	background:#666;
	color:#FFF;
	padding-left:4px;
	padding-right:4px;
	padding-top:1px;
	border:1px solid #666;
	border-radius:10px 0px 10px 0px;
	-moz-border-radius:10px 0px 10px 0px;
	-webkit-border-radius:10px 0px 10px 0px;
	-khtml-border-radius:10px 0px 10px 0px;
	behavior: url(border-radius.htc);
}
a.vote_up .offOk:hover {
	background:#999;
	color:#FFF;
	padding-left:4px;
	padding-right:4px;
	padding-top:1px;
	border:1px solid #999;
	border-radius:10px 0px 10px 0px;
	-moz-border-radius:10px 0px 10px 0px;
	-webkit-border-radius:10px 0px 10px 0px;
	-khtml-border-radius:10px 0px 10px 0px;
	behavior: url(border-radius.htc);
}


/*a.vote_up {
	background:url("../images/laik.gif");
	margin-top:5px;
}
a.vote_up:hover {
	background:url("../images/laik2.gif");
	margin-top:5px;
}*/
/* Пагинация страниц *************/ 
.normal_link{
	text-decoration:none;
    font-size:18px;
	color:#5ec79e;
    border:2px solid #5ec79e;
    padding:10px;
	padding-left:20px;
	padding-right:20px;
}
.normal_link:hover{
	text-decoration:none;
	color:#666;
    border:2px solid #666;
}
.normal_link:focus{
	text-decoration:none;
	color:#666;
    border:2px solid #666;
}
.normal_link2{
	text-decoration:none;
    font-size:18px;
	color:#5ec79e;
    border:2px solid #5ec79e;
    padding:10px;
	padding-left:20px;
	padding-right:20px;
}
.active_link{
	text-decoration:none;
    font-size:18px;
	color:#FFF;
	background:#666;
    border:2px solid #666;
    padding:10px;
	padding-left:20px;
	padding-right:20px
}
/* Открытка **********************/ 
.postcardImagesAdditional {
	width:32%;
	height:auto;
}
.positionGo { display:none; }
.position { cursor: n-resize; }
.position:hover .positionGo { display:block; }
/* Ютуб **************************/ 
.utb {
	width:100%; 
	height:400px; 
}
/* Капча *************************/ 
#update {
	margin-left:5px;
	cursor:pointer;
}
/* Библиотека ********************/ 
.library {
	width:31%;
	float:left;
	text-align:center;
	border:1px solid #CCC;
	margin:5px;
	padding:3px;
}
.library a {
	text-decoration:none;
	color:#333;
}
.library img {
	width:100%;
	height:200px;
	border:1px solid #CCC;
}
.library p {
	margin-bottom:0px;
	white-space: nowrap; /* Отменяем перенос текста */
    overflow: hidden; /* Обрезаем содержимое */
    padding: 5px; /* Поля */
    text-overflow: ellipsis; /* Многоточие */
}
/*.library p:hover {
    background: #f0f0f0; Цвет фона
    white-space: normal;  Обычный перенос текста 
}*/
/* Сообщения *********************/ 
.menushka{
	background:#5ec79e;
	width:100%;
}
.menushka input[type="submit"]{
	text-decoration:none;
	border:none;
	padding:0px;
	margin:0px;
}
#ass{
	width:78px;
	height:50px;
	border:none;
	text-decoration:none;
	background:url(../../files/images/template/kcmc-2.png);
}
#ass:active, 
#ass:hover, 
#ass:focus{
	transition:0.5s all;
	-webkit-transition:0.5s all;
	-moz-transition:0.5s all;
	-o-transition:0.5s all;
	-ms-transition:0.5s all;
	background:url(../../files/images/template/kcmc-1.png);
}
#ass2{
	width:282px;
	height:50px;
	border:none;
	text-decoration:none;
	background:url(../../files/images/template/kcmc-4.png);
}
#ass2:active, 
#ass2:hover, 
#ass2:focus{
	transition:0.5s all;
	-webkit-transition:0.5s all;
	-moz-transition:0.5s all;
	-o-transition:0.5s all;
	-ms-transition:0.5s all;
	background:url(../../files/images/template/kcmc-3.png);
}
.search {
    float: right;
    width: 99%;
	margin-top:5px;
    position: relative;
    border: 2px solid #5ec79e;
    padding: 0.5em 0;
    background: #fff;
}
.search input[type="text"],
.search input[type="search"]{
	width: 80%;
	outline: none;
	padding: 0em 0.6em;
	font-size: 1em;
	color: #333333;
	position: relative;
	border: none;
}
.search input[type="text"]:focus,
.search input[type="search"]:focus{
	border:none;
}
.search:hover, 
.search:focus, 
.search:active{
	border:solid 2px #666;
	transition:0.5s all;
	-webkit-transition:0.5s all;
	-moz-transition:0.5s all;
	-o-transition:0.5s all;
	-ms-transition:0.5s all;
}
.search input[type="submit"]{
	background: url(../../files/images/template/search-icon.png) no-repeat 0px 2px #fff;
	border: none;
	height: 26px;
	width: 26px;
	display: inline-block;
	position: absolute;
	outline: none;
	cursor: pointer;
	top: 6px;
	right: 2px;
}
.search input[type="submit"]:hover,
.search input[type="submit"]:focus{
	opacity:.5;
	transition:0.5s all;
	-webkit-transition:0.5s all;
	-moz-transition:0.5s all;
	-o-transition:0.5s all;
	-ms-transition:0.5s all;
}
#podskazka { 
    border: 1px #fff solid;
    font-family: Arial;
    font-weight: normal;
    text-align: left;
    color: #5ec79e;
    font-size:16px;
    line-height: 1.2;
    margin: 0;
    visibility: hidden;
    position:absolute;
    padding-top: 7px;
    padding:5px;
    z-index: 9999;
    cursor: pointer !important;
}

#selectOpen {
	text-decoration:none;
	color:#5ec79e;
	display:block;
	cursor:pointer;
	margin-left:15px;
}
#selectHide {
	text-decoration:none;
	color:#5ec79e;
	display:none;
	cursor:pointer;
	margin-left:15px;
}

#idAdd{
	width:100%;
	float:none;
	border:1px outset #5ec79e;
	border-radius:0px 0px 0px 0px;
	border-bottom:1px solid #A3E7C2;
	-moz-border-radius:0px 0px 7px 7px; 
	-webkit-border-radius:0px 0px 7px 7px; 
	-khtml-border-radius:0px 0px 7px 7px; 
	border-radius:0px 0px 7px 7px;
	behavior: url(border-radius.htc);
	border-top:none;
	color:#666;
}
#idAdd:active, 
#idAdd:hover, 
#idAdd:focus{
	border:outset #666 1px;
	border-bottom:solid #999 1px;
	border-top:none;
	transition:0.5s all;
	-webkit-transition:0.5s all;
	-moz-transition:0.5s all;
	-o-transition:0.5s all;
	-ms-transition:0.5s all;
}

.messages{
	width:100%;
}
.messages input[type="submit"]{
	width:auto;
	border:none;
	border-bottom:solid #FFF 1px;
	border:solid 1px #FFF;
	-moz-border-radius:0px 0px 0px 0px;
	-webkit-border-radius:0px 0px 0px 0px;
	-khtml-border-radius:0px 0px 0px 0px; 
	border-radius:0px 0px 0px 0px;
	behavior: url(border-radius.htc);
	text-decoration:none;
	background:none;
	color:#55BDC6;
	margin-top:10px;
	margin-bottom:10px;
}
.messages input[type="submit"]:active, 
.messages input[type="submit"]:hover, 
.messages input[type="submit"]:focus{
	color:#666;
	border-bottom:solid #666 1px;
	transition:0.5s all;
	-webkit-transition:0.5s all;
	-moz-transition:0.5s all;
	-o-transition:0.5s all;
	-ms-transition:0.5s all;
}
.messages2{
	float:left;
	margin-top:40px;
	margin-bottom:20px;
	width:100%;
}
.messages2 p{
	background: #EAFFF4;
	float:right;
	width:70%;
	padding:7px;
	padding-left:15px;
	padding-right:15px;
	font-size:18px;
	border:1px solid #E6FFF2;
	-moz-border-radius:7px 7px 7px 7px; 
	-webkit-border-radius:7px 7px 7px 7px; 
	-khtml-border-radius:7px 7px 7px 7px;
	border-radius:7px 7px 7px 7px;
	behavior: url(border-radius.htc);
	border-bottom:solid #CEFFE7 2px;
}
.messages2 textarea{
	width:100%;
	border:1px solid #CCC;
	-moz-border-radius:7px 7px 7px 7px; 
	-webkit-border-radius:7px 7px 7px 7px; 
	-khtml-border-radius:7px 7px 7px 7px;
	border-radius:7px 7px 7px 7px;
	behavior: url(border-radius.htc);
	border-bottom:solid #5ec79e 1px;
	text-decoration:none;
	background:none;
	margin-right:20px;
	padding:7px;
	resize: none;
}
.messages2 textarea:active, 
.messages2 textarea:hover, 
.messages2 textarea:focus{
	color:#666;
	border-bottom:solid #666 1px;
	transition:0.5s all;
	-webkit-transition:0.5s all;
	-moz-transition:0.5s all;
	-o-transition:0.5s all;
	-ms-transition:0.5s all;
}
.messagesText{
	width:100%;
	min-height:100px;
	float:left;
	border:1px solid #CCC;
	-moz-border-radius:7px 7px 7px 7px; 
	-webkit-border-radius:7px 7px 7px 7px; 
	-khtml-border-radius:7px 7px 7px 7px;
	border-radius:7px 7px 7px 7px;
	behavior: url(border-radius.htc);
	border-bottom:solid #5ec79e 1px;
	background:none;
	margin-right:20px;
	padding:7px;
}
.messagesText:active, 
.messagesTexta:hover, 
.messagesText:focus{
	color:#666;
	border-bottom:solid #666 1px;
	transition:0.5s all;
	-webkit-transition:0.5s all;
	-moz-transition:0.5s all;
	-o-transition:0.5s all;
	-ms-transition:0.5s all;
}
.messages2 input[type="submit"], .messages2 button {
	margin-top:5px;
	float:right;
	margin-right:20px;
	text-decoration:none;
	border:none;
	background:none;
	font-size:20px;
	color:#5ec79e;
}
.messages2 input[type="submit"]:active, 
.messages2 input[type="submit"]:hover, 
.messages2 input[type="submit"]:focus,
.messages2 button:active, 
.messages2 button:hover, 
.messages2 button:focus {
	transition:0.5s all;
	-webkit-transition:0.5s all;
	-moz-transition:0.5s all;
	-o-transition:0.5s all;
	-ms-transition:0.5s all;
	color:#666;
}
#messagesDel{
	border:none;
	color:#CCC;
}
#messagesDel:active, 
#messagesDel:hover, 
#messagesDel:focus{
	transition:0.5s all;
	-webkit-transition:0.5s all;
	-moz-transition:0.5s all;
	-o-transition:0.5s all;
	-ms-transition:0.5s all;
	color:#FF702B;
}
.msgOt select{
	color:#666;
	border:1px outset #5ec79e;
	border-top:none;
	-moz-border-radius:0px 0px 7px 7px; 
	-webkit-border-radius:0px 0px 7px 7px; 
	-khtml-border-radius:0px 0px 7px 7px; 
	border-radius:0px 0px 7px 7px;
	behavior: url(border-radius.htc);
}
.msgOt select:active, 
.msgOt select:hover, 
.msgOt select:focus{
	border: 1px outset #666;
	border-top:none;
}
.messagesDell{
	margin-top:30px;
	margin-left:20px;
	width:100%;
}
.messagesDell input[type="submit"]{
	width:auto;
	border:none;
	border-bottom:solid #FFF 1px;
	text-decoration:none;
	background:none;
	color:#FF702B;
	margin-top:10px;
	margin-bottom:10px;
}
.messagesDell input[type="submit"]:active, 
.messagesDell input[type="submit"]:hover, 
.messagesDell input[type="submit"]:focus{
	color:#666;
	border-bottom:solid #666 1px;
	transition:0.5s all;
	-webkit-transition:0.5s all;
	-moz-transition:0.5s all;
	-o-transition:0.5s all;
	-ms-transition:0.5s all;
}
.podtver input[type="submit"]{
	width:48%;
}
#smileyOn, #emotionsOn, #peopleOn, #animalsOn { word-spacing:10px; }

.btnComm {
	background:none; 
	border:none; 
	color:#6164C1; 
	float:right;
}
.btnComm:hover {
	color: #D76B00;
}
.smailDiv {
	font-size: 18px;
}
/* Фотоальбом ********************/ 
.scrollFrame {
    max-height: 350px; 
	overflow: hidden; 
	/*overflow-y: scroll; Добавляет скрол */
}
.frameImg {
	float:left; 
	width:49%; 
	margin-right:5px;
	margin-bottom:15px;
}
.frameImg img {
	width:100%;
	margin-bottom:0px;
}
.frameImg a {
	text-decoration:none;
	padding-bottom:3px;
	padding-left:15px;
	width:100%; 
	background:#5ec79e; 
	color:#FFF; 

	display:block;
}

.scrollFrameNot {
	height:auto;
}
.frameImgNot {
	width:100%; 
	margin-bottom:15px;
}
.frameImgNot img {
	margin-bottom:0px;
	width:100%;
}
.frameImgNot a {
	text-decoration:none;
	padding-bottom:3px;
	padding-left:15px;
	width:100%; 
	background:#5ec79e; 
	color:#FFF; 
	display:block;
}
/* Онлайн ************************/ 
.online { 
    max-height:300px; 
	overflow:hidden; 
	overflow-y:scroll;
	border:solid 1px #E6E6E6; 
	padding:5px; 
	padding-left:12px; 
	padding-top:10px; 
	padding-bottom:10px;
}
.online a { text-decoration:none; color:#666; }
.online a:hover { color:#5ec79e; }
.online a img { width:10px; height:10px; margin-right:10px; margin-left:4px; }
/* Справка ***********************/ 
.mRefer td {
	background:#efefef;
	padding:7px;
	color:#666;
	border:solid 5px #FFF;
	text-align:center;
	cursor:pointer;
}
.mRefer td:hover {
	background:#5ec79e;
	color:#FFF;
}
/* Новости ***********************/ 
div .loading { display:block; } 
/* Шрифты ************************/ 
@font-face {
    font-family: "Fantazyor"; 
    src: url("font/8930.ttf") format("truetype"); 
    font-style: normal; 
    font-weight: normal; 
}
.fantazyor {
	font-family: Fantazyor;
}

@font-face {
    font-family: "m_Brody Regular"; 
    src: url("font/m_Brody Regular.ttf") format("truetype"); 
    font-style: normal; 
    font-weight: normal; 
}
.mBrody {
	font-family:m_Brody Regular;
}

@font-face {
    font-family: "MurreyC Regular"; 
    src: url("font/MurreyC Regular.ttf") format("truetype"); 
    font-style: normal; 
    font-weight: normal; 
}
.MurreyC {
	font-family:MurreyC Regular;
}

@font-face {
    font-family: "PF Scandal Pro Black Regular"; 
    src: url("font/PF Scandal Pro Black Regular.ttf") format("truetype"); 
    font-style: normal; 
    font-weight: normal; 
}
.PFScandalProBlack {
	font-family:PF Scandal Pro Black Regular;
}


/* Стили для мобильных устройств */ 
@media screen and (max-width: 1200px) {
    /* Пагинация страниц */ 
	.normal_link{
        font-size:15px;
        padding:10px;
	    padding-left:20px;
	    padding-right:20px;
    }
    .active_link{
        font-size:15px;
        padding:10px;
	    padding-left:20px;
	    padding-right:20px;
    }
	.normal_link2{
        font-size:15px;
        padding:10px;
	    padding-left:20px;
	    padding-right:20px;
    }
	/* Визитка ***********/ 
	#vizitka{
		width:610px;
		height:300px;
	}
	.vTable{
	    height:300px;
    }
    .vTable1{
	    height:170px;
    }
    .vTable2{
	    height:130px;
    }
    .vTable3{
	    height:170px;
    }
    .vTable4{
	    height:170px;
    }
    .vTable2 p{
	    height:130px;
	    border-top:3px solid #FFF;
	    font-weight:bold;
	    text-align:center;
	    font-size:16px;
	    padding-top:18px;
	    margin-left:25px;
	    margin-right:25px;
	    margin-bottom:25px;
    }
    .vTableFoto{
	    height:170px;
	    width:auto;
	    margin-top:25px;
	    margin-left:25px;
    }
    .vTableText{
	    margin-left:25px;
	    margin-right:25px;
    	font-weight:bold;
	    font-size:20px;
	    border-bottom:solid 1px #FFF;
    }
    .vTableText img{
	    width:18px;
	    height:16px;
	    margin-right:12px;
    }
    .vTableTel{
	    margin-left:25px;
	    margin-right:25px;
	    font-weight:bold;
	    font-size:16px;
	    text-align:left;
	    border-bottom:solid 1px #FFF;
    }
    .vTableTel img{
	    width:18px;
	    height:12px;
	    margin-right:12px;
    }
	#redakt_on{
		width:610px;
	}
	#v_onl_book{
		font-size:9px;
		margin-top:25px;
		margin-right:25px;
	}
    .mb5{width:100%;}
}
@media screen and (max-width: 1100px) {
    /* Пагинация страниц */ 
	.normal_link{
        font-size:18px;
        padding:7px;
	    padding-left:12px;
	    padding-right:12px;
    }
    .active_link{
        font-size:18px;
        padding:7px;
	    padding-left:12px;
	    padding-right:12px;
    }
	.normal_link2{
        font-size:18px;
        padding:7px;
	    padding-left:12px;
	    padding-right:12px;
    }
}
@media screen and (max-width: 1050px) {
	/* Визитка */ 
	#vizitka{
		width:540px;
		height:280px;
	}
	.vTable{
	    height:280px;
    }
    .vTable1{
	    height:160px;
    }
    .vTable2{
	    height:120px;
    }
    .vTable3{
	    height:160px;
    }
    .vTable4{
	    height:160px;
    }
    .vTable2 p{
	    height:120px;
	    border-top:3px solid #FFF;
	    font-weight:bold;
	    text-align:center;
	    font-size:16px;
	    padding-top:15px;
	    margin-left:25px;
	    margin-right:25px;
	    margin-bottom:25px;
    }
    .vTableFoto{
	    height:160px;
	    width:auto;
	    margin-top:25px;
	    margin-left:25px;
    }
    .vTableText{
	    margin-left:25px;
	    margin-right:25px;
    	font-weight:bold;
	    font-size:18px;
	    border-bottom:solid 1px #FFF;
    }
    .vTableText img{
	    width:15px;
	    height:13px;
	    margin-right:9px;
    }
    .vTableTel{
	    margin-left:25px;
	    margin-right:25px;
	    font-weight:bold;
	    font-size:13px;
	    text-align:left;
	    border-bottom:solid 1px #FFF;
    }
    .vTableTel img{
	    width:15px;
	    height:9px;
	    margin-right:9px;
    }
	#redakt_on{
		width:540px;
	}
	#v_onl_book{
		font-size:8px;
		margin-top:25px;
		margin-right:25px;
	}
	.fInfo textarea{
		font-size:18px;
		height:80px;
	}
    .mb5{width:100%;}
}
@media screen and (max-width: 997px) { 
    #footer_2 { float:left; text-align:left; margin-top:15px; margin-bottom:10px; }
}
@media screen and (max-width: 919px) {
	.myMenu{ display:block; }
	/* Пагинация страниц */ 
    .normal_link{
        font-size:18px;
        padding:10px;
	    padding-left:15px;
	    padding-right:15px;
    }
    .active_link{
        font-size:18px;
        padding:10px;
	    padding-left:15px;
	    padding-right:15px;
    }
    .normal_link2{
        font-size:18px;
        padding:10px;
	    padding-left:15px;
	    padding-right:15px;
    }
	/* Визитка */ 
	#vizitka{
		width:710px;
	    height:350px;
	    border:2px outset #e5e5e5;
	    -moz-border-radius: 15px 15px 15px 15px;
	    -webkit-border-radius: 15px 15px 15px 15px;
	    -khtml-border-radius: 15px 15px 15px 15px;
	    border-radius: 15px 15px 15px 15px;
	    background: url(../images/fon.jpg);
	}
	#v_onl_book{
		float:right;
		color:#FFF;
		font-size:10px;
		padding-left:5px;
		padding-right:5px;
		margin-right:30px;
		border:1px solid #FFF;
		-moz-border-radius:3px 3px 3px 3px;
		-webkit-border-radius:3px 3px 3px 3px;
		-khtml-border-radius:3px 3px 3px 3px;
		border-radius:3px 3px 3px 3px;
		behavior: url(border-radius.htc);
		font-weight:bold;
	}
    .vTable{
	    width:100%;
	    height:350px;
    }
    .vTable1{
	    height:200px;
    }
    .vTable2{
	    height:150px;
    }
    .vTable3{
	    height:200px;
	    width:100%;
    }
    .vTable4{
	    height:200px;
	    width:100%;
    }
    .vTable2 p{
	    height:150px;
	    border-top:4px solid #FFF;
	    font-weight:bold;
	    text-align:center;
	    font-size:18px;
	    padding-top:20px;
	    margin-left:30px;
	    margin-right:30px;
	    margin-bottom:30px;
    }
    .vTableFoto{
	    height:200px;
	    width:auto;
	    margin-top:30px;
	    margin-left:30px;
    }
    .vTableText{
	    margin-left:30px;
	    margin-right:30px;
	    font-weight:bold;
	    font-size:22px;
	    border-bottom:solid 1px #FFF;
    }
    .vTableText img{
	    width:20px;
	    height:18px;
	    margin-right:15px;
    }
    .vTableTel{
	    margin-left:30px;
	    margin-right:30px;
	    font-weight:bold;
	    font-size:18px;
	    text-align:left;
	    border-bottom:solid 1px #FFF;
    }
    .vTableTel img{
	    width:20px;
	    height:14px;
	    margin-right:15px;
    }
	#redakt_on{
	    width:710px;
	    background-color:#FFF;
    }
	#v_onl_book{
		font-size:10px;
		margin-top:5px;
		margin-right:30px;
	}
	#hm {
		display:none;
	}
    #poisk{width:100%;}
}
@media screen and (max-width: 780px) {
	/* Визитка */ 
	#vizitka{
		width:610px;
		height:300px;
	}
	.vTable{
	    height:300px;
    }
    .vTable1{
	    height:170px;
    }
    .vTable2{
	    height:130px;
    }
    .vTable3{
	    height:170px;
    }
    .vTable4{
	    height:170px;
    }
    .vTable2 p{
	    height:130px;
	    border-top:3px solid #FFF;
	    font-weight:bold;
	    text-align:center;
	    font-size:16px;
	    padding-top:18px;
	    margin-left:25px;
	    margin-right:25px;
	    margin-bottom:25px;
    }
    .vTableFoto{
	    height:170px;
	    width:auto;
	    margin-top:25px;
	    margin-left:25px;
    }
    .vTableText{
	    margin-left:25px;
	    margin-right:25px;
    	font-weight:bold;
	    font-size:20px;
	    border-bottom:solid 1px #FFF;
    }
    .vTableText img{
	    width:18px;
	    height:16px;
	    margin-right:12px;
    }
    .vTableTel{
	    margin-left:25px;
	    margin-right:25px;
	    font-weight:bold;
	    font-size:16px;
	    text-align:left;
	    border-bottom:solid 1px #FFF;
    }
    .vTableTel img{
	    width:18px;
	    height:12px;
	    margin-right:12px;
    }
	#redakt_on{
		width:610px;
	}
	#v_onl_book{
		font-size:9px;
		margin-top:10px;
		margin-right:25px;
	}
    .mb5{width:100%;
	}
	.alert {
		padding:5px;
		font-size:80%;
		margin-bottom:5px;
	}
}
@media screen and (max-width: 700px) {
	/* Модальное окно ****/ 
	.modalBody { width:80%; }
	.modalContent input[type="text"], .modalContent textarea { padding:5px; font-size:14px; }
	.modalContent a, .modalContent input[type="submit"] { padding:5px; }
	.modalFooter { padding-bottom:40px; }
	.modalSubmit input[type="submit"] { padding:5px; }
    .modalReset input[type="reset"], .modalReset button { padding:5px; }
	.fontFocusColor { display:none; }
	/* Библиотека ********/ 
	.library { width:100%; } 
	.library img { height:auto; }
	/* Пагинация страниц */ 
    .normal_link{
        font-size:15px;
        padding:5px;
	    padding-left:10px;
	    padding-right:10px;
    }
    .active_link{
        font-size:15px;
        padding:5px;
	    padding-left:10px;
	    padding-right:10px;
    }
    .normal_link2{
        font-size:15px;
        padding:5px;
	    padding-left:10px;
	    padding-right:10px;
    }
	#newsBotn{
	    margin-right:5%;
    }
	.but4{
	    width:20%;
    }
    .but5{
	    width:70%;
    }
	.formaTP input[type="name"], 
    .formaTP input[type="email"], 
    .formaTP input[type="femile"], 
    .formaTP input[type="captcha"],  
    .formaTP input[type="password"], 
    .formaTP input[type="text"],  
    .formaTP input[type="file"], 
    .formaTP textarea,  
    .formaTP select{
		font-size:14px;
    }
}
@media screen and (max-width: 680px) {
	/* Визитка */ 
	#vizitka{
		width:540px;
		height:280px;
	}
	.vTable{
	    height:280px;
    }
    .vTable1{
	    height:160px;
    }
    .vTable2{
	    height:120px;
    }
    .vTable3{
	    height:160px;
    }
    .vTable4{
	    height:160px;
    }
    .vTable2 p{
	    height:120px;
	    border-top:3px solid #FFF;
	    font-weight:bold;
	    text-align:center;
	    font-size:16px;
	    padding-top:15px;
	    margin-left:25px;
	    margin-right:25px;
	    margin-bottom:25px;
    }
    .vTableFoto{
	    height:160px;
	    width:auto;
	    margin-top:25px;
	    margin-left:25px;
    }
    .vTableText{
	    margin-left:25px;
	    margin-right:25px;
    	font-weight:bold;
	    font-size:18px;
	    border-bottom:solid 1px #FFF;
    }
    .vTableText img{
	    width:15px;
	    height:13px;
	    margin-right:9px;
    }
    .vTableTel{
	    margin-left:25px;
	    margin-right:25px;
	    font-weight:bold;
	    font-size:13px;
	    text-align:left;
	    border-bottom:solid 1px #FFF;
    }
    .vTableTel img{
	    width:15px;
	    height:9px;
	    margin-right:9px;
    }
	#redakt_on{
		width:540px;
	}
	#v_onl_book{
		font-size:8px;
		margin-top:20px;
		margin-right:25px;
	}
	.fInfo textarea{
		font-size:18px;
		height:80px;
	}
    .mb5{width:100%;
	}
}
@media screen and (max-width: 650px) {
	.formaTP input[type="name"], 
	.formaTP input[type="femile"], 
	.formaTP input[type="captcha"], 
    .formaTP input[type="password"]{
		width:100%;
		margin-right:0%;
	}
	.cph{
		float:left;
		width:100%;
		text-align:center;
	}
	.formaTP{
		padding-right:50px;
	}
	#newsBotn{
	    margin-right:5%;
    }
}
@media screen and (max-width: 600px) {
    /* Пагинация страниц */ 
	.normal_link{
        font-size:10px;
        padding:5px;
	    padding-left:10px;
	    padding-right:10px;
    }
    .active_link{
        font-size:10px;
        padding:5px;
	    padding-left:10px;
	    padding-right:10px;
    }
	.normal_link2{
        font-size:10px;
        padding:5px;
	    padding-left:10px;
	    padding-right:10px;
    }
	/* Визитка ***********/ 
	#vizitka{
		width:450px;
		height:250px;
	}
	.vTable{
	    height:250px;
    }
    .vTable1{
	    height:140px;
    }
    .vTable2{
	    height:110px;
    }
    .vTable3{
	    height:140px;
    }
    .vTable4{
	    height:140px;
    }
    .vTable2 p{
	    height:110px;
	    border-top:2px solid #FFF;
	    font-weight:bold;
	    text-align:center;
	    font-size:12px;
	    padding-top:5px;
	    margin-left:10px;
	    margin-right:10px;
	    margin-bottom:10px;
    }
    .vTableFoto{
	    height:140px;
	    width:auto;
	    margin-top:10px;
	    margin-left:10px;
    }
    .vTableText{
	    margin-left:10px;
	    margin-right:10px;
    	font-weight:bold;
	    font-size:14px;
	    border-bottom:solid 1px #FFF;
    }
    .vTableText img{
	    width:11px;
	    height:9px;
	    margin-right:5px;
    }
    .vTableTel{
	    margin-left:10px;
	    margin-right:10px;
	    font-weight:bold;
	    font-size:10px;
	    text-align:left;
	    border-bottom:solid 1px #FFF;
    }
    .vTableTel img{
	    width:14px;
	    height:9px;
	    margin-right:5px;
    }
	#redakt_on{
		width:450px;
	}
	#v_onl_book{
		font-size:8px;
		margin-top:0px;
		margin-right:10px;
	}
	.fInfo textarea{
		font-size:18px;
		height:80px;
	}
	#footer_2{
		float:left;
		text-align:left;
	}
	.mb4{
		width:450px;
	}
	.mb5{
		width:450px;
	}
	.offMobile{
		display:none;
	}
	.offMobile2{
		display:none;
	}
}
@media screen and (max-width: 510px) {
	/* Визитка */ 
	#vizitka{
		width:350px;
		height:200px;
	}
	.vTable{
	    height:200px;
    }
    .vTable1{
	    height:110px;
    }
    .vTable2{
	    height:90px;
    }
    .vTable3{
	    height:110px;
    }
    .vTable4{
	    height:110px;
    }
    .vTable2 p{
	    height:90px;
	    border-top:2px solid #FFF;
	    font-weight:bold;
	    text-align:center;
	    font-size:12px;
	    padding-top:5px;
	    margin-left:10px;
	    margin-right:10px;
	    margin-bottom:10px;
    }
    .vTableFoto{
	    height:110px;
	    width:auto;
	    margin-top:10px;
	    margin-left:10px;
    }
    .vTableText{
	    margin-left:10px;
	    margin-right:10px;
    	font-weight:bold;
	    font-size:12px;
	    border-bottom:solid 1px #FFF;
    }
    .vTableText img{
	    width:11px;
	    height:9px;
	    margin-right:5px;
    }
    .vTableTel{
	    margin-left:10px;
	    margin-right:10px;
	    font-weight:bold;
	    font-size:8px;
	    text-align:left;
	    border-bottom:solid 1px #FFF;
    }
    .vTableTel img{
	    width:14px;
	    height:9px;
	    margin-right:5px;
    }
	#redakt_on{
		width:350px;
	}
	#v_onl_book{
		font-size:6px;
		margin-top:0px;
		margin-right:5px;
		border:none;
	}
	.fInfo textarea{
		font-size:12px;
		height:60px;
	}
	.fInfo input[type="submit"]{
		font-size:16px;
	}
	#footer_2{
		float:left;
		text-align:left;
	}
	.offMobile{
		display:none;
	}
	.offMobile2{
		display:none;
	}
	#poisk{width:100%;}
	#footer_1{font-size:18px;} 
	#footer_2{float:left; text-align:left;} 
	.mb4{width:350px;} 
	.mb5{width:350px;}
}
@media screen and (max-width: 500px) {
	.postcardImagesAdditional { width:100%; height:auto; } /* Открытка*/
	.utb { height:200px; } /* Ютуб */
	.formaTP{
		padding-right:40px;
	}
	.podtver input[type="submit"]{
	    width:46%;
    }
	#newsBotn{
		margin-top:10px;
		margin-right:25%;
    }
}
@media screen and (max-width: 410px) {
	/* Визитка */ 
	#vizitka{
		width:300px;
		height:180px;
	}
	.vTable{
	    height:180px;
    }
    .vTable1{
	    height:100px;
    }
    .vTable2{
	    height:80px;
    }
    .vTable3{
	    height:100px;
    }
    .vTable4{
	    height:100px;
    }
    .vTable2 p{
	    height:80px;
	    border-top:2px solid #FFF;
	    font-weight:bold;
	    text-align:center;
	    font-size:10px;
	    padding-top:5px;
	    margin-left:10px;
	    margin-right:10px;
	    margin-bottom:10px;
    }
    .vTableFoto{
	    height:100px;
	    width:auto;
	    margin-top:10px;
	    margin-left:10px;
    }
    .vTableText{
	    margin-left:10px;
	    margin-right:10px;
    	font-weight:bold;
	    font-size:9px;
	    border-bottom:solid 1px #FFF;
    }
    .vTableText img{
	    width:11px;
	    height:9px;
	    margin-right:5px;
    }
    .vTableTel{
	    margin-left:10px;
	    margin-right:10px;
	    font-weight:bold;
	    font-size:8px;
	    text-align:left;
	    border-bottom:solid 1px #FFF;
    }
    .vTableTel img{
	    width:14px;
	    height:9px;
	    margin-right:5px;
    }
	#redakt_on{
		width:300px;
	}
	#v_onl_book{
		font-size:6px;
		margin-top:0px;
		margin-right:5px;
		border:none;
	}
	.fInfo textarea{
		font-size:12px;
		height:60px;
	}
	.fInfo input[type="submit"]{
		font-size:16px;
	}
	#footer_2{
		float:left;
		text-align:left;
	}
	.offMobile{
		display:none;
	}
	.offMobile2{
		display:none;
	}
	#poisk{width:100%;}
	#forma_grin{padding:9px;}
	#footer_1{font-size:16px;} #footer_2{float:left; text-align:left;} .mb{width:100%;} .mb4{width:300px;} .mb5{width:300px;}
	#ass{
	    width:55px;
	    height:35px;
	    background:url(../images/kcmc-6.png);
    }
    #ass:active, 
    #ass:hover, 
    #ass:focus{
	    background:url(../images/kcmc-5.png);
    }
    #ass2{
	    width:197px;
	    height:35px;
	    background:url(../images/kcmc-8.png);
    }
    #ass2:active, 
    #ass2:hover, 
    #ass2:focus{
	    background:url(../images/kcmc-7.png);
    }
	.messages2 p{
	width:85%;
	font-size:14px;
    }
}
@media screen and (max-width: 330px) {
	#newsBotn{
		margin-right:0%;
    }
	#poisk{width:100%;}
	#forma_grin{padding:9px;}
	#footer_1{font-size:16px;} #footer_2{float:left; text-align:left;} .mb{width:100%;} .mb4{width:300px;} .mb5{width:300px;}
}