/************************
 * Note Plain Style
 ************************/

body {
	width: 100%;
	height: 100%;
	font-family: Arial, Helvetica, sans-serif;
	background: #ededed;
	padding: 30px;
	margin: 0;
}

#box {
	width: 500px;
	margin: auto;
	padding: 1em 1em 0 1em;
	background: white;
	border: 1px solid #d7d7d7;
}

#errors {
	max-height: 0;
	-webkit-transition: all 1.5s ease 0s;
	transition: all 1.5s ease 0s;
	overflow: auto;
}

#errors:target {
	max-height: 500px;
}
