/*-----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: 'Lato', sans-serif;
	background-color: #000;
}


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

/*-----HEADER -----*/
#headerWrapper {
	min-width: 320px;
}

header img {
	float: left;
	margin: 0 2%;
	width: 67px;
}

header h1 {
	font-weight: 700;
	font-size: 2.8em;
	padding-top: 1.0em;
	color: #eba600;
}

header h2 {
	font-size: 1.1em;
	padding-top: .1em;
	color: #ebd5a4;
}

/*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;
}



/*-----NAVigation -----*/



/*-----CONTENT -----*/
#content {
	background-color: #e6e6e6;
}

#content h2 {
	font-size: 2em;
	padding: 1em 0 0 0;
	margin: 0 2%;
	color: #0046eb;
	font-weight: 700;
}

#content h3 {
	margin: .3em 0 .5em 0;
	font-size: 1.5em;
}

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

div.row {
	overflow: hidden;
}

article {
	margin: .9em 2%;
	border-top: 1px solid #dbd4c5;
}

article figure {
	overflow: hidden;
	width: 100%;
}

article figure img {
	width: 46%;
	margin-right: 4%;
	float: left;
	border: 1px solid #777;
}

article figure figcaption {
	display: inline;
	width: 50%;
	font-size: .7em;
	color: #877550;
}



/*----- FOOTER -----*/
footer {
	clear: both;
	text-align: center;
	padding: 1em;
	background-color: #eba600;
}

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