@charset "utf-8";
/* CSS Document */


.wrap {
	width:100%;
	margin:0 auto;
	position:relative;
}

.box {
	
}/*수정전 padding:0 10px;*/

.box .visual {
	margin-bottom:10px;
}
.box .visual img {
	width:100%;
}

.box .btn1 {
	width:50%;
	float:left;
	margin-bottom:10px;
}
.box .btn1 img {
	width:100%;
}

/*.wrap_bg {
	margin:0 auto;
	overflow:hidden;
	background:#e1e0e0; 
	padding:30px 0 30px 0;
}*/


/* 탭 */
* { box-sizing: border-box; }
.tabs {
    display: flex;
    flex-wrap: wrap;
	/*코드추가*/width:100%;
	border-collapse:collapse;
	border:1px solid #ccc;
} /*수정전 margin:20px auto*/
.tabs label {
    width: 33.3%; 
    order: 1;
    display: block;
    padding: 10px 15px;
    text-align: left;
    color: #acb1be;
    cursor: pointer;
    transition: background ease 0.2s;
	background: url('../img/plus_btn.gif') #FFF;
    background-position: center right;
    background-repeat: no-repeat;
	border-collapse:collapse;
	text-align:center;
}/*수정전 width: 46%; ++  margin:1%; width: 46%; border-radius: 7px;*/


/* 박스배경 */
.tabs .tab {
    order: 99;
    flex-grow: 1;
    width: 100%;
    display: none;
    padding: 18px 20px 10px 20px;
    background: #FFF;
} 
.tabs input[type="radio"] {
    display: none;
}
/* 탭 눌렀을때 컬러 */
.tabs input[type="radio"]:checked + label {
    color: #fff;
	background: url('../img/plus_btn.gif') #2866b3;
    background-position: center right;
    background-repeat: no-repeat;
	text-align:center;
	font-weight:bold;
}
.tabs input[type="radio"]:checked + label + .tab {
    display: block;
}


/* 공지사항 내용 */
.notice_list {
    /*border-bottom: 1px dashed #dedede;*/
}
.notice_list ul {
    overflow-y: auto;
    overflow-x: hidden;
	list-style:none;
	margin:0;
	padding:0;
}
.notice_list ul li {
    margin:5px 0;
    color: #656565;
	line-height:25px;
	font-size: 14px;
	letter-spacing:-0.5pt;
}
.notice_list ul li a {
    width: 100%;
    display: inline-block;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    color: #232323;
	line-height:25px;
	font-size:14px;
}
.notice_list ul li span.cont {
	width:75%;
    font-size: 15px;
    color: #000;
	letter-spacing:-0.5pt;
	margin-right:10px;
	display:inline-block;
}
.notice_list ul li span.date {
	float:right;
	line-height:25px;
}


/* 일정관리 내용 */
.schedule_list {
    /*border-bottom: 1px dashed #dedede;*/
}
.schedule_list ul {
    overflow-y: auto;
    overflow-x: hidden;
	list-style:none;
	margin:0;
	padding:0;
}
.schedule_list ul li {
    margin-bottom: 10px;
    border-bottom: 1px dashed #dedede;
    color: #656565;
	line-height:33px;
	font-size: 15px;
	letter-spacing:-0.5pt;
}
.schedule_list ul li a {
    width: 240px;
    display: inline-block;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    color: #656565;
	line-height:25px;
	font-size:14px;
}
.schedule_list ul li span.period {
    font-size: 15px;
    font-weight: 600;
    color: #232323;
	letter-spacing:-0.5pt;
	margin-right:10px;
}


