html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
    margin:0;
    padding:0;
    height:100%;
    min-height:100%;
    position:relative;
    background: whitesmoke;
    background: rgba(49,138,189,0.15);
    font-family: "Lato", sans-serif;
}
a {
    cursor: pointer; cursor: hand;
    text-decoration: none;
}
hr {
  border: 0px solid #D6D6D6;
  border-top-width: 1px;
}
.content {
    margin: auto;
    width: 960px;
}
#header {
    position: fixed;
    width: 100%;
    z-index: 25;
    height: 50px;
    background: #318abd;
    color: black;
    top: 0px;
    text-align: center;
}
#header img.logo {
    float:left;
    margin-top: 13px;
    height: 24px;
    width: 24px;
}
#header .search {
    height: 50px;
    border-left: 1px solid #4d99c4;
    border-right: 1px solid #4d99c4;
    padding-left: 10px;
    padding-right: 20px;
    width: 200px;
    margin: auto;
}
#header .search .search-input {
    font-family: Ubuntu,sans-serif;
    font-size: 12px;
    color: #fff;
    width: 100px;
    background-color: #318abd;
    border: 0px solid #dbdbdb;
}
#header .search-input::-webkit-input-placeholder { color: #97C3D7 }
#header .search-input::-moz-placeholder { color: #97C3D7 }

#header .search .search-button {
  background:url(/static/img/search-icon.png);
  border: 0;
  height: 20px;
  width: 20px;
  cursor: pointer;
  float: right;
}
#header_user_info {
  float: right;
  height: 50px;
  color: white;
  cursor: pointer;
}
#header_user_info img {
  border: 1px solid white;
  height: 30px;
  width: 30px;
  border-radius: 15px;
}
#header_user_info .user-name {
  margin-top: 10px;
  margin-left: 5px;
  font-size: 12px;
}
#header .logout-button {
  display: none;
  position: absolute;
  z-index: 2;
  color: white;
  background: #318abd;
  height: 30px;
  padding-top: 8px;
  border: 1px solid white;
  font-size: 12px;
}
#body {
  position: absolute;
  top: 50px;
  width: 100%;
  min-height: 100px;
  margin-top: 20px;
}
#loginBody {
  background: #318abd;
  color: white;
  text-align: center;
  padding: 10px;
}
#loginBody .login-title {
  font-size: 36px;
  font-weight: 400;
  margin: 15px 0px;
}
#loginBody .login-logo {
  width: 100px;
  height: 100px;
  display: block;
  margin: 15px auto;
}
#loginBody .login-subtitle {
  font-size: 18px;
  margin: 15px 0px;
  font-weight: 300;
  display: block;
}
#loginBody .login-button {
  font-size: 16px;
  background: #3B5999;
  padding: 5px 10px;
  color: white;
  border: 1px solid white;
  margin: 15px 0px;
  border-radius: 3px;
  display: block;
}
#loginBody .login-button i {
  margin-right: 5px;
}
#loginBody .login-button:hover {
  background: white;
  color: #3B5999;
  border: 1px solid #3B5999;
}
#loginBody .guest-button {
  background: white;
  color: #318abd;
  font-size: 16px;
  padding: 5px 10px;
  border-radius: 3px;
  display: block;
}
#loginBody .guest-button:hover {
  background: orange;
  color: white;
  display: block;
}
.center {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
