@import url(http://fonts.googleapis.com/css?family=Varela+Round);

.slideshow-banner {
	display:block;
	background:transparent url(slideshow-banner-bg-transp.png) repeat top left;
	position:absolute;
	top:20%;
	z-index:999;
	color:#f3f5d5;
	text-transform: uppercase;
	font-family: 'LorimerNo2CondensedMedium';
	padding:10px 20px;
	text-align: center;
	font-size:1em;
	letter-spacing: .05em;
}
.slideshow-banner span {
	opacity: 1.25;
}

.slides {
    padding: 0;
    width: 100%;
    height: 150px; /*default height for mobile*/
    display: none; /*default hidden on smallest screens*/
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    
}


/***************************
horizontal phone and larger mobile
****************************/
@media (min-width: 410px) {
	.slides {
		display: block;
	    height: 130px;
	}
	
}
/***************************
tweeners
****************************/
@media (min-width: 500px) {
	.slides {
		display: block;
	    height: 160px;
	}
	.slideshow-banner {
		top:15%;
	}
}
/***************************
tablet and up
****************************/
@media (min-width: 720px) {
	.slides {
	    height: 200px;
	}
	.slideshow-banner {
		font-size:2em;
		letter-spacing: .2em;
	}
}
/***************************
desktop and up
****************************/
@media (min-width: 1000px) {
	.slides {
	    height: 275px;
	}
	.slideshow-banner {
		top:25%;
	}
	
}
/***************************
max width
****************************/
@media (min-width: 1250px) {
	.slides {
	    height: 375px;
	}
	.slideshow-banner {
		top:35%;
	}
}




.slides * {
    user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}

.slides input { display: none; }

.slide-container { display: block; }

.slide {
    top: 0;
    opacity: 0;
    width: 100%;
    height: auto;
    display: block;
    position: absolute;

    transform: scale(0);

    transition: all .7s ease-in-out;
}

.slide img {
    width: 100%;
    height: 100%;
}
.slide .caption {
	position:absolute;
	z-index: 9999;
	border:0px solid red;
	top: 10px;
	right:20px;
	padding:5px 15px;
    /* background:url(../bg_tile_gray_transparent.png) repeat; */
    color:white;
    font-size:13px;
   	font-style: italic;
   	display: block;
}
/***************************
small screen, caption doesnt fit
****************************/
@media (max-width: 550px) {
	.slide .caption {
		display: none;
	}
}



.nav label {
    width: 20%;
    height: 100%;
    display: none;
    position: absolute;

	  opacity: 0;
    z-index: 9;
    cursor: pointer;

    transition: opacity .2s;

    color: #FFF;
    font-size: 156pt;
    text-align: center;
    line-height: 380px;
    font-family: "Varela Round", sans-serif;
    background-color: rgba(255, 255, 255, .3);
    text-shadow: 0px 0px 15px rgb(119, 119, 119);
}

.slide:hover + .nav label { opacity: 0.5; }

.nav label:hover { opacity: 1; }

.nav .next { right: 0; }

input:checked + .slide-container  .slide {
    opacity: 1;

    transform: scale(1);

    transition: opacity 1s ease-in-out;
}

input:checked + .slide-container .nav label { display: block; }

.nav-dots {
	width: 100%;
	bottom: 9px;
	height: 11px;
	display: block;
	position: absolute;
	text-align: center;
}

.nav-dots .nav-dot {
	top: -5px;
	width: 11px;
	height: 11px;
	margin: 0 4px;
	position: relative;
	border-radius: 100%;
	display: inline-block;
	background-color: #fff;
}

.nav-dots .nav-dot:hover {
	cursor: pointer;
	background-color: rgba(0, 0, 0, 0.8);
}

input#img-1:checked ~ .nav-dots label#img-dot-1,
input#img-2:checked ~ .nav-dots label#img-dot-2,
input#img-3:checked ~ .nav-dots label#img-dot-3,
input#img-4:checked ~ .nav-dots label#img-dot-4,
input#img-5:checked ~ .nav-dots label#img-dot-5,
input#img-6:checked ~ .nav-dots label#img-dot-6,
input#img-7:checked ~ .nav-dots label#img-dot-7,
input#img-8:checked ~ .nav-dots label#img-dot-8 {
	background: rgba(0, 0, 0, 0.8);
}