/* specialty adjustment - drop off right col on 3 col pages */
/* assumes right col has nothing in it that mobile needs to see */
/* gives more space for page body until all collapse at 700*/
/* used for accessories - and for new products */
/* col is made skinny, otherwise ehc interferes */

@media only screen and (min-width: 0px) and (max-width: 900px) {
.sidebar2 {
	width: 1% !important;
}
.sidebar2 .content {
	visibility: hidden;
	display: none;
}
.main-content {
	width: 77% !important;
	left: 21%;
}
.sidebar1 {
	width: 21% !important;
	left: -77% !important;
}
}