	* {
		margin: 0;
		padding: 0;
	}
	
	a {
		text-decoration: none;
	}
	
	img {
		border: none;
	}
	
	ul li {
		list-style: none;
	}
	
	body {
		overflow-x: hidden;
	}
	/****************header*****************/
	
	.header {
		width: 100%;
		background: #FFFFFF;
	}
	
	.header .topH {
		width: 1200px;
		margin: 5px auto 45px;
		padding-bottom: 26px;
	}
	
	.header .topH .logo {
		width: 250px;
		height: 60px;
		float: left;
		cursor: pointer;
		display: block;
	}
	
	.searchDiv {
		float: right;
		height: 27px;
		margin-top: 15px;
	}
	
	.header .searchDiv .searchTxtbox {
		height: 27px;
		border: solid 0px #000000;
		outline: none;
		float: left;
		width: 220px;
		line-height: 27px;
		padding-left: 6px;
		background: #e6e6e6;
	}
	
	.header .searchDiv .searchBtn {
		background: #000000;
		height: 27px;
		line-height: 27px;
		border: none;
		float: left;
		color: #FFFFFF;
		padding-left: 8px;
		padding-right: 8px;
		cursor: pointer;
	}
	/**placeholder**/
	
	input.searchTxtbox::-webkit-input-placeholder {
		/* WebKit browsers */
		color: #a79b9b;
	}
	
	input.searchTxtbox:-moz-placeholder {
		/* Mozilla Firefox 4 to 18 */
		color: #a79b9b;
	}
	
	input.searchTxtbox::-moz-placeholder {
		/* Mozilla Firefox 19+ */
		color: #a79b9b;
	}
	
	input.searchTxtbox:-ms-input-placeholder {
		/* Internet Explorer 10+ */
		color: #a79b9b;
	}
	/**placeholder**/
	/****************header*****************/
	/****************FOOTER*****************/
	
	.footer {
		width: 100%;
		background: #f2f2f2;
		display: table;
	}
	
	.footer .footer-container {
		width: 1200px;
		margin: 0 auto;
	}
	
	.footer .left1 {
		width: 160px;
		height: 160px;
		float: left;
		margin-top: 50px;
	}
	
	.footer .left2 {
		margin-left: 20px;
		width: 336px;
		margin-top: 75px;
		float: left;
	}
	
	.footer .left2 p {
		font-size: 16px;
		letter-spacing: 1px;
		padding-bottom: 10px
	}
	
	.footer .left2 p span {
		text-transform: uppercase;
	}
	
	.footer .right {
		margin-left: 70px;
		width: 612px;
		height: 249px;
		float: right;
		background: url(../images/footer-pic.jpg) no-repeat;
	}
	
	.footer .right .nav {
		width: 550px;
		margin: 0 auto 12px;
		height: 14px;
		font-size: 0;
	}
	
	.footer .right .firstNav {
		margin-top: 100px;
		font-size: 0;
	}
	
	.footer .right .nav a {
		display: inline-block;
		width: 105px;
		border-right: solid 1px #FFFFFF;
		text-align: center;
		color: #FFFFFF;
		height: 13px;
		font-size: 13px;
		line-height: 13px;
		text-transform: uppercase;
	}
	
	.footer .right .nav a:hover {
		color: #670001;
	}
	
	.footer .right .nav a.no-border {
		border-right: none;
	}
	
	.footer .copyright {
		clear: both;
		background: #cccccc;
		height: 35px;
		line-height: 35px;
		text-align: center;
		font-size: 13px;
		color: #121212;
	}
	
	.footer .copyright a {
		color: #121212;
	}
	
	.footer .copyright a:hover {
		color: #670001;
	}
	/****************FOOTER*****************/
	
	.bottomFix {
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
	}
	
	.navFixed {
		position: fixed;
		top: 0;
		left: 0;
		z-index: 9998;
	}
	
/************scrollbar style************/


/**ie8**/

html,
body {
	scrollbar-face-color: #9A9A9A;
	/*滚动条3D表面（ThreedFace）的颜色*/
	scrollbar-highlight-color: #fff;
	/*滚动条3D界面的亮边（ThreedHighlight）颜色*/
	scrollbar-shadow-color: #eeeeee;
	/*滚动条3D界面的暗边（ThreedShadow）颜色*/
	scrollbar-3dlight-color: #f11;
	/*滚动条亮边框颜色*/
	scrollbar-arrow-color: #000;
	/*滚动条方向箭头的颜色 */
	scrollbar-track-color: #fff;
	/*滚动条的拖动区域(TrackBar)颜色*/
	scrollbar-darkshadow-color: #fff;
	/*滚动条暗边框（ThreedDarkShadow）颜色*/
}


/**Chrome**/


/*---滚动条默认显示样式--*/

::-webkit-scrollbar-thumb {
	background-color: #454545;
	height: 50px;
	outline-offset: -2px;
	outline: 2px solid #fff;
	-webkit-border-radius: 4px;
	border: 2px solid #fff;
}


/*---鼠标点击滚动条显示样式--*/

::-webkit-scrollbar-thumb:hover {
	background-color: #000000;
	height: 50px;
	-webkit-border-radius: 4px;
}


/*---滚动条大小--*/

::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}


/*---滚动框背景样式--*/

::-webkit-scrollbar-track-piece {
	background-color: #fff;
	-webkit-border-radius: 0;
}


/************scrollbar style************/