﻿/* sets width, color, border, on entire table */

table.form
{
	table-layout: fixed;
	width: 550px;
	background-color: #fff;
	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. */
}

/* 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
{
	color: #000;
	text-align:left;
	vertical-align:top;
	padding-top: 5px;
	font-size: 80%;
}



/* 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;
	text-align:right;
	width: 100px;
	vertical-align:top;
	padding-top: 5px;
	font-size: 80%;
}




/* 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:#0D629C;
	padding-left: 45px;
	font-size:110%;
	text-align:left;
}

.centered
{
	text-align:center;
}
