this did the trick for me.
<div class="CenterImage">
<asp:Image ID="BrandImage" runat="server" />
</div>
'Note: do not have a css class assocaited to 'BrandImage' in this case
CSS:
.CenterImage {
position:absolute;
width:100%;
height:100%
}
.CenterImage img {
margin: 0 auto;
display: block;
}