/*
   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
*/
 
BODY { font-family: Arial, Helvetica, sans-serif;
       scrollbar-base-color: #F0E68C; scrollbar-arrow-color: #000000; }

