﻿/* Tiled Nav */
.tilednav-tile {
    width: 120px;
    margin-bottom: 20px;
    transition: transform .1s ease-in-out;
}
.tilednav-tile:hover {
    transform: scale(1.1)
}
.tilednav-tile a {
    width: 100%;
    display: inline-block;
}
.tilednav-tile a img {
    width: 100%;
}

/* News rollup */
.newsrollup-tabs {
    box-sizing: border-box;
    height: 41px;
    border-bottom: 1px solid #bbb;
}
.newsrollup-tabs-tab {
    box-sizing: border-box;
    display: inline-block;
    height: 40px;
    border-top: 1px solid #bbb;
    border-left: 1px solid #bbb;
    overflow: visible;
    cursor: pointer;
}
.newsrollup-tabs-tab:last-child {
    border-right: 1px solid #bbb;
}
.newsrollup-tabs-tab.active {
    cursor: default;
}
.newsrollup-tabs-tabtitle {
    box-sizing: border-box;
    height: 39px;
    padding: 10px 15px;
    background-color: #eee;
}
.newsrollup-tabs-tab.active > .newsrollup-tabs-tabtitle {
    height: 40px;
    background-color: #fff;
}
.newsrollup-content {
    border-left: 1px solid #bbb;
    border-right: 1px solid #bbb;
    border-bottom: 1px solid #bbb;
    background-color: #fff;
    padding: 10px 5px;
}
.newsrollup-content-container {
    display: none;
}
.newsrollup-content-container.active {
    display: block;
}
.newsrollup-content-container-items > a {
    margin-bottom: 40px;
    padding: 10px;
    text-decoration: none;
    display: inline-block;
    vertical-align: top;
    width: 33.3%;
}
.newsrollup-content-container-items > a:hover {
    background-color: #ddd;
}
.newsrollup-content-container-items-image {
    border: 1px solid #666;
}
.newsrollup-content-container-items-title {
    color: #184798;
    font-weight: bold;
    font-size: 16px;
    margin-top: 10px;
    margin-bottom: 5px;
}

.newsrollup-content-container-items-description {
    font-size: 14px;
    line-height: 20px;
    color: #666;
}
.newsrollup-content-container-more {
    border: 1px solid #bbb;
    background-color: #ddd;
    padding: 10px 20px;
    width: 200px;
    margin: 0px auto;
    text-align: center;
    cursor: pointer;
}
.newsrollup-content-container-more.loading {
    border-color: #ddd;
    background-color: #eee;
    color: #888;
    cursor: default;
}
.newsrollup-content-container-more.disabled {
    display: none;
}

/* Newsletter Registration */
.newsletterreg-form {
    width: 500px;
}

.newsletterreg-titlebar {
    margin-bottom: 20px;
}

    .newsletterreg-titlebar h1 {
        color: #ed1b22;
        display: inline;
    }

    .newsletterreg-titlebar input {
        width: 80px;
        float: right;
        margin-top: 10px;
        text-align: center;
    }

.newsletterreg-area {
    width: 100%;
}

.newsletterreg-fieldset {
    display: table;
    width: 100%;
}

.newsletterreg-fieldrow {
    display: table-row;
}

.newsletterreg-fieldname {
    display: table-cell;
    padding: 6px 6px 6px;
    width: 30%;
}

.newsletterreg-required > label::after {
    content: " *";
    color: #ff0000;
}

.newsletterreg-fieldvalue {
    display: table-cell;
    padding: 6px 0;
    width: 70%;
    vertical-align: middle;
}

    .newsletterreg-fieldvalue input,
    .newsletterreg-fieldvalue textarea {
        width: 100%;
        box-sizing: border-box;
    }

        .newsletterreg-fieldvalue input[type=checkbox] {
            width: auto;
        }

        .newsletterreg-fieldvalue input[disabled],
        .newsletterreg-fieldvalue textarea[disabled] {
            color: #888;
        }

    .newsletterreg-fieldvalue .ms-taxonomy-width {
        width: auto;
    }

.newsletterreg-duallistbox {
    height: 125px;
}

.newsletterreg-duallistbox-left,
.newsletterreg-duallistbox-right {
    float: left;
    width: 35%;
}

.newsletterreg-duallistbox select {
    height: 125px;
    width: 100%;
}

.newsletterreg-duallistbox-buttons {
    float: left;
    margin-top: 25px;
    width: 30%;
}

    .newsletterreg-duallistbox-buttons > div {
        margin: 5px 10px;
    }

    .newsletterreg-duallistbox-buttons button {
        width: 100%;
        margin-left: 0px;
    }

.newsletterreg-fieldrow.required .approval-fieldname:after {
    color: #ff0000;
    content: "*";
    margin-left: 4px;
}

.newsletterreg-validator {
    color: #ff0000;
}