Dégradé de couleurs en CSS

Pour les bordures de ce site, j'utilise un dégradé de couleurs, partant d'un jaune sombre (#ffd600) jusqu'à un jeune clair (#df9e40).

Code CSS
Pour Firefox :
 background-image: -moz-linear-gradient(top, #df9e40, #ffd600);
Pour Safari & Chrome :
 background-image: -webkit-gradient(linear,left bottom,left top,color-stop(0, #ffd600),color-stop(1, #df9e40));
Pour IE6 & IE7 :
 filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#df9e40', endColorstr='#ffd600');
Pour IE8 :
 -ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#df9e40', endColorstr='#ffd600')";

Sources
Site en cours de réalisation...

Valid XHTML 1.0 Strict