/* ############################################################ */
/* External Style Sheet Sample */ 
/* CSS for coloring a scrollbar */
/* INSTRUCTIONS: */
/*    Use the ending ".css" for your external sheet */
/*    such as "stylesheet.css"  */
/*    as shown below. */
/* 1. Use the CSS below for your external style sheet, */
/*    changing the colors for your particular needs. */
/* 2. Save your stylesheet (with a ".css" ending). */
/* 3. Link FROM your HTML page TO your external style sheet: */
/*    On your HTML page, add the link between your <head></head> tags */
/*    <link rel="stylesheet" type="text/css" href="stylesheet.css"> */
/* ############################################################ */
/* IMPORTANT: */
/* Keep in mind that these CSS rules are NOT part of W3C Recommendations */
/* so W3C CSS Validators will give validation errors for this. */
/* Colored scrollbars will NOT appear in ALL browsers. */
/* See the tutorial about this CSS (URL below) for information */
/* END OF INSTRUCTIONS */
/* ############################################################ */

/* CSS rules for the browser scrollbar */

body {
	scrollbar-3dlight-color:#8F1C1B; 
	scrollbar-arrow-color:#EFE3DD;
	scrollbar-base-color:#8F1C1B;
	scrollbar-darkshadow-color:#8F1C1B;
	scrollbar-face-color:#8F1C1B;
	scrollbar-highlight-color:#8F1C1B;
	scrollbar-shadow-color:#8F1C1B;
}

/* CSS rules for the forms scrollbar */

.FSB {
	scrollbar-3dlight-color:#8F1C1B;
	scrollbar-arrow-color:#EFE3DD;
	scrollbar-base-color:#5F362D;
	scrollbar-darkshadow-color:#8F1C1B;
	scrollbar-face-color:#8F1C1B;
	scrollbar-highlight-color:#8F1C1B;
	scrollbar-shadow-color:#8F1C1B;
}

/* ############################################################ */
/* CSS rules courtesy of WebsiteTips.com */
/* from tutorial: Coloring Your Scrollbars with CSS  */
/* http://websitetips.com/info/css/scrollbars.shtml */
/* written by Shirley Kaiser, SKDesigns http://skdesigns.com/ */
/* ############################################################ */


