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 */
	color: #000000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	background-color: #FFFFFF;
}
#container {
	width: 800px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	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. */
} 
#header {
	background-image: url(../images/header.gif);
	background-repeat: no-repeat;
	height: 123px;
	width: 800px;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 0;
} 
#header h1 {
	margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	color: #FFFFFF;
	position: relative;
	text-align: right;
	top: 15px;
	padding-top: 10px;
	padding-right: 43px;
	padding-bottom: 10px;
	padding-left: 0;
	font-size: 40px;
}
#right_column {
	float: right; /* since this element is floated, a width must be given */
	width: 232px;
	margin-right: 10px;
	padding-top: 15px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
	top: -12px;
	position: relative;
}
#right_column ul {
	width: 13em;
	padding:0px 0px 0px 15px;
	color: #333;
	font-size: 1em;
	position: relative;
	float: left;
	margin: 0;
	list-style-position: outside;
	list-style-image: url(../images/bullet.gif);
	list-style-type: none;
}
#right_column li {
	margin: 0 0 0.5em 0;
	padding:0;
}
#right_column li a {
	display: block;
	color: #006600;
	font-size: 14px;
	text-decoration: none;
	width: 100%;
	padding-top: 4px;
	padding-right: 5px;
	padding-bottom: 4px;
	padding-left: 5px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #999999;
}
html>body #right_column li a {
	width: auto;
}
#right_column li a:hover {
	color: #003366;
	/*background-color: #FFFFFF;*/
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #003366;
	background-color: #CCCCCC;
}

#main_content {
	margin-top: 0;
	margin-right: 261px;
	margin-bottom: 0;
	margin-left: 20px;
	padding-top: 0;
	padding-right: 25px;
	padding-bottom: 0;
	padding-left: 20;
	position: relative;
	top: -12px;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #333333;
} 
#footer {
	padding: 0;
	background-image: url(../images/footer.gif);
	background-color: #FFFFFF;
	background-repeat: no-repeat;
	height: 40px;
	width: 800px;
} 
#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;
}




/*************************************/
/** newsletter styles on afsb also **/
h2.nl_title {
	color: #003366;
	font-size: 20px;
	text-align: center;
	background-color: #e0e0e0;
	padding-bottom: 5px;
	padding-top: 7px;
	border-bottom: 1px solid #999999;
}



ul.nl_contents, .nl_contents ul {
	width: auto;
	padding:0;
	color: #666666;
	font-size: 14px;
	position: relative;
    margin: 4px 0 10px 20px;
    padding-bottom: 10px;
    list-style: none;
	list-style-position: outside;
}
ul.nl_contents li {
	margin: 0 0 0.5em 0;
	padding:0;
}
ul.nl_contents li a {
	display: block;
	color: #336699;
	width: 100%;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
}
html>body ul.nl_contents li a {
	width: auto;
}
ul.nl_contents li a:hover {
	color: #000000;
	text-decoration: none;
}

.nl_heading {
	color: #003366;
    font-size: 16px;
    font-weight: bold;
}

.nl_article_heading {
    border-top: 1px solid #CCCCCC;
    margin-top: 20px;
    padding-top: 3px;
    font-weight: bold;
    color: #003366;
    width: 500px;
}
h4.nl_article_date {
	color: #CCCCCC;
	/*width: 150px;*/
	float: left;
    border-top: 1px solid #e0e0e0;
    margin-top: 10px;
    font-size: 12px;
}

p.pdf_link {
	background-image: url('../images/icon_pdf.gif');
	background-repeat: no-repeat;
	background-position: 0px 0px;
	padding: 3px 0px 4px 22px;
}

.nl_article {
	clear: both;
	padding: 10px 0px 4px 0px;
}

.nl_initial_cap {
	font-size: 3em;
	font-weight: bold;
	padding: 0px;
	margin: 0px -4px 0px 0px;
}

.nl_subhead {
	color: #003366;
	font-style: italic;
	font-size: 13px;
}

.nl_tips {
	color: #003366;
	font-size:15px;
	font-weight:bold;
	display: inline;
	padding-right: 8px;
}

.nl_hints {
	color: #003366;
	font-style:italic;
	padding-right: 8px;
}

ul.nl_article_list {
	padding:0;
	position: relative;
    margin: 4px 0 10px 40px;
    padding-bottom: 10px;
    list-style: square;
	list-style-position: outside;
}

ul.checkbox {
    list-style: url('../images/ul_checkbox.gif');
}

ul.pointing_finger {
    list-style: url('../images/ul_pointing_finger.gif');
}

ul.bullets {
    list-style: disc;
}

ul.nl_article_list li {
	padding:2px 0px 3px 0px;
}

.purple{
	color:#660066;
}

.burgunday {
	color: #660033;
}

.teal {
	color: #009999;
}

.green {
	color: #006600;
}

.black {
	color: #000000;
}
/*******************************************/
