html, 
body {
	height: 100%;
	width: 100%;
	
	min-width: 350px;
	
	margin: 0px;
	
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;

	-ms-touch-action: pan-y;
	touch-action: pan-y;

	-webkit-tap-highlight-color: transparent;

	font-family: 'Open Sans', sans-serif !important;
	font-size: 14px;
	
	background-color: #455A64;
}

img, a {	
	user-drag: none; 
	user-select: none;
	-moz-user-select: none;
	-webkit-user-drag: none;
	-webkit-user-select: none;
	-ms-user-select: none;
}

.Heading {
	width: 100%;
	height: 60px;
	
	padding-top: 20px;
	
	text-align: center;

	background-repeat: no-repeat;
	background-position: 10px center;
	background-size: auto 100%;
	
	background-image: url("Resources/Logo.png");
}

.Heading_Top {
	font-size: 30px;
	font-weight: bold;
}

.Heading_Bottom {
	font-size: 12px;
}

.WeekSelector {
	margin: 10px;
}

.WeekSelector_Entry {		
	width: calc(100%);
	height: 50px;
	
	margin-bottom: 10px;
	
	background-color: #920001;	

	border-color: #920001;
	
	font-size: 20px;
	
	cursor: pointer;
}

.WeekSelector_Entry_Relative {	
	font-weight: bold;
}

.WeekSelector_Entry_CW {
	
}

.WeekSelector_Seperator {
	width: calc(100% - 10px);
	height: 10px;
	
	margin-bottom: 10px;
	
	background-color: black;
}

@media (max-width:375px) { 
	.Heading_Top {
		font-size: 25px;
	}	
}