* {
/*Prevent padding to change width (100%) property */
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	-ms-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
	
	margin:0px;
	padding:0px;
	border-collapse:collapse;
	border-spacing:0px;
	border-width:0px;
	outline: 0;
}
:focus {
	outline: 0;
}
/*------------------------------------------------------------------------------------------------*/
html
{
	position			: absolute;
	width				: 100%;
	height				: 100%;

	min-width			: 320px;
	min-height			: 480px;
	overflow-x			: hidden;
/*---------------------------------*/
	-webkit-overflow-scrolling: touch;			/* !!! Damit in iOS die Site SMOOTH scrollt!!!*/
/*---------------------------------*/
}
body
{
	position			: absolute;
	width				: 100%;
	height				: 100%;
	background-color	: #bec8ce;
	overflow			:hidden;
}