.centerdiv{ /*IE method of centering a relative div*/
text-align: center;
width:590px;
height:320px;
float:left;
}


.centerdiv>div{ /*Proper way to center a relative div*/
margin: 0 auto;
}


.rightdiv{
width:160px;
height:320px;
float:right;
}