@charset "utf-8";
/* CSS Document */

body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background-color: #666;
	background-image: url(images/backtile.png);
	background-repeat: repeat;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000;
}
/* this fixes a super irritating problem with default margins with the <p> tag, it was changing the size of the div's*/
p {margin-top: 0;
margin-bottom: 0;
}
* {padding: 0; margin: 0;}

/* font sizes*/
h1 {font-size:30px}
h2 {font-size:20px}
h3 {font-size:18px}
h4 {font-size:16px}
h5 {font-size:14px}
h6 {font-size:12px}
p {font-size:12px}

/* formatting for menu hyperlinks */
a.menu{
	text-decoration: none;
	font-size: 12px;
	color: #FFF;
}

/* tables */
table.menu{
	width: auto;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
}
.menu tr {
	

}
.menu td {
	padding-right: 5px;
	padding-left: 5px;
	border-left: 1px white dotted;
/*	border-width: 1px;
	border-color: #999;
	border-style: outset;
	background-color: #BECFBE;*/
	font-weight: bold;	
	/*background-image: url(images/menubutton.jpg)*/
}

table.table1{
	width: 100%;
	border-width: 2px;
	border-color: #000;
	border-style: solid;
	margin: auto;
	margin-top: 3px;
	background-color: #FFF;/*	background-image: url(images/table1.png);
	background-repeat: repeat-x;*/
}

table.table2{
	width: 98%;
	border-width: 0px;
	border-color: #000;
	border-style: solid;
	margin: auto;
	background-color: #E2E2E2;
/*	background-image: url(images/table1.png);
	background-repeat: repeat-x;*/
	border-spacing: 0px;
	
}

.table2 td{
	border-width: 1px;
	border-style: solid;
	border-color: black;
	padding: 1px;
}

table.printform{
margin-left: 50px;
	
}

table.tablehome{
	width: 100%;
	border-width: 2px;
	border-color: #000;
	border-style: solid;
	margin: auto;
	margin-top: 3px;
	background-color: #FFF;
	background-image: url(images/table1top.gif);
	background-repeat: repeat-x;
}

.printform td {
	text-align: left;
}


/* body and div formatting */
.normal #container {
	width: 960px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background-color: #B7B7B7;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border-right: 4px solid;
	border-left: 4px solid;
	border-color: #000;
	text-align: left; /* this overrides the text-align: center on the body element. */	/*	background-image: url(images/testbacgrounddeleteme.png);
	background-repeat: repeat;*/
}



.normal #header {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 0 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	background-image: url(images/headerimage.jpg);
	border-width: 0px;
	border-style: solid;
	border-color: black;
/*	background-color: #0b4116;	*/
	/*-moz-border-radius: 10px;*/
}
.normal #menubar {
	background-color: #006;
	height: auto;
	/*	background-image: url(images/menu1.png);
	background-repeat: repeat-x;*/
	border-bottom-style: solid;
	border-bottom-color: #000;
	border-bottom-width: 1px;
}


.normal #main {
	padding: 0px 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	/*background-color: #999;*/
	background-image: url(images/shadow.png);
	background-repeat: repeat-x;
	border-width: 0px;
	padding: 10px;
	border-style: solid;
	border-color: black;
/*	background-color: white;*/
	/*-moz-border-radius: 10px;*/
	float: left;
	width: 815px;
	
}

.normal #main2 {
	padding: 0px 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	/*background-color: #999;*/
	border-width: 0px;
	padding: 10px;
	border-style: solid;
	border-color: black;
/*	background-color: white;*/
	/*-moz-border-radius: 10px;*/

	
}

.normal #sidebar {
	float: right;
	width: 120px;
	padding-top: 10px;
	padding-right: 5px;
	background-image: url(images/shadow.png);
	background-repeat: repeat-x;
/*	background-color: #FFF;*/

}
		
.normal #footer {
	padding: 0 0px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	border-width: 0px;
	padding: 10px;
	border-style: solid;
	clear: both;
	background-image: url(images/footer.png);
	background-repeat: repeat-x;
	/*background-image: url(images/footerbar.gif);*/
	/*background-color: 0b4116;*/
	/*-moz-border-radius: 10px;*/
	
	
}
