@import "buttons.css";
@import "form.css";
@-webkit-keyframes in {
	0% { top: -580px }
	65% { top: -580px }
	100% { top: 80px }
}
@-moz-keyframes in {
	0% { top: -580px }
	65% { top: -580px }
	100% { top: 80px }
}
.loading {
	width: 500px;
	margin: 0 auto;
	text-align: center;
	top: 145px;
	position: relative;
	z-index: 1
}
.loginContainer form p {
	padding: 10px 10px;
	background-color: red;
	font-family: sans-serif;
	color: white;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 13px;
	/*
position: fixed;
	top: 0px;
	left: 0;
*/
	margin: 0px;
	width: 100%;
}
.loginContainer {
	width: 500px;
	margin: 0 auto;
	text-align: center;
	top: 80px;
	position: relative;
	-webkit-animation-name: in;
	-webkit-animation-duration: 2s;
	-webkit-animation-timing-function: ease-in;
	-moz-animation-name: in;
	-moz-animation-duration: 2s;
	-moz-animation-timing-function: ease-in;
	background-color:white;
	z-index:100
}
input[type="button"], input[type="submit"] {
	-moz-box-shadow:inset 0px 1px 0px 0px #ffffff;
	-webkit-box-shadow:inset 0px 1px 0px 0px #ffffff;
	box-shadow:inset 0px 1px 0px 0px #ffffff;
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #ededed), color-stop(1, #dfdfdf) );
	background:-moz-linear-gradient( center top, #ededed 5%, #dfdfdf 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed', endColorstr='#dfdfdf');
	background-color:#ededed;
	-moz-border-radius:2px;
	-webkit-border-radius:2px;
	border-radius:2px;
	border:1px solid #dcdcdc;
	display:inline-block;
	color:#555555;
	font-family:'Helvetica Neue', arial,sans-serif;
	font-weight:bold;
	font-size:11px;
	padding:10px 26px;
	text-decoration:none;
	text-transform: uppercase;
	text-shadow:1px 1px 0px #ffffff;
	}
input[type="button"]:hover, input[type="submit"]:hover {
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #dfdfdf), color-stop(1, #ededed) );
	background:-moz-linear-gradient( center top, #dfdfdf 5%, #ededed 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#dfdfdf', endColorstr='#ededed');
	background-color:#dfdfdf;
	opacity: 1
}
.button:active {
	position:relative;
	top:1px;
}