/* Program-at-a-Glance Styles */
/* Adapted from legacy 25paagstyle-v04.css */

html { scroll-behavior: smooth; }
* { box-sizing: border-box; }

body {
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-size: 11pt;
    line-height: 1.4;
    font-weight: 600;
    margin: 0;
    background-color: #fff;
}

/* Header Color Bars */
.head-topper {
    width: 100%;
    margin: 0;
}

.colortop {
    width: 100%;
    margin: 0;
}

.color-z { background-color: #052165; height: 1em; }
.color-x { background-color: #25518C; height: 0.85em; }
.color-a { background-color: #4481B2; height: 0.7em; }
.color-b { background-color: #64B0D9; height: 0.55em; }
.color-c { background-color: #83E0FF; height: 0.4em; }

/* Logo Banner */
.bar-logo {
    display: block;
    width: 96%;
    max-width: 1200px;
    margin: 1.5em auto -0.5em;
}

.bar-logo img {
    width: 100%;
    border-radius: 1em;
}

/* Header Text */
.head-text {
    width: 100%;
    text-align: center;
    padding: 2em 0 0.5em;
    color: #19305c;
}

.head-text .meet-title {
    font-size: 150%;
    margin: 0;
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: 0.15em;
}

.head-text .meet-dates {
    font-size: 140%;
    line-height: 1.4;
    font-weight: 400;
    margin: 0.15em;
}

.head-text .paag {
    margin: 0.5em 0;
    font-weight: 400;
    line-height: 1;
}

.head-text .paag .bigP,
.head-text .paag .bigG {
    font-size: 350%;
    font-weight: 500;
    letter-spacing: 0;
}

.head-text .paag .rog-a-a,
.head-text .paag .lance {
    font-size: 250%;
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* Calendar Block */
.calendarblock {
    text-align: center;
    width: 98%;
    max-width: 1500px;
    margin: 2em auto 0;
    background-color: #fff;
}

.calendarblock .jump-label {
    text-align: center;
    line-height: 1;
    margin: 1em 0 0.6em;
    font-size: 115%;
}

.cal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    grid-gap: 0.66em;
    width: 100%;
    margin: auto;
    padding: 0 1em;
}

.cal-day a.calendar {
    display: block;
    box-sizing: border-box;
    border: 3px solid #19305c;
    border-radius: 0.6em;
    line-height: 1.25;
    padding: 0.5em 0.85em;
    margin: 0;
    text-align: center;
    background-color: #ccc;
    color: #19305c;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.25s;
}

.cal-day a.calendar:hover {
    background-color: #19305c;
    color: white;
}

/* Calendar time period sub-links */
.cal-times {
    font-size: 90%;
    line-height: 1;
    margin: 0 0.6em;
    padding: 0.4em 0.13em 0.66em;
    background-color: #e5e5e5;
    border-radius: 0 0 0.6em 0.6em;
    border: 2px solid #19305c;
    border-width: 0 2px 2px 2px;
    text-align: center;
}

.cal-times a {
    color: #19305c;
    text-decoration: none;
    font-weight: 500;
}

.cal-times a:hover {
    text-decoration: underline;
}

/* Corner Back Link */
.corner-back {
    display: block;
    text-decoration: none;
    color: #19305c;
    padding: 0.4em 0.75em;
    font-size: 85%;
    font-weight: 600;
}

.corner-back:hover {
    text-decoration: underline;
    color: #19305c;
}

.corner-back i {
    margin-right: 0.2em;
}

/* Top Bar */
.top-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 96%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.3em 1em;
    font-size: 85%;
    color: #8899aa;
}

.top-bar-time {
    font-style: italic;
}

/* View Toggle (Classic/New) */
.view-toggle-bar {
    display: flex;
    justify-content: flex-end;
    padding: 0.5em 1.5em 0;
}

.view-toggle {
    display: flex;
    border-radius: 0.75em;
    border: 2px solid #19305c;
    overflow: hidden;
}

.view-toggle-btn {
    padding: 0.4em 1.5em;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-size: 100%;
    font-weight: 700;
    background-color: #fff;
    color: #19305c;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.view-toggle-btn.active {
    background-color: #19305c;
    color: #fff;
    cursor: default;
}

.view-toggle-btn:hover:not(.active) {
    background-color: #e8ecf2;
    text-decoration: none;
    color: #19305c;
}

.view-toggle-btn + .view-toggle-btn {
    border-left: 2px solid #19305c;
}

/* Society Selector */
.society-selector {
    display: flex;
    justify-content: center;
    gap: 0;
    margin: 1.5em auto 0;
    width: fit-content;
}

.society-btn {
    padding: 0.5em 2em;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-size: 110%;
    font-weight: 700;
    border: 2px solid #19305c;
    background-color: #fff;
    color: #19305c;
    cursor: pointer;
    transition: all 0.2s;
}

.society-btn:first-child {
    border-radius: 0.75em 0 0 0.75em;
}

.society-btn:last-child {
    border-radius: 0 0.75em 0.75em 0;
}

.society-btn.active {
    background-color: #19305c;
    color: #fff;
}

.society-btn:hover:not(.active) {
    background-color: #e8ecf2;
}

.society-hidden {
    display: none !important;
}

/* Filter Key */
.filter-key {
    display: block;
    width: 98%;
    max-width: 1500px;
    margin: 0 auto 2em;
    padding: 0.75em;
    background-color: #555;
    border-radius: 1.25em;
}

.filter-title {
    line-height: 1.25;
    margin: 0 0 0.3em;
    font-size: 125%;
    text-align: center;
    color: #fff;
}

.filter-subtitle {
    font-size: 90%;
    font-weight: 400;
    text-align: center;
    color: #fff;
    margin: 0 0 0.6em;
}

.key-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    grid-gap: 0.4em 0.6em;
    padding: 0;
    margin: 0 auto;
}

.key-item {
    box-sizing: border-box;
    border: 2px solid #19305c;
    border-radius: 0.66em;
    margin: 0;
    padding: 0.35em 0.5em;
    text-align: left;
    vertical-align: middle;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5em;
    font-size: 90%;
    transition: all 0.2s;
}

.key-item input[type="checkbox"] {
    width: 1.2em;
    height: 1.2em;
    cursor: pointer;
}

.key-item.deselected {
    background-color: #bbb !important;
    color: #888 !important;
    opacity: 0.7;
}

.filter-controls {
    display: flex;
    gap: 0.5em;
    align-items: center;
    justify-content: center;
    padding: 0.5em;
}

/* Day Bar - Sticky Navigation */
.day-bar {
    clear: both;
    box-sizing: border-box;
    width: 98%;
    max-width: 1850px;
    margin: 0 auto 2em;
    padding: 0.66em 1em 1em;
    position: sticky;
    top: 0;
    z-index: 100;
    border: 6px solid #19305c;
    border-radius: 1.5em;
    background-color: #ccc;
}

.day-bar-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1em;
}

.big-day p {
    font-size: 200%;
    line-height: 1.35;
    font-weight: 700;
    color: #19305c;
    margin: 0;
    padding: 0;
}

.day-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25em;
}

.day-nav a {
    display: inline-block;
    background-color: #fff;
    padding: 0.4em 0.7em;
    border-radius: 2em;
    text-decoration: none;
    color: #19305c;
    font-size: 90%;
    font-weight: 600;
}

.day-nav a:hover {
    background-color: #19305c;
    color: #fff;
}

.day-time-anchors {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25em;
    margin-left: auto;
}

.day-time-anchors a {
    display: inline-block;
    background-color: #fff;
    padding: 0.3em 0.6em;
    border-radius: 0.5em;
    text-decoration: none;
    color: #19305c;
    font-size: 85%;
}

.day-time-anchors a:hover {
    background-color: #19305c;
    color: #fff;
}

/* Main Blocks - Session Container */
.main-blocks {
    clear: both;
    width: 98%;
    max-width: 1850px;
    margin: 0 auto 2em;
    padding: 1.25em 1.33em 0.90em;
    border-radius: 1.5em;
    background-color: #555;
}

.time-desc {
    font-size: 140%;
    line-height: 1.2;
    margin: 0 0 0.5em 0.25em;
    color: #fff;
}

.block-time {
    font-weight: 400;
}

/* Session Type Group Header */
.session-type-group {
    margin-bottom: 1em;
}

.sesh-types {
    font-size: 105%;
    font-weight: 600;
    color: #fff;
    margin: 0.75em 0 0.5em 0.25em;
    padding: 0.3em 0.5em;
    background-color: rgba(255,255,255,0.15);
    border-radius: 0.5em;
    display: inline-block;
}

/* Category label in header */
.cat-label {
    font-size: 95%;
    font-weight: 500;
}

/* Local time display */
.local-time {
    font-size: 90%;
    font-weight: 400;
    opacity: 0.8;
}

/* Session Grid */
.session-grid {
    display: grid;
    grid-gap: 0.5em;
    border: 0;
    width: 100%;
    margin: 0 0 0.5em;
}

.session-grid:last-child {
    margin-bottom: 0;
}

.g1box { grid-template-columns: 1fr; }
.g2box { grid-template-columns: repeat(2, 1fr); }
.g3box { grid-template-columns: repeat(3, 1fr); }
.g4box { grid-template-columns: repeat(4, 1fr); }
.g5box { grid-template-columns: repeat(5, 1fr); }
.g6box { grid-template-columns: repeat(6, 1fr); }
.g7box { grid-template-columns: repeat(7, 1fr); }
.g8box { grid-template-columns: repeat(8, 1fr); }
.g9box { grid-template-columns: repeat(9, 1fr); }
.g10box { grid-template-columns: repeat(10, 1fr); }
.g11box { grid-template-columns: repeat(11, 1fr); }
.g12box { grid-template-columns: repeat(12, 1fr); }
.g13box { grid-template-columns: repeat(13, 1fr); }
.g14box { grid-template-columns: repeat(14, 1fr); }

a.session-square-link {
    text-decoration: none;
    color: inherit;
    display: flex;
}

a.session-square-link .session-square {
    flex: 1;
}
a.session-square-link:hover .session-square {
    border-color: #19305c;
    box-shadow: 0 2px 8px rgba(25, 48, 92, 0.3);
}

/* Session Square */
.session-square {
    box-sizing: border-box;
    color: #19305c;
    width: 100%;
    background-color: #fff;
    padding: 0 0 0.75em 0;
    border-radius: 0.75em;
    border: 2px solid #2E2E2E;
    transition: opacity 0.2s;
}

.session-square.deselected {
    opacity: 0.3;
    background-color: #bbb;
}

.session-square.deselected .catcol {
    background-color: #999 !important;
    color: #ccc !important;
}

.session-square .catcol {
    margin: -2px -2px 0.5em -2px;
    padding: 0.5em 0.5em;
    font-weight: 600;
    border-width: 2px 2px 2px 2px;
    border-style: solid;
    border-color: #2E2E2E;
    border-radius: 0.75em 0.75em 0 0;
    text-align: center;
    font-size: 85%;
    min-height: 3em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.3;
}

.session-square .lab {
    font-size: 90%;
    margin: 0.2em 0.5em 0.15em;
    text-align: center;
    line-height: 1.3;
}

.session-square .lab a {
    color: #19305c;
    text-decoration: none;
}

.session-square .lab a:hover {
    text-decoration: underline;
}

.session-square .rum {
    font-size: 85%;
    line-height: 1.25;
    font-weight: 400;
    margin: 0.5em 0.5em 0.25em;
    text-align: center;
    color: #666;
}

.session-square .tim {
    font-size: 85%;
    margin: 0.25em 0.5em 0;
    text-align: center;
    line-height: 1.25;
    font-style: italic;
    font-weight: 400;
    color: #666;
}

/* Footer */
.paag-footer {
    border-radius: 1.5em;
    width: 98%;
    max-width: 1850px;
    margin: 2em auto 3em;
    padding: 1.25em 2em 1em;
    color: #fff;
    background-color: #19305C;
    text-align: center;
}

.back-buttons {
    display: inline-block;
    background-color: #fff;
    padding: 0.5em 1.5em;
    border-radius: 2em;
    margin-bottom: 1em;
}

.back-buttons a {
    color: #19305c;
    text-decoration: none;
    font-weight: 600;
}

.footer-text {
    margin: 0;
    font-weight: 400;
    font-size: 90%;
}

/* Responsive Breakpoints */
@media screen and (max-width: 1200px) {
    .g9box, .g10box, .g11box, .g12box, .g13box, .g14box { grid-template-columns: repeat(5, 1fr); }
    .g7box, .g8box { grid-template-columns: repeat(4, 1fr); }
    .g5box, .g6box { grid-template-columns: repeat(4, 1fr); }
}

@media screen and (max-width: 900px) {
    .g9box, .g10box, .g11box, .g12box, .g13box, .g14box { grid-template-columns: repeat(4, 1fr); }
    .g5box, .g6box, .g7box, .g8box { grid-template-columns: repeat(3, 1fr); }
    .g3box, .g4box { grid-template-columns: repeat(2, 1fr); }


    .big-day p { font-size: 180%; }
    .head-text .paag .bigP,
    .head-text .paag .bigG { font-size: 280%; }
    .head-text .paag .rog-a-a,
    .head-text .paag .lance { font-size: 200%; }
}

@media screen and (max-width: 768px) {

    .g9box, .g10box, .g11box, .g12box, .g13box, .g14box { grid-template-columns: repeat(3, 1fr); }
    .g5box, .g6box, .g7box, .g8box { grid-template-columns: repeat(2, 1fr); }
    .g3box, .g4box { grid-template-columns: repeat(2, 1fr); }

    .day-bar {
        border-radius: 1em;
        padding: 0.5em 0.75em;
    }

    .big-day p { font-size: 150%; }

    .day-bar-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .day-time-anchors {
        margin-left: 0;
    }

    .key-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

@media screen and (max-width: 576px) {
    body { font-size: 10pt; }

    .g5box, .g6box, .g7box, .g8box, .g9box, .g10box, .g11box, .g12box, .g13box, .g14box {
        grid-template-columns: repeat(2, 1fr);
    }
    .g3box, .g4box { grid-template-columns: 1fr; }

    .head-text .paag .bigP,
    .head-text .paag .bigG { font-size: 220%; }
    .head-text .paag .rog-a-a,
    .head-text .paag .lance { font-size: 160%; }

    .big-day p { font-size: 130%; }

    .cal-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 400px) {
    .g5box, .g6box, .g7box, .g8box, .g9box, .g10box, .g11box, .g12box, .g13box, .g14box {
        grid-template-columns: 1fr;
    }

    .head-text .paag .bigP,
    .head-text .paag .bigG { font-size: 180%; }
    .head-text .paag .rog-a-a,
    .head-text .paag .lance { font-size: 130%; }
}

/* Plenary/Sponsor inside main-blocks */
.main-blocks .plenary-block-link { display: block; }
.main-blocks .plenary-block {
    width: 100%;
    margin: 1em 0;
}
.main-blocks .sponsor-block-link { display: block; }
.main-blocks .sponsor-block {
    width: 80%;
    max-width: 700px;
    margin: 1em auto;
}

/* Break Block */
.break-block {
    width: 98%;
    max-width: 1850px;
    margin: 0 auto 2em;
    padding: 1em 1.5em;
    border: 3px dashed #999;
    border-radius: 1em;
    text-align: center;
    background-color: #f5f5f5;
}
.break-label {
    font-size: 130%;
    font-style: italic;
    font-weight: 600;
    color: #555;
    margin: 0;
}
.break-time {
    font-size: 110%;
    font-weight: 600;
    color: #19305c;
    margin: 0.25em 0 0;
}

/* Plenary Block */
a.plenary-block-link {
    text-decoration: none;
    color: inherit;
    display: block;
}
.plenary-block {
    width: 90%;
    margin: 1.5em auto;
    border: 3px solid #19305c;
    border-radius: 0.5em;
    background: #e9ecf1;
    padding: 0;
    overflow: hidden;
    text-align: center;
    font-weight: 400;
}
a.plenary-block-link:hover .plenary-block {
    box-shadow: 0 3px 12px rgba(25, 48, 92, 0.35);
}
.plenary-header {
    background-color: #2c3e5e;
    color: #fff;
    padding: 0.6em 1.5em;
    font-size: 105%;
    line-height: 1.5;
}
.plenary-header .plenary-type {
    font-weight: 700;
    text-decoration: underline;
    font-size: 110%;
}
.plenary-header .plenary-meta {
    display: block;
    font-weight: 400;
    font-size: 90%;
    margin-top: 0.1em;
}
.plenary-section-title {
    font-weight: 700;
    font-size: 115%;
    color: #19305c;
    padding: 0.6em 1.5em 0.15em;
    background-color: #d5d9e2;
    border-top: 2px solid #b8bfcc;
    text-align: left;
}
.plenary-organizers {
    font-size: 90%;
    color: #333;
    padding: 0 1.5em 0.5em;
    background-color: #d5d9e2;
    text-align: left;
}
.plenary-talk {
    padding: 0;
}
.plenary-talk-row {
    display: flex;
    align-items: center;
    padding: 0.6em 1.5em;
    border-top: 1px solid #c0c5d0;
    text-align: left;
    font-size: 100%;
    min-height: 3em;
    background-color: #fff;
}
.plenary-talk:nth-child(even) .plenary-talk-row {
    background-color: #e4e7ed;
}
.plenary-talk-first .plenary-talk-row {
    background-color: #fff;
}
.plenary-talk-time {
    flex: 0 0 120px;
    font-weight: 600;
    color: #19305c;
    font-size: 95%;
    border-right: 1px solid #c0c5d0;
    padding-right: 1em;
    text-align: center;
}
.plenary-talk-title {
    flex: 1;
    padding: 0 1.5em;
    color: #000;
}
.plenary-talk-speaker {
    flex: 0 0 30%;
    color: #333;
    font-size: 95%;
    border-left: 1px solid #c0c5d0;
    padding-left: 1em;
}
.plenary-title {
    font-weight: 700;
    font-size: 120%;
    color: #19305c;
    padding: 0.8em 1.5em;
}

/* Sponsor / Corporate Symposium Block */
.sponsor-block-link {
    text-decoration: none;
    color: inherit;
    display: block;
}
.sponsor-block {
    width: 60%;
    max-width: 700px;
    margin: 1.5em auto;
    border: 3px solid #19305c;
    border-radius: 0.75em;
    padding: 1em 1.5em;
    text-align: center;
    font-weight: 400;
    color: #19305c;
}
.sponsor-gold {
    background: linear-gradient(180deg, #e8c84a 0%, #f5e6a0 50%, #faf3d0 100%);
    border-color: #b8941e;
}
.sponsor-silver {
    background: linear-gradient(180deg, #b8bcc2 0%, #d4d8dd 40%, #ebedf0 100%);
    border-color: #8a8e94;
}
.sponsor-bronze {
    background: linear-gradient(180deg, #b87e5a 0%, #d4a882 40%, #ecdac8 100%);
    border-color: #96613d;
}
.sponsor-block-link:hover .sponsor-block {
    box-shadow: 0 3px 12px rgba(25, 48, 92, 0.35);
}
.sponsor-block .sponsor-type {
    font-weight: 700;
    font-size: 100%;
    color: #000;
    margin-bottom: 0.3em;
}
.sponsor-block .sponsor-type em {
    font-weight: 400;
    font-size: 90%;
}
.sponsor-block .sponsor-name {
    font-size: 110%;
    font-weight: 700;
    color: #19305c;
    text-decoration: underline;
    margin-bottom: 0.3em;
}
.sponsor-block .sponsor-room {
    font-size: 95%;
    margin-bottom: 0.2em;
}
.sponsor-block .sponsor-time {
    font-weight: 600;
    font-size: 95%;
}

@media screen and (max-width: 650px) {
    .plenary-block { width: 98%; }
    .plenary-talk-row { flex-direction: column; padding: 0.5em 1em; }
    .plenary-talk-time { flex: none; border-right: none; padding-right: 0; text-align: left; margin-bottom: 0.3em; }
    .plenary-talk-speaker { flex: none; border-left: none; padding-left: 0; margin-top: 0.3em; }
    .plenary-talk-speaker { flex: none; font-size: 90%; }
    .sponsor-block { width: 90%; }
}

/* ISMRT Expositional Program Styles */
.ismrt-main-blocks {
    clear: both;
    width: 98%;
    max-width: 1200px;
    background-color: #555;
    margin: 0 auto 2em;
    padding: 1.85em 1.33em 1.9em;
    border-radius: 1.66em;
}

.ismrt-grid-sessions {
    width: 100%;
}

.ismrt-prog-sesh {
    box-sizing: border-box;
    border: 3px solid #19305c;
    background-color: #DBDFE4;
    border-radius: 0.75em;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
}

.ismrt-prog-sesh p {
    font-size: 150%;
    font-weight: 600;
    line-height: 1.2;
    color: #19305c;
    margin: 0.6em 1em;
}

.ismrt-prog-sesh p a {
    color: #19305c;
    text-decoration: none;
}

.ismrt-prog-sesh p a:hover {
    text-decoration: underline;
}

.ismrt-prog-sesh p.ismrt-rum {
    font-size: 100%;
    font-weight: 400;
    margin-top: -0.33em;
}

.ismrt-prog-row {
    display: grid;
    grid-template-columns: 1.5fr 5fr 4fr;
    box-sizing: border-box;
    margin: 0 auto;
    width: 96%;
    padding: 0;
}

.ismrt-prog-time,
.ismrt-prog-title,
.ismrt-prog-speak,
.ismrt-prog-no-spk {
    border: 1.5px solid #d1d6dd;
    background-color: #fff;
    margin: 0;
    padding: 0.75em 1.25em;
}

.ismrt-prog-time p,
.ismrt-prog-title p,
.ismrt-prog-speak p,
.ismrt-prog-no-spk p {
    margin: 0 0.25em;
}

.ismrt-prog-time {
    text-align: center;
    font-size: 107%;
    padding: 0.75em 0.5em;
    line-height: 1.25;
}

.ismrt-prog-title p {
    font-style: italic;
}

.ismrt-prog-no-spk {
    grid-column: 2 / 4;
}

.ismrt-prog-spacer {
    height: 1.5em;
    width: 90%;
}

@media screen and (max-width: 800px) {
    .ismrt-prog-row {
        grid-template-columns: 1.5fr 4fr;
    }
    .ismrt-prog-time {
        grid-column: 1;
        grid-row: 1 / span 2;
    }
    .ismrt-prog-title {
        grid-column: 2;
        grid-row: 1;
        border-bottom: 0;
    }
    .ismrt-prog-speak {
        grid-column: 2;
        grid-row: 2;
        border-top: 0;
    }
    .ismrt-prog-no-spk {
        grid-column: 2;
        grid-row: 1 / span 2;
    }
    .ismrt-prog-time p,
    .ismrt-prog-title p { margin: 0.5em 0.15em 0.13em; }
    .ismrt-prog-speak p { margin: 0.13em 1.25em 0.5em; }
    .ismrt-prog-sesh p { font-size: 125%; }
}

@media screen and (max-width: 450px) {
    .ismrt-prog-row {
        grid-template-columns: 2fr 4fr;
    }
    .ismrt-prog-time,
    .ismrt-prog-title,
    .ismrt-prog-speak,
    .ismrt-prog-no-spk {
        border: 1px solid #d1d6dd;
        padding: 0.4em 0.5em;
    }
    .ismrt-prog-title { border-bottom: 0; padding-bottom: 0; }
    .ismrt-prog-speak { border-top: 0; padding-top: 0; }
}
