@charset "utf-8";


/* mode-scroll-all */
table.lb-table.mode-scroll-all{ display:block;}
table.lb-table.mode-scroll-all > thead, 
table.lb-table.mode-scroll-all > tbody {
	display:block;
	overflow-y: scroll;
}
table.lb-table.mode-scroll-all > thead, 
table.lb-table.mode-scroll-all > tbody tr {
    display:table;
    width:100%;
    table-layout:fixed;/* even columns width , fix width of table too*/
}

/* mode-scroll-continue */
table.lb-table.mode-scroll-continue{ display:block;}
table.lb-table.mode-scroll-continue > thead, 
table.lb-table.mode-scroll-continue > tbody {
	display:block;
	overflow-y: scroll;
}
table.lb-table.mode-scroll-continue > thead, 
table.lb-table.mode-scroll-continue > tbody tr {
    display:table;
    width:100%;
    table-layout:fixed;/* even columns width , fix width of table too*/
}

table.lb-table tr.lb-tr-disabled{
	background-color: gray
}