<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.video_gallery {
  width: 100%;
  display: block;
  margin-top: 20px;
}
.video_gallery .category {
  margin-bottom: 20px;
}
.video_gallery .category .title {
  font-size: 20px;
  border-bottom: 1px solid gray;
}
.video_gallery .category .title:hover {
  cursor: pointer;
  background: -moz-linear-gradient(top,  rgba(255,255,255,0) 0%, rgba(243,235,221,0) 47%, rgba(230,213,183,0.57) 100%); /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,0)), color-stop(47%,rgba(243,235,221,0)), color-stop(100%,rgba(230,213,183,0.57))); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top,  rgba(255,255,255,0) 0%,rgba(243,235,221,0) 47%,rgba(230,213,183,0.57) 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top,  rgba(255,255,255,0) 0%,rgba(243,235,221,0) 47%,rgba(230,213,183,0.57) 100%); /* Opera 11.10+ */
  background: -ms-linear-gradient(top,  rgba(255,255,255,0) 0%,rgba(243,235,221,0) 47%,rgba(230,213,183,0.57) 100%); /* IE10+ */
  background: linear-gradient(to bottom,  rgba(255,255,255,0) 0%,rgba(243,235,221,0) 47%,rgba(230,213,183,0.57) 100%); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#91e6d5b7',GradientType=0 ); /* IE6-9 */
}
.video_gallery .category .thumbs .thumb {
  display: inline-block;
  vertical-align: top;
}
.video_gallery .category .thumbs .thumb img {
  width: 200px;
  height: auto;
  margin: 10px;
  opacity:0.7;
  filter:alpha(opacity=70); /* For IE8 and earlier */	
  -webkit-transition: all 400ms ease-in;
  -moz-transition: all 400ms ease-in;
      -ms-transition: all 400ms ease-in;
      -o-transition: all 400ms ease-in;
  transition: all 400ms ease-in;
  padding: 2px;
  border: 1px solid #c6b08d;
}
.video_gallery .category .thumbs .thumb img:hover {
  opacity:1;
  filter:alpha(opacity=100); /* For IE8 and earlier */
  cursor: pointer;
}
.video_gallery .category .thumbs .thumb .tittle {
  font-size: 13px;
  text-align: center;
  width: 200px;
  height: auto;
  margin: 0 10px;
  line-height: 12px;  
}
.video_gallery .category .thumbs.hide {
  display: none;
}
.categories {
  display: inline-block;
  vertical-align: top;
  width: 36%;
  margin-top: 0px;
  padding: 0px;
  background: white;
  border-top: 2px solid #E6D5B7;
  border-bottom: 2px solid #E6D5B7;
}
.categories .title {
  padding: 15px 5px 7px 15px;
  margin: 0px;
  font-size: 1.1em;
}
.categories ul {
  width: 90%;
  margin: 12px 0px 10px 1px;
  list-style: none;
  padding: 2px 15px;
}
.categories ul li {
  border: 1px solid #E6D5B7;
  margin: 0;
}
.categories ul li:hover {
  background: #FDF5E7;
}
.categories ul li.principal {
  background: #f3ebdc;
  border-top: 3px solid #E6D5B7;
  padding: 7px 15px;
}
.categories ul li a {
  color: #474032;
  padding: 7px 18px;
  display: block;
}</pre></body></html>