      body {
        margin:           0;
        padding:          0;
        overflow:         hidden;
        height:           100%; 
        max-height:       100%; 
        font-family:      verdana;
        line-height:      1.1em;
        color:            #000000;
      }

      #header {
        position:         absolute;
        top:              0;
        left:             0;
        width:            100%;
        height:           24px;   /* This is the height of the header image */ 
        overflow:         hidden; /* Disables scrollbars on the navigation frame. To enable scrollbars, change "hidden" to "scroll" */
        background:       #FFFFFF url("llyfrgell/BPC_header.jpg") no-repeat center top;
      }

      #logo {
        padding:          10px;
        float:            left;
      }

      main {
        position:         fixed;
        top:              24px; /* Set this to the height of the header */
        left:             0; 
        right:            0;
        bottom:           0;
        overflow:         auto;
        background-color: #EBDFCF; 
      }

      .content {
        margin:           15px; /* Provides padding for the content */
      }

      p {
        color:            #000000;
      }

      /*IE6 fix*/
      * html body {
        padding:          24px 0 0 0; /* Set the first value to the height of the header */
      }

      * html main { 
        height:           100%; 
        width:            100%; 
      }

      img {
        padding:          0px;
        border:           5px solid transparent;
        float:            left;
      }

      table tr td:nth-child(even) {
        border-top:       1px solid black;
        border-right:     1px solid black;
        border-bottom:    1px solid black;
        vertical-align:   top;
        font-family:      verdana;
        color:            black;
        font-size:        9pt; /* Cannot be larger than 11pt */
      }

      table tr td:nth-child(odd) {
        border-top:       1px solid black;
        border-left:      1px solid black;
        border-bottom:    1px solid black;
        vertical-align:   top;
      }

      table.noborder tr td {
        border-width:     0px;
    }
