﻿.sub_nav {
    width:1600px;
    height:80px;
    margin:auto auto;
    padding:60px 0px 100px 0px;
}

    .sub_nav .sub_menu {
        padding:0px;
        margin:0px;
        list-style:none;
        display:flex;
        align-items:center;
        height:100%;
    }

    .sub_nav .sub_menu li {
        flex-grow:1;
        height:100%;
    }

        .sub_nav .sub_menu li button {
            font-size: 24px;
            width: 100%;
            height: 100%;
            background: none;
            border: none;
            color: #606060;
            border: 1px solid #e0e0e0;
            border-right: none;
            cursor:pointer;
        }

            .sub_nav .sub_menu li:last-child button {
                border-right: 1px solid #e0e0e0;
            }

            .sub_nav .sub_menu li button.sel {
                font-weight: bold;
                color: #fff;
                background: #031330;
                border: none;
            }

        .sub_nav .sub_menu li button:hover {
            background: #f0f0f0;
        }
        .sub_nav .sub_menu li button.sel:hover {
            background: #132340;
        }