/* jQuery Lighter
 * Copyright 2015 Kevin Sylvestre
 * 1.2.5
 */
 .lighter, .lighter * {
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.lighter {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4000;
  opacity: 1;
}
.lighter.fade {
  opacity: 0;
}
.lighter.fade .lighter-container {
  -webkit-transform: scale(0.5);
  -moz-transform: scale(0.5);
  -ms-transform: scale(0.5);
  -o-transform: scale(0.5);
  transform: scale(0.5);
}
.lighter img {
  display: block;
  width: 100%;
  height: 100%;
}
.lighter .lighter-overlay {
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
}
.lighter .lighter-container {
  background: #FFF;
  position: absolute;
  z-index: 4000;
  top: 50%;
  left: 50%;
  right: 50%;
  bottom: 50%;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.5);
}
.lighter .lighter-container .lighter-close {
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  margin: -25px;
  line-height: 45px;
  font-size: 25pt;
  font-family: Helvetica, Arial, serif;
}
.lighter .lighter-container .lighter-next, .lighter .lighter-container .lighter-prev {
  display: none;
  top: 50%;
  width: 30px;
  height: 40px;
  margin: -20px 0;
  line-height: 34px;
  font-size: 32pt;
  font-family: Times, serif;
}
.lighter .lighter-container .lighter-next {
  right: 40px;
}
.lighter .lighter-container .lighter-prev {
  left: 40px;
}
.lighter .lighter-container .lighter-next,
.lighter .lighter-container .lighter-prev,
.lighter .lighter-container .lighter-close {
  cursor: pointer;
  position: absolute;
  z-index: 8000;
  text-align: center;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(36, 40, 51, 1);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.lighter .lighter-container .lighter-next:hover,
.lighter .lighter-container .lighter-prev:hover,
.lighter .lighter-container .lighter-close:hover {
  color: white;
  background: rgba(36, 40, 51, 0.6);
  text-decoration: none;
}
.lighter .lighter-container .lighter-next:active,
.lighter .lighter-container .lighter-prev:active,
.lighter .lighter-container .lighter-close:active {
  color: white;
  background: rgba(36, 40, 51, 0.6);
  background: rgba(36, 40, 51, 0.6);
  text-decoration: none;
}

#galeria {
  display: block;
  width: 100%;
  margin: 0 auto;
}

ul.imglist { display: block; margin-bottom: 0px; padding: 0px; }
ul.imglist li { display: inline-block; float: left; width: 20% }
ul.imglist li a img { display: block; width: 100%; }


ul.itmlist { list-style: disc; margin-bottom: 20px; }
ul.itmlist li { margin-left: 20px; font-size: 1.2em; font-weight: bold; margin-bottom: 6px; }

.clearfix:after { content: "."; display: block; clear: both; visibility: hidden; line-height: 0; height: 0; }
.clearfix { display: inline-block; }

html[xmlns] .clearfix { display: block; }
* html .clearfix { height: 1%; }
