Nice update, thanks.
If anyone is interested I'm using this CSS to make a rounded border with a slight shadow, light yellow background and dark red text... Easily edited to your needs.
There are 3 properties needed for each rounded border (radius) and shadow... -moz is for firefox browser, -webkit is for chrome browser, and the other is for IE9 and standard web browsers.
Code:
color: darkred; background: lightyellow; border: 2px inset red; padding: 4px; margin: 2px; -moz-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px; moz-box-shadow:0 0 2px darkred; -webkit-box-shadow:0 0 2px darkred; box-shadow:0 0 2px darkred;