@charset "UTF-8";

body, body * {
	vertical-align: baseline;
	border: 0 none;
	outline: 0;
	padding: 0;
	margin: 0;
	background-repeat:no-repeat;
}

#background {
  left:0;
  top:0;
  position: absolute;
}

#container {
	cursor: pointer;
	display:block;
	position: absolute;
	width:300px;
	height:250px;
	background-color: #fff;
	margin: auto;
	overflow:hidden;
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	border:0px solid #000;
}

#white {
	position: absolute;
	left:0;
	top:0;
	width:300px;
	height:250px;
	background: #fff;
	z-index: 101;
}

#content {
	position: absolute;
	width: 300px;
	height: 100%;
	top: 0px;
	left: 0px;
	background-color: #44cdd1;
}

#state {
	position: absolute;
	top: 138px;
	left: 25px;
	width: 250px;
	height: 49px;
}

hr {
	position: absolute;
	bottom: 53px;
	left: 25px;
	border-top: 1px solid #ffffff;
	width: 250px;
}

#state1 {
	position: absolute;
	top: 0;
	z-index: 100;
	transition: z-index 0.5s linear, opacity 0.5s linear;
}

#state1.hide {
	opacity: 0;	
	z-index: 99;
}

#state2 {
	position: absolute;
	top: 0;
	z-index: 99;
	opacity: 0;
	transition: z-index 0.5s linear, opacity 0.5s linear;
}

#state2.show {
	opacity: 1;
	z-index: 100;
}

#anim-wrap {
	position: relative;
	width: 246px;
	margin: -59px auto 0 auto;
}

#logo-wrap {
	position: absolute;
	bottom: 21px;
	left: 25px;
	width: 115px;
	height: 18px;
}

#btn-wrap {
	position: absolute;
	bottom: 14px;
	right: 25px;
	opacity: 0;
	width: 100px;
	height: 25px;
	transition: opacity 0.5s linear;
}

#btn-wrap.show {
	opacity: 1;
}