table.main {
 /* Main wrapping table */

 border-color: red;
 border-style: double;
 border-width: thin;
}

table.form {
 border-color: yellow;
 border-style: solid;
 border-width: thin;
}

/* CSS Document */
/*********************************************
 *    Text formatting for main table caption
 *    Use it to enter your own format 
 *********************************************/
td.caption {
 font-family: Arial, sans-serif;
 font-style: normal;
 font-weight: bold;
 font-size: 12px;
 color: #333333;
 background-color: white;
 width: 450px;
}

/*************************************************
 *    Form label format
 ************************************************/
td.label {
 font-family: Arial, sans-serif;
 font-style: normal;
 font-weight: normal;
 font-size: 12px;
 color: #333333;
 background-color: white;
}

/*************************************************
  *   Form input format
  ************************************************/
td.input {
 font-family: Arial, sans-serif;
 font-style: normal;
 font-weight: normal;
 font-size: 12px;
 color: #333333;
 background-color: white;
}

/***************************************************
  *   Main table foot format
  **************************************************/
td.foot {
 font-family: Arial, sans-serif;
 font-style: normal;
 font-weight: normal;
 font-size: 10px;
 text-align: center;
 color: #333333;
 background-color: white;
}