@charset "UTF-8";
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #FFFFE7;
	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: #666666;


}
#container {
	width: 100%;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	background: #AFC6CC;
	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. */
	border-top: solid #CF3A12 17px;

}
/*#t_nav {
	background: #DDDDDD;
	padding: 2px;  
	text-align: center;
} */

#main {
	padding: 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFE7;
	border-top: solid #000 1px;
}
#content {
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	width: 980px;
	padding: 20px;
remember that padding is the space inside the div box and margin is the space outside the div box 
	background: #FFFFE7;
}
#header {
	background: #FFFFE7;
	/*margin: 10px 0 10px 0;*/
	padding: 0px;  /* 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. */
	text-align: center;
} 
#t_nav {
	background: #FFFFE7;
	padding: 2px; 
	text-align: left;
}

#mainContent {
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	padding: 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFE7;
}
/*#b_nav {
	background: #DDDDDD;
	padding: 2px; 
	text-align: center;
} */
#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; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
#footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#FFFFE7;
	text-align: right;
	padding: 5px 50px 5px 10px;
	/*border-top: dotted #666666 1px;*/
} 
.fltrt {
	float: right;
	margin: 0 0 8px 8px;
}
.fltlft { 
	float: left;
	margin: 0 8px 8px 0;
}
.fltrt-i { 
	float: right;
	margin: 8px 0 8px 8px;
}
.fltlft-i { 
	float: left;
	margin: 8px 8px 8px 0;
}
