/*Time for the CSS*/
.slider{
	height: 850px;	/*gallery total height*/ 
	width: 280px; 	/*thumbnails width*/
	position: relative;
	/*Instead of height we will use padding*/
	padding-left: 620px; /*left width of thumbnails, must be bigger than .slider>img->width*/
	margin: 0 0;
	border: 0px solid #73AD21;
}

/*Last thing remaining is to add transitions*/
.slider>img{
	position: absolute;
	left: 0; top: 0;
	transition: all 0.2s;
	width: 600px;	/*gallery image width*/
}

.slider input[name='slide_switch'] {
	display: none;
}

.slider label {
	/*Lets add some spacing for the thumbnails*/
	margin: 0px 1px 1px 0px;
	border: 2px solid #999;
	
	float: left;
	cursor: pointer;
	transition: all 0.2s;
	
	/*Default style = low opacity*/
	opacity: 0.7;
}

.slider label img{
	display: block;
	width: 80px;	/*single thumbnail width. thumbnails colums = .slider->width / width (280/80=3)*/
	height: auto;
}

/*Time to add the click effects*/
.slider input[name='slide_switch']:checked+label {
	border-color: #ff0000;
	opacity: 1;
}
/*Clicking any thumbnail now should change its opacity(style)*/
/*Time to work on the main images*/
.slider input[name='slide_switch'] ~ img {
	opacity: 0;
	transform: scale(1.0);
}
/*That hides all main images at a 110% size
On click the images will be displayed at normal size to complete the effect
*/
.slider input[name='slide_switch']:checked+label+img {
	opacity: 1;
	transform: scale(1);
}
/*Clicking on any thumbnail now should activate the image related to it*/

/*We are done :)*/

/* add the design class control: show at the bottom of the image */
.slider .design {
	position: absolute;
	left: 0px; 
	top: 800px;		/*top height of design text*/
	display:none
}

.slider input[name='slide_switch']:checked+label+img+.design {
	display: block
}

/* fine tune begin */
.slider{
	height: 850px;	/*gallery total height*/ 
	width: 280px; 	/*thumbnails width*/
	padding-left: 620px; /*left width of thumbnails, must be bigger than .slider>img->width*/
	border: 0px solid #73AD21;
}

.slider>img{
	width: 600px;	/*gallery image width*/
}

.slider label img{
	width: 80px;	/*single thumbnail width. thumbnails colums = .slider->width / width (280/80=3)*/
	height: auto;
}

.slider .design{
	top: 800px;		/*top height of design text*/
}
/* fine tune end */
