/* http://mattwilcox.net/sandbox/edge-to-edge/edge-to-edge-alignment-fluid.html */
ul#articles {
	margin-left : -1.3%;
	overflow : hidden; 
	/* expand the ul around the floated li's (kind of like self-clearing) */ 
}
li.article {
	float : left;
	width : 32%; 
	margin : 0 0 0px 1.3%;
	min-width: 300px;
	overflow : hidden; 
}
/* Ugly IE6 hacks, normally in a Conditional Comment, but using * hack for brevity here */
* html ul#articles { 
	width : 101.3%; /* IE doesn't automatically get the width correct */
	height : 1%; /* force ul to expand around floated li's (IE doesn't do it with overflow) */ 
}
* html li.article {
	display : inline; /* fix IE6's double float margin bug */ 
}
.columns {  }
.w-20, .w-25, .w-30{ float: left;  }
.col-content { padding-right: 1%; }
.col-first { padding-left: 0!important; }
.col-last { padding-right: 0!important; }
.w-20 { width: 19%; }
.w-25 { width: 24%; }
.w-30 { width: 29%; }

