#content{
	padding-left: 3.5em;
	}

form#membership {
	margin: 2em 3%;
}
h1 {
	display:block;
	font-family:"Comic Sans MS", cursive;
	font-size:3em;
	padding: .5em;
	margin: .5em;
	color: #036;
	
	
	}

fieldset {
	background-color: #09F;	
	border-radius: .8em;
	border: #292827 solid 2px;
	width: 550px;
	padding: 1em;
	margin-top: 1em;
	
}

legend {
	color: #fffcf2;
	margin-left: 6%;
	padding: .5em;
	border: #292827 solid 1px;
	background-color: #039;
	border-radius: .4em;
}

/*this is the user instructions for each input. name,, address, email etc. */
label {
	display:block; /* forces a hard return and allows margin to be assigned*/
	margin: .5em;
	
}

label span {
	display:block;
	font-size:.8em;
	color: #292827;
	padding-top: 1em;
	padding-bottom: .5em;
}

/*where the user enters their information*/
label input {
		background-color: #fffcf2;
		color: #917a56;
		background-position:4px -11px; /*shows the grey box*/
		background-repeat: no-repeat;
		padding:.4em .4em .3em 2em;
		border: solid 1px #b0aaa0;
		border-radius: 5px;
		font-size:.9em;
		width: 60%;
		max-width: 500px;
}

/*The input that currently has the focus*/
input:focus {
	box-shadow: 1px 1px 4px rgba(0,0,0,0.5) inset;	
}

/*identifies all required fields*/
input:required {
	background-position:4px -61px; 
}

/*Validation*/
input:focus:invalid {
  background-position:4px -111px; 
}

/*Valid*/
input:required:valid {
  background-color: #fff;
  background-position: 4px -161px; 
}
.radio, .pressure {
	padding: 2px;
}

.submitBtn {
	color: #fff;
	border: solid 1px #111;
	border-radius:7px;
	width: 30%;
	margin:.5em 0;
	font-size: 1em;
	padding: .6em;
	background: #039;
	box-shadow: 4px 4px 10px #666;
}
