	/*定义焦点图容器*/
	.picfocus {
		width:auto;/*定义容器宽度*/
		height:auto;/*定义容器高度*/
		overflow:hidden;/*超出部分隐藏*/
		margin:0;
		padding:0;
		position:relative;/*相对定位*/
		zoom:1
		}
	.play_list a{ 
		display:block;
		position:absolute;/*使所有的图像链连以左上角定位*/
		overflow:hidden;
		width:100%;
		height:100%;}
	
	/*定义图像说明文字背景*/
	.play_bg{
		position:absolute;
		bottom:0;/*图像说明文字背景距离父容器下边框的距离*/
		background-color:#000;
		margin-bottom:0px;
		height:32px;
		width:100%;
		filter: Alpha(Opacity=70);/*不透明度FOR IE*/
		opacity:0.7;/*不透明度FOR FIREFOX*/
		z-index:1000/*索引深度*/}
		
	.play_info{/*定义图像说明文字*/
		position:absolute;
		bottom:0px;/*与图像说明文字背景保持一致*/
		right:0px;
		padding:0px;
		height:32px;
		line-height:32px;
		width:96%;
		color:#fff;
		z-index:1001;/*定义索引深度，要比背景高*/
		cursor:pointer;
		font-size:14px;
		display:block;
		font-weight:bold}
		
	/*定义按钮区域位置*/
	.play_text {
		position:absolute;
		bottom:0;
		right:0;
		height:32px;
		z-index:1002;/*定义索引深度*/
		margin:0}
		
	.play_text ul {
		list-style-type:none;
		height:25px;
		display:block;
		_padding-top:0px;
		z-index:1003;/*定义索引深度，要比其背景高*/
		margin:0}
		
	.play_text ul li{		
		width:18px;/*定义按钮的宽度，可自定义*/
		height:15px;/*定义按钮的高度，可自定义*/
		float:left;
		line-height:15px;
		font-family:'Arial Black';
		background-color:#927a76;/*定义默认按钮的默认背景颜色*/
		display:block;
		color:#FFF;/*定义按钮文字的默认颜色*/
		text-align:center;
		margin-left:1px;
		cursor:pointer;
		font-family:Arial;
		font-size:12px;
		margin-top:9px;
		list-style:none;
		padding:0;
		background-image:none;
		}
		
	/*定义当前焦点图的按钮颜色*/
	.play_text ul li.current {
		background-color:#ff8000;
		color:#fff;
	}

	/*以下是自定义按钮样式*/
	.play_btn {
		position:absolute;
		bottom:0;
		right:0;
		height:32px;
		z-index:1002;/*定义索引深度*/
		margin:0}
		
	.play_btn ul {
		list-style-type:none;
		height:25px;
		display:block;
		_padding-top:0px;
		z-index:1003;/*定义索引深度，要比其背景高*/
		margin:0}
		
	.play_btn ul li{		
		width:16px;/*定义按钮的宽度，可自定义*/
		height:13px;/*定义按钮的高度，可自定义*/
		float:left;
		font-family:'Arial';
		background-color:#FF9D24;/*定义默认按钮的默认背景颜色*/
		display:block;
		color:#FFF;/*定义按钮文字的默认颜色*/
		text-align:center;
		margin-left:1px;
		cursor:pointer;
		font-size:11px;
		margin-top:9px;
		}
		
	/*定义当前焦点图的按钮颜色*/
	.play_btn ul li.current {
		background-color:red;
		color:#fff;
	}