/********* Begin styling the form ****************/


#content form{
	margin: 30px 30px 0 30px; /*Sets the margins on the form - bottom  is zero feel free to change as required*/
}


#content fieldset fieldset{
	width: 195px; /*Set the width of the fieldset that contains the form inputs*/
	padding: 0; /*zero the padding on the nested fieldset*/
	border: none; /*remove the borders*/
}

#content input{
	background-color: #C9EDED;/*Set the background colour of the form inputs*/
	color: #414F4B;/*Set the text colour*/
	border: 1px solid #4C5854;/*add a border around them*/
	margin: 0;/*Specifically set the width*/
	display: block;/*force the inputs to stack*/
}

#content textarea{
	background-color: #C9EDED;/*set the background colour*/
	color: #602050;/*set the text colour*/
	border: 1px solid #4C5854;/*set a margin on the right only*/
	height: 165px;/*specifically set a height for the textarea, tends to vary somewhat cross browser*/
	margin-top: 0;
	margin-right: 30px;
	margin-bottom: 0;
	margin-left: 0;
}

.labelfloat{
	float: right;/*float the textarea's label and the textarea within it*/
	padding-top: 20px;/*set a top padding to align it*/
}

#content label{
	color: #602050;/*set the label text colour*/
	font-size: 75%;/*set the label font size*/
	padding-top: 5px;/*set alittle padding on the top*/
	display: block;/*display it as a block level element*/
}

#content fieldset{
	margin: 0;/*zero off any existing margine*/
	border: none;/*remove the default borders*/
	padding: 5px 5px 20px 20px;/*give a little "air" inside the parent fieldset*/
	width: 450px;/*set a width against it*/
}


#content .button{
  background-color: #2F3F8E;/*changes the default background colour from the input styling*/
  color: #fff;/*changes the default colour from the input styling*/
  width: auto;/*changes the default width colour from the input styling*/
  margin-top: 20px;/*adds a little sapce between the bottom input and the buttons*/
  display: inline;/*allows the buttons to sit side by side by, over ruling the display: block; on the input selctor*/
}
.logo {
	margin-left: 20px;
}

#content .menu{
	background-color: #C9EDED;/*Set the background colour of the form inputs*/
	color: #414F4B;/*Set the text colour*/
	border: 1px solid #602050;/*add a border around them*/
	width: 145px;
}

.search_button{
	background-color: #2F3F8E;/*changes the default background colour from the input styling*/
	color: #fff;/*changes the default colour from the input styling*/
	width: auto;/*changes the default width colour from the input styling*/
	margin-top: 5px;/*adds a little sapce between the bottom input and the buttons*/
	display: inline;/*allows the buttons to sit side by side by, over ruling the display: block; on the input selctor*/
	float: right;
}

