/*
'################################################################################
'#                                                                              #
'#  Module:     stdCss.css                                                      #
'#                                                                              #
'#  Purpose:    This module contains "standard" styles that are common and      #
'#              specific to the SMB web site.  This file is automatically       #
'#              linked in when you are using the StdOpenHead() function from    #
'#              the stdHtmlTags.asp module.                                     #
'#                                                                              #
'#  Used By:    stdHtmlTags.asp                                                 #
'#                                                                              #
'#  Change Log:                                                                 #
'#                                                                              #
'#  Date      Programmer            Change                                      #
'#  ========  ===================== =========================================== #
'#  12/21/04  Fred Rockenbach       Creation                                    #
'#                                                                              #
'#  04/15/05  Fred Rockenbach       Update & correct comments.                  #
'#                                                                              #
'################################################################################
*/




/*
#################################################################################
#   Default <body> style for SMB web sites.  This is used to set both the       #
#   background color and a background JPEG image file.  The background image    #
#   is used to allow developers and testers to easily determine which           #
#   environment (DEV, TST, ITG, STG, or PRO) they are looking at.               #
#################################################################################
*/
body
    {
    background-image:       url(/dstore/images/environment.jpg);
    background-color:       #cccccc;
    }


td.off 
    { 
    background:             #FFFFFF; 
    color:                  #003366; 
    font-family:            arial;
    }
    
td.on 
    { 
    background:             #DCDCDC; 
    color:                  #003366; 
    font-family:            arial;
    }


/*
#################################################################################
#   Common color classes used throughout the site.                              #
#################################################################################
*/
.colorF0F0F0bg 
    {
    background-color:       #F0F0F0;
    }




/*
#################################################################################
#   Common Fonts used throughout the site.                                      #
#################################################################################
*/
.copy 
    {
    font-family:            arial,verdana,sans-serif; 
    font-size:              11px; 
    color:                  #000000
    }
    
.tablefontsmall 
    {
    font-family:            verdana, arial, helvetica; 
    font-size:              smaller;
    }

.tablefontmedium
    {
    font-family:            verdana, arial, helvetica; 
    font-size:              10pt;
    color:                  #000000;
    }

.tablefontmediumbold 
    {
    font-family:            verdana, arial, helvetica; 
    font-size:              small;
    color:                  #000000;
    font-weight:            bold
    }




/*
#################################################################################
#                                                                               #
#                       E N D    O F    M O D U L E                             #
#                                                                               #
#################################################################################
*/
