@charset "utf-8";
/* CSS Document */

#gradientBg1 {
/* Note: This gradient may render differently in browsers that don't support the unprefixed gradient syntax */

/* IE10 Consumer Preview */ 
background-image: -ms-linear-gradient(top left, #93B84E 0%, #232812 100%);

/* Mozilla Firefox */ 
background-image: -moz-linear-gradient(top left, #93B84E 0%, #232812 100%);

/* Opera */ 
background-image: -o-linear-gradient(top left, #93B84E 0%, #232812 100%);

/* Webkit (Safari/Chrome 10) */ 
background-image: -webkit-gradient(linear, left top, right bottom, color-stop(0, #93B84E), color-stop(1, #232812));

/* Webkit (Chrome 11+) */ 
background-image: -webkit-linear-gradient(top left, #93B84E 0%, #232812 100%);

/* W3C Markup, IE10 Release Preview */ 
background-image: linear-gradient(to bottom right, #93B84E 0%, #232812 100%);
}