/**
 *	GTX Top Story Rotator Styles
 */

/* Hide on screens < 1024 */
#tsr-container {
  display:none;
  background:#111;
  margin-bottom:20px;
}

/* Show on screens >= 1024 */
@media only screen and (min-width : 1024px) {
  #tsr-container {
    display:block;
  }
}

/* Main Image */
.tsr-main-image__media img {
  display:block;
  width:100%;
}
.tsr-main-image__media {
  display:none;
  -webkit-transform:translate3d(0,0,0);
}
.tsr-main-image__media:first-of-type {
  display:block;
}
.tsr-main-image__media:hover {
  cursor:pointer;
}
.tsr-media-slide {
  position: relative;
}
.tsr-media-slide__bg {
  background-size:cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.tsr-media-slide__gradient {
  background-color: rgba(0,0,0,.15);
  display: block;
  position: absolute;
  width: 100%;
  height:100%;
  z-index: 51;
  -webkit-transition: opacity 0.25s ease-in-out;
  -moz-transition: opacity 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out;
}
.tsr-media-slide:hover .tsr-media-slide__gradient {
  opacity:0;
}

/* Slide tag label */
.tsr-media-label {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 51;
  background:#165c9a;
  color: #fff;
  font-family:Arial,sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 9px;
  padding: 4px;
  text-transform: uppercase;
}

/* Hero area */
.tsr-story-hero {
  bottom: 20px;
  box-sizing: border-box;
  color: #fff;
  padding: 0 20px;
  position: absolute;
  width: 100%;
  z-index: 54;
}

.tsr-story-hero h1 {
  color: #fff;
  display: table-cell;
  font: 24px 'Futura Today DemiBold',Arial,sans-serif;
  line-height: 32px;
  margin: 0;
  padding: 0;
  position: relative;
  text-shadow: 1px 1px 1px rgba(0,0,0,0.4);
  vertical-align: top;
  width: 100%;
  z-index: 2;
}

.tsr-read-more {
  display: inline-block;
  padding: 10px 0 0;
  z-index: 5;
  position: relative;
  line-height: 24px;
  bottom: -8px;
}

.tsr-read-more-link {
  color: #fff;
  font-family:Arial,sans-serif;
  font-size: 14px;
  padding: 0 15px 4px 0;
  margin: 0 15px 0 0;
  border-right: 1px solid rgba(255,255,255,0.3);
  font-weight: 700;
  transition: color .15s;
  display: inline-block;
  vertical-align: top;
  line-height: 16px;
}

.tsr-author {
  font-family:Arial,sans-serif;
  font-weight:400;
  font-size:12px;
  height:auto;
  width:auto;
  color:#fff;
  padding:0 15px 4px 0;
  margin:0 15px 0 0;
  transition: color .15s;
  display:inline-block;
  vertical-align:top;
  line-height:16px;
}

/* Thumbnails */
.tsr-thumbnails ul {
  list-style-type:none;
  margin:0;
  padding:0;
}

.tsr-thumbnails ul li {
  height:100%;
  background:#111;
  border-right:1px solid #333;
  float:left;
  padding:10px 8px 8px;
}
.tsr-thumbnails ul li:hover {
  cursor: pointer;
}
.tsr-thumbnails li img {
  border: 1px solid #363636;
  display: block;
  margin: 2px auto 6px;
  overflow: hidden;
  height: 45px;
  width: 80px;
  transition: border-color .2s;
}
.tsr-thumb-text {
  height: 40px;
  overflow: hidden;
  position: relative;
  width: 100%;
  font: 700 11px Helvetica,Arial,sans-serif;
  color:#fff;
  line-height:14px;
  text-align: center;
}

.tsr-thumbnails ul li {
  width:16.6667%;
}
.tsr-thumbnails ul li:last-of-type {
  border-right:none;
}


/* Clearfix */
.tsr-clearfix {
  overflow: auto;
  zoom: 1;
}
