Saludos!!
 
Cambia esto:    
Código CSS:
Ver original- #boton { 
- background:url(images/button.png);  
- color:#FFFFFF;  
- width:110px;  
- height:40px;  
- text-decoration:none;  
- text-align:center;  
- background-repeat:no-repeat;  
- display:block;  
- padding-top:10px; 
- } 
Por esto:   
Código CSS:
Ver original- #boton { 
- background:url(images/button.png);  
- color:#FFFFFF;  
- width:110px;  
- height:40px;  
- text-decoration:none;  
- text-align:center;  
- background-repeat:no-repeat;  
- display:inline;  
- padding-top:10px; 
- float: left; 
- } 
Lo que hice, fue cambiar el display: block por display: inline; y agregue un float: left; para que se alinearan.  
Espero te sirva, Hasta Luego!! 
