
form p label {
	display:block;
	float:left;
	width: 12em;
	
}
div.center {   margin-left: auto;   margin-right: auto;  width: 47em;  }



body
{
background-color:#bacbe8;
}


h1 {font-family: tahoma, arial, verdana; font-size: 20pt }
h1 {color:#000066;}


h2 {font-family: tahoma, arial, verdana; font-size: 12pt }
h2 {color:cc0033;}

h3{color:99ff00;}

h4 {text-align: center; font-family: tahoma, arial, verdana; font-size: 11pt; font-weight: bold}



td {font-family: tahoma, arial, verdana; font-size: 11pt }
tr {text-align: center}

/***FIRST STYLE THE BUTTON***/ 
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:FFFFFF; /*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:060606;
font-size: .75em;
}
/***NOW STYLE THE BUTTON'S HOVER AND FOCUS STATES***/ 
input#gobutton:hover, input#gobutton:focus{
background-color :FFFFFF; /*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);
}

input#namespace{
/*style the text*/ 
color:060606;
font-size: .70em;


}