
.cd-tabs {
  position: relative;
  width: 100%;
  padding:10px 0px 30px 0px;
}
.cd-tabs:after {
  content: "";
  display: table;
  clear: both;
}
.cd-tabs::after {
  /* subtle gradient layer on top right - to indicate it's possible to scroll */
  position: absolute;
  top: 0;
  right: 0;
  height: 60px;
  width: 50px;
  z-index: 1;
  pointer-events: none;
  background: -webkit-linear-gradient( right , #f8f7ee, rgba(248, 247, 238, 0));
  background: linear-gradient(to left, #f8f7ee, rgba(248, 247, 238, 0));
  visibility: visible;
  opacity: 1;
  -webkit-transition: opacity .3s 0s, visibility 0s 0s;
  -moz-transition: opacity .3s 0s, visibility 0s 0s;
  transition: opacity .3s 0s, visibility 0s 0s;
    -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  content: '';
}
.no-cssgradients .cd-tabs::after {
  display: none;
    -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  content: '';
}
.cd-tabs.is-ended::after {
  /* class added in jQuery - remove the gradient layer when it's no longer possible to scroll */
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity .3s 0s, visibility 0s .3s;
  -moz-transition: opacity .3s 0s, visibility 0s .3s;
  transition: opacity .3s 0s, visibility 0s .3s;
    -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  content: '';
}
.cd-tabs nav {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  position: relative;
  float: none;
  background: transparent;
  box-shadow: none;
}
.cd-tabs-navigation {
  /* tabbed on top on big devices */
  width: auto;
  padding:0px;
  list-style: none;
  background-color: rgba(209, 211, 212, 0); /* фон кнопки без нажатия*/
  box-shadow: inset 0px -1px 0px rgba(204, 204, 204, 0.3);
}
.cd-tabs-navigation:after {
  content: "";
  display: table;
  clear: both;
}
.cd-tabs-navigation li {
  float: left;
  background-color: rgba(209, 211, 212, 1); /* фон кнопки без нажатия*/
  box-shadow: inset 0 -2px 3px rgba(203, 196, 130, 0.06);
}
.cd-tabs-navigation a {
  position: relative;
  display: block;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 700;
  color: #3399d5;
  padding-top: 34px;
  text-decoration:none;

    height: 43px;
    line-height: 43px;
    width: auto;
    text-align: left;
	font-family: "PT Sans", sans-serif;
    font-size: 14px;
    padding: 0 25px 0 47px;
  border-left:2px #a7a9ac solid;
  box-sizing: border-box;
}
.no-touch .cd-tabs-navigation a:hover {
  color: #29324e;
  background-color: rgba(255, 255, 255, 0.5);
}
.cd-tabs-navigation a.selected {
  background-color: #ffffff !important; /*фон выделенной кнопки*/
  color: #29324e;
  height:42px;
  box-shadow: inset 0px 2px 0 #cc3939;
  border-left:2px #a7a9ac solid;
  box-sizing: border-box;
}
.cd-tabs-navigation a::before {
  /* icons */
  position: absolute;
  display: inline-block;
  height: 20px;
  width: 20px;
  background-image: url("/img/viconsn.svg");
  background-repeat: no-repeat;
    top: 50%;
    margin-top: -10px;
    margin-left: 0;
    left: 20px;
	  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  content: '';
}


.cd-tabs-navigation a[data-content='inbox']::before {
  background-position: 0 0;
    -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  content: '';
}
.cd-tabs-navigation a[data-content='ttx']::before {
  background-position: -20px 0;
    -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  content: '';
}
.cd-tabs-navigation a[data-content='brosh']::before {
  background-position: -20px 0;
    -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  content: '';
}
.cd-tabs-navigation a[data-content='dopmat']::before {
  background-position: -40px 0;
    -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  content: '';
}
.cd-tabs-navigation a[data-content='sert']::before {
  background-position: -60px 0;
    -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  content: '';
}
.cd-tabs-navigation a[data-content='videom']::before {
  background-position: -80px 0;
    -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  content: '';
}
.cd-tabs-navigation a[data-content='df']::before {
  background-position: -100px 0;
    -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  content: '';
}


.cd-tabs-navigation a[data-content='inbox'].selected::before {
  background-position: 0 -20px;
    -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  content: '';
}
.cd-tabs-navigation a[data-content='brosh'].selected::before {
  background-position: -20px -20px;
    -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  content: '';
}
.cd-tabs-navigation a[data-content='ttx'].selected::before {
  background-position: -20px -20px;
    -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  content: '';
}
.cd-tabs-navigation a[data-content='dopmat'].selected::before {
  background-position: -40px -20px;
    -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  content: '';
}
.cd-tabs-navigation a[data-content='sert'].selected::before {
  background-position: -60px -20px;
    -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  content: '';
}
.cd-tabs-navigation a[data-content='videom'].selected::before {
  background-position: -80px -20px;
    -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  content: '';
}
.cd-tabs-navigation a[data-content='df'].selected::before {
  background-position: -100px -20px;
    -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  content: '';
}


.cd-tabs-content {
  background: #ffffff;
  min-height: 0;
  padding:0px;
}
.cd-tabs-content li {
  display: none;
  padding: 20px 30px 40px 30px;
  line-height:24px;
  font-family:Verdana, Arial, Helvetica, sans-serif; 
  font-size:14px; 
  color:#666699;
}
.cd-tabs-content li.selected {
  display: block;
  -webkit-animation: cd-fade-in 0.5s;
  -moz-animation: cd-fade-in 0.5s;
  animation: cd-fade-in 0.5s;
}



@-webkit-keyframes cd-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes cd-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes cd-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}


.obT1 a:hover .demo-gallery-poster > img {
	opacity: 1;
}
.obT1 a .demo-gallery-poster {
	background-color: rgba(0, 0, 0, 0.1);
	bottom: 0;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	-webkit-transition: background-color 0.15s ease 0s;
	-o-transition: background-color 0.15s ease 0s;
	transition: background-color 0.15s ease 0s;
}
.obT1 a .demo-gallery-poster > img {
	left: 14px;
	margin-left: 0px;
	margin-top: 0px;
	width:50px;
	height:50px;									  
	opacity: 0.8;
	position: absolute;
	top: 6px;
	-webkit-transition: opacity 0.3s ease 0s;
	-o-transition: opacity 0.3s ease 0s;
	transition: opacity 0.3s ease 0s;
}
.obT1 a:hover .demo-gallery-poster {
	background-color: rgba(0, 0, 0, 0.5);
}
									
.obT1b{
	width:320px; 
	height:240px; 
	position:relative;
	border:1px #d4d5d7 solid;
	margin-left:0px;
	float:left;
	cursor:pointer;
	transition: border 0.2s;
	-o-transition: border 0.2s;
	-ms-transition: border 0.2s;
	-moz-transition: border 0.2s;
	-webkit-transition: border 0.2s;
}
.obT1b:hover{
	border:1px #052a39 solid; 
}
		
.obT1b a:hover .demo-gallery-poster > img {
	opacity: 1;
}
.obT1b a .demo-gallery-poster {
	background-color: rgba(0, 0, 0, 0.1);
	bottom: 0;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	-webkit-transition: background-color 0.15s ease 0s;
	-o-transition: background-color 0.15s ease 0s;
	transition: background-color 0.15s ease 0s;
}
.obT1b a .demo-gallery-poster > img {
	left: 50%;
	margin-left: -50px;
	margin-top: -50px;
	width:100px;
	height:100px;
	opacity: 0.75;
	position: absolute;
	top: 50%;
	-webkit-transition: opacity 0.3s ease 0s;
	-o-transition: opacity 0.3s ease 0s;
	transition: opacity 0.3s ease 0s;
}
.obT1b a:hover .demo-gallery-poster {
	background-color: rgba(0, 0, 0, 0.5);
}

/*
     FILE ARCHIVED ON 09:23:17 Sep 07, 2024 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 14:46:17 Jun 05, 2026.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  capture_cache.get: 3.633
  captures_list: 1.14
  exclusion.robots: 0.138
  exclusion.robots.policy: 0.117
  esindex: 0.043
  cdx.remote: 118.161
  LoadShardBlock: 415.622 (3)
  PetaboxLoader3.resolve: 586.597 (4)
  PetaboxLoader3.datanode: 110.496 (5)
  load_resource: 352.565
  loaddict: 66.88
*/