
html {
	box-sizing: border-box;
}

*,
*:before,
*:after {
	box-sizing: inherit;
}

body {
	margin: 0;
	color: #666;
	background: #fff;
	font: 14px/1.65 Arial, Helvetica, sans-serif;
	min-width: 768px;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: none;
}

* {
	max-height: 1000000px;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section,
summary {
	display: block;
}

img {
	border-style: none;
	max-width: 100%;
	height: auto;
}

a {
	color: #000;
	outline: none;
}

a:hover {
	text-decoration: none;
}

p {
	margin: 0 0 1.2em;
}

q {
	quotes: none;
}

.wrapper{
	position: relative;
	overflow: hidden;
}

.header{
	padding: 10px;
	min-height: 320px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 50% 0;
	max-width: 1080px;
	margin: 0 auto;
}

.logo{
	float: left;
}

.company-logo{
	float: right;
}

#nav{
	background: #339a99;
	padding: 0;
	margin: 0 auto 20px;
	max-width: 1080px;
}

#nav ul{
	display: table;
	table-layout: fixed;
	text-transform: uppercase;
	padding: 0;
	margin: 0;
	text-align: center;
	width: 100%;
	font-size: 14px;
}

#nav li{
	display: table-cell;
}

#nav a{
	color: #fff;
	text-decoration: none;
	display: block;
	padding: 25px 20px;
	-webkit-transition: background 0.3s;
	transition: background 0.3s;
}
#nav a:hover{
	background: #ed5137;
}
.main{
	max-width: 1080px;
	margin: 0 auto;
}

.container:after,
.main:after{
	content:'';
	clear: both;
	display: block;
}

.main{
	padding-bottom: 20px;
}

#sidebar{
	float: left;
	max-width: 335px;
	width: 35%;
}
#sidebar h2{
	background: #339a99;
	text-align: center;
	color: #fff;
	font-size: 16px;
	padding: 5px;
	font-weight: normal;
	margin: 0 0 10px;
}
#sidebar ul{
	list-style: none;
	line-height: 2;
	padding: 0;
}

#sidebar ul li{
	border-bottom: 1px solid #ececec;
}

#sidebar ul a{
	display: block;
	padding: 5px;
	-webkit-transition: background 0.3s, color 0.3s;
	transition: background 0.3s, color 0.3s;
}

#sidebar ul a:hover{
	background: red;
	color: #fff;
}

#content{
	overflow: hidden;
	padding-left: 40px;
}

.main h1{
	color: #4e83ad;
	margin: 0 0 12px;
	line-height: 1;
}
.post {
	padding: 0 0 15px;
	border-bottom: 1px solid #ececec;
}

.post + .post{
	padding-top: 30px;
}
.post h1{
	margin-bottom: 15px;
}
.post h1 a{
	text-decoration: none;
	color: #4958f3;
}

.post h1 a:hover{
	text-decoration: underline;
}

.post time{
	color: #4d9cd7;
	margin-bottom: 20px;
	display: block;
}

.footer{
	background: #339a99;
	padding: 10px 10px;
	margin: 0 auto;
	max-width: 1080px;
	color: #fff;
}

.footer:after{
	content:'';
	display: block;
	clear: both;
}

.copyright{
	float: left;
	width: 55%;
	font-size: 11px;
}

.contact-list{
	margin: 0;
	float: right;
}

.contact-list dt{
	float: left;
	text-align: right;
	padding-right: 10px;
}

.contact-list dd{
	overflow: hidden;
	margin: 0;
}

.contact-list table {
	border-spacing: 3px 1px;
}

.contact-list td {
	padding: 2px;
	margin-left: 5px;
	margin-right: 5px;
}

.contact-list th {
	width: 150px; 
    padding: 0;
}

.footer a{
	color: #fff;
}