.mikebuttonrollover {
	color: #fff;
	text-transform: uppercase;
	text-decoration: none;
	background: #0f545a;
	padding: 15px;
	border-radius: 5px;
	display: inline-block;
	border: none;
	transition: all 0.4s ease 0s;
}

.mikebuttonrollover:hover {
	background: #434343;
	letter-spacing: 1px;
	-webkit-box-shadow: 0px 5px 40px -10px rgba(0,0,0,0.57);
	-moz-box-shadow: 0px 5px 40px -10px rgba(0,0,0,0.57);
	box-shadow: 5px 40px -10px rgba(0,0,0,0.57);
	transition: all 0.4s ease 0s;
}

/* Create four equal columns that floats next to each other */
.responsivecolumnquad {
  float: left;
  width: 25%;
  justify-content: center;
  text-align: center;
  padding: 5px;
}

/* Create three equal columns that floats next to each other */
.responsivecolumntriple {
  float: left;
  width: 33%;
  justify-content: center;
  text-align: center;
  padding: 5px;
}

/* Create two equal columns that floats next to each other */
.responsivecolumn {
  float: left;
  width: 50%;
  justify-content: center;
  text-align: center;
  padding: 10px;
}

/* Create one full width column that floats next to each other */
.responsivecolumnsingle {
  float: left;
  width: 100%;
  justify-content: center;
  text-align: center;
  padding: 10px;
}

/* Clear floats after the columns */
.responsiverow:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .responsivecolumn {
    width: 100%;
  }
}

@media screen and (max-width: 600px) {
  .responsivecolumntriple {
    width: 100%;
  }
}

@media screen and (max-width: 600px) {
  .responsivecolumnquad {
    width: 100%;
  }
}

.simplewhitebutton {
	color: #000000;
  font-size:15px;
	text-transform: uppercase;
	text-decoration: none;
	background: #ffffff;
	padding: 8px;
  border-style: solid;
	border-radius: 1px;
	display: inline-block;
  border-color: #000000;
	margin-top: 8px;
}

.simplewhitebutton:hover {
	background: #0f545a;
  text-decoration: none;
  color: #ffffff;
}