/* the news box */
#news {
    width:100%;
    height:auto;
    background:transparent;
}
#news a {
    color:gray;
}
#news a:hover {
    color:#000000;
}
#news ul {
    margin:0 .5em 0 1em;
    padding:0;
}
#news li {
    line-height:1.5em;
}
/* the news box when JavaScript is available */
#news.hasJS {
    width:99%;
    height:200px;
    margin-top:5px;
    padding:0;
    overflow:hidden;
    position:relative;
}
/* The nested UL when JavaScript is available */
#news.hasJS ul {
    position:absolute;
    top:60px;
    left:0;
    margin:0;
    padding:0;
}
