body  {
	font: 100% Arial, Helvetica, sans-serif;
	background: #666666;
	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;
	background-color: #000000;
}

.twoColElsLtHdr #container {
	width: 800px;
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 5px solid #665544;
	text-align: center; /* this overrides the text-align: center on the body element. */
}

.twoColElsLtHdr .header { 
	background:url(../images/jcsobanner.jpg) no-repeat;
	margin: 0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
    text-align:center;
    width:800px;
    height:182px;
    background-color:#665544;
	border-bottom: 2px solid #665544;
}
 
.twoColElsLtHdr #header img
{
    /*border: 0;  this gets rid of the blue border around the banner */
}

.twoColElsLtHdr #sidebar1 {
	float: left;
	width: auto; /* since this element is floated, a width must be given */
	/*background: #864;  the background color will be displayed for the length of the content in the column, but no further */
	/*padding: 15px 0;  top and bottom padding create visual space within this div */
}

.twoColElsLtHdr #mainContent {
	margin: .5em 1.5em 1em 11em;  /*the right margin can be given in ems or pixels. It creates the space down the right side of the page. */
	/*margin: 0 15px 15px 210px;*/
}

.twoColElsLtHdr .footer { 
	background:url(../images/footer3.jpg) no-repeat ;
	margin: 0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
    text-align:center;
    width:800px;
    height:126px;
    background-color:#DDDDDD;
	border-top: 2px solid #665544;
}

/* Miscellaneous classes for reuse */
.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;
}

.center
{
    text-align:center;
}

.AmberAlertTicker
{
    width:460px;
    border:solid 1px red;
}
 
