html
{
    -webkit-font-smoothing: antialiased;
	box-sizing: border-box;
}

body
{
    -webkit-font-smoothing: antialiased;
    font-family: 'Open Sans', sans-serif;
    background-color: #fff;
	line-height: 28px;
	font-size: 20px;
	color: #333;
}

*, *:before, *:after
{
  box-sizing: inherit;
}

body.disable-scroll
{
	overflow: hidden;
}

.header
{
	height: 120px;
}

.header .header-content
{
	overflow: hidden;
	height: 100%;
}

.header .header-content .logo-container
{
	overflow: hidden;
	height: 120px;
}

.header .header-content .logo
{
	background-image: url(../images/logo-black-1x.png);
    background-image: -webkit-image-set(
      url(../images/logo-black-1x.png) 1x,
      url(../images/logo-black-2x.png) 2x
    );
	background-position: center right;
	background-repeat: no-repeat;
	margin: 30px auto;
	width: 150px;
	height: 23px;
}

.footer
{
	background-color: #000000;
	padding: 60px 35px;
	overflow: hidden;
}

.footer .footer-navigation
{
	text-align: center;
}

.footer .footer-navigation a
{
	border-right: 1px solid #5EA9BF;
	text-decoration: underline;
	display: inline-block;
	line-height: 22px;
	padding: 0 20px;
	font-size: 16px;
	color: #5EA9BF;
}

.footer .footer-navigation a:last-child
{
	border-right: none;
}

.footer .copyright
{
	margin-bottom: 20px;
	text-align: center;
	line-height: 24px;
	font-size: 16px;
	color: #858585;
}

.page
{
	padding: 0px 35px 0px;
	margin-bottom: -30px;
	overflow: hidden;
}

.page h1
{
	margin-bottom: 40px;
	line-height: 45px;
	font-weight: 300;
	font-size: 33px;	
	color: #505050;
}

.page h2
{
	margin-bottom: 35px;
	line-height: 32px;
	font-weight: 400;
	font-size: 23px;
	color: #1883A3;
}

.page h3
{
	line-height: 32px;
	margin-bottom: 0;
	font-weight: 600;
	font-size: 23px;
	color: #505050;
}

.page p,
.page ul li
{
	margin-bottom: 30px;
	line-height: 32px;
	font-weight: 300;
	font-size: 23px;
	color: #505050;
}

.page ul
{
	list-style: disc outside;
	margin-left: 20px;
	color: #1883A3;
}

.page ul li
{
	color: #1883A3;
}

p a
{
	text-decoration: underline;
	font-weight: 300;
	color: #1883A3;
}

@media (min-width: 768px)
{
	.footer
	{
		padding: 110px 130px;
	}
	
	.footer .copyright
	{
		margin-bottom: 30px;
	}
	
	.footer .footer-navigation a,
	.footer .copyright
	{
		line-height: 30px;
		font-size: 22px;
	}
	
	.page
	{
		padding: 0px 130px 0px;
	}

	.page h1
	{
		line-height: 55px;
		font-size: 40px;
	}
	
	.page h2
	{
		line-height: 36px;
		font-size: 26px;
	}
	
	.page h3
	{
		line-height: 36px;
		font-size: 26px;
	}
	
	.page p,
	.page ul li
	{
		line-height: 36px;
		font-size: 26px;
	}
}

@media (min-width: 1340px)
{
	.page
	{
		margin: 0 auto -40px;
		width: 800px;
		padding: 0;
	}
}