.grd1 {
	background:whitesmoke;	/* default */
	background:-moz-linear-gradient(top, #0869a3, #0869a3 35%, #39a1df);	/* Firefox */
	background:-webkit-gradient(linear, left top, left bottom, from(#0869a3), color-stop(0.35, #0869a3), to(#39a1df));	/* iPhone, Android */
}

.grd2 {
	background:whitesmoke;
	background:-moz-linear-gradient(top, lightgray, white);
	background:-webkit-gradient(linear, left top, left bottom, from(lightgray), to(white));
}

.grd3 {
	background:whitesmoke;
	background:-moz-linear-gradient(top, white, lightgray);
	background:-webkit-gradient(linear, left top, left bottom, from(white), to(lightgray));
}

.grd4 {
	background:whitesmoke;
	background:-moz-linear-gradient(top, lightgray, lightgray 45%, lightgray 50%, silver);
	background:-webkit-gradient(linear, left top, left bottom, from(lightgray), color-stop(0.45, lightgray), color-stop(0.5, silver), to(white));
}

