@charset "utf-8";
/* CSS Document */

body {
	/*font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;*/
	font-family: Arial, Helvetica, sans-serif;	
	background: #005528;
	margin: 0;
	padding: 0;
	/*font-weight: bold;*/
	color:#FFFFFF;
}
p {
	margin-top: 0;
	padding-right: 0px;
	padding-left: 0px;
	text-align: justify;
}
/* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
a img { 
	border: none;
}
/* ~~ this container surrounds all other elements ~~ */
.container {
	background: #005528;
	margin: 0 auto; /* the auto value on the sides centers the layout */
	overflow: hidden;
	width: 1280px;
}
/* ~~ This is the layout information. ~~ */
.content {
	padding: 10px 0;
	text-align: center;
}
/* ~~ miscellaneous float/clear classes ~~ */
.floatRight {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be adjacent to on the page. */
	float: right;
	margin-left: 8px;
}
.floatLeft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be adjacent to on the page. */
	float: left;
	margin-right: 8px;
}
.clearFloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the overflow:hidden on the .container is removed */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
.pageTitle {
	padding-top: 15px;
	padding-right: 15px;
	padding-left: 15px;
	font-size: 20px;
	text-shadow: 2px 2px 1px rgba(225,225,225,0.5);
    text-align: center;
}
.figcaption {
	display: block;
	text-align: center;
}
.red-italics {
	font-style: italic;
	color: #E00;
}

