    html, body {
      width: 100%;
      height: 100%;
      margin:0;
      padding:0;
	  }
.container {
    width: 950px;
    background-color : white;
    margin: 0 auto;
}

label { 
    display:block;
    margin:0px;
    width:220px;
    overflow:auto;
    font-family:sans-serif;
    font-size:20px;
    color:#444;
    text-shadow:0 0 2px #ddd;
    padding:10px 0px 10px 0;
}

input {
    float:right;
    width:200px;
    border:2px solid #dadada;
    border-radius:7px;
    font-size:20px;
    padding:5px;
    margin-top:-10px;    
}

input:focus { 
    outline:none;
    border-color:#9ecaed;
    box-shadow:0 0 10px #9ecaed;
}

/***FIRST STYLE THE BUTTON***/ 
input#gobutton{
 cursor:pointer; /*forces the cursor to change to a hand when the button is hovered*/ 
width:100px;
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);
 }
 
   a.leftColumnText {
	  text-decoration: none;
      font-family:sans-serif;
      font-size:14px;
	  color: #303030;
	  }
	  a.leftColumnText:hover {
  color: red ;
  text-decoration: underline;
      }
.leftColumnHeader { 
      font-family:sans-serif;
      font-size:20px;
	  color: #A60808;
}

.reviewPage { 
      font-family:sans-serif;
      font-size:14px;
	  color: #303030;
	  text-decoration: none;
}

.buybutton {
display: block;
width: 100px;
height: 18px;
background: #4E9CAF;
padding: 10px;
text-align: center;
border-radius: 5px;
font-family:sans-serif;
font-size:18px;
text-decoration: none;
color: #ffffff;}