
#address{
	padding-left: 20px;
	font-size: 16px;
	text-align: center;
}

#addressLines{
	font-size: 22px;
	padding-left: 30px;
}

.courseButton{
	float:left;
	width:280px;
	height: 256px;
	background-color: #84BECE;
	margin: 20px;
	margin-bottom: 30px;
	border-radius: 10px;
}
.courseButton:hover{
	animation-name: courseButtonTransition;
	animation-duration: 0.5s;
	animation-fill-mode: forwards;
}

.courseButton .coursetitle{
	font-family: myOswald;
	font-size: 22px;
	font-weight: normal;
	color: #F8FFF9;
	text-align: center;
	text-transform: uppercase;
	margin-top: -8px;
}
.courseButton .courseimage{
	display: block;
	position: relative;
	padding-top: 0px;
	top: 0px;
	margin:auto;
	width: 280px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}

.newBanner{
	position: absolute;
	top: 0;
	left: 0;
	
}

@keyframes courseButtonTransition{
	from{
		background-color: #84BECE;
	}
	to{
		background-color: #579AAC;
	}
	
}