/*  
Sticky Footer Solution
by Steve Hatcher 
http://stever.ca
http://www.cssstickyfooter.com

Must declare 0 margins on everything, also for main layout components use padding, not 
vertical margins (top and bottom) to add spacing, else those margins get added to total height 
and your footer gets pushed down a bit more, creating vertical scroll bars in the browser
*/

* {margin:0;padding:0;} 

html, body, #wrap {height: 100%;}

body > #wrap {height: auto; min-height: 100%;}

#content {padding-bottom: 24px;}

#footer {position: relative;
  margin-top: -24px;
  height: 24px;
  clear:both;} 

/* CLEAR FIX*/
.clearfix:after {content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;}
.clearfix {display: inline-block;}

/* Hides from IE-mac \*/

* html .clearfix { height: 1%;}
.clearfix {display: block;}

/* End hide from IE-mac 


/* custom */

body {
  background-color: #333;
  background-image: url('/img/noise.png');
  position: relative;
  font-family: 'Droid Sans', arial, serif;
}

#gradient {
  position: fixed;
  top: -3em;
  left: 50%;
  margin-left: -600px;
  width: 1200px;
  height: 700px;
  background-image: -moz-radial-gradient(center 100px 45deg, circle closest-corner, rgba(255, 255, 255, 0.3) -5%, rgba(255, 255, 255, 0) 90%);
  background-image: -webkit-gradient(radial, 50% 100, 0, 50% 50%, 400, from(rgba(255, 255, 255, 0.3)), to(rgba(255, 255, 255, 0)));
  z-index: -10;
  overflow: hidden;
}

header {
  margin-top: 100px;
}

.stripe {
  background-color: rgba(34, 34, 34, 0.7);
  border-top: 1px solid #777;
  border-bottom: 1px solid #111;
}

#content {
  padding-top: 3em;
}

.container {
  width: 900px;
  margin: 0 auto;
}

.hero {
  color: #eee;
  font-size: 1.5em;
  line-height: 1.5;
  text-shadow: #000 0 1px 0px;
  padding: 1em 0;
}

.hero img {
  float: right;
  border: 5px solid #eee;
  border-radius: 2px;
}

.hero a {
  color: #eee;
}

.hero a:hover {
  color: white;
}

.hero a:visited {
  color: #eef;
}

section {
  margin: 0;
  margin-bottom: 1em;
  padding: 0;
  display: block;
}

section .entry {
  box-sizing: border-box;

  float: left;
  border: 1px solid #333;
  width: 445px;
  margin-right: 10px;
  margin-bottom: 10px;
  background-image: -moz-linear-gradient(center top, rgba(255, 255, 255, 0.1), rgba(155, 255, 255, 0));
  background-image: -webkit-gradient(linear, center top, center bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(155, 255, 255, 0)));
}

section .entry:hover {
  background-color: white;
  background-color: rgba(192, 192, 192, 0.2);
}

section .entry:nth-of-type(2n) {
  margin-right: 0;
}

.entry > a {
  display: block;
  border: 1px solid #777;
  padding: 0 10px 1em;
  text-align: center;
  text-decoration: none;
  color: #eee;
}

.entry .preview {
  height: 300px;
  border: 5px solid #eee;
  border-radius: 2px;
  margin: 10px 0 auto;
  background-size: cover;
}

section h2, .entry h3 {
  margin: 0.25em 0;
  color: #eee;
  text-shadow: 0px 2px 1px #444;
  font-size: 2em;
  font-weight: 700;
}

.entry p {
  height: 2.5em;
}

.copyright {
  color: #333;
  text-align: center;
  margin: 1em 0;
}
