/* VAT Calculator */
#tblvat input[type=text]{
  width:250px;
}
#tblvat span.operator{
  font-size:36px;
  color:#0BAE00;
  font-weight:bold;
}
#tblvat a.button{
  padding:10px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  border: solid 1px #ccc;
  float:left;
  margin-top:10px;
  margin-right:5px;
  text-decoration:none;
  cursor:pointer;
}
#tblvat a.add{
  color:#fff;
  background-color:green;
}
#tblvat a.remove{
  color:#fff;
  background-color:#930000;
}