html {
	height: 100%
}
body {
    /*加载背景图*/
    background-image: url(../images/background.png);
    /* 背景图垂直、水平均居中 */
    background-position: center center;
    /* 背景图不平铺 */
    background-repeat: no-repeat;
    /* 当内容高度大于图片高度时，背景图像的位置相对于viewport固定 */
    background-attachment: fixed; 
    /* 让背景图基于容器大小伸缩 */
    background-size: cover;
    /* 设置背景颜色，背景图加载过程中会显示背景色 */
    background-color: #CCCCCC;
	min-height: 100%;
	position:relative;
}

.footer {
	min-height: 40px;
	padding: 30px 0;
	color: rgba(255,255,255,1);
	font-size: 14px;
	bottom: 0;
	position: absolute;
	width: 100%
}

.forcecenter {
    display: table;
    margin: 0 auto;
}
