/* Properties for the only div for IE 
 * This div permit to fix the header of 
 * the table and scroll the body.
 */

#Main {
    height: 500px;
    position: relative;
    overflow-y: scroll;
    overflow-x: scroll;
    /*z-index: 0;*/
}


/**/

table {}


/* Properties for the <TR> tags included in the 
 * <thead> tags for all the tables
 * Theses properties permit to fix the <thead> tags 
 * (works only for the IE case)
 */

thead tr {
    position: relative;
    top: expression(this.offsetParent.scrollTop);
    /*z-index: 0;*/
}


/* Properties for the <tbody> tags for the table 
 * identified by the id (#) REIs_Ind
 * This property permits to make the body of the 
 * table scrollable (works only for the IE case)
 */

#REIs_Ind tbody {
    height: auto;
}