@charset "UTF-8";
/****************
filename:pop1.css
describe:弹出层样式
author: genmous
last modify time:2013-5-03 15:30

名字规则
-----------------------

.fixed_box_init {}  

	.box_mask {}                        遮罩层
	.box_cont {}                      结构层
		.base_bg {}
		.base_up {}
	.box_shadow {}                      虚框层

***************/

.fixed_box_init {text-align:left;font-size:12px;font-family:"SimSun",Arial, Helvetica, sans-serif;line-height:normal;}
.fixed_box_init .box_mask {position:fixed;left:0;top:0;z-index:2147483645; width:100%;height:100%;
	background:black;filter:alpha(opacity=20);opacity:0.2;
}
.fixed_box_init .box_mask iframe {position:absolute;z-index:2147483644;filter:alpha(opacity=0);-moz-opacity:0;-khtml-opacity:0;opacity:0;}
*html .fixed_box_init .box_mask {position:absolute;
	zoom:expression( function(sjd){
		sjd.style.height = document.documentElement.offsetHeight*1.1+"px";
		if(document.documentElement.scrollTop < document.body.offsetHeight - sjd.offsetHeight ){
			sjd.style.top = document.documentElement.scrollTop + "px";} else {sjd.style.top = document.body.offsetHeight - sjd.offsetHeight + "px"
		}
	}(this));
}
.fixed_box_init .box_cont {position:fixed;_position:absolute;top:0;left:0; z-index:2147483646;min-height:100px;}
.fixed_box_init .box_shadow {display:none;cursor:move;position:fixed;_position:absolute;left:0;top:0;z-index:2147483647;
	background:black;filter:alpha(opacity=15);opacity:0.15;
	}

/*css3 动画*/
.fixed_box_init .box_mask { 
/* animation语法说明  
   animation:动画名（英文名） 动画时间（数字，单位s） 动画曲线(linear:同速，ease(ease-in-out):慢快慢，ease-in:慢快，ease-out:快慢) 动画延迟（数字，单位s） 动画次数（数字|infinite：无限次） 动画反向轮流（normal：不轮流|alternate：轮流）*/
	animation: fixed_box_mask 2s ease-out 0s 1 normal;		
}
/* css3 动画规则 fixed_box_mask */
@keyframes fixed_box_mask{	0%   {filter:alpha(opacity=0);opacity:0;}	100% {filter:alpha(opacity=20);opacity:0.2;}}

