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

* {
    box-sizing: border-box;
    font-family: "Source Sans 3", sans-serif;
  }

body {
    font-family: "Source Sans 3", sans-serif;
    font-size: 100%;
    margin: 0;
    max-width: 1200px;
    width: 100%;
}
p {
    color: #333333;
    font-size: 1em;
}

h1 {
    margin-top: 0px;
    margin-bottom: 14px;
    font-size: 2em;
    font-weight: 600;
    color: #565656;
}

h2 {
    font-size: 1.5em;
    font-weight: 600;
    color: #565656;
}

h3 {
    font-size: 1.2em;
    font-weight: 600;
    color: #555;
}

h5 {
	font-size: 1em;
	font-weight: 400;
	color: #565656;
	}


code {
    font-family: "Source Code Pro", Consolas, "Andale Mono", Monaco, monospace;
    color: #565656;
    font-size: 14px;
}

a {
    color: #0068BD;
    text-decoration: none;
    font-size: 1.em;
}

a:visited {
    color: #007FE7;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

ul li {
    list-style-type: disc;
    font-size: 1em;
    padding-right: 12px;
    color: #444;
}

.banner {
    background-color: #506B80;
    font-size: 4em;
    font-weight: bold;
    color: #fff;
    width: 100%;
    text-align: center;
    padding: 15px 0px 15px 10px;
}

/* Style the content */
.content {
    background-color: #ddd;
    padding: 10px;
    width: 100%;
    font-size: 1em;
}

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

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

/* Change color on hover */
.topnav a:hover {
    background-color: #04AA6D;
    color: white;
}

/* Style the footer */
.footer {
    background-color: #aaa;
    padding: 10px 10px 10px 10px;
    font-size: 0.85em;
    text-align: center;
    color: #fff;
    margin: 0;
    max-width: 1200px;
    width: 100%;
}


