/** 
 * Color Styles
 * 
 * Some of the elements have muliple colours, and these will aid in 
 * consistancy, particularly with the backgrounds of tables, headers
 * and other elements that are quite often hard-coded colours
 * (2007-08-15)
 */

/**
 * Header colours: Black on Lime
 */
.color_header
{
    background: #EFF5D1;
    color: #000000;
}


/**
 * Content: Black on white
 */
.color_content 
{
    background: #FFFFFF;
    color: #000000;
}


/**
 * Heading Color: Dark Lime
 */
.color_heading_primary
{
    color: #9DB800;
}


/**
 * Heading Color: Dark Slate
 */
.color_heading_secondary
{
    color: #444B59;
}