/* Table Centered on page, Cell Content Aligned Left, Cellpadding=1 */
table.cleft1 { margin-left:auto; margin-right:auto; padding: 1px; border: none;}
table.cleft1 td { border: none; vertical-align: top; padding: 1px; font-weight: normal; }

/* Same as above, but with BORDER=1 */
table.cleft1border { margin-left:auto; margin-right:auto; padding: 1px; border: 1px solid #789DB3;}
table.cleft1border td { border: none; vertical-align: top; padding: 1px; font-weight: normal; }

/* Cell content Aligned Right, Cellpadding=1, Centered on page */
table.cright1 { margin-left:auto; margin-right:auto; padding: 1px; border: none;}
table.cright1 td { border: none; text-align: right; vertical-align: top; padding: 1px; font-weight: normal; }

/* Cell Content Aligned Left, Cellpadding=10, Centered on page */
table.cleft10 { margin-left:auto; margin-right:auto; padding: 10px; border: none;}
table.cleft10 td { border: none; vertical-align: top; padding: 10px; font-weight: normal; }


/*  Colored background table code below */

/* Light Blue background color, Cell Content Aligned Left, Cellpadding=10, Centered on page */
table.cleft10blue { margin-left:auto; margin-right:auto; padding: 10px; border: none;}
table.cleft10blue td { border: none; vertical-align: top; padding: 10px; font-weight: normal; background: #E7EDF8; }

/* Tan background color , Cell Content Aligned Left, Cellpadding=10, Centered on page */
table.cleft10tan { margin-left:auto; margin-right:auto; padding: 10px; border: none;}
table.cleft10tan td { border: none; vertical-align: top; padding: 10px; font-weight: normal; background: #F0E1A8; }

/* ......................................................................................................*/
/*  NOTE:  According to W3C recs you can only apply ... */
/*  the border, background, width & visibility properties to the col & colgroup elements.  */

/* Designed so that DIFFERENT COLORS can display in different COLUMNS ... */
/* If only a few colored TD's wanted, it's easier to just insert the following...  */
/*     style="background-color: #336699" - into the TD on the web page ... */
/* Table Centered on page, Cell Content Aligned Left, Cellpadding=10 ... */
/* ... EXCEPT Background Color - Peach in TWO of the THREE columns ... */
/* ... Use <col class="firstCol"><col><col class="lastCol"> under <table> tag */


table.cleft10peach { margin-left:auto; margin-right:auto; padding: 10px; border: none; }
table.cleft10peach col.firstCol{ background-color: #FFF9ED; }
table.cleft10peach col.lastCol{ background-color: #FFF9ED; }
table.cleft10peach td { border: none; vertical-align: top; padding: 10px; font-weight: normal; }

/* ......................................................................................................*/



/* For special ROWS - These DO NOT WORK on TDs (COLUMNS), just ROWS */
.row-white { background: #FFFFFF; }			/* White */
.row-blue { background: #E7EDF8; }			/* Light blue */
.row-pink { background: #FEEEEE; }			/* Light pink */


/* For special cells - aligned differently than most of the table cells */

.left td { text-align: right; }     /* For special cells - aligned left horizontally */
.right td { text-align: right; }     /* For special cells - aligned right horizontally */
.center td { text-align: middle; }   /* For special cells - centered horizontally */



