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

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial;
}

h2 { postion: relative;
	text-align: center;
	padding-top:20px;
	padding-right: 20px;
}


h4 {
	display: block;
	text-align: center;
	color: gray;
}

p { text-align: left;
	padding-right: 20px;
	line-height: 1.5rem;
}

.special a {
	position: relative;
	float: left; 
	margin-left: 30%;
	width: 100%;
	line-height: 2em;
	font-display: block;
	font-weight: bold;
	text-decoration: none;
	color: black;
}

.blue {
	color: #48799c;
	line-height: 1.75em;
	font-style: italic;
	text-align: inherit;
}

.blue2{
	color: #000;
	line-height: 1.75em;
	font-style: normal;
	text-align: right;
}

.blue3 {
	font-style: normal;
	color: #000;
	float: right;
	margin-right: 120px;
	margin-top: -20px;
	line-height: .8em;
	}

.right {
	display: block;
	text-align: right;
}

.header {
	width: 100%;
	text-align: center;
	padding-top: 20px;
}

.row {
	display: -ms-flexbox; /* IE10 */
	display: flex;
	-ms-flex-wrap: wrap; /* IE10 */
	flex-wrap: wrap;
	padding: 30px 8px;
	justify-content: center;
}

/* Create four equal columns that sits next to each other */


.column {
	-ms-flex: 28%; /* IE10 */
	flex: 28%;
	max-width: 28%;
	padding: 0 8px;

}

.column img {
	margin-top: 8px;
	margin-bottom: 10px;
	vertical-align: middle;
	width: 90%;
}

footer {
	display: fixed;
	position: fixed;
	width: 100%;
	background-color: #717070;
	padding: 8px 0px 20px 0px;
	height: 30px;
	bottom: 0px;
}

.copyright {
	text-align: center;
	background-color: #717070;
	color: #FFFFFF;
	text-transform: uppercase;
	font-weight: lighter;
	letter-spacing: 2px;
	border-top-width: 2px;
	font-family: "Source Sans Pro";
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
	.column { 
		-ms-flex: 50%;
		flex: 50%;
		max-width: 50%;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    -ms-flex: 90%;
    flex: 90%;
    max-width: 90%;
}
	.row{
	padding-top: 10px;
}
	h2 {
		padding-top: 10px;
	}
	.header img {
		width: 95%;
	}

}

