@charset "utf-8";
body {
	font: 90%/1.4 Verdana, Arial, Helvetica, sans-serif;
	background-color: #42413C;
	margin: 0;
	padding: 0;
	color: #283989;
	background-image: url(../images/back-page.png);
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { 
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;
	padding-right: 15px;
	padding-left: 15px;
}
a img, img {
	border: none;
}

/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
/*	color: #42413C;  */
	color: #283989;
	text-decoration: underline; 
}
a:visited {
/*	color: #6E6C64;    greyish? */
	color: #283989;
	text-decoration: underline;
}
a:hover, a:active, a:focus { 
	text-decoration: none;
	color: #C3262E;
}

/* ~~this fixed width container surrounds the other divs~~ */
.container {
	width: 808px; /* was 778 */
	background-color: #FFF;
	margin: 0 auto;
}

h1, h2, h3 {
/*	color: #005595; */
	color: #283989;
}
.header {
/*	background-color: #ADB96E;
	line-height: 0px; */
	margin-top:25px;
}
/* ~~ These are the columns for the layout. ~~ 

*/
.sidebar1 {
	float: left;
	width: 250px;
/*	background-color: #EADCAE;  brownish*/
	background-color: #F1EFE2;
	padding-bottom: 10px;
}
.content {
	padding: 10px 0;
	width: 558px; /* was 528 */
	float: left;
}

/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol { 
	padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
}

/* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */
ul.nav {
	list-style: none; /* this removes the list marker */
	border-top: 1px solid #666; /* this creates the top border for the links - all others are placed using a bottom border on the LI */
	margin-bottom: 15px; /* this creates the space between the navigation on the content below */
}
ul.nav li {
	border-bottom: 1px solid #666; /* this creates the button separation */
}
ul.nav a, ul.nav a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
	padding: 5px 5px 5px 15px;
	display: block; /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */
	width: 230px;  /*this width makes the entire button clickable for IE6. If you don't need to support IE6, it can be removed. Calculate the proper width by subtracting the padding on this link from the width of your sidebar container. */
	text-decoration: none;
/*	background-color: #C6D580;  light green */
	background-color: #BBD9EE;
}
ul.nav a:hover, ul.nav a:active, ul.nav a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
/*	background-color: #ADB96E;  darker green 
	color: #FFF; white */
	background-color: #283989;
	color: #F1EFE2;
}
.slogantext {
	font-size:150%;
}

/* ~~ The footer ~~ */
.footer {
	padding: 10px 0;
/*	background-color: #CCC49F;  grey brown */
	background-color: #E7E4D3;
	color: #C3262E;
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
	font-size: 65%;
	text-align:center;
}

/* ~~ miscellaneous float/clear classes ~~ */
.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. The floated element must precede the element it should be next 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 #footer is removed or taken out of the #container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}

/*	common form setup 	*/
.form {
	width: 90%; 
	background: #eee URL(../images/back-curve.gif) top right no-repeat; 
	padding: 10px; 
	border-left: 1px solid #ccc; 
	border-bottom: 2px solid #ccc;
	position: relative;
	font-size: 10pt;
	color: #283989;
	text-align:left;
}

.form input, .form textarea {
	border: 1px #aaa solid;
	font-size: 13pt;
	margin-bottom: 12px;
}

.form .submit {
	padding: 3px 15px; 
	border: 0px #aaa solid; 
	background: #eee; 
/*	color: #0D5D98; light white? 
	color: #eee; */
	border-radius: 18px; 
	-moz-border-radius: 18px; 
	-webkit-border-radius: 18px; 
	color: #F1EFE2;
	font-size: 10pt; 
	font-weight: bold;
	height: 35px;
	background-color: #283985;
/*	background: #eee URL(/images/linkback.png); */
}
#contact_us p label {
	display: inline-block;
	width: 170px;
	vertical-align: top;
}
