/*
    Below is a SampleClass, it really is not something for you to use, it servers two purposes,
    one is that this file has to have at least one class in it because some browsers will breat,
    second is to show you what a class looks like.
    
    The purpose of this file is to create your own classes for your web pages. I would suggest
    that you first look at the pages in your current site and if you see Titles or Captions or 
    Sentences or anything else you like, first try to use the current styles available.
    
    HOW DO I FIND STYLES USED
    Look at one of your web pages, find a style you like, maybe a Title, select the title and right
    mouse click then click on copy. Next right mouse click anywhere on the page or use the
    browser menu at the top to select "View Source" if you right mouse click on the page, you 
    must not do it over an image, usually find some white space somewhere. Once this works
    it will open another page besides your visual page with HTML coding, use the menu at
    the top to do a search for the word you copied, you may have to search more than to just
    the first word, it may be the second or...finding. Once you locate the Title, you will see HTML
    tag around it, usually a <td> or <p> and inside you will see the word "class=Title" or some
    name after the "class=", that is the class we used and you can also use it in the same manner.
    
    HOW DO I CHANGE A STYLE
    You can change any style you see in the other stylesheet in this directory but don't change
    the other style sheet itself. To change the style to something that fits your site better and
    that is approved by Sutter, the steps are: open the other style sheet with the same color
    as the custom, sometimes there are multiple sets of style sheets, copy the style you want
    to change, paste it into this stylesheet, close the other stylesheet you copied from, you just
    needed it to copy a style, then take the pasted style, delete the attributes you don't need
    to change, just leaving the attributes you are going to change, change those attributes and
    save this file, that is it. To find the style you want to change, see above.

*/
TABLE.SubNavMenu{
    background-image:url(/images/left_nav_bg.jpg);
}

*/
.SampleClass{
    font-size:7pt;
    color:#ffffff;
    font-weight:bold;
}

TD.HomeTitle{
    color:#004584;
}


A.TitleReuters{
    color:#004584;
}