﻿.navbar-bg-color {
    background-color: #0059b3;
}

.flags {
    width:40px;
    height:auto;
}

.divRevenue {
    width: 100%;
    height: auto;
    background-color: lightgray;
    border-radius: 10px;
    margin:10px 0px;
}

.divMainGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 300px));
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    justify-content:center;
    justify-items:center;
}

.e-hidden {
    display:none;
}

.line-t-b {
    border-top: 1px solid gray;
    border-bottom: 1px solid gray;
}

.img-social {
    width:20px;
}

.tdPadding-t-b {
    padding: 5px 0px 5px 0px;
}

.p-l-r-sm {
    padding-left:5px;
    padding-right:5px;
}


/* Extra large devices (large laptops and desktops, 2960px and up) */
@media screen and (max-width: 2960px) {
    #divAnime05 > img {
        width: auto;
    }

    #divAnime06 > img {
        width: auto;
    }

    * {
        font-family: Verdana, Geneva, Tahoma, sans-serif;
    }

    a {
        text-decoration: none;
    }

        a:hover {
            text-decoration: underline;
        }

    .align-left {
        text-align: left;
    }

    .align-center {
        text-align: center;
    }

    .align-right {
        text-align: right;
    }

    .border-dotted {
        border: 1px dotted gray;
    }

    .border-solid {
        border: 1px solid gray;
    }

    .border-radius-small {
        border-radius: 5px;
    }

    .border-radius-large {
        border-radius: 10px;
    }

    .border-color-orange {
        border: 1px solid orange;
    }

    .border-color-gray {
        border: 1px solid gray;
    }

    .bg-color-orange {
        background-color: lightgray;
    }

    .bg-color-trans {
        background-color: transparent;
    }

    .div-container{
        min-height : 600px;
    }

    .dropdown {
        padding-left: 10px;
        padding-right: 10px;
    }

    .font-large {
        font-size: 20px;
    }

    .font-medium {
        font-size: 16px;
    }

    .font-small {
        font-size: 12px;
    }

    .font-x-small {
        font-size: 9px;
    }

    .font-bold {
        font-weight: bold;
    }

    .font-bolder {
        font-weight: bolder;
    }

    .img-carousel {
        height: 75vh;
    }

    .margin-low {
        padding: 10px;
    }

    .margin-medium {
        padding: 20px;
    }

    .margin-high {
        padding: 40px;
    }

    .margin-justify {
        margin: 5px auto 5px auto;
    }

    .m-t-b-low {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .m-t-b-high {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    /*
    .navbar-collapse.collapsing {
        animation : animCollapse 1s ease-out;
    }

    .navbar-collapse.show {
        animation:animShow 1s ease-in;
    }
    */

    .padding-mini {
        padding: 5px;
    }

    .padding-low {
        padding: 10px;
    }

    .padding-medium {
        padding: 20px;
    }

    .padding-high {
        padding: 40px;
    }

    .padding-left-right-low {
        padding: 0px 5px 0px 5px;
    }

    .padding-left-right-medium {
        padding: 0px 10px 0px 10px;
    }

    .p-b-low {
        padding-bottom: 15px;
    }

    .scale-small {
        transform: scale(2)
    }

    .scale-medium {
        transform: scale(4);
    }

    .scale-large {
        transform: scale(6);
    }

    .tbl-row-bg-color > tbody > tr:nth-child(odd) {
        background-color: #48D1CC;
    }

    #ulLoggedIn a:hover {
        background-color: lightgray;
    }

    #ulLoggedOut a:hover {
        background-color: lightgray;
    }

    .width-100-pc {
        width: 100%;
    }

    .width-80-pc {
        width: 80%;
    }

    .width-50-pc {
        width: 50%;
    }

    .width-20-pc {
        width: 20%;
    }


    @keyframes animShow {
        0% {
            transform: translateX(-100%);
        }

        100% {
            transform: translateX(0%);
        }
    }

    @keyframes animCollapse {
        0% {
            transform: translateX(0%);
        }

        100% {
            transform: translateX(-100%);
        }
    }

    .scale_text {
        animation: 2s scale linear infinite;
        -webkit-animation: 2s scale linear infinite;
        -moz-animation: 2s scale linear infinite;
    }

    @-moz-keyframes scale {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }

    @-webkit-keyframes scale {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }

    @keyframes scale {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }


    .blink_text {
        animation: 2s blinker linear infinite;
        -webkit-animation: 2s blinker linear infinite;
        -moz-animation: 2s blinker linear infinite;
    }

    @-moz-keyframes blinker {
        0% {
            opacity: 1.0;
        }

        50% {
            opacity: 0.0;
        }

        100% {
            opacity: 1.0;
        }
    }

    @-webkit-keyframes blinker {
        0% {
            opacity: 1.0;
        }

        50% {
            opacity: 0.0;
        }

        100% {
            opacity: 1.0;
        }
    }

    @keyframes blinker {
        0% {
            opacity: 1.0;
        }

        50% {
            opacity: 0.0;
        }

        100% {
            opacity: 1.0;
        }
    }


    .bounce {
        animation: bounce 1s infinite alternate;
        -webkit-animation: bounce 1s infinite alternate;
    }

    @keyframes bounce {
        from {
            transform: translateX(0px);
        }

        to {
            transform: translateX(-15px);
        }
    }

    @-webkit-keyframes bounce {
        from {
            transform: translateX(0px);
        }

        to {
            transform: translateX(-15px);
        }
    }
    /* Extra large devices (large laptops and desktops, 2560px and up) */
}

/* Extra large devices (large laptops and desktops, 2560px and up) */
@media screen and (max-width: 2560px) {
    #divAnime05 > img {
        width: auto;
    }

    #divAnime06 > img {
        width: auto;
    }

    * {
        font-family: Verdana, Geneva, Tahoma, sans-serif;
    }

    a {
        text-decoration: none;
    }

        a:hover {
            text-decoration: underline;
        }

    .align-left {
        text-align: left;
    }

    .align-center {
        text-align: center;
    }

    .align-right {
        text-align: right;
    }

    .border-dotted {
        border: 1px dotted gray;
    }

    .border-solid {
        border: 1px solid gray;
    }

    .border-radius-small {
        border-radius: 5px;
    }

    .border-radius-large {
        border-radius: 10px;
    }

    .border-color-orange {
        border: 1px solid orange;
    }

    .border-color-gray {
        border: 1px solid gray;
    }

    .bg-color-orange {
        background-color: lightgray;
    }

    .bg-color-trans {
        background-color: transparent;
    }

    .div-container {
        min-height: 600px;
    }

    .dropdown {
        padding-left: 10px;
        padding-right: 10px;
    }

    .font-large {
        font-size: 20px;
    }

    .font-medium {
        font-size: 16px;
    }

    .font-small {
        font-size: 12px;
    }

    .font-x-small {
        font-size: 9px;
    }

    .font-bold {
        font-weight: bold;
    }

    .font-bolder {
        font-weight: bolder;
    }

    .img-carousel {
        height: 75vh;
    }

    .margin-low {
        padding: 10px;
    }

    .margin-medium {
        padding: 20px;
    }

    .margin-high {
        padding: 40px;
    }

    .margin-justify {
        margin: 5px auto 5px auto;
    }

    .m-t-b-low {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .m-t-b-high {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    /*
    .navbar-collapse.collapsing {
        animation : animCollapse 1s ease-out;
    }

    .navbar-collapse.show {
        animation:animShow 1s ease-in;
    }
    */


    .padding-mini {
        padding: 5px;
    }

    .padding-low {
        padding: 10px;
    }

    .padding-medium {
        padding: 20px;
    }

    .padding-high {
        padding: 40px;
    }

    .padding-left-right-low {
        padding: 0px 5px 0px 5px;
    }

    .padding-left-right-medium {
        padding: 0px 10px 0px 10px;
    }

    .p-b-low {
        padding-bottom: 15px;
    }

    .scale-small {
        transform: scale(2)
    }

    .scale-medium {
        transform: scale(4);
    }

    .scale-large {
        transform: scale(6);
    }

    .tbl-row-bg-color > tbody > tr:nth-child(odd) {
        background-color: #48D1CC;
    }

    #ulLoggedIn a:hover {
        background-color: lightgray;
    }

    #ulLoggedOut a:hover {
        background-color: lightgray;
    }

    .width-100-pc {
        width: 100%;
    }

    .width-80-pc {
        width: 80%;
    }

    .width-50-pc {
        width: 50%;
    }

    .width-20-pc {
        width: 20%;
    }



    @keyframes animShow {
        0% {
            transform: translateX(-100%);
        }

        100% {
            transform: translateX(0%);
        }
    }

    @keyframes animCollapse {
        0% {
            transform: translateX(0%);
        }

        100% {
            transform: translateX(-100%);
        }
    }

    .scale_text {
        animation: 2s scale linear infinite;
        -webkit-animation: 2s scale linear infinite;
        -moz-animation: 2s scale linear infinite;
    }

    @-moz-keyframes scale {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }

    @-webkit-keyframes scale {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }

    @keyframes scale {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }


    .blink_text {
        animation: 2s blinker linear infinite;
        -webkit-animation: 2s blinker linear infinite;
        -moz-animation: 2s blinker linear infinite;
    }

    @-moz-keyframes blinker {
        0% {
            opacity: 1.0;
        }

        50% {
            opacity: 0.0;
        }

        100% {
            opacity: 1.0;
        }
    }

    @-webkit-keyframes blinker {
        0% {
            opacity: 1.0;
        }

        50% {
            opacity: 0.0;
        }

        100% {
            opacity: 1.0;
        }
    }

    @keyframes blinker {
        0% {
            opacity: 1.0;
        }

        50% {
            opacity: 0.0;
        }

        100% {
            opacity: 1.0;
        }
    }


    .bounce {
        animation: bounce 1s infinite alternate;
        -webkit-animation: bounce 1s infinite alternate;
    }

    @keyframes bounce {
        from {
            transform: translateX(0px);
        }

        to {
            transform: translateX(-15px);
        }
    }

    @-webkit-keyframes bounce {
        from {
            transform: translateX(0px);
        }

        to {
            transform: translateX(-15px);
        }
    }
    /* Extra large devices (large laptops and desktops, 2560px and up) */
}

/* Extra large devices (large laptops and desktops, 1920px and up) */
@media screen and (max-width: 1920px) {
    #divAnime05 > img{
        width:auto;
    }


    #divAnime06 > img {
        width: auto;
    }

    * {
        font-family: Verdana, Geneva, Tahoma, sans-serif;
    }

    a {
        text-decoration: none;
    }

        a:hover {
            text-decoration: underline;
        }

    .align-left {
        text-align: left;
    }

    .align-center {
        text-align: center;
    }

    .align-right {
        text-align: right;
    }

    .border-dotted {
        border: 1px dotted gray;
    }

    .border-solid {
        border: 1px solid gray;
    }

    .border-radius-small {
        border-radius: 5px;
    }

    .border-radius-large {
        border-radius: 10px;
    }

    .border-color-orange {
        border: 1px solid orange;
    }

    .border-color-gray {
        border: 1px solid gray;
    }

    .bg-color-orange {
        background-color: lightgray;
    }

    .bg-color-trans {
        background-color: transparent;
    }

    .div-container {
        min-height: 600px;
    }

    .dropdown {
        padding-left: 10px;
        padding-right: 10px;
    }

    .font-large {
        font-size: 20px;
    }

    .font-medium {
        font-size: 16px;
    }

    .font-small {
        font-size: 12px;
    }

    .font-x-small {
        font-size: 9px;
    }

    .font-bold {
        font-weight: bold;
    }

    .font-bolder {
        font-weight: bolder;
    }

    .img-carousel {
        height: 75vh;
    }

    .margin-low {
        padding: 10px;
    }

    .margin-medium {
        padding: 20px;
    }

    .margin-high {
        padding: 40px;
    }

    .margin-justify {
        margin: 5px auto 5px auto;
    }

    .m-t-b-low {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .m-t-b-high {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    /*
    .navbar-collapse.collapsing {
        animation : animCollapse 1s ease-out;
    }

    .navbar-collapse.show {
        animation:animShow 1s ease-in;
    }
    */


    .padding-mini {
        padding: 5px;
    }

    .padding-low {
        padding: 10px;
    }

    .padding-medium {
        padding: 20px;
    }

    .padding-high {
        padding: 40px;
    }

    .padding-left-right-low {
        padding: 0px 5px 0px 5px;
    }

    .padding-left-right-medium {
        padding: 0px 10px 0px 10px;
    }

    .p-b-low {
        padding-bottom: 15px;
    }

    .scale-small {
        transform: scale(2)
    }

    .scale-medium {
        transform: scale(4);
    }

    .scale-large {
        transform: scale(6);
    }

    .tbl-row-bg-color > tbody > tr:nth-child(odd) {
        background-color: #48D1CC;
    }

    #ulLoggedIn a:hover {
        background-color: lightgray;
    }

    #ulLoggedOut a:hover {
        background-color: lightgray;
    }

    .width-100-pc {
        width: 100%;
    }

    .width-80-pc {
        width: 80%;
    }

    .width-50-pc {
        width: 50%;
    }

    .width-20-pc {
        width: 20%;
    }


    @keyframes animShow {
        0% {
            transform: translateX(-100%);
        }

        100% {
            transform: translateX(0%);
        }
    }

    @keyframes animCollapse {
        0% {
            transform: translateX(0%);
        }

        100% {
            transform: translateX(-100%);
        }
    }

    .scale_text {
        animation: 2s scale linear infinite;
        -webkit-animation: 2s scale linear infinite;
        -moz-animation: 2s scale linear infinite;
    }

    @-moz-keyframes scale {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }

    @-webkit-keyframes scale {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }

    @keyframes scale {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }


    .blink_text {
        animation: 2s blinker linear infinite;
        -webkit-animation: 2s blinker linear infinite;
        -moz-animation: 2s blinker linear infinite;
    }

    @-moz-keyframes blinker {
        0% {
            opacity: 1.0;
        }

        50% {
            opacity: 0.0;
        }

        100% {
            opacity: 1.0;
        }
    }

    @-webkit-keyframes blinker {
        0% {
            opacity: 1.0;
        }

        50% {
            opacity: 0.0;
        }

        100% {
            opacity: 1.0;
        }
    }

    @keyframes blinker {
        0% {
            opacity: 1.0;
        }

        50% {
            opacity: 0.0;
        }

        100% {
            opacity: 1.0;
        }
    }


    .bounce {
        animation: bounce 1s infinite alternate;
        -webkit-animation: bounce 1s infinite alternate;
    }

    @keyframes bounce {
        from {
            transform: translateX(0px);
        }

        to {
            transform: translateX(-15px);
        }
    }

    @-webkit-keyframes bounce {
        from {
            transform: translateX(0px);
        }

        to {
            transform: translateX(-15px);
        }
    }
    /* Extra large devices (large laptops and desktops, 1920px and up) */
}

/* Extra large devices (large laptops and desktops, 1680px and up) */
@media screen and (max-width: 1680px) {
    #divAnime05 > img {
        width: auto;
    }

    #divAnime06 > img {
        width: auto;
    }

    * {
        font-family: Verdana, Geneva, Tahoma, sans-serif;
    }

    a {
        text-decoration: none;
    }

        a:hover {
            text-decoration: underline;
        }

    .align-left {
        text-align: left;
    }

    .align-center {
        text-align: center;
    }

    .align-right {
        text-align: right;
    }

    .border-dotted {
        border: 1px dotted gray;
    }

    .border-solid {
        border: 1px solid gray;
    }

    .border-radius-small {
        border-radius: 5px;
    }

    .border-radius-large {
        border-radius: 10px;
    }

    .border-color-orange {
        border: 1px solid orange;
    }

    .border-color-gray {
        border: 1px solid gray;
    }

    .bg-color-orange {
        background-color: lightgray;
    }

    .bg-color-trans {
        background-color: transparent;
    }

    .div-container {
        min-height: 600px;
    }

    .dropdown {
        padding-left: 10px;
        padding-right: 10px;
    }

    .font-large {
        font-size: 20px;
    }

    .font-medium {
        font-size: 16px;
    }

    .font-small {
        font-size: 12px;
    }

    .font-x-small {
        font-size: 9px;
    }

    .font-bold {
        font-weight: bold;
    }

    .font-bolder {
        font-weight: bolder;
    }

    .img-carousel {
        height: 75vh;
    }

    .margin-low {
        padding: 10px;
    }

    .margin-medium {
        padding: 20px;
    }

    .margin-high {
        padding: 40px;
    }

    .margin-justify {
        margin: 5px auto 5px auto;
    }

    .m-t-b-low {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .m-t-b-high {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    /*
    .navbar-collapse.collapsing {
        animation : animCollapse 1s ease-out;
    }

    .navbar-collapse.show {
        animation:animShow 1s ease-in;
    }
    */

    .padding-mini {
        padding: 5px;
    }

    .padding-low {
        padding: 10px;
    }

    .padding-medium {
        padding: 20px;
    }

    .padding-high {
        padding: 40px;
    }

    .padding-left-right-low {
        padding: 0px 5px 0px 5px;
    }

    .padding-left-right-medium {
        padding: 0px 10px 0px 10px;
    }

    .p-b-low {
        padding-bottom: 15px;
    }

    .scale-small {
        transform: scale(2)
    }

    .scale-medium {
        transform: scale(4);
    }

    .scale-large {
        transform: scale(6);
    }

    .tbl-row-bg-color > tbody > tr:nth-child(odd) {
        background-color: #48D1CC;
    }

    #ulLoggedIn a:hover {
        background-color: lightgray;
    }

    #ulLoggedOut a:hover {
        background-color: lightgray;
    }

    .width-100-pc {
        width: 100%;
    }

    .width-80-pc {
        width: 80%;
    }

    .width-50-pc {
        width: 50%;
    }

    .width-20-pc {
        width: 20%;
    }


    @keyframes animShow {
        0% {
            transform: translateX(-100%);
        }

        100% {
            transform: translateX(0%);
        }
    }

    @keyframes animCollapse {
        0% {
            transform: translateX(0%);
        }

        100% {
            transform: translateX(-100%);
        }
    }


    .scale_text {
        animation: 2s scale linear infinite;
        -webkit-animation: 2s scale linear infinite;
        -moz-animation: 2s scale linear infinite;
    }

    @-moz-keyframes scale {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }

    @-webkit-keyframes scale {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }

    @keyframes scale {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }


    .blink_text {
        animation: 2s blinker linear infinite;
        -webkit-animation: 2s blinker linear infinite;
        -moz-animation: 2s blinker linear infinite;
    }

    @-moz-keyframes blinker {
        0% {
            opacity: 1.0;
        }

        50% {
            opacity: 0.0;
        }

        100% {
            opacity: 1.0;
        }
    }

    @-webkit-keyframes blinker {
        0% {
            opacity: 1.0;
        }

        50% {
            opacity: 0.0;
        }

        100% {
            opacity: 1.0;
        }
    }

    @keyframes blinker {
        0% {
            opacity: 1.0;
        }

        50% {
            opacity: 0.0;
        }

        100% {
            opacity: 1.0;
        }
    }


    .bounce {
        animation: bounce 1s infinite alternate;
        -webkit-animation: bounce 1s infinite alternate;
    }

    @keyframes bounce {
        from {
            transform: translateX(0px);
        }

        to {
            transform: translateX(-15px);
        }
    }

    @-webkit-keyframes bounce {
        from {
            transform: translateX(0px);
        }

        to {
            transform: translateX(-15px);
        }
    }
    /* Extra large devices (large laptops and desktops, 1680px and up) */
}

/* Extra large devices (large laptops and desktops, 1600px and up) */
@media screen and (max-width: 1600px) {
    #divAnime05 > img {
        width: auto;
    }

    #divAnime06 > img {
        width: auto;
    }

    * {
        font-family: Verdana, Geneva, Tahoma, sans-serif;
    }

    a {
        text-decoration: none;
    }

        a:hover {
            text-decoration: underline;
        }

    .align-left {
        text-align: left;
    }

    .align-center {
        text-align: center;
    }

    .align-right {
        text-align: right;
    }

    .border-dotted {
        border: 1px dotted gray;
    }

    .border-solid {
        border: 1px solid gray;
    }

    .border-radius-small {
        border-radius: 5px;
    }

    .border-radius-large {
        border-radius: 10px;
    }

    .border-color-orange {
        border: 1px solid orange;
    }

    .border-color-gray {
        border: 1px solid gray;
    }

    .bg-color-orange {
        background-color: lightgray;
    }

    .bg-color-trans {
        background-color: transparent;
    }

    .div-container {
        min-height: 600px;
    }

    .dropdown {
        padding-left: 10px;
        padding-right: 10px;
    }

    .font-large {
        font-size: 20px;
    }

    .font-medium {
        font-size: 16px;
    }

    .font-small {
        font-size: 12px;
    }

    .font-x-small {
        font-size: 9px;
    }

    .font-bold {
        font-weight: bold;
    }

    .font-bolder {
        font-weight: bolder;
    }

    .img-carousel {
        height: 75vh;
    }

    .margin-low {
        padding: 10px;
    }

    .margin-medium {
        padding: 20px;
    }

    .margin-high {
        padding: 40px;
    }

    .margin-justify {
        margin: 5px auto 5px auto;
    }

    .m-t-b-low {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .m-t-b-high {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    /*
    .navbar-collapse.collapsing {
        animation : animCollapse 1s ease-out;
    }

    .navbar-collapse.show {
        animation:animShow 1s ease-in;
    }
    */

    .padding-mini {
        padding: 5px;
    }

    .padding-low {
        padding: 10px;
    }

    .padding-medium {
        padding: 20px;
    }

    .padding-high {
        padding: 40px;
    }

    .padding-left-right-low {
        padding: 0px 5px 0px 5px;
    }

    .padding-left-right-medium {
        padding: 0px 10px 0px 10px;
    }

    .p-b-low {
        padding-bottom: 15px;
    }

    .scale-small {
        transform: scale(2)
    }

    .scale-medium {
        transform: scale(4);
    }

    .scale-large {
        transform: scale(6);
    }

    .tbl-row-bg-color > tbody > tr:nth-child(odd) {
        background-color: #48D1CC;
    }

    #ulLoggedIn a:hover {
        background-color: lightgray;
    }

    #ulLoggedOut a:hover {
        background-color: lightgray;
    }

    .width-100-pc {
        width: 100%;
    }

    .width-80-pc {
        width: 80%;
    }

    .width-50-pc {
        width: 50%;
    }

    .width-20-pc {
        width: 20%;
    }

    @keyframes animShow {
        0% {
            transform: translateX(-100%);
        }

        100% {
            transform: translateX(0%);
        }
    }

    @keyframes animCollapse {
        0% {
            transform: translateX(0%);
        }

        100% {
            transform: translateX(-100%);
        }
    }

    .scale_text {
        animation: 2s scale linear infinite;
        -webkit-animation: 2s scale linear infinite;
        -moz-animation: 2s scale linear infinite;
    }

    @-moz-keyframes scale {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }

    @-webkit-keyframes scale {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }

    @keyframes scale {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }


    .blink_text {
        animation: 2s blinker linear infinite;
        -webkit-animation: 2s blinker linear infinite;
        -moz-animation: 2s blinker linear infinite;
    }

    @-moz-keyframes blinker {
        0% {
            opacity: 1.0;
        }

        50% {
            opacity: 0.0;
        }

        100% {
            opacity: 1.0;
        }
    }

    @-webkit-keyframes blinker {
        0% {
            opacity: 1.0;
        }

        50% {
            opacity: 0.0;
        }

        100% {
            opacity: 1.0;
        }
    }

    @keyframes blinker {
        0% {
            opacity: 1.0;
        }

        50% {
            opacity: 0.0;
        }

        100% {
            opacity: 1.0;
        }
    }


    .bounce {
        animation: bounce 1s infinite alternate;
        -webkit-animation: bounce 1s infinite alternate;
    }

    @keyframes bounce {
        from {
            transform: translateX(0px);
        }

        to {
            transform: translateX(-15px);
        }
    }

    @-webkit-keyframes bounce {
        from {
            transform: translateX(0px);
        }

        to {
            transform: translateX(-15px);
        }
    }
    /* Extra large devices (large laptops and desktops, 1600px and up) */
}

/* Large devices (laptops/desktops, 1440px and up) */
@media screen and (max-width: 1440px) {
    #divAnime05 > img {
        width: auto;
    }

    #divAnime06 > img {
        width: auto;
    }

    * {
        font-family: Verdana, Geneva, Tahoma, sans-serif;
    }

    a {
        text-decoration: none;
    }

        a:hover {
            text-decoration: underline;
        }

    .align-left {
        text-align: left;
    }

    .align-center {
        text-align: center;
    }

    .align-right {
        text-align: right;
    }

    .border-dotted {
        border: 1px dotted gray;
    }

    .border-solid {
        border: 1px solid gray;
    }

    .border-radius-small {
        border-radius: 5px;
    }

    .border-radius-large {
        border-radius: 10px;
    }

    .border-color-orange {
        border: 1px solid orange;
    }

    .border-color-gray {
        border: 1px solid gray;
    }

    .bg-color-orange {
        background-color: lightgray;
    }

    .bg-color-trans {
        background-color: transparent;
    }

    .div-container {
        min-height: 600px;
    }

    .dropdown {
        padding-left: 10px;
        padding-right: 10px;
    }

    .font-large {
        font-size: 20px;
    }

    .font-medium {
        font-size: 16px;
    }

    .font-small {
        font-size: 12px;
    }

    .font-x-small {
        font-size: 9px;
    }

    .font-bold {
        font-weight: bold;
    }

    .font-bolder {
        font-weight: bolder;
    }

    .img-carousel {
        height: 75vh;
    }

    .margin-low {
        padding: 10px;
    }

    .margin-medium {
        padding: 20px;
    }

    .margin-high {
        padding: 40px;
    }

    .margin-justify {
        margin: 5px auto 5px auto;
    }

    .m-t-b-low {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .m-t-b-high {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    /*
    .navbar-collapse.collapsing {
        animation : animCollapse 1s ease-out;
    }

    .navbar-collapse.show {
        animation:animShow 1s ease-in;
    }
    */


    .padding-mini {
        padding: 5px;
    }

    .padding-low {
        padding: 10px;
    }

    .padding-medium {
        padding: 20px;
    }

    .padding-high {
        padding: 40px;
    }

    .padding-left-right-low {
        padding: 0px 5px 0px 5px;
    }

    .padding-left-right-medium {
        padding: 0px 10px 0px 10px;
    }

    .p-b-low {
        padding-bottom: 15px;
    }

    .scale-small {
        transform: scale(2)
    }

    .scale-medium {
        transform: scale(4);
    }

    .scale-large {
        transform: scale(6);
    }

    .tbl-row-bg-color > tbody > tr:nth-child(odd) {
        background-color: #48D1CC;
    }

    #ulLoggedIn a:hover {
        background-color: lightgray;
    }

    #ulLoggedOut a:hover {
        background-color: lightgray;
    }

    .width-100-pc {
        width: 100%;
    }

    .width-80-pc {
        width: 80%;
    }

    .width-50-pc {
        width: 50%;
    }

    .width-20-pc {
        width: 20%;
    }

    @keyframes animShow {
        0% {
            transform: translateX(-100%);
        }

        100% {
            transform: translateX(0%);
        }
    }

    @keyframes animCollapse {
        0% {
            transform: translateX(0%);
        }

        100% {
            transform: translateX(-100%);
        }
    }

    .scale_text {
        animation: 2s scale linear infinite;
        -webkit-animation: 2s scale linear infinite;
        -moz-animation: 2s scale linear infinite;
    }

    @-moz-keyframes scale {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }

    @-webkit-keyframes scale {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }

    @keyframes scale {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }


    .blink_text {
        animation: 2s blinker linear infinite;
        -webkit-animation: 2s blinker linear infinite;
        -moz-animation: 2s blinker linear infinite;
    }

    @-moz-keyframes blinker {
        0% {
            opacity: 1.0;
        }

        50% {
            opacity: 0.0;
        }

        100% {
            opacity: 1.0;
        }
    }

    @-webkit-keyframes blinker {
        0% {
            opacity: 1.0;
        }

        50% {
            opacity: 0.0;
        }

        100% {
            opacity: 1.0;
        }
    }

    @keyframes blinker {
        0% {
            opacity: 1.0;
        }

        50% {
            opacity: 0.0;
        }

        100% {
            opacity: 1.0;
        }
    }


    .bounce {
        animation: bounce 1s infinite alternate;
        -webkit-animation: bounce 1s infinite alternate;
    }

    @keyframes bounce {
        from {
            transform: translateX(0px);
        }

        to {
            transform: translateX(-15px);
        }
    }

    @-webkit-keyframes bounce {
        from {
            transform: translateX(0px);
        }

        to {
            transform: translateX(-15px);
        }
    }
    /* Large devices (laptops/desktops, 1440px and up) */
}

/* Extra large devices (largelaptops and desktops,1366px and up) */
@media only screen and (max-width: 1366px) {
    #divAnime05 > img {
        width: auto;
    }

    #divAnime06 > img {
        width: auto;
    }

    * {
        font-family: Verdana, Geneva, Tahoma, sans-serif;
    }

    a {
        text-decoration: none;
    }

        a:hover {
            text-decoration: underline;
        }

    .align-left {
        text-align: left;
    }

    .align-center {
        text-align: center;
    }

    .align-right {
        text-align: right;
    }

    .border-dotted {
        border: 1px dotted gray;
    }

    .border-solid {
        border: 1px solid gray;
    }

    .border-radius-small {
        border-radius: 5px;
    }

    .border-radius-large {
        border-radius: 10px;
    }

    .border-color-orange {
        border: 1px solid orange;
    }

    .border-color-gray {
        border: 1px solid gray;
    }

    .bg-color-orange {
        background-color: lightgray;
    }

    .bg-color-trans {
        background-color: transparent;
    }

    .div-container {
        min-height: 600px;
    }

    .dropdown {
        padding-left: 10px;
        padding-right: 10px;
    }

    .font-large {
        font-size: 20px;
    }

    .font-medium {
        font-size: 16px;
    }

    .font-small {
        font-size: 12px;
    }

    .font-x-small {
        font-size: 9px;
    }

    .font-bold {
        font-weight: bold;
    }

    .font-bolder {
        font-weight: bolder;
    }

    .img-carousel {
        height: 75vh;
    }

    .margin-low {
        padding: 10px;
    }

    .margin-medium {
        padding: 20px;
    }

    .margin-high {
        padding: 40px;
    }

    .margin-justify {
        margin: 5px auto 5px auto;
    }

    .m-t-b-low {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .m-t-b-high {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    /*
    .navbar-collapse.collapsing {
        animation : animCollapse 1s ease-out;
    }

    .navbar-collapse.show {
        animation:animShow 1s ease-in;
    }
    */

    .padding-mini {
        padding: 5px;
    }

    .padding-low {
        padding: 10px;
    }

    .padding-medium {
        padding: 20px;
    }

    .padding-high {
        padding: 40px;
    }

    .padding-left-right-low {
        padding: 0px 5px 0px 5px;
    }

    .padding-left-right-medium {
        padding: 0px 10px 0px 10px;
    }

    .p-b-low {
        padding-bottom: 15px;
    }

    .scale-small {
        transform: scale(2)
    }

    .scale-medium {
        transform: scale(4);
    }

    .scale-large {
        transform: scale(6);
    }

    .tbl-row-bg-color > tbody > tr:nth-child(odd) {
        background-color: #48D1CC;
    }

    #ulLoggedIn a:hover {
        background-color: lightgray;
    }

    #ulLoggedOut a:hover {
        background-color: lightgray;
    }

    .width-100-pc {
        width: 100%;
    }

    .width-80-pc {
        width: 80%;
    }

    .width-50-pc {
        width: 50%;
    }

    .width-20-pc {
        width: 20%;
    }


    @keyframes animShow {
        0% {
            transform: translateX(-100%);
        }

        100% {
            transform: translateX(0%);
        }
    }

    @keyframes animCollapse {
        0% {
            transform: translateX(0%);
        }

        100% {
            transform: translateX(-100%);
        }
    }

    .scale_text {
        animation: 2s scale linear infinite;
        -webkit-animation: 2s scale linear infinite;
        -moz-animation: 2s scale linear infinite;
    }

    @-moz-keyframes scale {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }

    @-webkit-keyframes scale {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }

    @keyframes scale {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }


    .blink_text {
        animation: 2s blinker linear infinite;
        -webkit-animation: 2s blinker linear infinite;
        -moz-animation: 2s blinker linear infinite;
    }

    @-moz-keyframes blinker {
        0% {
            opacity: 1.0;
        }

        50% {
            opacity: 0.0;
        }

        100% {
            opacity: 1.0;
        }
    }

    @-webkit-keyframes blinker {
        0% {
            opacity: 1.0;
        }

        50% {
            opacity: 0.0;
        }

        100% {
            opacity: 1.0;
        }
    }

    @keyframes blinker {
        0% {
            opacity: 1.0;
        }

        50% {
            opacity: 0.0;
        }

        100% {
            opacity: 1.0;
        }
    }


    .bounce {
        animation: bounce 1s infinite alternate;
        -webkit-animation: bounce 1s infinite alternate;
    }

    @keyframes bounce {
        from {
            transform: translateX(0px);
        }

        to {
            transform: translateX(-15px);
        }
    }

    @-webkit-keyframes bounce {
        from {
            transform: translateX(0px);
        }

        to {
            transform: translateX(-15px);
        }
    }
    /* Extra large devices (largelaptops and desktops,1366px and up) */
}

/* Extra large devices (largelaptops and desktops,1360px and up) */
@media only screen and (max-width: 1360px) {
    #divAnime05 > img {
        width: auto;
    }

    #divAnime06 > img {
        width: auto;
    }

    * {
        font-family: Verdana, Geneva, Tahoma, sans-serif;
    }

    a {
        text-decoration: none;
    }

        a:hover {
            text-decoration: underline;
        }

    .align-left {
        text-align: left;
    }

    .align-center {
        text-align: center;
    }

    .align-right {
        text-align: right;
    }

    .border-dotted {
        border: 1px dotted gray;
    }

    .border-solid {
        border: 1px solid gray;
    }

    .border-radius-small {
        border-radius: 5px;
    }

    .border-radius-large {
        border-radius: 10px;
    }

    .border-color-orange {
        border: 1px solid orange;
    }

    .border-color-gray {
        border: 1px solid gray;
    }

    .bg-color-orange {
        background-color: lightgray;
    }

    .bg-color-trans {
        background-color: transparent;
    }

    .div-container {
        min-height: 600px;
    }

    .dropdown {
        padding-left: 10px;
        padding-right: 10px;
    }

    .font-large {
        font-size: 20px;
    }

    .font-medium {
        font-size: 16px;
    }

    .font-small {
        font-size: 12px;
    }

    .font-x-small {
        font-size: 9px;
    }

    .font-bold {
        font-weight: bold;
    }

    .font-bolder {
        font-weight: bolder;
    }

    .img-carousel {
        height: 75vh;
    }

    .margin-low {
        padding: 10px;
    }

    .margin-medium {
        padding: 20px;
    }

    .margin-high {
        padding: 40px;
    }

    .margin-justify {
        margin: 5px auto 5px auto;
    }

    .m-t-b-low {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .m-t-b-high {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    /*
    .navbar-collapse.collapsing {
        animation : animCollapse 1s ease-out;
    }

    .navbar-collapse.show {
        animation:animShow 1s ease-in;
    }
    */


    .padding-mini {
        padding: 5px;
    }

    .padding-low {
        padding: 10px;
    }

    .padding-medium {
        padding: 20px;
    }

    .padding-high {
        padding: 40px;
    }

    .padding-left-right-low {
        padding: 0px 5px 0px 5px;
    }

    .padding-left-right-medium {
        padding: 0px 10px 0px 10px;
    }

    .p-b-low {
        padding-bottom: 15px;
    }

    .scale-small {
        transform: scale(2)
    }

    .scale-medium {
        transform: scale(4);
    }

    .scale-large {
        transform: scale(6);
    }

    .tbl-row-bg-color > tbody > tr:nth-child(odd) {
        background-color: #48D1CC;
    }

    #ulLoggedIn a:hover {
        background-color: lightgray;
    }

    #ulLoggedOut a:hover {
        background-color: lightgray;
    }

    .width-100-pc {
        width: 100%;
    }

    .width-80-pc {
        width: 80%;
    }

    .width-50-pc {
        width: 50%;
    }

    .width-20-pc {
        width: 20%;
    }

    @keyframes animShow {
        0% {
            transform: translateX(-100%);
        }

        100% {
            transform: translateX(0%);
        }
    }

    @keyframes animCollapse {
        0% {
            transform: translateX(0%);
        }

        100% {
            transform: translateX(-100%);
        }
    }

    .scale_text {
        animation: 2s scale linear infinite;
        -webkit-animation: 2s scale linear infinite;
        -moz-animation: 2s scale linear infinite;
    }

    @-moz-keyframes scale {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }

    @-webkit-keyframes scale {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }

    @keyframes scale {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }


    .blink_text {
        animation: 2s blinker linear infinite;
        -webkit-animation: 2s blinker linear infinite;
        -moz-animation: 2s blinker linear infinite;
    }

    @-moz-keyframes blinker {
        0% {
            opacity: 1.0;
        }

        50% {
            opacity: 0.0;
        }

        100% {
            opacity: 1.0;
        }
    }

    @-webkit-keyframes blinker {
        0% {
            opacity: 1.0;
        }

        50% {
            opacity: 0.0;
        }

        100% {
            opacity: 1.0;
        }
    }

    @keyframes blinker {
        0% {
            opacity: 1.0;
        }

        50% {
            opacity: 0.0;
        }

        100% {
            opacity: 1.0;
        }
    }


    .bounce {
        animation: bounce 1s infinite alternate;
        -webkit-animation: bounce 1s infinite alternate;
    }

    @keyframes bounce {
        from {
            transform: translateX(0px);
        }

        to {
            transform: translateX(-15px);
        }
    }

    @-webkit-keyframes bounce {
        from {
            transform: translateX(0px);
        }

        to {
            transform: translateX(-15px);
        }
    }
    /* Extra large devices (largelaptops and desktops,1360px and up) */
}

/* Large devices (laptops/desktops, 1280px and up)*/
@media only screen and (max-width: 1280px) {
    #divAnime05 > img {
        width: auto;
    }

    #divAnime06 > img {
        width: auto;
    }

    * {
        font-family: Verdana, Geneva, Tahoma, sans-serif;
    }

    a {
        text-decoration: none;
    }

        a:hover {
            text-decoration: underline;
        }

    .align-left {
        text-align: left;
    }

    .align-center {
        text-align: center;
    }

    .align-right {
        text-align: right;
    }

    .border-dotted {
        border: 1px dotted gray;
    }

    .border-solid {
        border: 1px solid gray;
    }

    .border-radius-small {
        border-radius: 5px;
    }

    .border-radius-large {
        border-radius: 10px;
    }

    .border-color-orange {
        border: 1px solid orange;
    }

    .border-color-gray {
        border: 1px solid gray;
    }

    .bg-color-orange {
        background-color: lightgray;
    }

    .bg-color-trans {
        background-color: transparent;
    }

    .div-container {
        min-height: 600px;
    }

    .dropdown {
        padding-left: 10px;
        padding-right: 10px;
    }

    .font-large {
        font-size: 20px;
    }

    .font-medium {
        font-size: 16px;
    }

    .font-small {
        font-size: 12px;
    }

    .font-x-small {
        font-size: 9px;
    }

    .font-bold {
        font-weight: bold;
    }

    .font-bolder {
        font-weight: bolder;
    }

    .img-carousel {
        height: 75vh;
    }

    .margin-low {
        padding: 10px;
    }

    .margin-medium {
        padding: 20px;
    }

    .margin-high {
        padding: 40px;
    }

    .margin-justify {
        margin: 5px auto 5px auto;
    }

    .m-t-b-low {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .m-t-b-high {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    /*
    .navbar-collapse.collapsing {
        animation : animCollapse 1s ease-out;
    }

    .navbar-collapse.show {
        animation:animShow 1s ease-in;
    }
    */


    .padding-mini {
        padding: 5px;
    }

    .padding-low {
        padding: 10px;
    }

    .padding-medium {
        padding: 20px;
    }

    .padding-high {
        padding: 40px;
    }

    .padding-left-right-low {
        padding: 0px 5px 0px 5px;
    }

    .padding-left-right-medium {
        padding: 0px 10px 0px 10px;
    }

    .p-b-low {
        padding-bottom: 15px;
    }

    .scale-small {
        transform: scale(2)
    }

    .scale-medium {
        transform: scale(4);
    }

    .scale-large {
        transform: scale(6);
    }

    .tbl-row-bg-color > tbody > tr:nth-child(odd) {
        background-color: #48D1CC;
    }

    #ulLoggedIn a:hover {
        background-color: lightgray;
    }

    #ulLoggedOut a:hover {
        background-color: lightgray;
    }

    .width-100-pc {
        width: 100%;
    }

    .width-80-pc {
        width: 80%;
    }

    .width-50-pc {
        width: 50%;
    }

    .width-20-pc {
        width: 20%;
    }


    @keyframes animShow {
        0% {
            transform: translateX(-100%);
        }

        100% {
            transform: translateX(0%);
        }
    }

    @keyframes animCollapse {
        0% {
            transform: translateX(0%);
        }

        100% {
            transform: translateX(-100%);
        }
    }


    .scale_text {
        animation: 2s scale linear infinite;
        -webkit-animation: 2s scale linear infinite;
        -moz-animation: 2s scale linear infinite;
    }

    @-moz-keyframes scale {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }

    @-webkit-keyframes scale {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }

    @keyframes scale {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }


    .blink_text {
        animation: 2s blinker linear infinite;
        -webkit-animation: 2s blinker linear infinite;
        -moz-animation: 2s blinker linear infinite;
    }

    @-moz-keyframes blinker {
        0% {
            opacity: 1.0;
        }

        50% {
            opacity: 0.0;
        }

        100% {
            opacity: 1.0;
        }
    }

    @-webkit-keyframes blinker {
        0% {
            opacity: 1.0;
        }

        50% {
            opacity: 0.0;
        }

        100% {
            opacity: 1.0;
        }
    }

    @keyframes blinker {
        0% {
            opacity: 1.0;
        }

        50% {
            opacity: 0.0;
        }

        100% {
            opacity: 1.0;
        }
    }


    .bounce {
        animation: bounce 1s infinite alternate;
        -webkit-animation: bounce 1s infinite alternate;
    }

    @keyframes bounce {
        from {
            transform: translateX(0px);
        }

        to {
            transform: translateX(-15px);
        }
    }

    @-webkit-keyframes bounce {
        from {
            transform: translateX(0px);
        }

        to {
            transform: translateX(-15px);
        }
    }
    /* Large devices (laptops/desktops, 1280px and up)*/
}

/* Large devices (laptops/desktops, 1242px and up)*/
@media only screen and (max-width: 1242px) {
    #divAnime05 > img {
        width: auto;
    }

    #divAnime06 > img {
        width: auto;
    }

    * {
        font-family: Verdana, Geneva, Tahoma, sans-serif;
    }

    a {
        text-decoration: none;
    }

        a:hover {
            text-decoration: underline;
        }

    .align-left {
        text-align: left;
    }

    .align-center {
        text-align: center;
    }

    .align-right {
        text-align: right;
    }

    .border-dotted {
        border: 1px dotted gray;
    }

    .border-solid {
        border: 1px solid gray;
    }

    .border-radius-small {
        border-radius: 5px;
    }

    .border-radius-large {
        border-radius: 10px;
    }

    .border-color-orange {
        border: 1px solid orange;
    }

    .border-color-gray {
        border: 1px solid gray;
    }

    .bg-color-orange {
        background-color: lightgray;
    }

    .bg-color-trans {
        background-color: transparent;
    }

    .div-container {
        min-height: 600px;
    }

    .dropdown {
        padding-left: 10px;
        padding-right: 10px;
    }

    .font-large {
        font-size: 20px;
    }

    .font-medium {
        font-size: 16px;
    }

    .font-small {
        font-size: 12px;
    }

    .font-x-small {
        font-size: 9px;
    }

    .font-bold {
        font-weight: bold;
    }

    .font-bolder {
        font-weight: bolder;
    }

    .img-carousel {
        height: 75vh;
    }

    .margin-low {
        padding: 10px;
    }

    .margin-medium {
        padding: 20px;
    }

    .margin-high {
        padding: 40px;
    }

    .margin-justify {
        margin: 5px auto 5px auto;
    }

    .m-t-b-low {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .m-t-b-high {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    /*
    .navbar-collapse.collapsing {
        animation : animCollapse 1s ease-out;
    }

    .navbar-collapse.show {
        animation:animShow 1s ease-in;
    }
    */


    .padding-mini {
        padding: 5px;
    }

    .padding-low {
        padding: 10px;
    }

    .padding-medium {
        padding: 20px;
    }

    .padding-high {
        padding: 40px;
    }

    .padding-left-right-low {
        padding: 0px 5px 0px 5px;
    }

    .padding-left-right-medium {
        padding: 0px 10px 0px 10px;
    }

    .p-b-low {
        padding-bottom: 15px;
    }

    .scale-small {
        transform: scale(2)
    }

    .scale-medium {
        transform: scale(4);
    }

    .scale-large {
        transform: scale(6);
    }

    .tbl-row-bg-color > tbody > tr:nth-child(odd) {
        background-color: #48D1CC;
    }

    #ulLoggedIn a:hover {
        background-color: lightgray;
    }

    #ulLoggedOut a:hover {
        background-color: lightgray;
    }

    .width-100-pc {
        width: 100%;
    }

    .width-80-pc {
        width: 80%;
    }

    .width-50-pc {
        width: 50%;
    }

    .width-20-pc {
        width: 20%;
    }


    @keyframes animShow {
        0% {
            transform: translateX(-100%);
        }

        100% {
            transform: translateX(0%);
        }
    }

    @keyframes animCollapse {
        0% {
            transform: translateX(0%);
        }

        100% {
            transform: translateX(-100%);
        }
    }


    .scale_text {
        animation: 2s scale linear infinite;
        -webkit-animation: 2s scale linear infinite;
        -moz-animation: 2s scale linear infinite;
    }

    @-moz-keyframes scale {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }

    @-webkit-keyframes scale {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }

    @keyframes scale {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }


    .blink_text {
        animation: 2s blinker linear infinite;
        -webkit-animation: 2s blinker linear infinite;
        -moz-animation: 2s blinker linear infinite;
    }

    @-moz-keyframes blinker {
        0% {
            opacity: 1.0;
        }

        50% {
            opacity: 0.0;
        }

        100% {
            opacity: 1.0;
        }
    }

    @-webkit-keyframes blinker {
        0% {
            opacity: 1.0;
        }

        50% {
            opacity: 0.0;
        }

        100% {
            opacity: 1.0;
        }
    }

    @keyframes blinker {
        0% {
            opacity: 1.0;
        }

        50% {
            opacity: 0.0;
        }

        100% {
            opacity: 1.0;
        }
    }


    .bounce {
        animation: bounce 1s infinite alternate;
        -webkit-animation: bounce 1s infinite alternate;
    }

    @keyframes bounce {
        from {
            transform: translateX(0px);
        }

        to {
            transform: translateX(-15px);
        }
    }

    @-webkit-keyframes bounce {
        from {
            transform: translateX(0px);
        }

        to {
            transform: translateX(-15px);
        }
    }
    /* Large devices (laptops/desktops, 1280px and up)*/
}


/* Large devices (laptops/desktops, 1080px and up)*/
@media only screen and (max-width: 1080px) {
    #divAnime05 > img {
        width: 800px;
    }

    #divAnime06 > img {
        width: 800px;
    }

    * {
        font-family: Verdana, Geneva, Tahoma, sans-serif;
    }

    a {
        text-decoration: none;
    }

        a:hover {
            text-decoration: underline;
        }

    .align-left {
        text-align: left;
    }

    .align-center {
        text-align: center;
    }

    .align-right {
        text-align: right;
    }

    .border-dotted {
        border: 1px dotted gray;
    }

    .border-solid {
        border: 1px solid gray;
    }

    .border-radius-small {
        border-radius: 5px;
    }

    .border-radius-large {
        border-radius: 10px;
    }

    .border-color-orange {
        border: 1px solid orange;
    }

    .border-color-gray {
        border: 1px solid gray;
    }

    .bg-color-orange {
        background-color: lightgray;
    }

    .bg-color-trans {
        background-color: transparent;
    }

    .div-container {
        min-height: 600px;
    }

    .dropdown {
        padding-left: 10px;
        padding-right: 10px;
    }

    .font-large {
        font-size: 20px;
    }

    .font-medium {
        font-size: 16px;
    }

    .font-small {
        font-size: 12px;
    }

    .font-x-small {
        font-size: 9px;
    }

    .font-bold {
        font-weight: bold;
    }

    .font-bolder {
        font-weight: bolder;
    }

    .img-carousel {
        height: 75vh;
    }

    .margin-low {
        padding: 10px;
    }

    .margin-medium {
        padding: 20px;
    }

    .margin-high {
        padding: 40px;
    }

    .margin-justify {
        margin: 5px auto 5px auto;
    }

    .m-t-b-low {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .m-t-b-high {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    /*
    .navbar-collapse.collapsing {
        animation : animCollapse 1s ease-out;
    }

    .navbar-collapse.show {
        animation:animShow 1s ease-in;
    }
    */


    .padding-mini {
        padding: 5px;
    }

    .padding-low {
        padding: 10px;
    }

    .padding-medium {
        padding: 20px;
    }

    .padding-high {
        padding: 40px;
    }

    .padding-left-right-low {
        padding: 0px 5px 0px 5px;
    }

    .padding-left-right-medium {
        padding: 0px 10px 0px 10px;
    }

    .p-b-low {
        padding-bottom: 15px;
    }

    .scale-small {
        transform: scale(2)
    }

    .scale-medium {
        transform: scale(4);
    }

    .scale-large {
        transform: scale(6);
    }

    .tbl-row-bg-color > tbody > tr:nth-child(odd) {
        background-color: #48D1CC;
    }

    #ulLoggedIn a:hover {
        background-color: lightgray;
    }

    #ulLoggedOut a:hover {
        background-color: lightgray;
    }

    .width-100-pc {
        width: 100%;
    }

    .width-80-pc {
        width: 80%;
    }

    .width-50-pc {
        width: 50%;
    }

    .width-20-pc {
        width: 20%;
    }

    @keyframes animShow {
        0% {
            transform: translateX(-100%);
        }

        100% {
            transform: translateX(0%);
        }
    }

    @keyframes animCollapse {
        0% {
            transform: translateX(0%);
        }

        100% {
            transform: translateX(-100%);
        }
    }

    .scale_text {
        animation: 2s scale linear infinite;
        -webkit-animation: 2s scale linear infinite;
        -moz-animation: 2s scale linear infinite;
    }

    @-moz-keyframes scale {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }

    @-webkit-keyframes scale {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }

    @keyframes scale {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }


    .blink_text {
        animation: 2s blinker linear infinite;
        -webkit-animation: 2s blinker linear infinite;
        -moz-animation: 2s blinker linear infinite;
    }

    @-moz-keyframes blinker {
        0% {
            opacity: 1.0;
        }

        50% {
            opacity: 0.0;
        }

        100% {
            opacity: 1.0;
        }
    }

    @-webkit-keyframes blinker {
        0% {
            opacity: 1.0;
        }

        50% {
            opacity: 0.0;
        }

        100% {
            opacity: 1.0;
        }
    }

    @keyframes blinker {
        0% {
            opacity: 1.0;
        }

        50% {
            opacity: 0.0;
        }

        100% {
            opacity: 1.0;
        }
    }


    .bounce {
        animation: bounce 1s infinite alternate;
        -webkit-animation: bounce 1s infinite alternate;
    }

    @keyframes bounce {
        from {
            transform: translateX(0px);
        }

        to {
            transform: translateX(-15px);
        }
    }

    @-webkit-keyframes bounce {
        from {
            transform: translateX(0px);
        }

        to {
            transform: translateX(-15px);
        }
    }
    /* Large devices (laptops/desktops, 1242px and up)*/
}


/* Large devices (laptops/desktops, 1125px and up)*/
@media only screen and (max-width: 1125px) {
    #divAnime05 > img {
        width: 900px;
    }

    #divAnime06 > img {
        width: 900px;
    }

    * {
        font-family: Verdana, Geneva, Tahoma, sans-serif;
    }

    a {
        text-decoration: none;
    }

        a:hover {
            text-decoration: underline;
        }

    .align-left {
        text-align: left;
    }

    .align-center {
        text-align: center;
    }

    .align-right {
        text-align: right;
    }

    .border-dotted {
        border: 1px dotted gray;
    }

    .border-solid {
        border: 1px solid gray;
    }

    .border-radius-small {
        border-radius: 5px;
    }

    .border-radius-large {
        border-radius: 10px;
    }

    .border-color-orange {
        border: 1px solid orange;
    }

    .border-color-gray {
        border: 1px solid gray;
    }

    .bg-color-orange {
        background-color: lightgray;
    }

    .bg-color-trans {
        background-color: transparent;
    }

    .div-container {
        min-height: 600px;
    }

    .dropdown {
        padding-left: 10px;
        padding-right: 10px;
    }

    .font-large {
        font-size: 20px;
    }

    .font-medium {
        font-size: 16px;
    }

    .font-small {
        font-size: 12px;
    }

    .font-x-small {
        font-size: 9px;
    }

    .font-bold {
        font-weight: bold;
    }

    .font-bolder {
        font-weight: bolder;
    }

    .img-carousel {
        height: 75vh;
    }

    .margin-low {
        padding: 10px;
    }

    .margin-medium {
        padding: 20px;
    }

    .margin-high {
        padding: 40px;
    }

    .margin-justify {
        margin: 5px auto 5px auto;
    }

    .m-t-b-low {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .m-t-b-high {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    /*
    .navbar-collapse.collapsing {
        animation : animCollapse 1s ease-out;
    }

    .navbar-collapse.show {
        animation:animShow 1s ease-in;
    }
    */


    .padding-mini {
        padding: 5px;
    }

    .padding-low {
        padding: 10px;
    }

    .padding-medium {
        padding: 20px;
    }

    .padding-high {
        padding: 40px;
    }

    .padding-left-right-low {
        padding: 0px 5px 0px 5px;
    }

    .padding-left-right-medium {
        padding: 0px 10px 0px 10px;
    }

    .p-b-low {
        padding-bottom: 15px;
    }

    .scale-small {
        transform: scale(2)
    }

    .scale-medium {
        transform: scale(4);
    }

    .scale-large {
        transform: scale(6);
    }

    .tbl-row-bg-color > tbody > tr:nth-child(odd) {
        background-color: #48D1CC;
    }

    #ulLoggedIn a:hover {
        background-color: lightgray;
    }

    #ulLoggedOut a:hover {
        background-color: lightgray;
    }

    .width-100-pc {
        width: 100%;
    }

    .width-80-pc {
        width: 80%;
    }

    .width-50-pc {
        width: 50%;
    }

    .width-20-pc {
        width: 20%;
    }


    @keyframes animShow {
        0% {
            transform: translateX(-100%);
        }

        100% {
            transform: translateX(0%);
        }
    }

    @keyframes animCollapse {
        0% {
            transform: translateX(0%);
        }

        100% {
            transform: translateX(-100%);
        }
    }


    .scale_text {
        animation: 2s scale linear infinite;
        -webkit-animation: 2s scale linear infinite;
        -moz-animation: 2s scale linear infinite;
    }

    @-moz-keyframes scale {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }

    @-webkit-keyframes scale {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }

    @keyframes scale {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }


    .blink_text {
        animation: 2s blinker linear infinite;
        -webkit-animation: 2s blinker linear infinite;
        -moz-animation: 2s blinker linear infinite;
    }

    @-moz-keyframes blinker {
        0% {
            opacity: 1.0;
        }

        50% {
            opacity: 0.0;
        }

        100% {
            opacity: 1.0;
        }
    }

    @-webkit-keyframes blinker {
        0% {
            opacity: 1.0;
        }

        50% {
            opacity: 0.0;
        }

        100% {
            opacity: 1.0;
        }
    }

    @keyframes blinker {
        0% {
            opacity: 1.0;
        }

        50% {
            opacity: 0.0;
        }

        100% {
            opacity: 1.0;
        }
    }


    .bounce {
        animation: bounce 1s infinite alternate;
        -webkit-animation: bounce 1s infinite alternate;
    }

    @keyframes bounce {
        from {
            transform: translateX(0px);
        }

        to {
            transform: translateX(-15px);
        }
    }

    @-webkit-keyframes bounce {
        from {
            transform: translateX(0px);
        }

        to {
            transform: translateX(-15px);
        }
    }
    /* Large devices (laptops/desktops, 1080px and up)*/
}


/* Medium devices (landscape tablets, 1024px and up) */
@media only screen and (max-width: 1024px) {
    #divAnime05 > img {
        width: 800px;
    }

    #divAnime06 > img {
        width: 800px;
    }

    * {
        font-family: Verdana, Geneva, Tahoma, sans-serif;
    }

    a {
        text-decoration: none;
    }

        a:hover {
            text-decoration: underline;
        }

    .align-left {
        text-align: left;
    }

    .align-center {
        text-align: center;
    }

    .align-right {
        text-align: right;
    }

    .border-dotted {
        border: 1px dotted gray;
    }

    .border-solid {
        border: 1px solid gray;
    }

    .border-radius-small {
        border-radius: 5px;
    }

    .border-radius-large {
        border-radius: 10px;
    }

    .border-color-orange {
        border: 1px solid orange;
    }

    .border-color-gray {
        border: 1px solid gray;
    }

    .bg-color-orange {
        background-color: lightgray;
    }

    .bg-color-trans {
        background-color: transparent;
    }

    .div-container {
        min-height: 600px;
    }

    .dropdown {
        padding-left: 10px;
        padding-right: 10px;
    }

    .font-large {
        font-size: 20px;
    }

    .font-medium {
        font-size: 16px;
    }

    .font-small {
        font-size: 12px;
    }

    .font-x-small {
        font-size: 9px;
    }

    .font-bold {
        font-weight: bold;
    }

    .font-bolder {
        font-weight: bolder;
    }

    .img-carousel {
        height: 75vh;
    }

    .margin-low {
        padding: 10px;
    }

    .margin-medium {
        padding: 20px;
    }

    .margin-high {
        padding: 40px;
    }

    .margin-justify {
        margin: 5px auto 5px auto;
    }

    .m-t-b-low {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .m-t-b-high {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    /*
    .navbar-collapse.collapsing {
        animation : animCollapse 1s ease-out;
    }

    .navbar-collapse.show {
        animation:animShow 1s ease-in;
    }
    */


    .padding-mini {
        padding: 5px;
    }

    .padding-low {
        padding: 10px;
    }

    .padding-medium {
        padding: 20px;
    }

    .padding-high {
        padding: 40px;
    }

    .padding-left-right-low {
        padding: 0px 5px 0px 5px;
    }

    .padding-left-right-medium {
        padding: 0px 10px 0px 10px;
    }

    .p-b-low {
        padding-bottom: 15px;
    }

    .scale-small {
        transform: scale(2)
    }

    .scale-medium {
        transform: scale(4);
    }

    .scale-large {
        transform: scale(6);
    }

    .tbl-row-bg-color > tbody > tr:nth-child(odd) {
        background-color: #48D1CC;
    }

    #ulLoggedIn a:hover {
        background-color: lightgray;
    }

    #ulLoggedOut a:hover {
        background-color: lightgray;
    }

    .width-100-pc {
        width: 100%;
    }

    .width-80-pc {
        width: 80%;
    }

    .width-50-pc {
        width: 50%;
    }

    .width-20-pc {
        width: 20%;
    }


    @keyframes animShow {
        0% {
            transform: translateX(-100%);
        }

        100% {
            transform: translateX(0%);
        }
    }

    @keyframes animCollapse {
        0% {
            transform: translateX(0%);
        }

        100% {
            transform: translateX(-100%);
        }
    }


    .scale_text {
        animation: 2s scale linear infinite;
        -webkit-animation: 2s scale linear infinite;
        -moz-animation: 2s scale linear infinite;
    }

    @-moz-keyframes scale {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }

    @-webkit-keyframes scale {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }

    @keyframes scale {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }


    .blink_text {
        animation: 2s blinker linear infinite;
        -webkit-animation: 2s blinker linear infinite;
        -moz-animation: 2s blinker linear infinite;
    }

    @-moz-keyframes blinker {
        0% {
            opacity: 1.0;
        }

        50% {
            opacity: 0.0;
        }

        100% {
            opacity: 1.0;
        }
    }

    @-webkit-keyframes blinker {
        0% {
            opacity: 1.0;
        }

        50% {
            opacity: 0.0;
        }

        100% {
            opacity: 1.0;
        }
    }

    @keyframes blinker {
        0% {
            opacity: 1.0;
        }

        50% {
            opacity: 0.0;
        }

        100% {
            opacity: 1.0;
        }
    }


    .bounce {
        animation: bounce 1s infinite alternate;
        -webkit-animation: bounce 1s infinite alternate;
    }

    @keyframes bounce {
        from {
            transform: translateX(0px);
        }

        to {
            transform: translateX(-15px);
        }
    }

    @-webkit-keyframes bounce {
        from {
            transform: translateX(0px);
        }

        to {
            transform: translateX(-15px);
        }
    }
    /* Medium devices (landscape tablets, 1024px and up) */
}

/* Medium devices (landscape tablets, 960px and up) */
@media only screen and (max-width: 960px) {
    #divAnime05 > img {
        width: 800px;
    }

    #divAnime06 > img {
        width: 800px;
    }

    * {
        font-family: Verdana, Geneva, Tahoma, sans-serif;
    }

    a {
        text-decoration: none;
    }

        a:hover {
            text-decoration: underline;
        }

    .align-left {
        text-align: left;
    }

    .align-center {
        text-align: center;
    }

    .align-right {
        text-align: right;
    }

    .border-dotted {
        border: 1px dotted gray;
    }

    .border-solid {
        border: 1px solid gray;
    }

    .border-radius-small {
        border-radius: 5px;
    }

    .border-radius-large {
        border-radius: 10px;
    }

    .border-color-orange {
        border: 1px solid orange;
    }

    .border-color-gray {
        border: 1px solid gray;
    }

    .bg-color-orange {
        background-color: lightgray;
    }

    .bg-color-trans {
        background-color: transparent;
    }

    .div-container {
        min-height: 600px;
    }

    .dropdown {
        padding-left: 10px;
        padding-right: 10px;
    }

    .font-large {
        font-size: 20px;
    }

    .font-medium {
        font-size: 16px;
    }

    .font-small {
        font-size: 12px;
    }

    .font-x-small {
        font-size: 9px;
    }

    .font-bold {
        font-weight: bold;
    }

    .font-bolder {
        font-weight: bolder;
    }

    .img-carousel {
        height: 75vh;
    }

    .margin-low {
        padding: 10px;
    }

    .margin-medium {
        padding: 20px;
    }

    .margin-high {
        padding: 40px;
    }

    .margin-justify {
        margin: 5px auto 5px auto;
    }

    .m-t-b-low {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .m-t-b-high {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    /*
    .navbar-collapse.collapsing {
        animation : animCollapse 1s ease-out;
    }

    .navbar-collapse.show {
        animation:animShow 1s ease-in;
    }
    */


    .padding-mini {
        padding: 5px;
    }

    .padding-low {
        padding: 10px;
    }

    .padding-medium {
        padding: 20px;
    }

    .padding-high {
        padding: 40px;
    }

    .padding-left-right-low {
        padding: 0px 5px 0px 5px;
    }

    .padding-left-right-medium {
        padding: 0px 10px 0px 10px;
    }

    .p-b-low {
        padding-bottom: 15px;
    }

    .scale-small {
        transform: scale(2)
    }

    .scale-medium {
        transform: scale(4);
    }

    .scale-large {
        transform: scale(6);
    }

    .tbl-row-bg-color > tbody > tr:nth-child(odd) {
        background-color: #48D1CC;
    }

    #ulLoggedIn a:hover {
        background-color: lightgray;
    }

    #ulLoggedOut a:hover {
        background-color: lightgray;
    }

    .width-100-pc {
        width: 100%;
    }

    .width-80-pc {
        width: 80%;
    }

    .width-50-pc {
        width: 50%;
    }

    .width-20-pc {
        width: 20%;
    }

    @keyframes animShow {
        0% {
            transform: translateX(-100%);
        }

        100% {
            transform: translateX(0%);
        }
    }

    @keyframes animCollapse {
        0% {
            transform: translateX(0%);
        }

        100% {
            transform: translateX(-100%);
        }
    }

    .scale_text {
        animation: 2s scale linear infinite;
        -webkit-animation: 2s scale linear infinite;
        -moz-animation: 2s scale linear infinite;
    }

    @-moz-keyframes scale {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }

    @-webkit-keyframes scale {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }

    @keyframes scale {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }


    .blink_text {
        animation: 2s blinker linear infinite;
        -webkit-animation: 2s blinker linear infinite;
        -moz-animation: 2s blinker linear infinite;
    }

    @-moz-keyframes blinker {
        0% {
            opacity: 1.0;
        }

        50% {
            opacity: 0.0;
        }

        100% {
            opacity: 1.0;
        }
    }

    @-webkit-keyframes blinker {
        0% {
            opacity: 1.0;
        }

        50% {
            opacity: 0.0;
        }

        100% {
            opacity: 1.0;
        }
    }

    @keyframes blinker {
        0% {
            opacity: 1.0;
        }

        50% {
            opacity: 0.0;
        }

        100% {
            opacity: 1.0;
        }
    }


    .bounce {
        animation: bounce 1s infinite alternate;
        -webkit-animation: bounce 1s infinite alternate;
    }

    @keyframes bounce {
        from {
            transform: translateX(0px);
        }

        to {
            transform: translateX(-15px);
        }
    }

    @-webkit-keyframes bounce {
        from {
            transform: translateX(0px);
        }

        to {
            transform: translateX(-15px);
        }
    }
    /* Medium devices (landscape tablets, 960px and up) */
}

/* Medium devices (landscape tablets, 854px and up) */
@media only screen and (max-width: 854px) {
    #divAnime05 > img {
        width: 600px;
    }

    #divAnime06 > img {
        width: 600px;
    }

    * {
        font-family: Verdana, Geneva, Tahoma, sans-serif;
    }

    a {
        text-decoration: none;
    }

        a:hover {
            text-decoration: underline;
        }

    .align-left {
        text-align: left;
    }

    .align-center {
        text-align: center;
    }

    .align-right {
        text-align: right;
    }

    .border-dotted {
        border: 1px dotted gray;
    }

    .border-solid {
        border: 1px solid gray;
    }

    .border-radius-small {
        border-radius: 5px;
    }

    .border-radius-large {
        border-radius: 10px;
    }

    .border-color-orange {
        border: 1px solid orange;
    }

    .border-color-gray {
        border: 1px solid gray;
    }

    .bg-color-orange {
        background-color: lightgray;
    }

    .bg-color-trans {
        background-color: transparent;
    }

    .div-container {
        min-height: 600px;
    }

    .dropdown {
        padding-left: 10px;
        padding-right: 10px;
    }

    .font-large {
        font-size: 20px;
    }

    .font-medium {
        font-size: 16px;
    }

    .font-small {
        font-size: 12px;
    }

    .font-x-small {
        font-size: 9px;
    }

    .font-bold {
        font-weight: bold;
    }

    .font-bolder {
        font-weight: bolder;
    }

    .img-carousel {
        height: 75vh;
    }

    .margin-low {
        padding: 10px;
    }

    .margin-medium {
        padding: 20px;
    }

    .margin-high {
        padding: 40px;
    }

    .margin-justify {
        margin: 5px auto 5px auto;
    }

    .m-t-b-low {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .m-t-b-high {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    /*
    .navbar-collapse.collapsing {
        animation : animCollapse 1s ease-out;
    }

    .navbar-collapse.show {
        animation:animShow 1s ease-in;
    }
    */


    .padding-mini {
        padding: 5px;
    }

    .padding-low {
        padding: 10px;
    }

    .padding-medium {
        padding: 20px;
    }

    .padding-high {
        padding: 40px;
    }

    .padding-left-right-low {
        padding: 0px 5px 0px 5px;
    }

    .padding-left-right-medium {
        padding: 0px 10px 0px 10px;
    }

    .p-b-low {
        padding-bottom: 15px;
    }

    .scale-small {
        transform: scale(2)
    }

    .scale-medium {
        transform: scale(4);
    }

    .scale-large {
        transform: scale(6);
    }

    .tbl-row-bg-color > tbody > tr:nth-child(odd) {
        background-color: #48D1CC;
    }

    #ulLoggedIn a:hover {
        background-color: lightgray;
    }

    #ulLoggedOut a:hover {
        background-color: lightgray;
    }

    .width-100-pc {
        width: 100%;
    }

    .width-80-pc {
        width: 80%;
    }

    .width-50-pc {
        width: 50%;
    }

    .width-20-pc {
        width: 20%;
    }


    @keyframes animShow {
        0% {
            transform: translateX(-100%);
        }

        100% {
            transform: translateX(0%);
        }
    }

    @keyframes animCollapse {
        0% {
            transform: translateX(0%);
        }

        100% {
            transform: translateX(-100%);
        }
    }


    .scale_text {
        animation: 2s scale linear infinite;
        -webkit-animation: 2s scale linear infinite;
        -moz-animation: 2s scale linear infinite;
    }

    @-moz-keyframes scale {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }

    @-webkit-keyframes scale {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }

    @keyframes scale {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }


    .blink_text {
        animation: 2s blinker linear infinite;
        -webkit-animation: 2s blinker linear infinite;
        -moz-animation: 2s blinker linear infinite;
    }

    @-moz-keyframes blinker {
        0% {
            opacity: 1.0;
        }

        50% {
            opacity: 0.0;
        }

        100% {
            opacity: 1.0;
        }
    }

    @-webkit-keyframes blinker {
        0% {
            opacity: 1.0;
        }

        50% {
            opacity: 0.0;
        }

        100% {
            opacity: 1.0;
        }
    }

    @keyframes blinker {
        0% {
            opacity: 1.0;
        }

        50% {
            opacity: 0.0;
        }

        100% {
            opacity: 1.0;
        }
    }


    .bounce {
        animation: bounce 1s infinite alternate;
        -webkit-animation: bounce 1s infinite alternate;
    }

    @keyframes bounce {
        from {
            transform: translateX(0px);
        }

        to {
            transform: translateX(-15px);
        }
    }

    @-webkit-keyframes bounce {
        from {
            transform: translateX(0px);
        }

        to {
            transform: translateX(-15px);
        }
    }
   /* Medium devices (landscape tablets, 854px and up) */
}

/* Medium devices (landscape tablets, 828px and up) */
@media only screen and (max-width: 828px) {
    #divAnime05 > img {
        width: 600px;
    }

    #divAnime06 > img {
        width: 600px;
    }

    * {
        font-family: Verdana, Geneva, Tahoma, sans-serif;
    }

    a {
        text-decoration: none;
    }

        a:hover {
            text-decoration: underline;
        }

    .align-left {
        text-align: left;
    }

    .align-center {
        text-align: center;
    }

    .align-right {
        text-align: right;
    }

    .border-dotted {
        border: 1px dotted gray;
    }

    .border-solid {
        border: 1px solid gray;
    }

    .border-radius-small {
        border-radius: 5px;
    }

    .border-radius-large {
        border-radius: 10px;
    }

    .border-color-orange {
        border: 1px solid orange;
    }

    .border-color-gray {
        border: 1px solid gray;
    }

    .bg-color-orange {
        background-color: lightgray;
    }

    .bg-color-trans {
        background-color: transparent;
    }

    .div-container {
        min-height: 600px;
    }

    .dropdown {
        padding-left: 10px;
        padding-right: 10px;
    }

    .font-large {
        font-size: 20px;
    }

    .font-medium {
        font-size: 16px;
    }

    .font-small {
        font-size: 12px;
    }

    .font-x-small {
        font-size: 9px;
    }

    .font-bold {
        font-weight: bold;
    }

    .font-bolder {
        font-weight: bolder;
    }

    .img-carousel {
        height: 75vh;
    }

    .margin-low {
        padding: 10px;
    }

    .margin-medium {
        padding: 20px;
    }

    .margin-high {
        padding: 40px;
    }

    .margin-justify {
        margin: 5px auto 5px auto;
    }

    .m-t-b-low {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .m-t-b-high {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    /*
    .navbar-collapse.collapsing {
        animation : animCollapse 1s ease-out;
    }

    .navbar-collapse.show {
        animation:animShow 1s ease-in;
    }
    */

    .padding-mini {
        padding: 5px;
    }

    .padding-low {
        padding: 10px;
    }


    .padding-medium {
        padding: 20px;
    }

    .padding-high {
        padding: 40px;
    }

    .padding-left-right-low {
        padding: 0px 5px 0px 5px;
    }

    .padding-left-right-medium {
        padding: 0px 10px 0px 10px;
    }

    .p-b-low {
        padding-bottom: 15px;
    }

    .scale-small {
        transform: scale(2)
    }

    .scale-medium {
        transform: scale(4);
    }

    .scale-large {
        transform: scale(6);
    }

    .tbl-row-bg-color > tbody > tr:nth-child(odd) {
        background-color: #48D1CC;
    }

    #ulLoggedIn a:hover {
        background-color: lightgray;
    }

    #ulLoggedOut a:hover {
        background-color: lightgray;
    }

    .width-100-pc {
        width: 100%;
    }

    .width-80-pc {
        width: 80%;
    }

    .width-50-pc {
        width: 50%;
    }

    .width-20-pc {
        width: 20%;
    }


    @keyframes animShow {
        0% {
            transform: translateX(-100%);
        }

        100% {
            transform: translateX(0%);
        }
    }

    @keyframes animCollapse {
        0% {
            transform: translateX(0%);
        }

        100% {
            transform: translateX(-100%);
        }
    }


    .scale_text {
        animation: 2s scale linear infinite;
        -webkit-animation: 2s scale linear infinite;
        -moz-animation: 2s scale linear infinite;
    }

    @-moz-keyframes scale {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }

    @-webkit-keyframes scale {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }

    @keyframes scale {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }


    .blink_text {
        animation: 2s blinker linear infinite;
        -webkit-animation: 2s blinker linear infinite;
        -moz-animation: 2s blinker linear infinite;
    }

    @-moz-keyframes blinker {
        0% {
            opacity: 1.0;
        }

        50% {
            opacity: 0.0;
        }

        100% {
            opacity: 1.0;
        }
    }

    @-webkit-keyframes blinker {
        0% {
            opacity: 1.0;
        }

        50% {
            opacity: 0.0;
        }

        100% {
            opacity: 1.0;
        }
    }

    @keyframes blinker {
        0% {
            opacity: 1.0;
        }

        50% {
            opacity: 0.0;
        }

        100% {
            opacity: 1.0;
        }
    }


    .bounce {
        animation: bounce 1s infinite alternate;
        -webkit-animation: bounce 1s infinite alternate;
    }

    @keyframes bounce {
        from {
            transform: translateX(0px);
        }

        to {
            transform: translateX(-15px);
        }
    }

    @-webkit-keyframes bounce {
        from {
            transform: translateX(0px);
        }

        to {
            transform: translateX(-15px);
        }
    }
    /* Medium devices (landscape tablets, 828px and up) */
}

/* Medium devices (landscape tablets, 800px and up) */
@media only screen and (max-width: 800px) {
    #divAnime05 > img {
        width: 600px;
    }

    #divAnime06 > img {
        width: 600px;
    }

    * {
        font-family: Verdana, Geneva, Tahoma, sans-serif;
    }

    a {
        text-decoration: none;
    }

        a:hover {
            text-decoration: underline;
        }

    .align-left {
        text-align: left;
    }

    .align-center {
        text-align: center;
    }

    .align-right {
        text-align: right;
    }

    .border-dotted {
        border: 1px dotted gray;
    }

    .border-solid {
        border: 1px solid gray;
    }

    .border-radius-small {
        border-radius: 5px;
    }

    .border-radius-large {
        border-radius: 10px;
    }

    .border-color-orange {
        border: 1px solid orange;
    }

    .border-color-gray {
        border: 1px solid gray;
    }

    .bg-color-orange {
        background-color: lightgray;
    }

    .bg-color-trans {
        background-color: transparent;
    }

    .div-container {
        min-height: 600px;
    }

    .dropdown {
        padding-left: 10px;
        padding-right: 10px;
    }

    .font-large {
        font-size: 20px;
    }

    .font-medium {
        font-size: 16px;
    }

    .font-small {
        font-size: 12px;
    }

    .font-x-small {
        font-size: 9px;
    }

    .font-bold {
        font-weight: bold;
    }

    .font-bolder {
        font-weight: bolder;
    }

    .img-carousel {
        height: 50vh;
    }

    .margin-low {
        padding: 10px;
    }

    .margin-medium {
        padding: 20px;
    }

    .margin-high {
        padding: 40px;
    }

    .margin-justify {
        margin: 5px auto 5px auto;
    }

    .m-t-b-low {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .m-t-b-high {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    /*
    .navbar-collapse.collapsing {
        animation : animCollapse 1s ease-out;
    }

    .navbar-collapse.show {
        animation:animShow 1s ease-in;
    }
    */


    .padding-mini {
        padding: 5px;
    }

    .padding-low {
        padding: 10px;
    }

    .padding-medium {
        padding: 20px;
    }

    .padding-high {
        padding: 40px;
    }

    .padding-left-right-low {
        padding: 0px 5px 0px 5px;
    }

    .padding-left-right-medium {
        padding: 0px 10px 0px 10px;
    }

    .p-b-low {
        padding-bottom: 15px;
    }

    .scale-small {
        transform: scale(2)
    }

    .scale-medium {
        transform: scale(4);
    }

    .scale-large {
        transform: scale(6);
    }

    .tbl-row-bg-color > tbody > tr:nth-child(odd) {
        background-color: #48D1CC;
    }

    #ulLoggedIn a:hover {
        background-color: lightgray;
    }

    #ulLoggedOut a:hover {
        background-color: lightgray;
    }

    .width-100-pc {
        width: 100%;
    }

    .width-80-pc {
        width: 80%;
    }

    .width-50-pc {
        width: 50%;
    }

    .width-20-pc {
        width: 20%;
    }


    @keyframes animShow {
        0% {
            transform: translateX(-100%);
        }

        100% {
            transform: translateX(0%);
        }
    }

    @keyframes animCollapse {
        0% {
            transform: translateX(0%);
        }

        100% {
            transform: translateX(-100%);
        }
    }


    .scale_text {
        animation: 2s scale linear infinite;
        -webkit-animation: 2s scale linear infinite;
        -moz-animation: 2s scale linear infinite;
    }

    @-moz-keyframes scale {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }

    @-webkit-keyframes scale {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }

    @keyframes scale {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }


    .blink_text {
        animation: 2s blinker linear infinite;
        -webkit-animation: 2s blinker linear infinite;
        -moz-animation: 2s blinker linear infinite;
    }

    @-moz-keyframes blinker {
        0% {
            opacity: 1.0;
        }

        50% {
            opacity: 0.0;
        }

        100% {
            opacity: 1.0;
        }
    }

    @-webkit-keyframes blinker {
        0% {
            opacity: 1.0;
        }

        50% {
            opacity: 0.0;
        }

        100% {
            opacity: 1.0;
        }
    }

    @keyframes blinker {
        0% {
            opacity: 1.0;
        }

        50% {
            opacity: 0.0;
        }

        100% {
            opacity: 1.0;
        }
    }


    .bounce {
        animation: bounce 1s infinite alternate;
        -webkit-animation: bounce 1s infinite alternate;
    }

    @keyframes bounce {
        from {
            transform: translateX(0px);
        }

        to {
            transform: translateX(-15px);
        }
    }

    @-webkit-keyframes bounce {
        from {
            transform: translateX(0px);
        }

        to {
            transform: translateX(-15px);
        }
    }
   /* Medium devices (landscape tablets, 800px and up) */
}

/* Extra small devices (phones, 768px and down) */
@media screen and (max-width: 768px) {
    #divAnime05 > img {
        width: 600px;
    }

    #divAnime06 > img {
        width: 600px;
    }

    * {
        font-family: Verdana, Geneva, Tahoma, sans-serif;
    }

    a {
        text-decoration: none;
    }

        a:hover {
            text-decoration: underline;
        }

    .align-left {
        text-align: left;
    }

    .align-center {
        text-align: center;
    }

    .align-right {
        text-align: right;
    }

    .border-dotted {
        border: 1px dotted gray;
    }

    .border-solid {
        border: 1px solid gray;
    }

    .border-radius-small {
        border-radius: 5px 5px 5px 5px;
    }

    .border-radius-large {
        border-radius: 10px 10px 10px 10px;
    }

    .border-color-orange {
        border: 1px solid orange;
    }

    .border-color-gray {
        border: 1px solid gray;
    }

    .bg-color-orange {
        background-color: lightgray;
    }

    .bg-color-trans {
        background-color: transparent;
    }

    .div-container {
        min-height: 600px;
    }

    .dropdown {
        padding-left: 10px;
        padding-right: 10px;
    }

    .font-large {
        font-size: 20px;
    }

    .font-medium {
        font-size: 16px;
    }

    .font-small {
        font-size: 12px;
    }

    .font-x-small {
        font-size: 9px;
    }

    .font-bold {
        font-weight: bold;
    }

    .font-bolder {
        font-weight: bolder;
    }

    .img-carousel {
        height: 75vh;
    }

    .margin-low {
        padding: 10px;
    }

    .margin-medium {
        padding: 20px;
    }

    .margin-high {
        padding: 40px;
    }

    .margin-justify {
        margin: 5px auto 5px auto;
    }

    .m-t-b-low {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .m-t-b-high {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    /*
    .navbar-collapse.collapsing {
        animation : animCollapse 1s ease-out;
    }

    .navbar-collapse.show {
        animation:animShow 1s ease-in;
    }
    */


    .padding-mini {
        padding: 5px;
    }

    .padding-low {
        padding: 10px;
    }

    .padding-medium {
        padding: 20px;
    }

    .padding-high {
        padding: 40px;
    }

    .padding-left-right-low {
        padding: 0px 5px 0px 5px;
    }

    .padding-left-right-medium {
        padding: 0px 10px 0px 10px;
    }

    .p-b-low {
        padding-bottom: 15px;
    }

    .scale-small {
        transform: scale(2)
    }

    .scale-medium {
        transform: scale(4);
    }

    .scale-large {
        transform: scale(6);
    }

    .tbl-row-bg-color > tbody > tr:nth-child(odd) {
        background-color: #48D1CC;
    }

    #ulLoggedIn a:hover {
        background-color: lightgray;
    }

    #ulLoggedOut a:hover {
        background-color: lightgray;
    }

    .width-100-pc {
        width: 100%;
    }

    .width-80-pc {
        width: 80%;
    }

    .width-50-pc {
        width: 50%;
    }

    .width-20-pc {
        width: 20%;
    }


    @keyframes animShow {
        0% {
            transform: translateX(-100%);
        }

        100% {
            transform: translateX(0%);
        }
    }

    @keyframes animCollapse {
        0% {
            transform: translateX(0%);
        }

        100% {
            transform: translateX(-100%);
        }
    }


    .scale_text {
        animation: 2s scale linear infinite;
        -webkit-animation: 2s scale linear infinite;
        -moz-animation: 2s scale linear infinite;
    }

    @-moz-keyframes scale {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }

    @-webkit-keyframes scale {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }

    @keyframes scale {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }


    .blink_text {
        animation: 2s blinker linear infinite;
        -webkit-animation: 2s blinker linear infinite;
        -moz-animation: 2s blinker linear infinite;
    }

    @-moz-keyframes blinker {
        0% {
            opacity: 1.0;
        }

        50% {
            opacity: 0.0;
        }

        100% {
            opacity: 1.0;
        }
    }

    @-webkit-keyframes blinker {
        0% {
            opacity: 1.0;
        }

        50% {
            opacity: 0.0;
        }

        100% {
            opacity: 1.0;
        }
    }

    @keyframes blinker {
        0% {
            opacity: 1.0;
        }

        50% {
            opacity: 0.0;
        }

        100% {
            opacity: 1.0;
        }
    }


    .bounce {
        animation: bounce 1s infinite alternate;
        -webkit-animation: bounce 1s infinite alternate;
    }

    @keyframes bounce {
        from {
            transform: translateX(0px);
        }

        to {
            transform: translateX(-15px);
        }
    }

    @-webkit-keyframes bounce {
        from {
            transform: translateX(0px);
        }

        to {
            transform: translateX(-15px);
        }
    }
    /* Extra small devices (phones, 768px and down) */
}

/* Extra small devices (phones, 750px and down) */
@media screen and (max-width: 750px) {
    #divAnime05 > img {
        width: 600px;
    }

    #divAnime06 > img {
        width: 600px;
    }

    * {
        font-family: Verdana, Geneva, Tahoma, sans-serif;
    }

    a {
        text-decoration: none;
    }

        a:hover {
            text-decoration: underline;
        }

    .align-left {
        text-align: left;
    }

    .align-center {
        text-align: center;
    }

    .align-right {
        text-align: right;
    }

    .border-dotted {
        border: 1px dotted gray;
    }

    .border-solid {
        border: 1px solid gray;
    }

    .border-radius-small {
        border-radius: 5px 5px 5px 5px;
    }

    .border-radius-large {
        border-radius: 10px 10px 10px 10px;
    }

    .border-color-orange {
        border: 1px solid orange;
    }

    .border-color-gray {
        border: 1px solid gray;
    }

    .bg-color-orange {
        background-color: lightgray;
    }

    .bg-color-trans {
        background-color: transparent;
    }

    .div-container {
        min-height: 600px;
    }

    .dropdown {
        padding-left: 10px;
        padding-right: 10px;
    }

    .font-large {
        font-size: 20px;
    }

    .font-medium {
        font-size: 16px;
    }

    .font-small {
        font-size: 12px;
    }

    .font-x-small {
        font-size: 9px;
    }

    .font-bold {
        font-weight: bold;
    }

    .font-bolder {
        font-weight: bolder;
    }

    .img-carousel {
        height: 75vh;
    }

    .margin-low {
        padding: 10px;
    }

    .margin-medium {
        padding: 20px;
    }

    .margin-high {
        padding: 40px;
    }

    .margin-justify {
        margin: 5px auto 5px auto;
    }

    .m-t-b-low {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .m-t-b-high {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    /*
    .navbar-collapse.collapsing {
        animation : animCollapse 1s ease-out;
    }

    .navbar-collapse.show {
        animation:animShow 1s ease-in;
    }
    */


    .padding-mini {
        padding: 5px;
    }

    .padding-low {
        padding: 10px;
    }

    .padding-medium {
        padding: 20px;
    }

    .padding-high {
        padding: 40px;
    }

    .padding-left-right-low {
        padding: 0px 5px 0px 5px;
    }

    .padding-left-right-medium {
        padding: 0px 10px 0px 10px;
    }

    .p-b-low {
        padding-bottom: 15px;
    }

    .scale-small {
        transform: scale(2)
    }

    .scale-medium {
        transform: scale(4);
    }

    .scale-large {
        transform: scale(6);
    }

    .tbl-row-bg-color > tbody > tr:nth-child(odd) {
        background-color: #48D1CC;
    }

    #ulLoggedIn a:hover {
        background-color: lightgray;
    }

    #ulLoggedOut a:hover {
        background-color: lightgray;
    }

    .width-100-pc {
        width: 100%;
    }

    .width-80-pc {
        width: 80%;
    }

    .width-50-pc {
        width: 50%;
    }

    .width-20-pc {
        width: 20%;
    }


    @keyframes animShow {
        0% {
            transform: translateX(-100%);
        }

        100% {
            transform: translateX(0%);
        }
    }

    @keyframes animCollapse {
        0% {
            transform: translateX(0%);
        }

        100% {
            transform: translateX(-100%);
        }
    }

    .scale_text {
        animation: 2s scale linear infinite;
        -webkit-animation: 2s scale linear infinite;
        -moz-animation: 2s scale linear infinite;
    }

    @-moz-keyframes scale {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }

    @-webkit-keyframes scale {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }

    @keyframes scale {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }


    .blink_text {
        animation: 2s blinker linear infinite;
        -webkit-animation: 2s blinker linear infinite;
        -moz-animation: 2s blinker linear infinite;
    }

    @-moz-keyframes blinker {
        0% {
            opacity: 1.0;
        }

        50% {
            opacity: 0.0;
        }

        100% {
            opacity: 1.0;
        }
    }

    @-webkit-keyframes blinker {
        0% {
            opacity: 1.0;
        }

        50% {
            opacity: 0.0;
        }

        100% {
            opacity: 1.0;
        }
    }

    @keyframes blinker {
        0% {
            opacity: 1.0;
        }

        50% {
            opacity: 0.0;
        }

        100% {
            opacity: 1.0;
        }
    }


    .bounce {
        animation: bounce 1s infinite alternate;
        -webkit-animation: bounce 1s infinite alternate;
    }

    @keyframes bounce {
        from {
            transform: translateX(0px);
        }

        to {
            transform: translateX(-15px);
        }
    }

    @-webkit-keyframes bounce {
        from {
            transform: translateX(0px);
        }

        to {
            transform: translateX(-15px);
        }
    }
    /* Extra small devices (phones, 750px and down) */
}

/* Extra small devices (phones, 720px and down) */
@media screen and (max-width: 720px) {
    #divAnime05 > img {
        width: 600px;
    }

    #divAnime06 > img {
        width: 600px;
    }

    * {
        font-family: Verdana, Geneva, Tahoma, sans-serif;
    }

    a {
        text-decoration: none;
    }

        a:hover {
            text-decoration: underline;
        }

    .align-left {
        text-align: left;
    }

    .align-center {
        text-align: center;
    }

    .align-right {
        text-align: right;
    }

    .border-dotted {
        border: 1px dotted gray;
    }

    .border-solid {
        border: 1px solid gray;
    }

    .border-radius-small {
        border-radius: 5px 5px 5px 5px;
    }

    .border-radius-large {
        border-radius: 10px 10px 10px 10px;
    }

    .border-color-orange {
        border: 1px solid orange;
    }

    .border-color-gray {
        border: 1px solid gray;
    }

    .bg-color-orange {
        background-color: lightgray;
    }

    .bg-color-trans {
        background-color: transparent;
    }

    .div-container {
        min-height: 600px;
    }

    .dropdown {
        padding-left: 10px;
        padding-right: 10px;
    }

    .font-large {
        font-size: 20px;
    }

    .font-medium {
        font-size: 16px;
    }

    .font-small {
        font-size: 12px;
    }

    .font-x-small {
        font-size: 9px;
    }

    .font-bold {
        font-weight: bold;
    }

    .font-bolder {
        font-weight: bolder;
    }

    .img-carousel {
        height: 75vh;
    }

    .margin-low {
        padding: 10px;
    }

    .margin-medium {
        padding: 20px;
    }

    .margin-high {
        padding: 40px;
    }

    .margin-justify {
        margin: 5px auto 5px auto;
    }

    .m-t-b-low {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .m-t-b-high {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    /*
    .navbar-collapse.collapsing {
        animation : animCollapse 1s ease-out;
    }

    .navbar-collapse.show {
        animation:animShow 1s ease-in;
    }
    */


    .padding-mini {
        padding: 5px;
    }

    .padding-low {
        padding: 10px;
    }

    .padding-medium {
        padding: 20px;
    }

    .padding-high {
        padding: 40px;
    }

    .padding-left-right-low {
        padding: 0px 5px 0px 5px;
    }

    .padding-left-right-medium {
        padding: 0px 10px 0px 10px;
    }

    .p-b-low {
        padding-bottom: 15px;
    }

    .scale-small {
        transform: scale(2)
    }

    .scale-medium {
        transform: scale(4);
    }

    .scale-large {
        transform: scale(6);
    }

    .tbl-row-bg-color > tbody > tr:nth-child(odd) {
        background-color: #48D1CC;
    }

    #ulLoggedIn a:hover {
        background-color: lightgray;
    }

    #ulLoggedOut a:hover {
        background-color: lightgray;
    }

    .width-100-pc {
        width: 100%;
    }

    .width-80-pc {
        width: 80%;
    }

    .width-50-pc {
        width: 50%;
    }

    .width-20-pc {
        width: 20%;
    }

    @keyframes animShow {
        0% {
            transform: translateX(-100%);
        }

        100% {
            transform: translateX(0%);
        }
    }

    @keyframes animCollapse {
        0% {
            transform: translateX(0%);
        }

        100% {
            transform: translateX(-100%);
        }
    }

    .scale_text {
        animation: 2s scale linear infinite;
        -webkit-animation: 2s scale linear infinite;
        -moz-animation: 2s scale linear infinite;
    }

    @-moz-keyframes scale {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }

    @-webkit-keyframes scale {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }

    @keyframes scale {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }


    .blink_text {
        animation: 2s blinker linear infinite;
        -webkit-animation: 2s blinker linear infinite;
        -moz-animation: 2s blinker linear infinite;
    }

    @-moz-keyframes blinker {
        0% {
            opacity: 1.0;
        }

        50% {
            opacity: 0.0;
        }

        100% {
            opacity: 1.0;
        }
    }

    @-webkit-keyframes blinker {
        0% {
            opacity: 1.0;
        }

        50% {
            opacity: 0.0;
        }

        100% {
            opacity: 1.0;
        }
    }

    @keyframes blinker {
        0% {
            opacity: 1.0;
        }

        50% {
            opacity: 0.0;
        }

        100% {
            opacity: 1.0;
        }
    }


    .bounce {
        animation: bounce 1s infinite alternate;
        -webkit-animation: bounce 1s infinite alternate;
    }

    @keyframes bounce {
        from {
            transform: translateX(0px);
        }

        to {
            transform: translateX(-15px);
        }
    }

    @-webkit-keyframes bounce {
        from {
            transform: translateX(0px);
        }

        to {
            transform: translateX(-15px);
        }
    }
    /* Extra small devices (phones, 720px and down) */
}

/* Extra small devices (phones, 640px and down) */
@media screen and (max-width: 640px) {
    #divAnime05 > img {
        width: 540px;
    }

    #divAnime06 > img {
        width: 540px;
    }

    * {
        font-family: Verdana, Geneva, Tahoma, sans-serif;
    }

    a {
        text-decoration: none;
    }

        a:hover {
            text-decoration: underline;
        }

    .align-left {
        text-align: left;
    }

    .align-center {
        text-align: center;
    }

    .align-right {
        text-align: right;
    }

    .border-dotted {
        border: 1px dotted gray;
    }

    .border-solid {
        border: 1px solid gray;
    }

    .border-radius-small {
        border-radius: 5px 5px 5px 5px;
    }

    .border-radius-large {
        border-radius: 10px 10px 10px 10px;
    }

    .border-color-orange {
        border: 1px solid orange;
    }

    .border-color-gray {
        border: 1px solid gray;
    }

    .bg-color-orange {
        background-color: lightgray;
    }

    .bg-color-trans {
        background-color: transparent;
    }

    .div-container {
        min-height: 600px;
    }

    .dropdown {
        padding-left: 10px;
        padding-right: 10px;
    }

    .font-large {
        font-size: 20px;
    }

    .font-medium {
        font-size: 16px;
    }

    .font-small {
        font-size: 12px;
    }

    .font-x-small {
        font-size: 9px;
    }

    .font-bold {
        font-weight: bold;
    }

    .font-bolder {
        font-weight: bolder;
    }

    .img-carousel {
        height: 50vh;
    }

    .margin-low {
        padding: 10px;
    }

    .margin-medium {
        padding: 20px;
    }

    .margin-high {
        padding: 40px;
    }

    .margin-justify {
        margin: 5px auto 5px auto;
    }

    .m-t-b-low {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .m-t-b-high {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    /*
    .navbar-collapse.collapsing {
        animation : animCollapse 1s ease-out;
    }

    .navbar-collapse.show {
        animation:animShow 1s ease-in;
    }
    */


    .padding-mini {
        padding: 5px;
    }

    .padding-low {
        padding: 10px;
    }

    .padding-medium {
        padding: 20px;
    }

    .padding-high {
        padding: 40px;
    }

    .padding-left-right-low {
        padding: 0px 5px 0px 5px;
    }

    .padding-left-right-medium {
        padding: 0px 10px 0px 10px;
    }

    .p-b-low {
        padding-bottom: 15px;
    }

    .scale-small {
        transform: scale(2)
    }

    .scale-medium {
        transform: scale(4);
    }

    .scale-large {
        transform: scale(6);
    }

    .tbl-row-bg-color > tbody > tr:nth-child(odd) {
        background-color: #48D1CC;
    }

    #ulLoggedIn a:hover {
        background-color: lightgray;
    }

    #ulLoggedOut a:hover {
        background-color: lightgray;
    }

    .width-100-pc {
        width: 100%;
    }

    .width-80-pc {
        width: 80%;
    }

    .width-50-pc {
        width: 50%;
    }

    .width-20-pc {
        width: 20%;
    }

    @keyframes animShow {
        0% {
            transform: translateX(-100%);
        }

        100% {
            transform: translateX(0%);
        }
    }

    @keyframes animCollapse {
        0% {
            transform: translateX(0%);
        }

        100% {
            transform: translateX(-100%);
        }
    }

    .scale_text {
        animation: 2s scale linear infinite;
        -webkit-animation: 2s scale linear infinite;
        -moz-animation: 2s scale linear infinite;
    }

    @-moz-keyframes scale {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }

    @-webkit-keyframes scale {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }

    @keyframes scale {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }


    .blink_text {
        animation: 2s blinker linear infinite;
        -webkit-animation: 2s blinker linear infinite;
        -moz-animation: 2s blinker linear infinite;
    }

    @-moz-keyframes blinker {
        0% {
            opacity: 1.0;
        }

        50% {
            opacity: 0.0;
        }

        100% {
            opacity: 1.0;
        }
    }

    @-webkit-keyframes blinker {
        0% {
            opacity: 1.0;
        }

        50% {
            opacity: 0.0;
        }

        100% {
            opacity: 1.0;
        }
    }

    @keyframes blinker {
        0% {
            opacity: 1.0;
        }

        50% {
            opacity: 0.0;
        }

        100% {
            opacity: 1.0;
        }
    }


    .bounce {
        animation: bounce 1s infinite alternate;
        -webkit-animation: bounce 1s infinite alternate;
    }

    @keyframes bounce {
        from {
            transform: translateX(0px);
        }

        to {
            transform: translateX(-15px);
        }
    }

    @-webkit-keyframes bounce {
        from {
            transform: translateX(0px);
        }

        to {
            transform: translateX(-15px);
        }
    }
    /* Extra small devices (phones, 640px and down) */
}

/* Extra small devices (phones, 540px and down) */
@media screen and (max-width: 540px) {
    #divAnime05 > img {
        width: 440px;
    }

    #divAnime06 > img {
        width: 440px;
    }

    * {
        font-family: Verdana, Geneva, Tahoma, sans-serif;
    }

    a {
        text-decoration: none;
    }

        a:hover {
            text-decoration: underline;
        }

    .align-left {
        text-align: left;
    }

    .align-center {
        text-align: center;
    }

    .align-right {
        text-align: right;
    }

    .border-dotted {
        border: 1px dotted gray;
    }

    .border-solid {
        border: 1px solid gray;
    }

    .border-radius-small {
        border-radius: 5px 5px 5px 5px;
    }

    .border-radius-large {
        border-radius: 10px 10px 10px 10px;
    }

    .border-color-orange {
        border: 1px solid orange;
    }

    .border-color-gray {
        border: 1px solid gray;
    }

    .bg-color-orange {
        background-color: lightgray;
    }

    .bg-color-trans {
        background-color: transparent;
    }

    .div-container {
        min-height: 600px;
    }

    .dropdown {
        padding-left: 10px;
        padding-right: 10px;
    }

    .font-large {
        font-size: 20px;
    }

    .font-medium {
        font-size: 16px;
    }

    .font-small {
        font-size: 12px;
    }

    .font-x-small {
        font-size: 9px;
    }

    .font-bold {
        font-weight: bold;
    }

    .font-bolder {
        font-weight: bolder;
    }

    .img-carousel {
        height: 50vh;
    }

    .margin-low {
        padding: 10px;
    }

    .margin-medium {
        padding: 20px;
    }

    .margin-high {
        padding: 40px;
    }

    .margin-justify {
        margin: 5px auto 5px auto;
    }

    .m-t-b-low {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .m-t-b-high {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    /*
    .navbar-collapse.collapsing {
        animation : animCollapse 1s ease-out;
    }

    .navbar-collapse.show {
        animation:animShow 1s ease-in;
    }
    */


    .padding-mini {
        padding: 5px;
    }

    .padding-low {
        padding: 10px;
    }

    .padding-medium {
        padding: 20px;
    }

    .padding-high {
        padding: 40px;
    }

    .padding-left-right-low {
        padding: 0px 5px 0px 5px;
    }

    .padding-left-right-medium {
        padding: 0px 10px 0px 10px;
    }

    .p-b-low {
        padding-bottom: 15px;
    }

    .scale-small {
        transform: scale(2)
    }

    .scale-medium {
        transform: scale(4);
    }

    .scale-large {
        transform: scale(6);
    }

    .tbl-row-bg-color > tbody > tr:nth-child(odd) {
        background-color: #48D1CC;
    }

    #ulLoggedIn a:hover {
        background-color: lightgray;
    }

    #ulLoggedOut a:hover {
        background-color: lightgray;
    }

    .width-100-pc {
        width: 100%;
    }

    .width-80-pc {
        width: 80%;
    }

    .width-50-pc {
        width: 50%;
    }

    .width-20-pc {
        width: 20%;
    }

    @keyframes animShow {
        0% {
            transform: translateX(-100%);
        }

        100% {
            transform: translateX(0%);
        }
    }

    @keyframes animCollapse {
        0% {
            transform: translateX(0%);
        }

        100% {
            transform: translateX(-100%);
        }
    }

    .scale_text {
        animation: 2s scale linear infinite;
        -webkit-animation: 2s scale linear infinite;
        -moz-animation: 2s scale linear infinite;
    }

    @-moz-keyframes scale {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }

    @-webkit-keyframes scale {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }

    @keyframes scale {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }


    .blink_text {
        animation: 2s blinker linear infinite;
        -webkit-animation: 2s blinker linear infinite;
        -moz-animation: 2s blinker linear infinite;
    }

    @-moz-keyframes blinker {
        0% {
            opacity: 1.0;
        }

        50% {
            opacity: 0.0;
        }

        100% {
            opacity: 1.0;
        }
    }

    @-webkit-keyframes blinker {
        0% {
            opacity: 1.0;
        }

        50% {
            opacity: 0.0;
        }

        100% {
            opacity: 1.0;
        }
    }

    @keyframes blinker {
        0% {
            opacity: 1.0;
        }

        50% {
            opacity: 0.0;
        }

        100% {
            opacity: 1.0;
        }
    }


    .bounce {
        animation: bounce 1s infinite alternate;
        -webkit-animation: bounce 1s infinite alternate;
    }

    @keyframes bounce {
        from {
            transform: translateX(0px);
        }

        to {
            transform: translateX(-15px);
        }
    }

    @-webkit-keyframes bounce {
        from {
            transform: translateX(0px);
        }

        to {
            transform: translateX(-15px);
        }
    }
    /* Extra small devices (phones, 540px and down) */
}


/* Extra small devices (phones, 480px and down) */
@media screen and (max-width: 480px) {
    #divAnime05 > img {
        width: 380px;
    }

    #divAnime06 > img {
        width: 380px;
    }

    * {
        font-family: Verdana, Geneva, Tahoma, sans-serif;
    }

    a {
        text-decoration: none;
    }

        a:hover {
            text-decoration: underline;
        }

    .align-left {
        text-align: left;
    }

    .align-center {
        text-align: center;
    }

    .align-right {
        text-align: right;
    }

    .border-dotted {
        border: 1px dotted gray;
    }

    .border-solid {
        border: 1px solid gray;
    }

    .border-radius-small {
        border-radius: 5px 5px 5px 5px;
    }

    .border-radius-large {
        border-radius: 10px 10px 10px 10px;
    }

    .border-color-orange {
        border: 1px solid orange;
    }

    .border-color-gray {
        border: 1px solid gray;
    }

    .bg-color-orange {
        background-color: lightgray;
    }

    .bg-color-trans {
        background-color: transparent;
    }

    .div-container {
        min-height: 600px;
    }

    .dropdown {
        padding-left: 10px;
        padding-right: 10px;
    }

    .font-large {
        font-size: 20px;
    }

    .font-medium {
        font-size: 16px;
    }

    .font-small {
        font-size: 12px;
    }

    .font-x-small {
        font-size: 9px;
    }

    .font-bold {
        font-weight: bold;
    }

    .font-bolder {
        font-weight: bolder;
    }

    .img-carousel {
        height: 50vh;
    }

    .margin-low {
        padding: 10px;
    }

    .margin-medium {
        padding: 20px;
    }

    .margin-high {
        padding: 40px;
    }

    .margin-justify {
        margin: 5px auto 5px auto;
    }

    .m-t-b-low {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .m-t-b-high {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    /*
    .navbar-collapse.collapsing {
        animation : animCollapse 1s ease-out;
    }

    .navbar-collapse.show {
        animation:animShow 1s ease-in;
    }
    */


    .padding-mini {
        padding: 5px;
    }

    .padding-low {
        padding: 10px;
    }

    .padding-medium {
        padding: 20px;
    }

    .padding-high {
        padding: 40px;
    }

    .padding-left-right-low {
        padding: 0px 5px 0px 5px;
    }

    .padding-left-right-medium {
        padding: 0px 10px 0px 10px;
    }

    .p-b-low {
        padding-bottom: 15px;
    }

    .scale-small {
        transform: scale(2)
    }

    .scale-medium {
        transform: scale(4);
    }

    .scale-large {
        transform: scale(6);
    }

    .tbl-row-bg-color > tbody > tr:nth-child(odd) {
        background-color: #48D1CC;
    }

    #ulLoggedIn a:hover {
        background-color: lightgray;
    }

    #ulLoggedOut a:hover {
        background-color: lightgray;
    }

    .width-100-pc {
        width: 100%;
    }

    .width-80-pc {
        width: 80%;
    }

    .width-50-pc {
        width: 50%;
    }

    .width-20-pc {
        width: 20%;
    }


    @keyframes animShow {
        0% {
            transform: translateX(-100%);
        }

        100% {
            transform: translateX(0%);
        }
    }

    @keyframes animCollapse {
        0% {
            transform: translateX(0%);
        }

        100% {
            transform: translateX(-100%);
        }
    }


    .scale_text {
        animation: 2s scale linear infinite;
        -webkit-animation: 2s scale linear infinite;
        -moz-animation: 2s scale linear infinite;
    }

    @-moz-keyframes scale {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }

    @-webkit-keyframes scale {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }

    @keyframes scale {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }


    .blink_text {
        animation: 2s blinker linear infinite;
        -webkit-animation: 2s blinker linear infinite;
        -moz-animation: 2s blinker linear infinite;
    }

    @-moz-keyframes blinker {
        0% {
            opacity: 1.0;
        }

        50% {
            opacity: 0.0;
        }

        100% {
            opacity: 1.0;
        }
    }

    @-webkit-keyframes blinker {
        0% {
            opacity: 1.0;
        }

        50% {
            opacity: 0.0;
        }

        100% {
            opacity: 1.0;
        }
    }

    @keyframes blinker {
        0% {
            opacity: 1.0;
        }

        50% {
            opacity: 0.0;
        }

        100% {
            opacity: 1.0;
        }
    }


    .bounce {
        animation: bounce 1s infinite alternate;
        -webkit-animation: bounce 1s infinite alternate;
    }

    @keyframes bounce {
        from {
            transform: translateX(0px);
        }

        to {
            transform: translateX(-15px);
        }
    }

    @-webkit-keyframes bounce {
        from {
            transform: translateX(0px);
        }

        to {
            transform: translateX(-15px);
        }
    }
    /* Extra small devices (phones, 480px and down) */
}


/* Extra small devices (phones, 320px and down) */
@media screen and (max-width: 320px) {
    #divAnime05 > img {
        width: 280px;
    }

    #divAnime06 > img {
        width: 280px;
    }

    * {
        font-family: Verdana, Geneva, Tahoma, sans-serif;
    }

    a {
        text-decoration: none;
    }

        a:hover {
            text-decoration: underline;
        }

    .align-left {
        text-align: left;
    }

    .align-center {
        text-align: center;
    }

    .align-right {
        text-align: right;
    }

    .border-dotted {
        border: 1px dotted gray;
    }

    .border-solid {
        border: 1px solid gray;
    }

    .border-radius-small {
        border-radius: 5px 5px 5px 5px;
    }

    .border-radius-large {
        border-radius: 10px 10px 10px 10px;
    }

    .border-color-orange {
        border: 1px solid orange;
    }

    .border-color-gray {
        border: 1px solid gray;
    }

    .bg-color-orange {
        background-color: lightgray;
    }

    .bg-color-trans {
        background-color: transparent;
    }

    .div-container {
        min-height: 600px;
    }

    .dropdown {
        padding-left: 10px;
        padding-right: 10px;
    }

    .font-large {
        font-size: 20px;
    }

    .font-medium {
        font-size: 16px;
    }

    .font-small {
        font-size: 12px;
    }

    .font-x-small {
        font-size: 9px;
    }

    .font-bold {
        font-weight: bold;
    }

    .img-carousel {
        height: 50vh;
    }

    .font-bolder {
        font-weight: bolder;
    }

    .margin-low {
        padding: 10px;
    }

    .margin-medium {
        padding: 20px;
    }

    .margin-high {
        padding: 40px;
    }

    .margin-justify {
        margin: 5px auto 5px auto;
    }

    .m-t-b-low {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .m-t-b-high {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    /*
    .navbar-collapse.collapsing {
        animation : animCollapse 1s ease-out;
    }

    .navbar-collapse.show {
        animation:animShow 1s ease-in;
    }
    */


    .padding-mini {
        padding: 5px;
    }

    .padding-low {
        padding: 10px;
    }

    .padding-medium {
        padding: 20px;
    }

    .padding-high {
        padding: 40px;
    }

    .padding-left-right-low {
        padding: 0px 5px 0px 5px;
    }

    .padding-left-right-medium {
        padding: 0px 10px 0px 10px;
    }

    .p-b-low {
        padding-bottom: 15px;
    }

    .scale-small {
        transform: scale(2)
    }

    .scale-medium {
        transform: scale(4);
    }

    .scale-large {
        transform: scale(6);
    }

    .tbl-row-bg-color > tbody > tr:nth-child(odd) {
        background-color: #48D1CC;
    }

    #ulLoggedIn a:hover {
        background-color: lightgray;
    }

    #ulLoggedOut a:hover {
        background-color: lightgray;
    }

    .width-100-pc {
        width: 100%;
    }

    .width-80-pc {
        width: 80%;
    }

    .width-50-pc {
        width: 50%;
    }

    .width-20-pc {
        width: 20%;
    }

    @keyframes animShow {
        0% {
            transform: translateX(-100%);
        }

        100% {
            transform: translateX(0%);
        }
    }

    @keyframes animCollapse {
        0% {
            transform: translateX(0%);
        }

        100% {
            transform: translateX(-100%);
        }
    }

    /* Extra small devices (phones, 320px and down) */
}

