@charset "UTF-8";
/* CSS Document */
body {
	background-color: #FFF;
	color: #cb7d3e;
	font-family:Verdana, Geneva, sans-serif;
	font-size: 14px;
}
.banner {
	margin: auto;
	background-image: url(../img/banner.jpg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	width: 100%;
}
.text {
	text-align: center;
}
a {
	color: #cb7d3e;
	font-weight: bold;
	text-decoration: underline;
}

@media only screen and (max-width: 480px) {
	.banner {
		min-height: 230px;
	}
	.text {
		padding: 0 20px;
	}
}
@media only screen and (min-width: 481px) and (max-width: 900px) {
	.banner {
		min-height: 400px;
	}
	.text {
		padding: 0 50px;
	}
}
@media only screen and (min-width: 901px) {
	.banner {
		min-height: 758px;
	}
	.text {
		padding: 0 100px;
	}
}