.buttonwrapper{ /* Container you can use to surround a CSS button to clear float */
    overflow: hidden; /*See: http://www.quirksmode.org/css/clearing.html */
    width: 100%;
    padding-right: 60px;
    margin-right: 60px;
}

a.button-link{
  line-height: 30px;
  padding: 5px 5px;
  color:#F5F5F5; 
  font-weight: bold;
  background-color:#416C91; 
  border:1px solid;  
  height: 25px;
  font-size: 12px;
  text-align: center;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  text-decoration: none; /*remove the underline*/
  align: absmiddle;
  -webkit-box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5);
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5);
}

