/* debug *
* {
   border: 1px solid red !important;
}*/

/* prevent long words expanding the container */
body {
	word-wrap: break-word;
}
/* keep imgs within container */
img {
	max-width: 100%;
	height: auto;
	width: auto;  /* for ie8 */
}
/* change to intuitive box model */
*, *:before, *:after {
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}