/* @group reset
------------------------------------------------ */
table.data tfoot, table.data th, table.data td { margin: 0; padding: 0; border: 0; font-weight: inherit; font-style: inherit; font-size: 100%; font-family: inherit; vertical-align: baseline; }
/* @group table.data
--------------------------------------------- */
table.wide {width: 100%}
table.data { border-collapse: collapse }
table.data th {background: /* #F8F8F8 */ #eee ; color: #444; border: 1px solid #fff; border-top: 1px solid #dedede ;}
table.data th:first-child { border-left: 1px solid #dedede; }
table.data th {font-weight:bold; }
table.data th, table.data td {padding:4px 5px 4px 5px; }
table.data th:last-child { border-right: 1px solid #dedede; }
table.data td {border: 1px solid #dedede; border-width: 1px 1px 1px 1px; vertical-align: top;}
table.data tr {}
table.data tbody tr:hover {background: #fafafa }
table.data .check { width: 1%; }
table.data tfoot {font-style:italic; }

/* the overlayed element */
.thumb_overlay {
 
    /* must be initially hidden */
    display:none;
 
    /* place overlay on top of other elements */
    z-index:10000;
 
    /* styling */
    background-color:#333;
 
    border:1px solid #666;
 
    /* CSS3 styling for latest browsers */
    -moz-box-shadow:0 0 90px 5px #000;
    -webkit-box-shadow: 0 0 90px #000;
}
 
/* close button positioned on upper right corner */
.thumb_overlay .close {
    background-image:url(../images/close.png);
    position:absolute;
    right:-15px;
    top:-15px;
    cursor:pointer;
    height:35px;
    width:35px;
}

p.logo {
  z-index: 100;
}

/* Slideshow container */
.slideshow-container {
  max-width: 1024px;
  position: relative;
}

.slideshow-container .slides {
    display: none;
}

/* Next & previous buttons */
.slideshow-container .prev, .slideshow-container .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  text-decoration: none;
}

/* Position the "next button" to the right */
.slideshow-container .next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.slideshow-container .prev:hover, .slideshow-container .next:hover {
  background-color: rgba(0,0,0,0.8);
}

.slideshow-container .dots {
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* The dots/bullets/indicators */
.slideshow-container .dot {
  cursor:pointer;
  height: 13px;
  width: 13px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.slideshow-container .active, .slideshow-container .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.slideshow-container .fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}
