@charset "utf-8";
/* Simple fluid media
   Note: Fluid media requires that you remove the media's height and width attributes from the HTML
   http://www.alistapart.com/articles/fluid-images/ 
*/
img, object, embed, video {
	max-width: 100%;
	color: #fff;
}

/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
	width:100%;
}

/*
	Dreamweaver Fluid Grid Properties
	----------------------------------
	dw-num-cols-mobile:		4;
	dw-num-cols-tablet:		8;
	dw-num-cols-desktop:	12;
	dw-gutter-percentage:	25;
	
	Inspiration from "Responsive Web Design" by Ethan Marcotte 
	http://www.alistapart.com/articles/responsive-web-design
	
	and Golden Grid System by Joni Korpi
	http://goldengridsystem.com/
*/

* {
  box-sizing: border-box;
}

.container {
  width: 80%;
  margin-bottom: 0px;
  background-image: url(images/cream100.png);
  align-content:center;
}

.item {
  width:  60px;
  height: 60px;
  float: left;
  border: 1px solid;
  background: #09F;
}

.item.w2 { width: 120px; }
.item.w3 { width: 180px; }
.item.w4 { width: 250px; }

.item.h2 { height: 100px; }
.item.h3 { height: 160px; }
.item.h4 { height: 250px; }
.item.h5 { height: 280px; }

.stamp {
  background: red;
  opacity: 0.75;
  position: absolute;
  border: 1px solid;
}

/* Mobile Layout: 480px and below. */

.container {
  width: 80%;
  	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	border-width: 0px;
	border-style: solid;
	align-content:center;
	background-image: url(images/cream100.png);
    }
	
/* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */

@media only screen and (min-width: 481px) {
	
.container {
  width: 80%;
  	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	border-width: 0px;
	border-style: solid;
	align-content:center;
	background-image: url(images/cream100.png);
    }
	
/* Desktop Layout: 769px to a max of 1232px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 769px) {
	
* {
  box-sizing: border-box;
}

.container {
  width: 80%;
  margin-bottom: 20px;
  background-image: url(images/cream100.png);
  align-content:center;
}

.item {
  width:  60px;
  height: 60px;
  float: left;
  border: 1px solid;
  background: #09F;
}

.item.w2 { width: 120px; }
.item.w3 { width: 180px; }
.item.w4 { width: 250px; }

.item.h2 { height: 100px; }
.item.h3 { height: 160px; }
.item.h4 { height: 250px; }
.item.h5 { height: 280px; }

.stamp {
  background: red;
  opacity: 0.75;
  position: absolute;
  border: 1px solid;
}
