/* CSS Document */
* {
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	outline:none;
}
html,
body {
	margin:0;
	padding:0;
}
body {
	font-family: "Lato", sans-serif;
	font-weight:300;
	font-size:18px;
	line-height:180%;
	background-color:#e5e9ec;
}
.content-area {
	width:100%;
	max-width:1200px;
	margin:0 auto;
	padding:30px;
	position:relative;	
}
a {
	color:inherit;
	text-decoration:none;
	transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-webkit-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
}
a:hover {
	color:#0aa699;
}
ul {
	list-style:none;
	padding:0;
	margin:0;
}
footer {
	background-color:#23527c;
	color:#fff;
}
#footer-nav ul li {
	display:inline-block;
}
#footer-nav ul li:before {
	padding:5px 12px;
	content:"|";
}
#footer-nav ul li:first-child:before {
	padding:0;
	content:"";
}
a#site-author {
	font-family: "Patua One", cursive;
	font-size:20px;
	font-weight:normal;
}
a#site-author:hover {
	color:#6abc9f;
}
p span {
	font-weight:600;
	color:#099a8c;
	display:block;
}
h2 {
	color:#0aa699;
}
a.button {
	padding:12px 50px;
	color:#fff;
	border-radius:4px;
	background-color:#0aa699;
	font-weight:400;
	margin:30px auto;
	display:block;
	width:200px;
}
a.button:hover {
	background-color:#099a8c;
}
#contact-details .contact-icon {
	width:25px;
	height:25px;
	margin-right:12px;
	display:inline-block;
	background-image:url(images/contact-icons.png);
	background-size:75px 25px;
	background-repeat:no-repeat;
}
.address {
	background-position:0 0;
}
.phone {
	background-position:-25px 0;
}
.email {
	background-position:-50px 0;
}