@charset "utf-8";
/* CSS Document */

#movie_list {
	width: 900px;
	margin: 50px auto 0;
}
#movie_list li {
	padding: 30px 0 0;
	float: left;
	margin: 0 20px;
	position: relative;
	cursor: pointer;
}

.movie_date {
	font-size: 11px;
	line-height: 1;
	color: #5269b5;
	padding: 0 0 0 13px;
	background: url(../img/bullet.png) 2px 2px no-repeat;
	margin: 10px 0 0;
}
.movie_title {
	font-size: 14px;
	line-height: 1.5;
	margin: 3px 0 0;
	color: #fd4b87;
	padding: 0 0 30px;
}

.movie_hover {
	position: absolute;
	top: 30px;
	left: 0;
	transition: opacity 0.2s linear;
	opacity: 0;
	filter: alpha(opacity=0);
}
li:hover .movie_hover {
	opacity: 1;
	filter: alpha(opacity=100);
}


#movie_area {
	display: none;
}
#movie_area.show {
	display: block;
}
#movie_bg {
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: #fff;
	opacity: 0.8;
	filter: alpha(opacity=80);
	top: 0;
	left: 0;
}
#movie_box {
	width: 640px;
	height: 360px;
	position: fixed;
	top: 50%;
	left: 50%;
	margin-top: -180px;
	margin-left: -320px;
}

#movie_box .btnClose {
	width: 120px;
	height: 22px;
	position: absolute;
	top: 390px;
	left: 50%;
	margin-left: -60px;
}


#movie_box .btnClose .hover_off {
	transition: opacity 0.2s linear;
	opacity: 1;
	filter: alpha(opacity=100);
}

#movie_box .btnClose .hover_on {
	position: absolute;
	top: 0;
	left: 0;
	transition: opacity 0.2s linear;
	opacity: 0;
	filter: alpha(opacity=0);
}

#movie_box .btnClose:hover .hover_off {
	cursor: pointer;
	opacity: 0;
	filter: alpha(opacity=0);
}

#movie_box .btnClose:hover .hover_on {
	cursor: pointer;
	opacity: 1;
	filter: alpha(opacity=100);
}
