
/* Code for making a full height layout */
* {
	margin: 0;
	padding: 0;
}
html, body {
	height: 100%;
}
/* fixes IE6 */
* html #container {
	height: 100%;
}
#container {
	min-height: 100%;
}
/* end full height layout code */

body {
	background-color: #031428;
	color: #414141;
	font-family: Arial, Helvetica, sans-serif;
	font-size: small;
}

div, table, tr, th, td, form, img {
	border: 0;
	margin: 0;
	padding: 0;
}

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 {
	font-size: 150%;
}
h2 {
	font-size: 140%;
}
h3 {
	font-size: 130%;
}
h4 {
	font-size: 120%;
}
h5 {
	font-size: 110%;
}
h6 {
	font-size: 100%;
}

h6, 
h6 a {
	color: #414141;
}


/* a styles */

a {
	color: #BD1A28;
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}


/* p styles */

p {
	line-height: 1.4em;
	margin: 15px 0 15px 0;
}

/* hr styles */

hr {
	margin: 5px 0 5px 0;
}

/* list styles */

ul, ol {
	margin: 0px;
	padding: 10px;
}
li {
	margin: 5px;
}

