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

* { margin: 0; padding: 0; }
body {
	color: #000066;
	font-size: .9em;
	font-family: Verdana, Arial, Helvetica, san-serif;
	line-height: 130%;
	background-color: #cf9;
	
	
}
h1{
	font-size: 1.5em;
	text-align: center;
	font-family: "Arial Black", Gadget, sans-serif;
	margin-bottom: 10px;
	line-height: normal;
}
h2 {
	font-size: 1.5em;
	font-weight: bold;
	text-align: center;
	font-family: Arial, Helvetica, sans-serif;
	border-top-width: 1px;
	border-top-style: dashed;
	border-top-color: #006;
	margin-top: 0px;
	margin-right: 0;
	margin-bottom: 5px;
	margin-left: 0;
	padding-top: 10px;
	padding-bottom: 20px;
	background-image: url(../images/Crocus_tr.png);
	background-repeat: no-repeat;
	background-position: left top;
}
a:link {
	text-decoration: none;
	color: #666;
	font-weight: bold;
 }

a:visited {
	text-decoration: none;
	color: #003366;
}

a:hover {
	text-decoration: none;
	color: #fff;
	background-color: #006;
 }

a:active {
	color: #fff;
	background-color: #006;
 }

#photos {
	/* make vertical gaps */
  
	
	-webkit-column-count: 5;
	-webkit-column-gap:   2px;
	-moz-column-count:    5;
	-moz-column-gap:      2px;
	column-count:         5;
	column-gap:           2px;
	
	
}
#photos img {
  /* Just in case there are inline attributes */
  width: 100% !important;
  height: auto !important;
  border: 2px solid #fff;
}

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