/* 
    Document   : simple
    Created on : 10/04/2009, 6:44:22 PM
    Author     : hung
    Description:
        Purpose of the stylesheet follows.
*/

/* 
   TODO customize this sample style
   Syntax recommendation http://www.w3.org/TR/REC-CSS2/
*/

/* Standard colour names: aqua, black, blue, fuchsia, gray, green,
lime, maroon, navy, olive, purple, red, silver, teal, white, and yellow.
*/

root { 
  display: block;
}
table {
  border: 1px solid gray;
  border-collapse: collapse;
}
td {
  border: 1px solid olive;
  padding: 0px 2px 0px 2px;
}
th { font-weight: normal; }
thead { background-color: fuchsia; }
.EvenRow { background-color : white; }
.OddRow { background-color : silver; }
