#coverslide {
	position : absolute;
	width : 930px;
	height : 550px;
	border-radius : 15px;
	right : 0;
	bottom : 0;
	z-index : 0;
}

/******************/

.skippr {
	width : 100%;
	height : 100%;
	position : relative;
	overflow : hidden;
}

.skippr > div {
	position : absolute;
	width : 100%;
	height : 100%;
	background-position : bottom center;
	background-repeat : no-repeat;
}

.skippr > img {
	position : absolute;
	width : 100%;
	min-height : 100%;
	top : 50%;
	left : 50%;
	-webkit-transform : translate(-50%,-50%);
	-moz-transform : translate(-50%,-50%);
	-ms-transform : translate(-50%,-50%);
	transform : translate(-50%,-50%);
}

.skippr-nav-container {
	position : absolute;
	left : 50%;
	-webkit-transform : translate(-50%,0);
	transform : translate(-50%,0);
	-moz-transform : translate(-50%,0);
	-ms-transform : translate(-50%,0);
	bottom : 25px;
	overflow : auto;
	z-index : 999;
}

.skippr-nav-element {
	cursor : pointer;
	float : left;
	background-color : rgba(255,255,255,0.5);
	-webkit-transition : all .25s linear;
	transition : all .25s linear;
}

.skippr-nav-element-bubble {
	width : 12px;
	height : 12px;
	border-radius : 50%;
	margin : 0 4px;
}

.skippr-nav-element-block {
	width : 60px;
	height : 10px;
}

.skippr-nav-element:hover,.skippr-nav-element-active {
	background-color : rgba(255,255,255,1);
}