/* loading style ---------- */

#loader-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 99991;
}

#loader {
	display: block;
	position: relative;
	left: 50%;
	top: 50%;
	width: 150px;
	height: 150px;
	margin: -75px 0 0 -75px;
	border-radius: 50%;
	border: 3px solid transparent;
	border-top-color: #32CBC9;
	-webkit-animation: spin 2s linear infinite;
	animation: spin 2s linear infinite;
	z-index: 1001;
}

#loader:before {
	content: "";
	position: absolute;
	top: 5px;
	left: 5px;
	right: 5px;
	bottom: 5px;
	border-radius: 50%;
	border: 3px solid transparent;
	border-top-color: #32CBC9;
	-webkit-animation: spin 3s linear infinite;
	animation: spin 3s linear infinite;
}

#loader:after {
	content: "";
	position: absolute;
	top: 15px;
	left: 15px;
	right: 15px;
	bottom: 15px;
	border-radius: 50%;
	border: 3px solid transparent;
	border-top-color: #32CBC9;
	-webkit-animation: spin 1.5s linear infinite;
	animation: spin 1.5s linear infinite;
}

 @-webkit-keyframes spin {
 0% {
 -webkit-transform: rotate(0deg);
 -ms-transform: rotate(0deg);
 transform: rotate(0deg);
}
 100% {
 -webkit-transform: rotate(360deg);
 -ms-transform: rotate(360deg);
 transform: rotate(360deg);
}
}

 @keyframes spin {
 0% {
 -webkit-transform: rotate(0deg);
 -ms-transform: rotate(0deg);
 transform: rotate(0deg);
}
 100% {
 -webkit-transform: rotate(360deg);
 -ms-transform: rotate(360deg);
 transform: rotate(360deg);
}
}

#loader-wrapper .loader-section {
	position: fixed;
	top: 0;
	width: 51%;
	height: 100%;
	background: #F6D8BC; /* preloader 좌우 배경색 ---------- */
	z-index: 1000;
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
}

#loader-wrapper .loader-section.section-left {
	left: 0;
	-webkit-transform: translateX(0%);
	-ms-transform: translateX(0%);
	transform: translateX(0%);
	-webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
	transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

#loader-wrapper .loader-section.section-right {
	right: 0;
	-webkit-transform: translateX(0%);
	-ms-transform: translateX(0%);
	transform: translateX(0%);
	-webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
	transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

/* Loaded */

.loaded #loader-wrapper .loader-section.section-left {
	-webkit-transform: translateX(-100%);
	-ms-transform: translateX(-100%);
	transform: translateX(-100%);
	-webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
	transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

.loaded #loader-wrapper .loader-section.section-right {
	-webkit-transform: translateX(100%);
	-ms-transform: translateX(100%);
	transform: translateX(100%);
	-webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
	transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

.loaded #loader {
	opacity: 0;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.loaded #loader-wrapper {
	visibility: hidden;
	-webkit-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	transform: translateY(-100%);
	-webkit-transition: all 0.3s 1s ease-out;
	transition: all 0.3s 1s ease-out;
}

/*end loading style ---------- */


/* Action btn */
#Action-btn .item-wrap{
	margin-bottom: 40px;
	text-align:center;
}

#Action-btn i{
	width: 120px;
	height: 120px;
	
	border-radius: 100%;
	
	font-size: 40px;	
	color: #0D1B58;
	line-height: 120px;
	
	-webkit-transition:all 0.3s;
	-moz-transition:all 0.3s;
	-ms-transition:all 0.3s;
	-o-transition:all 0.3s;
	transition:all 0.3s;

	cursor:pointer;
}

#Action-btn i.pointer{
	background-color: #1CCCCA;
}

#Action-btn i:after {
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	border-radius: 50%;
	
	box-shadow: 0 0 0 6px #0D1B58;

	opacity:.2;

	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	
	top: -7px;
	left: -7px;
	padding: 7px;
	
	-webkit-transition:all 0.3s;
	-moz-transition:all 0.3s;
	-ms-transition:all 0.3s;
	-o-transition:all 0.3s;
	transition:all 0.3s;
	
	-webkit-transform: scale(0.8);
	-moz-transform: scale(0.8);
	-ms-transform: scale(0.8);
	-o-transform: scale(0.8);
	transform: scale(0.8);
}

#Action-btn i.pointer:after{
	box-shadow: 0 0 0 4px #1CCCCA;
}


#Action-btn i:hover{
	font-size: 70px;
}

#Action-btn i:hover:after {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	opacity: 1;
}

#Action-btn .item-title{
	margin: 20px 0 10px;
	
	font-family:"Poppins", "notokr-bold";
	color: #0D1B58;
	font-size: 18px;
/*	text-transform: uppercase; ---------- */
	letter-spacing: 1px;
}

@media (max-width: 767px){
	#Action-btn i{
		width: 120px;
		height: 120px;
		
		font-size: 50px;
		line-height: 120px;
	}
	
	#Action-btn .item-title{
		font-size: 15px;
		font-family:"Poppins", 'notokr-bold';
	}
}

/*end Action btn style ---------- */



/* flow */
#flow{
	position: relative;
	padding-top: 20px;
	
	background-image: url('../image/main_middle_bg.jpg');
	background-position:center; background-repeat:no-repeat; background-size:cover;
}

#flow .flow-top-title{	
	font-family: 'notokr-bold', sans-serif;
	font-size: 24px;
	color: #333333;
}

#flow .flow-slider-wrapper{
	position: relative;
}

/***** flow 바 *****/
#flow .progress-bar{
	display: block;
	width: 100%;
	height: 2px;
	background: transparent;
	border-bottom: 1px dotted #0C7984;
	position: absolute;
	top: 50%;
}

#flow .progress-bar.start,
#flow .progress-bar.finish{
	width: 80%;
}

#flow .progress-bar.start{
	right: 0
}

#flow .progress-bar.finish{
	left: 0
}

#flow .progress-bar.start:before {
	position: absolute;
	left: 0;
	display: block;
	content: '';
	width: 6px;
	height: 6px;
	background: #00d9ec;
	top: -1px;
	
	border-radius: 50%;
}

#flow .progress-bar.finish:before {
	position: absolute;
	right: 0;
	display: block;
	content: '';
	width: 6px;
	height: 6px;
	background: #00d9ec;
	top: -1px;
	
	border-radius: 50%;
}

/***** flow 내용 *****/
#flow .flow-wrap{
	display: block;
	position: relative;
	overflow: hidden;
}

#flow .flow-wrap .flow-title span{
	display: inline-block;
	
	padding: 0 10px;
	
	font-family: 'notokr-bold';
	font-size: 80px;
	font-weight: bold;
	line-height: 1em;
	letter-spacing: -0.05em;
	color: #333333;
	
	z-index: 100;
}

#flow .flow-wrap .flow-icon{
	display: inline-block;
	margin: 10px 0;
	
	font-size: 70px;
	color: #333333;
	line-height: 1em;
}

#flow .flow-wrap .flow-desc{
	margin: 30px 0;
	
	font-size: 18px;
	color: #666666;
	line-height: 1.6;
}

/***** flow 페이져 *****/
#flow .bx-pager{
	bottom: -30px;	
}

#flow .bx-pager .bx-pager-link{
	border-radius: 0;
	background: none;
	width: auto;
	height: auto;
	
	margin-right: 15px;

	font-family: 'verdana',sans-serif;
	font-size: 20px;
	font-weight: bold;
	line-height: 2em;
	letter-spacing: -0.05em;
	text-align: right;
	text-indent: 0;
	text-decoration: none;
	
	border-bottom: 1px solid #888888;
	
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

#flow .bx-pager .bx-pager-link:hover{
	color: #333333;
	border-color: #333333;
}

#flow .bx-pager .bx-pager-link:before{
	content: '0';
}

#flow .bx-pager .bx-pager-link.active{
	padding-left: 20px;
	
	color: #333333;
	border-color: #333333;
}

#flow .bx-controls-direction a{
	margin: 0;
}

@media (max-width: 250px){
	#flow .flow-top-title {
		font-size: 18px;
	}
	
	#flow .flow-wrap .flow-icon{
		font-size: 40px;
	}
	
	#flow .flow-wrap .flow-title span {
		font-size: 30px;
	}
	
	#flow .flow-wrap .flow-desc{
		margin: 15px 0;
		
		font-size: 15px;
	}
	
	#flow .bx-pager .bx-pager-link{
		font-size: 13px;
	}
}

/***** bx-slider *****/
.bx-slider-wrap{
	position: relative;
}

.bx-slider-wrap ul{
	margin: 0;
	padding: 0;
}

.bx-wrapper{
	margin: 0 auto !important;
}

.bx-wrapper *,
.bx-wrapper *:before,
.bx-wrapper *:after {
	-webkit-box-sizing: content-box;
	   -moz-box-sizing: content-box;
	   		box-sizing: content-box;
}

.bx-wrapper .bx-viewport .row{
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	   		box-sizing: border-box;
}

.bx-wrapper .bx-viewport div[class*='col-'],
.bx-wrapper .bx-viewport div[class*='col-']:before,
.bx-wrapper .bx-viewport div[class*='col-']:after{
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	   		box-sizing: border-box;
}

.bx-wrapper .bx-viewport {
	border: none !important;
	left: 0 !important;
	box-shadow: none !important;
	background: none !important;
}

.bx-wrapper .bx-controls-direction a{
	z-index: 60 !important;
}

.bx-wrapper .bx-pager{
	padding: 0;
	bottom: 10px;
}

.bxslider{
	margin: 0;
	padding: 0;
}



.dotted {
    height: 1px;
    background: url('/image/bg_footer_widgets.png') repeat-x 0 100%;
    padding-top: 5px;
}

/***** 게시판 view *****/
#writeContents {
	font-size: 16px !important;
	line-height: 1.6em !important;
}

/***** 게시판 list *****/
.b_list_16 {
	font-size: 16px !important;
	background-color: transparent !important;
}

/* FOLLOW MENU */
#ui_follow{position:fixed;right:0;bottom:96px;background:url('') 0 0 no-repeat;z-index:11;
	-webkit-transition:top 0.2s cubic-bezier(0.75,0.1,0.25,1);
	transition:top 0.2s cubic-bezier(0.75,0.1,0.25,1);
}

#ui_follow2{position:fixed;right:0;bottom:96px;background:url('') 0 0 no-repeat;z-index:11;
	-webkit-transition:top 0.2s cubic-bezier(0.75,0.1,0.25,1);
	transition:top 0.2s cubic-bezier(0.75,0.1,0.25,1);
}

#ui_follow3{position:fixed;left:0;top:193px;background:url('') 0 0 no-repeat;z-index:11;
	-webkit-transition:top 0.2s cubic-bezier(0.75,0.1,0.25,1);
	transition:top 0.2s cubic-bezier(0.75,0.1,0.25,1);
}

#bottom_layer {position:fixed;left:0;bottom:0;background-color:#E7BA3A;z-index:11;
	-webkit-transition:top 0.2s cubic-bezier(0.75,0.1,0.25,1);
	transition:top 0.2s cubic-bezier(0.75,0.1,0.25,1);
    box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.3);
	color:#000000;
}

#bottom_layer .form-control {background-color:#ffffff; border-color:#ffffff; color:#000000; height:36px; padding: 3px 12px !important; border-radius:20px; font-size:16px !important;}
#bottom_layer .form-control:focus {background-color:#000000; border-color:#000000; color:#ffffff;}

/* btn_wheel */
#btn_mouse_wheel {
	position: absolute;
	text-align: center;
	bottom: 60px;
	z-index: 1;
	width:100%;
	left: 0;
	right: 0;
	opacity: .5;
}


/*
.sub_nav ul, menu, li {list-style: none;padding-left:0;}
.sub_nav2 ul, menu, li {list-style: none;padding-left:0;}
.sub_nav3 ul, menu, li {list-style: none;padding-left:0;}
.sub_nav4 ul, menu, li {list-style: none;padding-left:0;}
.sub_nav5 ul, menu, li {list-style: none;padding-left:0;}

.sub_inner{max-width:1200px;margin:0 auto}

.clear:after{clear:both; content:''; display:block}

.area_sub_nav .sub_nav {background-color:#eaeaea;}
.area_sub_nav .sub_nav .sub_inner{height:50px;line-height:50px;background-color:#fff}
.area_sub_nav .sub_nav .sub_inner li{float:left;width:19.917%;text-align:center;line-height:50px;margin:0 0 0 1px;background-color:#eaeaea}
.area_sub_nav .sub_nav .sub_inner li:last-child{width:19.834%;margin:0 1px 0 1px}
.area_sub_nav .sub_nav .sub_inner li a{display:block;width:100%;height:100%;font-size:15px;letter-spacing:-0.04em;}
.area_sub_nav .sub_nav .sub_inner li a:hover, .area_sub_nav .sub_nav .sub_inner li a:focus, .area_sub_nav .sub_nav .sub_inner li.on a{background-color:#f5f5f5;color:#666666;font-weight:700}

.area_sub_nav .sub_nav2 {background-color:#eaeaea;}
.area_sub_nav .sub_nav2 .sub_inner{height:50px;line-height:50px;background-color:#fff}
.area_sub_nav .sub_nav2 .sub_inner li{float:left;width:49.917%;text-align:center;line-height:50px;margin:0 0 0 1px;background-color:#eaeaea}
.area_sub_nav .sub_nav2 .sub_inner li:last-child{width:49.834%;margin:0 1px 0 1px}
.area_sub_nav .sub_nav2 .sub_inner li a{display:block;width:100%;height:100%;font-size:15px;letter-spacing:-0.04em;}
.area_sub_nav .sub_nav2 .sub_inner li a:hover, .area_sub_nav .sub_nav2 .sub_inner li a:focus, .area_sub_nav .sub_nav2 .sub_inner li.on a{background-color:#f5f5f5;color:#666666;font-weight:700}

.area_sub_nav .sub_nav3 {background-color:#eaeaea;}
.area_sub_nav .sub_nav3 .sub_inner{height:50px;line-height:50px;background-color:#fff}
.area_sub_nav .sub_nav3 .sub_inner li{float:left;width:24.917%;text-align:center;line-height:50px;margin:0 0 0 1px;background-color:#eaeaea}
.area_sub_nav .sub_nav3 .sub_inner li:last-child{width:24.834%;margin:0 1px 0 1px}
.area_sub_nav .sub_nav3 .sub_inner li a{display:block;width:100%;height:100%;font-size:15px;letter-spacing:-0.04em;}
.area_sub_nav .sub_nav3 .sub_inner li a:hover, .area_sub_nav .sub_nav3 .sub_inner li a:focus, .area_sub_nav .sub_nav3 .sub_inner li.on a{background-color:#f5f5f5;color:#666666;font-weight:700}

.area_sub_nav .sub_nav4 {background-color:#eaeaea;}
.area_sub_nav .sub_nav4 .sub_inner{height:50px;line-height:50px;background-color:#fff}
.area_sub_nav .sub_nav4 .sub_inner li{float:left;width:99.917%;text-align:center;line-height:50px;margin:0 0 0 1px;background-color:#eaeaea}
.area_sub_nav .sub_nav4 .sub_inner li:last-child{width:99.834%;margin:0 1px 0 1px}
.area_sub_nav .sub_nav4 .sub_inner li a{display:block;width:100%;height:100%;font-size:15px;letter-spacing:-0.04em;}
.area_sub_nav .sub_nav4 .sub_inner li a:hover, .area_sub_nav .sub_nav4 .sub_inner li a:focus, .area_sub_nav .sub_nav4 .sub_inner li.on a{background-color:#f5f5f5;color:#666666;font-weight:700}

.area_sub_nav .sub_nav5 {background-color:#eaeaea;}
.area_sub_nav .sub_nav5 .sub_inner{height:50px;line-height:50px;background-color:#fff}
.area_sub_nav .sub_nav5 .sub_inner li{float:left;width:33.417%;text-align:center;line-height:50px;margin:0 0 0 1px;background-color:#eaeaea}
.area_sub_nav .sub_nav5 .sub_inner li:last-child{width:32.834%;margin:0 1px 0 1px}
.area_sub_nav .sub_nav5 .sub_inner li a{display:block;width:100%;height:100%;font-size:15px;letter-spacing:-0.04em;}
.area_sub_nav .sub_nav5 .sub_inner li a:hover, .area_sub_nav .sub_nav5 .sub_inner li a:focus, .area_sub_nav .sub_nav5 .sub_inner li.on a{background-color:#f5f5f5;color:#666666;font-weight:700}

@media all and (max-width:1280px){
	.sub_inner{width:96%}
	.area_sub_nav .sub_nav .sub_inner li{margin:0 0 0 0.083%}
	.area_sub_nav .sub_nav .sub_inner li:last-child{margin:0 0.083% 0 0.083%}

	.area_sub_nav .sub_nav2 .sub_inner li{margin:0 0 0 0.083%}
	.area_sub_nav .sub_nav2 .sub_inner li:last-child{margin:0 0.083% 0 0.083%}

	.area_sub_nav .sub_nav3 .sub_inner li{margin:0 0 0 0.083%}
	.area_sub_nav .sub_nav3 .sub_inner li:last-child{margin:0 0.083% 0 0.083%}

	.area_sub_nav .sub_nav4 .sub_inner li{margin:0 0 0 0.083%}
	.area_sub_nav .sub_nav4 .sub_inner li:last-child{margin:0 0.083% 0 0.083%}

	.area_sub_nav .sub_nav5 .sub_inner li{margin:0 0 0 0.083%}
	.area_sub_nav .sub_nav5 .sub_inner li:last-child{margin:0 0.083% 0 0.083%}
}

@media (max-width: 768px) {
	.area_sub_nav .sub_nav .sub_inner li a { font-size: 13px; }
	.area_sub_nav .sub_nav2 .sub_inner li a { font-size: 13px; }
	.area_sub_nav .sub_nav3 .sub_inner li a { font-size: 13px; }
	.area_sub_nav .sub_nav4 .sub_inner li a { font-size: 13px; }
	.area_sub_nav .sub_nav5 .sub_inner li a { font-size: 13px; }
}
*/
.sub_inner .sub_tit:after {
    display: block;
    content: "";
    width: 1px;
    height: 30px;
    margin: 20px auto 20px;
    background-color: #dddddd;
}
.sub_inner .sub_tit_eng {
    display: block;
    line-height: 16px;
    font-size: 14px;
    color: #a3a6b0;
    text-align: center;
    letter-spacing: 0.1em;
}
.font_quan {
    font-family: 'Quantico', sans-serif;
}
.sub_inner .sub_tit {
    margin: 20px 0 0 0;
    font-size: 36px;
    line-height: 18px;
    font-weight: 700;
    text-align: center;
    letter-spacing: -0.04em;
}

@media (max-width: 768px) {
	.sub_inner .sub_tit {
		margin: 4px 0 0 0;
	}
	.sub_inner .sub_tit {
		margin: 10px 0 10px 0;
		font-size: 28px;
		line-height: 30px;
	}
	.sub_inner .sub_tit:after {
		height: 20px;
		margin: 5px auto 10px;
	}
}

@media (max-width: 480px) {
	.sub_inner .sub_tit {
		font-size: 20px;
		line-height: 22px;
	}
}


/***** 서브페이지 관련 *****/

@media only screen and (min-width: 992px) {
  .padding-12 {
  padding:0 110px;
  }
  .padding-right-10 {
  padding-right:10px;
  }
}
@media only screen and (min-width: 1200px) {
  .padding-12 {
  padding:0 150px;
  }
  .padding-right-10 {
  padding-right:10px;
  }
}

.caa { border:1px solid #1CCCCA !important; color:#1CCCCA; font-weight:bold; }
.caa2 { background-color:#1CCCCA; border:1px solid #19b7b5 !important; color:#ffffff; }
.cab { background-color:#f5f5f5; border:1px solid #eaeaea !important; color:#1a1a1a; font-weight:bold;}


/***** 서브페이지 왼메뉴 *****/
#lnb{float:left; width:200px;}
#lnb .top_title { padding:15px 15px; background-color:#0D1B58; color:#ffffff; font-size:16px; font-weight:bold; border-bottom:4px solid #C2BFBC;}
#lnb ul.depth2{width:100%; padding:0;}
#lnb ul.depth2 li {vertical-align:top; border-bottom:1px solid #dddddd; list-style: none;}
#lnb ul.depth2 li a{display:block; padding:15px 0 15px 20px;}
#lnb ul.depth2 li ul.depth3{margin-top:-7px; padding-bottom:8px;}
#lnb ul.depth2 li ul.depth3 li{border-bottom:none;}
#lnb ul.depth2 li ul.depth3 li a{padding:7px 0 7px 20px; border-bottom:none;}

#lnb ul.depth2 li a{display:block;width:100%;height:100%;font-size:15px;letter-spacing:-0.04em;}
#lnb ul.depth2 li a:hover, #lnb ul.depth2 li a:focus, #lnb ul.depth2 li.on a{background-color:#ffffff;color:#0D1B58;font-weight:700;}

#lnb .banner { }

/* YOUTUBE LAYOUT */
.embed-container {
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 56.25%;
}

.embed-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.Iam b {
  float: left;
  overflow: hidden;
  position: relative;
  height: 25px;
  top:0px;
}
.Iam .innerIam {
  display: inline-block;
  position: relative;
  white-space: nowrap;
  top: 0;
  left: 0;
  font-weight:normal;

/*animation*/
-webkit-animation:move 10s;
   -moz-animation:move 10s;
    -ms-animation:move 10s;
     -o-animation:move 10s;
        animation:move 10s;
/*animation-iteration-count*/
-webkit-animation-iteration-count:infinite;
   -moz-animation-iteration-count:infinite;
    -ms-animation-iteration-count:infinite;
     -o-animation-iteration-count:infinite;
        animation-iteration-count:infinite;
/*animation-delay*/
-webkit-animation-delay:1.8s;
   -moz-animation-delay:1.8s;
    -ms-animation-delay:1.8s;
     -o-animation-delay:1.8s;
        animation-delay:1.8s;
}
@keyframes move{
	0%  { top: 0px; }
	20% { top: -25px; }
	40% { top: -50px; }
	60% { top: -75px; }
	80% { top: -100px; }
}

@-webkit-keyframes move {
	0%  { top: 0px; }
	20% { top: -25px; }
	40% { top: -50px; }
	60% { top: -75px; }
	80% { top: -100px; }
}
@-moz-keyframes move {
	0%  { top: 0px; }
	20% { top: -25px; }
	40% { top: -50px; }
	60% { top: -75px; }
	80% { top: -100px; }
}
@-o-keyframes move {
	0%  { top: 0px; }
	20% { top: -25px; }
	40% { top: -50px; }
	60% { top: -75px; }
	80% { top: -100px; }
}

.left_hit1 { color:#E4007F; }
.wr_content_hit1 { line-height:1.0em; }