/*V1.0 IMPORTANT NOTE. Please, never put HTML ot HTML comments in this stylesheet. or it will stop working.*/
body {
background-color: #a7a7a7; 
font-family: Arial, Verdana, sans-serif;
font-size: 86%;
color: #000;
margin:auto;
padding:0;
text-align:center;
}

/***************************************************
 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: #309; text-decoration: underline;
}

a:hover { font-family: Arial, Verdana, sans-serif;
 font-size: 100%; 
 color: #900;
 }

h1 { font-family: Arial, Verdana, sans-serif; font-size: 150%;  color: #330000}
h2 { font-family: Arial, Verdana, sans-serif; font-size: 116%;  color: #330000}
h3 { font-family: Arial, Verdana, sans-serif; font-size: 108%;  color: #330000}
h4 { font-family: Arial, Verdana, sans-serif; font-size: 108%;  color: #330000}

/*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: Arial, Verdana, sans-serif;
	font-size: 93%;
	color: #000000;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}


/***********************************************************
 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 {
width: 790px;
background-color:#fff;
}

td.spacerbg {
height:1px;
background-color:#fff; 
width:150px;
padding:5px;
}

td.contentbg {
width:460px;
background-color:#fff; 
padding:9px;
/*border-right:1px dotted #ccc;
border-left:1px dotted #ccc;*/
}

td.rightbg {
width:150px;
font-family: Arial, Verdana, sans-serif;
font-size: 93%;
color: #000;
background-color:#fff; 
padding:5px;

}

td.leftbg {
width:142px;
font-size: 93%;
margin-left: 0px;
margin-right: 0px;
background-color:#fff; 
padding:0px;
}

td.footerbg {
font-size: 93%;
background-color:#eaeaea; 
padding:0px;
}


/*******************************************************
 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;
} 

/******************************************************************
these classes are for the images, the float left, right, and a centered box
Doens't have to contain images, anything can go into these boxes.*/

.image-left {
	float: left;
	padding: 2px;
	
	margin-right: 5px;
	border: 1px solid #000;
}

.image-right {
	float: right;
	padding: 2px;
  
	margin-left: 5px;
	border: 1px solid #000;
}
.box{
padding: 3px;
border: 1px solid #666;

}

/****************************************************
this area of the stylesheet is for your left side navigation panel*/

#navigator {

}

.navbutton {
line-height: 90%;
}

.navbutton a {
font-size: 93%;
font-family:  Verdana, sans-serif;
}

.navbutton a:hover {
font-size: 93%;
font-family:  Verdana, sans-serif;
}


/***********************************************************
 this part below is for the color on the background, surrounding the buttons. Change the color, and the 
border, if you like. For the border, you can use solid, dashed, or dotted, for different border styles*/

#navigator {

background-color: transparent;

border:  none;


width: auto;

margin-top: auto;

margin-left: auto;

margin-right: auto;

padding: 2px;

text-align: left;


}

/* want more space between your buttons? just increase the margins
from 1px. Font weight can be bold if you prefer.*/

.navbutton {

font-weight: normal;
text-align: left;
margin-bottom: 0px;
margin-top: 0px;
}


/* this part is for the colors of your buttons "at rest" so to speak. Notice the
top/left, and the bottom/right are colored in pairs? If you change the colors, you will need to do the same, to
maintain the illusion of 3D buttons. Make one set of sides a slightly darker shade than the other pair.
This will give the button a 3D look*/

.navbutton a {

padding: 4px;

text-decoration: none;

display: block;

/*color: #407495; <---- The Original template text color 
/*this is where you change the button font color*/
color: #330000;

background-color: transparent;

border-top: none;

border-left: none;

border-bottom: none;

border-right: none;

}

/*this part is how the buttons look, once the pointer passes over them. Same thing as above, but this time
the top/left colors should SWAP with the bottom/right, to give the correct effect.
Also the background color should go a shade darker, to make it seem as if it were now below the 
level of the page, and is not getting any light on it*/

.navbutton a:hover {

color: #000; /*-----this is where you change the button font color, when the button is hovered over*/

/*background-color: #e8ffff; <---- The Original template text color */

background-color: #eaeaea;

border-top:  none;

border-left: none;

border-bottom:  none;

border-right: none;

}


/************************************
this is for the left side navigation headings (with the gradient background)*/
.nav{
white-space:nowrap;
font-size: 100%;
color: #fff;
text-align: center;
/*background-color:#990000; */
background-image:url(../image-files/btn-bg9.jpg); background-repeat: no-repeat;
/*border-top:1px solid #820f36;
border-bottom:1px solid #820f36;*/
width: 99%;
padding-left:0px;
padding-right:0px;

}

.nav a:hover {

color: #cccccc; /*-----this is where you change the button font color, when the button is hovered over*/

/*background-color: #ff0000; /* <---- Change this to change the hover color */

border-top:  none;

border-left: none;

border-bottom:  none;

border-right: none;
}



body .c2Form { border: 0px }
body .dividerRule { border-top: 0px }
body .InvSquestions { font-size: 12px }
body .titleInput { width: 50% }
body .storyInput { height: 150px } 


