.container{
	position: absolute;	
	top: 0;
	left: 50%;
	margin-left: -341.5px;
	width: 683px;
	height: 450px;		
}

.cr-container{
	position: absolute;
	top: 0;
	left: 0;	
	width: 683px;
	height: 213px;	

}

.cr-container label{
	width: 17px;
	height: 17px;
	cursor: pointer;	
	float:left;
	position: relative;
	margin-top:215px;	
	z-index: 1000;
	background-image: url(../imagens/imgs/bt_slider_down.png);	
	/*border:1px solid black;*/
}

.cr-container label:hover{
	width: 17px;
	height: 17px;
	cursor: pointer;	
	float:left;
	position: relative;
	margin-top:215px;		
	background-image: url(../imagens/imgs/bt_slider_up.png);		
	/*border:1px solid black;*/
}

.cr-container input.cr-selector-img-1 ~ label.cr-label-img-1{
	margin-left: 280px;
}

/* Botão Carregado*/
.cr-container input.cr-selector-img-1:checked ~ label.cr-label-img-1,
.cr-container input.cr-selector-img-2:checked ~ label.cr-label-img-2,
.cr-container input.cr-selector-img-3:checked ~ label.cr-label-img-3,
.cr-container input.cr-selector-img-4:checked ~ label.cr-label-img-4,
.cr-container input.cr-selector-img-5:checked ~ label.cr-label-img-5,
.cr-container input.cr-selector-img-6:checked ~ label.cr-label-img-6{
	width: 17px;
	height: 17px;
	background-image: url(../imagens/imgs/bt_slider_up.png);	
}
.cr-container input.cr-selector-img-1:checked ~ label.cr-label-img-1:before,
.cr-container input.cr-selector-img-2:checked ~ label.cr-label-img-2:before,
.cr-container input.cr-selector-img-3:checked ~ label.cr-label-img-3:before,
.cr-container input.cr-selector-img-4:checked ~ label.cr-label-img-4:before,
.cr-container input.cr-selector-img-5:checked ~ label.cr-label-img-5:before,
.cr-container input.cr-selector-img-6:checked ~ label.cr-label-img-6:before{
	width: 17px;
	height: 17px;
	background-image: url(../imagens/imgs/bt_slider_down.png);	
}
.cr-container input{
	display: none;
}

.cr-bgimg{
	width: 683px;
	height: 213px;
	position: absolute;
	left: 0px;
	top: 0px;
	z-index: 1;
}
.cr-bgimg{
	background-repeat: no-repeat;
	background-position: 0 0;
}
.cr-bgimg div{
	width: 341.5px;
	height: 100%;
	position: relative;
	float: left;
	overflow: hidden;
	background-repeat: no-repeat;
}
.cr-bgimg div span{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 213px;
	left: 0px;
	z-index: 2;	
}

.cr-bgimg div:nth-child(even) span{
	top: -213px;
}


.cr-bgimg div span:nth-child(1){
	/*background-image: url(../imagens/slider/1_DSC_0092.jpg);*/
}

.cr-bgimg div span:nth-child(2){
	/*background-image: url(../imagens/slider/2_DSC_0083.jpg);*/
}

.cr-bgimg div span:nth-child(3){
	/*background-image: url(../imagens/slider/3_DSC_0005.jpg);*/
}

.cr-bgimg div span:nth-child(4){
	/*background-image: url(../imagens/slider/4_DSC_0033.jpg);*/
}

.cr-bgimg div span:nth-child(5){
	/*background-image: url(../imagens/slider/5_DSC_0053.jpg);*/
}

.cr-bgimg div span:nth-child(6){
	/*background-image: url(../imagens/slider/6_DSC_0029.jpg);*/
}

.cr-bgimg div:nth-child(1) span{
	background-position: 0px 0px;
}
.cr-bgimg div:nth-child(2) span{
	background-position: -341.5px 0px;	
}

.cr-container input:checked ~ .cr-bgimg div span{
	-webkit-animation: slideOutUp 0.6s ease-in-out;
	-moz-animation: slideOutUp 0.6s ease-in-out;
	-o-animation: slideOutUp 0.6s ease-in-out;
	-ms-animation: slideOutUp 0.6s ease-in-out;
	animation: slideOutUp 0.6s ease-in-out;
}
.cr-container input:checked ~ .cr-bgimg div:nth-child(even) span{
	-webkit-animation: slideOutDown 0.6s ease-in-out;
	-moz-animation: slideOutDown 0.6s ease-in-out;
	-o-animation: slideOutDown 0.6s ease-in-out;
	-ms-animation: slideOutDown 0.6s ease-in-out;
	animation: slideOutDown 0.6s ease-in-out;
}
@-webkit-keyframes slideOutUp{
	0%{ top: 0px; }
	100%{ top: -213px; }
}
@-webkit-keyframes slideOutDown{
	0%{ top: 0px; }
	100%{ top: 213px; }
}
@-moz-keyframes slideOutUp{
	0%{ top: 0px; }
	100%{ top: -213px; }
}
@-moz-keyframes slideOutDown{
	0%{ top: 0px; }
	100%{ top: 213px; }
}
@-o-keyframes slideOutUp{
	0%{ top: 0px; }
	100%{ top: -213px; }
}
@-o-keyframes slideOutDown{
	0%{ top: 0px; }
	100%{ top: 213px; }
}
@-ms-keyframes slideOutUp{
	0%{ top: 0px; }
	100%{ top: -213px; }
}
@-ms-keyframes slideOutDown{
	0%{ top: 0px; }
	100%{ top: 213px; }
}
@keyframes slideOutUp{
	0%{ top: 0px; }
	100%{ top: -213px; }
}
@keyframes slideOutDown{
	0%{ top: 0px; }
	100%{ top: 213px; }
}
.cr-container input.cr-selector-img-1:checked ~ .cr-bgimg div span:nth-child(1),
.cr-container input.cr-selector-img-2:checked ~ .cr-bgimg div span:nth-child(2),
.cr-container input.cr-selector-img-3:checked ~ .cr-bgimg div span:nth-child(3),
.cr-container input.cr-selector-img-4:checked ~ .cr-bgimg div span:nth-child(4),
.cr-container input.cr-selector-img-5:checked ~ .cr-bgimg div span:nth-child(5),
.cr-container input.cr-selector-img-6:checked ~ .cr-bgimg div span:nth-child(6){
	-webkit-transition: top 0.5s ease-in-out;
	-moz-transition: top 0.5s ease-in-out;
	-o-transition: top 0.5s ease-in-out;
	-ms-transition: top 0.5s ease-in-out;
	transition: top 0.5s ease-in-out;
	-webkit-animation: none;
	-moz-animation: none;
	-o-animation: none;
	-ms-animation: none;
	animation: none;
	top: 0px;
	z-index: 10;
}