[]
Conrad said: Nice one!

Lane, did you do the 3D effect yourself? Also, is it fairly easy to toggle the colours and still hold on to that effect? [/]
Yes, it is fairy easy to do using CSS. What I did for the bevels on the tdheader of this sheet was set the border-top and border-left to 2px solid with the color. If you just want to apply this effect to some cells you could use the following:
<br />.bevel { <br /> background-color: #cccccc; <br /> border-left: 2px solid #ffffff; <br /> border-top: 2px solid #ffffff; <br /> border-bottom: 1px solid #999999; <br /> border-right: 1px solid #999999; <br />} <br />
All you would have to do would be to change the colors. I recommend making the light border colors (top and left) about 2 or 3 hex values higher than the background, and the dark ones (bottom and right) to be 2 hex values lower than the background.