html {
	height:100%;
}
body {
	font-family:-apple-system, BlinkMacSystemFont, 
    "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", 
    "Fira Sans", "Droid Sans", "Helvetica Neue", 
    sans-serif;
    /* :( */
	margin:0;
	padding:70px 0 0 0;
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height:1.3em;
    overflow:auto;

}
h3 {
	margin:5px;
}
footer {
	margin:10px;
	font-size:13px;
}
*, *:before, *:after {
	box-sizing:border-box;
}
input[type=number]{
    width: 50px;
}
.header {
	z-index: 5;
	height:65px;
	position:fixed;
	width:100%;
	box-shadow:2px 0 4px rgba(0,0,0,.4);
	top:0;
	left:0;
}
.title {
	padding:0 10px;
	background-color: #009688;
	color:#FFF;
	height:70px;
	font-size:30px;
	line-height:70px;
	overflow:hidden;
}
.title img {
	display:inline;
	height:70px;padding:15px 5px;float:left;
}
.header .about-small-toggle {
	position:absolute;
	right:25px;
	top:20px;
	height:30px;
	width:30px;
	text-align:center;
	line-height:30px;
	font-size:20px;
	border-radius:50%;
	background-color: rgba(255,255,255,.2);
	color:#FFF;
	font-family:monospace;
	font-weight:800;
	cursor:pointer;
	transition: background-color .5s, box-shadow .5s;
	-webkit-transition: background-color .5s, box-shadow .5s;
}
.header .about-small-toggle:hover {
	background-color: rgba(255,255,255,.4);
	box-shadow: 1px 2px 3px rgba(0,0,0,.3);
}
.header .about-small-toggle.hidden {
	visibility: hidden;
}
.header .moreinfo {
	font-size:14px;
	line-height:1.3em;
	padding:5px;
	background-color: rgba(255,255,255,.9);
	overflow:auto;
	border-bottom:3px solid #009688;
	position:relative;
}
.header .moreinfo.hidden {
	height:0;
	padding:0;
}
.header .moreinfo .close {
	position:absolute;
	top:10px;
	right:10px;
	cursor:pointer;
	font-size:30px;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
	width:100%;
}
th {
	border-bottom:2px solid #000;
}
td {
	border-right:1px dotted #ccc;
	text-align: center;
	border-bottom: 1px solid #000;
}
td:last-child {
	border-right: none;
}
input {
	width:40px;
	border:2px solid #FC0;
}
.add-station {
	background-color: #eee;
	border-radius: 3px;
	display: inline-block;
	margin:5px 0;
	padding:3px;
}
.fbplink {
	font-size:14px;
	display:inline-block;
	background-color:#6A1B9A;
	color:#FFF;
	border-radius:3px;
	text-decoration: none;
	padding:2px;
	font-weight:600;
}