/* Default CSS */
/* Generated by the CoffeeCup HTML Editor - www.coffeecup.com */
* {
	font-weight: bold;
	font-style: italic;
	font-family: Georgia, serif;
}
.map {
	background-color: lawngreen;
	border: 4px solid darkgreen;
	color: black;
	padding: 5px 5px;
	font-size: 25px;
	border-radius: 50px;
	width: 100px;
	height: 60px;
	transition-duration: 0.8s
}
.map:hover {
	background-color: darkgreen;
	color: navajowhite;
}
.submit {
	background-color: crimson;
	border: 4px solid maroon;
	color: black;
	padding: 5px 5px;
	border-radius: 50px;
    font-family: Georgia, serif;
    font-weight: bold;
	width: 190px;
	height: 60px;
	transition-duration: 0.8s
}
.submit:hover {
	background-color: darkred;
	color: navajowhite;
}
.blank {
	background-color: antiquewhite;
	border: 4px solid darkgreen;
	color: black;
	padding: 5px 5px;
	font-weight: bold;
     font-family: Georgia, serif;
    border-radius: 20px;
	width: 290px;
	height: 50px;
	transition-duration: 0.8s
}
.zoom {
	-webkit-animation: glowing 450ms infinite;
	-moz-animation: glowing 450ms infinite;
	-o-animation: glowing 450ms infinite;
	animation: glowing 450ms infinite;
	background: url('../pics/zoom2.png') no-repeat center center;
	color: black;
	padding: 0px 0px;
	border-radius: 50px;
	width: 190px;
	height: 100px;
}

.weather {
	background-color: transparent;
	color: black;
	padding: 2px 2px;
	border-radius: 20px;
	width: auto;
	height: auto;
}
</body>