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;
}

.Button_Back {
	width: calc(100% - 20px);
	height: 40px;
	
	margin: 10px;
	
	background-color: #920001;	

	border-color: #920001;
	
	font-size: 20px;
	font-weight: bold;
	
	cursor: pointer;	
}

.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;
}

.Content {
	width: calc(100%-50px);	
	
	margin-left: 50px;
	margin-top: 10px;
	
	overflow-x: scroll;	
	overflow-y: visible;
	
	padding: 0;
}

#ScheduleTable {	
	border-spacing: 0;
	border-collapse: collapse;	
}

#ScheduleTable tr {
	margin: 0px;
	padding: 0px;
}

#ScheduleTable th {
	margin: 0px;
	padding: 0px;
}

#ScheduleTable td {
	margin: 0px;
	padding: 0px;
	
	border: 1px solid #808080;
}

.tdDaySeperator {	
	border-right: 3px solid black !important;
}


#ScheduleTable input {
	width: 50px;
	height: 30px;
	
	padding-left: 4px;
	
	background-color: #920001;
	
	border-width: 0px;	
}

#ScheduleTable .InputSaved {	
	color: white;
	background-color: #5B0F00;
	
	border-width: 0px;	
}

#ScheduleTable .InputBlocked {	
	color: white;
	background-color: #320800;
	
	border-width: 0px;	
}

.ScheduleTable_Header {
	padding-top: 10px;
	padding-bottom: 10px;
	
	background-color: #666666;
	color: white;
	
	border: 1px solid gray;
	
	border-left: 0px solid black !important;
	border-right: 1px solid black !important;
}

.ScheduleTable_Time {
	position: absolute;
	
	top: auto;
	left: 0;
	
	width: 50px;
	
	margin-top: -1px !important;
	
	padding-top: 8px !important;
	padding-bottom: 8px !important;
	
	background-color: #666666;	
	color: white;
	
	border: 1px solid gray;
}

@media (max-width:450px) { 
	.Heading_Top {
		font-size: 25px;
	}	
}

@media (max-width:375px) { 
	.Heading_Top {
		font-size: 20px;
	}	
}