   /*
    * $Id: global.standard.css,v 0.1 letocq Exp $
    */

   /*
    * Imported further style details, placed here due to restriction
    * on placement of @import statements:
    * http://www.w3.org/TR/REC-CSS2/cascade.html#at-import
    */
    @import url("global.standard.head.css");

    @import url("global.standard.body.css");
    @import url("global.standard.sub-body.css");
	@import url("global.standard.css1.css")
    @import url("global.standard.foot.css");



   /*
    * Basic information about the page.
    * Background set to dark red, to allow for a layout table height that 
    * is less than window height.
    * Font specification order:
    *   Verdana, for greatest on-screen legibility
    *   Geneva, for on-screen legibility on a Mac
    *   Arial, for PC's
    *   Sans-serif otherwise.
    */
    body
    {
        margin: 0px;
        padding: 0px;
        background-color: #FFFFFF;
        font-family: verdana, geneva, arial, sans-serif;
    }

 	.body-grey
    { font-family: Verdana; 
    font-size: 12px; 
    color: #666666; 
    }
    .body-highlight
    { font-family: Verdana; 
    font-size: 12px; 
    color: #990000;
    font-weight: bold; 
    }
    .body-link
    { font-family: Verdana; 
    font-size: 12px; 
    color: #990000;
    text-decoration: underline; 
    }


   /*
    * Override any cellpadding or cellspacing in the content.
    */
    td
    {
        margin: 0px;
        padding: 0px;
    }

   /*
    * Useful mini-classes.
    */
    .no-show { display: none; }
    .no-break { white-space: nowrap; }

   /*
    * Determines the base appearance of all rows classed "page-head".
    * These have single-pixel orange borders and maroon backgrounds,
    * though the sub-header can be overriden to provide colors and images
    * that deviate from the global appearance
    *
    * See global.standard.head.css (imported above) for more information.
    */
    tr.page-head {}

        tr.page-head td
        {
            background: #900;
            border-bottom: #cb9f6b 1px solid;
            padding: 0px;
        }



   /*
    * page-body table row contains entire white-background content area,
    * regardless of column count.
    *
    * See global.standard.body.css and global.standard.sub-body.css
    * (imported above) for more information.
    */
    tr#page-body {}

        tr#page-body td
        {
            background-color: #FFF;
            padding-bottom: 16px;
            padding-right: 16px;
        }

       /*
        * Secondary navigation column, on left. Provided with 
        * background decorative element.
        *
        * NOTE: This table cell should also be provided with the 
        * class "page-body-sub" to use correct CSS styles.
        */
        td#sub-navigation
        {
            width: 20%;
            padding-left: 4px;
            padding-bottom: 72px !important;
            background: #fff url("images/ampersand-top.gif") bottom left no-repeat;
        }

       /*
        * Primary content column, in center.
        */
        td.body-column { width: 40%; }

       /*
        * Secondary content column, at right.
        */
        td#sub-body { width: 30%; }

       /*
        * A buffer column for appearances' sake.
        */
        td#right-buffer { width: 10%; }



   /*
    * table cell containing just the page footer text.
    *
    * See global.standard.foot.css (imported above) for more information.
    */
    td#footer { background: #900 url("images/ampersand-bottom.gif") top left no-repeat; }
    
    /*
    * Bulleted List
    *
    */   
    
    
    .b1          { font-family: Verdana; font-size: 12px; color: #336699; list-style-type: square; margin-bottom:0; margin-top:0 }
    h1           { font-family: Verdana; font-size: 14px; color: #336699; font-weight: bold; margin-bottom:0 }
    .Quote       { font-family: Verdana; font-size: 24px; color: #336699; font-style: italic }
    ul           { margin-top: 1; margin-bottom: 0 }