@charset "utf-8";
/* 
	074C6F = th background and border color
	ffffff = th text color
	
	B3DBEF = even color
	CFEFFF = odd color

*/

/* alternating table rows code */
    table{ border-collapse:collapse; width:100%; }
    table thead tr th {
      background:#074C6F;
      border:#074C6F 1px solid;
      color:#ffffff; 
      padding:2px 4px;
    }
    table tbody tr td {
      border:#074C6F solid 1px;
	  line-height:21px;
      padding:2px 4px; 
      text-align:left;
      vertical-align:top;
    }
    table tbody tr td {
      background:#B3DBEF; 
    }
    table tbody tr.alt td {
      background:#CFEFFF; 
    }
    table tbody tr.collapsed td {
      padding:0px; 
    }
/* end alternating table rows code */