* {
	margin: 0;
	padding: 0;
}

body {
	font-family: Verdana, Arial, sans-serif;
	font-size: 12px;
	background-color: #fff4de;
	color: gray;
}

input[type="text"], input[type="password"] {
	height: 20px;
	width: 250px;
	padding: 0 2px 0;
	border: 2px solid silver;
	border-radius: 2px;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	color: silver;
}

input[type="password"] {
	margin-top: 2px;
}

input[type="text"]:focus, input[type="password"]:focus {
	border: 2px solid gray;
	color: gray;
	-webkit-box-shadow: silver 0 0px 5px;
	-moz-box-shadow: silver 0 0px 5px;
	box-shadow: silver 0 0px 5px;
}

input[type="submit"] {
	margin: 5px 0 0 12px;
	padding-bottom: 2px;
	height: 23px;
	width: 105px;
	background-color: #e5b78f;
	border: 0px solid silver;
	border-radius: 2px;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	color: gray;
}

input[type="submit"]:hover {
	-webkit-box-shadow: silver 0 0px 5px;
	-moz-box-shadow: silver 0 0px 5px;
	box-shadow: silver 0 0px 5px;
}
	
#login-box a {
	color: #ABABAB;
	text-decoration: none;
}

#login-box a:hover {
	color: #79AB04;
	text-decoration: none;
	cursor: default;
}

.copyright {
	text-align: center;
}