/* CSS Document */
/* Applies to overall page */
BODY {
	font-family : Arial, helvetica, sans-serif;
	font-size : 0.8em;
}

/* Headers and titles */
H1, H2, H3, H4, H5, H6 {
	font-family : Arial, helvetica, sans-serif;
	margin: 0px;
	padding: 0px;
	color: #000;
	background-color: transparent;
	text-decoration: none;
}
H1{
	font-size : 1.2em;
	}
H2{
	font-size : 1.2em;
	border-bottom: solid 1px #e6e8fa;
}
H3{
	font-size : 1.1em;
	}
H4{
	font-size : 1.1em;
	border-bottom: solid 1px #e6e8fa;
}
H5{
	font-size : 1.0em;
	}
H6{
	font-size : 1.0em;
	border-bottom: solid 1px #e6e8fa;
}

/* Horizontal rules */
HR{
	color : #014857;
	height : 2px;
	}

/* Alignment */
.left {
	text-align: left;
}
.right {
	text-align: right;
}
.center {
	text-align: center;
}

/* Hyperlinks */
A:LINK {
	color: #003399;
	background-color: transparent;
	text-decoration: underline;
}
A:VISITED{
	color: #003399;
	background-color: transparent;
	text-decoration: underline;
	}
A:HOVER{
	color: #cc0033;
	background-color: transparent;
	text-decoration: underline;
	}
A:ACTIVE{
	color: #cc0033;
	background-color: transparent;
	text-decoration: underline;
	}

/* Lists */
OL{
	margin-left : 5%;
	list-style-position : outside;
}
UL{
	margin-left : 5%;
	list-style-type : circle;
	list-style-position : outside;
	}

/* Tables */
TABLE {
	border : 0px;
	padding: 0px;
	margin: 0px;
	vertical-align: top;
 	}
TH{
	font-size : 1.0em;
	border-bottom : thin solid #036E85;
	padding : 0px;
	vertical-align: top;
	}
TD{
	padding : 0px;
	vertical-align: top;
	}

