html, body {
	margin: 0;
	padding: 0;
}
body{
	text-align: center;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 100%;
	padding: 0;
	color: #333;
	margin-top: 2%;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
	background-color: #453F3E;
}
#wrapper {
	padding: 0;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	text-align: left;
}
#header {
	width: 90%;
	margin-top: 0%;
	clear: right;
	margin-right: auto;
	margin-left: auto;
	min-width: 800px;
}
#title {
	font-family: 'Federo', 'sans-serif';
	height: 1em;
	width: 40%;
	min-width: 600px;
	font-size: 1.8em;
	text-transform: uppercase;
	font-weight:bold;
	letter-spacing: 0.2em;
	color: #707025;
	z-index:10;
	text-align: center;
	margin-right: auto;
	margin-left: auto;
}
#header b {
	text-transform: lowercase;
	color: #797979;
	font-size: .9em;
	}
#nav {
	width: 80%;
	text-transform: uppercase;
	margin-top:0;
	z-index:10;
	margin-left:auto;
	min-width: 70rem;/* keeps  nav bar from collapsing */
	margin-right: auto;
}
#nav li {
	float: left;
	position: relative;
	width: auto;
	margin-right: 4%;
	margin-left: 4%;
	list-style-type: none;
	display: inline-block;
}
#nav li a {
	text-decoration: none;
	color: #CCC;
	font-size: 100%;
	display: block;
}
#nav li ul {
	display: none;
	position: absolute;
	list-style-type: none;
}
#nav a:hover {
	color: #707025;
}
#nav .current a {
	color: #707025;
}
#galleryContainer {
	width: 976px;
	margin-left: auto;
	margin-right:auto;
	margin-top: 4%;
}
.item {
	width: 224px;
	float: left;
	padding: 10px;
	height: 260px;
}
.item img {
	margin-left: 10px;
	height: 200px;
	width: 200px;
}
.item img:hover {
	border: 4px solid #242120;
}
.item p {
	font-family: 'Federo', 'sans-serif';
	text-align: center;
	font-size: .9em;
	color: #CCC;
	letter-spacing: 0.2em;
	text-decoration: none;
}
.item p a {
	color: #CCC;
	text-decoration: none;
}
.item p a:hover {
	color: #707025;
}


#imageBox {
	text-align: center;
}
.clear {
	clear: both;
}


/****************************************************************/
/* MEDIA QUERIES */
/****************************************************************/

@media screen and (max-width: 600px) {
	#nav {
		min-width: 1rem;
		min-height: 4rem;
		
	}	
	#nav ul {
		width: 10rem;
		padding: .5rem 0;
		position: absolute;
		top: 4rem;
		border: solid 1px #aaa;
		background: #fff url(images/icon-menu.png) no-repeat 10px 11px;
		border-radius: 5px;
		box-shadow: 0 1px 2px rgba(0,0,0,.3);
	}
	
	#nav li {
		display: none; /* hide all <li> items */
		margin: 0;
	}
	#nav .current {
		display: block; /* show only current <li> item */
	}
	#nav a {
		display: block;
		padding: 5px 5px 5px 32px;
		text-align: left;
	}
	#nav .current a {
		background: none;
		color: #666;
	}

	/* on nav hover */
	#nav ul:hover {
		background-image: none;
	}
	#nav ul:hover li {
		display: block;
		margin: 0 0 5px;
	}
	#nav ul:hover .current {
		background: url(images/icon-check.png) no-repeat 10px 7px;
	}

	#header {	
		min-width: 1rem;
		}
		
	#header b {
	color: #fff;
	}
	
	#title {	
		min-width: 1rem;
		
		}
		
	#content {	
		display: none;
	}
	
	#contentMedia {	
		display: block;
		position:absolute;
		top: 0;
		left:0;
		z-index:-10;
	}