@charset "utf-8";
/* CSS Document */

body {font-family: 'Open Sans', sans-serif;}

h1, h2, h3, h4 {color: #009999;}

h1 {
	font-family: 'Comic Neue', cursive;
	font-style: italic;
	font-size: 60px;
	line-height: 65px;
	margin-bottom: 0;
	font-weight: bold;
}

.lg {
	font-size: 36px;
	margin-top: 20px;
	margin-bottom: 10px;
}

.auto {max-width: 750px;}

.boldblue {
	color: #009999;
	font-weight: bold;
}

a {color: #006a6a;}

.inner-container {
	width: 1000px;
	margin: 0 auto;
	padding: 25px;
}

.bluebg {background: #DCF4FF;}

.mobile {display: none;}
	.desktop {display: block;}

@media (max-width: 767px) {
	
    .auto {width: 100%;}
	
	.inner-container {width: 90%;}
	
	h1 {
	font-size: 32px;
		letter-spacing: -1px;
}
	
	.lg {
	font-size: 28px;
	margin-top: 0;
}
	
	.mobile {display: block;}
	.desktop {display: none;}
	
	p {font-size: 14px;}
}


