/*-----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-family:  'Roboto', sans-serif;
    color:#484848;
}


/*-----CONTAINER -----*/
#container {

	min-width: 320px;
	max-width: 1140px; 
}

/*-----HEADER -----*/

#headerWrapper {
    min-width: 320px;
    background: rgb(59,103,158); /* Old browsers */
background: -moz-linear-gradient(top, rgba(59,103,158,1) 0%, rgba(43,136,217,1) 80%, rgba(43,136,217,1) 80%, rgba(125,185,232,1) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, rgba(59,103,158,1) 0%,rgba(43,136,217,1) 80%,rgba(43,136,217,1) 80%,rgba(125,185,232,1) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, rgba(59,103,158,1) 0%,rgba(43,136,217,1) 80%,rgba(43,136,217,1) 80%,rgba(125,185,232,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3b679e', endColorstr='#7db9e8',GradientType=0 ); /* IE6-9 */

}

header img {
    float: left;
    margin:1% .5% 1% 2%;
    width:68px;
}

header h1 {
    font-family: 'Alegreya Sans SC', sans-serif; 
    padding-top:1%;
    font-size: 3em; 
    color:#fff;
}

header h2 {
    color:yellow;
    font-size: 1em;
    margin-top:-6px;
}

/*-----Search -----*/
div.search {
    position: absolute;
    top: 7px;
    right: 7px;
    z-index:999;
}

div.search input {
    width: 150px;
    border-radius: 5px;
    border: 1px solid rgba(0,0,0,0.5);
    padding: .5em;
    
    background-color: rgba(255,255,255,0.5);
    color: #584c32;
}

/*-----NAVIGATION -----*/




/*-----CONTENT -----*/


#content {

    background-color: rgba(244,244,240,0.9);
} 

#content div.column {
width:50%!important;
}


#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 {
    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;
    font-size: .8em;
	text-align: center;
	padding: 1em;
    background-color: #000;
    color: #fff;
}
footer a {
    color:#ccc;
}

/*---- Other -------*/
.clearfix:after {
    content: "";
    display: table;
    clear: both;
}
