/* CSS Document */

/*To create a printable version of your web site you need to copy the regular stylesheet styles into this style sheet
and then size for an 8.5" x 11" sheet of paper. You also need to change sans serif fonts to Times or another serif font,
these work better in print. You can make any object's visibility hidden to hide it from the print version.
The below styles are just part of what need to be added to the print stylesheet.*/

/*Center div can be taken off to align the site to the left. Remember to remove from template*/
div#center {
	width:750px;
	background-color:#FFFFFF;
	position:relative;
	z-index:1;
}

div#header  {
	visibility:hidden;
}

/*Top menu, left, width, padding, zindex, and top can all be changed*/
div#top_menu  {
	position:absolute;
	top:75px;
	left:75px;
	width:600px;
	z-index:4;
	padding:6px;
	font-size:11px;
	font-weight:bold;
}

div#main_content {
	z-index:2;
	width:700px;
	position:absolute;
	top:100px;
	left:0px;
	text-align:left;
	padding:5px 25px;
}

body {
	font-family:"Times New Roman", Times, serif;
	font-size:12px;
}

/*Top Menu link commands, these can be changed and the hover can be removed*/
div#top_menu a  {
	color:#0000FF;
}

div#top_menu a:hover  {
	color:#FF0000;
}

/*This code belongs with the top menu commands, it makes the top link stay "highlighted" on the page you are on*/
body#home a#homenav,
body#contact a#contactnav,
body#inside a#insidenav  {
	color:#993399;
}


/*Contact Us Page commands, table and cell can remain the same, but everything else is changable*/

table#contact-us  {
	width:100%;
	font-size:13px;
}

table#contact-us td  {
	padding:5px 3px;
}

td.name  {
	width:25%;
	font-weight:bold;
}

td.field  {
	width:75%;
}

/*Heading commands - these can all be changed*/

h1  {
	font-family:Arial, Helvetica, sans-serif;
	font-size:24px;
	font-weight:bold;
	color:#339900;
}

h2  {
	font-family:Arial, Helvetica, sans-serif;
	font-size:18px;
	font-weight:bold;
	color:#9933CC;
	text-decoration:underline;
}

h3  {
	
}

h4  {
	
}

h5  {
	
}

h6  {
	
}

