/* CSS styles */

/* Look of paragraph */
p {
	font-size:14px;
	line-height:17px;
	margin-bottom:10px;
	text-align:justify;
}
/* Change the links to be smaller and not justified if they are long */
#content p.link {
	font-size:12px;
	text-align:left;
	line-height:16px;
}

/* Class to Center text in paragraph */
#content p div.center {
	text-align:center;
}

/* Styles for links */
a {
	color:#0059AA;
}
a:hover {
	color:#00214F;
}

/* Styles for h1-h5 */
h1 {
	font-size:22px;
	font-weight:bold;
	color:#003378;
	padding-bottom:1px;
	margin-bottom:10px;
	border-bottom:1px solid #999999;
}
/* A smaller heading (still with bottom-border */
h1.small {
	font-size:19px;
}
h1.small2 {
	font-size:18px;
}
h1.small3 {
	font-size:16px;
}
h1.heading {
	font-size:26px;
	color:#FF0000;
	text-decoration:none;
}
h1.heading .small {
	font-size:18px;
}
h1.heading2 {
	font-size:24px;
	color:#FF0000;
	text-decoration:none;
}
h1 a{
	color:#FF0000;
	text-decoration:none;
}
h1 a:hover {
	color:#FF0000;
	text-decoration:underline;
}
	
h2 {
	font-size:18px;
	font-weight:bold;
	color:#0059AA;
	margin-bottom:10px;
}
h3 {
	font-size:16px;
	font-weight:bold;
	line-height:18px;
	color:#003378;
	margin-bottom:10px;
}
h4 {
	font-size:14px;
	font-weight:bold;
	line-height:18px;
	color:#CC0000;
	margin-bottom:10px;
}
h5 {
	font-size:12px;
	font-weight:bold;
	line-height:14px;
	color:#000000;
	margin-bottom:10px;
}

/* Class to clear, move to next line */
.clear {
	clear:both;
}
/* Class red will allow text to stand out being red and slighty larger */
.red {
	font-size:110%;
	color:#FF0000;
}
/* Class green will allow text to stand out being green */
.green {
	color:#009900;
}
/* Class strikeout will make text with a line throught it */
.strikeout {
	text-decoration:line-through;
}
/* Class blue creates blue colored text */
.blue {
	color: #003378
}

/* Basic styling for unordered lists */
ul {
	margin:4px 0 8px 22px;
	text-align:left;
}
li {
	padding:2px 3px;
}