Center and adjust width of sidebar

Example page - http://terrywestbuilders.com/?page_id=42

Anyone know how to center that widget and/or adjust the width of the sidebar?

One option would be (line 956f):

.widget-wrapper {
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
background-color: #F9F9F9;
border: 1px solid #E5E5E5;
border-radius: 4px;
margin: 0 0 20px;
padding: 20px;
[COLOR="#FF0000"]width: 200px;
float: right;[/COLOR]
}

Wait, that aligned it, but also the footer. I had to remove the code. I just want to change the sidebar content and your changes were made on the widget-wrapper. Suggestions for just the default template sidebar that I am using on those pages?

Oops. You could try this instead:

#facebook_widget-2{
width: 200px;
float: right;
}

There we go. Thank you.