/* CSS Document */
/**
 * @purpose     Standard Set One - Columnar Layouts and the float well police
 * @filename 	columns.css
 * @author		Slipcase Media, LLC
 * @date		12-26-2005
 * @url			http://slipcasemedia.com/   
 */

.rowcontainer {			/* Used to keep the divs in a row.  you can use this for any size of divs */
	float:left;
	margin: 0px 0px 5px 0px;
	width: 99.5%;
	/*overflow: hidden;*/
	background: transparent;
	margin-bottom:10px;
}


.fullcolumn { float: left; width: 99%;}		/* Full width column for a one column site */
			
.halfcolumn {float: left; width: 48%;}		/* Half width column for a two column site. */

.onethirdcolumn { float: left; width: 32%; }		/* One third width column for a three column site */

.quartercolumn { float: left; width: 24% }		/* One quarter width column for a four column site */

.onefifthcolumn {float: left; width: 19% }      /* One fifth width column for the obvious by now */

