       ul#Branch_top_wrap{border:1px solid #e0e0e0; border-top:1px solid #f58770; height: 40px; margin: 0; padding: 0;color:#333; background-color:#fff;}
        ul#Branch_top_wrap li{ float: left; display: block; height: 100%; width:160px; position: relative;  line-height: 40px; vertical-align: middle; font-size: 15px;}
        
        /*예약 바로가기*/
        ul#Branch_top_wrap a{
            color:#333;
            text-align: center;
        }
        ul#Branch_top_wrap a.reserve li{
            color:#333;
            -webkit-transition: all 0.3s ease-out;
            -moz-transition: all 0.3s ease-out;
            -ms-transition: all 0.3s ease-out;
            -o-transition: all 0.3s ease-out;
            transition: all 0.3s ease-out;
        }
        ul#Branch_top_wrap a.reserve:hover li{
            color:#fff; 
            background-color:#f58770;
            -webkit-transition: all 0.3s ease-out;
            -moz-transition: all 0.3s ease-out;
            -ms-transition: all 0.3s ease-out;
            -o-transition: all 0.3s ease-out;
            transition: all 0.3s ease-out;
        }
        /*지점안내*/
        ul#Branch_top_wrap li#branch_top{cursor: pointer;border-right:1px solid #e0e0e0;border-left:1px solid #e0e0e0;}
        ul#Branch_top_wrap li#branch_top span{
            text-align: left; 
            margin-left: 15px;
            color:#333;
            -webkit-transition: all 0.3s ease-out;
            -moz-transition: all 0.3s ease-out;
            -ms-transition: all 0.3s ease-out;
            -o-transition: all 0.3s ease-out;
            transition: all 0.3s ease-out;
}
        ul#Branch_top_wrap li#branch_top:hover span{
            color:#f58770;
            -webkit-transition: all 0.3s ease-out;
            -moz-transition: all 0.3s ease-out;
            -ms-transition: all 0.3s ease-out;
            -o-transition: all 0.3s ease-out;
            transition: all 0.3s ease-out;
        }
        
        /*지점세부*/
        ul#Branch_top_wrap li ul.branch_sub{border:1px solid #e0e0e0; position: absolute; top:39px; left:-1px; margin: 0; padding: 0; z-index: 999; width:160px; border-top:0px;}
        ul#Branch_top_wrap li ul.branch_sub a{}
        ul#Branch_top_wrap li ul.branch_sub a:hover{
            color:#f58770;
        }
        ul#Branch_top_wrap li ul.branch_sub li{border:0;  display:inline; width:50%; text-align: center;  margin: 0; padding: 0; float: left;}

        ul#Branch_top_wrap li ul.branch_sub a:nth-of-type(even) li{}
        ul#Branch_top_wrap li ul.branch_sub a:nth-of-type(even) li:before{content: ""; width:1px; background-color:#eee; position: absolute; left:0; left:-2px; top:13px; bottom:13px; height:14px;}

        


/* branch-dropdown */
.branch-dropdown {
    position: relative;
    width: 200px;
    margin: 0 auto;


    /* Styles */
    cursor: pointer;
    outline: none;
}

.branch-dropdown:after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    right: 15px;
    top: 18px;
    margin-top: -3px;
    border-width: 10px 6px 0 6px;
    border-style: solid;
    border-color: #f58770 transparent;
}

.branch-dropdown .dropdown {
  /* Size & position */
    position: absolute;
    top: 100%;
    left: -5px;
    right: 0px;

    /* Styles */
    background: white;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    list-style: none;

    /* Hiding */
    opacity: 0;
    pointer-events: none;
}

.branch-dropdown .dropdown li a {
    display: block;
    text-decoration: none;
    color: #333;
    border-left: 5px solid;
    padding: 10px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.branch-dropdown .dropdown li i {
    margin-right: 5px;
    color: inherit;
    vertical-align: middle;
}



/* Active state */
ul#Branch_top_wrap li.active span{
color:#f58770 !important;
}
.branch-dropdown.active:after {
    border-width: 0 6px 10px 6px;
}

.branch-dropdown.active .dropdown {
    opacity: 1;
    pointer-events: auto;
}

/* No CSS3 support */

.no-opacity       .branch-dropdown .dropdown,
.no-pointerevents .branch-dropdown .dropdown {
    display: none;
    opacity: 1; 
    pointer-events: auto; 
}

.branch-dropdown.active .dropdown{
    display: block;
}

@media all and (max-width: 900px) {
    ul#Branch_top_wrap { display: none !important; }
}