@charset "utf-8";
/* CSS Document */

/***********Layout.css BEGINS HERE *** Used to set global styles sitewide***********/
body, html { 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; font-family: Arial, Helvetica, sans-serif; font-size: 1em; line-height: 1.5; letter-spacing: 0.1em; }
p, h1, h2, h3, h4, h5, h6, table, tr, td, applet, iframe, form, div, br, img { /*Used to further reset margins and padding to a cross-browser standard*/ margin: 0px; padding: 0px; }
h1, h2, h3, h4, h5, h6 {/*Sets styles for the header elements globally and uniformally*/ font-size: 0.9em; margin-top: 0.2em; margin-bottom: 0.2em; }
p { margin-top: 0.4em; margin-bottom: 0.6em; font-size: .8em; }
.twoColFixRtHdr #container {/*Sets the size of the container to hold all page elements*/ width: 990px; margin: 0 auto; text-align: left; }
/*Header Layout Begins Here*/
.twoColFixRtHdr #header { margin: 0 auto; height: 268px; }
.twoColFixRtHdr #header h1, #header p { margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */ text-indent: -9999em; font-size: 0.1em; }
/*Sidebar layout begins here*/
#sidebarWrapper { float: right; /* since this element is floated, a width must be given */ width: 296px; }
.twoColFixRtHdr #sidebar1 { padding: 0em 0.6em 0; margin-top: 0px; }
.twoColFixRtHdr #mainContent { margin: 0 306px 0 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */ padding: 0.6em; }
.twoColFixRtHdr #footer { }
.twoColFixRtHdr #footer p { margin: 0 0 .3em 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */ padding: 0.4em; color: #fff; }
.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; }
.fltlft { /* this class can be used to float an element left in your page */ float: left; }
.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: .1em; line-height: 0px; }
