    *{
        list-style:  none;
        margin: 0;
        padding: 0;
        text-decoration: none;
    }
    body{
        margin: auto;
    }
    #wrap{
        width: 100%;
        background-color: #F0F6FC;
    }
    #contents_area{
        width: 1400px;
        margin: auto;
    }
    #contents_area div{
        display: inline-block;
        vertical-align: top;
    }
    #search_contents{
        width: 1000px;
        margin-top: 20px;
        background-color: #FFF;
        padding: 30px;
    }
    #search_filter{
        width: 300px;
        margin-top: 20px;
        margin-right: 20px;
        /*border: 1px solid black;*/
        background-color: #FFF;
    }
    #search_filter #header{
        height: 50px;
        padding-top: 15px;
        background-color: #1B1B1E;
        justify-content: space-between;
        align-items: center;
        color: #FFFFFF;
        text-align: center;
        font-size: 25px;
    }
    #search_filter li {
        list-style: none;
        width: 100%;
        height: 50px;
        font-weight: 400;
        cursor: pointer;
        border-bottom: 1px solid #EEE;
    }

    #search_filter li:not(.selected) {
        color: #000000;
    }

    #search_filter li.selected {
        background-color: #EEEEEE;
    }

    #search_filter li.selected a {
        color: #42baf6;
        font-weight: 800;
    }

    #search_filter a {
        color: #000000;
        text-decoration: none;    /* 기본 밑줄 제거 */
        width: 100%;              /* 앵커가 li의 전체 너비를 차지하도록 설정 */
        height: 100%;
        text-align: center;       /* 텍스트 중앙 정렬 */
        display: flex;            /* 플렉스박스 컨테이너로 설정 */
        justify-content: center;  /* 가로 중앙 정렬 */
        align-items: center;      /* 세로 중앙 정렬 */
    }
    #search_contents h1{
        margin-bottom: 30px;
    }
    .faq-tab li{
        display: inline-block;
        width: 80px;
        height: 50px;
        background-color: #EEE;
        font-weight: 800;
    }
    .faq-tab a{
        text-align: center;       /* 텍스트 중앙 정렬 */
        display: flex;            /* 플렉스박스 컨테이너로 설정 */
        justify-content: center;  /* 가로 중앙 정렬 */
        align-items: center;      /* 세로 중앙 정렬 */
        width: 100%;              /* 앵커가 li의 전체 너비를 차지하도록 설정 */
        height: 100%;
    }
    .faq-tab a:not(.selected){
        color: #000;
    }
    .faq-tab a.selected {
        font-weight: bold;
        color: #42baf6;
    }
    #search_contents table a{
        color: #000;
    }
    #search_contents table{
        width: 100%;
        border-collapse: collapse;
        margin-top: 20px;
    }
    #search_contents tr:first-child{
        background-color: #EEE;
        font-weight: 1000;
    }
    #search_contents td{
        padding: 20px;
    }
    #search_contents ol>li{
        list-style: decimal;
    }
    #search_contents ul>li{
        list-style: initial;
    }
    .pagination{
        width: 100%;
        font-size: 40px;
        color: blue;
        text-align: center;
        margin: 20px 0;
    }
    .pagination span{
        margin: 0 10px;
    }
    .pagination a{
        font-size: 40px;
        color: black;
        margin: 0 10px;
    }