/* All CSS layout definitions for HCH Pou-teh-hi      */
/* Written by Vincent Lin / Lim Hong-bin, June, 2003 in Boston           */
/* No FRAMES                                                             */
/* 11 different style components on all the pages                     */
/* Each style has the definition as S#, eg, "S1" for style #1         */
/* S11: Taiwan LOGO at the upper left corner                           */
/* S21: Header Background color, etc...                                */
/* S22: Header character property for site name, etc...                */
/* S31: Main Menu Background: color, image, etc...                     */
/* S32: Main Menu Current: character property for current item     */
/* S33: Main Menu Option: character property for not current items     */
/* S41: Sub Menu Background color, or image, etc...                    */
/* S42: Sub Menu Current: character property for current sub item     */
/* S43: Sub Menu Option: character property for not current sub options */
/* S51: Disclaimer background color, image, etc...                        */
/* S52: Disclaimer character property                                   */
/* B61: Body of text display background  */
/* B62: Body of text character property  */
/* B63: Body of text hyperlink property  */

<STYLE TYPE="text/css">


/* LOGO  */
S11 {
       color: yellow;
       background: brown url("taiwan.jpg") fixed top left no-repeat;
       size: 114 114;
    }

/* Header background  */
S21 {
    }

/* Header character  */
S22 {
      font: bold 18pt Verdana, Palatino, sans-serif; /* format, color and center H1 */
      color: #546081;
      text-align: center;
      text-decoration: none;
    }

/* Main Menu background  */
S31 {
    }

/* Main Menu current character  */
S32 {
      color: white;  
      background: #993333; /* it will have a colored box around it  */
      font-size: 36pt; }   
      text-decoration: none;
    }

/* Main Menu Option character  */
S33 {
      text-decoration: none;
    }

/* Sub Menu background  */
S41 {

    }

/* Sub Menu current character  */
S42 {
      text-decoration: none;
    }

/* Sub Menu Option character  */
S43 {
      text-decoration: none;
    }

/* Disclaimer character  */
S52 {
    }

/* Body text background property  */
B61 {
    }

/* Body text character property  */
B62 {
      text-decoration: none;
    }

/* Body text hyperlink property  */
B63:link {
           color: brown;
           text-decoration: none;
         } /* unvisited link */
B63:visited {
             color: yellow;
             text-decoration: none;
            } /* visited links */
B63:active {
             color: grey;
             text-decoration: none;
           }  /* active links */
     
    



/*  UTILITYES DEFINITIONS   */
HR  { 
      height: 4px;
      width: 50%; 
      color: rgb(51,204,0);
      text-align: center;
    }

.indent { 
          margin-left: 0.5in   /* indent, use with P to indent paragraphs */
        } 


BODY {
      color: Yellow;
      background: rgb(0,102,0);
 
       
     }  



</STYLE>