#photos, #photos2, #photos3 {
   /* Prevent vertical gaps */
   line-height: 1px;
   
   -webkit-column-count: 3;
   -webkit-column-gap:   2px;
   -moz-column-count:    3;
   -moz-column-gap:      2px;
   column-count:         3;
   column-gap:           2px;
}

#photos img, #photos2 img, #photos3 img {
  /* Just in case there are inline attributes */
  width: 100% !important;
  height: auto !important;
}

@media (max-width: 1200px) {
  #photos, #photos2, #photos3 {
  -moz-column-count:    2;
  -webkit-column-count: 2;
  column-count:         2;
  }
}
@media (max-width: 1000px) {
  #photos, #photos2, #photos3 {
  -moz-column-count:    2;
  -webkit-column-count: 2;
  column-count:         2;
  }
}
@media (max-width: 800px) {
  #photos, #photos2, #photos3 {
  -moz-column-count:    2;
  -webkit-column-count: 2;
  column-count:         2;
  }
}
@media (max-width: 400px) {
  #photos, #photos2, #photos3 {
  -moz-column-count:    1;
  -webkit-column-count: 1;
  column-count:         1;
  }
}

body {
  margin: 0;
  padding-left: 15%;
  padding-right: 15%;
}
footer{
	padding-bottom: 1%; 
}

.js .loader {
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background: url('/img/loading.gif') 50% 50% no-repeat rgb(38,38,38);
}
.no-js .loader { display: none;  }

.navbar-nav {
    float:none;
    margin: 0 auto;
    display: block;
    text-align: center;
}

.navbar-nav > li {
    display: inline-block;
    float: none;
}