I believe the below css is considered css3 if not then, it's not but my question still applies to the code below.
DO you think the code below would hurt a users performance/rendering time or anything if it was used for an example on 50 different images on a page?
add curves and shadows
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
-moz-box-shadow: 0 1px 3px #999;
-webkit-box-shadow: 0 1px 3px #999;
and stuff like this
uses RGB colors
-moz-box-shadow: 0 1px 3px rgba(0,0,0,0.5);
-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.5);
text-shadow: 0 -1px 1px rgba(0,0,0,0.25);
border-bottom: 1px solid rgba(0,0,0,0.25);