/*
 * File:              news.css
 * Programmer:        Nathan Clapham (nclapham@csu.edu.au)
 * Created:           Aug 29 2004
 * Last modified:     Sep  7 2004
 * Description:       News style for front page.
 */

div.news {
    width: 30%; /* was 50% ?? */
    float: right;
    margin-bottom: 0px; /* required, because it is a floating element on
                           the front page; because it floats the 5em margin
                           on the footer is negated. */
    margin-top: 0;
    padding: 10px;
    border-left: 2px solid #DCDCDC;
    border-right: 2px solid #DCDCDC;
    border-top: 2px solid #DCDCDC;
}

div.news > h2, div.news > div.item > h3 {
    font-size: 1em;
}

div.news p, div.news ol {
    line-height: 1.5em;    /* shorter leading as column is narrower */
    font-size: .8em;
}

span.date {
    float: right;
    font-size: .7em;
}

