.TabList {
        /* border: 1px solid #ECECED; */
        margin-bottom: 10px;
}
.TabList .HeaderTitle {
        background: none repeat-y scroll left bottom #2D66AB;
        height: 30px;
        padding-left: 20px;
        text-align: left;
}
.TabList .HeaderTitle span {
        color: #FFFFFF;
        font: bold 11pt/30px tahoma;
}
.TabList ul.HeaderWrap {
        display: inline-block;
        list-style: none outside none;
        /* margin: 8px 0; */
        padding: 0;
        width: 100%;
        background: #12a73f;
        margin: 0;
}
.TabList .HeaderWrap .ActiveTab, .NormalTab {
        background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
        cursor: pointer;
        float: left;
        margin: 0;
        padding: 0 6px;
        transition: all 0.3s ease 0.1s;
}
.TabList .HeaderWrap .ActiveTab {
        background: red;
        /* border-bottom: 3px solid #007CC2; */
}
.TabList .HeaderWrap .NormalTab:hover {
        background: none repeat scroll 0 0 rgb(255 0 0);
        /* border-bottom: 3px solid #007CC2; */
}
.TabList .HeaderWrap .NormalTab:hover .text {
        color: #fff;
}
.TabList .HeaderWrap .ActiveTab .text {
        color: #fff;
        display: inline-block;
        font: 600 14px/30px arial;
        /* padding: 5px; */
}
.TabList .HeaderWrap .NormalTab .text {
        color: #fff;
        display: inline-block;
        font: 600 14px/30px arial;
        /* padding: 5px; */
}
.TabList .Wrap {
        text-align: center;
}
.TabList .Wrap .Container {
        display: inline-block;
        list-style: none outside none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
}
.TabList .Wrap .Container .Item {
        display: inline-block;
        /* margin: 10px 5px 0; */
        vertical-align: top;
        width: calc(100% / 5 - 8px);
}
.TabList .Wrap .Container .Item a{
        display: inline-block;
        width: 100%;
        text-align: left;
}
.TabList .Wrap .Container .Item:hover .image {
        border: 2px solid #2D66AB;
}
.TabList .Wrap .Container .Item .image {
        border: 2px solid #C0C0C0;
        height: 110px;
        transition: all 0.5s ease 0.2s;
        width: 100%;
        object-fit: cover;
        margin-bottom: 10px;
}
.TabList .Wrap .Container .Item p {
        color: #424242;
        display: none;
        text-align: justify;
}
.TabList .Wrap .Container .Item h2 {
        color: #222222;
        font: 10pt arial;
        height: 70px;
        text-align: justify;
}
.TabList .Wrap .Container .Item:hover h2 {
        color: #2D66AB;
}
.TabList .TabListPage {
        padding: 10px;
        text-align: right;
}
.TabList .TabListPage .CurrentPage {
        color: #444444;
        font: bold 11pt tahoma;
}
.TabList .TabListPage .ButtonPage {
        font: 9pt tahoma;
}
@media only screen and (max-width: 768px){
        div.TabList .Wrap .Container .Item{
                width: calc(100% / 2 - 5px) !important;
        }
        div.TabList .Wrap .Container .Item .image{
                min-width: 100%;
                height: 100px !important;
        }
}
