#show {
				width: 100%;
				height: 450px;
				margin: 0 auto;
				position: relative;
				overflow: hidden;
			}
			
			#show ul {
				width: 100%;
				height: 100%;
				overflow: hidden;
			}
			
			#show ul li {
				width: 100%;
				height: 100%;
				position: absolute;
				top: 0px;
				left: 1920px;
				list-style-type: none;
			}
			#show ul li a{
				width: 100%;
				height: 100%;
				display: block;
			}
			
			#show .icon {
				z-index: 999;
				width: 100%;
				height: 0px;
				position: absolute;
				bottom: 30px;
				text-align: center;
			}
			
			#show .icon p {
				width: 40px;
				height: 6px;
				display: inline-block;
				/*border-radius: 5px;*/
				margin: 0 5px;
				background-color: white
			}
			
			#show .icon .icon_active {
				background-color: #A6171C;
			}
			
			#show .btn {
				z-index: 999;
				width: 1300px;
				height: 0px;
				position: absolute;
				left: 50%;
				margin-left: -650px;
				top: 50%;
				margin-top: -64px;
			}
			
			#show .btn p {
				width: 74px;
				height: 128px;
				transition: all 0.3s;
			}
			#show .btn .left{				
				background: url(../img/leftBtnIcon.png) center no-repeat;
				margin-left: -30px;
				opacity: 0;
			}
			#show .btn .right{
				background: url(../img/rightBtnIcon.png) center no-repeat;
				margin-right: -30px;
				opacity: 0;
			}
			#show:hover .btn .left{
				margin-left: 0px;
				opacity: 1;
			}
			#show:hover .btn .right{
				margin-right: 0px;
				opacity: 1;
			}
			.left {
				float: left;
			}
			
			.right {
				float: right;
			}