/* Code for making a full height layout */
* {
	padding: 0;
	margin: 0;
}
html, body {
	height: 100%;
}
/* fixes IE6 */
* html #container {
	height: 100%;
}
#container {
	min-height: 100%;
}
/* end full height layout code */

body {
	background: #2B0F04;
	font-size: 16px;
	font-family: 'Jura', sans-serif;
	font-weight: 400;
}

div, table, tr, th, td, form, img {
	border: 0px;
	margin: 0px;
	padding: 0px;
}

h1, h2, h3, h4, h5, h6, p {
	position: relative; /* fixes issue in IE6 when headers some times disappear */
}

/* header styles */

h1, h2, h3, h4, h5, h6 {
	margin: 10px 0;
	padding: 0;
	color: #8e7143;
	font-weight: normal;
}
h1 {
	font-size: 2em;
}
h2 {
	font-size: 1.85em;
	
}
h3 {
	font-size: 1.7em;
	
}
h4 {
	font-size: 1.55em;
	
}
h5 {
	font-size: 1.4em;
	
}
h6 {
	font-size: 1.25em;
	
}

/* a styles */

a {
	color: #B59557;
	text-decoration: none;
}
a:visited {
	color: #B59557;
}
a:hover {
	color: #E2CDA5;
}

a:active,a:focus {
}
a:active {
	background-color:transparent !important; /* IE10 Fix */
}
/* a img styles*/
a img {
	border:0 none;
}
a:hover img {
}
a:visited img {
}
a:active img, a:focus img {
}

/* p styles */

p {
	font-size: 1em;
	margin: 10px 0;
}

/* hr styles */

hr {
	border:none;
	border-bottom:1px solid #E4E3DE;
	height:1px;
	width:100%;
}

/* list styles */

ul, ol {
	padding-left:30px;
	overflow:hidden;
}
li {
	margin: 0 0 20px 0;
}

/*styles to match editor styles*/
.align_image_left {
	float:left;
	margin:0 10px 10px 0;
	border:5px solid #B59557;
}
.align_image_right {
	float:right;
	margin:0 0 10px 10px;
	border: 5px solid #B59557;
}