* {
    box-sizing: border-box;
}

body {
	margin: 0;
	font-family: 'Encode Sans Semi Expanded', sans-serif; font-weight: 400;
	min-width: 750px;
	
}

table {

}

td {
	padding-bottom: 15px;
	text-align: left;
}

li {
	line-height: 1.5;
	text-align: left;
}

h2 {
	text-align: left;
}


.logo {
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 2;
}



/* Style the header */
.header {
	font-family: 'Source Sans Pro', sans-serif; font-weight: 200;
	text-align: center;
	top:50%;
	font-size: 64px;
    background-color: #f1f1f1;
    height: 80px;
}

.footer {
	position:fixed;
	bottom:0;
	width:100%;
	text-align: center;
	color: #CECECE;
	background-color: #f1f1f1;
}
.footer a:link { color: #B7B7B7; }
.footer a:visited { color: #B7B7B7; }
.footer a:hover { color: #B7B7B7; }
.footer a:active { color: #B7B7B7; }

/* Style the top navigation bar */
.topnav {
    overflow: hidden;
    background-color: #333;
}

/* Style the topnav links */
.topnav a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

/* Change color on hover */
.topnav a:hover {
    background-color: #ddd;
    color: black;
}

/* Create three equal columns that floats next to each other */
.column50 {
    float: left;
    width: 50%;
    padding: 15px;
}
.column100 {
    float: left;
    width: 100%;
    padding: 15px;
}
.columnLeft {
    float: left;
    width: 70%;
    padding: 15px;
	text-align: justify;
}
.columnRight {
    float: right;
    width: 30%;
    padding: 15px;
	text-align: right;
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media screen and (max-width:600px) {
    .column {
        width: 100%;
    }
}