#singlepanel{
	float: left;
	width: 100%;	
	min-height: 300px;
	background-color: #FFF;
	padding: 15px;
}

/* box around login form, black border and background color */
#loginform{
	float: right;
	width: 215px;
	background-color: #dedeff;
	padding: 10px;
	border: 1px solid #304684;
}

/* form fields */
input{
	width: 210px;
	font-size: 1.2em;
	background-color: #FFFFFF;
	border: 1px solid #444444;
	margin-bottom: 5px;
}

/* login button container */
.buttoncontainer{
	text-align: right;
	margin-top: 10px;
	margin-right: 3px;
}

/* button style */
.button{
	background-color: #4b8cc8;
	border: 1px solid #304684;
	font-size: .85em;
	font-weight: bold;
	text-decoration: none;
	color: white;
	padding-top: 3px;
	padding-bottom: 3px;
	padding-left: 3px;
	padding-right: 3px;
}

/* button hover effect */
.button:hover{
	text-decoration: none;
	color: #ffb040;
}

/* field labels */
label{
	font-size: .85em;
	color: #888;
}

.bigbutton{
	background-color: #4b8cc8;
	border: 1px solid #304684;
	font-size: 1.3em;
	font-weight: bold;
	text-decoration: none;
	color: white;
	padding-top: 3px;
	padding-bottom: 3px;
	padding-left: 8px;
	padding-right: 10px;
	
}


.registerbutton{
	margin-top: 15px;

}


#registerform{
	width: 400px;
	
}

#message{
	width: 680px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 15px;
	padding-top: 5px;
	padding-bottom: 3px;
	padding-left: 10px;
	padding-right: 10px;

}

#message UL{
 	list-style-type: none;
	
	
}

#message UL.notice LI{
	background-image: url('/assets/images/check.png');
	background-repeat: no-repeat;
	height: 1.5em;
	padding-left: 2em;
	
}

#message UL.error LI{
	background-image: url('/assets/images/x.png');
	background-repeat: no-repeat;
	height: 1.5em;
	padding-left: 2em;
}

#message.error{
	background-color: #feae9b;
}

#message.notice{
	background-color: #d2ffd4;
}

#message.none{

	display: none;
}


.bigbutton:hover{
	text-decoration: none;
	color: #ffb040;
}