/* Note: The slash star combinations surround text that is to be          */
/*       marked a comment.  These just describe the CSS and are           */
/*       ignored by the browser.                                          */

body
{
    font: 16px arial;
}
/* these are the font styles for the links that appear on your web page */
a:link {font: bold 14px arial; color: #000099; text-decoration: none;} 
a:active {font: bold 14px arial; color: #000099; text-decoration: none;}
a:visited {font: bold 14px arial; color: #000099; text-decoration: none;}
a:hover {font: bold 14px arial; color: #0000FF; text-decoration: none;}

.border
{
    /* this is used for all kinds of borders */
    /* be it for the whole page, or just the content section */
    border: solid 1px #D6D6D6;
}

.sidebaritem
{
    width: 130px;
    background-color: #F5F5F5;
    color: #FFFFFF;
    border: solid 1px #D6D6D6;
    font-size: 11px;
    padding: 2px;
    margin-bottom: 3px;

}