/*-------------------------------------------------
Body and general stuff
-------------------------------------------------*/

* {
	font-family: Verdana, Tahoma, sans-erif;
	font-size: small;
}

html, body {
	background-image: url('images/background.png');
	background-repeat: repeat;
	margin: 0px;
	padding: 0px;
}

/*-------------------------------------------------
Containers for the website
-------------------------------------------------*/

#container {
	width: 789px;
	margin: auto;
}

#header {
	width: 789px;
	height: 209px;
	background-repeat: no-repeat;
}

html > body #header {
	background-image: url('images/header.png');
}

#content_container {
	width: 789px;
	background-repeat: repeat-y;
}

html > body #content_container {
	background-image: url('images/background_content.png');
}

#imgholder {
	width: 770px;
	margin-left: 19px;
	background-image: url('images/menu_background.png');
	background-repeat: no-repeat;
	background-position: bottom left;
}

#copyright {
	width: 789px;
	height: 33px;
	padding: 17px 0px 0px 0px;
	text-align: center;
	font-size: x-small;
	background-repeat: no-repeat;
}

html > body #copyright {
	background-image: url('images/copyright.png');
}

#menu {
	width: 173px;
	padding: 5px;
	float: left;
}

#content {
	width: 557px;
	padding: 5px 20px 5px 10px;
	float: right;
}

/*-------------------------------------------------
Menu Markup
-------------------------------------------------*/

#menu h1 {
	margin: 0px;
	padding: 10px 0px 0px 10px;
	color: #c75f0a;
}

#menu ul, #menu ul li {
	list-style-type: none;
	margin: 0px;
	padding: 0px;
}

#menu ul {
	margin: 10px 0px 150px 25px;
	line-height: 18px;
}

#menu ul li ul {
	margin: 0px 0px 0px 15px;
}

#menu ul li a {
	color: #808a55;
	text-decoration: none;
}

#menu ul li a:hover {
	color: #3b4413;
	text-decoration: underline;
}

/*-------------------------------------------------
Content Markup
-------------------------------------------------*/

#content {
	line-height: 14pt;
}

#content a img {
    border: none;
}

#content p {
	margin: 0px 0px 5px 0px;
	padding-top: 5px;
}

#content h1 {
	color: #c75f0a;
	margin: 0px;
	padding: 0px 0px 5px 0px;
}

#content h2 {
	color: #88200f;
	margin: 0px;
	padding: 10px 0px 5px 0px;
}

#content h3 {
	color: #4a772f;
	margin: 0px;
	padding: 10px 0px 5px 0px;
}

#content a {
	color: #871113;
}

#content a:hover {
	color: #b55500;
}

/*-------------------------------------------------
Other classes
-------------------------------------------------*/

.clear {
	clear: both;
	font-size: 0px;
	height: 0px;
}