@charset "utf-8";
/* CSS Document */
* {
    box-sizing: border-box;
}

@media only screen and (min-width:550px){
	.size-1 {width: 98%;}
	.size-2 {width: 48%}
}

@media only screen and (min-width:1000px){
	.size-1 {width:48%;}
	.size-2 {width:23%;}
}

#layout {
	max-width: 1380px;
	margin-left: auto;
	margin-right: auto;
}

body {
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif"; 
	font-size:14px;
}

h1 {
	font-family: Impact, Haettenschweiler, "Franklin Gothic Bold", "Arial Black", "sans-serif";
	font-size: 28px;
	font-weight: bold;
	color:navy;
	line-height: 130%;
}

h2 {
	font-family: Verdana;
	font-size: 20px;
}

p {
	line-height:150%;
}

header {
	background-color: #039;
	padding: 10px;
	border-bottom: medium solid #CCC;
}

nav {
	padding: 10px;
	color: navy;
	font-weight: bold;
	background-color: #3399FF;
	border-bottom: medium solid #CCC; 
	
}

nav ul {
	list-style-type:none; 
	margin:0; 
	padding:0;
	overflow: hidden;
	background-color: #3399FF
}

nav li {
	float: left;
}

nav li a {
	display: block;
	color: black;
	text-align: center;
	padding: 15px 20px;
	text-decoration: none;
}

nav li a:hover:not(.active) {
		background-color:navy;
		color: white;
}

.active {
		background-color: navy;
		color: white; 
}

section {
	background-color: white;
	padding: 5px;
	box-sizing: border-box;
	float: left;
	margin-bottom: 10px;
	width: 100%;
}

article {
	float: left;
	padding: 10px;
	margin: 1%;
	line-height: 130%;
}

footer {
	content:"";
	clear: both;
	background-color: black;
	padding: 10px;
	color: white;
	height: 40px;
}

footer p {
	margin: auto;
}

article img {
	width: 98%;
}









