@charset "UTF-8";
body {
	margin: 0;
	padding: 0;
	background-color: #8A9197;
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
	text-decoration: none;
}
h2, h3, h4, h5, h6, p  {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
	color: #4D4D4E;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 12px;
}
.smallgray {  font-family:  "Trebuchet MS", Arial, Helvetica, sans-serif; font-size: 10px; color: #666666}
h1 {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
	color: #0D2E88;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 18px;
	font-weight: bold;
	padding-top: 15px;
	margin-bottom: 10px;
}

/* ~~ this fixed width container surrounds all other divs~~ */
.container {
	width: 780px;
	background: #FFF; /* the auto value on the sides, coupled with the width, centers the layout */
	overflow: hidden; /* this declaration makes the .container understand where the floated columns within ends and contain them */
	background-image: url(../images/home/right-bg.gif);
	height: 1000px;
}
#footer {
	margin-top: 0px;
	margin-bottom: 10px;
	float: left;
	width: 780px;
	text-align: center;
}
.sidebar1 {
	float: left;
	width: 212px;
	padding-bottom: 0px;
	height: 600px;
}
.content {
	width: 372px;
	float: left;
	padding-bottom: 150px;
	height: 600px;
}
.sidebar2 {
	float: left;
	width: 196px;
	height: 600px;
}
.anchor_text {
	text-align: left;
	padding-left: 140px;
	list-style-type: none;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 15px;
	color: #0D2E88;
	font-weight: bold;
	list-style-image: url(../images/home/button.jpg);
	line-height: 150%;
	text-decoration: none;
	padding-top: 15px;
}
a {
	text-decoration: none;
}
.bold {
	font-weight: bold;
}
