@import url("grid.css");
@import url("table.css");
@font-face {
    font-family: Open Sans;
    src: url(../fonts/OpenSans-Regular.ttf);
}

@font-face {
    font-family: Open Sans;
    src: url(../fonts/OpenSans-Bold.ttf);
    font-weight: bold;
}

@font-face {
    font-family: Open Sans;
    src: url(../fonts/OpenSans-Italic.ttf);
    font-style: italic;
}

@font-face {
    font-family: Open Sans;
    src: url(../fonts/OpenSans-Light.ttf);
    font-weight: 300;
}

body {
	margin: 0;
	font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}

input {
  width: 100%;
	height: 30px;
	border-radius: 4px;
	border: 1px solid #999;
  margin: 10px 0;
}

button {
	min-width: 120px;
	min-height: 34px;
	border: none;
	background-color: #3091c1;
	border-radius: 4px;
	color: #fff;
}

.container {
	max-width: 1000px;
	margin: 0 auto;
	padding: 10px;
}

.container-full {
	width: 100%;
	padding: 10px;
}

.pull-left {
  float: left;
}

.pull-right {
  float: right;
}

.top-nav {
  overflow: hidden;
  background-color: #333;
}

.top-nav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.top-nav a:hover {
  background-color: #ddd;
  color: black;
}

.active {
  background-color: #3091c1;
  color: white;
}

.top-nav .icon {
  display: none;
}

.author-div {
  padding: 15px;
  background-color: #ccc;
}

.contact-div {
  padding: 15px;
}

.author-avatar {
  float: left;
  width: 50px;
  height: 50px;
}

.author-avatar img {
  width: 100%;
}

.author-bio {
  float: left;
  padding: 0 15px;
}

.social-icons {
  float: right;
}

.social-icons img {
  width: 40px;
}

.clearfix {
  clear: both;
}

.form-control {
  width: 200px;
  border-radius: 4px;
  border: 1px solid #777;
}

a:hover, a {
  color: #3091c1;
}

a:visited, a:focus {
  color: #3091c1;
}

.login {
  width: 400px;
  margin: 0 auto;
}

@media screen and (max-width: 600px) {
  .top-nav a:not(:first-child) {display: none;}
  .top-nav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .top-nav.responsive {position: relative;}
  .top-nav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .top-nav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}