/* this first section sets the background color....thats the color surround OUTSIDE
your main table. The same with the fonts, this applies only to any text you place outside the
main content table. Which will probably be nothing. The max-width is for Firefox, to let it know how wide you
want your page to be. This will be the maximum width of your main content table.

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)<span style="background-color:#000000;"><font color="#333333"></font></span>*/

body {
max-width: 1050px;
background-color:#ffffcc; 
font-family:Arial, Verdana, sans-serif;
font-size: 93%;
color: #000000;
margin:auto;
padding:0;
text-align:center;
}





/* you have 3 more 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-top: 2px solid #fde386;
   border-bottom: hidden;
   border-left: hidden; 
   border-right: hidden;
	width: 60%;
	margin-left: auto;
	margin-right: auto;
	
	
}

.dashed {
  border-bottom:1px dashed #d03d4c;
   border-top:hidden;
   border-left:hidden;
	width: 60%;
	margin-left: auto;
	margin-right: auto;
	
	
}

.dotted {
	border-bottom:1px dotted #E3B95A;
   border-top:hidden;
   border-left:hidden;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}

/* this is a custom class for your bold tag. You can alter anything here, or remove
it completely to get the default bold*/
b{

color: #000000;
font-family: Arial, Verdana, sans serif;
font-size: 100%;
font-style: ;
}


/* this is a custom class for using graphics as bullets.  Upload a custom graphic to your 
graphics library in the usual way. Then replace my URL
with your own. Note there are no speech marks around the URL*/
 
ul {
list-style-type: none;
padding-left: 0;
margin-left: 10px;
}
 
li.custom {
background: url(../images/pink-yellow-bullet.jpg) left center no-repeat; 

padding-left: 20px;
margin-bottom: 10px;

 }
 
/* 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: Arial, Verdana, sans-serif; 
font-size: 100%; color: #32a800; text-decoration: underline;
}

a:hover { font-family: Arial, Verdana, sans-serif;
 font-size: 100%; 
 background-color:#8c8c5e;
 color: #ffffc2;
 }


h1 { font-family: Verdana, Arial, sans-serif; font-size: 150%;  color: #000000}
h2 { font-family:  Verdana, sans-serif; font-size: 116%;  color: #65822c}
h3 { font-family: Century Gothic, Verdana, sans-serif; font-size: 108%;  color: #2a3820}
h4 { font-family:  Verdana, sans-serif; font-size: 116%;  color: #000000}
h5 { font-family: Arial, Verdana, sans-serif; font-size: 150%;  color: #A0C544}

/* 
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....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 > 1052? "1050px": "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: 93%;
color: #000;
padding-top: 2px;
padding-right: 2px;
padding-bottom: 2px;
padding-left: 2px;
}

/* 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:#fff; 
font-size: 77%;
color: #666666;
font-weight: bold;
font-style: ;
} 


/* Below, is the background colors for your table cells. originally, they were on the actual page, so why
move them to the stylesheet? Well, if you decide to do a site-wide color scheme change, you now change here, 
rather than on every page. A big improvement. Also, the less styling on the page, the better.

Suppose you prefer to have a tiled image rather than a solid color?
Replace the background-color:#fff;  with this, and upload your image to the graphics library....
background-image: 
url('http://www.your-site.com/images/your-image.gif');
background-repeat: repeat;
*/


td.headerbg {
background: #959435 url(../images/dk-header.jpg) top center no-repeat;
height: 170px;
width: 960px;
text-align: center;
}

td.topnavbg {
background-color: #ffffcc;
border-top: hidden;
   border-bottom: hidden;
   border-left: hidden; 
   border-right: 1px solid #959435;
}
td.spacerbg {
background-color:#d6d58c; 
}

td.contentbg {
background-color:#ffffff; 
}

td.rightbg {
font-family: Arial, Verdana, sans-serif;
font-size: 93%;
color: #000;
background-color:#d6d58c; 
}

td.leftbg {
font-size: 86%;
margin-left: 10px;
background-color:#d6d58c; 
}

td.footerbg {
font-size: 86%;
background-color:#ffe387; 
}

/* This is for the heading background color....your H1, H2, and H3 tags*/
.hbg{
background-color:#ffffff; 
color:#284239;
width: auto;
z-axis: 1;
}
.hbg1{
background-color:#d6d58c;
/*#fbff71; */
color:#000000;
width: auto;

}

/* information below is to remove the link styling for anchor links.
Just leave this as it is....it works fine, and shouldn't be modified */
a.jumplink{
text-decoration: none;
font-size: 100%; 
background-color: transparent;
color: #000;
}

a:hover.jumplink  {
text-decoration: none;
font-size: 100%; 
background-color: transparent;
color: #000;
}