/**
 * Utility Classes
 * ========================================================
 */


/************* Misc *************/

.chromeframe {
	padding: 0.5em;
	text-align: center;
	border: solid 3px #F00;
	background: #fff;
	color: #f00;
	font-weight: bold;
	margin: 0;
}
#page-wrapper .flush { .flush(); }


/************* Displays *************/

.hide { display: none; }
.forcehide { display: none !important; }
.border-box {
	display: block;
	.box-sizing(border-box)
}


/************* Image replacement *************/

.hide-text { .hide-text(); }


/************* Table *************/

.table {
	.table();
	margin: 0;
	&.table-fixed { table-layout: fixed; }
}
.table-cell { .table-cell(); }
.table-cell-mid { .table-cell-mid(); }
@media only screen and (max-width: @breakPoint) {
	.table, .table-cell, .table-cell-mid { display: block; }
}


/************* Floats *************/

.fleft { float: left; }
.fright { float: right; }
.fclear, .clear, .clearfix { .clearfix(); }


/************* Accessibility: Assistive Text *************/
/* for screen readers and text browsers */

.screen-reader-text {
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	/* IE6, IE7 */
	clip: rect(1px, 1px, 1px, 1px);
}
.screen-reader-text:active, .screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}