Would you mind not screaming at volunteers? It only deters volunteers from assisting you.
Well you’re using the orange as a gradient;
#branding #access, #colophon #access-footer {
background: #222;
background: -moz-linear-gradient(#FF4800, #FF4800);
background: -o-linear-gradient(#FF4800, #FF4800);
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#FF4800), to(#FF4800));
background: -webkit-linear-gradient(#FF4800, #FF4800);
...
}
but keeping background: #222;
for fallback if gradients aren’t supported by browsers.
Do you see what’s going on here?