/******************************************************** * Common Classes for the Website * NOTE: These classes are not directly related to the view. They are * specific for this website. ********************************************************/ /*** Defines the global
tag within the website ***/ body { margin: 0px; font-family: verdana; font-size: 11px } /*** End global tag ***/ /*** Defines the global tag within the website ***/ a:link { font-family: verdana; font-size: 11px; color: #04146C; text-decoration: none;} a:visited { font-family: verdana; font-size: 11px; color: #04146C; text-decoration: none;} a:hover { font-family: verdana; font-size: 11px; color: #04146C; text-decoration: underline;} /*** End global tag ***/ /*** Defines the global| tag within the view ***/ td.tdH { border-bottom: 2px solid #000000; padding: 4px; padding-top: 0px; padding-bottom: 0px; } td.tdD { border-bottom: 1px solid #000000; padding: 4px; padding-top: 0px; padding-bottom: 0px; } /*** End | tag ***/ /*** Defines the combo box within view ***/ .frmCO { font-family: verdana; font-size: 11px; width: 50px; height: 20px;} /*** End ***/ /******************************************************** * End of Non-Notes View Classes ********************************************************/ /******************************************************** * Define the class of the sort columns and mouseover rows. * NOTE: Do not change the name of these classes. ********************************************************/ /*** NOTE: Do not change the background-color ***/ /*** The SH is the Heading | and SD is the Data | ***/ td.tdSH_blue { border-bottom: 2px solid #000000; background-color: #ECF1FC; padding: 4px; padding-top: 0px; padding-bottom: 0px; } td.tdSD_blue { border-bottom: 1px solid #000000; background-color: #ECF1FC; padding: 4px; padding-top: 0px; padding-bottom: 0px; } td.tdSH_gray { border-bottom: 2px solid #000000; background-color: #EAEBED; padding: 4px; padding-top: 0px; padding-bottom: 0px; } td.tdSD_gray { border-bottom: 1px solid #000000; background-color: #EAEBED; padding: 4px; padding-top: 0px; padding-bottom: 0px; } td.tdSH_green { border-bottom: 2px solid #000000; background-color: #C9EFC9; padding: 4px; padding-top: 0px; padding-bottom: 0px; } td.tdSD_green { border-bottom: 1px solid #000000; background-color: #C9EFC9; padding: 4px; padding-top: 0px; padding-bottom: 0px; } td.tdSH_red { border-bottom: 2px solid #000000; background-color: #F2E6E6; padding: 4px; padding-top: 0px; padding-bottom: 0px; } td.tdSD_red { border-bottom: 1px solid #000000; background-color: #F2E6E6; padding: 4px; padding-top: 0px; padding-bottom: 0px; } td.tdSH_yellow { border-bottom: 2px solid #000000; background-color: #FEFEC7; padding: 4px; padding-top: 0px; padding-bottom: 0px; } td.tdSD_yellow { border-bottom: 1px solid #000000; background-color: #FEFEC7; padding: 4px; padding-top: 0px; padding-bottom: 0px; } /*** End ***/ /*** Defines the default row styles ***/ .trC { background-color: #FFFFFF; } /*** End ***/ /*** Defines the alternating row styles ***/ .trCA { background-color: #EEEEEE; } /*** End ***/ /*** Defines the rollover row styles. ***/ .trMC_blue { background-color: #ECF1FC; } .trMC_gray { background-color: #EAEBED; } .trMC_green { background-color: #C9EFC9; } .trMC_red { background-color: #F2E6E6; } .trMC_yellow { background-color: #FEFEC7; } /*** End ***/ /******************************************************** * End of the Sort classes ********************************************************/ |