/* custom.css
This .css file can be modified to change colors within the body section of
an EdWeb page.
Comments are provided to give an idea which piece will actually be changed.
Background colors can also use color names (i.e. red, blue, green, etc...), but
using names will limit the color choices available.
To get a list of hex codes for colors, this page can be used:
http://www.webmonkey.com/reference/color_codes/
*/

body 
/* 
If you upload a background image to use, it should be in .gif format.
Change the 'background-image' line below to be:
    background-image:url('theme-bkg1.gif');
to put the background image into effect
'background-color' will change the default color of dark grey to another
color if changed
*/
{
    background-color:#444444;
    background-image:url('');
    background-repeat:repeat
    }

#csteachername 
/* 
Color of teacher name text in top, left corner of header
*/
{
    color:#000000;
    text-decoration:bold
    }

#cssitename 
/* 
Color of site name in top, left corner of header
*/
{
    color:#000000;
    text-decoration:bold
    }

#csheaderlinkmenu 
/* 
Main site links across the top in the header
*/
{
    color:#FFFFFF
    }

#footermenu 
/* 
Main site links across the bottom in the footer
*/
{
    color:#000000
    }

span.faqtitle 
/* 
FAQ title for individual FAQ entries
*/
{
    color:#800000
    } 

span.faqanswer1
/* 
Used only for the 'A' for individual answers in each individual FAQ
FAQ answer text will still display as black even if this is changed
*/
{
    color:#0000ff
    }

span.blogentryheader
/* 
Blog post title - one title per each blog post
*/
{
    color:#3366cc
    }

a.ewmenuheader
/* 
The next 3 are all for the link items in the menu header
Links in the menu header 
*/
{
    color:#dddddd
    }

a.ewmenuheader:visited
{
    color:#dddddd
    }

a.ewmenuheader:hover
{
    color:#dddddd;
    text-decoration:underline
    }

#ewpanel .hd 
/* 
The ewpanel* sections are the various title bars for the different sections
All should be the same color, with the exception of QuickPoll, which can be
treated separately.
If these panel background-colors are changed, keep in mind that you will also
likely want to upload new tl.gif, tr.gif, and possibly tl-qp.gif and tr-qp.gif
files to match. These files provide the rounded corners for the title bars.
The 'color' settings in these panel sections change the color of the text, if
there is any, that displays in the title bar.
*/
{
    background-color:#3366cc; 
    color:#dddddd 
    }

#ewpanelsubjects .hd 
/* */
{
    background-color:#3366cc; 
    color:#dddddd; 
    }

#ewpanelannouncements .hd 
/* */
{
    background-color:#3366cc; 
    color:#dddddd; 
    }

#ewpanelquickpoll .hd 
/* */
{
    background-color:#A329B5; 
    color:#eeeeee 
    }
