body {
	background-color: #f8f8f8;
	background-image: url(images/bg.png);
	background-repeat: repeat;
	margin: 0px;
	padding: 0px;
}


.logo {
	width: 100%;
	height: 200px;
	
	background-image: url(images/logo.png);
	background-position: center center;
	background-repeat: no-repeat;
}

.login-form {
	position: relative;
	width: 300px;
	margin-left: auto;
	margin-right: auto;
	padding: 0px 50px;
	
	background-image: url( images/login-mid.png );
	background-position: top center;
	background-repeat: repeat-y;

	overflow: visible;
}

	.login-top, .login-bottom {
		display: block;
		position: absolute;
		left: 0px;
		right: 0px;
		background-repeat: no-repeat;
	}

	.login-top {
		top: -37px;
		height: 37px;
		background-image: url( images/login-top.png );
		background-position: bottom center;
	}

	.login-bottom {
		bottom: -29px;
		height: 29px;
		background-image: url( images/login-bot.png );
		background-position: top center;
	}
	
	.login-message {
		text-align:center;
		color: #888;
		font: 12px courier;
		padding: 0px 0px 20px 0px;
	}

	label {
		color: #777;
		font-family: sans-serif;
		font-size: 14px;
		cursor: pointer;
	}

	input.input {
		width: 290px;
		margin-top: 2px;
		margin-right: 6px;
		margin-bottom: 16px;
		padding: 5px;
		
		border: 1px solid #E5E5E5;
		outline: none;
		
		-webkit-box-shadow: inset 1px 1px 2px rgba(200,200,200,0.2);
		   -moz-box-shadow: inset 1px 1px 2px rgba(200,200,200,0.2);
		    -ms-box-shadow: inset 1px 1px 2px rgba(200,200,200,0.2);
			 -o-box-shadow: inset 1px 1px 2px rgba(200,200,200,0.2);
		        box-shadow: inset 1px 1px 2px rgba(200,200,200,0.2);
		
		background: #FBFBFB;
		
		font-size: 24px;
		font-weight: 200;
		line-height: 1;
	}

	input.input:hover, input.input:focus {
		border-color: #b5b5b5;
		
		-webkit-box-shadow: inset 1px 1px 3px rgba(200,200,200,0.8);
		   -moz-box-shadow: inset 1px 1px 3px rgba(200,200,200,0.8);
		    -ms-box-shadow: inset 1px 1px 3px rgba(200,200,200,0.8);
			 -o-box-shadow: inset 1px 1px 3px rgba(200,200,200,0.8);
		        box-shadow: inset 1px 1px 3px rgba(200,200,200,0.8);
	}

	input.input:focus {
		border-color: #4D90F0;
	}

.notice {
	display: none;
	position: absolute;
	top:0px;
	left: 0px;
	right: 0px;
	height: 50px;
	background: white;
	line-height: 50px;
	font-size: 23px;
	text-align: center;
	padding-bottom: 4px;
	margin-top: -10px;
	margin-left: -10px;
	margin-right: -10px;
	padding-top: 10px;
	
	-webkit-box-shadow: inset 0px 0px 9px rgba(0,0,0,0.5);
	   -moz-box-shadow: inset 0px 0px 9px rgba(0,0,0,0.5);
	    -ms-box-shadow: inset 0px 0px 9px rgba(0,0,0,0.5);
		 -o-box-shadow: inset 0px 0px 9px rgba(0,0,0,0.5);
	        box-shadow: inset 0px 0px 9px rgba(0,0,0,0.5);
	color: #666;
}

.notice.error {
	background: #ff1c00;
	color: white;
	text-shadow: 0px -1px 0px black;
}

.loggedout .logout-message {
	display: block;
}

.incorrect_credentials .incorrect-credentials {
	display: block;
}