*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
 }

html {
	min-height: 100%;
	background-color: #8d8163;
	font-family: 'Libre Baskerville', serif;
}

body {
	margin: 0;
	padding: 0;
}

a:link {
    color: #009;
}

a:visited {
    color: #48468f;
}

a:hover {
    color: #f20;
}

a[name] {
    color: inherit;
    text-decoration: inherit;
}

.wrapper {
	margin: 0 auto;
	width: 1000px;
}

.header {
	height: 160px;
}

.header-name {
	float: right;
	margin: 15px 0;
	font-size: 24px;
}

.banner {
	margin-top: 10px;
}

.nav {
	margin: 0;
	padding: 0;
}

.section {
	width: 790px;
	float: left;
	background-color: #fff;
	margin: 5px 0 10px;
	padding: 15px 10px;
	font-size: 14px;
	box-shadow: 2px 2px 5px gray;
}

.aside {
	box-shadow: 2px 2px 5px gray;
	width: 195px;
	float: right;
	text-align: center;
	background-color: #fff;
	margin: 5px 0;
	padding: 5px;
}

.footer {
	clear: both;
	border-top: 1px solid black;
	text-align: center;
	font-size: 10px;
}

.footer > p {
	text-align: justify;
}

.menu {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.menu li a {
	text-decoration: none;
	width: 200px;
	float: left;
	font-size: 16px;
	padding-top: 5px;
	text-align: center;
	color: #000;
	height: 32px;
	border-top: 1px solid black;
	border-bottom: 1px solid black;
}

.menu li a:hover {
	color: #fff;
	background-color: #008000;
	background: -ms-linear-gradient(top, #00a000 0%, #008000 100%);
	background: -moz-linear-gradient(top, #00a000, #008000);
	background: -webkit-gradient(linear, left top, left bottom, from(#00a000), to(#008000));
}

.profile-pic {
	float: left;
	margin-right: 10px;
	box-shadow: 3px 3px 5px gray;
}

.contact-form label {
	display: block;
	font-weight: bold;
}

.contact-form textarea {
	width: 765px;
	height: 300px;
}

#id_subject {
	width: 767px;
}

#id_sender {
	width: 360px;
}

.errorlist li {
	color: #f00;
	list-style-type: none;
}

.submit-button {
	width: 150px;
	height: 30px;
	float: right;
	font-size: 16px;
}

.article > p:first-of-type{
	margin-top: 0;
}

.article > p:last-of-type{
	margin-bottom: 0;
}

.article-title {
	display: block;
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 14px;
}