.horizontal_menu_t{
    display: grid;
    grid-template-columns: auto auto auto auto auto auto auto auto auto auto;
    margin-left: 10px;
    margin-right: 10px; 
}
.horizontal_menu_t a{
    border-bottom: solid 3px rgba(0,0,0,0.1);
    background-color: #00547e;
    color: #fff;
    font-size: 16px;
    text-align: center;
    padding: 9px 5px 6px 5px;
    text-decoration: none;
    font-weight: 700;
    position: relative;
}
.horizontal_menu_t a:hover {
    text-decoration: underline;
}
.horizontal_menu_t a:after {
    content: "";
    position: absolute;
    top: 4px;
    right: 0px;
    bottom: 4px;
    border-left: 1px solid #316d8c;
  }
.horizontal_menu_t .left{
    border-radius: 7px 0px 0px 7px;
}
.horizontal_menu_t .right{
    border-radius: 0px 7px 7px 0px;
    border-right: none;
}

@media screen and (min-width:1000px) and (max-width:1200px) { 
    .horizontal_menu_t a{
        font-size: 14px;
        padding: 9px 4px 6px 4px;
    }
}






.horizontal_menu_b{
    display: grid;
    grid-template-columns: auto auto auto auto auto auto auto  ;
    padding: 0px 15px;
    margin-left: 10px;
    margin-right: 10px; 
    margin-bottom: 10px;
}
.horizontal_menu_b a{
    background-color: #f7f6f6;
    color: #333333;
    font-size: 13px;
    text-align: center;
    padding: 9px 5px 6px 5px;
    text-decoration: none;
    font-weight: 700;
    position: relative;
}
.horizontal_menu_b a:hover{
    text-decoration: underline;
}
.horizontal_menu_b a:after {
    content: "";
    position: absolute;
    top: 4px;
    right: 0px;
    bottom: 4px;
    border-left: 1px solid #cccccc;
}
.horizontal_menu_b .left{

}
.horizontal_menu_b .right{
    border-right: none;
}
.horizontal_menu_b .right:after{
    border-left: none;
}

@media screen and (min-width:1000px) and (max-width:1100px) { 
    .horizontal_menu_b a{
        font-size: 12px;
        padding: 9px 4px 6px 4px;
    }
}

