
/* LIGHT GLOW ON CENTER - for gradient look */
body:before { content: ""; position:fixed; z-index:-1; width:100%; height:100%; top:0; bottom:0; left:0; right:0; background-repeat:repeat; 
background:-moz-radial-gradient(center,ellipse cover,rgba(255,255,255,0.9) 0,rgba(255,255,255,0) 120%);
background:-webkit-gradient(radial,center center,0px,center center,100%,color-stop(0%,rgba(255,255,255,0.9)),color-stop(120%,rgba(255,255,255,0)));
background:-webkit-radial-gradient(center,ellipse cover,rgba(255,255,255,0.9) 0,rgba(255,255,255,0) 120%);
background:-o-radial-gradient(center,ellipse cover,rgba(255,255,255,0.9) 0,rgba(255,255,255,0) 120%);
background:-ms-radial-gradient(center,ellipse cover,rgba(255,255,255,0.9) 0,rgba(255,255,255,0) 120%);
background:radial-gradient(center,ellipse cover,rgba(255,255,255,0.9) 0,rgba(255,255,255,0) 120%); }