#gradient {
border: 1px solid #444;
background-color: #CCC;
background-image:
-moz-linear-gradient(
center top,
rgb(255,255,255) 0%,
rgb(200,200,200) 30%,
rgb(150,150,150) 70%,
rgb(50,50,50) 100%
);
background-image:
-webkit-gradient(
linear,
left top,
left bottom,
color-stop(0, rgb(255,255,255)),
color-stop(0.3, rgb(200,200,200)),
color-stop(0.7, rgb(150,150,150)),
color-stop(1, rgb(50,50,50))
);
}