/*
The background color can be modified by setting the body selector's
background-color as per the example below. The values can be a color name
(red), a RGB value (rgb(255,0,0)), or a hex number(#ff0000). 
For example, for a green background enter :

        body { background-color: #00ff00} 

Hex values for the basic RBG settings follow:

-------------------------------------------------
Color           RGB setting             Hex value
-------------------------------------------------
black             0   0   0             000000
white           255 255 255             ffffff
red             255   0   0             ff0000
orange          255 128   0             ff8000
yellow          255 255   0             ffff00
green             0 255   0             00ff00
blue              0   0 255             0000ff
violet          128   0 128             800080
-------------------------------------------------

For more advanced CSS color setting information, please refer to:
http://www.w3schools.com/css/css_colors.asp

Here is an example of how to change the default CSS set to meet your
need:

body 
{
background-color: #FFFFCC;
font-family: arial,verdana,helvetica,sans-serif
}
 
thead 
{
color: yellow
}
*/

body 
{
background-color: #FFFFCC;
font-family: arial,verdana,helvetica,sans-serif
}
 
thead 
{
color: #?W_COLUMN_HEADER_COLOR?;
font-weight: bold;
text-align: center
}

h1 {
   color: blue;
}

span.WHEADER1 {font-weight:bold;font-size: 150%}
span.WHEADER2 {font-weight:bold;font-size: 125%}
span.WHEADER3 {font-weight:bold}
span.WHEADER4 {font-weight:bold}
span.WHEADER5 {font-weight:bold}
span.WHEADER6 {font-weight:bold}

.title_restriction_status {color: red}

.dy_errorMsg {
   color:#FF0000;
   font-weight:bold;
}
.dy_arrow {
   font-family:courier,monospace;
   font-size:small;
}
.dy_orderRefusal {
   color:#BB0000;
}
.dy_logout_btn {
   color:red;
   font-weight:bold;
}
.dy_doc {
   font-size:small;
}

