have you tried applying the style to the a instead of the image? e.g. .image a { }
what you've got (from looking at your site), is a div main, then an image div, then within the image div is the a tag and then the img tag. the a tag looks like it has no style associated with it, and the height and width is auto. this may be what is presenting an issue for your style.
see what happens if you do a margin-left:auto and margin-right:auto on the a tag instead of the img tag, since the a tag "surrounds" the img tag
Let me know, and I can help you further.