/* 공통 클래스. 나중에 다른데 모아놓을까? */
.input {
    border:1px solid #ccc;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    box-shadow: 1px 1px 5px #eee;
    font-size:13px;
}
.input[type="number"],
.input[type="text"] {
    padding:6px;
    height:28px;
}
.input[type="password"] {
    padding:3px 6px;
}
select.input{
    height:28px;
}
select.multiselect {
    height:140px;
    min-width:100px;
}
select.multiselect option {
    padding:4px;
}
select.multiselect.multiselect-large {
    width:200px;
    height:240px;
    margin-right:10px;
}
.input:focus {
    background:#eee;
    outline:none !important;
    border:2px solid #5bc0de;
}
.input[type=text] {
    border:1px solid #ccc;
    height:26px;
}
.cs-admin-wrap {
    padding:10px 0;
    min-height:400px;
}
.rcontent {
    width:100%;
}
#cs_main {
    float:left;
}

/* 메뉴, 게시판 관리 */
.menu-list {
    width:200px;
    float:left;
    margin-right:10px;
}
.menu-list > ul {
    padding:6px;
    max-height:600px;
    border:1px solid #ddd;
    overflow-y: scroll;
}
.menu-list > ul li {
    text-overflow: ellipsis;
    white-space: nowrap;
    word-wrap: normal !important;
    display: block;
    overflow: hidden;
}
.menu-list .on {
    background:#eee;
    font-weight:bold;
}
.admin-table,
#menu-view,
#bbs-view {
    width:100%;
    max-width:800px;
    float:left;
}

/* 메세지 */
.message {
    color:#fff;
    position:absolute;
    top:0;
    left:0;
    z-index:1000;
    width:100%;
}
.message li {
    padding:6px;
}
.message li p {
    padding:0;
    margin:0;
}
.message .msg {
    background:#5bc0de;
}
.message .error {
    background:#c9302c;
}
/* @메세지 */

/* 왼쪽 메뉴 */
.cs-nav {
    width:100%;
    border:1px solid #fff;
    border-bottom:1px solid #ccc;
}
.cs-nav .csa-nav {
    text-align:center;
    padding:8px 0;
    float:left;
}
.cs-nav .csa-nav {
    cursor:pointer;
}
.cs-nav .csa-nav:hover {
    background:#eee;
}
.cs-nav .csa-nav.on {
    font-weight:bold;
    background:#eee;
}

/* @왼쪽 메뉴 */

/* pagebox */
.pagebox {}
.pagebox button {
    padding:6px;
    background:#ddd;
    border:1px solid #aaa;
}
.pagebox span.selected,
.pagebox a.notselected {
    padding:6px;
}
.pagebox span.selected:hover,
.pagebox a.notselected:hover {
    background:#eee;
}
.pagebox span.selected {
    font-weight:bold;
    font-size:14px;
}
/* @pagebox */

.module-box {
    height:100%;
    border-top:8px solid;
    border-bottom:8px solid;
    padding:10px 20px;
}
.module-list {
    height:380px;
    border:1px solid #ccc;
    overflow-y: scroll;
    margin:0;
    padding:0 10px;
    list-style-type:none;
}
.module-list li {
    padding:5px;
}
.module-list li:hover {
    background:#eee;
    cursor:pointer;
}
.module-list li.on {
    font-weight:bold;
    background:#ccc;
}

/* 페이지네이션 */
.pagination {
    padding:2px 10px;
}
.pagination span {
    padding:4px;
    font-size:16px;
}
/* @페이지네이션 */

/* 접속통계 */
#stats-month {
    height:300px;
    position:relative;
}
#stats-month .month {
    height:300px;
    float:left;
    border-right:1px solid #ccc;
    border-left:1px solid #ccc;
    width:8.3%;
    text-align:center;
    position:relative;
}
#stats-month .month .bar {
    position:absolute;
    bottom:0;
    width:60%;
    margin:auto 20%;
    background:#eee;
    z-index:-1;
    display:none;
}
#stats-day {}
/* @접속통계 */

/* 게시판 */
.table.table-orderby {}
.table.table-orderby th[data-sort='asc']:after {content:'▼';}
.table.table-orderby th[data-sort='desc']:after {content:'▲';}
