/* LIST PAGES */

.cms_results {
	
}

.cms_results article {
	padding: 16px;
	margin: 16px 0;
	border-bottom: 1px solid silver;
}

.cms_results .cms_thumbnail {
	float: left;
	width: 20%;
	box-sizing: border-box;
	margin: 3% 5% 0 0;
}
.cms_results .cms_thumbnail img {
	max-width: 100%;
}
.cms_results .cms_detail {
	float: left;
	width: 76%;
	box-sizing: border-box;
}
.cms_results .cms_detail h2 {
	margin-top: 0;
}

/* CMS SEARCH FILTER */

.cms_filters {
	background: #f6f6fa;
	padding: 4px;
	margin: 1em 0;
}
.cms_filters h2 {
	margin: 8px 8px;
}

.cms_filters.side {
	float: right;
	width: 30%;
	padding: 12px;
	margin-top: 0;
}
.cms_filters .form_item {
	margin: 4px;
	padding: 4px;
	width: 50%;
	max-width: 180px;
	float: left;
	min-height: 70px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.cms_filters .form_buttons,
.cms_filters .cms_filter_buttons {
	margin: 4px;
	padding: 4px;
	text-align: right;
	vertical-align: bottom;
	clear: both;
}
.cms_filters .form_buttons input.default,
.cms_filters .cms_filter_buttons input.default {
	background-color: purple;
}

.cms_filters .form_item > label {
	font-weight: bold;
	font-size: 0.8em;
}

.cms_filter select {
	max-width: 100%;
	width: 100%;
	color: #585B5D;
}
.cms_filter input.text {
	width: 100%;
	max-width: 100%;
	color: #585B5D;
}
.cms_filter input.find {
	width: 100%;
	max-width: 100%;
}
.cms_filter input {
	vertical-align: middle;
}
.cms_filter span {
	font-size: 10px;
}
.cms_filter a:hover {
	color: #C33;
}
.cms_filter input.set, .cms_filter select.set, .cms_filter span.set {
	color: orange;
	font-weight: bold;
}


/*******************************  Mobile Portrait (.mp) *******************************/

@media only screen and (max-width: 480px) {
	.cms_filter {
		width: 100%;
		max-width: 100%;
	}
	.cms_results .cms_thumbnail {
		width: 30%;
	}
	.cms_results .cms_detail {
		float: none;
		width: auto;
	}
	#block_editor_popup {
		margin: 20px 0px;
		padding: 3px 3px 10px 3px;
	}
} /* End *