body {
	background: #fff;
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

button {
	margin: 7px 20px 0;
	padding: 0;
	width: 30px;
	height: 30px;
	display: block;
	background-color: #e43a21;
	border-radius: 50%;
	border: none;
	color: #fff;
	text-align: center;
	line-height: 30px;
	cursor: pointer;
	outline: none;
}

button[data-prev] {
	float: left;
}

button[data-next] {
	float: right;
}


section article {
	width: 100%;
	display: none;
	opacity: 0;
	-webkit-transition: all 500ms linear;
	transition: all 500ms linear;
}

section article.visible {
	display: block;
	opacity: 1;
	-webkit-animation-name: fadeIn;
	-webkit-animation-duration: 1s;
	animation-name: fadeIn;
	animation-duration: 1s;
}

section article img {
	margin: 0 auto;
	display: block;
}

section.is-left article img {
	margin: 0;
}

footer {
	height: 45px;
	background-color: #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
	position: fixed;
	z-index: 7;
	bottom: 0px;
	left: 0;
	right: 0;
}

footer ul.pagging {
	padding-top: 18px;
	position: absolute;
	top: 0px;
	left: 50%;
}

footer ul.pagging li {
	margin: 0px 2px;
	height: 10px;
	width: 10px;
	float: left;
	display: block;
	background-color: #fff;
	border: 1px solid #e43a21;
	border-radius: 50%;
	cursor: pointer;
	position: relative;
	right: 50%;
}

footer ul.pagging li:hover,
footer ul.pagging li.active {
	background-color: #e43a21;
}

footer p.title {
	margin: 0;
	padding: 0;
	position: absolute;
	line-height: 45px;
	color: #e43a21;
	left: 70px;
	top: 0;
}

@-webkit-keyframes fadeIn {
	0% { opacity: 0; }
	100% { opacity: 1; }
}

@keyframes fadeIn {
	0% { opacity: 0; }
	100% { opacity: 1; }
}