﻿/*
* — THE MINIMUM-WIDTH OF YOUR COLUMNS IS SET TO 160PX. CHANGE IF NEEDED.

 —
*/

.scrolling table {
    
table-layout: inherit;
 *margin-left: -160px;/*ie7*/  /* VALUE MUST EQUAL "..scrolling td, th" 
min-width value */

}


.scrolling td, th {
vertical-align: top;
	padding: 10px;
   
min-width: 160px; /* VALUE MUST EQUAL ".scrolling table" margin-left - for ie value */

}


.scrolling th {
	
position: absolute;
 *position: relative; /*ie7*/
left: 0;
	
width: 160px; 
/* VALUE MUST EQUAL ".inner" margin-left value */
    background-color: #F5F5F5;

}


.outer {

position: relative
}


.inner {
overflow-x: auto;

overflow-y: visible;
	
margin-left: 180px;  /* VALUE MUST EQUAL ".scrolling th" min-width value */

}


