
	.parallax {
		-webkit-perspective: 1px;
		perspective: 1px;		
		perspective-origin-x: 50%;
        width: 100%;
        height:100%;
		overflow-x: hidden;
		overflow-y: auto;        
	}
	
	.parallax__layer {
		position: absolute;
		perspective-origin-x: 100%;	
	}
	
	.parallax__layer--content {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;	       
	}

    .parallax__layer--base {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);        
	}

	/* 1 + (translateZ * -1) / perspective */
	.parallax__layer--bottom-filter {
		-webkit-transform: translateZ(-1px) scale(2);
		transform: translateZ(-1px) scale(2);
	}

	.parallax__layer--bottom {
	  	transform: translateZ(-2px) scale(3);
	  	top: 0;
		right: 18px;
		bottom: 0;
		left: -18px;
	}

	.parallax__group {
		position: relative;
		transform-style: preserve-3d;
	}
	
	.parallax {
		/*background-color: #1D1D1D;		*/
	}

	.parallaxHomeImage {	
		opacity:1; 
		background-color:transparent;
		background-image:url('../images/ui/screen_000.jpg');			                    
		background-size: cover;
		background-position: center center;

		/*
		border:1px solid red;	
		-webkit-animation-name: slidesX;
    	-webkit-animation-duration: 4s;
		animation-name: slidesX;
    	animation-duration: 4s;
		*/
	}

	@-webkit-keyframes slidesX {
		from {background-image: url('../images/ui/screen_001.jpg')}
		to {background-image: url('../images/ui/screen_002.jpg')}
	}

	@keyframes slidesX {
		from {
			background-image: url('../images/ui/screen_001.jpg')}	
		to {background-image: url('../images/ui/screen_002.jpg')}
	}
