Neither the -moz nor the -webski css styles are supported by IE.
See:
http://www.w3schools.com/cssref/css...shadow.asp The box-shadow property is supported in IE9+, Firefox 4, Chrome, Opera, and Safari 5.1.1.
Definition and Usage
The box-shadow property attaches one or more drop-shadows to the box.
Default value: none
Inherited: no
Version: CSS3
JavaScript syntax: object.style.boxShadow="10px 10px 5px #888888"
--------
If you need to support IE versions earlier than 9, you will have to google around for some ideas. See
http://hedgerwow.appspot.com/demo/shadow for an example.
You can put IE-specific styles in small corrective CSS files. If you look at the source for some of the skins supplied with DotNetNuke, you will see some conditional statements that do this.
ALso, make sure to use a doctype of XHTML 1.0 best cross-browser and cross-version capability. HTML 5 stuff doesn't work on older browsers. YOu can see about that here:
http://net.tutsplus.com/tutorials/h...-even-ie6/