
/* Labels are titles for the text fields. You can use a placeholder instead if you like*/
label 
{
    display:block;
    margin-top:10px;
    letter-spacing:2px;
}

/* Centres the form within the page */
form 
{
    margin:0;
    width:95%;
}

/* Styles the text boxes */
input, textarea, file {

	background-color:#fff;
	border:1px solid #000;
	padding:10px;
	margin-top:2px;
	font-size:1.2em;
	color:#222;
}
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #000;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #000;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #000;
}
:-moz-placeholder { /* Firefox 18- */
  color: #000;
}
::-moz-placeholder {
  opacity: 1;
}
	input:focus, textarea:focus {
		border:1px solid #97d6eb;
	}
#radio p {
	width: 25%;
	height: 2em;
	display: inline-block;
	padding: 0;
	margin: 0;
	position: relative;
	top: -8px;
	
}

#radio>p {
	top: 5px;
}

#radio input {
	width: 4em;
	height: 4em;
	display: inline;

}


/* Styles the text area boxes (message field) */	
textarea 
{
	height:213px;
	background-color: #fff;
}


/* Styles the submit button */
#submit {
	/* background:url(images/submit.png); */
	width:25%;
	text-align: center;
	/* text-indent:-9999px; */
	border:none;
	margin-top:20px;
	cursor:pointer;
	color: #FFF;
}


/* Styles the cancel button*/	
#cancel {
	/* background:url(images/cancel.png); */
	width:25%;
	text-align: center;
	/* text-indent:-9999px; */
	border:none;
	margin-top:20px;
	cursor:pointer;
		color: #FFF;
}

