/* Thai Breaking CSS */

/* Description:

v3 fluid wrapping.

The width for medium viewport is different from v2. Changed from 1024px to 1068px.
Initial ticket: <rdar://problem/19792591> DEV: Photos for Mac - TH - New page

All break tags with the class 'thbr' will be disabled. 
They can then be selectively enabled based on the below 
css rules, generally specific to device.

*/

br.thbr {display: none;}

/* Fluid Line Wrapping */

/* enable breaks for xlarge layout */
@media only screen and (min-width: 1442px) {
	br.thbr.xlarge { display: inline; }
}

/* enable breaks for large layout */
@media only screen and (max-width: 1441px) and (min-width: 1069px) {
	br.thbr.large { display: inline; }
}

/* enable breaks for medium layout */
@media only screen and (max-width: 1068px) {
	br.thbr.med { display: inline; }
}

/* disable all breaks for small layout */
@media only screen and (max-width: 735px) and (max-device-width: 768px) {
	br.thbr { display: none !important; }
}

/* enable breaks for old IE7&8 */
html.oldie br.thbr.ie { display: inline; }
