html, body {
	background-color: #fff;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 20px;
	color: #fff;

}

.hide-desktop {
	display: none ;
}

.hidden {
	display: none;
}

@media screen and (max-width: 639px) {
	.hide-mobile {
		display: none;
	}
	.hide-desktop {
		display: block;
	}
}
@media screen and (min-width: 640px) {
	.hide-mobile {
		display: none;
	}
	.hide-desktop {
		display: block;
	}
}
@media screen and (min-width: 800px) {
	.hide-mobile {
		display: block;
	}
	.hide-desktop {
		display: none;
	}
}
@media screen and (min-width: 960px) {
	.hide-mobile {
		display: block;
	}
	.hide-desktop {
		display: none;
	}
}

h1 {
	font-size: 20px;
	font-weight: bold;
	color: rgb(20,45,105);
	margin: 10px 0 15px 0;
}
h2 {
	font-size: 14px;
	line-height: 24px;
	font-weight: bold;
	color: rgb(20,45,105);
	margin: 10px 0 20px 0;
}
p {
	font-size: 12px;
	line-height: 24px;
	margin-bottom: 20px;
}

#stage {
	max-width: 980px;
	margin: 0 auto;
	background-color: #fff;
	clear: both;
	padding-left: 10px;
}