 
body {
	margin: 0;
	/* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	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 */
}
#wrapper {
	margin-left: auto;
	margin-right: auto;
	width: 1400px;
}
#container { 
	width: 1400px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
}
#page-wrap {
     width: 1400px;
     margin: 0 auto;
}
#header {
	padding: 38px 0 0 0;
	height: 44px;
	border-top: 0px solid #ffffff;
	background-color: #ffffff;
	background-image: url(images/header_v2.png);
	background-repeat: no-repeat;
} 
#header li {
	display: inline;
	font-family: "chaparral-pro-display", Georgia, serif;
	font-size: 16px;
	font-weight: 600;
	color: #4cb5f3;
	letter-spacing: 2px;
	list-style-type: none;
	padding: 0 0 0 755px;
}
#header a:link {
	color: #4cb5f3;
	text-decoration: none;
}
#header a:visited {
	color: #4cb5f3;
	text-decoration: none;
}
#header a:active {
	color: #4cb5f3;
	text-decoration: none;
	outline: none;
}
#header a:hover {
	color: #ffbb00;
	text-decoration: underline;
}
#mainContent {
	margin: 0;
	padding: 80px 0 0 0;
	height: 570px;
	background-image: url(images/bkgrnd-tile.png);
	background-repeat: repeat;
}
#left-sidebar {
	width: 214px;
	float: left;
	height: 360px;
	background-color: #ffffff;
	margin: 80px 0 0 0;
	background-image: url(images/sidebar-bkgrnd.png);
	background-repeat: repeat;
	padding: 120px 0 0 0;
}
#right-sidebar {
	width: 214px;
	float: right;
	height: 360px;
	background-color: #ffffff;
	margin: 80px 0 0 0;
	background-image: url(images/sidebar-bkgrnd.png);
	background-repeat: repeat;
	padding: 120px 0 0 0;
}
#iframe-container {
	margin: 0 214px 0 214px;
	height: 460px;
	background-color: #ffffff;
	padding: 20px 0 0 0;
}
#content-container {
	margin: 0;
	height: 480px;
	background-color: #ffffff;
}
#content-container h1 {
	font-family: "chaparral-pro-display", Georgia, serif;
   	font-weight:400;
	color: #4cb5f3;
	font-size: 36px;
	line-height: 36px;
	text-align: left;
	padding: 0 0 0 10px;
	letter-spacing: 0.5px;
}
#content-container p {
	font-family: "ff-dagny-web-pro", Helvetica, Arial, sans-serif;
   	font-weight: 400;
	color: #333333;
	font-size: 14px;
	line-height: 18px;
	text-align: left;
	padding: 0 80px 0 120px;
}
#content-container li {
	font-family: "chaparral-pro-display", Georgia, serif;
   	font-weight: 400;
	color: #000000;
	font-size: 20px;
	line-height: 36px;
	text-align: left;
	list-style-image: url(images/bullet.png);
	padding: 0 10px 0 0px;
}
td {
	font-family: "ff-dagny-web-pro", Helvetica, Arial, sans-serif;
   	font-weight: 400;
	color: #333333;
	font-size: 14px;
	text-align: left;
}
td h1 {
	font-family: "chaparral-pro-display", Georgia, serif;
   	font-weight:400;
	color: #4cb5f3;
	font-size: 36px;
	line-height: 36px;
	text-align: left;
	padding: 0;
	letter-spacing: 0.5px;
}
.smaller {
	color: #000000;
	font-weight: 300;
	font-size: 20px;
	line-height: 24px;
}
.caption {
	font-family: "chaparral-pro-display", Georgia, serif;
	font-size: 12px;
	font-weight: 400;
	line-height: 14px;
	color: #3497d2;
	text-align: right;
}
#footer { 
	padding: 2px 0 0 10px;
	background-color: #4cb5f3;
	width:1390px;
	height: 30px;
	margin-top: -20px;
}
#footer p {
	font-family: "ff-dagny-web-pro", Helvetica, Arial, sans-serif;
	font-size: 12px;
	font-weight: 400;
	text-align:left;
	color: #000000;
	padding-bottom: 10px;
}
#footer a:link {
	color: #ffbb00;
	text-decoration: none;
}
#footer a:visited {
	color: #ffbb00;
	text-decoration: none;
}
#footer a:active {
	color: #ffbb00;
	text-decoration: none;
	outline: none;
}
#footer a:hover {
	color: #000000;
	text-decoration: underline;
}
.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;
}

