/*----------------------------------------------------------------------------------------------------*\
	S E T T I N G S

		zoom
		reset layout
		reset typography
\*----------------------------------------------------------------------------------------------------*/





/*----------------------------------------------------------------------------------------------------*\
	zoom
\*----------------------------------------------------------------------------------------------------*/


html {
	font-size: 100%; /* this sets the size em (when 100%: 1em = 16px, when 93.75%: 1em = 15px, when 87.5%: 1em = 14px, font-size-default is 1em) */
/* 	line-height: 1.5em; */ 
	line-height: 1.25em; /* set line-height to factor 1.5 */
	}


html { -webkit-text-size-adjust: 100%; } /* iOS - prevent font scaling in landscape while allowing user zoom */





/*----------------------------------------------------------------------------------------------------*\
	reset layout
\*----------------------------------------------------------------------------------------------------*/


html, 
body {
	margin: 0;
	padding: 0;
	height: 100%;
	width: 100%;
	}


*, 
*:after, 
*:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	}





/*----------------------------------------------------------------------------------------------------*\
	reset typography
\*----------------------------------------------------------------------------------------------------*/


a { text-decoration: none; }
a { outline: none; } /* specifically for firefox to remove dotted lines from links */
a img { border: none; }


ul { list-style: none; }





/*----------------------------------------------------------------------------------------------------*\
	misc
\*----------------------------------------------------------------------------------------------------*/
.screen-reader-text {
	display: none;
}





