/* CSS Document */

.timetable {
display:block;
width:100%;
border:1px solid #c6c6c6;	
-webkit-box-sizing:border-box;
-moz-box-sizing:border-box;
-ms-box-sizing:border-box;
box-sizing:border-box;
}

	.timetable .column {
	float:left;
	display:block;
	width:16.66666%;
	line-height:48px;
	text-align:center;
	border-left:1px solid #c6c6c6;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	-ms-box-sizing:border-box;
	box-sizing:border-box;	
	}
		.timetable .column:nth-child(6n+1) {border-left:none;}
		
		.timetable .header {border-bottom:1px solid #c6c6c6;}
			.timetable .header h4 {
			font-weight:400;
			color:#333;	
			font-size:18px;
			line-height:2;
			}
		
		.timetable .row {
		border-bottom:1px solid #c6c6c6;	
		color:#fff;
		line-height:1.4;
		padding:14px 0;
		-webkit-box-sizing:border-box;
		-moz-box-sizing:border-box;
		-ms-box-sizing:border-box;
		box-sizing:border-box;
		}
		
		.timetable .row:last-child {border-bottom:none;}
		
		

@media screen and (max-width:850px) {
	
	.timetable {
	border:none;
	}
	
		.timetable .column {
		width:100%;
		margin-bottom:24px;
		text-align:left;
		border:none;	
		}
		
			.timetable .header {
			border-bottom:none;
			padding:0 20px;	
			}
			
				.timetable .header h4 {
				font-weight:600;
				font-size:24px;
				}
				
			.timetable .row {
			border-bottom:none;
			padding:14px 20px;	
			}
			
				.timetable .row.blankspacer {display:none;}

}

