/*define body text color*/
body  {
	color: black;
}

/*define content link colors*/
a:link, a:visited {
	color: #20438F;
}
a:hover, a:active {
	color: #A7B7D9;
}

/*define header size and colors*/
h1 {
	font-size: 20px;
	color: #244A9F;
}
h2 {
	font-size: 16px;
	color: #20438F;
}
h3 {
	font-size: 13px;
	color: #244A9F;
}	
h6 {
	font-size: 12px;
	color: #244A9F;
	margin: 0;
}	

/*sets images to be positioned left or right on the page*/
.floatRight {
	float: right;
	padding-left: 10px;
}
.floatLeft {
	float: left;
	padding-right: 10px;
}
/*used after a floated image and paragraph to
keep floated image within paragraph*/
.clear {
	clear: both;
}
/*define caption size and color*/
.caption {
	color: #244A9F;
	margin-top: 5px;
	font-size: 11px;
	font-style: italic;
}

/*used to remove space above or below element.
Typically used with headlines or paragraph
following a headline*/
.noBottomMargin {
	margin-bottom: 0;
}
.noTopMargin {
	margin-top: 0;
}

/*used as a class for unordered lists
to make the indent smaller*/
.bullets {
	margin-left: 10px;
	padding-left: 10px;
}
.clear {
	clear: both;
}
