@charset "utf-8";
/* CSS Document */

{
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Avenir, sans-serif;
}

.header {
  text-align: center;
  padding: 33px;
}

.row {
  display: -ms-flexbox; /* IE 10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE 10 */
  flex-wrap: wrap;
  padding: 0 13px;
}

/* Create two equal columns that sits next to each other */
.column {
  -ms-flex: 100%; /* IE 10 */
  flex: 100%;
  padding: 0 13px;
}

.column img {
	margin-top: 13px;
	vertical-align: middle;
}

.footer {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 77px;
	background-color: #ea573b;
	color: #fff;
	text-align: center;
	font-weight: normal;
	font-family: Avenir, sans-serif;
	font-size: 12px;
	line-height: 15px;
}

.footer a:link {
	color: #fff;
	text-decoration: none;
}
.footer a:visited {
	text-decoration: none;
	color: #000000;
}
.footer a:hover {
	text-decoration: underline;
	color: #6c3324;
}
.footer a:active {
	text-decoration: none;
	color: #fff;
}