body {
	font-family: "Liberation Serif","Times New Roman",serif;
	font-size: 16px;
	color: darkgreen;
}
p {
	color: darkgreen;
}
h3 {
	position: relative;
	top: -32px;
	height: 0px;
	text-align: center; 
	font-family: Infini,'Comic Sans MS',sans-serif;
	font-style: italic;
	font-size: 28px;
	color: white;
}
label {
	font-size: 14px;
}
legend {
	font-size: 16px;
}
a {
	color: teal;
}
a:hover {
	color: maroon;
}
input {
	font-family: "Liberation Sans",Arial,sans-serif;
	text-align: left;
	padding: 4px;
	font-size: 14px; 
	color: darkblue; 
	border: 1px solid darksalmon;
}
input[type="submit"],input[type="button"] {
	text-align: center;
	box-shadow: 2px 2px 3px tan; 
	border-radius: 5px;
	cursor: pointer;
}
fieldset {
	border: 1px solid darksalmon;
}
fieldset input[type="text"],input[type="email"],input[type="password"] {
	width: 400px;
}
legend {
	font-size: 16px;
}
.lbox {
	position: absolute;
	left: 2%;
	width: 43%; 
	top: 110px;
	height: 180px;
	border: 1px solid darksalmon;
	padding: 15px;
	box-shadow: 6px 6px 10px tan;
}
.rbox {
	position: absolute;
	left: 52%;
	width: 43%; 
	top: 110px;
	height: 180px;
	border: 1px solid darksalmon;
	padding: 15px;
	box-shadow: 6px 6px 10px tan;
}
.backbox {
	position: fixed;
	right: 2%;
	width: 43%;
	top: 110px;
	padding: 20px;
}
.homebox {
	position: absolute;
	left: 2%;
	width: 43%; 
	height: 100px;
	padding: 15px;
}
.header {
	position: absolute;
	left: 28%;
	width: 44%;
	top: 20px;
	height: 38px;
	padding: 2px;
	background-color: darksalmon;
	border-width: 5px;
	border-color: lightsalmon; 
	border-style: outset;
}
.footer {
	position: fixed;
	bottom: 1%;
	width: 98.5%;
	left: 0.5%;
	height: 35px; 
	border-width: 2px;
	background-color: lemonchiffon; 
	border-color: wheat; 
	border-style: inset;
}
.warn {
	font-size: 16px;
	font-weight: bold;
	color: red;
}
[data-title] {
	/*position: absolute;*/
}
[data-title]:after {
	content: attr(data-title);
	visibility: hidden;
	opacity: 0;
	z-index: 99999;
	position: absolute;
	padding: 1px 5px 2px 5px;
	font-size: 14px;
	color: darkgreen;
	background-color: beige;
	border: 1px solid darksalmon;
	border-radius: 5px;
	box-shadow: 6px 6px 10px tan;
	/*white-space: nowrap;*/
}
[data-title]:hover:after {
	visibility: visible;
	opacity: 1;
	transition: all 1s ease 1s;
}
