/*
   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 White (#FFFFFF).

           Name of Color         Predefined Color Name     RGB Triplet
	--------------------     ---------------------     -----------
     1. White Smoke              whitesmoke                  #F5F5F5
     2. Ivory               	 ivory 		     	     #FFFFF0
     3. Snow               	 snow 		     	     #FFFAFA
     4. Old Lace             	 oldlace 		     #FDF5E6
     5. Black                    black 		     	     #000000
     6. Dim Gray                 dimgray                     #696969
*/ 

BODY { font-family: Arial, Helvetica, sans-serif;
       scrollbar-base-color:      #FFFFF0;
       scrollbar-track-color:     #F5F5F5;
       scrollbar-highlight-color: #FFFAFA;
       scrollbar-3dlight-color:   #FDF5E6;
       scrollbar-arrow-color:     #000000; } 
