@charset "UTF-8";

body {
	font: 1em/1.2 Georgia, "Times New Roman", Times, serif;
	background: #FFF;
	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;
}
#container {
	width: 760px;  /* 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 */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	padding: 0px;
}
#header {
	margin: 0px;
	padding: 0px 15px 0px 0px;
	position: relative;
}
h1  {
	margin: 0px; /* 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: 0px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	text-indent: -3000px;
}
h2 {
	/*font: normal 16px/1.2 Helvetica, Arial, sans-serif;*/
font-size: 16px;
font-family: Arial, sans-serif;
font-weight: normal;
	margin: 0px 0px 15px;
	padding: 0px;
}
h3 {
	font: bold 18px Helvetica, Arial, sans-serif;
	color: #64bc46;
	padding-top: 0px;
	padding-left: 5px;
	margin: 10px 0px;
}
#header ul {
	list-style: none;
	font: 12px/1.2 Arial, Helvetica, sans-serif;
	padding-top: 15px;
}
#header li {
	display: inline;
	padding-right: 5px;
	padding-left: 5px;
}
#header li a {
	text-decoration: none;
	color: #000;
}
#header li a:active, #header li a:hover    , #header li a:focus{
	color: #64bc46;
}
#mainContent {
	padding: 0 0 15px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
	width: 665px;
	margin: 0px auto 10px;
}
p {
	font: 0.9em/1.1em Georgia, "Times New Roman", Times, serif;
	margin: 0px;
	padding: 0px 0px 10px;
}
#column1 {
	float: left;
	width: 320px;
}
#column2 {
	width: 320px;
	float: right;
}
#footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#000;
	margin-top: 10px;
}
#partOne {
	border: 1px solid #999;
	padding-left: 10px;
	padding-right: 10px;
}
#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 */
	color: #FFF;
	font: 0.7em Helvetica, Arial, sans-serif;
	text-align: center;
}
.img {
	border-style: none;
	margin-left: 15px;
	margin-top: 0px;
	padding: 0px;
}
.fltrt {
	float: right;
}
.fltleft {
	float: left;
}
.clearflt {
	clear: both;
}
.red {
	color: #F00;
	font-weight: bold;
}
.greenBold {
	font-weight: bold;
	color: #64bc46;
}
.pod {
	padding: 0px 5px 15px 15px;
	margin-bottom:10px;
	border: 1px solid #999;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
}
.addSpace {
	padding-right: 10px;
	margin-bottom: 5px;
}
.arialBold {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	text-transform: uppercase;
	text-decoration: none;
}
.arial {
	font: 0.8em/1em Arial, Helvetica, sans-serif;
}
.jbaMedia {
	position: absolute;
	top: 25px;
	left: 625px;
}
