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


.bg-grad
{
/*
	width: 1600px;
    height: 2000px;
*/
	width: 100%;
    height: 100%;

    padding: 0px;
    /*border: 5px solid #000000;*/
    background: #ffffff;
    /* Webkit系 */
    background: -webkit-gradient(linear, left top, left bottom, from(#B40404), to(#000000));
    /* Mozilla系 */
    background: -moz-linear-gradient(top, #B40404, #000000);
    /* IE10+ */
    background: -ms-linear-gradient(top, #B40404, #000000);
    /* IE8-9 */
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#B40404', endColorstr='#000000', GradientType=0)";
    /* IE5.5-7 */
    /* filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#B40404', endColorstr='#000000', GradientType=0); */
}



