﻿/* sets width, color, border, on entire table */

table.form
{
	table-layout: fixed;
	width: 600px;
	border-collapse: collapse;
	padding:0;
	/*border: 1px solid #000;  turn this off to see edges*/
	/*margin-left:10px;  used to slide form away from left edge of site. */
	text-align:left;
}

/* sets default font for rows in table, including input forms */

table.form tr
{
	font-size:10pt;
	font-family:Verdana, Arial,Helvetica, San-Serif;
	color:#000;
/*	text-align:left;*/	

}


/* sets the header  */
table.form th
{
	font-weight:bold;
	text-align:center;
	background-color: green;
	padding:5px 0;
	/*border: 1px red solid;*/
}

table.form th span
{
	font-size: 110%;
	padding:0 2px;
}

/* uncomment to see the borders around the cells  
table.form td
{
	border: 1px #ddd solid;
}*/


table.form td .empty
{
	display:none;
}


table.form td .white
{
	background-color: white;
}


table.form td .regular
{
	
}



/* sets fonts, colors, and alignment in cells of main table */
table.form td .error
{
	color: Red;
	font-weight: bold;
}



table.form td .contactlabel
{
	color: #000;
	font-size:80%;
	text-align:right;
	vertical-align:top;
	padding-top: 5px;
	width:240px;
}



/* sets sub table settings */

table.section
{
	/*border: solid 1px  Gray;    uncomment to see outlines around each section */
	border-collapse: collapse;


}

/* controls colors on every other row */

tr.formRow td
{
	background-color: #eee;
}

tr.formRowAlternate td
{
	background-color: #fff;
}



.interested
{
	font-weight: bold;
	font-family: Verdana, arial, helvetical, sans-serif;
	color:#1e469e;
	padding-left: 15px;
	font-size:90%;
	text-align:left;
}

.interestedlabel
{
	color: #000;
	font-size:80%;
	text-align:left;
	vertical-align:top;
	padding-top: 5px;

}

.centered
{
	text-align:center;
}

.centerbutton
{
	text-align:center;
}

