/*  ---------------------------------------------------------------------------------------------
    GENERAL (OVERALL) STYLES
    ---------------------------------------------------------------------------------------------  */
    * {
        font-family             : arial, helvetica, sans-serif;
        font-size               : 10pt;
        color                   : #000000;
        line-height             : 150%;
    }

/*  ---------------------------------------------------------------------------------------------
    TABLE STYLES
    ---------------------------------------------------------------------------------------------  */

    /*  -----------------------------------------------------------------------------------------
        GENERAL (OVERALL) STYLES
        -----------------------------------------------------------------------------------------  */
        TH {
            font-weight         : bold;
            background-color    : #ffcc00;
            vertical-align      : middle;
        }
        TD {
            vertical-align      : top;
        }

    /*  -----------------------------------------------------------------------------------------
        SPECIFIC STYLE CLASSES
        -----------------------------------------------------------------------------------------  */
        TH.c_TH_AlignLeft,
        TD.c_TD_AlignLeft {
            text-align          : left;
        }

        TH.c_TH_AlignCenter,
        TD.c_TD_AlignCenter {
            text-align          : center;
        }

        TH.c_TH_AlignRight,
        TD.c_TD_AlignRight {
            text-align          : right;
        }

        TD.tdSpecification {
            font-style          : italic;
        }


/*  ---------------------------------------------------------------------------------------------
    FONT RELATED
    ---------------------------------------------------------------------------------------------  */

    /*  -----------------------------------------------------------------------------------------
        HEADERS
        -----------------------------------------------------------------------------------------  */
        H1 {
            font-size           : 24pt;
        }
        H2 {
            font-size           : 18pt;
        }
        H3 {
            font-size           : 14pt;
        }

    /*  -----------------------------------------------------------------------------------------
        LINKS
        -----------------------------------------------------------------------------------------  */
        A:link,
        A:active,
        A:visited {
            text-decoration     : none;
            color               : #ff0000;
            font-weight         : bold;
        }
        A:hover {
            text-decoration     : underline;
            color               : #ff6600;
        }

    /*  -----------------------------------------------------------------------------------------
        SPANS
        -----------------------------------------------------------------------------------------  */
        SPAN.c_SPAN_Bold {
            font-weight         : bold;
        }
