Imagens redondas CSS

Maravilhoso e doce, aqui está como implementei cantos arredondados em uma imagem.

/* CSS round images with support for Safari and Firefox */
img
{
-o-border-radius:90px;
-moz-border-radius:90px;
-webkit-border-radius:90px;
border
-radius:90px;

/* Because border-radius and border style will cause a cut-off,
use box-shadow with inset declared */

-webkit-box-shadow: 0px 0px 0px 5px #FFFFFF;
}

/* specific style for FireFox */
@-moz-document url-prefix() {
img
{
border
: 5px solid #FFFFFF;
}
}