@import 'https://fonts.googleapis.com/css?family=Prompt:300,400,500';

/* Font Promtp */

@import 'https://fonts.googleapis.com/css?family=Kanit:300,400';

/* Font Kanit */

@import 'https://fonts.googleapis.com/css?family=Maitree:200,300,400|Pridi:200,300&subset=thai';
@font-face {
    font-family: 'ChulaCharasNew';
    src: url('ChulaCharasNew.eot');
    src: url('ChulaCharasNew.eot?#iefix') format('embedded-opentype'), url('ChulaCharasNew.woff2') format('woff2'), url('ChulaCharasNew.woff') format('woff'), url('ChulaCharasNew.svg#ChulaCharasNew') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'CHULALONGKORN';
    src: url('CHULALONGKORN.eot');
    src: url('CHULALONGKORN.eot?#iefix') format('embedded-opentype'), url('CHULALONGKORN.woff2') format('woff2'), url('CHULALONGKORN.woff') format('woff'), url('CHULALONGKORN.svg#CHULALONGKORN') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


/* grid   */


/*----------

	Grid Post

*************************************************************/

.grid-post {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    grid-column-gap: 0;
    grid-row-gap: 0;
    width: 100%;
}

.grid-post.grid-gap-0 {
    grid-column-gap: 0 !important;
    grid-row-gap: 0 !important;
}

.grid-post.grid-gap-post {
    grid-row-gap: 16px;
}

.grid-post.grid-gap-line {
    grid-row-gap: 1px;
}

.grid-post.grid-gap-sm {
    grid-row-gap: 8px;
}

.grid-post.grid-gap-md {
    grid-row-gap: 16px;
}

.grid-post.grid-gap-lg {
    grid-row-gap: 24px;
}

.grid-post.grid-gap-xl {
    grid-row-gap: 32px;
}

.grid-post.grid-template-landings {
    grid-template-columns: 1fr;
    grid-row-gap: 4px;
}

.grid-post.grid-template-features {
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 4px;
    grid-row-gap: 4px;
}

.grid-post.grid-template-separator {
    border-top: 5px solid #000;
}

.grid-post.grid-template-separator.separator-1 {
    border-top-width: 1px;
}

.grid-post.grid-template-separator.separator-white {
    border-color: #fff;
}

.grid-post.grid-template-separator::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #000;
}

.grid-post.grid-template-separator.separator-1::after {
    height: 1px;
}

.grid-post.grid-template-separator.separator-white::after {
    background-color: #fff;
}

.grid-post.grid-template-separator .grid-post-item {
    border-bottom: 5px solid #000;
}

.grid-post.grid-template-separator.separator-1 .grid-post-item {
    border-bottom-width: 1px;
}

.grid-post.grid-template-separator.separator-white .grid-post-item {
    border-color: #fff;
}

.no-cssgrid .grid-post {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
}

.no-cssgrid .grid-post.grid-gap-post {
    margin-bottom: -16px;
}

.no-cssgrid .grid-post.grid-gap-line {
    margin-bottom: -1px;
}

.no-cssgrid .grid-post.grid-gap-sm {
    margin-bottom: -8px;
}

.no-cssgrid .grid-post.grid-gap-md {
    margin-bottom: -16px;
}

.no-cssgrid .grid-post.grid-gap-lg {
    margin-bottom: -24px;
}

.no-cssgrid .grid-post.grid-gap-xl {
    margin-bottom: -32px;
}

.no-cssgrid .grid-post .grid-item {
    position: relative;
    box-sizing: border-box;
}

.no-cssgrid .grid-post.grid-gap-post .grid-item {
    margin-bottom: 16px;
}

.no-cssgrid .grid-post.grid-gap-sm .grid-item {
    margin-bottom: 8px;
}

.no-cssgrid .grid-post.grid-gap-md .grid-item {
    margin-bottom: 16px;
}

.no-cssgrid .grid-post.grid-gap-lg .grid-item {
    margin-bottom: 24px;
}

.no-cssgrid .grid-post.grid-gap-xl .grid-item {
    margin-bottom: 32px;
}

.no-cssgrid .grid-post.grid-template-landings {
    width: 100%;
    margin-bottom: -2px;
}

.no-cssgrid .grid-post.grid-template-landings .grid-item {
    margin: 0 0 4px 0;
}

.no-cssgrid .grid-post.grid-template-features {
    width: calc(100% + 4px);
    margin-bottom: -4px;
}

.no-cssgrid .grid-post.grid-template-features .grid-item {
    width: calc(50% - 4px);
    margin-right: 4px;
    margin-bottom: 4px;
}

@media (min-width: 576px) {
    .grid-post.grid-template-col-2,
    .grid-post.grid-template-col-3,
    .grid-post.grid-template-col-4,
    .grid-post.grid-template-col-5,
    .grid-post.grid-template-col-post {
        grid-template-columns: 1fr 1fr;
    }
    .grid-post.grid-gap-post {
        grid-column-gap: 16px;
    }
    .grid-post.grid-template-col-2.grid-gap-sm,
    .grid-post.grid-template-col-3.grid-gap-sm,
    .grid-post.grid-template-col-4.grid-gap-sm,
    .grid-post.grid-template-col-5.grid-gap-sm,
    .grid-post.grid-template-col-post.grid-gap-sm {
        grid-column-gap: 8px;
    }
    .grid-post.grid-template-col-2.grid-gap-md,
    .grid-post.grid-template-col-3.grid-gap-md,
    .grid-post.grid-template-col-4.grid-gap-md,
    .grid-post.grid-template-col-5.grid-gap-md,
    .grid-post.grid-template-col-post.grid-gap-md {
        grid-column-gap: 16px;
    }
    .grid-post.grid-template-col-2.grid-gap-lg,
    .grid-post.grid-template-col-3.grid-gap-lg,
    .grid-post.grid-template-col-4.grid-gap-lg,
    .grid-post.grid-template-col-5.grid-gap-lg,
    .grid-post.grid-template-col-post.grid-gap-lg {
        grid-column-gap: 24px;
    }
    .grid-post.grid-template-col-2.grid-gap-xl,
    .grid-post.grid-template-col-3.grid-gap-xl,
    .grid-post.grid-template-col-4.grid-gap-xl,
    .grid-post.grid-template-col-5.grid-gap-xl,
    .grid-post.grid-template-col-post.grid-gap-xl {
        grid-column-gap: 32px;
    }
    .grid-post.grid-template-landings {
        grid-template-columns: 1fr 1fr;
        grid-column-gap: 4px;
        grid-row-gap: 4px;
    }
    .grid-post.grid-template-separator.grid-template-col-2 .grid-post-item:nth-child(2n+1),
    .grid-post.grid-template-separator.grid-template-col-3 .grid-post-item:nth-child(2n+1),
    .grid-post.grid-template-separator.grid-template-col-4 .grid-post-item:nth-child(2n+1),
    .grid-post.grid-template-separator.grid-template-col-5 .grid-post-item:nth-child(2n+1) {
        border-right: 1px solid #000;
    }
    .grid-post.grid-template-separator.separator-white.grid-template-col-2 .grid-post-item:nth-child(2n+1),
    .grid-post.grid-template-separator.separator-white.grid-template-col-3 .grid-post-item:nth-child(2n+1),
    .grid-post.grid-template-separator.separator-white.grid-template-col-4 .grid-post-item:nth-child(2n+1),
    .grid-post.grid-template-separator.separator-white.grid-template-col-5 .grid-post-item:nth-child(2n+1) {
        border-color: #fff;
    }
    .no-cssgrid .grid-post.grid-template-col-2.grid-gap-post,
    .no-cssgrid .grid-post.grid-template-col-3.grid-gap-post,
    .no-cssgrid .grid-post.grid-template-col-4.grid-gap-post,
    .no-cssgrid .grid-post.grid-template-col-5.grid-gap-post,
    .no-cssgrid .grid-post.grid-template-col-post.grid-gap-post {
        width: calc(100% + 16px);
    }
    .no-cssgrid .grid-post.grid-template-col-2.grid-gap-sm,
    .no-cssgrid .grid-post.grid-template-col-3.grid-gap-sm,
    .no-cssgrid .grid-post.grid-template-col-4.grid-gap-sm,
    .no-cssgrid .grid-post.grid-template-col-5.grid-gap-sm,
    .no-cssgrid .grid-post.grid-template-col-post.grid-gap-sm {
        width: calc(100% + 8px);
    }
    .no-cssgrid .grid-post.grid-template-col-2.grid-gap-md,
    .no-cssgrid .grid-post.grid-template-col-3.grid-gap-md,
    .no-cssgrid .grid-post.grid-template-col-4.grid-gap-md,
    .no-cssgrid .grid-post.grid-template-col-5.grid-gap-md,
    .no-cssgrid .grid-post.grid-template-col-post.grid-gap-md {
        width: calc(100% + 16px);
    }
    .no-cssgrid .grid-post.grid-template-col-2.grid-gap-lg,
    .no-cssgrid .grid-post.grid-template-col-3.grid-gap-lg,
    .no-cssgrid .grid-post.grid-template-col-4.grid-gap-lg,
    .no-cssgrid .grid-post.grid-template-col-5.grid-gap-lg,
    .no-cssgrid .grid-post.grid-template-col-post.grid-gap-lg {
        width: calc(100% + 24px);
    }
    .no-cssgrid .grid-post.grid-template-col-2.grid-gap-xl,
    .no-cssgrid .grid-post.grid-template-col-3.grid-gap-xl,
    .no-cssgrid .grid-post.grid-template-col-4.grid-gap-xl,
    .no-cssgrid .grid-post.grid-template-col-5.grid-gap-xl,
    .no-cssgrid .grid-post.grid-template-col-post.grid-gap-xl {
        width: calc(100% + 32px);
    }
    .no-cssgrid .grid-post.grid-template-col-2 .grid-item,
    .no-cssgrid .grid-post.grid-template-col-3 .grid-item,
    .no-cssgrid .grid-post.grid-template-col-4 .grid-item,
    .no-cssgrid .grid-post.grid-template-col-5 .grid-item,
    .no-cssgrid .grid-post.grid-template-col-post .grid-item {
        width: 50%;
    }
    .no-cssgrid .grid-post.grid-template-col-2.grid-gap-post .grid-item,
    .no-cssgrid .grid-post.grid-template-col-3.grid-gap-post .grid-item,
    .no-cssgrid .grid-post.grid-template-col-4.grid-gap-post .grid-item,
    .no-cssgrid .grid-post.grid-template-col-5.grid-gap-post .grid-item,
    .no-cssgrid .grid-post.grid-template-col-post.grid-gap-post .grid-item {
        width: calc(50% - 16px);
        margin-right: 16px;
    }
    .no-cssgrid .grid-post.grid-template-col-2.grid-gap-sm .grid-item,
    .no-cssgrid .grid-post.grid-template-col-3.grid-gap-sm .grid-item,
    .no-cssgrid .grid-post.grid-template-col-4.grid-gap-sm .grid-item,
    .no-cssgrid .grid-post.grid-template-col-5.grid-gap-sm .grid-item,
    .no-cssgrid .grid-post.grid-template-col-post.grid-gap-sm .grid-item {
        width: calc(50% - 8px);
        margin-right: 8px;
    }
    .no-cssgrid .grid-post.grid-template-col-2.grid-gap-md .grid-item,
    .no-cssgrid .grid-post.grid-template-col-3.grid-gap-md .grid-item,
    .no-cssgrid .grid-post.grid-template-col-4.grid-gap-md .grid-item,
    .no-cssgrid .grid-post.grid-template-col-5.grid-gap-md .grid-item,
    .no-cssgrid .grid-post.grid-template-col-post.grid-gap-md .grid-item {
        width: calc(50% - 16px);
        margin-right: 16px;
    }
    .no-cssgrid .grid-post.grid-template-col-2.grid-gap-lg .grid-item,
    .no-cssgrid .grid-post.grid-template-col-3.grid-gap-lg .grid-item,
    .no-cssgrid .grid-post.grid-template-col-4.grid-gap-lg .grid-item,
    .no-cssgrid .grid-post.grid-template-col-5.grid-gap-lg .grid-item,
    .no-cssgrid .grid-post.grid-template-col-post.grid-gap-lg .grid-item {
        width: calc(50% - 24px);
        margin-right: 24px;
    }
    .no-cssgrid .grid-post.grid-template-col-2.grid-gap-xl .grid-item,
    .no-cssgrid .grid-post.grid-template-col-3.grid-gap-xl .grid-item,
    .no-cssgrid .grid-post.grid-template-col-4.grid-gap-xl .grid-item,
    .no-cssgrid .grid-post.grid-template-col-5.grid-gap-xl .grid-item,
    .no-cssgrid .grid-post.grid-template-col-post.grid-gap-xl .grid-item {
        width: calc(50% - 32px);
        margin-right: 32px;
    }
    .no-cssgrid .grid-post.grid-template-landings {
        width: calc(100% + 4px);
        margin-bottom: -4px;
    }
    .no-cssgrid .grid-post.grid-template-landings .grid-item {
        width: calc(50% - 4px);
        margin-right: 4px;
        margin-bottom: 4px;
    }
}

@media (min-width: 768px) {
    .grid-post.grid-gap-post {
        grid-column-gap: 32px;
        grid-row-gap: 32px;
    }
    .no-cssgrid .grid-post.grid-template-col-2.grid-gap-post,
    .no-cssgrid .grid-post.grid-template-col-3.grid-gap-post,
    .no-cssgrid .grid-post.grid-template-col-4.grid-gap-post,
    .no-cssgrid .grid-post.grid-template-col-5.grid-gap-post,
    .no-cssgrid .grid-post.grid-template-col-post.grid-gap-post {
        width: calc(100% + 32px);
        margin-bottom: -32px;
    }
    .no-cssgrid .grid-post.grid-template-col-2.grid-gap-post .grid-item,
    .no-cssgrid .grid-post.grid-template-col-3.grid-gap-post .grid-item,
    .no-cssgrid .grid-post.grid-template-col-4.grid-gap-post .grid-item,
    .no-cssgrid .grid-post.grid-template-col-5.grid-gap-post .grid-item,
    .no-cssgrid .grid-post.grid-template-col-post.grid-gap-post .grid-item {
        width: calc(50% - 32px);
        margin-right: 32px;
        margin-bottom: 32px;
    }
}

@media (min-width: 992px) {
    .grid-post.grid-template-col-3,
    .grid-post.grid-template-col-4,
    .grid-post.grid-template-col-5,
    .grid-post.grid-template-col-post {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .grid-post.grid-template-separator.grid-template-col-3 .grid-post-item:nth-child(2n+1),
    .grid-post.grid-template-separator.grid-template-col-4 .grid-post-item:nth-child(2n+1),
    .grid-post.grid-template-separator.grid-template-col-5 .grid-post-item:nth-child(2n+1) {
        border-right: none;
    }
    .grid-post.grid-template-separator.grid-template-col-3 .grid-post-item:nth-child(3n+1),
    .grid-post.grid-template-separator.grid-template-col-3 .grid-post-item:nth-child(3n+2),
    .grid-post.grid-template-separator.grid-template-col-4 .grid-post-item:nth-child(3n+1),
    .grid-post.grid-template-separator.grid-template-col-4 .grid-post-item:nth-child(3n+2),
    .grid-post.grid-template-separator.grid-template-col-5 .grid-post-item:nth-child(3n+1),
    .grid-post.grid-template-separator.grid-template-col-5 .grid-post-item:nth-child(3n+2) {
        border-right: 1px solid #000;
    }
    .grid-post.grid-template-separator.separator-white.grid-template-col-3 .grid-post-item:nth-child(3n+1),
    .grid-post.grid-template-separator.separator-white.grid-template-col-3 .grid-post-item:nth-child(3n+2),
    .grid-post.grid-template-separator.separator-white.grid-template-col-4 .grid-post-item:nth-child(3n+1),
    .grid-post.grid-template-separator.separator-white.grid-template-col-4 .grid-post-item:nth-child(3n+2),
    .grid-post.grid-template-separator.separator-white.grid-template-col-5 .grid-post-item:nth-child(3n+1),
    .grid-post.grid-template-separator.separator-white.grid-template-col-5 .grid-post-item:nth-child(3n+2) {
        border-color: #fff;
    }
    .no-cssgrid .grid-post.grid-template-col-3.grid-gap-post .grid-item,
    .no-cssgrid .grid-post.grid-template-col-4.grid-gap-post .grid-item,
    .no-cssgrid .grid-post.grid-template-col-5.grid-gap-post .grid-item,
    .no-cssgrid .grid-post.grid-template-col-post.grid-gap-post .grid-item {
        width: calc(33.3333333% - 32px);
    }
    .no-cssgrid .grid-post.grid-template-col-3.grid-gap-sm .grid-item,
    .no-cssgrid .grid-post.grid-template-col-4.grid-gap-sm .grid-item,
    .no-cssgrid .grid-post.grid-template-col-5.grid-gap-sm .grid-item,
    .no-cssgrid .grid-post.grid-template-col-post.grid-gap-sm .grid-item {
        width: calc(33.3333333% - 8px);
    }
    .no-cssgrid .grid-post.grid-template-col-3.grid-gap-md .grid-item,
    .no-cssgrid .grid-post.grid-template-col-4.grid-gap-md .grid-item,
    .no-cssgrid .grid-post.grid-template-col-5.grid-gap-md .grid-item,
    .no-cssgrid .grid-post.grid-template-col-post.grid-gap-md .grid-item {
        width: calc(33.3333333% - 16px);
    }
    .no-cssgrid .grid-post.grid-template-col-3.grid-gap-lg .grid-item,
    .no-cssgrid .grid-post.grid-template-col-4.grid-gap-lg .grid-item,
    .no-cssgrid .grid-post.grid-template-col-5.grid-gap-lg .grid-item,
    .no-cssgrid .grid-post.grid-template-col-post.grid-gap-lg .grid-item {
        width: calc(33.3333333% - 24px);
    }
    .no-cssgrid .grid-post.grid-template-col-3.grid-gap-xl .grid-item,
    .no-cssgrid .grid-post.grid-template-col-4.grid-gap-xl .grid-item,
    .no-cssgrid .grid-post.grid-template-col-5.grid-gap-xl .grid-item,
    .no-cssgrid .grid-post.grid-template-col-post.grid-gap-xl .grid-item {
        width: calc(33.3333333% - 32px);
    }
}

@media (min-width: 1200px) {
    .grid-post.grid-template-landings {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        grid-column-gap: 4px;
        grid-row-gap: 4px;
    }
    .no-cssgrid .grid-post.grid-template-landings {
        width: calc(100% + 4px);
        margin-bottom: -4px;
    }
    .no-cssgrid .grid-post.grid-template-landings .grid-item {
        width: calc(25% - 4px);
        margin-right: 4px;
        margin-bottom: 4px;
    }
}

@media (min-width: 1400px) {
    .grid-post.grid-template-col-4,
    .grid-post.grid-template-col-5 {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
    .grid-post.grid-template-separator.grid-template-col-4 .grid-post-item,
    .grid-post.grid-template-separator.grid-template-col-5 .grid-post-item {
        border-right: 1px solid #000;
    }
    .grid-post.grid-template-separator.separator-white.grid-template-col-4 .grid-post-item,
    .grid-post.grid-template-separator.separator-white.grid-template-col-5 .grid-post-item {
        border-color: #fff;
    }
    .grid-post.grid-template-separator.grid-template-col-4 .grid-post-item:nth-child(2n+1),
    .grid-post.grid-template-separator.grid-template-col-4 .grid-post-item:nth-child(3n+1),
    .grid-post.grid-template-separator.grid-template-col-4 .grid-post-item:nth-child(3n+2),
    .grid-post.grid-template-separator.grid-template-col-5 .grid-post-item:nth-child(2n+1),
    .grid-post.grid-template-separator.grid-template-col-5 .grid-post-item:nth-child(3n+1),
    .grid-post.grid-template-separator.grid-template-col-5 .grid-post-item:nth-child(3n+2) {
        border-right: 1px solid #000;
    }
    .grid-post.grid-template-separator.grid-template-col-4 .grid-post-item:nth-child(4n),
    .grid-post.grid-template-separator.grid-template-col-5 .grid-post-item:nth-child(4n) {
        border-right: none;
    }
    .no-cssgrid .grid-post.grid-template-col-4.grid-gap-post .grid-item,
    .no-cssgrid .grid-post.grid-template-col-5.grid-gap-post .grid-item {
        width: calc(25% - 32px);
    }
    .no-cssgrid .grid-post.grid-template-col-4.grid-gap-sm .grid-item,
    .no-cssgrid .grid-post.grid-template-col-5.grid-gap-sm .grid-item {
        width: calc(25% - 8px);
    }
    .no-cssgrid .grid-post.grid-template-col-4.grid-gap-md .grid-item,
    .no-cssgrid .grid-post.grid-template-col-5.grid-gap-md .grid-item {
        width: calc(25% - 16px);
    }
    .no-cssgrid .grid-post.grid-template-col-4.grid-gap-lg .grid-item,
    .no-cssgrid .grid-post.grid-template-col-5.grid-gap-lg .grid-item {
        width: calc(25% - 24px);
    }
    .no-cssgrid .grid-post.grid-template-col-4.grid-gap-xl .grid-item,
    .no-cssgrid .grid-post.grid-template-col-5.grid-gap-xl .grid-item {
        width: calc(25% - 32px);
    }
}

@media (min-width: 1920px) {
    .grid-post.grid-template-col-5 {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    }
    .grid-post.grid-template-separator.grid-template-col-5 .grid-post-item {
        border-right: 1px solid #000;
    }
    .grid-post.grid-template-separator.separator-white.grid-template-col-5 .grid-post-item {
        border-color: #fff;
    }
    .grid-post.grid-template-separator.grid-template-col-5 .grid-post-item:nth-child(2n+1),
    .grid-post.grid-template-separator.grid-template-col-5 .grid-post-item:nth-child(3n+1),
    .grid-post.grid-template-separator.grid-template-col-5 .grid-post-item:nth-child(3n+2),
    .grid-post.grid-template-separator.grid-template-col-5 .grid-post-item:nth-child(4n+2) {
        border-right: 1px solid #000;
    }
    .grid-post.grid-template-separator.separator-white.grid-template-col-5 .grid-post-item:nth-child(2n+1),
    .grid-post.grid-template-separator.separator-white.grid-template-col-5 .grid-post-item:nth-child(3n+1),
    .grid-post.grid-template-separator.separator-white.grid-template-col-5 .grid-post-item:nth-child(3n+2),
    .grid-post.grid-template-separator.separator-white.grid-template-col-5 .grid-post-item:nth-child(4n+2) {
        border-color: #fff;
    }
    .grid-post.grid-template-separator.grid-template-col-5 .grid-post-item:nth-child(5n) {
        border-right: none;
    }
    .no-cssgrid .grid-post.grid-template-col-5.grid-gap-post .grid-item {
        width: calc(20% - 32px);
    }
    .no-cssgrid .grid-post.grid-template-col-5.grid-gap-sm .grid-item {
        width: calc(20% - 8px);
    }
    .no-cssgrid .grid-post.grid-template-col-5.grid-gap-md .grid-item {
        width: calc(20% - 16px);
    }
    .no-cssgrid .grid-post.grid-template-col-5.grid-gap-lg .grid-item {
        width: calc(20% - 24px);
    }
    .no-cssgrid .grid-post.grid-template-col-5.grid-gap-xl .grid-item {
        width: calc(20% - 32px);
    }
}

.grid-post .item-fullwidth {
    grid-column: 1 / -1;
}

.no-cssgrid .grid-post .item-fullwidth {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

@media (max-width: 575px) {
    .grid-post.grid-template-list-xs {
        grid-template-columns: 1fr;
    }
    .grid-post.grid-template-list-xs .grid-post-item {
        grid-column: 1 / -1;
    }
    .grid-post.grid-template-list-xs .grid-post-item .card {
        -webkit-box-orient: horizontal !important;
        flex-direction: row !important;
        padding-bottom: 1rem;
        border-bottom: 1px dashed #b4b4b4;
        background-color: transparent;
        box-shadow: none;
    }
    .grid-post.grid-template-list-xs .grid-post-item .card .card-media img,
    .grid-post.grid-template-list-xs .grid-post-item .card .card-media .embed-responsive {
        width: 25vw !important;
        min-width: 80px !important;
        margin-right: 1rem;
    }
    .grid-post.grid-template-list-xs .grid-post-item .card .card-body {
        -ms-flex-preferred-size: 0 !important;
        flex-basis: 0 !important;
        -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important;
        padding: 0 !important;
    }
    .grid-post.grid-template-list-xs .grid-post-item .card .card-body .display-posttitle {
        /*font-size: 1.25rem;*/
        margin-top: 0px !important;
        padding: 0px 10px;
    }
    .grid-post.grid-template-list-xs .grid-post-item .card .card-body [class*="post-meta"],
    .grid-post.grid-template-list-xs .grid-post-item .card .card-footer,
    .grid-post.grid-template-list-xs .grid-post-item .card .btn,
    .grid-post.grid-template-list-xs .grid-post-item .card .post-excerpt {
        display: none;
    }
}

@media (min-width: 1200px) {
    .grid-post.grid-template-list-xl {
        grid-template-columns: 1fr;
    }
    .grid-post.grid-template-list-xl .grid-post-item {
        grid-column: 1 / -1;
    }
    .grid-post.grid-template-list-xl .grid-post-item .card {
        -webkit-box-orient: horizontal !important;
        flex-direction: row !important;
        padding-bottom: 1rem;
        border-bottom: 1px dashed #b4b4b4;
        background-color: transparent;
        box-shadow: none;
    }
    .grid-post.grid-template-list-xl .grid-post-item .card .card-media img,
    .grid-post.grid-template-list-xl .grid-post-item .card .card-media .embed-responsive {
        width: 8rem !important;
        min-width: 80px !important;
        margin-right: 1rem;
    }
    .grid-post.grid-template-list-xl .grid-post-item .card .card-body {
        -ms-flex-preferred-size: 0 !important;
        flex-basis: 0 !important;
        -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important;
        padding: 0 !important;
    }
    .grid-post.grid-template-list-xl .grid-post-item .card .card-body .display-posttitle {
        font-size: 1.25rem;
    }
    .grid-post.grid-template-list-xl .grid-post-item .card .card-body [class*="post-meta"],
    .grid-post.grid-template-list-xl .grid-post-item .card .card-footer,
    .grid-post.grid-template-list-xl .grid-post-item .card .btn,
    .grid-post.grid-template-list-xs .grid-post-item .card .post-excerpt {
        display: none;
    }
}


/*----*/


/* Card --------------*/

.card {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 0 solid rgba(27, 22, 66, .125);
    border-radius: 0
}

.card .card-header,
.card .card-body,
.card .card-footer,
.card.card-sm .card-header,
.card.card-sm .card-body,
.card.card-sm .card-footer {
    position: relative;
    width: 100%;
    padding: 2rem;
    background-color: transparent;
}

@media (min-width: 992px) {
    .card .card-header,
    .card .card-body,
    .card .card-footer {
        padding: 2rem 3rem;
    }
}

.h-100 {
    height: 100% !important;
}

.card>hr {
    margin-right: 0;
    margin-left: 0
}

.card>.list-group {
    border-top: inherit;
    border-bottom: inherit
}

.card>.list-group:first-child {
    border-top-width: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.card>.list-group:last-child {
    border-bottom-width: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0
}

.card-body {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    min-height: 1px;
    padding: 3rem
}

.card-title {
    margin-bottom: 2rem
}

.card-subtitle {
    margin-top: -1rem;
    margin-bottom: 0
}

.card-text:last-child {
    margin-bottom: 0
}

.card-link:hover {
    text-decoration: none
}

.card-link+.card-link {
    margin-left: 3rem
}

.card-header {
    padding: 2rem 3rem;
    margin-bottom: 0;
    background-color: rgba(27, 22, 66, .03);
    border-bottom: 0 solid rgba(27, 22, 66, .125)
}

.card-header:first-child {
    border-radius: 0
}

.card-header+.list-group .list-group-item:first-child {
    border-top: 0
}

.card-footer {
    padding: 2rem 3rem;
    background-color: rgba(27, 22, 66, .03);
    border-top: 0 solid rgba(27, 22, 66, .125)
}

.card-footer:last-child {
    border-radius: 0
}

.card-header-tabs {
    margin-right: -1.5rem;
    margin-bottom: -2rem;
    margin-left: -1.5rem;
    border-bottom: 0
}

.card-header-pills {
    margin-right: -1.5rem;
    margin-left: -1.5rem
}

.card-img-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1.25rem
}

.card-img,
.card-img-bottom,
.card-img-top {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%
}

.card-img,
.card-img-top {
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.card-img,
.card-img-bottom {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0
}

.card-deck .card {
    margin-bottom: 16px
}

.news-heading {
    font-size: 30px;
    font-weight: 700;
}

.newstitle a,
.newstitle a:active,
.newstitle a:visited {
    color: #000;
    text-decoration: none
}

.newstitle a:focus,
.newstitle a:hover {
    color: #649628;
    text-decoration: none
}

.newstitle h3 {
    font-weight: 400;
}

.newstitle .icon {
    margin-right: 10px;
}

.newstitle .close {
    color: #000;
    opacity: 0.2;
    filter: alpha(opacity=20);
}

.newstitle .close:hover {
    opacity: 0.5;
    filter: alpha(opacity=50);
}

.newstitle a {
    color: #000;
    text-decoration: none;
}

.layout-boxed html,
.layout-boxed body {
    height: 100%;
}


/* Layout */

.wrapper {
    height: 100%;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
}

.wrapper:before,
.wrapper:after {
    content: " ";
    display: table;
}

.wrapper:after {
    clear: both;
}

.layout-boxed .wrapper {
    max-width: 1250px;
    margin: 0 auto;
    min-height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
    position: relative;
}

.layout-boxed {
    background: url('../img/boxed-bg.jpg') repeat fixed;
}


/*
* Content Wrapper - contains the main content
*/

.content-wrapper,
.main-footer {
    -webkit-transition: -webkit-transform 0.3s ease-in-out, margin 0.3s ease-in-out;
    -moz-transition: -moz-transform 0.3s ease-in-out, margin 0.3s ease-in-out;
    -o-transition: -o-transform 0.3s ease-in-out, margin 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, margin 0.3s ease-in-out;
    margin-left: 230px;
    z-index: 820;
}

.main-footerCPA {
    background: #fff;
    padding: 15px;
    color: #444;
    border-top: 1px solid #d2d6de
}

.layout-top-nav .content-wrapper,
.layout-top-nav .main-footer {
    margin-left: 0;
}


/*-----------style------------------------*/

.group::before {
    display: table;
    content: "";
}

.group::after {
    display: table;
    content: "";
}

.group::after {
    clear: both;
}

.group {
    -ms-zoom: 1;
}

.screen-reader-text {
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    position: absolute;
}

img.centered {
    margin-right: auto;
    margin-left: auto;
    display: block;
}

.aligncenter {
    margin-right: auto;
    margin-left: auto;
    display: block;
}

div.aligncenter {
    margin-right: auto;
    margin-left: auto;
    display: block;
}

img.alignright {
    display: inline;
}

img.alignleft {
    display: inline;
}

.alignright {
    margin-left: 1em;
    float: right;
}

.alignleft {
    margin-right: 1em;
    float: left;
}

.wp-caption {
    border: 1px solid rgb(228, 228, 228);
    border-image: none;
    text-align: center;
    padding-top: 4px;
    margin-bottom: 1em;
    background-color: rgb(243, 243, 243);
}

.wp-caption img {
    margin: 0px;
    padding: 0px;
    border: 0px currentColor;
    border-image: none;
}

.wp-caption p.wp-caption-text {
    margin: 0px;
    padding: 0px 4px 5px;
    font-size: 0.8em;
}

li {
    list-style: none;
}

.entry ol {
    margin: 0px 0px 1.5em;
    text-indent: 0px;
    padding-left: 1.6em;
}

.entry ul {
    margin: 0px 0px 1.5em;
    text-indent: 0px;
    padding-left: 1.2em;
}

.entry ol li {
    margin: 0px 0px 0.5em;
    list-style-type: decimal;
    list-style-position: outside;
}

.entry ul li {
    margin: 0px 0px 0.5em;
    list-style-type: disc;
    list-style-position: outside;
}

.entry li ul {
    margin: 0.5em 0px 0px 1em;
}

.entry li ol {
    margin: 0.5em 0px 0px 1em;
}

.entry td {
    background-color: #fff;
}

.entry th {
    background-color: #fff;
}

.entry table.table {
    border-bottom-color: rgb(221, 221, 221);
    border-bottom-width: 1px;
    border-bottom-style: solid;
}

.entry table.table th {
    color: #fff;
    background-color: #005701;
}

.entry table.table .bar {
    border: currentColor;
    border-image: none;
    background-color: #fff;
}

.entry table.table .bar a {
    margin: 0px 0px 10px;
    padding: 4px 10px 2px;
    border: 1px solid rgb(204, 204, 204);
    border-image: none;
}

.entry table.table tr:nth-child(2n+1) {
    background-color: rgb(244, 244, 244);
}

.entry img {
    height: auto;
    max-width: 100%;
}

.edit-link a {
    border-radius: 30px;
    border: 2px solid #fff;
    border-image: none;
    left: 5px;
    width: 30px;
    height: 30px;
    text-align: center;
    bottom: 5px;
    color: #fff;
    line-height: 30px;
    overflow: hidden;
    font-size: 11px;
    display: block;
    position: fixed;
    z-index: 999;
    background-color: rgba(0, 0, 0, 0.6);
}

a.btn.more {
    bottom: 11px;
    color: white;
    font-size: 19px;
    position: absolute;
    z-index: 10;
    background-color: #005e12;
}

a.btn.more:hover {
    opacity: 0.8;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    -moz-font-feature-settings: "liga", "kern";
}

input {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    -moz-font-feature-settings: "liga", "kern";
}

textarea {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    -moz-font-feature-settings: "liga", "kern";
}

select {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    -moz-font-feature-settings: "liga", "kern";
}

button {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    -moz-font-feature-settings: "liga", "kern";
}

.bg {
    background: url(../images/bg.jpg) no-repeat fixed center;
    background-size: cover;
    background-attachment: fixed;
}

.form-control {
    font: 14px 'CHULALONGKORN', Geneva, Arial, Helvetica, Tahama, sans-serif;
    font-size-adjust: none;
    font-stretch: normal;
}

b {
    font-family: 'CHULALONGKORN', Geneva, Arial, Helvetica, Tahama, sans-serif;
    font-weight: normal !important;
}

strong {
    font-family: 'CHULALONGKORN', Geneva, Arial, Helvetica, Tahama, sans-serif;
    font-weight: 600 !important;
}

th {
    font-family: 'CHULALONGKORN', Geneva, Arial, Helvetica, Tahama, sans-serif;
    font-weight: normal !important;
}

a {
    color: #000;
    text-decoration: none !important;
}

a:hover {
    color: #649628;
}

a:active {
    color: #045413;
}

h1 {
    font-family: 'CHULALONGKORN', Geneva, Arial, Helvetica, Tahama, sans-serif;
}

h2 {
    font-family: 'CHULALONGKORN', Geneva, Arial, Helvetica, Tahama, sans-serif;
}

h3 {
    font-family: 'CHULALONGKORN', Geneva, Arial, Helvetica, Tahama, sans-serif;
}

h4 {
    font-family: 'CHULALONGKORN', Geneva, Arial, Helvetica, Tahama, sans-serif;
}

#nav {
    font-family: 'CHULALONGKORN', Geneva, Arial, Helvetica, Tahama, sans-serif;
}

#nav-top {
    font-family: 'CHULALONGKORN', Geneva, Arial, Helvetica, Tahama, sans-serif;
}

ul {
    padding: 0px;
}

h1 {
    font-size: 26px;
}

h2 {
    font-size: 22px;
}

h3 {
    font-size: 20px;
}

#page {
    width: calc(100% - 64px);
    padding: 0px 30px;
}

.logo {
    width: 150px;
    height: 194px;
}

#logo h2 {
    color: #649628;
}

.containerPage {
    width: calc(100% - 100px);
    padding: 0px 30px;
    margin: 0 auto;
}

.containerLogin {
    background: rgba(249, 243, 243, 0.5);
    width: 50%;
    padding: 5px 1em 1em 1em;
    margin: 0.5em auto 2em;
    position: relative;
}

.txtlogin[type=login],
.txtlogin[type=Password] {
    /*	font-family: "Lucida Grande", Arial, Helvetica;*/
    font-size: 1.5em;
    font-style: normal;
    font-weight: bold;
    border: 1px solid #666;
    background-color: #fff;
    height: 30px;
    color: #666;
    text-align: center;
    padding: 5px 0 2px 0;
    border--radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
}

.txtlogin {
    font-size: 1.5em;
    padding: 5px 0 2px 0;
    font-style: normal;
    font-weight: bold;
    border: 1px solid #666;
    background-color: #fff;
    height: 30px;
    color: #666;
    text-align: center;
    cursor: text;
    border--radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
}

.txtlogin:focus,
active,
hover {
    font-size: 1.5em;
    padding: 5px 0 2px 0;
    font-style: normal;
    font-weight: bold;
    border: 1px solid #666;
    background-color: #fafbd4;
    height: 30px;
    color: #666;
    text-align: center;
    -webkit-box-shadow: -1px 0px 5px #fff;
    -moz-box-shadow: -1px 0px 5px #fff;
    box-shadow: -1px 0px 5px #fff;
}

.textnotic {
    color: #00c0ef !important;
    font: italic 12px Geneva, Arial, Helvetica, Tahama, sans-serif;
}

.txtlogin:hover {
    font-size: 1.5em;
    padding: 5px 0 2px 0;
    font-style: normal;
    border: 1px solid #666;
    background-color: #fafbd4;
    height: 30px;
    color: #666;
    text-align: center;
    -webkit-box-shadow: -1px 0px 5px #fff;
    -moz-box-shadow: -1px 0px 5px #fff;
    box-shadow: -1px 0px 5px #fff;
}

.btn-all-event {
    float: right;
}

.btn-update {
    border-width: medium medium 2px;
    border-style: none none solid;
    border-color: #ff8c00 currentColor currentColor;
    padding: 6px 12px 3px;
    border-radius: 3px;
    border-image: none;
    color: #fff;
    font-family: 'CHULALONGKORN', Geneva, Arial, Helvetica, Tahama, sans-serif;
    font-size: 14px;
    background-color: #ff8c00;
}

.btn-update:hover {
    color: #fff;
    border-bottom-color: #649628;
    border-bottom-width: 2px;
    border-bottom-style: solid;
    background-color: #23a524;
}

.buttonlink {
    padding: 3px 5px 3px 5px;
    margin: 0px 5px 5px 5px;
    color: #fff;
    font-size: 16px;
    outline: none;
    background: #649628;
    border: none;
    text-align: center;
    border-radius: 3px;
    line-height: 25px;
}

a:hover.buttonlink {
    padding: 3px 5px 3px 5px;
    margin: 0px 5px 5px 5px;
    color: #fff;
    font-size: 16px;
    outline: none;
    background: #ff3300;
    text-align: center;
    border-radius: 3px;
    border-bottom-color: #649628;
    border-bottom-width: 2px;
    border-bottom-style: solid;
    line-height: 25px;
}

.buttonlink:hover {
    padding: 3px 5px 3px 5px;
    margin: 0px 5px 5px 5px;
    color: #fff;
    font-size: 16px;
    outline: none;
    background: #ff3300;
    border-radius: 3px;
    border-bottom-color: #649628;
    border-bottom-width: 2px;
    border-bottom-style: solid;
    text-align: center;
    line-height: 25px;
}

.login {
    padding: 0em 1em 1em 1em;
    margin: 0.5em auto;
    position: relative;
}

.login-text {
    font-size: 1em;
    font-family: 'CHULALONGKORN', sans-serif;
    text-align: center;
    color: #649628;
    margin: 5px 0px 0px 0px;
    width: 50%;
}

#footerlogin {
    position: fixed;
    left: 0px;
    bottom: 0px;
    z-index: 0;
    width: 100%;
    color: #aaa;
    /*background: rgba(249, 243, 243, 0.5);*/
    padding: 4px 0 2px 0;
}

.footertext p {
    color: #aaa;
    font-size: 0.7em;
    margin-bottom: 0em;
}

.footertext a {
    color: #aaa;
}

.footertext a:hover {
    color: #f0bd23;
}

.footertext {
    margin: 0 0 0 0;
    padding: 2px 0px 5px 0px;
    line-height: 10px;
    text-align: center;
    /*	font-family: Geneva, Arial, Helvetica,Tahama, sans-serif; */
    font-size: 1em;
    position: relative;
}

.shiftnav ul.shiftnav-menu.shiftnav-targets-text-enormous li.menu-item>.shiftnav-target {
    line-height: 1.3em !important;
}

#head>.container {
    padding-bottom: 20px;
}

#brand {
    padding: 20px 0 0;
}

#brand img {
    max-width: 690px !important;
    height: 70px !important;
}

#brand2 img {
    max-width: 170px !important;
    height: 85px !important;
}

#nav-group {
    padding: 20px 0px 0px;
}

#nav-group ul {
    margin: 0px;
    padding: 0px;
}

.menu-toggle {
    display: none;
}

.caret {
    margin: -4px 0px 0px 4px;
}

#nav-top {
    margin: 70px 0px 10px 10px;
}

#nav {
    background: #649628;
    font-size: 16px;
}

#nav .mainnav {
    margin: 0px;
}

#nav .mainnav>li>a {
    padding: 12px 10px 9px;
    color: #ffffff;
    display: inline-block;
}

#nav .mainnav>li>a:hover {
    background-color: #007315;
}

body.home #nav .mainnav>li.home>a:hover {
    background-color: #005e12;
}

#nav .mainnav>li.open>a {
    background-color: #005e12;
}

#nav .mainnav>li.current_page_parent>a {
    background-color: #005e12;
}

#nav .mainnav>li.current_page_item>a {
    background-color: #005e12;
}

#nav .mainnav>li.current-menu-item>a {
    background-color: #005e12;
}

body.home #nav .mainnav>li.home>a {
    background: none;
}

.dropdown-menu {
    border-radius: 0px;
    min-width: 190px;
}

#nav .dropdown-menu {
    padding: 6px 0px;
    border: currentColor;
    border-image: none;
    left: 0px;
    top: 32px;
    font-size: 14px;
    box-shadow: none !important;
    background-color: #005e12;
}

#nav .dropdown-menu a {
    padding: 4px 10px;
    color: #ffffff;
}

#nav .dropdown-menu a:hover {
    background-color: #069b22;
}

#nav-top .dropdown-menu {
    left: 20px;
}

#nav-top .topnav>li {
    list-style: none;
    display: inline;
}

#nav .mainnav>li {
    list-style: none;
    display: inline;
}

#nav-top .topnav>li>a {
    margin: 0px 0px 0px 10px;
    font-size: 14px;
}

#nav .dropdown-submenu {
    position: relative;
}

#nav .dropdown-submenu>.dropdown-menu {
    left: 100%;
    top: 0px;
    margin-top: -6px;
    margin-left: -1px;
    background-color: #649628;
}

#nav .dropdown-submenu:hover>.dropdown-menu {
    display: block;
}

#nav .dropdown-submenu>a::after {
    border-width: 5px 0px 5px 5px;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
    width: 0px;
    height: 0px;
    margin-top: 5px;
    margin-right: -10px;
    float: right;
    display: block;
    content: " ";
}

#nav .dropdown-submenu:hover>a::after {
    border-left-color: #ffffff;
}

#nav .dropdown-submenu:hover>a {
    background-color: #649628;
}

#nav .dropdown-submenu .dropdown-menu a:hover {
    background-color: #005e12;
}

#nav .dropdown-submenu.pull-left {
    float: none;
}

.dropdown-submenu.pull-left>.dropdown-menu {
    left: -100%;
    margin-left: 10px;
}

#fontresizer {
    margin: 20px 0px 0px;
    height: 40px;
    float: right;
    white-space: nowrap;
}

#lang {
    margin: 2px 2px 0px;
    clear: right;
    float: right;
}

#lang a {
    margin: 0px 0px 0px 2px;
    width: 18px;
    height: 16px;
    display: inline-block;
}

#lang-th {
    background: url(../images/th.png) no-repeat;
}

#lang-en {
    background: url(../images/en.png) no-repeat;
    opacity: 0.3;
}

#user {
    margin: 2px 2px 0px;
    clear: right;
    float: right;
}

#searchbox {
    margin: 8px 12px 0px 0px;
    font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
    float: right;
}

#s {
    width: 150px;
    height: 30px;
    padding-top: 8px;
    font-size: 12px;
}

#searchbox button {
    padding: 6px;
    width: 30px;
    height: 30px;
    font-size: 12px;
    border-left-color: currentColor;
    border-left-width: medium;
    border-left-style: none;
    background-color: rgb(238, 238, 238);
}

body .searchwp-live-search-result p {
    padding: 5px 8px;
}

body .searchwp-live-search-result p a {
    color: rgb(51, 51, 51);
}

#weather {
    margin: 0px;
    float: right;
}

#weather .bonobo_widget {
    padding: 5px 15px 0px 0px;
    width: 160px;
}

#weather .left_navigation {
    display: none;
}

#weather .right_navigation {
    display: none;
}

#weather .center_content {
    margin: 0px;
}

#weather .date {
    display: none;
}

#weather .city_title {
    display: none;
}

#weather .icon {
    padding: 3px 0px 0px;
    float: left;
}

#weather .icon img {
    width: 28px;
    height: 28px;
}

#weather .temperature {
    padding: 0px 0px 0px 36px;
    font-size: 15px;
}

#weather .bonobo_widget .desc li {
    padding: 0px 0px 0px 36px !important;
    color: rgb(230, 224, 226) !important;
    font-size: 11px !important;
    display: block;
}

#head>.container {
    border-radius: 3px 3px 0px 0px;
}

#main>.container {
    padding-bottom: 20px;
}

.rsMinW {
    background: #fff !important;
}

.rsMinW .rsOverflow {
    background: #fff !important;
}

.rsMinW .rsSlide {
    background: #fff !important;
}

.rsMinW .rsVideoFrameHolder {
    background: #fff !important;
}

.rsMinW .rsThumbs {
    background: #fff !important;
}

.abBlackBox a {
    color: #ffffff;
}

.abBlackBox {
    background: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%) !important;
    padding: 25px 20px 0px !important;
}

.abBlackBox h2 {
    margin: 0px;
}

.abBlackBox p {
    font-size: 1em;
}

.rsMinW .rsBullet {
    padding: 6px 6px 6px 4px !important;
}

#slider {
    padding: 0px;
    max-height: 420px;
}

h2 i.fa {
    font-size: 22px;
}

h5 i.fa {
    font-size: 80px;
}

body.home #main {
    padding: 0px;
}

#main {
    padding-bottom: 30px;
    background-color: #649628;
}

.container.title {
    background: #649628 url("img/title-news.jpg");
    margin: 0px 0px -60px;
    height: 150px;
    color: #ffffff;
}

body.page-about .container.title {
    background-image: url("img/title-about.jpg");
}

body.page-admission .container.title {
    background-image: url("img/title-admission.jpg");
}

body.page-faculties-and-departments .container.title {
    background-image: url("img/title-faculty.jpg");
}

body.page-faculties-and-departments table th {
    white-space: nowrap;
}

body.page-international .container.title {
    background-image: url("img/title-international.jpg");
}

body.page-news .container.title {
    background-image: url("img/title-news.jpg");
}

body.page-research .container.title {
    background-image: url("img/title-research.jpg");
}

body.post-type-archive-chula-inside .container.title {
    background: #fff;
}

body.single-chula-inside .container.title {
    background: #fff;
}

#chula-inside {
    margin-bottom: 10px;
}

h1.title {
    margin: 0px;
    padding: 36px 20px 0px;
    color: #ffffff;
    line-height: 1em;
    font-size: 36px !important;
}

h1.sub-title {
    margin: 0px 0px 20px;
}

h1.title-post {
    margin-top: -5px;
}

.single-meta {
    margin: 0px 0px 20px;
    color: rgb(104, 82, 90);
}

.single-meta i.fa {
    margin: -2px 4px 0px 0px;
    color: rgb(136, 136, 136);
    font-size: 14px;
    display: inline-block;
}

.single-meta-news-clipping {
    margin: 0px 0px 20px;
}

.view {
    text-align: right;
    font-size: 0.85em;
    opacity: 0.7;
}

.news-clipping-date {
    text-align: right;
    padding-right: 5px;
}

body.home th.news-clipping-date {
    display: none;
}

body.home td.news-clipping-date {
    display: none;
}

#pdf a {
    margin: 0px 0px 10px;
    font-size: 0.95em;
    font-weight: bold;
    float: right;
}

#pdf a {
    animation-name: blinker;
    animation-duration: 1.2s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    -webkit-animation-name: blinker;
    -webkit-animation-duration: 1.2s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-name: blinker;
    -moz-animation-duration: 1.2s;
    -moz-animation-timing-function: linear;
    -moz-animation-iteration-count: infinite;
}

#pdf iframe {
    border: 1px solid rgb(204, 204, 204);
    border-image: none;
    overflow: hidden;
}

.entry {
    padding: 0px 0px 20px;
}

.social-share {
    padding: 15px 30px;
    height: 50px;
    border-bottom-color: rgb(221, 221, 221);
    border-bottom-width: 1px;
    border-bottom-style: dashed;
    background-color: #ffffff;
}

.noborder .social-share {
    margin: 38px 0px 0px;
    padding: 0px;
    border: currentColor;
    border-image: none;
    width: 310px;
    height: 20px;
}

.single-meta .noborder .social-share {
    margin: 2px 0px 0px;
}

body.single-periodical .noborder .social-share {
    margin: 0px;
}

.button-fb {
    margin: -5px 25px 0px 0px;
    float: left;
    display: inline-block;
}

.button-tw {
    float: left;
}

.button-gplus {
    float: left;
}

.periodical-item .pic img {
    box-shadow: 1px 1px 4px #aaa;
}

.periodical-item h3 {
    margin: 16px 0px 0px;
    color: rgb(51, 51, 51);
    font-size: 0.85em;
}

.periodical-item small {
    color: rgb(102, 102, 102);
}

#content {
    padding: 30px 30px 10px;
    min-height: 600px;
    background-color: #ffffff;
}

body.home #content {
    padding: 0px;
    min-height: 0px;
}

#content .fb-comments {
    clear: both;
    display: block;
}

#content .fb-comments span {
    width: 100% !important;
}

#content .fb-comments iframe {
    width: 100% !important;
}

#side h2 {
    margin: 0px;
    padding: 10px 20px 5px;
    background-color: rgb(238, 238, 238);
}

#side ul {
    margin: 0px;
    padding: 0px;
}

#side li a {
    padding: 4px 20px;
    color: rgb(102, 102, 102);
    border-top-color: rgb(221, 221, 221);
    border-top-width: 1px;
    border-top-style: solid;
    display: block;
    background-color: #ffffff;
}

#side li li ul {
    padding: 0px 0px 0px 20px;
    background-color: #ffffff;
}

#side li li li a {
    padding: 2px 10px;
    border-top-color: currentColor;
    border-top-width: medium;
    border-top-style: none;
}

#side li a:hover {
    background-color: rgb(242, 242, 242);
}

#side li a:active {
    color: rgb(136, 136, 136);
    background-color: rgb(230, 230, 230);
}

#side li.current_page_item>a {
    color: #048e1e;
    border-left-color: #649628;
    border-left-width: 4px;
    border-left-style: solid;
}

#side li.current-menu-item>a {
    color: #048e1e;
    border-left-color: #649628;
    border-left-width: 4px;
    border-left-style: solid;
}

#side li.current-post-ancestor>a {
    color: #048e1e;
    border-left-color: #649628;
    border-left-width: 4px;
    border-left-style: solid;
}

.news-clipping#side li.m-news-clipping>a {
    color: #048e1e;
    border-left-color: #649628;
    border-left-width: 4px;
    border-left-style: solid;
}

#side h2 {
    margin-top: 0px;
}

#side .space {
    background: none;
    margin: 0px 0px 30px;
}

#section-calendar {
    overflow: hidden;
}

#section-calendar .col-calendar {
    padding: 20px 5px;
    float: left;
}

#mini_calendar {
    width: 227px;
}

#table_header {
    text-align: center;
    font-weight: bold;
}

#mini_calendar th {
    padding: 1px 8px;
}

#mini_calendar td {
    padding: 1px 8px;
}

.table-bordered>thead>tr>th {
    font-weight: normal;
    border-bottom-width: 1px;
}

.table-bordered>thead>tr>td {
    font-weight: normal;
    border-bottom-width: 1px;
}

#section-calendar .col-events {
    padding: 0px 25px;
    width: 910px;
    height: 200px;
    overflow: hidden;
    float: right;
    position: relative;
}

#section-calendar .col-events .btn {
    right: 0px;
    bottom: 20px;
    position: absolute;
    z-index: 99;
}

#section-calendar .col-events .bx-wrapper {
    max-width: 910px !important;
}

#section-calendar ul {
    margin: 0px;
}

#section-calendar ul li {
    list-style: none;
    width: 215px;
    height: 280px;
    float: left;
    display: block;
}

#section-calendar a.event-item {
    padding: 20px 10px 0px;
    color: rgb(68, 68, 68);
    overflow: hidden;
    float: left;
    display: block;
}

.event-item h3 {
    margin: 0px 0px 10px;
    line-height: 1.1em !important;
}

.event-item h3 span {
    line-height: 0.8em !important;
    font-size: 0.8em !important;
}

.event-item .event-date {
    margin: 0px 0px 15px;
}

.event-item .event-date .month {
    padding: 0px 6px 0px 8px;
    border-radius: 2px 0px 0px 2px;
    text-transform: uppercase;
    font-weight: normal;
    display: inline-block;
    background-color: rgb(225, 225, 225);
}

.event-item .event-date .date {
    padding: 0px 6px 0px 8px;
    border-radius: 0px 2px 2px 0px;
    color: rgb(34, 34, 34);
    font-weight: normal;
    display: inline-block;
    background-color: rgb(212, 212, 212);
}

.event-item .event-date i {
    margin: 0px 5px;
    color: rgb(170, 170, 170);
    line-height: 8px;
    font-size: 0.66em;
}

.event-item .event-place {
    line-height: 1.1em;
    padding-left: 20px;
    position: relative;
}

.event-item .event-place i {
    left: 0px;
    top: 0px;
    color: rgb(136, 136, 136);
    position: absolute;
}

.bx-next {
    top: 100px;
    right: 0px;
    font-size: 40px;
    position: absolute;
}

.bx-prev {
    left: 0px;
    top: 100px;
    font-size: 40px;
    position: absolute;
    z-index: 10;
}

td a.calendar-table-muted {
    opacity: 0.3;
}

#section-news-link h2 {
    color: #044f12;
}

#section-news-link>.container {
    background-color: #d9d9d9;
    padding-bottom: 10px;
}

#section-news .post:nth-child(3n+1) {
    clear: left;
}

#section-news .post a,
#section-news article a {
    display: block;
    margin-bottom: 20px;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
}

#section-news .post a:hover #section-news article a:hover {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
    border-radius: 3px;
}

#section-news a:active {
    opacity: 0.6;
}


/*
#section-news img{
    border-radius: 3px 3px 0 0;
    max-width: 9999px;
    width: 100%;
    height: auto;
}
*/

#section-news .pic {
    overflow: hidden;
    text-align: center;
    width: 100%;
    max-height: 130px;
}

#section-news .info {
    padding: 15px 12px;
    height: 100px;
    overflow: hidden;
    background-color: #fff;
    border-radius: 0 0 3px 3px;
}

#section-news h3 {
    font-size: 18px;
    margin: 0;
    color: #666;
    height: 80px;
    overflow: hidden;
}

#section-news a:hover h3 {
    color: #649628;
}

#results {
    background-color: #fff;
    padding: 30px;
}

#results .item {
    border-bottom: 1px dashed #ccc;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

#section-search h3 {
    margin: 0 0 5px;
    color: #666;
    overflow: hidden;
    font-size: 1.1em;
}

#section-search .meta {
    font-size: 0.8em;
}

#section-news a:hover h3 {
    color: #649628;
}

#menu-quick a {
    color: #444;
}

#menu-quick a:before {
    content: "\f0da";
    font-family: FontAwesome;
    width: 12px;
    display: inline-block;
    color: #888;
    font-size: 12px;
}

#section-more {
    font-size: 0.952em;
}

#section-more h2 {
    color: #044f12;
}

#section-more .container {
    /* background-color: #e8cdd5; */
    padding-top: 24px;
    padding-bottom: 14px;
}

#section-more h2 {
    margin-top: 0;
}

table.news-clipping {
    background-color: #eee6ea;
    margin: 0 0 5px;
    width: 100%;
}

table.news-clipping td {
    padding: 4px 8px;
    vertical-align: top;
}

table.news-clipping tr:nth-child(2n) {
    background-color: #fbf9fa;
}

table.news-clipping tr:last-child {
    border-radius: 0 0 3px 3px;
}

table.news-clipping th {
    background-color: #005e12;
    color: #fff;
    font-weight: normal;
    vertical-align: top;
    padding: 4px 8px;
}

table.news-clipping .sourcename a {
    color: #666;
}

body.home table.news-clipping .sourcename a {
    pointer-events: none;
    cursor: default;
}

.clip-item {
    margin: 0 0 10px;
}

.clip-item .meta {
    font-size: 0.524em;
    color: #044f12;
}

#section-more .widget_sp_image {
    margin: 0 0 12px;
}

#section-more .widgettitle {
    display: none;
}

#section-more .widget_sp_image img {
    border-radius: 3px;
}

#section-more .widget_sp_image a:hover img {
    box-shadow: 0px 0px 4px #999;
}

#vdos {
    height: 320px;
}

#vdos .carousel-indicators {
    bottom: 0;
}

#vdos .carousel-indicators li {
    border: 2px solid #649628;
    width: 12px;
    height: 12px;
    margin: 1px;
    background-color: #fff;
}

#vdos .carousel-indicators li.active {
    background-color: #649628;
}

#vdos .item:after {
    content: "";
    width: 45px;
    height: 70px;
    background: url(img/flag.png) no-repeat;
    position: absolute;
    top: 0;
    right: 5px;
    z-index: 100;
    display: block;
}


/* == archive == */

.pagination>li>a,
.pagination>li>span {
    line-height: 1;
    color: #005e12;
}

.pagination>li>a:hover,
.pagination>li>span:hover,
.pagination>li>a:focus,
.pagination>li>span:focus {
    color: #649628;
    background-color: #f7ecef;
}

#foot .container {
    color: #b2a6ac;
    font-size: 14px;
    line-height: 1.3;
    background-color: #004a0e;
}

#foot .container a {
    color: #b2a6ac;
}

#foot h2 {
    margin: 0 0 5px;
}

#foot .container {
    padding-top: 20px;
    padding-bottom: 14px;
    border-radius: 0 0 3px 3px;
}

#foot #text-3 {
    clear: both;
    padding: 15px 0;
    overflow: hidden;
}

#foot #text-3 .group {
    float: left;
    width: 130px;
}

#foot #text-3 a {
    display: block;
    height: 28px;
    padding: 0 0 0 0px;
    margin: 0 0 5px;
    line-height: 28px;
}

#foot #text-3 a.chrome {
    padding: 0;
}

#foot a.facebook {
    background: url(img/icon-facebook.png) no-repeat;
}

#foot a.twitter {
    background: url(img/icon-twitter.png) no-repeat;
}

#foot a.facebook {
    background: url(img/icon-facebook.png) no-repeat;
}

#foot a.youtube {
    background: url(img/icon-youtube.png) no-repeat;
}

#foot a.rss {
    background: url(img/icon-rss.png) no-repeat;
}

#foot a.sms {
    background: url(img/icon-sms.png) no-repeat;
}

#foot a.line {
    background: url(img/icon-line.png) no-repeat;
}

#foot a.app {
    background: url(img/icon-app.png) no-repeat;
}

#foot #text-4 {
    clear: both;
}

#foot #text-2 {
    float: left;
    width: 260px;
    margin: 0 60px 10px 0;
}

#foot .btn-default {
    padding: 8px 10px 4px;
    font-size: 14px;
}

#foot .form-control {
    border-bottom: 2px solid #ccc;
}


/* IE8 */

html.lt-ie9 body {
    font: 14px/1.6em "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
}

html.lt-ie9 #section-news h3 {
    font: 14px/1.6em "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
}

html.lt-ie9 .abBlackBox,
html.lt-ie9 .rsABlock {
    background: none !important;
    background-image: url(img/slider.png) !important;
}

.fullwidth-section .fullwidth-content {
    padding-top: 64px;
    padding-bottom: 64px;
}

@media (max-width: 480px) {
    .containerPage {
        width: 100%;
        padding: 0px 0px;
        margin: 0 auto;
    }
    .containerLogin {
        background: rgba(249, 243, 243, 0.5);
        width: 80%;
        padding: 5px 1em 1em 1em;
        margin: 0.5em auto 2em;
        position: relative;
    }
    .txtlogin[type=login],
    .txtlogin[type=Password] {
        width: 80%
    }
    .txtlogin {
        width: 80%
    }
}

@media (max-width: 768px) {
    .containerPage {
        width: 100%;
        padding: 0px 15px;
        margin: 0 auto;
    }
}

@media (min-width: 992px) {
    .containerPage {
        width: calc(100% - 64px);
        padding: 0px 30px;
        margin: 0 auto;
    }
    .fullwidth-section .fullwidth-content {
        padding-top: 64px;
        padding-bottom: 64px;
    }
    #page {
        margin: 22px auto;
        /*  border-radius: 5px;
        box-shadow: 0 0 12px rgba(0, 0, 0, 0.14);
        -moz-box-shadow: 0 0 12px rgba(0, 0, 0, 0.14);*/
    }
    #head>.container {
        padding-bottom: 20px;
    }
    #brand {
        padding: 5px 0 0;
    }
    #nav-group {
        padding: 20px 0 0;
    }
    #nav-group ul {
        padding: 0;
        margin: 0;
    }
    .menu-toggle {
        display: none;
    }
    .caret {
        margin: -4px 0px 0px 4px;
    }
    #nav-top {
        margin: 70px 0px 10px 20px;
    }
    #nav {
        font-size: 16px;
        background-color: #649628;
    }
    #nav .mainnav {
        margin: 0;
    }
    #nav .mainnav>li>a {
        padding: 12px 15px 9px;
        display: inline-block;
        color: #fff;
    }
    #nav .mainnav>li>a:hover,
    body.home #nav .mainnav>li.home>a:hover,
    #nav .mainnav>li.open>a,
    #nav .mainnav>li.current_page_parent>a,
    #nav .mainnav>li.current_page_item>a,
    #nav .mainnav>li.current-menu-item>a {
        background-color: #005e12;
    }
    body.home #nav .mainnav>li.home>a {
        background: none;
    }
    .dropdown-menu {
        border-radius: 0;
        min-width: 190px;
    }
    #nav .dropdown-menu {
        box-shadow: none !important;
        border: none;
        padding: 6px 0;
        left: 0px;
        background-color: #005e12;
        font-size: 14px;
        top: 25px;
    }
    #nav .dropdown-menu a {
        color: #fff;
        padding: 4px 20px;
    }
    #nav .dropdown-menu a:hover {
        background-color: #649628;
    }
    #nav-top .dropdown-menu {
        left: 20px;
    }
    #nav-top .topnav>li,
    #nav .mainnav>li {
        display: inline;
        list-style: none;
    }
    #nav-top .topnav>li>a {
        margin: 0 0 0 10px;
        font-size: 19px;
        padding-bottom: 20px;
    }
    #nav .dropdown-submenu {
        position: relative;
    }
    #nav .dropdown-submenu>.dropdown-menu {
        top: 0;
        left: 100%;
        margin-top: -6px;
        margin-left: -1px;
        background-color: #649628;
    }
    #nav .dropdown-submenu:hover>.dropdown-menu {
        display: block;
    }
    #nav .dropdown-submenu>a:after {
        display: block;
        content: " ";
        float: right;
        width: 0;
        height: 0;
        border-color: transparent;
        border-style: solid;
        border-width: 5px 0 5px 5px;
        border-left-color: #fff;
        margin-top: 5px;
        margin-right: -10px;
        border-left-width: 5px;
    }
    #nav .dropdown-submenu:hover>a:after {
        border-left-color: #ffffff;
    }
    #nav .dropdown-submenu:hover>a {
        background-color: #649628;
    }
    #nav .dropdown-submenu .dropdown-menu a:hover {
        background-color: #649628;
    }
    #nav .dropdown-submenu.pull-left {
        float: none;
    }
    .dropdown-submenu.pull-left>.dropdown-menu {
        left: -100%;
        margin-left: 10px;
    }
    #fontresizer {
        float: right;
        margin: 20px 0 0;
        white-space: nowrap;
        height: 40px;
    }
    #lang {
        float: right;
        margin: 2px 2px 2px;
        clear: right;
    }
    #lang a {
        display: inline-block;
        width: 18px;
        height: 16px;
        margin: 0 0 0 3px;
    }
    #lang-th {
        background: url(../images/th.png) no-repeat;
    }
    #lang-en {
        background: url(../images/en.png) no-repeat;
        opacity: 0.3;
    }
    #searchbox {
        float: right;
        margin: 8px 12px 0 0;
        font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
    }
    #s {
        width: 150px;
        height: 30px;
        font-size: 12px;
        padding-top: 8px;
    }
    #s:focus {
        outline: none;
    }
    #searchbox button {
        height: 30px;
        background-color: #eee;
        width: 30px;
        border-left: none;
        font-size: 12px;
        padding: 6px;
    }
    body .searchwp-live-search-result p {
        padding: 5px 8px;
    }
    body .searchwp-live-search-result p a {
        color: #333;
    }
    #weather {
        float: right;
        margin: 0;
    }
    #weather .bonobo_widget {
        padding: 5px 15px 0 0;
        width: 160px;
    }
    #weather .left_navigation,
    #weather .right_navigation {
        display: none;
    }
    #weather .center_content {
        margin: 0;
    }
    #weather .date {
        display: none;
    }
    #weather .city_title {
        display: none;
    }
    #weather .icon {
        float: left;
        padding: 3px 0 0;
    }
    #weather .icon img {
        width: 28px;
        height: 28px;
    }
    #weather .temperature {
        font-size: 15px;
        padding: 0 0 0 36px;
    }
    #weather .bonobo_widget .desc li {
        font-size: 11px !important;
        padding: 0 0 0 36px !important;
        display: block;
        color: #e6e0e2 !important;
    }
    #head>.container {
        border-radius: 3px 3px 0 0;
    }
    #main>.container {
        padding-bottom: 20px;
    }
    .rsMinW,
    .rsMinW .rsOverflow,
    .rsMinW .rsSlide,
    .rsMinW .rsVideoFrameHolder,
    .rsMinW .rsThumbs {
        background: #fff !important;
    }
    .abBlackBox a {
        color: #fff;
    }
    .abBlackBox {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%) !important;
        padding: 25px 20px 0 !important;
    }
    .abBlackBox h2 {
        margin: 0 0;
    }
    .abBlackBox p {
        font-size: 1em;
    }
    .rsMinW .rsBullet {
        padding: 6px 6px 6px 4px !important;
    }
    #slider {
        padding: 0;
        width: 100%;
    }
    h2 i.fa {
        font-size: 18px;
    }
    h5 i.fa {
        font-size: 80px;
    }
    /* == Page == */
    body.home #main {
        background-color: #fff;
        padding: 0;
    }
    #main {
        background-color: #c1ffc2;
        padding-bottom: 30px;
    }
    .container.title {
        height: 150px;
        margin: 0 0 -60px;
        color: #fff;
        background: #649628;
    }
    body.page-about .container.title {
        background-image: url(img/title-about.jpg);
    }
    body.page-admission .container.title {
        background-image: url(img/title-admission.jpg);
    }
    body.page-faculties-and-departments .container.title {
        background-image: url(img/title-faculty.jpg);
    }
    body.page-faculties-and-departments table th {
        white-space: nowrap;
    }
    body.page-international .container.title {
        background-image: url(img/title-international.jpg);
    }
    body.page-news .container.title {
        background-image: url(img/title-news.jpg);
    }
    body.page-research .container.title {
        background-image: url(img/title-research.jpg);
    }
    h2.title {
        padding: 36px 20px 0;
        margin: 0;
        line-height: 1em;
        font-size: 26px !important;
        color: #fff;
    }
    h2.sub-title {
        margin: 0 0 20px;
    }
    h2.title-post {
        margin-top: -5px;
    }
    h2.title a {
        color: #fff;
    }
    .single-meta {
        color: #68525a;
        margin: 0 0 20px;
    }
    .single-meta i.fa {
        font-size: 14px;
        margin: -2px 4px 0 0;
        display: inline-block;
        color: #888;
    }
    .single-meta-news-clipping {
        margin: 0 0 20px;
    }
    /* view in single */
    .view {
        font-size: 0.857em;
        opacity: 0.7;
        text-align: right;
    }
    /* News Clipping */
    .news-clipping-date {
        text-align: right;
        padding-right: 5px;
    }
    body.home th.news-clipping-date,
    body.home td.news-clipping-date {
        display: none;
    }
    #pdf a {
        float: right;
        margin: 0 0 10px;
        font-size: 0.95em;
        font-weight: bold;
    }
    #pdf a {
        -webkit-animation-name: blinker;
        -webkit-animation-duration: 1.2s;
        -webkit-animation-timing-function: linear;
        -webkit-animation-iteration-count: infinite;
        -moz-animation-name: blinker;
        -moz-animation-duration: 1.2s;
        -moz-animation-timing-function: linear;
        -moz-animation-iteration-count: infinite;
        animation-name: blinker;
        animation-duration: 1.2s;
        animation-timing-function: linear;
        animation-iteration-count: 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;
        }
    }
    #pdf iframe {
        overflow: hidden;
        border: none;
        border: 1px solid #ccc;
    }
    .entry {
        padding: 0 0 20px;
    }
    .social-share {
        background-color: #fff;
        border-bottom: 1px dashed #ddd;
        padding: 15px 30px;
        height: 50px;
    }
    .noborder .social-share {
        border: none;
        padding: 0;
        margin: 38px 0 0;
        height: 20px;
        width: 310px;
    }
    .single-meta .noborder .social-share {
        margin: 2px 0 0;
    }
    body.single-periodical .noborder .social-share {
        margin: 0;
    }
    .button-fb {
        display: inline-block;
        margin: -5px 25px 0 0;
        float: left;
    }
    .button-tw {
        float: left;
    }
    .button-gplus {
        float: left;
    }
    .periodical-item .pic img {
        box-shadow: 1px 1px 4px #aaa;
    }
    .periodical-item h3 {
        font-size: 0.857em;
        margin: 16px 0 0;
        color: #333;
    }
    .periodical-item small {
        color: #666;
    }
    #content {
        padding-top: 30px;
        min-height: 600px;
        background-color: #fff;
        padding: 30px 30px 10px;
    }
    body.home #content {
        padding: 0;
        min-height: 0;
    }
    #content .fb-comments {
        clear: both;
        display: block;
    }
    #content .fb-comments span,
    #content .fb-comments iframe {
        width: 100% !important;
    }
    #side h2 {
        background-color: #eee;
        padding: 10px 20px 5px;
        margin: 0;
    }
    #side ul {
        margin: 0;
        padding: 0;
    }
    #side li a {
        display: block;
        color: #666;
        padding: 4px 20px;
        border-top: 1px solid #ddd;
        background-color: #fff;
    }
    #side li li ul {
        padding: 0 0 0 20px;
        background-color: #fff;
    }
    #side li li li a {
        padding: 2px 10px;
        border-top: none;
    }
    #side li a:hover {
        background-color: #f2f2f2;
    }
    #side li a:active {
        background-color: #e6e6e6;
        color: #888;
    }
    #side li.current_page_item>a,
    #side li.current-menu-item>a,
    #side li.current-post-ancestor>a,
    #side.news-clipping li.m-news-clipping>a {
        border-left: 4px solid #649628;
        color: #048e1e;
    }
    #side h2 {
        margin-top: 0;
    }
    #side .space {
        margin: 0 0 30px;
        background: none;
    }
    #section-calendar {
        font-size: 0.9em;
        overflow: hidden;
    }
    #section-calendar .col-calendar {
        /*float: left;*/
        padding: 20px 5px;
    }
    /*#mini_calendar{
        width: 227px;
    }*/
    #table_header {
        text-align: center;
        font-weight: bold;
    }
    #mini_calendar th,
    #mini_calendar td {
        padding: 1px 8px;
    }
    .table-bordered>thead>tr>th,
    .table-bordered>thead>tr>td {
        border-bottom-width: 1px;
        font-weight: normal;
    }
    #section-calendar .col-events {
        float: right;
        position: relative;
        width: 910px;
        padding: 0 25px;
        height: 200px;
        overflow: hidden;
    }
    #section-calendar .col-events .btn {
        position: absolute;
        right: 0;
        bottom: 20px;
        z-index: 99;
    }
    #section-calendar .col-events .bx-wrapper {
        max-width: 910px !important;
    }
    #section-calendar ul {
        margin: 0;
    }
    #section-calendar ul li {
        float: left;
        width: 215px;
        display: block;
        list-style: none;
        height: 280px;
    }
    #section-calendar a.event-item {
        color: #444;
        overflow: hidden;
        display: block;
        padding: 20px 10px 0;
        float: left;
    }
    .event-item h3 {
        margin: 0 0 10px;
        line-height: 1.1em !important;
    }
    .event-item h3 span {
        font-size: 0.8em !important;
        line-height: 0.8em !important;
    }
    .event-item .event-date {
        margin: 0 0 15px;
    }
    .event-item .event-date .month {
        background-color: #e1e1e1;
        padding: 0px 6px 0px 8px;
        font-weight: normal;
        text-transform: uppercase;
        border-radius: 2px 0 0 2px;
        display: inline-block;
    }
    .event-item .event-date .date {
        display: inline-block;
        padding: 0 6px 0 8px;
        background-color: #d4d4d4;
        color: #222;
        border-radius: 0 2px 2px 0;
        font-weight: normal;
    }
    .event-item .event-date i {
        font-size: 0.667em;
        color: #aaa;
        line-height: 8px;
        margin: 0 5px;
    }
    .event-item .event-place {
        padding-left: 20px;
        position: relative;
        line-height: 1.1em;
    }
    .event-item .event-place i {
        position: absolute;
        left: 0;
        top: 0;
        color: #888;
    }
    .bx-next {
        position: absolute;
        top: 100px;
        right: 0;
        font-size: 40px;
    }
    .bx-prev {
        position: absolute;
        top: 100px;
        left: 0;
        font-size: 40px;
        z-index: 10;
    }
    td a.calendar-table-muted {
        opacity: 0.3;
    }
    #section-news-link>.container {
        background-color: #fff;
        padding-bottom: 10px;
    }
    #section-news .post:nth-child(3n+1) {
        clear: left;
    }
    #section-news .post a,
    #section-news article a {
        display: inline-block;
        margin-bottom: 20px;
        box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
        -moz-box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
    }
    #section-news .post a:hover #section-news article a:hover {
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
        -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
        border-radius: 3px;
    }
    #section-news a:active {
        opacity: 0.6;
    }
    /*
    #section-news img{
        border-radius: 3px 3px 0 0;
        width: auto;
        height: 111px;
        max-width: 9999px;
    }
    */
    #section-news .pic {
        height: 111px;
        overflow: hidden;
        text-align: center;
        width: 260px;
    }
    #section-news .info {
        padding: 15px 12px;
        height: 100px;
        overflow: hidden;
        background-color: #fff;
        border-radius: 0 0 3px 3px;
    }
    #section-news h3 {
        font-size: 18px;
        margin: 0;
        color: #666;
        height: 80px;
        overflow: hidden;
    }
    #section-news a:hover h3 {
        color: #649628;
    }
    #results {
        background-color: #fff;
        padding: 30px;
    }
    #results .item {
        border-bottom: 1px dashed #ccc;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
    #section-search h3 {
        margin: 0 0 5px;
        color: #666;
        overflow: hidden;
        font-size: 1.1em;
    }
    #section-search .meta {
        font-size: 0.8em;
    }
    #section-news a:hover h3 {
        color: #649628;
    }
    #menu-quick a {
        color: #444;
    }
    #menu-quick a:before {
        content: "\f0da";
        font-family: FontAwesome;
        width: 12px;
        display: inline-block;
        color: #888;
        font-size: 12px;
    }
    #section-more {
        font-size: 0.952em;
    }
    #section-more h2 {
        color: #044f12;
    }
    #section-more .container {
        /* background-color: #e8cdd5; */
        padding-top: 24px;
        padding-bottom: 14px;
    }
    #section-more h2 {
        margin-top: 0;
    }
    table.news-clipping {
        background-color: #eee6ea;
        margin: 0 0 5px;
        width: 100%;
    }
    table.news-clipping td {
        padding: 4px 8px;
        vertical-align: top;
    }
    table.news-clipping tr:nth-child(2n) {
        background-color: #fbf9fa;
    }
    table.news-clipping tr:last-child {
        border-radius: 0 0 3px 3px;
    }
    table.news-clipping th {
        background-color: #005e12;
        color: #fff;
        font-weight: normal;
        vertical-align: top;
        padding: 4px 8px;
    }
    table.news-clipping .sourcename a {
        color: #666;
    }
    body.home table.news-clipping .sourcename a {
        pointer-events: none;
        cursor: default;
    }
    .clip-item {
        margin: 0 0 10px;
    }
    .clip-item .meta {
        font-size: 0.524em;
        color: #6a505a;
    }
    #section-more .widget_sp_image {
        margin: 0 0 12px;
    }
    #section-more .widgettitle {
        display: none;
    }
    #section-more .widget_sp_image img {
        border-radius: 3px;
    }
    #section-more .widget_sp_image a:hover img {
        box-shadow: 0px 0px 4px #999;
    }
    #vdos {
        height: 320px;
    }
    #vdos .carousel-indicators {
        bottom: 0;
    }
    #vdos .carousel-indicators li {
        border: 2px solid #649628;
        width: 12px;
        height: 12px;
        margin: 1px;
        background-color: #fff;
    }
    #vdos .carousel-indicators li.active {
        background-color: #649628;
    }
    #vdos .item:after {
        content: "";
        width: 45px;
        height: 70px;
        background: url(img/flag.png) no-repeat;
        position: absolute;
        top: 0;
        right: 5px;
        z-index: 100;
        display: block;
    }
    /* K edit home banner*/
    .banner-section.owl-theme .owl-controls .owl-page span {
        margin: 0 3px;
        width: 12px;
        height: 12px;
        border: 2px solid #649628;
        background-color: white;
        opacity: 1;
    }
    .banner-section.owl-theme .owl-controls .owl-page.active span {
        background-color: #649628;
    }
    .periodical-item:nth-child(4n+1) {
        clear: left;
    }
    /* == archive == */
    .pagination>li>a,
    .pagination>li>span {
        line-height: 1;
        color: #005e12;
    }
    /* BEGIN: added by Krerk 20140924 */
    .pagination>li>span.current {
        background-color: #f7ecef;
    }
    /* END: added by Krerk 20140924 */
    .pagination>li>a:hover,
    .pagination>li>span:hover,
    .pagination>li>a:focus,
    .pagination>li>span:focus {
        color: #649628;
        background-color: #f7ecef;
    }
    #foot .container {
        color: #b2a6ac;
        font-size: 14px;
        line-height: 1.3;
        background-color: #004a0e;
    }
    #foot .container a {
        color: #b2a6ac;
    }
    #foot h2 {
        margin: 0 0 5px;
    }
    #foot .container {
        padding-top: 20px;
        padding-bottom: 14px;
        border-radius: 0 0 3px 3px;
    }
    #foot #text-3 {
        float: left;
        clear: none;
    }
    #foot #text-3 .group {
        float: left;
        width: 130px;
    }
    #foot #text-3 a {
        display: block;
        height: 28px;
        padding: 0 0 0 0px;
        margin: 0 0 5px;
        line-height: 28px;
    }
    #foot #text-3 a.chrome {
        padding: 0;
    }
    #foot a.facebook {
        background: url(img/icon-facebook.png) no-repeat;
    }
    #foot a.twitter {
        background: url(img/icon-twitter.png) no-repeat;
    }
    #foot a.facebook {
        background: url(img/icon-facebook.png) no-repeat;
    }
    #foot a.youtube {
        background: url(img/icon-youtube.png) no-repeat;
    }
    #foot a.rss {
        background: url(img/icon-rss.png) no-repeat;
    }
    #foot a.sms {
        background: url(img/icon-sms.png) no-repeat;
    }
    #foot a.line {
        background: url(img/icon-line.png) no-repeat;
    }
    #foot a.app {
        background: url(img/icon-app.png) no-repeat;
    }
    #foot #text-4 {
        float: right;
        width: 255px;
        clear: none;
    }
    #foot #text-2 {
        float: left;
        width: 260px;
        margin: 0 60px 10px 0;
    }
    #foot .btn-default {
        padding: 8px 10px 4px;
        font-size: 14px;
    }
    #foot .form-control {
        border-bottom: 2px solid #ccc;
    }
    /* IE8 */
    html.lt-ie9 body {
        font: 14px/1.6em "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
    }
    html.lt-ie9 #section-news h3 {
        font: 14px/1.6em "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
    }
    html.lt-ie9 .abBlackBox,
    html.lt-ie9 .rsABlock {
        background: none !important;
        background-image: url(img/slider.png) !important;
    }
}

@media (min-width: 1200px) {
    .containerPage {
        max-width: 1204px;
        padding: 0 30px;
        margin: 0 auto;
    }
}

@media only screen and (max-width: 767px) {
    #nav {
        display: none;
    }
}

@media print {
    #foot,
    #shiftnav-toggle-main,
    #side,
    .col-sm-3 {
        display: none;
    }
    #section-calendar {
        display: none;
    }
    #section-calendar .col-events {
        width: 100%;
        clear: both;
        float: none;
        height: auto;
        padding: 0;
        margin-bottom: 20px;
    }
    #section-calendar ul li {
        float: none;
        width: 100%;
        height: auto;
    }
    body {
        background: none;
    }
    .shiftnav-wrap {
        padding: 0 !important;
    }
    #brand img {
        width: 80% !important;
        height: auto !important;
    }
}


/* Tablet (Portrait)
================================================== */

@media only screen and (min-width: 1000px) and (max-width: 1080px) {
    #section-news .pic {
        width: 240px;
        height: auto;
    }
    /*
	#section-news img{
		height:102px;
	}
	*/
    #section-calendar .col-calendar {
        width: 260px;
    }
    #head #searchbox {
        display: none;
    }
    #fontresizer {
        float: right;
        margin: 20px 0 0;
        white-space: nowrap;
        height: 40px;
    }
    #lang {
        margin: 20px 0 0;
        vertical-align: bottom;
    }
    #head {
        margin: 0;
    }
    #nav-top {
        margin: 20px 0 0;
    }
    #nav-top .topnav>li>a {
        margin: 0 15px 0 0;
    }
    #nav-top .dropdown-menu {
        left: 0;
    }
    #section-calendar {
        padding: 0 15px;
        margin-bottom: 20px;
    }
    #section-calendar .col-events {
        width: 70%;
        float: left;
        height: auto;
        padding: 0;
        margin-bottom: 20px;
    }
    #section-calendar ul li {
        float: none;
        width: 100%;
        height: auto;
    }
    .containerPage {
        padding: 0px 20px;
        margin: 0 auto;
    }
    #foot #text-2 {
        float: left;
        width: 25%;
        margin: 0px;
    }
    #foot #text-3 {
        width: 28%;
        clear: none;
        padding: 0px;
    }
    #foot #text-4 {
        width: 27%;
        float: left;
        clear: none;
    }
    #foot #text-5 {
        width: 20%;
        float: left;
    }
    #wrap {
        width: 80%;
    }
}


/* Tablet (Portrait)
================================================== */

@media only screen and (min-width: 768px) and (max-width: 999px) {
    #section-calendar .col-calendar {
        width: 260px;
    }
    #fontresizer,
    #head #searchbox {
        display: none;
    }
    #head {
        margin: 0;
    }
    /*
    #brand img{
        width: 80%;
        height: auto !important;
    }
    */
    #nav-top {
        margin: 20px 0 0;
    }
    #lang {
        margin: 70px 0 0;
        vertical-align: bottom;
    }
    #nav-top .topnav>li>a {
        margin: 0 15px 0 0;
    }
    #nav-top .dropdown-menu {
        left: 0;
    }
    #section-calendar {
        padding: 0 15px;
        margin-bottom: 20px;
    }
    #section-calendar .col-events {
        width: 60%;
        float: left;
        height: auto;
        padding: 0;
        margin-bottom: 20px;
    }
    #section-calendar ul li {
        float: none;
        width: 100%;
        height: auto;
    }
    #section-news .post:nth-child(3n+1) {
        clear: none;
    }
    #section-news .post:nth-child(2n+1) {
        clear: left;
    }
    .col-sm-3 {
        width: 35%;
    }
    .col-sm-9 {
        width: 65%;
    }
    /* ------------Eng---------------- */
    #section-more .col-sm-9 {
        width: 50%;
    }
    #section-more .col-sm-6 {
        width: 100%;
    }
    #section-more .col-sm-3 {
        width: 50%;
    }
    /* ----------end------------------ */
    .col-sm-4 {
        width: 50%;
        float: left;
    }
    #foot #text-2 {
        float: left;
        width: 50%;
        margin: 0px;
    }
    #foot #text-3 {
        clear: none;
        padding: 0px;
    }
    #foot #text-4 {
        width: 50%;
        float: left;
        clear: none;
    }
    #foot #text-5 {
        width: 50%;
        float: left;
    }
    #wrap {
        width: 80%;
    }
}

@media only screen and (max-width: 767px) {
    #fontresizer {
        display: none;
    }
}


/* iPhone 5 landscape � width: 568px
================================================== */

@media only screen and (min-width: 667px) and (max-width: 767px) {
    #section-calendar .col-calendar {
        width: 260px;
    }
    #fontresizer,
    #head #searchbox {
        display: none;
    }
    #lang {
        margin: 0;
        float: none;
        text-align: center;
    }
    #user {
        margin: 0;
        float: none;
        text-align: center;
    }
    #head {
        margin: 0;
    }
    /*
    #brand img{
        width: 80%;
        height: auto !important;
    }
    */
    #nav-top {
        margin: 20px 0 0;
    }
    #nav-top .topnav>li>a {
        margin: 0 15px 0 0;
    }
    #nav-top .dropdown-menu {
        left: 0;
    }
    #section-calendar {
        padding: 0 15px;
        margin-bottom: 20px;
    }
    #section-calendar .col-events {
        width: 60%;
        float: left;
        height: auto;
        padding: 0;
        margin-bottom: 20px;
    }
    #section-calendar ul li {
        float: none;
        width: 100%;
        height: auto;
    }
    #section-news .post:nth-child(3n+1) {
        clear: none;
    }
    #section-news .post:nth-child(2n+1) {
        clear: left;
    }
    .col-sm-3 {
        width: 35%;
        float: left;
    }
    .col-sm-9 {
        width: 65%;
        float: left;
    }
    .col-sm-4 {
        width: 50%;
        float: left;
    }
    /* ------------Eng---------------- */
    #section-more .col-sm-9 {
        width: 50%;
    }
    #section-more .col-sm-6 {
        width: 100%;
    }
    #section-more .col-sm-3 {
        width: 50%;
    }
    /* ----------end------------------ */
    #foot #text-2 {
        float: left;
        width: 50%;
        margin: 0px;
    }
    #foot #text-3 {
        clear: none;
        padding: 0px;
    }
    #foot #text-4 {
        width: 50%;
        float: left;
        clear: none;
    }
    #foot #text-5 {
        width: 50%;
        float: left;
    }
    #wrap {
        width: 80%;
    }
}


/* fix change */

@media only screen and (min-width: 567px) and (max-width: 666px) {
    .col-calendar {
        font-size: 28px !important
    }
    #section-calendar .col-calendar {
        float: none;
        width: 100%;
    }
    #mini_calendar {
        width: 100%;
    }
    .table-bordered {
        margin-left: auto;
        margin-right: auto;
    }
    #section-calendar ul li {
        float: none;
        width: 100%;
        height: auto;
    }
    #section-calendar .col-events {
        width: 100%;
        clear: both;
        height: auto;
        padding: 0;
        margin-bottom: 20px;
    }
    .btn-all-event {
        margin-bottom: 10px;
    }
    #section-news .post:nth-child(3n+1) {
        clear: none
    }
    .col-sm-4 {
        width: 50%;
        float: left;
    }
    /* ------------Eng---------------- */
    #section-more .col-sm-9 {
        width: 50%;
    }
    #section-more .col-sm-6 {
        width: 100%;
    }
    #section-more .col-sm-3 {
        width: 50%;
    }
    /* ----------end------------------ */
    #nav-top {
        margin: 0px 0 10px 20px;
    }
    #fontresizer,
    #head #searchbox {
        display: none;
    }
    #lang {
        margin: 0;
        float: none;
        text-align: center;
    }
    #user {
        margin: 0;
        float: none;
        text-align: center;
    }
}


/* Mobile (Landscape)
================================================== */

@media only screen and (min-width: 480px) and (max-width: 566px) {
    .col-calendar {
        font-size: 28px !important
    }
    #section-calendar .col-calendar {
        float: none;
    }
    #mini_calendar {
        width: 100%;
    }
    .table-bordered {
        margin-left: auto;
        margin-right: auto;
    }
    #section-calendar ul li {
        float: none;
        width: 100%;
        height: auto;
    }
    #section-calendar .col-events {
        width: 100%;
        clear: both;
        height: auto;
        padding: 0;
        margin-bottom: 20px;
    }
    .btn-all-event {
        margin-bottom: 10px;
    }
    #section-news .post:nth-child(3n+1) {
        clear: none
    }
    #nav-top {
        margin: 0px 0 10px 20px;
    }
    #fontresizer,
    #head #searchbox {
        display: none;
    }
    #lang {
        margin: 0;
        float: none;
        text-align: center;
    }
    #user {
        margin: 0;
        float: none;
        text-align: center;
    }
}


/* Mobile (Portrait only)
================================================== */

@media(max-width: 479px) {
    .col-calendar {
        font-size: 28px !important
    }
    #section-calendar .col-calendar {
        float: none;
    }
    #mini_calendar {
        width: 100%;
    }
    .table-bordered {
        margin-left: auto;
        margin-right: auto;
    }
    #section-calendar ul li {
        float: none;
        width: 100%;
        height: auto;
    }
    #section-calendar .col-events {
        width: 100%;
        clear: both;
        float: none;
        height: auto;
        padding: 0;
        margin-bottom: 20px;
    }
    .btn-all-event {
        margin-bottom: 10px;
    }
    /* #brand img{
        width: 100%;
        height: auto !important;
    }*/
    #nav-top {
        margin: 0px 0 10px 20px;
    }
}


/***********w3tabs****************/

.pws_tabs_scale_show {
    width: 100%;
}

#all_view .pws_tab_single a {
    font: 22px/1.3em "chulacharasre", sans-serif;
}

#all_view .pws_tabs_list {
    height: 1087px;
    padding: 0.5em;
}

#all_view ul.pws_tabs_controll {
    font-size: 24px;
    margin: 0px 0px 0px;
}

#all_view .pws_tabs_container ul.pws_tabs_controll li a {
    background-color: #1B70C3;
    border: 1px solid #666;
}

#all_view .pws_tabs_scale_hide.pws_tab_single.pws_tabs_scale_show {
    background-color: #FDFDFD;
}

#all_view .pws_tabs_container ul.pws_tabs_controll li a.pws_tab_active {
    background-color: #FDFDFD;
}

#all_view .pws_tabs_container ul.pws_tabs_controll li a:hover {
    background-color: #7da7d9;
}

@media only screen and (max-width: 980px) and (max-height: 1280px) {
    #all_view iframe.iframe-class {
        height: 1020px;
    }
    #all_view .pws_tabs_container.pws_tabs_responsive .pws_responsive_small_menu {
        background-color: #1B70C3;
    }
    iframe.iframe-class.wrapper {
        transform: scale(0.781);
    }
    #all_view .pws_tabs_list {
        height: 980px;
    }
}

@media only screen and (max-width: 1280px) and (max-height: 800px) {
    #all_view iframe.iframe-class {
        height: 1280px;
    }
    #all_view .pws_tabs_container.pws_tabs_responsive .pws_responsive_small_menu {
        background-color: #1B70C3;
    }
    #all_view .pws_tabs_list {
        height: 1240px;
    }
}

@media only screen and (max-width: 800px) and (max-height: 1280px) {
    #all_view iframe.iframe-class {
        height: 800px;
    }
    #all_view .pws_tabs_container.pws_tabs_responsive .pws_responsive_small_menu {
        background-color: #1B70C3;
    }
    #all_view .pws_tabs_list {
        height: 840px;
    }
}

@media only screen and (max-width: 1024px) and (max-height: 768px) {
    #all_view iframe.iframe-class {
        height: 1024px;
    }
    #all_view .pws_tabs_container.pws_tabs_responsive .pws_responsive_small_menu {
        background-color: #1B70C3;
    }
    #all_view .pws_tabs_list {
        height: 1084px;
    }
}

@media only screen and (max-width: 768px) and (max-height: 1024px) {
    #all_view iframe.iframe-class {
        height: 768px;
    }
    #all_view .pws_tabs_container.pws_tabs_responsive .pws_responsive_small_menu {
        background-color: #1B70C3;
    }
    #all_view .pws_tabs_list {
        height: 838px;
    }
}

@media only screen and (max-width: 480px) and (max-height: 320px) {
    #all_view iframe.iframe-class {
        height: 480px;
    }
    #all_view .pws_tabs_container.pws_tabs_responsive .pws_responsive_small_menu {
        background-color: #1B70C3;
    }
    #all_view .pws_tabs_list {
        height: 555px;
    }
    #pdf a {
        width: 120px;
    }
}

@media only screen and (max-width: 320px) and (max-height: 480px) {
    #all_view iframe.iframe-class {
        height: 320px;
    }
    #all_view .pws_tabs_container.pws_tabs_responsive .pws_responsive_small_menu {
        background-color: #1B70C3;
    }
    #all_view .pws_tabs_list {
        height: 342px;
    }
    #pdf a {
        width: 120px;
    }
}

@media only screen and (max-width:999px) {
    #brand img {
        max-width: 600px !important;
        height: 103px !important;
    }
    table.grid {
        width: 90%
    }
}

@media only screen and (max-width:620px) {
    #brand img {
        max-width: 100% !important;
        height: auto !important;
    }
    table.grid {
        width: 90%
    }
}

@media only screen and (max-width:540px) {
    table.grid {
        width: 100%
    }
}

@media only screen and (max-width:325px) {
    #brand img {
        height: 43px !important;
    }
    table.grid {
        width: 100%
    }
}

@media only screen and (max-width:270px) {
    #brand img {
        max-width: 80% !important;
        height: auto !important;
    }
    table.grid {
        width: 100%
    }
}

table.news-info {
    margin: 0px 0px 10px;
    width: 100%;
}

table.news-info td {
    /*	padding: 4px 8px; */
    vertical-align: top;
}

table.news-info tr:nth-child(2n) {
    background-color: rgb(251, 249, 250);
}

table.news-info tr:last-child {
    border-radius: 0px 0px 3px 3px;
}

table.news-info th {
    padding: 4px 8px;
    color: #ffffff;
    font-weight: normal;
    vertical-align: top;
    background-color: #005e12;
}

table.news-info .sourcename a {
    color: rgb(102, 102, 102);
}

.colnews-img {
    padding-right: 5px;
    padding-left: 5px;
    min-height: 1px;
    width: 10%;
    text-align: center;
}

.colnews-img img {
    width: 45px;
}

.colnews-info {
    font-size: 16px;
    width: 90%;
    padding-right: 5px;
    padding-left: 5px;
    min-height: 1px;
}

table.gallerry-info {
    margin: 0px 0px 10px;
    width: 100%;
}

table.gallerry-info td {
    /*	padding: 4px 8px; */
    vertical-align: top;
}

table.gallerry-info tr:nth-child(2n) {
    background-color: rgb(251, 249, 250);
}

table.gallerry-info tr:last-child {
    border-radius: 0px 0px 3px 3px;
}

table.gallerry-info th {
    padding: 4px 8px;
    color: #ffffff;
    font-weight: normal;
    vertical-align: top;
    background-color: #005e12;
}

table.gallerry-info .sourcename a {
    color: rgb(102, 102, 102);
}

.colgallerry-img {
    padding-right: 5px;
    padding-left: 5px;
    min-height: 1px;
    width: 10%;
    text-align: center;
}

.colgallerry-img img {
    width: 120px;
}

table.grid {
    width: 80%
}


/***************************/


/*
 * Page: 400 and 500 error pages
 * ------------------------------
 */

.error-page {
    width: 600px;
    margin: 20px auto 0 auto;
}

@media (max-width: 991px) {
    .error-page {
        width: 100%;
    }
}

.error-page>.headline {
    float: left;
    font-size: 100px;
    font-weight: 300;
}

@media (max-width: 991px) {
    .error-page>.headline {
        float: none;
        text-align: center;
    }
}

.error-page>.error-content {
    margin-left: 120px;
    display: block;
    padding: 20px;
}

@media (max-width: 991px) {
    .error-page>.error-content {
        margin-left: 0;
    }
}

.error-page>.error-content>h3 {
    font-weight: 300;
    font-size: 25px;
}

@media (max-width: 991px) {
    .error-page>.error-content>h3 {
        text-align: center;
    }
}

.text-red {
    color: #dd4b39 !important;
}

.text-yellow {
    color: #f39c12 !important;
}

.text-aqua {
    color: #00c0ef !important;
}

.text-blue {
    color: #0073b7 !important;
}

.text-black {
    color: #111111 !important;
}

.text-light-blue {
    color: #3c8dbc !important;
}

.text-green {
    color: #00a65a !important;
}

.text-gray {
    color: #d2d6de !important;
}

.text-navy {
    color: #001f3f !important;
}

.text-teal {
    color: #39cccc !important;
}

.text-olive {
    color: #3d9970 !important;
}

.text-lime {
    color: #01ff70 !important;
}

.text-orange {
    color: #ff851b !important;
}

.text-fuchsia {
    color: #f012be !important;
}

.text-purple {
    color: #605ca8 !important;
}

.text-maroon {
    color: #d81b60 !important;
}

.chartbox {
    width: 600px;
}

.album {
    background-color: #FFF;
    border: 1px solid #e2e2e2;
    width: 260px;
    height: 180px;
}

.albumname {
    padding: 5px 5px 5px 5px;
}

.albumpage {
    background-color: #FFF;
    border: 1px solid #e2e2e2;
    width: 30px;
    height: 30px;
    padding: 2px 2px 2px 2px;
    text-align: center;
    vertical-align: middle;
    display: inline-block;
    margin: 0 0 0 0;
    border-radius: 5px;
}

.albumpage:hover {
    background-color: #649628;
    color: #fff;
}

.albumlink:hover {
    color: #fff;
}

.albumpageactive {
    background-color: #649628;
    color: #fff;
    font-weight: bold;
    border: 1px solid #649628;
    width: 30px;
    height: 30px;
    padding: 2px 2px 2px 2px;
    text-align: center;
    vertical-align: middle;
    display: inline-block;
    margin: 0 0 0 0;
    border-radius: 5px;
}


/* button from Old SUT */

.buttonRed {
    -moz-box-shadow: inset 0px 1px 0px 0px #f29c93;
    -webkit-box-shadow: inset 0px 1px 0px 0px #f29c93;
    box-shadow: inset 0px 1px 0px 0px #f29c93;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #fe1a00), color-stop(1, #ce0100));
    background: -moz-linear-gradient(top, #fe1a00 5%, #ce0100 100%);
    background: -webkit-linear-gradient(top, #fe1a00 5%, #ce0100 100%);
    background: -o-linear-gradient(top, #fe1a00 5%, #ce0100 100%);
    background: -ms-linear-gradient(top, #fe1a00 5%, #ce0100 100%);
    background: linear-gradient(to bottom, #fe1a00 5%, #ce0100 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#fe1a00', endColorstr='#ce0100', GradientType=0);
    background-color: #ce0100;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid #ce0100;
    display: inline-block;
    cursor: pointer;
    color: #ffffff;
    padding: 3px 10px;
    margin: 2px 5px 2px 5px;
    line-height: 25px;
}

.buttonRed:hover {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #ce0100), color-stop(1, #fe1a00));
    background: -moz-linear-gradient(top, #ff8c00 5%, #fe1a00 100%);
    background: -webkit-linear-gradient(top, #ff8c00 5%, #fe1a00 100%);
    background: -o-linear-gradient(top, #ff8c00 5%, #fe1a00 100%);
    background: -ms-linear-gradient(top, #ff8c00 5%, #fe1a00 100%);
    background: linear-gradient(to bottom, #ff8c00 5%, #fe1a00 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#ce0100', endColorstr='#fe1a00', GradientType=0);
    background-color: #ff8c00;
}

.buttonOrange {
    -moz-box-shadow: inset 0px 1px 0px 0px #fb9e25;
    -webkit-box-shadow: inset 0px 1px 0px 0px #fb9e25;
    box-shadow: inset 0px 1px 0px 0px #fb9e25;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #fe1a00), color-stop(1, #ce0100));
    background: -moz-linear-gradient(top, #fb9e25 5%, #ff8c00 100%);
    background: -webkit-linear-gradient(top, #fb9e25 5%, #ff8c00 100%);
    background: -o-linear-gradient(top, #fb9e25 5%, #ff8c00 100%);
    background: -ms-linear-gradient(top, #fb9e25 5%, #ff8c00 100%);
    background: linear-gradient(to bottom, #fb9e25 5%, #ff8c00 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#fe1a00', endColorstr='#ce0100', GradientType=0);
    background-color: #ff8c00;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid #ff8c00;
    display: inline-block;
    cursor: pointer;
    color: #ffffff;
    padding: 3px 10px;
    line-height: 25px;
    margin: 2px 5px 2px 5px;
}

.buttonOrange:hover {
    -moz-box-shadow: inset 0px 1px 0px 0px #fb9e25;
    -webkit-box-shadow: inset 0px 1px 0px 0px #fb9e25;
    box-shadow: inset 0px 1px 0px 0px #fb9e25;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #fe1a00), color-stop(1, #ce0100));
    background: -moz-linear-gradient(top, #fb9e25 5%, #ff8c00 100%);
    background: -webkit-linear-gradient(top, #fb9e25 5%, #ff8c00 100%);
    background: -o-linear-gradient(top, #fb9e25 5%, #ff8c00 100%);
    background: -ms-linear-gradient(top, #fb9e25 5%, #ff8c00 100%);
    background: linear-gradient(to bottom, #fb9e25 5%, #ff8c00 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#fe1a00', endColorstr='#ce0100', GradientType=0);
    background-color: #fb9e25;
}

.buttonGray {
    -moz-box-shadow: inset 0px 1px 0px 0px #ffffff;
    -webkit-box-shadow: inset 0px 1px 0px 0px #ffffff;
    box-shadow: inset 0px 1px 0px 0px #ffffff;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #ededed), color-stop(1, #dfdfdf));
    background: -moz-linear-gradient(top, #ededed 5%, #dfdfdf 100%);
    background: -webkit-linear-gradient(top, #ededed 5%, #dfdfdf 100%);
    background: -o-linear-gradient(top, #ededed 5%, #dfdfdf 100%);
    background: -ms-linear-gradient(top, #ededed 5%, #dfdfdf 100%);
    background: linear-gradient(to bottom, #ededed 5%, #dfdfdf 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#ededed', endColorstr='#dfdfdf', GradientType=0);
    background-color: #ededed;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid #dcdcdc;
    display: inline-block;
    cursor: pointer;
    color: #777777;
    font-weight: bold;
    text-decoration: none;
    text-shadow: 0px 1px 0px #ffffff;
    line-height: 25px;
    padding: 3px 10px;
    margin: 2px 5px 2px 5px;
}

.buttonGray:hover {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #dfdfdf), color-stop(1, #ededed));
    background: -moz-linear-gradient(top, #dfdfdf 5%, #ededed 100%);
    background: -webkit-linear-gradient(top, #dfdfdf 5%, #ededed 100%);
    background: -o-linear-gradient(top, #dfdfdf 5%, #ededed 100%);
    background: -ms-linear-gradient(top, #dfdfdf 5%, #ededed 100%);
    background: linear-gradient(to bottom, #dfdfdf 5%, #ededed 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#dfdfdf', endColorstr='#ededed', GradientType=0);
    background-color: #dfdfdf;
}

.buttonGray:active {
    position: relative;
    top: 1px;
}

.buttonUpdate {
    -moz-box-shadow: inset 0px 1px 0px 0px #0b7dd6;
    -webkit-box-shadow: inset 0px 1px 0px 0px #0b7dd6;
    box-shadow: inset 0px 1px 0px 0px #0b7dd6;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #ededed), color-stop(1, #dfdfdf));
    background: -moz-linear-gradient(top, #0b7dd6 5%, #2a70ac 100%);
    background: -webkit-linear-gradient(top, #0b7dd6 5%, #2a70ac 100%);
    background: -o-linear-gradient(top, #0b7dd6 5%, #2a70ac 100%);
    background: -ms-linear-gradient(top, #0b7dd6 5%, #2a70ac 100%);
    background: linear-gradient(to bottom, #0b7dd6 5%, #2a70ac 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#ededed', endColorstr='#dfdfdf', GradientType=0);
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid #0b7dd6;
    display: inline-block;
    cursor: pointer;
    color: #fff;
    padding: 3px 10px;
    line-height: 25px;
    margin: 2px 5px 2px 5px;
}

a:hover.buttonUpdate {
    -moz-box-shadow: inset 0px 1px 0px 0px #fb9e25;
    -webkit-box-shadow: inset 0px 1px 0px 0px #fb9e25;
    box-shadow: inset 0px 1px 0px 0px #fb9e25;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #fe1a00), color-stop(1, #ce0100));
    background: -moz-linear-gradient(top, #fb9e25 5%, #ff8c00 100%);
    background: -webkit-linear-gradient(top, #fb9e25 5%, #ff8c00 100%);
    background: -o-linear-gradient(top, #fb9e25 5%, #ff8c00 100%);
    background: -ms-linear-gradient(top, #fb9e25 5%, #ff8c00 100%);
    background: linear-gradient(to bottom, #fb9e25 5%, #ff8c00 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#fe1a00', endColorstr='#ce0100', GradientType=0);
    background-color: #ff8c00;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid #ff8c00;
    display: inline-block;
    cursor: pointer;
    color: #ffffff;
    padding: 3px 10px;
    line-height: 25px;
    margin: 2px 5px 2px 5px;
}

.buttonUpdate:hover {
    -moz-box-shadow: inset 0px 1px 0px 0px #fb9e25;
    -webkit-box-shadow: inset 0px 1px 0px 0px #fb9e25;
    box-shadow: inset 0px 1px 0px 0px #fb9e25;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #fe1a00), color-stop(1, #ce0100));
    background: -moz-linear-gradient(top, #fb9e25 5%, #ff8c00 100%);
    background: -webkit-linear-gradient(top, #fb9e25 5%, #ff8c00 100%);
    background: -o-linear-gradient(top, #fb9e25 5%, #ff8c00 100%);
    background: -ms-linear-gradient(top, #fb9e25 5%, #ff8c00 100%);
    background: linear-gradient(to bottom, #fb9e25 5%, #ff8c00 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#fe1a00', endColorstr='#ce0100', GradientType=0);
    background-color: #ff8c00;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid #ff8c00;
    display: inline-block;
    cursor: pointer;
    color: #ffffff;
    padding: 3px 10px;
    line-height: 25px;
    margin: 2px 5px 2px 5px;
}


/*  ---------------*/

a.logout {
    color: #ff3300;
}

a.logout:hover {
    opacity: 0.5;
}

.positionName-leader {
    /*color: #649628; */
    font-weight: bold;
    font-size: 16px;
}