
/* 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-color: #004C7B;
	color: #05507E;
	font-family: Arial, Helvetica, 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{
	font-size: 140%;
}
h2 {
	font-size: 125%;
}
h3 {
	font-size: 120%;
}
h4 {
	font-size: 120%;
}
h5 {
	font-size: 115%;
}
h6 {
	font-size: 100%;
}

h1.hdr, h1 a,
h4, h4 a {
	color: #D12902;
}
h2, h2 a,
h5, h5 a {
}
h3, h3 a,
h6, h6 a {
	color: #447E80;
}

/* a styles */

a {
	color: #3C7B14;
}
a:hover {
	color:#294F0D;
}
a:visited {
	color:#4D9C1B;
}
a:focus {
	text-decoration:underline;	
}
a:active {
	font-weight: bold;
}

/* p styles */

p {
	margin: 10px 0 10px 0;
}

/* hr styles */

hr {
	border: 0;
	border-bottom: 1px solid #C2F2F3;
	margin: 5px 0 5px 0;
}

/* list styles */

ul, ol {
	margin: 0px;
	padding: 10px;
}
li {
	margin: 5px;
}


input, select, textarea {
 	color: #05507E;
	padding: 2px;
}

.no_border{
	border:none;
}

.img_left{
	float:left;
	margin-right:10px;
}
.img_right{
	float:right;
	margin-left:10px;
}
.img_center{
	text-align:center;
}
