/*CSS DATA CODEX

Syntax:

     .captionBlackBU
          {
          font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10px; font-weight: bold;
          text-decoration: underline; color: #000000;
          background: #FFFFFF }
          .captionBlackB:visited{color: #000000;}    
          .captionBlackB:hover{text-decoration: underline;}    
          .captionBlackB:link{color: #000000;} 
  
Placement of CSS class attribute:
     
     <td class="captionBlackB"> OR <span class="captionBlackB">text</span>

CSS Naming Convention:

     .captionBlackB
     
     caption - the placement of the text
     Black - the approximate color
     B - bolded
     I - italic
     U - underline
*/

BODY
     {
     font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 13px; font-weight: normal; line-height: 1.3;
     text-decoration: none; color: #7D826D
     }

/*
____________ 

BODY CLASSES 
____________
*/ 

.bodyGold
     {
     font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11.5px; font-weight: normal; line-height: 1.5;
     text-decoration: none; color: #FFCC66 }
     .bodyGold:visited{text-decoration: none; font weight: bold; }      
     .bodyGold:link{text-decoration: none; font weight: bold; }
     .bodyGold:hover{text-decoration: underline; font weight: bold; }
.bodyGoldB
     {
     font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11.5px; font-weight: bold; line-height: 1.5;
     text-decoration: none; color: #FFCC66 }
     .bodyGoldB:visited{text-decoration: underline; font weight: bold; }      
     .bodyGoldB:link{text-decoration: underline; font weight: bold; }
.bodyGoldI
     {
     font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11.5px; font-weight: normal; line-height: 1.5;
     text-decoration: none; font-style: italic; color: #FFCC66 }
.bodyGoldBI
     {
     font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11.5px; font-weight: bold; line-height: 1.5;
     text-decoration: none; font-style: italic; color: #FFCC66 }
.bodyGoldBigB
     {
     font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 13.5px; font-weight: bold; line-height: 1.5;
     text-decoration: none; color: #FFCC66 }
     .bodyGoldBigB:visited{text-decoration: underline; font weight: bold; }      
     .bodyGoldBigB:link{text-decoration: underline; font weight: bold; }
.bodyGoldBigB2
     {
     font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 15px; font-weight: bold; line-height: 1.5;
     text-decoration: none; color: #FFCC66 }
     .bodyGoldBigB:visited{text-decoration: underline; font weight: bold; }      
     .bodyGoldBigB:link{text-decoration: underline; font weight: bold; }
.bodyWhite
     {
     font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11.5px; font-weight: normal; line-height: 1.5;
     text-decoration: none; color: #D5CFBB }
     .bodyWhite:visited{text-decoration: none; font-weight: bold;}
     .bodyWhite:link{text-decoration: none; font-weight: bold;}
     .bodyWhite:hover{text-decoration: underline; font-weight: bold;}
.bodyWhiteB
     {
     font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11.5px; font-weight: bold; line-height: 1.5;
     text-decoration: none; color: #D5CFBB }
     .bodyWhiteB:visited{text-decoration: none; font-weight: bold;}
     .bodyWhiteB:link{text-decoration: none; font-weight: bold;}
     .bodyWhiteB:hover{text-decoration: underline; font-weight: bold;}
.bodyWhiteBigB
     {
     font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 13.5px; font-weight: bold; line-height: 1.5;
     text-decoration: none; color: #D5CFBB }
     .bodyWhiteBigB:visited{text-decoration: none; font-weight: bold;}
     .bodyWhiteBigB:link{text-decoration: none; font-weight: bold;}
     .bodyWhiteBigB:hover{text-decoration: underline; font-weight: bold;}
.bodyWhiteI
     {
     font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11.5px; font-weight: normal; line-height: 1.5;
     text-decoration: none; font-style: italic; color: #D5CFBB }
.bodyWhiteBI
     {
     font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11.5px; font-weight: bold; line-height: 1.5;
     text-decoration: none; font-style: italic; color: #D5CFBB }
