/* 
Document   : table_style
Created on : 29-Apr-2008, 15:04:36
Author     : junchenl
Description:
Purpose of the stylesheet follows.
*/

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

 table {
      width:100%;
      border-collapse: collapse;     
  } 

table th {
    border:1px solid #7c7c7c;
    background-color:#6499CB;
    color:white;
    padding:2px;
    text-align:left;
    font-size:13px;
    height:25px;
}

table td {
    border:1px solid #7c7c7c;
    text-align:left;
    padding:2px;
    vertical-align:top;
}   

