.reg_form_row{
	position:relative;
	overflow:hidden;
	width:100%;
	margin:5px 0px 0px 0px;
	min-height:10px;
	padding:0.5em 0em 0.5em 0em;
	line-height:20px;
}
.reg_form_row_left{
	position:relative;
	overflow:hidden;
	width:200px;
	line-height:30px;
	float:left;
	text-align:right;
	padding-right:1em;
	color:#444444;
}
.reg_form_row_right{
	position:relative;
	overflow:hidden;
	width:400px;
	min-height:10px;
	float:left;
}
.reg_form_row input{
	border:1px solid #cccccc;
	padding:0.4em;
	font-family:Arial,sans-serif;
	color:#555555;
	background-color:#FCFCFC;
	-moz-box-shadow:inset 0 0 5px #dfdfdf;
	-webkit-box-shadow:inset 0 0 5px #dfdfdf;
	box-shadow:inset 0 0 5px #dfdfdf;
}
.reg_form_row input[type=submit]{
	-moz-box-shadow:none;
	-webkit-box-shadow:none;
	box-shadow:none;
}
.reg_form_row textarea{
	border:1px solid #cccccc;
	padding:0.4em;
	font-family:Arial,sans-serif;
	color:#555555;
	background-color:#FCFCFC;
	-moz-box-shadow:inset 0 0 5px #dfdfdf;
	-webkit-box-shadow:inset 0 0 5px #dfdfdf;
	box-shadow:inset 0 0 5px #dfdfdf;
}
.reg_form_row select{
	border:1px solid #cccccc;
	background-color:#FCFCFC;
	padding:0.4em;
	font-family:Arial,sans-serif;
	color:#555555;
	-moz-box-shadow:inset 0 0 5px #dfdfdf;
	-webkit-box-shadow:inset 0 0 5px #dfdfdf;
	box-shadow:inset 0 0 5px #dfdfdf;
}
input#gobutton{
cursor:pointer; /*forces the cursor to change to a hand when the button is hovered*/
padding:5px 25px; /*add some padding to the inside of the button*/
background:#35b128; /*the colour of the button*/
border:1px solid #33842a; /*required or the default border for the browser will appear*/
/*give the button curved corners, alter the size as required*/
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
border-radius: 10px;
/*give the button a drop shadow*/
-webkit-box-shadow: 0 0 4px rgba(0,0,0, .75);
-moz-box-shadow: 0 0 4px rgba(0,0,0, .75);
box-shadow: 0 0 4px rgba(0,0,0, .75);
/*style the text*/
color:#f3f3f3;
font-size:1.1em;
}
/***NOW STYLE THE BUTTON'S HOVER AND FOCUS STATES***/
input#gobutton:hover, input#gobutton:focus{
background-color :#399630; /*make the background a little darker*/
/*reduce the drop shadow size to give a pushed button effect*/
-webkit-box-shadow: 0 0 1px rgba(0,0,0, .75);
-moz-box-shadow: 0 0 1px rgba(0,0,0, .75);
box-shadow: 0 0 1px rgba(0,0,0, .75);
}
