body {
	font-family: helvetica, arial, sans-serif;
	color: #000;
	padding-bottom: 50px;
}
h1 {
	position: absolute;
	text-transform: uppercase;
	position: fixed;
}


/*
	 CSS-Tricks Example
	 by Chris Coyier
	 http://css-tricks.com
*/

* { margin: 0; padding: 0; }

#papers {
   /* Prevent vertical gaps */
   line-height: 0;

   -webkit-column-count: 5;
   -webkit-column-gap:   0px;
   -moz-column-count:    5;
   -moz-column-gap:      0px;
   column-count:         5;
   column-gap:           0px;

}
#papers img {
  /* Just in case there are inline attributes */
  width: 100% !important;
  height: auto !important;
}
h1 {
	font-size: 150px;
	white-space: nowrap;
	bottom: -32px;
	left: -10px;
}
@media (max-width: 1200px) {
  #papers {
  -moz-column-count:    4;
  -webkit-column-count: 4;
  column-count:         4;
  }
  h1 {
  	font-size: 150px;
  	white-space: nowrap;
	bottom: -32px;
	left: -10px;
  }
}
@media (max-width: 1000px) {
  #papers {
  -moz-column-count:    3;
  -webkit-column-count: 3;
  column-count:         3;
  }
  h1 {
  	font-size: 125px;
  	line-height: 100px;
  	white-space: normal;
  	bottom: 0px;
  	left: 0;
  }
}
@media (max-width: 800px) {
  #papers {
  -moz-column-count:    2;
  -webkit-column-count: 2;
  column-count:         2;
  }
  h1 {
  	font-size: 125px;
  	line-height: 100px;
  	white-space: normal;
  	bottom: 0px;
  	left: 0;
  }
}
@media (max-width: 400px) {
  #papers {
  -moz-column-count:    1;
  -webkit-column-count: 1;
  column-count:         1;
  }
  h1 {
  	font-size: 100px;
  	line-height: 75px;
  	white-space: normal;
  	bottom: 0px;
  	left: 0;
  }

}