<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Flexible Column Layout */
.dp_grid {
	display: block;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	zoom: 1;
	margin-bottom: 20px;
}

.dp_grid:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.dp_grid &gt; * {
	display: block;
	-ms-flex: 0 1 auto;
	float: left;
	box-sizing: border-box;
}

.dp_grid &gt; *:first-child {
	clear: both;
}

.mceContentBody .dp_grid &gt; * {
	outline: 1px dotted #E0E0E0;
}

.dp_grid &gt; * &gt; *:last-child {
	/*margin-bottom: 0px;*/
}

.dp_grid &gt; .unit-1-4 {
	width: 25%;
	*width: 20.5%; /* IE7 :( */
}

.dp_grid &gt; .unit-2-4,
.dp_grid &gt; .unit-1-2 {
	width: 50%;
	*width: 45.5%; /* IE7 :( */
}

.dp_grid &gt; .unit-1-3 {
	width: 33.33%;
	*width: 29.2%; /* IE7 :( */
}

.dp_grid &gt; .unit-2-3 {
	width: 66.66%;
	*width: 62.5%; /* IE7 :( */
}

.dp_grid &gt; .unit-3-4 {
	width: 75%;
}

.dp_grid &gt; .unit-3-3,
.dp_grid &gt; .unit-4-4,
.dp_grid &gt; .unit-1-1,
.dp_grid &gt; .unit-1 {
	width: 100%;
}</pre></body></html>