CSS rounded corners are still not fully supported by all browsers. I used CurvyCorners to render the rounded corners in browsers that do not support this feature yet.
code:
div.rounded {
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
border-radius: 10px;
}
example: