
/* 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:#D6C487 url(../images/background-texture.png) repeat;
	color: #fff;
	font-family: Tahoma, Geneva, sans-serif;
	font-size: small;
}

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: 0;
	padding: 0;
}
h1, h2{
	line-height:1em;
	
}
h1 {
	font-size: 145%;
}
h2 {
	font-size: 140%;
}
h3 {
	font-size: 130%;
}
h4 {
	font-size: 120%;
}
h5 {
	font-size: 110%;
}
h6 {
	font-size: 100%;
}
.pageHdr{
	line-height:1.1em;
}

/* a styles */

a {
	color: #fff;
	text-decoration: none;
}
a:hover {
	color: #eee;
	text-decoration: underline;
}
a:visited {
	color: #eee;
}
a:active {
	text-decoration: underline;
}
a:focus {
	font-weight: bold;
}

/* p styles */

p {
	margin: 10px 0 10px 0;
}

/* hr styles */

hr {
	border: 0;
	border-bottom: 1px solid #CEC8B5;
	margin: 5px 0 5px 0;
}

/* list styles */

ul, ol {
	margin: 0px;
	padding: 10px;
}
li {
	margin: 5px;
}


