/*--------------------------------------------------------------------------------------------
	General
--------------------------------------------------------------------------------------------*/
.clear{
	clear: both;
}

body {
	font-size: 62.5%;
	color:#59595c;
	font-weight: lighter;
}

/*--------------------------------------------------------------------------------------------
	TYPOGRAPHY
--------------------------------------------------------------------------------------------*/
h1, h2, h3, h4 {
	font-family: kepler-std, serif;
}
h1 {
	font-weight: bold;
	font-size: 2.6em;
	line-height: 1.25em;
	text-shadow: #fff 0 1px 0;
	color: #2d2d2d;
}

h2 {
	font-size: 2.3em;
	line-height: 1.25em;
	text-shadow: #fff 0 1px 0;
	color: #2d2d2d;
	margin: 1em 0 .5em;
	font-weight: bold;
}

h3 {
	color: #2d2d2d;
	font-size: 1.9em;
	line-height: 1.25em;
	text-shadow: #fff 0 1px 0;
	margin: 1.5em 0 .5em;
}

h4 {
	color: #2d2d2d;
	font-size: 1.5em;
	line-height: 1.25em;
	text-shadow: #fff 0 1px 0;
	margin: 2em 0 .5em;
}

p, li {
	font-size: 1.5em;
	line-height: 1.35em;
	margin: 1em 0 0.5em; 
}

a {
	text-decoration: none;
	color: #9d9d9e;
}

a:hover {
	text-decoration: underline;
}

a.read_more {
	text-transform: uppercase;
}

img {
	display: block;
}

h2 a {
	color: inherit;
}

img.align_left {
	float: left;
	margin: 0 15px 0 0;
}

img.align_right {
	float: right;
	margin: 0 0 0 15px;
}

strong {
	font-weight: bold;
}

blockquote p {
	font-size: 1.3em;
	line-height: 1.4em;
	font-style: italic;
}


/*--------------------------------------------------------------------------------------------
	Lists
--------------------------------------------------------------------------------------------*/
ul {
	list-style:outside disc;
	padding-left:14px;
}

ol {
	list-style:outside disc;
	padding-left:14px;
}

li {
	margin: 0.5em 0 0 ;
}

li li {
	font-size: inherit;
	color: #9D9D9E;
}


/*--------------------------------------------------------------------------------------------
	Tables
--------------------------------------------------------------------------------------------*/
table,tr,td,th {
	vertical-align: top;
}

table {
	width:100%;
}

td,th {

}


/*--------------------------------------------------------------------------------------------
	Forms
--------------------------------------------------------------------------------------------*/
form {
	display: block;
	position: relative;
}

form .field {
	display: block;
	position: relative;
	padding-bottom: 10px;
	
}

form .field label {

}

form .field input[type="text"] {
	
}

form .field textarea {

}

form input[type="submit"] {
	background: none repeat scroll 0 0 #D11F1C;
    border: 0 none;
    color: #FFFFFF;
    cursor: pointer;
    display: block;
    padding: 6px 9px;
    text-transform: uppercase;
}

form input[type="submit"]:hover {
	background: #be1411;
}

form .field input[type="submit"]:hover {

}

form .field.error label {

}

form .field.error label.error {
	display: none !important;
}


