html, body {
	height: 100%;
	margin: 0;
	padding: 0;
	color: #333333;
	font-family: Arial, Helvetica, sans-serif;
}
		  
.top {
	position: relative;
	z-index: 2;
}

#map {
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 1;
}

#toggles {
	float: left;
	top: 1rem;
	left: 1rem;
	width: 6rem;
	line-height: 1rem;
	box-shadow: 0.1rem 0.1rem 0.2rem #aaaaaa;
}
  
#geo {
	position: relative;
	top: 1rem;
	right: 1rem;
	float: right;
	text-align: right;
}


#result {
	top: 1rem;
	text-align: center;
	font-size: 1.3rem;
	display: table;
	margin: auto;
	background-color: rgba(255, 255, 255, 1);
	padding: 0.2rem;
	padding-bottom: 0.3rem;
	border-radius: 0.1rem;
	box-shadow: 0.1rem 0.1rem 0.2rem #aaaaaa;
}

.resultButton{
	background-color: white;
	color: #333333;
	border: 1px solid #cccccc;
	border-radius: 2px;
	padding-bottom: 0.2rem;
	padding-left: 0.1rem;
	padding-right: 0.1rem;
	cursor: pointer;
}

.clicked{
	background-color: #aaffaa;
}

.clicked:hover{
	background-color: #88cc88;
}

.unclicked:hover{
	background-color: #eeeeee;
}

.button{
	background-color: white;
	color: #333333;
	border: 1px solid #cccccc;
	border-radius: 2px;
	height: 1.5rem;
	width: 6rem;
}

.button:hover{
	background-color: #eeeeee;
	cursor: pointer;
}

.input{
	background-color: white;
	border-radius: 0.1rem;
	box-shadow: 0.1rem 0.1rem 0.2rem #aaaaaa;
	padding: 0.2rem;
	font-size: 1rem;
	color: #333333;
}

.input input[type=text]{
	width: 10rem;
	height: 1.5rem;
	font-size: 1rem;
	border: none;
	color: #333333;
}

#locationInput.input input[type=text]{
	width: calc(100% - 6.5rem);
	float: left;
	padding-left: 0.2rem;
}

#reverse.input input[type=text]{
	min-width: 22rem;
}

#repNumberToggle{
	margin-left: 2rem;
}
