diff --git a/themes/default/style.css b/themes/default/style.css
index 487455e3..6028dd46 100644
--- a/themes/default/style.css
+++ b/themes/default/style.css
@@ -32,10 +32,11 @@ H3 {
 .brr, .hrr, H1, #footer, .thumb {
 	margin: 8px;
 	padding: 8px;
-	-webkit-border-radius: 12px;
-	-moz-border-radius: 12px;
-	-webkit-box-shadow: 2px 2px 6px rgba(0,0,0,0.6);
-	-moz-box-shadow: 2px 2px 6px rgba(0,0,0,0.6);
+	border-radius: 12px; /* standard, webkit, opera */
+	-moz-border-radius: 12px; /* mozilla haven't committed yet */
+	box-shadow: 2px 2px 6px rgba(0,0,0,0.6); /* standard, opera */
+	-webkit-box-shadow: 2px 2px 6px rgba(0,0,0,0.6); /* webkit haven't committed yet */
+	-moz-box-shadow: 2px 2px 6px rgba(0,0,0,0.6); /* mozilla haven't committed yet */
 }
 THEAD {
 	font-weight: bold;