



.content-modules .box{
	border: solid 1px silver;

    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;

    -moz-box-shadow: 1px 1px 5px silver;
    -webkit-box-shadow: 1px 1px 5px silver;
    box-shadow: 1px 1px 5px silver;

	background-color: white;
	background-image: -moz-linear-gradient(300deg, white 60%, #efefef 90%);
	background-image: -webkit-gradient(linear, left top, right bottom, 
		from(white), to(#efefef),
		color-stop(.7, white)
	);

}



