.MyGradientClass
{
background-image: linear-gradient(bottom, rgb(41,130,171) 38%, rgb(61,52,199) 74%, rgb(34,56,168) 87%);
background-image: -o-linear-gradient(bottom, rgb(41,130,171) 38%, rgb(61,52,199) 74%, rgb(34,56,168) 87%);
background-image: -moz-linear-gradient(bottom, rgb(41,130,171) 38%, rgb(61,52,199) 74%, rgb(34,56,168) 87%);
background-image: -webkit-linear-gradient(bottom, rgb(41,130,171) 38%, rgb(61,52,199) 74%, rgb(34,56,168) 87%);
background-image: -ms-linear-gradient(bottom, rgb(41,130,171) 38%, rgb(61,52,199) 74%, rgb(34,56,168) 87%);
background-size:4000px 3000px;
background-image: -webkit-gradient(
	linear,
	left bottom,
	left top,
	color-stop(0.38, rgb(41,130,171)),
	color-stop(0.74, rgb(61,52,199)),
	color-stop(0.87, rgb(34,56,168))
);
}