body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	margin: 0;
	padding: 1px 0;
	text-align: center;
	background-color: #eee
}

p { font-size: .85em; }
td { font-size: .9em; }
a img { border: none; }
a:link { color: #521; }
a:hover { color: #e02000; }
a:visited { color: #210; }
a:active { }
h1 { font-size: 1.15em; font-family: Helvetica, Geneva, Arial, SunSans-Regular, sans-serif; vertical-align: 1em; margin: 0.67em 0; margin-left: 0.67em; }
h2 { font-size: 1em; font-family: Helvetica, Geneva, Arial, SunSans-Regular, sans-serif; vertical-align: 1em; margin: 0.67em 0; margin-left: 0.67em; }
h3 { font-size: .85em; font-family: Helvetica, Geneva, Arial, SunSans-Regular, sans-serif; vertical-align: 1em; margin: 0.67em 0; margin-left: 0.67em; }

#AddThis{ float: left; margin: 5px 10px 5px 10px; }

#TwoCol { }
#container { 
	width:100%;
    max-width:62em;
    min-width:40em;
    background:#fff;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #ddd;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 

#sidebar1 {
	float: left; 
	width: 12em; /* since this element is floated, a width must be given */
	background: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0 0; /* top and bottom padding create visual space within this div */
}
#sidebar1 h3, #sidebar1 p, #sidebar1 h4 {
	margin-left: 0.9em; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 0.9em;
	font-weight: bold;
}

#mainContent { margin: 0 1em 0 13em; } 

.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear: both;
    height: 0;
    font-size: 1px;
    line-height: 0px;
}


#miniNav { background-color:#cd8; width:300px; font-size:0.75em; }
#infoDL { font-size: 0.75em; background-color: #D3CBCE; } 

.infoAction { font-size: 0.8em; padding: 10px 10px 10px 10px; 	background-repeat: repeat-x; }
#iaGreen { background-image: url(images/tk_green.png);  color: #FFF; }
#iaBlue { background-image: url(images/tk_blue.png); color: #FFF; }
#iaOrange {	background-image: url(images/tk_orange.png); color: #000; }
#iaCyan { background-image: url(images/tk_cyan.png);}


#infotxt { font-size: 0.85em; padding: 10px 0px 10px 0px; color: #666; } 

/* Menu*/
#menu { text-align: left; font-size: 1em; }

.boxcontent { border:1px solid black; width: 90px; float: left; margin-left: 5px; }

.inlinebox { border:1px solid black; width: 90px; float: left; margin-left: 5px; margin-right: 12px; }

.inlineimg { border:1px solid black; float: left; margin-right: 12px; }

.social{padding-left:0;list-style:none;font-size:0}
.social__item{display:inline-block;padding-left:.25rem;padding-right:.25rem}
.social__link{position:relative;display:inline-block;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;transition:background-color .15s ease-in-out;width:2rem;height:2rem;border-radius:.25rem}
.social__link::before{content:"";position:absolute;width:2rem;height:2rem;left:.25rem;top:.25rem;background:transparent no-repeat center center;background-size:100% 100%}
.social__link:hover{background-image: url(images/icoVK_.png)}
.social__link_tg::before{background-image: url(images/icoTG.png)}
.social__link_vk::before{background-image: url(images/icoVK.png)}
.social__link_gplus::before{background-image: url(images/icoGP.png)}
.social__link_insta::before{background-image: url(images/icoINST.png)}

/*
*/
.button {
  position: relative;
  display: inline-flex;
  text-decoration: none;
  color: #fff;
  background-color: #B4AAAA;
  padding-left: 0.5em;
	padding-top: 1px;
	width: 11.4em;
  overflow: hidden;
  z-index: 1;
  align-items: center;
  box-shadow: 0px 3px 4px -4px rgba(0, 0, 0, 0.75);
}
.button::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
          transform-origin: 0 50%;
  width: 100%;
  height: 100%;
  background-color: #E30000;
  z-index: -1;
  transition: -webkit-transform 350ms;
  transition: transform 350ms;
  transition: transform 350ms, -webkit-transform 350ms;
}

 a.button, a.button:link, a.button:hover, a.button:visited, a.button:active {color: #fff;}

.button span {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: .5em;
  padding: .5em;
  overflow: hidden;
  background-color: #d21010;
}
.button svg {
  max-width: 80px;
  width: 100%;
  height: 20px;
  fill: white;
}
.button:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.button:hover svg {
  -webkit-animation: moveArrow 500ms;
          animation: moveArrow 500ms;
}

@-webkit-keyframes moveArrow {
  0% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  49% {
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }
  50% {
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

@keyframes moveArrow {
  0% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  49% {
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }
  50% {
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

/* Адаптация встроенных видео adding-bottom:56.25%; padding-top:30px;*/
.video-responsive {
position:relative;
padding-bottom:55%;
padding-top:10px;
height:0;
overflow:hidden;
}
.video-responsive iframe, .video-responsive object, .video-responsive embed {
position: absolute; top: 0; left: 0;
width: 100%;
height: 100%; }
/* Конец кода адаптации встроенных видео */