/*==========
	LightBox 样式 by shinn0901
==========*/
.Full_Shadow{
	width:100%;
	height:100%;
	background-image:url(LightBox/shadow.png);
	position:fixed;
	top:0;
	left:0;
	z-index:9999;
	display:none;
}


/*----- LightBox -----*/
#Full_LightBox{
	height:0px;
	width:0px;
	position:fixed;
	z-index:9999;
	overflow:hidden;
}
#Full_LightBox #centerBox{
	background-image:url(LightBox/bg.png);
	width:820px;
	overflow:hidden;
	height:100%;
	position:absolute;
	left:0;
	top:0;
	z-index:101;
}
#Full_LightBox #backMsgBox{
	background-image:url(LightBox/bg.png);
	width:820px;
	overflow:hidden;
	height:100%;
	position:absolute;
	left:-820px;
	top:0;
	z-index:100;
}

#btn_box{
	position:absolute;
	right:0px;
	top:0;
	width:46px;
	height:164px;
	display:none;	
}
#btn_box div{
	width:46px;
	height:46px;
	cursor:pointer;
	position:absolute;
	left:0;
	opacity:0.5;
	filter:alpha(opacity=50);
	transition:600ms all;
}
#btn_box div:hover{
	opacity:1;
	filter:alpha(opacity=100);
}
#btn_box .close{
	top:0;
	background-image:url(LightBox/btn_close.png);
}
#btn_box .Prev{
	top:63px;
	background-image:url(LightBox/btn_Prev.png);
}
#btn_box .Next{
	top:118px;
	background-image:url(LightBox/btn_Next.png);
}




