@charset "UTF-8";
body  {
	margin: 0px; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0px;
	background-color: #EDDD62;
}
#container {
	width: 900px; /* this overrides the text-align: center on the body element. */
	background-color: #FFFFFF;
	background-image: url(../images/banana_background.jpg);
	background-repeat: no-repeat;
	background-position: 0px 115px;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
} 
#header {
	background-color: #FFFFFF;
	background-image: url(../images/atom_header.png);
	background-repeat: no-repeat;
	margin: 0px;
	height: 106px;
	padding-top: 9px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 420px;
} 
#header h1 {
	margin: 0px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	font-family: Arial, Helvetica, sans-serif;
	font-size: .8em;
	font-weight: normal;
	color: #FFCC33;
	padding: 0px;
}
#header a:link {
	color: #FFCC33;
	text-decoration: none;
}
#header a:visited {
	text-decoration: none;
	color: #FFCC33;
}
#header a:hover {
	text-decoration: none;
	color: #FFCC33;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #FFCC33;
}
#header a:active {
	text-decoration: none;
	color: #FFCC33;
}
#mainContent {
	margin-top: 20px;
	margin-right: 30px;
	margin-bottom: 30px;
	margin-left: 5px;
	background-image: url(../images/white_back.png);
	padding: 20px;
} 
#mainContent h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
	font-weight: bold;
	color: #0084B5;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 8px;
	margin-left: 0px;
	line-height: 1.2em;
}
#mainContent p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: .75em;
	line-height: 1.4em;
	color: #121212;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 8px;
	margin-left: 0px;
}
#mainContent a:link {
	color: #0084B5;
	text-decoration: none;
}
#mainContent a:visited {
	text-decoration: none;
	color: #0084B5;
}
#mainContent a:hover {
	text-decoration: none;
	color: #0084B5;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #0084B5;
}
#mainContent a:active {
	text-decoration: none;
	color: #0084B5;
}
#sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 180px;
	margin-right: 30px;
	margin-top: 20px;
	background-image: url(../images/white_back.png);
	padding: 10px;
	margin-bottom: 30px;
}
#sidebar1 h3 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: .8em;
	font-weight: bold;
	color: #0084B5;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 8px;
	margin-left: 0px;
}
#sidebar1 p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.7em;
	line-height: 1.4em;
	font-weight: normal;
	color: #000000;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 8px;
	margin-left: 0px;
}
#footer {
	background-color: #0084B5;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 30px;
	padding-left: 30px;
} 
#footer p {
	margin: 0px; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 0px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-family: Arial, Helvetica, sans-serif;
	font-size: .65em;
	color: #FFFFFF;
	font-weight: normal;
}
#mainContent h2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: .75em;
	font-weight: bold;
	color: #34B55F;
	padding: 0px;
	margin-top: 20px;
	margin-right: 0px;
	margin-bottom: 8px;
	margin-left: 0px;
}
.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;
}

