/*
Welcome to Custom CSS!

CSS (Cascading Style Sheets) is a kind of code that tells the browser how
to render a web page. You may delete these comments and get started with
your customizations.

By default, your stylesheet will be loaded after the theme stylesheets,
which means that your rules can take precedence and override the theme CSS
rules. Just write here what you want to change, you don't need to copy all
your theme's stylesheet content.
*/
/*  BACKGROUND GRADIENT BELOW  */
/* Note: This gradient may render differently in browsers that don't support the unprefixed gradient syntax */
body.custom-background {
/* IE10 Consumer Preview */
	background-image: -ms-linear-gradient(top left,#FFFFFF 0%,#66A5F3 100%);
/* Mozilla Firefox */
	background-image: -moz-linear-gradient(top left,#FFFFFF 0%,#66A5F3 100%);
/* Opera */
	background-image: -o-linear-gradient(top left,#FFFFFF 0%,#66A5F3 100%);
/* Webkit (Safari/Chrome 10) */
	background-image: -webkit-gradient(linear,left top,right bottom,color-stop(0,#FFFFFF),color-stop(1,#66A5F3));
/* Webkit (Chrome 11+) */
	background-image: -webkit-linear-gradient(top left,#FFFFFF 0%,#66A5F3 100%);
/* W3C Markup, IE10 Release Preview */
	background-image: linear-gradient(to bottom right,#FFFFFF 0%,#66A5F3 100%);
}

/*
	CSS Migrated from Jetpack:
*/

/*
Welcome to Custom CSS!

CSS (Cascading Style Sheets) is a kind of code that tells the browser how
to render a web page. You may delete these comments and get started with
your customizations.

By default, your stylesheet will be loaded after the theme stylesheets,
which means that your rules can take precedence and override the theme CSS
rules. Just write here what you want to change, you don't need to copy all
your theme's stylesheet content.
*/
/*  BACKGROUND GRADIENT BELOW  */
/* Note: This gradient may render differently in browsers that don't support the unprefixed gradient syntax */
body.custom-background {
/* IE10 Consumer Preview */
	background-image: -ms-linear-gradient(bottom right,#FFFFFF 0%,#66A5F3 100%);
/* Mozilla Firefox */
	background-image: -moz-linear-gradient(bottom right,#FFFFFF 0%,#66A5F3 100%);
/* Opera */
	background-image: -o-linear-gradient(bottom right,#FFFFFF 0%,#66A5F3 100%);
/* Webkit (Safari/Chrome 10) */
	background-image: -webkit-gradient(linear,right bottom,left top,color-stop(0,#FFFFFF),color-stop(1,#66A5F3));
/* Webkit (Chrome 11+) */
	background-image: -webkit-linear-gradient(bottom right,#FFFFFF 0%,#66A5F3 100%);
/* W3C Markup, IE10 Release Preview */
	background-image: linear-gradient(to top left,#FFFFFF 0%,#66A5F3 100%);
}