/* Link Hover Color */
.block_b0f6939a14484f3d871723f5f7ecf921 a:hover{
    color: #FFD966!important;
    text-decoration: underline!important;
}
.block_dd943fca7a9e432e927b0d071dcdae63 a:hover{
    color: #FFD966!important;
    text-decoration: underline!important;
}
/* Nav Dropdowns */

.navContent ul li ul a {
    white-space: normal !important;
    overflow: visible !important;
}

@media only screen and (min-width: 768px) {
    .navContent ul li ul {
        min-width: 250px !important;
        right: auto !important; 
    }
}

.blockWrap_ca1ee18fdbce4f3aa90e5a9067086564 .contentImg {
    padding-top: 40px}
    
/* Accordian Dropdown Button Styles */
.accordion {
    background-color: #eee;
    color: #a1a1a1;
    cursor: pointer;
    margin-top: 10px;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: 0px;
    outline: none;
    transition: 0.4s;
}

/* Accordian Button Hover */
.active, .accordion:hover {
    background-color: #dfdfdf;
}

/* Accordian Button Icon */
.accordion:after {
    content: '+'; /* Unicode character for "plus" sign (+) */
    font-size: 20px;
    color: #117CB4;
    margin-left: 20px;
}

.active:after {
    content: "-"; /* Unicode character for "minus" sign (-) */
}

/* Accordian Panel Styles */
.panel {
    padding: 10px 18px;
    background-color: white;
    display: none;
    overflow: hidden;
}

* {
  box-sizing: border-box;
}

/* Two equal columns that float next to each other */
.column {
  text-align: left;
  float: left;
  width: 50%;
  padding: 15px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}
  /* For mobile responsive */
@media only screen and (max-width: 768px) {
  [class*="column"] {
    width: 100%;
  }
}