﻿
/* COLUMN WIDTHS for use on SGM Lifewords website. XIM Ltd 2007-Oct
   Widths and positioning are calculated as follows. All content columns are 
   contained within div id="mainWrap". The left column is used for the 
   navigation tree (and is hidden in some layouts). Columns have padding of
   20px on left and 19px on right (defined in .column{} in lifewords.css).
   
   leftColumn:  left  = 0px; width: 145px;
   midColumn:   left  = leftColumn.width + 40px (unless leftColumn is hidden)
                width = dependent on style.
   rightColumn: left  = midColumn.left + midColumn.width + 40px
                width = dependent on style.
   spanColumn:  (used in 3colWide): left as for midColumn. 
                Width is enough to span mid and right
*/

div#leftColumn { 	
	width: 145px; 
	left: 0px;
	text-align: left;
	height: 100%; /* required for correct rendering in IE6 */
} 

div#midColumn {	
	width: 241px; 
	left:  185px;
	height: 100%; /* required for correct rendering in IE6 */
}

div#rightColumn {	
	width: 453px; 
	left: 466px;
	height: 100%; /* required for correct rendering in IE6 */
}

