@charset "utf-8";
/* CSS Document */
*{
	box-sizing: border-box;
}
[class*="size-"] {
	width:98%;
}
@media only screen and (min-width:800px) {
	.size-1 {width:31.3%;}
	.size-2 {width:64.6%;}
	
}
[class*="size-"] {
	float: left;
	padding:10px;
	margin:1%;
}
section::after {
	content: "";
	clear: both;
	display: block;
}
#layout {
	max-width:1400px;
	margin:0 auto;
	
}
body {
	font-family: Verdana, Geneva, sans-serif;
	font-size:16px;
	background-color:#327080;
	margin-top:0;
}
section {
	padding:5px;
	background-color: white;
	box-sizing: border-box;
	margin-bottom:10px;
	width:100;
	border-radius:0px 0px 10px 10px;
}
header {
	background-color: white;
	padding:10px;
	border-bottom: medium solid lightgray;
}
nav {
	padding:5px;
	background-color: white;
	border-bottom: medium solid lightgray;
}
a:link, a:visited {
	color: black;
	text-decoration: none;
	padding:10px;
	font-size:18px;
}
a:hover {
	background-color:#327080;
	color: white;
	border-radius:5px;
	padding:10px;
}
.active {
	background-color:#327080;
	color: white;
	border-radius:5px;
	padding:10px;
}
aside {
	padding:5px;
	width:64.6%;
	border:1px solid black;
	line-height:130%;
	border-radius:5px;
}
aside img {
	width:50%;
	margin:0 auto;
	padding:5px;
}
article {
	padding:5px;
	width:64.6%;
	border:1px solid black;
	line-height:130%;
	border-radius:5px;
}
article img {
	width:90%;
	margin:0 auto;
	padding:5px;
	border-radius:10px;
}
h1{
	font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif";
	font-size:28px;
	font-weight: bold;
	color:#327080;
	line-height:130%;
}
h3 {
	font-family: Verdana;
	font-size:20px;
}
footer {
	background-color:#06313B;
	color: white;
	padding:5px;
	height:40px;
	border-radius:5px;
	clear: both;
}
fieldset {
	border-radius:5px;
}
p textarea {
	border-radius:5px;
	padding:3px;
}
p input {
	border-radius:5px;
	padding:3px;
}
legend {
	background-color:#327080;
	color: white;
	padding:5px;
	border-radius:5px;
	font-weight: bold;
	font-size:16px;
}