@charset "utf-8";

/* 연혁 : S */
.ws_history_wrap {}
.ws_history_wrap dl {padding:60px 0;border-bottom:1px solid #333;}
.ws_history_wrap dl dt {display:inline-block;position:relative;vertical-align:top;width:22%;color:#333;font-weight:bold;font-size:3em;line-height:normal;letter-spacing:-1px}
.ws_history_wrap dl dt span {position:absolute;top:15px;left:40px;color:#eee;z-index:-1}
.ws_history_wrap dl dd {display:inline-block;vertical-align:top;width:75%}
.ws_history_wrap dl dd ul {}
.ws_history_wrap dl dd ul li {margin-bottom:15px;padding-bottom:15px;border-bottom:1px solid #ddd}
.ws_history_wrap dl dd ul li:last-child {margin-bottom:0;border:none;}
.ws_history_wrap dl dd ul li strong {display:inline-block;vertical-align:top;width:15%;font-size:1.3em;letter-spacing:-0.5px}
.ws_history_wrap dl dd ul li span {display:inline-block;vertical-align:top;width:84%;font-size:1.3em;line-height:1.5em;letter-spacing:-0.5px}
.ws_history_wrap dl dd ul li ul {display:inline-block;vertical-align:top}
.ws_history_wrap dl dd ul li ul li {margin-bottom:10px;padding-bottom:0;border:none;font-size:1.3em;line-height:1.5em;letter-spacing:-0.5px;list-style:circle}

 /* ================================================== *
 *
 *     MEDIA EXTEND - MAX DEVICE
 *
 * ================================================== */

/* MEDIA (모바일 이하) 767px 이하 */
@media all and (max-width:767px) {
	.ws_history_wrap dl dt {width:100%;margin-bottom:30px}
	.ws_history_wrap dl dd {width:100%}
	.ws_history_wrap dl dd ul li strong {display:block;width:100%;margin-bottom:5px}
	.ws_history_wrap dl dd ul li ul li {margin-left:20px;font-size:1.2em}
}
/* MEDIA (태블릿 이하) 991px 이하 */
@media all and (max-width:991px) {

}
/* MEDIA (데스크탑 이하) 1279px 이하 */
@media all and (max-width:1279px) {

}

 /* ================================================== *
 *
 *     MEDIA EXTEND - MIN DEVICE
 *
 * ================================================== */
 
/* MEDIA (태블릿 이상) 768px 이상 */
@media all and (min-width:768px) {

}
/* MEDIA (데스크탑 이상) 992px 이상 */
@media all and (min-width:992px) {

}
/* MEDIA (큰화면 데스크탑 이상) 1280px 이상 */
@media all and (min-width:1280px) {
	
}
 
 /* ================================================== *
 *
 *     MEDIA EXTEND - AND DEVICE
 *
 * ================================================== */

/* MEDIA (태블릿 구간만) 768px ~ 991px */
@media (min-width:768px) and (max-width:991px) {
	
}
/* MEDIA (데스크탑 구간만) 992px ~ 1279px */
@media (min-width:992px) and (max-width:1279px) {

}
/* 연혁 : E */