* {
	margin: 0;
	padding: 0;
}
body {
	font-size: 1.5em;
	background: #F1EFF2;
}
.slides, .slide {
	position: absolute;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: #FCFAE3;
}
.slide {
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	padding: 3% 5%;
	box-sizing: border-box;
	-moz-box-sizing: border-box; /* Firefox */
	-webkit-box-sizing: border-box; /* Safari */
	visibility: hidden;
	opacity: 0;
	transition: all 1s;
	-moz-transition: all 1s;
	-webkit-transition: all 1s;
	-o-transition: all 1s;
	transform: translate(100px, 0); /* change animations here. or leave out */
	-moz-transform: translate(100px, 0);
	-webkit-transform: translate(100px, 0);
	-o-transform: translate(100px, 0);
}
.slide.current {
	visibility: visible;
	opacity: 1;
	transform: none;
	-moz-transform: none;
	-webkit-transform: none;
	-o-transform: none;
	transition: all 2s; /* change transitions here, or leave out */
	-moz-transition: all 2s;
	-webkit-transition: all 2s;
	-o-transition: all 2s;
}
.title-slide, .end-slide {
	background: url(../images/cat-pattern.jpg);
	text-align: center;
	padding-top: 10%;
}
.two-col p, .two-col img {
	width: 100%;
}
h1 {
	color: #053858;
}
h2 {
	margin-bottom: 1%;
	color: #A04C4A;
}
p, ul {
	color: #0C65A7;
}
ul {
	margin-left: 2%;
}
 @media all and (min-width: 55em) {
body {
	font-size: 2em;
}
.two-col p {
	float: left;
	width: 50%;
}
.two-col img {
	float: right;
	width: 40%;
}
}
