@import url(https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300,700,300italic);
* {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4 {
  margin: 0;
}

a:link,
a:visited {
  color: inherit;
  text-decoration: none;
}

body {
  background: #1c1d26;
  color: #333;
  font-family: "Open Sans Condensed", sans-serif;
  font-size: 1em;
}

p {
  text-align: justify;
}

blockquote {
  font-style: italic;
  color: #666;
  background: #f1f1f1;
  border: 1px solid #3b4f5f;
  padding: 20px;

}
blockquote p {
  padding: 0;
  margin: 0;
  
}

.wrapper {
  width: 100%;
  max-width: 1050px;
  margin: 20px auto 0 auto;
  background: #f1f1f1;
  padding: 20px;
  overflow: hidden;
}

.top {
  width: 100%;
  padding: 0;
  position: relative;
}
.top span {
  position: absolute;
  top: 40%;
  right: 0;
  font-size: 1.2em;
}

.banner {
  overflow: hidden;
  background: url(https://subtlepatterns.com/patterns/textured_paper.png);
  width: 100%;
  height: 350px;
  margin-top: 20px;
  border-top: 3px solid #3b4f5f;
  border-bottom: 3px solid #3b4f5f;
  position: relative;
}
.banner h1 {
  padding-top: 14%;
  text-align: center;
}
.banner span {
  font-weight: normal;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 20px;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  color: #f1f1f1;
}

.clear {
  clear: both;
}

nav {
  border-top: 3px solid #3b4f5f;
  border-bottom: 3px solid #3b4f5f;
  margin-top: 20px;
  overflow: hidden;
  background-color: #3b4f5f;
  color: #f1f1f1;
}
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav ul li {
  float: left;
  text-transform: uppercase;
  padding: 20px;
}
nav ul li a {
  text-decoration: none;
  font-weight: bold;
}
nav ul li:hover,
nav ul .current {
  background: #212e35;
  color: #fff;
}

.callout {
  margin-top: 20px;
  border-top: 3px solid #3b4f5f;
  border-bottom: 3px solid #3b4f5f;
  overflow: hidden;
  padding: 20px;
  width: 100%;
  background: #fff;
  text-align: justify;
}

.content {
  background-color: #fff;
  padding: 20px;
  margin-top: 20px;
  border-top: 3px solid #3b4f5f;
  border-bottom: 3px solid #3b4f5f;
  overflow: hidden;
  width: 64%;
  float: left;
}

.sidebar {
  background-color: #fff;
  padding: 20px;
  margin-top: 20px;
  border-top: 3px solid #3b4f5f;
  border-bottom: 3px solid #3b4f5f;
  float: right;
  width: 33.33%;
}
.sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sidebar ul li {
  margin-top: 10px;
  padding: 10px;
  text-transform: uppercase;
  background: #212e35;
  color: #fff;
}
.sidebar ul li:hover {
  color: #fff;
  background: #3b4f5f;
}

.lower {
  overflow: hidden;
}
.lower .quart {
  width: 25%;
  float: left;
  padding: 20px 0 0 0;
}
.lower .quart .module {
  padding: 20px;
  border-top: 3px solid #3b4f5f;
  border-bottom: 3px solid #3b4f5f;
  background-color: #fff;
}
.lower .quart p {
  margin: 0;
}

.footer {
  max-width: 1050px;
  width: 100%;
  background-color: #ffffff;
  padding: 20px;
  margin: 0 auto;
  overflow: hidden;
}