/*
   Prioritized list of font family-name typefaces. The program will consider each typeface
   value in turn and will use the first value it finds that is recognized by the browser.

   Note: Colored scrollbars are visible with Internet Explorer (version 5.5+); the latest
         versions of Netscape (7.0) and Mozilla Firefox cannot display colored scrollbars
         because both browsers ignore the scrollbar CSS code.

   Possible scrollbar color selections based on a Body background color of Bisque (#FFE4C4).

           Name of Color         Predefined Color Name     RGB Triplet
	--------------------     ---------------------     -----------
     1. Antique White            antiquewhite                #FAEBD7
     2. Wheat             	 wheat		     	     #F5DEB3
     3. Navajo White             navajowhite                 #FFDEAD
     4. Peach Puff               peachpuff 		     #FFDAB9
     5. Khaki                    khaki	 		     #F0E68C
     6. White Smoke              whitesmoke                  #F5F5F5
     7. Ivory               	 ivory 		     	     #FFFFF0
     8. Snow               	 snow 		     	     #FFFAFA
     9. Old Lace             	 oldlace 		     #FDF5E6
    10. Black                    black 		     	     #000000
    11. Dim Gray                 dimgray                     #696969
    12. Papaya Whip              papayawhip                  #FFEFD5
    13. Burly Wood               burlywood                   #DEB887
    14. Sea Green                seagreen                    #2E8B57
    15. Navy                     navy                        #000080
    16. Dark Green		 darkgreen		     #006400
    17. Pale Green               palegreen                   #98FB98
    18. Medium Sea Green         mediumseagreen              #3CB371
*/

BODY { font-family: Cursive, Arial, Helvetica, sans-serif;
       background-color:          #2E8B57;
       color:                     #000000;
       scrollbar-base-color:      #2E8B57;
       scrollbar-track-color:     #98FB98;
       scrollbar-highlight-color: #FFFAFA;
       scrollbar-3dlight-color:   #FDF5E6;
       scrollbar-arrow-color:     #FFFFFF; } 
