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;
	position: relative;
	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;
}
#navigation_row {
	margin-right: 30px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 0px;
	top: -12px;
	position: relative;
	margin-left: 20px;
}
#navigation_row  ul {
	color: #333;
	font-size: 1em;
	position: relative;
	float: left;
	list-style-position: outside;
	list-style-type: none;
	width: 100%;
	margin-top: 0;
	margin-right: 0px;
	margin-bottom: 0;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
#navigation_row  li {
	padding:0;
	float: left;
	width: auto;
	margin-top: 0;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0;
}
#navigation_row  li  a {
	display: block;
	color: #003366;
	font-size: 14px;
	text-decoration: none;
	width: auto;
	padding-top: 4px;
	padding-right: 8px;
	padding-bottom: 4px;
	padding-left: 8px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCCCCC;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #666666;
}
html>body  #navigation_row  li  a {
	width: auto;
}
#navigation_row  li  a:hover {
	color: #003366;
	/*background-color: #FFFFFF;*/
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #003366;
	background-color: #CCCCCC;
}

ul#main_navigation {
	color: #333;
	font-size: 18px;
	position: absolute;
	top: 82px;
	left: 10px;
	float: left;
	list-style-position: outside;
	list-style-type: none;
	width: 780px;
	margin-top: 0;
	margin-right: 0px;
	margin-bottom: 0;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
#main_navigation li {
	padding:0;
	float: left;
	width: 260px;
	margin-top: 0;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0;
	text-align: center;
}
#main_navigation li a {
	display: block;
	color: #FFFFFF;
	font-size: 18px;
	font-weight: bold;
	text-decoration: none;
	width: auto;
	padding-top: 4px;
	padding-right: 8px;
	padding-bottom: 4px;
	padding-left: 8px;
	/*border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCCCCC;*/
	/*border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #666666;*/
}
html>body #main_navigation li a {
	width: auto;
}
#main_navigation li a:hover {
	color: #003366;
	/*background-color: #FFFFFF;*/
	/*border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #003366;*/
	/*background-color: #CCCCCC;*/
}

#main_navigation li#current{
	color: #FFFFFF;
	font-size: 18px;
	font-weight: bold;
	text-decoration: none;
	padding-top: 4px;
	padding-bottom: 4px;
}

#main_content {
	margin-top: 0;
	margin-right: 15px;
	margin-bottom: 0;
	margin-left: 10px;
	padding-top: 0;
	padding-right: 15px;
	padding-bottom: 0;
	padding-left: 15px;
	position: relative;
	top: -12px;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #CCCCCC;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #CCCCCC;
} 
#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;
}

img.article_img {
	padding: 0px 0px 10px 10px;
}



/*************************************/
/** 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;
}
.callout {
	background-color: #CCCCCC;
	border: 1px solid #003366;
	padding: 8px;
}
.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.checkmark {
    list-style: url('../images/ul_checkmark.gif');
}

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

ul.bullets {
    list-style: disc;
}

ul.box_blue {
	list-style-image: url('../images/ul_box_blue.gif');
}

ul.box_gray {
	list-style-image: url('../images/ul_box_gray.gif');
}

ul.indented {
    list-style: none;
	margin-left: 0;
	padding-left: 1em;
	text-indent: -1em;
}

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

h3 {
	color: #003366;
}

h4 {
	color: #003366;
	font-style:italic;
}

.purple{
	color:#660066;
}

.burgunday {
	color: #660033;
}

.teal {
	color: #009999;
}

.green {
	color: #006600;
}

.black {
	color: #000000;
}

.caps {
	text-transform: uppercase;
}

table {
	border-collapse:collapse;
 }
.ruled tr, .ruled td, .ruled th {
	border: solid 1px #003366;
	padding: 4px;
}

.ruled_bottom tr{
	border-bottom: solid 1px #003366;
	padding: 4px;
}

.footnote
{
	color: #999999;
	font-size: 12px;
	width: 500px;
	text-align: center;
	padding: 15px;
	border-color: #CCCCCC;
	border-style: solid;
	border-width: 1px;
	margin: auto;
}
/*******************************************/
