@charset "utf-8";
/* CSS Document */


body  {
	background: #FFF; 
/* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	margin: 0; 
	padding: 0;  
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000;  /* color is black */
	font-size: 13px;
}
#container { 
	width: 1000px;  /* this will create a container 1000px of the browser width */
	background: #FFF; 
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0px solid #000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	padding: 0px;
} 


/*  TEXT FORMATTING  */

ul {
	padding-left: 20px; 
}

li {
	font-family:Arial, Helvetica, sans-serif;
	font-size: 14px; 
}

/* Miscellaneous classes for reuse */

.ArticleTitles {
	font-family:Arial, Helvetica, sans-serif;
	font-style:italic;
	font-size:14px;
	font-weight:400;
}


	
	

.credentials {
	font-family:Arial, Helvetica, sans-serif;
	font-size: 9px;
	margin: 0;
	padding: 0;
}
.copyright {
	font-family:Arial, Helvetica, sans-serif;
	font-size: 9px;
	color: #FFF;
	background: #000066;
}
.sitemap {
	font-family:Arial, Helvetica, sans-serif;
	font-size: 11;
	color: #fff;
}

.SiteMap {
	font-family:Arial, Helvetica, sans-serif;
	font-size:  13;
	color: #FFF;
	padding: 0px;
	background: #006;
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
a:link {
	color: #C00;	
	text-decoration: none;
}
a:visited {
	color:#C00;
	text-decoration: none;
}
a:hover {
	color: #C00;
	text-decoration: underline;
}
a:active {
	color:#603;
	text-decoration: none;
}

.TextWrapLeft {
	float:  right;
	margin: 5px;
}

.TextWrapright {
	float: left;
	margin: 5px;
}


.TagLineText {
	color: #006;
	font-family:Verdana, Geneva, sans-serif;
	font-size: 14px;
	font-weight: bold;
	font-style: italic;
}

.SignatureServiceText {
	color:#C00;
	font-family:Verdana, Geneva, sans-serif;
	font-size: 14px;
	font-weight: bold;
	font-style:italic;
}

.HighlightedText {
	color: #F00;
}

.OldAddageText {
	font-style:italic;
	font-family:"Times New Roman", Times, serif;
	font-size:20px;
	alignment-adjust:central;
	font-weight:400;
	color:#006;
}


.ContactBlue  {
	font-family:Arial, Helvetica, sans-serif;
	font-size:18px;
	color:#06F;
}


.ContactClear  {
	font-family:Arial, Helvetica, sans-serif;
	font-size:18px;
}

