/*******************event 이벤트메인페이지**************************/
div.event{
	width: 100%;
	overflow: hidden;
}
div.event > h2{
	font-size: 20px;
	color: #666;
	font-weight: normal;
	text-align: center;
	margin-top: 30px;
	margin-bottom: 50px;
}
div.event > h2 > span{
	font-weight: bold;
	color: #a61b38;
}

/*event_tab*/
div.event_tab{
	width: 980px;
	margin: 0px auto;
	overflow: hidden;
	margin-bottom: 20px;
}
div.event_tab > ul{
	overflow: hidden;
	width: 100%;
}
div.event_tab > ul > li{
	float: left;
	background-color: #fff;
	width: 170px;
	height: 50px;
	border: 1px solid #ccc;
	border-bottom: 2px solid #fff;
	border-bottom: none;
	box-sizing: border-box;
	position: relative;
	border-bottom: 2px solid #a61b38;
}
div.event_tab > ul > li.et_on{
	border: 2px solid #a61b38;
	border-bottom: 2px solid #fff;
	color: #000;
	font-weight: bold;
}

div.event_tab > ul > li.border{
	width: calc(100% - 340px);
	border: none;
	cursor: default;
	border-bottom: 2px solid #a61b38;
}

div.event_tab > ul > li > a{
	display: block;
	width: 100%;
	height: 100%;
	color: #999;
	font-size: 15px;
	line-height: 50px;
	text-align: center;
}
div.event_tab > ul > li.et_on > a{
	color: #000;
	font-weight: bold;
}

/*event_list*/
div.event_list{
	width: 980px;
	overflow: hidden;
	margin: 0px auto;
	margin-bottom: 100px;
}
div.event_list > div{
	width: 100%;
	overflow: hidden;
	display: block;
}
div.event_list > div > ul{
	width: 100%;
	overflow: hidden;
}
div.event_list > div > ul > li{
	float: left;
	width: calc(50% - 10px);
	position: relative;
	margin-right: 20px;
	margin-bottom: 20px;
	border: 1px solid #ccc;
	box-sizing: border-box;
	height: 200px;
	overflow: hidden;
}
div.event_list > div > ul > li:nth-child(2n){
	margin-right: 0px;
}
div.event_list > div > ul > li > a > div.event_over{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	background-color: rgba(0,0,0,0.4);
	opacity: 0;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
div.event_list > div > ul > li:hover > a > div.event_over{
	opacity: 1;
}
div.event_list > div > ul > li > a > div.event_over > h5{
	display: block;
	position: absolute;
	width: 100px;
	height: 100px;
	top: 50%;
	left: 50%;
	margin-top: -50px;
	margin-left: -50px;
	border-radius: 50px;
	background-color: #a61b38;
	font-weight: 900;
	font-size: 15px;
	color: #fff;
	text-align: center;
	box-sizing: border-box;
	padding-top: 32px;
}
div.event_list > div > ul > li > a > div.event_over > h5 > span{
	font-weight: 100;
	color: #fff;
	font-size: 16px;
	letter-spacing: 1px;
}
div.event_list > div.finish_event > ul > li > a > div.event_over > h5{
	background-color: #666;
}


/*******************event_detail 이벤트디테일페이지**************************/
div.event_detail{
	width: 980px;
	margin: 0px auto;
	overflow: hidden;
}
div.event_detail > div.img_box{
	width: 100%;
	margin: 30px auto;
	overflow: hidden;
}
/*btn_box*/
div.btn_box{
	width: 100%;
	margin-top: 30px;
	margin-bottom: 30px;
	overflow: hidden;
	padding: 4px;
	box-sizing: border-box;
}
div.btn_box > input{
	float: right;
	background-color: #fff;
	border: 1px solid #ccc;
	width: 100px;
	height: 40px;
	border-radius: 5px;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	font-size: 15px;
	font-weight: bold;
	color: #666;
	box-shadow: 2px 2px 2px rgba(0,0,0,0.1);
}
div.btn_box > input:hover{
	background-color: #666;
	color: #fff;
	border: 1px solid #666;
}
div.event_detail > div.m_none_review{
	margin-bottom: 100px;
}

div.review_box .comment_guide{
	width:95%;
	margin:0 auto;
	background-color: #fff;
}
div.review_box ul.reviewstar{
	border-bottom: none;
}
div.review_box > form{
	border: 1px solid #ddd;
}
div.review_box .comment_guide ul.comment_area{
	border: 1px solid #ddd;
	margin-bottom: 10px;
	box-shadow: 2px 2px 2px rgba(0,0,0,0.2);
}
div.review_box .comment_guide ul.comment_area .starttitle{
	font-weight: normal;
	color: #333;
}
div.nonmember_info{
	width: 100%;
	overflow: hidden;
	margin-bottom: 20px;
	border-bottom: 2px solid #666;
	padding-bottom: 20px;
}
div.nonmember_info table{
	width: 100%;
}
div.nonmember_info table th{
	font-size: 13px;
	font-weight: normal;
	color: #666;
	width: 100px;
	text-align: center;
}
div.nonmember_info table td{
}
div.nonmember_info table td.name{
	width: 170px;
}
div.nonmember_info table td.name > input{
	width: 100%;
	height: 35px;
	border: 1px solid #ccc;
	box-sizing: border-box;
}
div.nonmember_info table td.pw{
	width: 170px;
}
div.nonmember_info table td.pw > input{
	width: 100%;
	height: 35px;
	border: 1px solid #ccc;
	box-sizing: border-box;
}
div.nonmember_info table td.email{
	width: calc(100% - 640px);
}
div.nonmember_info table td.email > ul > li{
	float: left;
	text-align: center;
	line-height: 35px;
	height: 36px;
	width: calc(50% - 15px);
}
div.nonmember_info table td.email > ul > li:nth-child(2){
	width: 30px;
}
div.nonmember_info table td.email > ul > li > input,
div.nonmember_info table td.email > ul > li > select{
	width: 100%;
	height: 35px;
	border: 1px solid #ccc;
	box-sizing: border-box;
}

/*******************event_etc 띠별 운세보기**************************/
div.month_luck{
	width: 100%;
	overflow: hidden;
}
div.month_luck > div.btn_box{
	width: 980px;
	margin: 0px auto;
}
div.month_luck > div.luck_title{
	text-align: center;
	margin-top: 50px;
	margin-bottom: 50px;
}
div.luck_title p.big{
	font-size: 28px;
	font-weight: 100;
	color: #222;
	margin-bottom: 10px;
}
div.luck_title p.big span{
	font-size: 28px;
	font-weight: 100;
	color: #a61b38;
}
div.luck_title h2{
	font-size: 75px;
	font-weight: 100;
	width: 510px;
	margin: 0px auto;
	border-bottom: 2px solid #999;
	letter-spacing: -6px;
	padding-bottom: 15px;
	margin-bottom: 15px;
}
div.luck_title h2 span{
	font-size: 75px;
	font-weight: bold;
	color: #a61b38;
}
div.luck_title p.small{
	font-size: 15px;
	font-weight: 100;
	color: #999;
}


div.month_luck > div.luck_content{
	width: 980px;
	margin: 0px auto;
}

/*content*/
.smk_accordion .accordion_in .acc_head > ul{
	width: 100%;
	float: left;
}
.smk_accordion .accordion_in .acc_head > ul > li{
	float: left;
	width: calc(100% - 20px);
	background-color: #f3f3f3;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	height: 40px
}
.smk_accordion .accordion_in .acc_head > ul > li.info{
	box-sizing: border-box;
	padding-left: 20px;
	line-height: 40px;
	font-size: 18px;
	font-weight: normal;
	color: #a61b38;
}
.smk_accordion .accordion_in .acc_head > ul > li.info > span{
	margin-left: 20px;
	color: #999;
	font-size: 15px;
	font-weight: normal;
	letter-spacing: -1px;
}
.smk_accordion .accordion_in .acc_head > ul > li.border{
	width: 10px;
	margin-right: 10px;
	background-color: #a61b38;
}
.smk_accordion .accordion_in .acc_content {
  background: #fff;
  border: 1px solid #ededed;
  color: #666;
  margin-top: 10px;
  padding: 20px;
  line-height: 22px;
  font-size: 13px;
  box-sizing: border-box;
}
.smk_accordion .accordion_in .acc_head .acc_icon_expand {
  width: 20px;
  height: 20px;
  right: 20px;
  margin-top: -10px;
  background: url(../images/plusminus2.png) center -21px;
}
.smk_accordion .accordion_in.acc_active > .acc_head li.info{
	background-color: #a61b38 !important;
	color: #fff !important;
	font-weight: bold !important;
}
.smk_accordion .accordion_in.acc_active > .acc_head li.info > span{
	color: #ccc;
}
.smk_accordion .accordion_in.acc_active > .acc_head .acc_icon_expand {
  background: url(../images/plusminus2.png) center 0px;
}


/*shortcut_bn*/
div.shortcut_bn{
	width: 980px;
	overflow: hidden;
	padding-right: 3px;
	margin: 0px auto;
	margin-top: 50px;
	margin-bottom: 50px;
}
div.shortcut_bn > ul > li{
	width: 480px;
	float: left;
	margin-right: 20px;
	position: relative;
}
div.shortcut_bn > ul > li:last-child{
	margin-right: 0px;
}
div.shortcut_bn > ul > li > a > img:last-child{
	position: absolute;
	top: 0px;
	left: 0px;
	opacity: 0;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
div.shortcut_bn > ul > li > a:hover > img:last-child{
	opacity: 1;
}



