BODY,P,OL,UL,DIV,TD {
   font-family: Verdana, Arial, Helvetica, sans-serif;
   font-size: 11px;

   /*color: black; */
   /*font-style: normal;  */

/*
line-height : <value>;
  sets the leading of the line
line-height : normal;
  the default, leaves the leading the same as the default for that font size
line-height : 2;
  sets the line height to 2 times (double) the font-size
line-height : 20pt;
  Sets the line height to be 20 points, regardless of the font-size
line-height : 150%
  The line height will be 150% of normal for the font size
*/

   line-height: 1;
   /*margin: 0.25em 0.5em;*/
}


/*H1 {
   font-family: Verdana, Arial, Helvetica, sans-serif;
   font-size: 14px;
   color: #336633;
}*/

/*
HR {
   color: #336633; 
}*/



/* FORM MODULE */
/*
THE ULTIMATE REFERENCE: http://www.sitepoint.com/article/fancy-form-design-css
*/


/* GET RID OF THAT DAMN BORDER AROUND THE ENTIRE FORM */
.csc-mailform 
{
border: 0px;
float: left;  
clear: left;  
width: 100%;  
margin: 0 0 1.5em 0;
margin-bottom: 0.5em;
padding: 0;
align:center;
}

/* THIS IS CRITICAL FOR SPACING IN BETWEEN FIELDS! */
.csc-mailform-field
{
float: left;  
clear: left;  
width: 100%;  
padding-bottom: 0.5em;
}

/* THIS IS THE LABEL THAT GOES BEFORE THE FORM ELEMENT (EX INPUT BOX) */
.csc-mailform-field label
{
float: left;  
width: 25em;  
margin-right: 1em;
}

/* THIS IS THE BUNCH OF TEXT (CALLED A LABEL .. I DUNNO WHY) */
.csc-mailform-label
{
float: left;  
clear: left;  
width: 100%;  
padding-bottom: 0.5em;
padding-top: 0.25em;
}

/* THE SUBMIT BUTTON */
.csc-mailform-submit 
{  
float: none;  
position:absolute;
right:20%;
/*width: 100px;  */
/*border: 0 none #FFF;  */
/*padding-left: 2em; */
} 
