/*-----Prevents iPhone from resizing in landscape mode -----*/
html {-webkit-text-size-adjust: none; }



/*----------- apply a natural box layout model to all elements --------------*/
* { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; }

/*-----BODY -----*/
body {
	font-size: 16px;
	font-weight: 300;
	font-family: 'Belgrano', serif;	
}


/*-----CONTAINER -----*/
#container {
	background-color: #fff;   /*becomes the nav background color*/
	min-width: 320px;
	max-width: 1140px;
}

/*-----HEADER -----*/
#headWrap { 
	min-width: 320px;
}
header img {
	float:left;
	margin: 0 2% ;
	width: 60px;
}
header h1 {
	font-weight: 700;
	font-size:2.8em;
	padding-top:1.0em;
	color: #09F;
}
header h2 {
	font-size:1.1em;
	padding-top:.1em;
	color: #F30;
}




/*-----NAVigation -----*/
/*search*/
div.search {
	position:absolute;
	top: 7px;
	right: 7px;
	z-index:999;
	
}
div.search input {
	width: 150px;;
	border-radius: 5px;	
	border: solid 1px rgba(0,0,0,0.5);
	padding: .5em;
	
	background-color: rgba(255,255,255,0.5);
	color: #584c32;
}





/*--------------CONTENT STUFF GOES HERE -------------------------*/
#content {background-color: rgba(244,243,240,0.9);}

#content h2 {
	font-size: 2em;
	padding: 1em 0 0 0;
	margin: 0 2%;
	color: #584c32;
	font-weight: 700;
}
#content h3 {
	margin: .3em 0 .5em 0;
	font-size: 1.5em;
}

#content p {
	padding-top: .6em;	
}


article {
	margin: .9em 2%; 
	border-top: 1px solid #dbd4c5;
}
article figure {
	/*THIS PREVENTS THE FIGURE FROM COLAPSING*/
	overflow: hidden;
	width: 100%;

}
article figure img {
	width: 46%; 
	margin-right: 4%; 
	float: left; 
	border: 1px solid #777;
	display: block;
}
	
article figure figcaption {
	display:inline;
	width: 50%; 
	font-size: .7em; 
	color: #877550;
	}



/*----- FOOTER -----*/


#footerWrapper {
	clear: both;
	text-align: center;
	padding: .5em;
	font-size: .65em;
	color: #eee;
	
	background: #877550;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#877550), color-stop(61%,#84775e), color-stop(100%,#584c32)); /*Android*/
	background: -webkit-linear-gradient(top,  #877550 0%,#84775e 61%,#584c32 100%); /*Safari, Chrome*/
	background: -o-linear-gradient(top,  #877550 0%,#84775e 61%,#584c32 100%); /*Opera on Windows*/
	background: linear-gradient(to bottom,  #877550 0%,#84775e 61%,#584c32 100%);
}
footer a {
	color: #eee;
}



/*----- OTHER -----*/
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}