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

.pageImage {
  width: 90vw;
  height: auto;
  margin: 0 auto 30px;
  text-align: center;
}

.pageImage img {
  max-width: 100%;
  height: auto;
}

.gnav {
  margin-bottom: 60px;
}

article{
	width: 100%;
	height: auto;
	margin-bottom: 60px;
}

article h1{
	width: 100%;
	padding-bottom: 10px;
	margin-bottom: 15px;
	border-bottom: 1px solid #333;
	color: #333;
}

article p{
	float: left;
	width: 50%;
	height: auto;
	display: block;
}

article div{
	width: 50%;
	height: auto;
	box-sizing: border-box;
	padding: 10px;
	float: right;
}

article div img{
	max-width: 100%;
	height: auto;
}

@media screen and (max-width: 900px){
	article p{
		width: 100%;
		float: none;
	}
	
	article div{
		width: 100%;
		float: none;
	}
}