/* this first section sets the background color....thats the color OUTSIDE the content area.
The same with the fonts, this applies only to any text you place outside the content area,
which will probably be nothing. The max-width is for Firefox, to let it know how wide you
want your content area to be. This will be the maximum width of your content area.

If you set it to perhaps 1050px, and view it on a 1024x768 monitor, it will appear full
width. But to someone viewing on a 1200x1024 monitor, it will appear as 1050 wide, with
your choice of a colored background either side, taking up the extra 150px. (75px each
side)*/

body {
max-width: 1280px;
background-color:#006699; 
font-family: Verdana, Arial, sans-serif;
font-size: 13px;
color: #000000;
margin:auto;
padding:0;
text-align:center;
}



/* you have 3 classes of horizontal rule, as well as the default version. Change the attributes 
to get the look you want. The 3 classes are solid, dotted, and dashed. Add class="dashed" to your
hr tag on an HTML page, to get the dashed version of the hr. Change the colors to suit. */

.solid {
	border-bottom:1px solid #000000;
   border-top:hidden;
   border-left:hidden;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	
	
}

.dashed {
  border-bottom:1px dashed #000000;
   border-top:hidden;
   border-left:hidden;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	
	
}

.dotted {
	border-bottom:1px dotted #000000;
   border-top:hidden;
   border-left:hidden;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}

 
/* this area below is for your Link-text and headings. You can change the font type and size,
the color of each of them as well as the a:hover, which is the text for a link, once the pointer
passes over it*/

a { font-family: Verdana, Arial, sans-serif; font-size: 13px; color: #0000ff; text-decoration: underline}

a:hover { font-family: Verdana, Arial, sans-serif;
 font-size: 13px; 
 color: #ff0000;
 }


h1 { font-family: Verdana, Arial, sans-serif; font-size: 20px;  color: #8b0000}
h2 { font-family: Verdana, Arial, sans-serif; font-size: 15px;  color: #8b0000}
h3 { font-family: Verdana, Arial, sans-serif; font-size: 13px;  color: #8b0000}



/* 
Notice the width:expression part? That's for internet explorer, which doesnt understand max-width
commands. So this works WITH the max-width at the top of this page. If you change that to say 1050px,
change both occurences here to 1050px as well. Otherwise those using IE wont get the width constraint,
and their page would expand indefinitely! Firefox will ignore this part, and IE will ignore the max-width
part....you need both of them.

BUT DONT TOUCH THIS PART BELOW UNLESS YOU HAVE READ THE PDF THAT EXPLAINS HOW, AND YOU ARE SURE YOU
UNDERSTAND IT!!*/

.main-table {
width:expression(document.body.clientWidth > 1281? "1280px": "auto" );
margin-top: 0px;
margin-right: auto;
margin-bottom: 0px;
margin-left: auto;
}


/* as we are using a table based layout, all your text is within a table. So this is the area to
change the size, color and font family */

table {
font-family: Verdana, Arial, sans-serif;
font-size: 13px;
background-color:#ffffff; 
color: #000000;
padding-top: 0px;
padding-right: 0px;
padding-bottom: 0px;
padding-left: 0px;
}

/* if you change the fonts and sizes, etc above, make this the same, but leave the weight as bold
Its just here to give you the option of a bold type font, without the extra size.*/

.note {
font-family: Verdana, Arial, sans-serif;
background-color:#ffffff; 
font-size: 13px;
color: #000000;
font-weight: bold;
font-style: italic;
} 


td.headercolor {
background-color:#ffffff;
}

td.spacercolor {
background-color:#ffffff;
}

td.centercolumncolor {
background-color:#ffffff;
}

td.rightcolumncolor {
background-color:#ffffff;
}

td.leftcolumncolor {
background-color:#ffffff;
}

td.footercolor {
background-color:#ffffff;
}



