.slides-holder {
	background: #AC3838;
}
.slides {
    padding: 0;
    height: 482px;
    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; 
	text-align: center;
	position: absolute;
	left: 50%;
	margin-left: -520px;
	width: 1040px;
}

.slide {
    top: 0;
    opacity: 0;
    width: 772px;
    height: 482px;
    display: block;
    position: absolute;
    left: 134px;
    transform: scale(0);
    -webkit-transform: scale(0);

    transition: all .7s ease-in-out;

}

label.control {
    height: 482px;
    width: 134px;
    display: none; 
    cursor: pointer;
    position: absolute;

    transition: opacity .2s;
    background-color: #AC3838;
    text-shadow: 0px 0px 15px rgb(119, 119, 119);

    vertical-align: center;
}

.control img {
	position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    padding-left: 30px;
    padding-right: 30px;
}

.prev {
	left: 0;
}

.next {
	right: 0;
}

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

input:checked + .slide-container .slide {
    
    opacity: 1;

    transform: scale(1);
    -webkit-transform: scale(1);

    transition: opacity 1s ease-in-out;

}
/* 909/566
772x482
0.85
*/

.banner {
	position: absolute;
	width: 220px;
	height: 290px;
	background: white;
	opacity: 0.7;
	top: 70px;
	left: 452px;
	padding: 20px;
	font-family: "FontL";
}

.banner h1 {
	text-transform: uppercase;
	font-weight: bold;
	font-size: 14pt;
	padding-bottom: 10px;
}

.banner li {
	font-size: 12pt;
	text-align: left;
	padding-left: 5px;
	padding-bottom: 20px;
}

.banner ul {
	list-style-image: url('../images/tick.png');
}

.link {
	position: absolute;
	right: 40px;
	bottom: 40px;
	font-family: "FontL";
	font-size: 12pt;
}

.link a:link, .link a:active, .link a:hover, .link a:visited {
	color: white;
	text-transform: uppercase;
	text-decoration: none;
}

