
/* 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%;
}
#content{
	padding-bottom:15px;
}

/* end full height layout code */

body {
	color:#1c407d;
	font-size:small;
	text-align:left;
}

body, div, table, tr, th, td, form, img, img a {
	border: 0;
	margin: 0;
	padding: 0;
}
body, div, h1, h2, h3, h4, h5, h6, p {
	font-family:"Times New Roman", Times, serif;
	position: relative; /* fixes issue in IE6 when headers some times disappear */
}

/* header styles */

h1, h2, h3, h4, h5, h6 {
	margin:25px 25px 5px 25px;
	padding: 0;
	text-align:left;
}
h1{
	color:#cd281d;
	font-size:180%;
}
h2{
	color:#1D417F;
	font-size:175%;
	font-weight:600;
}
h3{
	color:#63B7E5;
	font-size:160%;
}
h4{
	color:#cd281d;
	font-size:135%;
	font-weight:bold; /* think it is bold by default so you should be able to remove this */
	margin-bottom: 10px;
}
h5{
	color:#1D417F;
	font-size:140%;
	font-weight:bold; /* think it is bold by default so you should be able to remove this */
}
h6{
	color:#63B7E5;
	font-size: 100%;
	font-weight: normal;
}


/* a styles */

a {
	color:#CE2D22;
	text-align:left;
	text-decoration: none;
}
a:hover{
	text-decoration:underline;
}

a:active{
	color:#6ABBE6;
}
a:focus {
	font-weight: bold;
}
a:visited {
	color:#cd281d;
}

/* p styles */

p {
	line-height: 1.6em;
	margin: 0 35px 10px 0;
	padding-top:10px;
	padding-left:80px;
	text-align:left;
}

/* hr styles */

hr{
	border:none;
	border-top:1px solid #e8e8e8;
	border-bottom:1px solid #fff;
	margin-left:45px;
	margin-right:43px;
	width:560px;
}

/* list styles */

ul, ol {
	margin-left:115px;
	padding: 0px 10px 5px 0px;
}
ul li{
	line-height:20px;
	list-style-image:url(../images/dot.gif);
	margin: 10px 10px 10px 10px;
	padding-right:10px;
	text-align:left;
	vertical-align:middle;
}
ol li{
	margin: 8px 10px;
	padding-right:10px;
}
