.distractful{overflow:hidden;}
.distractful:hover{cursor: pointer; cursor: hand;}
.distractful-item{background-position: center center;background-size: cover;position:absolute;overflow: hidden}
.distractful-item img{display:none;}

.distractful.isParallax{position:fixed;z-index:0;}
.distractfulParallaxPlaceholder{background:black;}

body.distractful-body{overflow-x:hidden }

.distractful-controls{position:absolute;width:100px;height:75px;display: block;}
.distractful-controls:hover{cursor:pointer;}
.distractful-controls.left:hover {
  box-shadow: 10px -10px 0 rgba(255, 255, 255, 0.2);
}
.distractful-controls.left {
	left:50px;	
	width: 70px;
	height: 70px;
	border-top: 1px solid #333;
	border-right: 1px solid #333;
	border-width: 15px;
	-moz-transform: rotate(225deg);
	-ms-transform: rotate(225deg);
	-webkit-transform: rotate(225deg);
	transform: rotate(225deg);
	box-shadow: 5px -5px 0 #FFF;
	margin-top: 35px;
	cursor: pointer;
	transition: box-shadow 0.5s ease;
}
.distractful-controls.right:hover {
  box-shadow: 10px -10px 0 rgba(255, 255, 255, 0.2);
}
.distractful-controls.right {
	right:50px;
	width: 70px;
	height: 70px;
	border-top: 1px solid #333;
	border-right: 1px solid #333;
	border-width: 15px;
	-moz-transform: rotate(-315deg);
	-ms-transform: rotate(-315deg);
	-webkit-transform: rotate(-315deg);
	transform: rotate(-315deg);
	box-shadow: 5px -5px 0 #FFF;
	margin-top: 35px;
	cursor: pointer;
	transition: box-shadow 0.5s ease;
}

.distractful-pagers{position: absolute;bottom:50px;width:100%;text-align: center;}
.distractful-pager{
	position: relative;
    display: inline-block;
    margin: 0 8px;
    width: 10px;
    height: 10px;
    cursor: pointer;
}
.distractful-pager a:hover{background-color: rgba(255,255,255,.3);}
.distractful-pager a{
	background-color: transparent;
    box-shadow: 0 0 0 2px #fff;    
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    outline: 0;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    text-indent: -9999px;
    transition: box-shadow .3s ease,background-color .3s ease;

}
.distractful-pager.active{background-color: rgba(255,255,255,.3);}