.flex-between {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}
body,
* {
  margin: 0;
  padding: 0;
}
#home {
  background-color: #fff;
}
#home #header {
  width: 100%;
}
#home #header #blogTitle {
  background-color: #f3f3f3;
  padding: 18px 30px 15px;
}
#home #header #blogTitle #lnkBlogLogo {
  display: none;
}
#home #header #blogTitle h1 {
  font-size: 26px;
  font-weight: bold;
  line-height: 39px;
}
#home #header #blogTitle h1 a {
  color: #515151;
  text-decoration: none;
}
#home #header #blogTitle h2 {
  font-size: 22px;
  font-weight: lighter;
  line-height: 28px;
  color: #757575;
}
#home #header #navigator {
  background-color: #222e2a;
  color: #fff;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}
#home #header #navigator #navList {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}
#home #header #navigator #navList li {
  list-style: none;
}
#home #header #navigator #navList li a {
  display: table-cell;
  width: 60px;
  height: 50px;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
}
#home #header #navigator #navList li a:link,
#home #header #navigator #navList li a:visited {
  color: #fff;
}
#home #header #navigator .blogStats {
  color: #757575;
  transform: translateY(3px);
  margin-right: 10px;
}
#home #main {
  margin: 0 auto;
  width: 65%;
  min-width: 960px;
}
@media (max-width: 1030px) {
  #home #main {
    width: 100%;
    min-width: 100%;
  }
}