* {
}
html,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
header {
  text-decoration: none !important;
}
body {
  width: 100vw;
  overflow-x: hidden;
  background-color: #e1e0dc;
  font-family: Helvetica;
  text-decoration: none !important;
}
.logoImg {
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding: 10px;
}
h4 {
  width: 20em;
  display: block;
  margin-left: auto;
  margin-right: auto;
  color: #64757d;
  font-family: Georgia, serif;
  text-align: center;
  font-weight: lighter;
}
body > header > h1 > a {
  color: #ffffff;
  font-weight: 400;
}
article > header {
}
footer {
  margin-top: 4px;
}
a {
  text-decoration: none;
}
.wrap {
  width: 99%;
  margin: 0 auto;
}
.content-area {
  display: inline-block;
}
.content-thin {
  width: 70%;
}
.content-full-width {
  width: 100%;
}
.content-area,
.primary-sidebar {
  display: inline-block;
}
.primary-sidebar {
  width: 25%;
  padding: 1%;
  vertical-align: top;
  background-color: #ececec;
}
.article-loop {
  width: 45%;
  text-align: left;
  margin: 5px;
  padding: 10px;
}
.article-full {
  width: 99%;
  padding: 1%;
}
.article-loop,
.article-full {
  display: inline-block;
  vertical-align: top;
  background-color: #fff;
  border-radius: 4px;
  margin-bottom: 4px;
}
.vertical-center {
  margin: 0;
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
@keyframes slide-in {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.slide-in {
  animation: slide-in 0.5s ease-out forwards;
}
