/*###########################################################################################################*/
/* Allgemeine Styles */
/*###########################################################################################################*/

/*************************************************************************************************************/
/* Globaler Reset */
*
{
	margin: 0;
	padding: 0;
}

*,
*:before,
*:after 
{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box; 
}



/*************************************************************************************************************/
/* HTML und BODY */
html
{
	/* Scrolleiste immer anzeigen */
	overflow-y: scroll;	
}

html,
body
{
	font-size: 100%;
}

body
{
	position: relative;
	margin: 0;
	padding: 0;
	background: white;
	color: #222222;
	font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
	font-weight: normal;
	font-style: normal;
	line-height: 1;
	cursor: default;
}



/*************************************************************************************************************/
/* Position */
.left
{
	float: left !important;
}

.right
{
	float: right !important;
}

.hide 
{
	display: none; 
}