/* 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 that your page can expand to.
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: 960px;
background-image: url(../image-files/bodyfade.png);
background-repeat: repeat-x;
background-color:#bac9e0; 
font-family: Arial, Verdana,  sans-serif;
font-size: 85%; /*leave this...it sets the overall size of your fonts.*/
color: #333333;
margin:auto;
padding:0;
text-align:center;
}


.max-width {
width:expression(document.body.clientWidth > 961? "960px": "auto" );
}

/*the font size is 100% of the body font setting So while it says 100%, this is actually 100% of 93%. No need to touch this if you dont want to */
table {
font-size:100%; /*leave this font size, change the individual cells below, if the default size isnt to your liking*/
color:inherit;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
margin-left: 0px;
text-align:left;
}

table.border{ /*this sets the border around your main content table*/
border:1px solid #ccc;
width:100%;
}

/*class to set thinner horizontal rule. Change color if you like.*/
hr{
border: 0;
color:inherit;
background-color: #999;
height: 1px;
width: 80%;
text-align: center;
}

img {
border:1px solid #ccc;
padding:2px;
}
 
ul {
list-style-type: none;
padding-left: 0;
margin-left: 10px;
}
 
li {
background: url(../image-files/bullet.gif) left top 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: #000066; 
text-decoration: underline;
}

a:hover { font-family: Arial, Verdana, sans-serif;
 font-size: 100%; 
 background-color: none;
 color: #000;
 }


h1 { font-family: Arial, Verdana, sans-serif; font-size: 130%;  color: #000066; text-align:center;}
h2 { font-family: Arial, Verdana, sans-serif; font-size: 116%;  color: #000; text-align:center;}
h3 { font-family: Arial, Verdana, sans-serif; font-size: 108%;  color: #f90; text-align:center;}


/* Below, is the background colors for your table cells.  */

td.adbg {
background-color:#fff;

}


td.headerbg {
background-color:#fff;
background-image: 
url('../image-files/headerpgv.jpg');
background-repeat: no-repeat;
height: 220px;
}

td.spacerbg {
background-color:#fff;
width:15%;
}

div.topnav{
width:100%;
background-color:#fff;
}

td.contentbg {
background-color:#fff;
border-left: 1px solid #cccccc;
border-right: none;
border-top: none;
border-bottom: none;
font-size: 93%; 
color:inherit;
padding:10px;
width:65%;
}

td.rightbg {
font-family: Arial, Verdana, sans-serif;
font-size: 86%;
color:inherit;
background-color:#fff; 
padding:5px;
width:20%;
}

td.leftbg {
font-size: 86%;
color:inherit;
margin-left: 5px;
background-color:#fff;
padding:5px; 
}

td.footerbg {
font-size: 86%;
color:inherit;
background-color:#fff;
padding:5px;
background-image: 
url('../image-files/footer-strip.jpg');
background-repeat: repeat-x;
background-position: bottom left; 
}

td.topnav{
background-color:#4466ba;
margin:0;
padding:0;
}

/* This is for the heading background color....your H1, H2, and H3 tags*/
.nav{
background-color: #6f888b; 
color:#fff;
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;
} 

div.float-right {
float: right;
margin: 2px 0 5px 10px;
border:1px solid #ccc;
padding:2px;
}

.caption {
font-size: 85%;
font-weight: bold;
text-align: center;
margin-top:5px;
margin-bottom:20px;
color:#990000;
clear: both;
}
