@charset "utf-8";

/*reset styles from http://meyerweb.com/eric/thoughts/2007/05/01/reset-reloaded/*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, fieldset, form, label, legend,
table, caption, tbody, tfoot, thead{
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: normal;
	font-style: inherit;
	font-size: 1em;
	font-family: "Trebuchet MS", Verdana, Arial, sans-serif;

}
/* remember to define focus styles! */
:focus {
	outline: 0;
}
body {
	line-height: 1;
	color: black;
	background: white;
}
ol, ul {

}
/* tables still need 'cellspacing="0"' in the markup */
table {

}
caption, th, td {
	font-weight: normal;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}
/*end reset styles*/

body{
	background: #004394;
	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: left; /* 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: "Trebuchet MS", Verdana, Arial, sans-serif;
	font-size: 100%;
}
.twoColFixLtHdr #container { 
	width: 780px;/* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0; /* 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-image: url(images/sidebg.jpg);
	background-repeat:repeat-y;
} 
.twoColFixLtHdr #header {
	border-bottom:12px solid #74c067;
	background-color: #74C067;
	background-image: url(images/headerbg.jpg);
	background-repeat: repeat-x;
	height: 114px;
	margin:0;
} 
.twoColFixLtHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

.twoColFixLtHdr #header #address {
float:right;
font-size:.8em;
color:#004394;
padding-top:10px;
padding-right:10px;
text-align:right;
}

.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 255px; /* the background color will be displayed for the length of the content in the column, but no further */
	background-color: #FFF;
	color:#FFF;
	font-size:.7em;
	height:100%;
	background-image: url(images/sidebg.jpg);
	background-repeat: repeat-y;
	line-height:1.5em;
	padding:0;
}

.twoColFixLtHdr #sidebar1 div.building  {
height:345px;
width:250px;
background-image: url(images/afpbuilding.jpg);

}

*:first-child+html .twoColFixLtHdr #sidebar1 div.building {
position:relative;
top:-30px;
}

* html .twoColFixLtHdr #sidebar1 div.building {
position:relative;
top:-30px;

}

.twoColFixLtHdr #sidebar1 blockquote {
padding-left:10px;
}

.twoColFixLtHdr #mainContent { 
	margin: 0 0 0 250px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	font-size:14px;
	line-height:16px;
} 
.twoColFixLtHdr #mainContent h1.sectionHeading {
	font-size:20px;
	margin-bottom:15px;

}

.twoColFixLtHdr #mainContent h2{
	font-size:16px;
	color:#004394;
	font-weight:bold;
	margin-bottom:5px;
}

.twoColFixLtHdr #mainContent img {
padding:3px;
margin:10px 10px 10px 10px;
border:1px solid #BBBBBB;
}

.twoColFixLtHdr #mainContent #links{
width:100%;
background-color:#CCCCCC;
border-bottom:5px solid #74c067;
height:30px;
line-height:30px;
} 

.twoColFixLtHdr #footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD; 
	border-top:12px solid #74c067;
	background-color: #004394;
	text-align:right;
	font-size:.8em;
	color:#FFF;
} 

.twoColFixLtHdr #footer a {
color:#FFF;
text-decoration:none;
}

.twoColFixLtHdr #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;
}
strong {
font-weight:bold;
}
.sectionHeading {
	font-size:1.4em;
	padding:5px 0 5px 0;
	font-family: Georgia, "Times New Roman", Times, serif;
}
ul.listdisc {
	list-style:disc; 
	margin-left:15px;
}
ul.listdisc li {
padding-bottom:10px;
}
ul.listcircle {
list-style:circle;
	margin-left:15px;
}