@charset "UTF-8";
/* CSS Document - related to multicolumn.js */

/*Initial definitions for base column. 
   Define the (minimum) width here, and optionally a padding */
.columnized div {
	float: left;
	width: 180px;			/* When using a fixed number of columns, you can omit the width. Otherwise it must be set! This will be the *minimum* width of a column*/
	padding-left: 20px;			/* You may use a padding... but thanks to IE you can only use pixels! */
	/* position: relative; 	Needed when using a 'read-on'-text */
	text-align: justify;
	margin: 0;	 			/* Don't use a margin! */
}

/* Optional 'read on'-message. Not used in this example.
.columnized div .readOn {
	position: absolute;
	right: 1em;
	bottom: -0.5em;
	color: #999999;
}
 */