/* MULTI-COLUMN LIST

*** NOTES ***
[2005-09-20 bsweeney]
Please refer to the accompanying manual for information about how to implement.
*/

.mclList, .mclList * {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.mclList, .mclList img {
	box-sizing: content-box;
	-moz-box-sizing: content-box;
}

.mclList {
	width: 99%;
	margin: 0em;
	padding: 0em;
	display: block;
	list-style-type: none;
}

.mclList li {
	width: 100%;
	margin: 0em;
	padding: 0em;
	display: block;
	list-style-type: none;
}

