.view {
	width: 600px;
	height: 120px;
	margin: 0px 10px 0px;
	position: relative;
	justify-content: center;
	border: 0; /*3px solid rgb(43, 38, 66);*/
	/*box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.466);*/
	background: rgb(255, 255, 255);
	-webkit-perspective: 500px;
	-moz-perspective: 500px;
	-o-perspective: 500px;
	-ms-perspective: 500px;
	perspective: 500px;
	background-size:100%;
}

.view:hover img {
	left: -85px;
}

.view .slice{
	width: 100%;
	height: 24px;
	z-index: 100;
	
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	-o-transform-style: preserve-3d;
	-ms-transform-style: preserve-3d;
	transform-style: preserve-3d;
	
	-webkit-transform-origin: top center;
	-moz-transform-origin: top center;
	-o-transform-origin: top center;
	-ms-transform-origin: top center;
	transform-origin: top center;
	
	-webkit-transition: -webkit-transform 150ms ease-in-out;
	-moz-transition: -moz-transform 150ms ease-in-out;
	-o-transition: -o-transform 150ms ease-in-out;
	-ms-transition: -ms-transform 150ms ease-in-out;
	transition: transform 150ms ease-in-out;
}


.view .s2, 
.view .s3, 
.view .s4, 
.view .s5 {
	-webkit-transform: translate3d(0,24px,0);
	-moz-transform: translate3d(0,24px,0);
	-o-transform: translate3d(0,24px,0);
	-ms-transform: translate3d(0,24px,0);
	transform: translate3d(0,24px,0);
}
.view .s1 {
	background-position: 0px 0px;
}
.view .s2 {
	background-position: 0px -24px;
}
.view .s3 {
	background-position: 0px -48px;
}
.view .s4 {
	background-position: 0px -72px;
}
.view .s5 {
	background-position: 0px -96px;
}

.view .overlay {
	width: 100%;
	height: 24px;
	opacity: 0;
	position: absolute;
	-webkit-transition: opacity 150ms ease-in-out;
	-moz-transition: opacity 150ms ease-in-out;
	-o-transition: opacity 150ms ease-in-out;
	-ms-transition: opacity 150ms ease-in-out;
	transition: opacity 150ms ease-in-out;
}

.viewFold:hover .overlay {
	opacity: 1;
}

.viewFold img {
	position: absolute;
	z-index: 0;
	-webkit-transition: bottom 0.3s ease-in-out;
	-o-transition: bottom 0.3s ease-in-out;
	-moz-transition: bottom 0.3s ease-in-out;
	-ms-transition: bottom 0.3s ease-in-out;
	transition: bottom 0.3s ease-in-out;
}
.viewFold:hover .s2{
	-webkit-transform: translate3d(0,23px,0) rotate3d(1,0,0,-45deg);
	-moz-transform: translate3d(0,23px,0) rotate3d(1,0,0,-45deg);
	-o-transform: translate3d(0,23px,0) rotate3d(1,0,0,-45deg);
	-ms-transform: translate3d(0,23px,0) rotate3d(1,0,0,-45deg);
	transform: translate3d(0,23px,0) rotate3d(1,0,0,-45deg);
}
.viewFold:hover .s3{
	-webkit-transform: translate3d(0,23px,0) rotate3d(1,0,0,90deg);
	-moz-transform: translate3d(0,23px,0) rotate3d(1,0,0,90deg);
	-o-transform: translate3d(0,23px,0) rotate3d(1,0,0,90deg);
	-ms-transform: translate3d(0,23px,0) rotate3d(1,0,0,90deg);
	transform: translate3d(0,23px,0) rotate3d(1,0,0,90deg);
}
.viewFold:hover .s4{
	-webkit-transform: translate3d(0,23px,0) rotate3d(1,0,0,-90deg);
	-moz-transform: translate3d(0,23px,0) rotate3d(1,0,0,-90deg);
	-o-transform: translate3d(0,23px,0) rotate3d(1,0,0,-90deg);
	-ms-transform: translate3d(0,23px,0) rotate3d(1,0,0,-90deg);
	transform: translate3d(0,23px,0) rotate3d(1,0,0,-90deg);
}
.viewFold:hover .s5{
	-webkit-transform: translate3d(0,23px,0) rotate3d(1,0,0,90deg);
	-moz-transform: translate3d(0,23px,0) rotate3d(1,0,0,90deg);
	-o-transform: translate3d(0,23px,0) rotate3d(1,0,0,90deg);
	-ms-transform: translate3d(0,23px,0) rotate3d(1,0,0,90deg);
	transform: translate3d(0,23px,0) rotate3d(1,0,0,90deg);
}

.viewFold .s1 > .overlay {
	background: -moz-linear-gradient(top, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0) 100%);
	background: -webkit-linear-gradient(top, rgba(0,0,0,0.05) 0%,rgba(0,0,0,0) 100%);
	background: -o-linear-gradient(top, rgba(0,0,0,0.05) 0%,rgba(0,0,0,0) 100%);
	background: -ms-linear-gradient(top, rgba(0,0,0,0.05) 0%,rgba(0,0,0,0) 100%);
	background: linear-gradient(top, rgba(0,0,0,0.05) 0%,rgba(0,0,0,0) 100%);
}

.viewFold .s2 > .overlay {
	background: -moz-linear-gradient(bottom, rgba(255,255,255,0) 0%, rgba(255, 255, 255, 0.2) 100%);
	background: -webkit-linear-gradient(bottom, rgba(255,255,255,0) 0%, rgba(255, 255, 255, 0.2) 100%);
	background: -o-linear-gradient(bottom, rgba(255,255,255,0) 0%, rgba(255, 255, 255, 0.2) 100%);
	background: -ms-linear-gradient(bottom, rgba(255,255,255,0) 0%, rgba(255, 255, 255, 0.2) 100%);
	background: linear-gradient(bottom, rgba(255,255,255,0) 0%, rgba(255, 255, 255, 0.2) 100%);
}

.viewFold .s3 > .overlay {
	background: -moz-linear-gradient(top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 100%);
	background: -webkit-linear-gradient(top, rgba(0,0,0,0.8) 0%,rgba(0,0,0,0.2) 100%);
	background: -o-linear-gradient(top, rgba(0,0,0,0.8) 0%,rgba(0,0,0,0.2) 100%);
	background: -ms-linear-gradient(top, rgba(0,0,0,0.8) 0%,rgba(0,0,0,0.2) 100%);
	background: linear-gradient(top, rgba(0,0,0,0.8) 0%,rgba(0,0,0,0.2) 100%);
}

.viewFold .s4 > .overlay {
	background: -moz-linear-gradient(bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
	background: -webkit-linear-gradient(bottom, rgba(0,0,0,0.8) 0%,rgba(0,0,0,0) 100%);
	background: -o-linear-gradient(bottom, rgba(0,0,0,0.8) 0%,rgba(0,0,0,0) 100%);
	background: -ms-linear-gradient(bottom, rgba(0,0,0,0.8) 0%,rgba(0,0,0,0) 100%);
	background: linear-gradient(bottom, rgba(0,0,0,0.8) 0%,rgba(0,0,0,0) 100%);
}

.viewFold .s5 > .overlay {
	background: -moz-linear-gradient(top, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 100%);
	background: -webkit-linear-gradient(top, rgba(0,0,0,0.3) 0%,rgba(0,0,0,0) 100%);
	background: -o-linear-gradient(top, rgba(0,0,0,0.3) 0%,rgba(0,0,0,0) 100%);
	background: -ms-linear-gradient(top, rgba(0,0,0,0.3) 0%,rgba(0,0,0,0) 100%);
	background: linear-gradient(top, rgba(0,0,0,0.3) 0%,rgba(0,0,0,0) 100%);
}
