body
{
  position: relative; 
  padding: 0;
  background: #FFFFFF;
  margin-right: 0;
  margin-top: 0;
}

p,ul,ol,li,dl,dt,dd,td,div
{
  font-size: 12px;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  color: #663300;
  text-align: justify;
}

img
{
  border: none;
  max-width: 70%;
}

div.centre, p.centre
{
  text-align: center;
}

div#pagemain
{
  margin-left: 10%;
  margin-right: 10%;
}

div#pagemain a, div#pagemain a:link, div#pagemain a:visited, div#pagemain a:active
{
  text-decoration: none;
  color: #663300;
}

div#pagemain a:hover
{
  text-decoration: underline;
}



div.datablock
{
  border-top-right-radius: 0px;
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
  border-style:none;
  border-color: #2E2EFE;
  background: #A9D0F5;
  margin-bottom:10px;
  margin-left:50%;
  transform: translate(-50%,0);
  padding-top: 10px;
  padding-left: 5px;
  max-width: 80%;
  min-height: 100px;
  width: 300px;

}


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);
}

div.datablock a, div.datablock a:hover
{
  color: #663300;
  font-size: 13px;
  font-weight: bold;
  text-decoration: underline;
}

table {
  margin-left: auto;
  margin-right: auto;
}

tr:hover
{
	background-color:#58D3F7;
}