/*
 * $Id: news.css 1250 2008-03-02 12:04:27Z rafi $
 *
 * The CSS file for use with the news.cgi script
 *
 * Copyright(c) 2008 by Rafael Ostertag
 */
 
/*
 * The news are always enclosed by a <div> tag
 */
div.news {
    color: black;
    /* Light gray */
    background-color: #EFEFEF;
    width: 300px;
    height: 250px;
    padding-left: 3px;
    padding-right: 3px;
    overflow: auto;
}

/*
 * If news are found, they are listed in a
 * definition list.
 */
dl.news {
    margin: 0;
    padding: 0;
    border: 0;
}

/*
 * The date when the news was added.
 */
dl.news span.newsadded {
    font-style: italic;
    font-size: small;
    font-weight: normal;
}

/*
 * The definition term is the date the news
 * was created.
 */
dt.news {
    margin: 0;
    padding: 0;
    border: 0;
}

/*
 * The link
 */
dt.news > a {
    font-weight: normal;
    text-decoration: none;
}

/*
 * The desciptive part of the news.
 */
dd.news {
    margin: 0;
    padding: 0;
    border: 0;
    padding-bottom: 5px;
}
