.slides {
    padding: 0;
    width: 520px;
    height: 395px;
    display: block;
    margin: 0 auto;
    position: relative;
}

.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 {
    opacity: 0;
    width: 500px;
    height: 375px;
    display: block;
    position: absolute;
    border-color: #CCC;
    border-style: solid;
    border-width: 1px;
    padding:10px;
    box-shadow: 3px 5px 3px #DDD;
    transition: all 1.0s ease-in-out;
}

.slide img {
    width: 100%;
    height: 100%;
}

.nav2 label {
    width: 100px;
    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: 374px;
    background-color: rgba(255, 255, 255, .3);
    text-shadow: 0px 0px 15px rgb(119, 119, 119);
}

.slide:hover + .nav2 label { opacity: 0.5; }

.nav2 label:hover { opacity: 1; }

.nav2 .next { right: 0; }

input:checked + .slide-container  .slide {
    opacity: 1;
    transition: opacity 1.0s ease-in-out;
}

input:checked + .slide-container .nav2 label { display: block; }

.nav-dots {
	width: 100%;
    bottom: -40px;
	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: #DDD;
}

.nav-dots .nav-dot:hover {
	cursor: pointer;
	background-color: #3399DD;
}

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,
input#img-9:checked ~ .nav-dots label#img-dot-9,
input#img-10:checked ~ .nav-dots label#img-dot-10,
input#img-11:checked ~ .nav-dots label#img-dot-11 {
	background-color: #3399DD;
}