/**
 * @license minLight.css
 * Copyright (c) 2012 timmy willison
 * http://timmywillison.com/licence/
 */


/* ==|== base css for minLight lightboxes ======================================== */
.lightbox {
  position: absolute; top: 0; left: 50%;
  z-index: 9999; display: none;
}

.lightbox-close {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #aaa;
  background: rgba(0, 0, 0, 0.6);
  text-decoration: none;
  color: white;
  -webkit-border-radius: 20px;
     -moz-border-radius: 20px;
          border-radius: 20px;
  padding: 3px 8px 3px;
  font: bold 14px/1.3 "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.lightbox-close:hover {
  background: #bbb;
  background: rgba(0, 0, 0, 0.4);
}

.lightbox-close:active {
  background: #ccc;
  background: rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: inset black 0 0 5px;
     -moz-box-shadow: inset black 0 0 5px;
      -ms-box-shadow: inset black 0 0 5px;
       -o-box-shadow: inset black 0 0 5px;
          box-shadow: inset black 0 0 5px;
}

.lightbox-mask {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  background: #777;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998; display: none;
}
