/* MEDIA FLOAT / MEDIA BLOCK  */

// [content] [content] side by side and allow for growth without wrapping
// CONTENT ALIGNED AT TOP
.media-content {
	// IE7
	.ie7 & {
		// styles here
	}
	// IE8
	.ie8 & {
		// styles here
	}
	// IE9
	.ie9 & {
		// styles here
	}
	// IE10
	.ie10 & {
		// styles here
	}
}

// [content] [content] side by side and allow for growth without wrapping
// CONTENT VERTICALLY ALIGNED CENTER BY DEFAULT
.media-block {
	// IE7
	.ie7 & {
		.media-cell {
			display: inline;
			float: left;
		}
	}
	// IE8
	.ie8 & {
		// styles here
	}
	// IE9
	.ie9 & {
		// styles here
	}
	// IE10
	.ie10 & {
		// styles here
	}
}
