@charset "UTF-8";
/* CSS Document */

body  {
	font: 10pt Verdana, Arial, Helvetica, sans-serif;
	background: #b9d6db;
	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 */
	color: #000000;
}
p {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10pt;
}
.body_text {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10pt;
}
.verd_11px {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
}
#container {
	width: 960px;
	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. */
	background-color: #FFFFFF;
	background-image: url(images/container_bg.gif);
	background-repeat: repeat-y;
}
#home_container {
	width: 960px;
	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. */
	background-color: #b2121e;
	border-right-width: thin;
	border-left-width: thin;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #000000;
	border-left-color: #000000;
} 
#header {
	background: #000000;
	height: 140px;  
}	
#home_header {
	background: #000000;
	height: 135px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
		
} 
.header_text {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFFFFF;
	font-weight: 500;
	padding-top: 22px;
	padding-right: 8px;	
}
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 200px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding-left: 20px;
}
#sidebar1_signup {
    margin-left: -15px;
}
#home_sidebar1 {
    margin-left: 15px;	
}
#sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 250px; /* padding keeps the content of the div away from the edges */
	background-color: #FFFFFF;
	background-image: url(images/right_sidebar_bg.gif);
	background-repeat: repeat-y;
	background-position: right;
	padding-top: 0px;
	padding-right: 25px;
	padding-bottom: 15px;
	padding-left: 5px;
}
#home_sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 280px; /* padding keeps the content of the div away from the edges */
	background-color: #b2121e;
	padding-top: 0px;
	padding-right: 5px;
	padding-bottom: 15px;
	padding-left: 5px;
	color: #FFFFFF;
}
#paper {
	background-image: url(images/home_paper_bg.png);
	background-repeat: repeat-y;
	width: 270px;
	color: #000000;
	padding-left: 5px;
	list-style-type: square;
}
#paper_text {
	margin-left: 25px;
	margin-right: 5px;	
}
#mainContent {
	margin-top: 0;
	margin-right: 295px;
	margin-bottom: 0;
	margin-left: 225px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
}
#register {
	border: thin solid #000000;
	width: 326px;
	margin: 0 auto;

}
#footer { 
	background:#000000;
} 
footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.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;
}
.headline {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 18pt;
	font-weight: bold;
	color: #b9d6db;
	line-height: 20px;
}
.headline2 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14pt;
	font-weight: normal;
	color: #dd9c47;
	letter-spacing: -2pt;
	line-height: 14pt;
}
.footer_text {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 8pt;
	color: #FFFFFF;
	text-align: center;
}
a:link {
	color: #cc9933;
    text-decoration: underline;
}
a:hover {
	color: #b2121e;
	text-decoration: none;
}
a:visited {
	color: #b2121e;
	text-decoration: underline;
}
