html {
	overflow-y: scroll;
}
body {
	font-family : Verdana;
	margin: 0;
	padding: 0;
}
.content {
	margin: 20% auto 0 auto;
	text-align: center;
}
input[type=text] {
	width: 300px;
	font-size: 60px;
	font-family: Menlo, Arial;
	text-align: center;
	border: 3px solid #505050;
	border-radius: 6px;
	box-shadow: inset 0px 1px 4px rgba(0, 0, 0, 0.5), 0px 1px 4px rgba(0, 0, 0, 0.5);
	text-transform: uppercase;
}
.saved_colors {
	display: none;
}
.saved_colors > div {
	position: relative;
	display: block;
	width: 175px;
	height: 60px;
	margin: 25px auto;
	box-shadow: 0 3px 14px rgba(0, 0, 0, 0.9);
}
.hint {
	display: none;
	text-transform: uppercase;
	font-size: 18px;
	padding-top: 18px;
	color: #FFFFFF;
	text-shadow: 0 0 5px #000000, 0 0 10px #000000;
}
.saved_colors div:hover > .hint {
	display: block;
}
.delete_button {
	position: absolute;
	display: none;
	right: -8px;
	top: -8px;
	border: 2px solid #FFFFFF;
	background-color: #555555;
	border-radius: 10px;
	box-shadow: 0 1px 5px #000000;
	color: #FFFFFF;
	min-width: 16px;
	min-height: 16px;
	cursor: pointer;
	/*
	max-width: 10px;
	max-height: 10px;
	padding: 0 0 2px 1px;
	*/

}
.saved_colors div:hover .delete_button {
	display: inline-block;
}
.delete_button span {
	position: absolute;
	font-size: 13px;
	line-height: 10px;
	top: 1.4px;
	right: 3.5157px;


}