form {
	margin:0 auto;
	position:relative;
	width:50em;
	text-decoration: none;
	padding:10px;
}

div.formPanel {
	float:left;
	width:22em;
	padding:1em;
}

form P.note {
	font-style: italic;
	padding:0;
	margin:0;
	margin-top:4px;
}

textarea, input[type="text"], input[type="email"], select {
	display:block;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0.2em;
	font-family: inherit;
	font-size: 100%;
	width: 20em;
	border: 1px solid #66b;
	height: 2em;
	box-shadow: 2px 2px 2px rgba(0, 0, 120, 0.4);
}

textarea {
	height: 8em;
	resize: none;
}

input[type="checkbox"] {
    width: 24px;
    height: 24px;
    vertical-align: bottom;
}

label {
	line-height: 2.5em;
	font-weight: bold;
}

label.checkbox {
    vertical-align: top;
    line-height: 24px;
    margin: 2px 0;
    display: block;
    height: 24px;
}

input[type=submit] {
	font-family: inherit;
	font-size: 100%;
	border: 2px solid navy;
	padding: 0.3em;
	margin: 2em;
	background: white;
	width: 10em;
	border-radius: 5px;
	box-shadow: 2px 2px 2px rgba(0, 0, 120, 0.4);
}

div.submitPanel {	/* place the submit button in this for positioning */
	text-align: center;
}



input[type=submit]:hover {
	box-shadow: 0px 0px 15px rgba(0, 0, 200, 0.6);
}

input[type=submit]:active {
	color: white;
	background: navy;
	box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.6);
}

