/* use this link to check for valid css formats - http://jigsaw.w3.org/css-validator/validator?uri=http://www.foxvalleyrocketeers.org/CSS/FVR.css */

/* the body selector sets up the background color and the default font face for the entire website - be sure to include the link to this css page in all webpages */
/* The four font faces are for Windows (verdanda and arial), Macs (helvetica) and other browsers (sans serif) - should be installed on just about everything */
body {
    background-color : #dddddd;
    color : #000000;
    font-family : Verdana, arial, helvetica, sans-serif;
    font-size : 16px;
}

/* this adds the background logo image on the pages - select the body tag then format it with this selector - note the image FVR-bkgd.gif has been saved at 20-25% opacity - a dim image */
.FVR-bkgd-image {
    background-color : #dddddd;
    color : #000000;
    background-image : url('../images/FVR-bkgd.gif');
    background-repeat : no-repeat;
    background-position : center bottom;
    background-attachment : fixed;
}

/* this is the 'header' used on some pages, it is the red text with the yellow borders - probably not going to use it */
.FVR-header {
    border : 4px double #ffff00;
    font-size : 24px;
    text-decoration : underline;
    font-weight : bold;
    text-align : center;
    background-color : #dddddd;
    color : #ff0000;
    font-family : "Times New Roman",serif;
    padding-left : 4px;
    padding-right : 4px;
    padding-top : 1px;
    padding-bottom : 1px;
}

/* this sets up the small text used in the footer page */
.FVR-footer_text {
   font-size: 8px;
   font-style: italic 
}

/* this is for author bylines in the reports page and elsewhere */
.FVR-byline { 
   font-size: 10pt;
   font-style: italic 
}

/* this is for headers on the reports page - main headlines */
.FVR-hdr-report {
   font-size: 14pt;
   text-decoration: underline;
   font-weight: bold 
}