@import url("fixes/reset.css");
@import url("fixes/fonts.css");
@import url("fixes/base.css");
@import url("fixes/clearfix.css");

/* PAGE LAYOUT */
* {
	outline: none;	
}
html,body {
	height: 100%;
}
body {
	background: #fff;
	background-repeat: no-repeat;
	background-size: 50%;
	background-attachment: fixed;
	margin: 0;
	padding: 0;
}
.form {
	width: 100%;
	margin: 0 auto;
	margin-bottom: 20px;
		
}
main {
	margin: 75px auto 0;
	padding: 0px;
	width: 1140px;
}
#header {
	background-color: #00B3B0;
	width: 100%;
	text-align: center;
	padding: 50px 0 0 0;
}
#navi {
	height: 50px;
	width: 100%;
	background-color: #fff;
	border-bottom: 1px solid #998B74;
	text-align: center;
	position: fixed;
	text-transform: uppercase;
	letter-spacing: .25em;
}
.header-image {
	float: right;	
	width: 400px;
}
.header-image img {
	width: 60%;
	float: right;
	margin-right: 140px;
}
#content {
	width: 100%;
	float: left;
}
.content-image {
	width: 100%;
}
.content-image img {
	width: 100%;
}
.content-text {
	max-width: 1200px;
	clear: both;
	margin: 0 auto 50px auto;
	padding: 0 20px 0;
}
.content-text  ul {
	margin: 0 0 15px 0;
	font-size: 110%;
	color: #221E15;
	line-height: 150%;
	word-spacing: 0.25em;
    padding-left: 20px;
    text-indent: -20px;
	font-family: Arial, Helvetica, sans-serif;
}
#form span {
	font-size: 120%;	
}
.content-text  ul li {
	list-style-type: none;
	text-decoration: none;
	padding-left: 20px;
	margin: 0 0 10px 0;
}
.content-text  ul li:before {
	content: "▪ ";
	font-size: 200%;
	vertical-align: bottom;
	margin: 0 0 1px 0;
	color: #00B3B0;
}
.content-column-left {
	width: calc(50% - 10px);
	padding: 0 10px 0 0;
	display: inline-block;
}
.content-column-right {
	width: calc(50% - 10px);
	padding: 0 0 100px 10px;
	display: inline-block;
	float: right;
}
.content-column-right .label {
	margin: 0;
}


/* FORMS */
input[type=text], input[type=password] {
	width: calc(100% - 20px);
	height: 40px;
	margin: 5px 0 0 0;
	padding: 0 10px;
	border: 1px solid #998B74;
}
textarea {
	width: calc(100% - 20px);
	padding: 10px;
	margin-top: 5px;
	border: 1px solid #998B74;
}
form img {
	float: none;
}
input[type=submit] {
	width: 100%;
	background-color: #fff;
	border: 1px solid #998B74;
	height: 40px;
	margin: 20px 0 0 0;
	color: #221E15;
}
input[type=submit]:hover {
	color: #fff;
	background-color: #00B3B0;
}


/* FOOTER */
#footer {
	max-width: 1200px;
	margin: 100px auto;
	padding: 0 20px;
}
#footer p {
	font-size: 96%;
	text-align: center;
}


/* TEXT FORMATTING */
a,a:visited {
	color: #00B3B0;
	text-decoration: none;
}
a:hover {
	color: #221E15;
}
h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: lighter;
	margin: 0;
	font-size: 300%;
}
h2 {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: lighter;
	font-size: 300%;
}
h3 {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 250%;
	margin: 0 0 20px 0;
}
h4 {
	font-style: italic;
	font-weight: normal;
	font-size: 205%;
	margin-bottom: 20px;	
}
p, label, li, input, textarea {
	color: #221E15;
	font-size: 110%;
	line-height: 150%;
	margin: 5px 0 5px 0;
	word-spacing: 0.25em;
	font-family: Arial, Helvetica, sans-serif;
}


/* MEDIA QUERIES */
@media (max-width: 600px) {
	#navi ul li a {
		font-size: 90%;
		padding: 0 10px;
	}
	.content-column-left, .content-column-right {
		width: 100%;
		padding: 0;	
		float: none;
	}
}