.row {
    display: flex;
    flex-flow: row wrap;
    align-content: flex-start;
    justify-content: space-between;
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 1rem;
}
.row:first-of-type {
    padding-top: 0;
}
.row:last-of-type {
    padding-bottom: 0;
}
.row div.img-one {
    background: url("/images/2020/img-one.jpg") no-repeat center right;
    background-size: 100%;
}
.row div.img-two {
    background: url("/images/2020/img-three.jpg") no-repeat center right;
    background-size: 100%;
}
.row div.img-three {
    background: url("/images/2020/img-four.jpg") no-repeat center right;
    background-size: 100%;
}
.row div.img-four {
    background: url("/images/2020/img-two.jpg") no-repeat center right;
    background-size: 100%;
}
.row div.img-one > h2, .row div.img-two > h2, .row div.img-three > h2, .row div.img-four > h2 {
    line-height: 0;
    padding: 0;
    margin: 0;
    font-size: 1.1em;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.row div > h2 > a:link, .row div > h2 > a:active, .row div > h2 > a:visited {
    display: inline-block;
    width: 100%;
    height: 100%;
    min-height: 10px;
    padding: 95px 0 0 0;
    transition: 0.7s;
    color: #42bcf9;
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 67%, rgba(0, 0, 0, 0.7) 68%, rgba(0, 0, 0, 0.7) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 67%, rgba(0, 0, 0, 0.7) 68%, rgba(0, 0, 0, 0.7) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 67%, rgba(0, 0, 0, 0.7) 68%, rgba(0, 0, 0, 0.7) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=0); /* IE6-9 */
}
.row div > h2 > a:hover {
    color: #fff;
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0.5)
}
.row__1col {
    flex-flow: column wrap;
}
.row__1col > div {
    flex: 0 0 100%;
}
.row__2col > div {
    flex: 0 0 100%;
    width: 100%;
}
.row__3col > div, .row__4col > div {
    flex: 0 0 100%;
    width: 100%;
    margin: 0 0 20px 0;

}
.row__3col.with-divider > div:first-child::before, .row__4col.with-divider > div:first-child::before {
    display: none;
}
 .card {
    background-color: #eee;
    box-shadow: 0 10px 20px rgb(59, 59, 59), 0 4px 8px rgba(0, 0, 0, 0.55);
    transition: .9s transform cubic-bezier(.155, 1.105, .295, 1.12), .9s box-shadow,
    .9s -webkit-transform cubic-bezier(.155, 1.105, .295, 1.12);
    cursor: pointer;
    margin: 2px;
    min-height: 260px;
     border: 1px solid #eee;
     padding: 10px;
     font-size: 16px;
}

.card img {
  padding: 0!important;

}

.box {
    background-color: #EEEEEE;
  border: 1px solid #ccc;
    padding: 10px;
    margin: 0 0 20px 0;
    font-size: 1.2em;
    font-weight: bold;
}

.convertforms.cf-success .cf-response {
    background-color: #eee!important;
    color:#000!important;
}


.card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgb(59, 59, 59), 0 4px 8px rgba(0, 0, 0, 0.55);
}

@media screen and (min-width: 1000px) {
    .row__2col > div {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .row__3col > div {
        flex: 0 0 33%;
        max-width: 33%;
    }
    .row__4col > div {
        flex: 0 0 24.6%;
        max-width: 24.6%;
        border: 1px solid rgba(200, 200, 200, .7);
        border-radius: 4px;
    }
    .row {
        flex-flow: row nowrap;
    }
    .row__3col.with-divider > div, .row__4col.with-divider > div {
        position: relative;
    }
    .row__3col.with-divider > div::before, .row__4col.with-divider > div::before {
        content: "";
        position: absolute;
        top: 0;
        left: -9px;
        width: 1px;
        height: 100%;
        background-color: #919191;
    }
    .row__2col.with-divider > div:last-child {
        position: relative;
    }
    .row__2col.with-divider > div:last-child::before {
        content: "";
        position: absolute;
        top: 0;
        left: -9px;
        width: 1px;
        height: 100%;
        background-color: #919191;
    }
}


a {
    transition: color 0.3s linear;
}

body.site {
    border-top: none;
    background-color: #fff;
    padding: 0;
}

.body .container {
    border: none;
    box-shadow: none;
}

.header {
    background-color: #0e366a;
    height: 80px;
    margin: 0;
}

div.sidebar-nav ul.unstyled {
    margin-top: 0.2em;
    margin-left: 1em;
}

ul.nav.menu {
}

ul.nav.menu > li > a {
    font-weight: bold;
}

div.sidebar-nav li {
    border-top: 1px solid #CCC;
    padding: 0.3em;
}

div.sidebar-nav li > a {
    color: #222;
}

div.sidebar-nav li.active > a {
    color: #0e368a;
}

div.sidebar-nav li > a:hover, div.sidebar-nav li > a:focus {
    color: #0e368a;
    text-decoration: none;
    background: none;
}

#pageTop > nav {
    background-color: #222;
    background-image: linear-gradient(#555, #222);
    border-top: 1px solid #777;
    border-bottom: 1px solid #777;
    padding: 0;
}

#mainMenu {
    margin: 0 auto;
}

#mainMenu li.deeper > a::before {
    content: "\25be \00a0";
}

#content img {
    padding: 0 5px 0;
}

@media (min-width: 1000px) {
    #mainMenu > li > a {
        font-size: 14px;
    }

    ul.nav > li > a {
        font-size: 14px;
    }

    ul.nav-child.unstyled.small > li > a {
        font-size: 13px;
    }

    div > h2 ~ h2 {
        font-size: 19px;
        line-height: 21px;
    }
}

@media (max-width: 767px) {
    ul.breadcrumb {
        display: none;
    }

    .navigation {
        padding: 0;
        margin-bottom: 0;
        border: none;
    }

}

@media (max-width: 979px) {
    #mainMenu > li > a {
        font-size: 12px;
    }

    ul.nav > li > a {
        font-size: 12px;
    }

    ul.nav-child.unstyled.small > li > a {
        font-size: 11px;
    }

    div > h2 ~ h2 {
        font-size: 16px;
        line-height: 18px;
    }
}

#mainMenu > li > a {
    color: #ccc;
    background: none;
    border-radius: 0;
    border-left: 1px solid #777;
    margin: 0;
    font-weight: bold;
}

@media (min-width: 769px) {
    #mainMenu > li:last-of-type > a {
        border-right: 1px solid #777;
    }
}

#mainMenu > li a:focus, #mainMenu > li a:hover {
    color: #fff;
    background: #444 linear-gradient(#888, #444);
}

#mainMenu  li.active > a {
    color: #eee;
    background: #047 linear-gradient(#058, #035);
}

#mainMenu   li.active > a:hover, #mainMenu   li.active > a:focus {
    color: #eee;
    background: #358 linear-gradient(#aaa, #035);
}

#topMenuBtn {
    border-color: #666;
    background: #555 linear-gradient(#888, #333);
}

#topMenuBtn:focus, #topMenuBtn:hover {
    border-color: #222;
    background: #999 linear-gradient(#bbb, #444);
}

.navigation .nav-child a {
    color: #ccc;
    font-weight: bold;
}

@media (max-width:859.9px) {

    #mainMenu {
        width: 90%;
    }
    #mainMenu li ,    #mainMenu  li > a,    #mainMenu ul   {
        display:block;
        float:none;
        position: relative;
    }
    #mainMenu .nav-child li {
        padding-left:5%;
    }
    .navigation .nav-child {
        transition: opacity .3s linear,
        opacity 0.3s linear;
        display: block;
        position: static;
        max-height: none;
        top: auto;
        left: auto;
        z-index: 1;
        min-width: 100%;
        padding: 0;
        margin: 0;
        list-style: none;
        opacity: 90%;
        background: none;
        border: none;
        border-radius: 0 0 4px 4px;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }

}
@media (min-width:860px) {
    .navigation .nav-child {
        transition: max-height 0.8s linear,
        opacity 0.3s linear;
        display: block;
        position: absolute;
        max-height: 0;
        top: 95%;
        left: 0;
        z-index: 1000;
        min-width: 160px;
        padding: 0;
        margin: 0;
        list-style: none;
        opacity: 0;
        background: #222 linear-gradient(#111, #444);
        border: none;
        border-radius: 0 0 4px 4px;
        -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        -webkit-background-clip: padding-box;
        -moz-background-clip: padding;
        background-clip: padding-box;
        overflow: hidden;
    }

    .navigation .nav > li:hover > .nav-child,
    .navigation .nav > li > a:focus + .nav-child,
    .navigation .nav li li:hover > .nav-child,
    .navigation .nav li li > a:focus + .nav-child,
    .navigation .nav .nav-child.hasFocus {
        display: block;
        max-height: 300px;
        opacity: 0.9;
        border: 1px solid #777;
    }
}

#headerMask {
    position: relative;
    top: 0;
    right: 0;
    height: 80px;
    width: 100%;
    background: url(../images/header-mask.png) no-repeat right;
}

#raiLogo {
    position: relative;
    top: 0;
    right: 0;
    height: 80px;
    width: 100%;
    background: url(../images/logo.png) no-repeat left;
}

@media (max-width: 560px) {
    #raiLogo {
        background-position: right;
    }
}

div.random-image img {
    max-width: 600px
}

div.category-desc > p > img {
    float: left;
    margin-right: 10px;
    margin-bottom: 5px;
}

#jevents_body li.ev_td_li p {
    font-size: 12px;
}

#jevents_body a.ev_link_row {
    font-size: 14px;
    font-family: inherit;
    font-weight: bold;
    color: #000;
}

#jevents_body a.ev_link_row:hover {
    color: #0e368a;
}

#jevents_body div.jevtt_title span {
    font-size: 11pt;
    font-weight: normal;
}

#jevents_body .cal_td_daysnames {
    font-size: 20px;
    border: 1px solid #000;
    height: 25px ! important;
    line-height: 25px;
    background: #fff none;
}

#aside div.film-list {
    padding: 12px 7px 12px 12px;
}

#aside ul.film-list {
    list-style-type: none;
    margin: 4px;
}

#aside ul.film-list li a {
    color: #002;
}

#aside ul.film-list li {
    padding: 2px 2px 2px 4px;
}

#linksOnHomePage li {
    list-style-type: none;
    display: inline-block;
    padding-left: 40px;
}

#linksOnHomePage a {
    display: inline-block;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    background: #228 linear-gradient(#77a, #116);
    color: #ddd;
    width: 150px;
    padding: 4px 0;
    border-radius: 10px;
    border: solid 1px #116;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}

#linksOnHomePage a:hover, #linksOnHomePage a:focus, #linksOnHomePage a:active {
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.06em;
    background: #339 linear-gradient(#99c, #338);
}

.highlight {
    background: #EEA;
}

/*Eli added for Sigplus image captions*/

.captionplus-horizontal-center.captionplus-vertical-center {
    word-wrap: break-word
}

.captionplus-overlay {
    height: 27%;
}