html, body {
  overflow-x: hidden;
}

<!-- ##### SITEFARM NAVBAR and FOOTER  ##### -->
.ucd-navbar {
  width: 100%;
  background: #002855;
  position: relative;
  z-index: 10000;
}

.ucd-nav-container {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  /*margin-top:2rem;*/
}

.nav-toggle-checkbox {
  display: none;
}

.ucd-nav-toggle {
  display: none;
  cursor: pointer;
  padding: 12px 16px;
  position: relative;
  z-index: 10001;
}

.ucd-nav-toggle .bar {
  display: block;
  width: 26px;
  height: 3px;
  margin: 5px 0;
  background: #fff;
}

.ucd-nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.ucd-nav-menu li {
  position: relative;
}

.ucd-nav-menu a {
  display: block;
  padding: 18px 28px;
  color: #000;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

.ucd-nav-menu li::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #ffbf00;
  clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%);
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 1;
}

.ucd-nav-menu li:hover::before {
  opacity: 1;
}

.ucd-nav-menu li:hover a {
  color: #002855;
  margin-left: .5rem;------------------------
}

@media screen and (max-width: 767px) {
  .ucd-nav-toggle {
    display: block !important;
  }

  .ucd-nav-menu {
    display: none !important;
    position: absolute !important;
    top: 60px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    flex-direction: column !important;
    background: #dbeaf7 !important;
    z-index: 10000 !important;
  }

  .nav-toggle-checkbox:checked ~ .ucd-nav-menu {
    display: flex !important;
  }

  .ucd-nav-menu li::before {
    display: none !important;
  }

  .ucd-nav-menu a {
    padding: 14px 20px !important;
    /*border-bottom: 1px solid rgba(255,255,255,0.15) !important;*/
    border-bottom: 1px solid #FFF !important;
  }

  .nav-toggle-checkbox:checked + .ucd-nav-toggle .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle-checkbox:checked + .ucd-nav-toggle .bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle-checkbox:checked + .ucd-nav-toggle .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}


.ucd-navbar {
  width: 100%;
  background: #002855;
  position: relative;

  z-index: 1000;
}

.ucd-navbar .ucd-nav-container {
  position: relative;
  width: 100%;
  height: 3rem;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  margin-left: 1rem;
}

.ucd-navbar .nav-toggle-checkbox {
  display: none;
}

.ucd-navbar .ucd-nav-toggle {
  display: none;
  cursor: pointer;
  padding: 12px 16px;
  position: relative;
  z-index: 1001;
}

.ucd-navbar .ucd-nav-toggle .bar {
  display: block;
  width: 26px;
  height: 3px;
  margin: 5px 0;
  background: #fff;
}

.ucd-navbar .ucd-nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}


.ucd-navbar .ucd-nav-menu li {
  position: relative;
}

.ucd-navbar .ucd-nav-menu a {
  display: block;
  padding: 18px 15px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  margin-left: .5rem;--------------------
  z-index: 2;
}

/*.ucd-navbar .ucd-nav-menu li::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #ffbf00;
  clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%);
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 1;
}

.ucd-navbar .ucd-nav-menu li:hover::before {
  opacity: 1;
}

.ucd-navbar .ucd-nav-menu li:hover a {
  color: #002855;
}*/

@media screen and (max-width: 767px) {
  .ucd-navbar .ucd-nav-toggle {
    display: block;
  }

  .ucd-navbar .ucd-nav-menu .has-dropdown a {
    color: #000;
}

  .ucd-navbar .ucd-nav-menu {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: #002855;
    z-index: 1000;
  }

  .ucd-navbar .nav-toggle-checkbox:checked ~ .ucd-nav-menu {
    display: flex;
    margin-top: -12px;
    margin-left: -1rem;
  }

  .ucd-navbar .ucd-nav-menu li::before {
    display: none;
  }

  .ucd-navbar .ucd-nav-menu a {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }

}


/* top nav */
.ucd-nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ucd-nav-menu > li {
  position: relative;
  display: inline-block;
}

/* skew only the top-level link */
.ucd-nav-menu > li > a {
  display: block;
  padding: 10px 18px;
  text-decoration: none;
  /*transform: skew(-20deg);*/
}

/* unskew the text */
.ucd-nav-menu > li > a > span {
  display: inline-block;
  /*transform: skew(20deg);*/
}

/* dropdown */
/*.ucd-nav-menu .dropdown {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: #fff;
  display: none;
  z-index: 9999;*/

  /* important: no skew, no animation */
  transform: none !important;
  transition: none !important;
}

/* keep hover active with no gap */
.ucd-nav-menu > li.has-dropdown {
  padding-bottom: 0;
}

.ucd-nav-menu > li.has-dropdown:hover .dropdown {
  display: block;
}

.dropdown a {
    font-weight: 600;
}

/* dropdown items must be normal rectangles */
.ucd-nav-menu .dropdown li,
.ucd-nav-menu .dropdown li a,
.ucd-nav-menu .dropdown li a span {
  display: block;
  transform: none !important;
  transition: none !important;
}

.ucd-nav-menu .dropdown li a {
  padding: 10px 12px;
  text-decoration: none;
  background: #FFFBED;
  font-weight: 600;
}

.ucd-nav-menu .dropdown li a:hover {
  background: #ffbf00;
}

/* kill pseudo-element skew if your theme adds it */
.ucd-nav-menu .dropdown li a::before,
.ucd-nav-menu .dropdown li a::after,
.ucd-nav-menu .dropdown::before,
.ucd-nav-menu .dropdown::after {
  content: none !important;
  transform: none !important;
  transition: none !important;
}

/* hide submenu */
/* top-level dropdown */
.ucd-nav-menu,
.ucd-nav-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ucd-nav-menu .has-dropdown {
  position: relative;
}

.ucd-nav-menu .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  z-index: 9999;
}

.ucd-nav-menu .has-dropdown:hover > .dropdown {
  display: block;
}

/* normal dropdown links */
.ucd-nav-menu .dropdown li a,
.submenu-details summary {
  display: block;
  padding: 10px 12px;
  text-decoration: none;
/*  background: #fff;*/
  color: inherit;
  cursor: pointer;
  font-weight: 300;
  color:#022851;
  margin-left: -1px;
}

/* remove skew/transform from dropdown area */
.ucd-nav-menu .dropdown,
.ucd-nav-menu .dropdown li,
.ucd-nav-menu .dropdown li a,
.submenu-details,
.submenu-details summary,
.submenu,
.submenu li,
.submenu li a {
  transform: none !important;
  transition: none !important;
}

/* remove default details marker */
.submenu-details summary {
  list-style: none;
}

.submenu-details summary::-webkit-details-marker {
  display: none;
}

/* arrow */
.submenu-details summary::after {
  content: "▸";
  float: right;
}

.submenu-details[open] summary::after {
  content: "▾";
}

/* submenu */
.has-submenu {
  position: relative;
}

.submenu {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 200px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: #fff;
}

.has-submenu:hover > .submenu {
  display: block;
}




.header__bar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-height: 2rem;
    background-color: #d8d8d8;
}

.header__university {
    display: flex;
    align-items: center;
    height: 2rem;
    padding-right: .75rem;
    background-color: #e5e5e5;
}
.header__university a {
    border-bottom: 0;
}

.header__university:before {
    width: .75rem;
    height: 2rem;
    margin-right: .75rem;
    margin-left: -.75rem;
    background-color: #e5e5e5;
    clip-path: polygon(93% 0, 110% 0, 110% 102%, 0% 102%);
    content: "";
}

.page-title h1 {
    font-size: xx-large;
    color: #13639E;
    margin-bottom: 2rem;
}





/*------------------------------TOP-LEVEL DESKTOP STYLE DEFAULTS------------------------------*/

#navskip {
    width: 5px;
}

body {
    min-width: 56em;
}


/* sets the default gutters and limits for content stretch */
.outer_wrap {
    width: 90%;
    min-width: 56em;
    max-width: 87.5em;
    background-color: #FFF; 
}

/* sets the default gutters minimum */
.inner_wrap, #nav .inner_wrap {
    padding: 0 20px;
    background-color: #022851;
}


/* ----------- Styles for flex pages ----------- */

.columns_wrapper {
    position: relative;
    margin: 0 0 20px -30px;     /* changed from 20px top margin */
    overflow: hidden;
}

.interior_row_wrapper {
    float: left;
    width: 100%;
    margin-bottom: 0;
    overflow: hidden;
}

.interior_row_wrapper.fp_top_margin {
    margin-top: 20px;
}

    .column {
        float: left;
    }
    
        .column_content {
            margin-left: 30px;
            background-color: #FFF;
        }
        
        .column_content.fp_top_margin {
            margin-top: 20px;
        }
        
    .column_25 {
        width: 25%;
        min-height: 1px;
    }

    .column_33 {
        width: 33.33333%;
        min-height: 1px;
    }

    .column_50 {
        width: 50%;
        min-height: 1px;
    }

    .column_66 {
        width: 66.66666%;
        min-height: 1px;
    }

    .column_75 {
        width: 75%;
        min-height: 1px;
    }

    .column_100 {
        width: 100%;
        min-height: 1px;
    }

/* ----------- End styles for flex pages ----------- */


/*------------------------------TOP-LEVEL STYLE DEFAULTS------------------------------*/


    /* Default paragraph and heading styles */

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        line-height: 1.4;
    }

    p {
        line-height: 1.2;
    }


/* Default list styles */

    ul {
        margin: 1em 0 1em 2.6em;
    }

    ol {
        margin: 1em 0 1em 3.5em;
    }

    ol ul, ul ul {
        margin-left: 2.2em;
    }

    ol ol, ul ol {
        margin-left: 3em;
    }

    /* Default content_box list styles */

    .content_box ol {
        margin-left: 3.8em;
    }

    .content_box ul {
        margin-left: 3em;
    }

    .content_box ol ul {
        margin-left: 1.5em;
    }

    .content_box ul ul {
        margin-left: 1.8em;
    }

    .content_box ol ol,
    .content_box ul ol {
        margin-left: 2.2em;
    }


    .column ul,
    .content_box.unbordered ul {
        margin-left: 1.4em;
    }

    .column ol,
    .content_box.unbordered ol {
        margin-left: 2.2em;
    }

    .column .content_box ul {
        margin-left: 1.4em;
    }

    .column .content_box ol {
        margin-left: 3em;
    }

    .column ul ul, .unbordered ul ul {
        margin-left: 1.4em;
    }

    .column .content_box ul ul {
        margin-left: 1.4em;
    }

    .column ul ol {
        margin-left: 2.2em;
    }

    .column .content_box ul ol {
        margin-left: 2.2em;
    }

    .column ol ol, .unbordered ol ol {
        margin-left: 2.2em;
    }

    .column .content_box ol ol {
        margin-left: 2.2em;
    }

    .column ol ul, .unbordered ol ul {
        margin-left: 1.4em;
    }

    .column .content_box ol ul {
        margin-left: 1.4em;
    }

    /* Featured link lists */

    .content_box.unbordered ul.featured_links {
        margin-left: 0;
    }









/*------------------------------SITE TITLE AREA------------------------------*/

#site_title {
    border-bottom: 0 none;
}

        #site_title #title.heading {
            padding-top: 45px;
        }
    
        #site_title #title.logo {
            padding: 32px 0 10px;
            margin-right: auto;
        }
        
        #site_title #title.logo img {
            width: auto;
        }

        #site_title #title.heading h1 {
            font-size: 2.6em;
        }

    
    
    
    #site_title #title_area_links {
        position: absolute;
        top: 0;
        right: 0;
        z-index: 99;
    }

        #site_title #title_area_links ul {
            list-style-type: none;
            font-size: 100%;
            position: relative;
            float: right;
            margin: 10px 10px 0 0;
            padding: 0;
        }

        #site_title #title_area_links ul li {
            display: inline;
            font-size: 100%;
        }

        #site_title #title_area_links ul a {
            font-size: 0.75em;
            display: block;
            float: left;
            margin: 0 0 0 1.25em;
            padding: 0;
            color: #002855;
        }

        #site_title #title_area_links ul li a:hover,
        #site_title #title_area_links ul li a:focus {   
            border-bottom: 1px solid #002855;
        }

        #site_title #title_area_links ul li span.here {
            display: block;
            float: left;
            font-size: 0.75em;
            margin: 0.7em 0 0 1.5em;
            padding: 0;
            font-weight: bold;
            color: #002855;
        }
        
        
    /* Title area search styles */
/*        #_search-block {
            bottom: 0;
            margin: 0;
            padding: 0;
            overflow: hidden;
            position: absolute;
            right: 10px;
        }
        #desktop_search_etc #search_header_input {
            background-color: #F0F2F5;
            border: 0px none !important;
            color: #002855;
            height: 28px;
            margin: 0px -5px 0px 0px;
            padding: 0px 8px;
            vertical-align: bottom;
        }
        #desktop_search_etc #search_header_submit {
            background-color: #4D688C;
            border: 0;
            color: #FFFFFF;
            height: 28px;
            padding: 2px 15px 3px;
            text-align: center;
            vertical-align: bottom;
        }*/
        

/*------------------------------PRIMARY NAVIGATION BAR------------------------------*/

#nav {
    overflow: visible;
    margin-bottom: 0;
}

    #nav ul {
        margin: 0 0 0 14px;
    }

        #nav ul li {
            float: left;
            display: block;
            font-size: 0.95em;
        }

            #nav ul li a {
                padding: 0.8em 10px 0.8em;
                white-space: nowrap;
            }

            #nav ul li li {
                float: none;
            }

            #nav ul li li a {
                white-space: normal;
            }

    .bar_2 .nav_content {
        background-color: #C99700;
    }

    #nav .bar_2 .nav_content ul li a {
        color: #002855;
    }

    #nav .bar_2 .nav_content ul li a.here {
        background-color: #D4AC33;
    }

    #nav .bar_2 .nav_content ul li a:hover,
    #nav .bar_2 .nav_content ul li a:focus {
        background-color: #DFC166;
    }

    #nav .bar_1 ul li {
        border-left: 1px solid #99A9BB;
    }

    #nav .bar_2 ul li {
        border-left: 1px solid #B38600;
    }



/*  #nav #_nav_dropdown ul.primary_nav li, #nav #_nav_doubledown ul.primary_nav li {
        display: block;
        float: left;
    }

    #nav #_nav_dropdown ul.primary_nav li li, #nav #_nav_doubledown ul.primary_nav li li {
        display: block;
        float: none;
    }*/



/*-------------------------------DROPDOWN NAVIGATION------------------------------------------*/

#_nav_dropdown .nav_background, #_nav_dropdown .nav_content {
    overflow: visible;
}


    #_nav_dropdown ul { position: relative; }

    #_nav_dropdown ul ul {
        margin: 0px;
        position: absolute;
        display: none;
        width: 12em;
        margin-top: -3px;
        margin-left: -1px;
        padding: 3px 8px 8px 0px;
        z-index: 99;
        background-image: url('img/navigation/navtop_arrow_top.png');
        background-repeat: no-repeat;
        background-position: 1em 3px;
    }

        #_nav_dropdown ul ul div { box-shadow: 0px 1px 3px 0px #777; }
        
        #_nav_dropdown ul ul ul {
            left: 100%;
            top: 0px;
            padding: 5px;
            background-image: url('img/navigation/navtop_arrow_left.png');
            background-repeat: no-repeat;
            background-position: left .5em;
        }
    
        #_nav_dropdown .bar_2 ul ul { background-image: url('img/navigation/navbot_arrow_top.png'); }

        #_nav_dropdown .bar_2 ul ul ul { background-image: url('img/navigation/navbot_arrow_top.png') }
    
    
    #_nav_dropdown ul li {
        float: none;
        position: relative;
        display: inline-block;
    }
    
        #_nav_dropdown ul li._drop > a {
            padding-right: 10px;
            background-repeat: no-repeat;
            background-image: url('img/navigation/droptop_arrow_right.png');
            background-position: right center;
            border-right: 5px solid transparent;
        }

        #_nav_dropdown ul li._drop:hover > a {
            background-image: url('img/navigation/droptop_arrow_down.png');
        }
    
        #_nav_dropdown .bar_2 ul li._drop > a {
            background-image: url('img/navigation/dropbot_arrow_right.png');
        }

        #_nav_dropdown .bar_2 ul li._drop:hover > a {
            background-image: url('img/navigation/dropbot_arrow_down.png');
        }
    
        #_nav_dropdown ul li:hover > * { display: block; }
    
    #_nav_dropdown ul ul li {
        float: none;
        border-left: 0px none;
        margin: 0;
        border-top: 1px solid #99A9BB;
        display: block;
    }

    #_nav_dropdown ul ul li:last-child { border-bottom: none; } 
    
        #nav #_nav_dropdown .bar_2 ul ul li {
            border-top: solid 1px #B38600;
            border-left: solid 1px #B38600;
        }

        #_nav_dropdown .bar_2 ul ul li:last-child { border-bottom: none; }
        
        #_nav_dropdown ul ul li a { 
            display: block;
            vertical-align: middle;
            text-align: left;
            padding: 10px 10px;
            background-color: #667D9D;
            font: 1em Helvetica, Arial, sans-serif;
            text-decoration: none;
            line-height: 1.1em;
        }
    
        #_nav_dropdown .bar_2 ul ul li a { background-color: #DFC166; }

        #nav #_nav_dropdown .bar_2 ul ul li a:hover { background-color: #DAAA00; }
    
        #_nav_dropdown ul ul li:hover>a {
            border-style: none;
            text-decoration: none;
        }
    

/*---------------------------------DOUBLEDOWN NAVIGATION --------------------------------------*/

#_nav_doubledown .nav_background, #_nav_doubledown .nav_content { overflow: visible;  }

#nav #_nav_doubledown ul li { float: none; }

#_nav_doubledown ul li {
    position: relative;
    white-space: nowrap;
    display: -moz-inline-stack;
    display: inline-block;
}

#_nav_doubledown ul ul { display: none; }


/*---------------------------------SLIDEDOWN NAVIGATION (homesite)-----------------------------*/

    .nav_dropdown_titlelinks, .nav_doubledown_titlelinks {
        width: 100%;
        float: none;
        border-right: 0 none;
    }


/*------------------------------BREADCRUMBS------------------------------*/

#breadcrumbs_container {
    overflow: hidden;
    text-align: right;
    float: none;
    clear: both;
    z-index: 0;
    /*margin-top: 20px;*/
    padding-top: 0;
    display: block;
}

    #breadcrumbs {
        font-size: 0.625em; /*NEEDED TO ESTABLISH FONT SIZE WITHOUT CHANGING SIZE OF OUTER CONTAINER THAT IS SET IN EMS*/
        padding: 0 0 0.8em;
        overflow: hidden;
        width: 100%;
        float: right;
        color: #333;
    }

        #breadcrumbs ul {
            list-style-type: none;
            position: relative;
            float: right;
            margin: 1em 0;
            font-size: 100%;
        }
    
        #breadcrumbs ul li {
            display: inline;
            font-size: 100%;
            color: #333;
        }

        #breadcrumbs li a, #breadcrumbs li span {
/*      float: left;*/
            margin: 0 1em 0 0.6em;
            padding: 2px 0 0;
        }

        #breadcrumbs li a {
            border-bottom: 1px solid #333;
        }

        #breadcrumbs li a:hover,
        #breadcrumbs li a:focus {
            border-bottom: 1px solid #FFF;
        }
    
        #breadcrumbs li:after {
            content: ">";
        }
    
        #breadcrumbs li:last-child:after {
            content: "";
        }
    
        #breadcrumbs li span.here {
            font-weight: bold;
            margin-right: 0;
        }

    #breadcrumbs_leftborder {
        border-right: 1px solid #002855;
    }


/*------------------------------MAIN CONTENT------------------------------*/

#nav + #main {
    margin-top: 38px;
}

.flex-page #nav + #main {
    margin-top: 0;
}


/*------------------------------CENTER COLUMN------------------------------*/

    #main #page_title h2 {
        padding: 0.5em 20px 0.4em 0;
        font-size: 1.8em;
    }




    #main_sidebar {
        float: left;
        position: relative;
        width: 20%;
        z-index: 7;
        clear: both;
        border-bottom: 0 none;
    }

        #main_sidebar_inner_wrap {
            padding: 4.25em 0 10em 0;
            border-right: 1px solid #335379;
        }


    #main_section {
        float: left;
        width: 80%;
        overflow: hidden;
    }

        #center_column {
            float: left;
            width: 100%;
            overflow: hidden;
        }

            #center_column_inner_wrap {
                position: relative;
                z-index: 6;
                padding: 0 0 2em 20px;
            }

        #right_column {
            display: none;
            float: left;
            width: 25%;
            overflow: hidden;
            padding-top: 4.25em;
        }




/*------------------------------LEFT COLUMN------------------------------*/


#main .nav_second {
    margin: 0 -1px 1.5em 0;
    border-right: 0px none;
}

            #main .nav_second ul li a,
            #main .nav_second ul li.here {
                padding: 0.35em 10px 0.35em 25px;
                border: 0 none;
            }


    #main .quick_links {
        margin: 0 1em 1.5em 0;
        padding: 0 0 0 25px;
    }

            #main .quick_links ul li {
                line-height: 140%;
            }
            
            #main .quick_links ul li:hover a { 
                border-bottom: 0 none; 
            }
            
    #main #ownership {
        margin: 0 1em 1.5em 0;
        padding: 0 0 0 25px;
    }


/*------------------------------CENTER COLUMN------------------------------*/

#main_section * {
    line-height: 140%;
}

#main_section .first {
    margin-top: 0;
}



/* For page of sections with subheads, images, blurbs, lists (e.g., the campus home site main sub-pages) */

.repeating_content_block {
}

.clear_below, .page_block {
    overflow: hidden;
}

.repeating_content_block.clear_below {
    margin-top: 1em;
    margin-bottom: 1em;
}

/*.repeating_content_block.clear_below div.content_box.left._image-box:first-child + * {
    margin-top: 0;
}*/
   

    
    .social_media {
        border: 1px solid #B2B2B2;
    }

        .social_media ul li a:hover,
        .social_media ul li a:focus {
            background: #E6E9F0;
        }


    #center_column .spotlight {
        border: 1px solid #E5C44D;
    }

    #main_section #center_column .spotlight h3 {
        background: none repeat scroll 0 0 #FBF6E5;
        border-bottom: 1px solid #E5C44D;
        color: #002855;
    }
    
    #main_section #center_column .spotlight .caption {
        background-color: #FBF6E5;
        color: #002855;
    }
    
    #center_column caption {
        color: #002855;
    }



/*------------------------------RIGHT COLUMN------------------------------*/

#main_section .column .first {
    margin-top: 0;
}


    
/* STYLES FOR DEFINITION LISTS */

#main_section .column dl {
    margin: 0.5em 0 0;
}

    #main_section .column dt {
        font-size: 0.9em;
        margin: 0;
    }

    #main_section .column dd {
        margin: 0.6em 0;
    }

        #main_section .column dd ul,
        #main_section .column dd p {
            font-size: 1em;
        }

.link_list {
    margin: 0 0 1.5em 0;
    border: 1px solid #DAAA00;
    background: #FFF;
}

    .link_list h3 {
        color: #002666 !important;
        background: #F8EECC;
        font-size: 0.875em !important;
        margin: 0;
        padding: 0.4em 10px !important;
        text-transform: none !important;
    }
    
    .link_list ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
    }
    
        .link_list ul li {
            margin: 0;
            padding: 0;
        }
        
            .link_list ul li a {
                font-size: 0.875em;
                display: block;
                margin: 0;
                padding: 0.3em 10px;
                border-bottom: 0 none !important;
            }
            
            .link_list ul li a:hover,
            .link_list ul li a:focus {
                background: #F4E5B2;
            }

.social_media {
    margin-bottom: 1em;
}

.social_media ul {
    padding: 0.4em 1px 0 !important;
}

.social_media ul li a {
    border: 0px none !important;
    padding: 2px;
}

#main .social_media .more_link {
    margin-top: 0.4em;
}


#main .top_item {
    margin-top: 0;
}



/*------------------------------FOOTER------------------------------*/
  #footer {
  background-color: #022851;
  text-align: center;
  padding: 3rem;
}


.footer-logo {
  display: block;
  margin: 0 auto;
  width: 200px;       /* desktop size */
  max-width: 100%;    /* shrink on small screens */
  height: auto;
  padding: 2rem;
}

/* footer stays in normal flow */


 #footer  p {
  font-size: 1em;
  margin: 1em 0;
  color: #FFF;
 }

#footer  a {
  color: #FFF;
 }


#footer  p {
  font-size: 1em;
  margin: 1em 0;
  color: #FFF;
}

#footer #standard_footer a {
 color: #FFF;
}

html body #footer {
  text-align: center !important;
}

html body #footer a {
  display: inline-block !important;
}

html body #footer .footer-logo {
  display: block !important;
  margin: 0 auto !important;
  width: 200px !important;
  max-width: 100% !important;
  height: auto !important;
  float: none !important;
}

html body #footer p {
  text-align: center !important;
  margin: 8px 0 !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
  float: none !important;
  width: auto !important;
}

@media screen and (max-width: 767px) {
  html body #footer .footer-logo {
    width: 180px !important;
  }

  html body #footer p {
    font-size: 12px !important;
  }
}

@media screen and (max-width: 767px) {
  html, body {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow-x: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .outer_wrap,
  .inner_wrap,
  #main,
  #main_content,
  #footer {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    float: none !important;
  }

  #footer {
    text-align: center !important;
    padding: 12px !important;
  }

  #footer a {
    display: inline-block !important;
  }

  #footer .footer-logo {
    display: block !important;
    margin: 0 auto 12px auto !important;
    width: 180px !important;
    max-width: 90% !important;
    min-width: 0 !important;
    height: auto !important;
    float: none !important;
  }

  #footer p {
    display: block !important;
    width: auto !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 8px auto !important;
    padding: 0 12px !important;
    text-align: center !important;
    font-size: 12px !important;
    line-height: 1.4 !important;
    float: none !important;
    white-space: normal !important;
  }
}



  html, body {
  height: 100%;
  margin: 0;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

#main {
  flex: 1;
  background-color: #FFF;
}

#footer {
  width: 100%;
}
        
        
    /* Override styles for landing pages */
    
    #main .mm_wrapper {
        position: relative;
        height: 0;
        overflow: hidden;
    }
    
    #main .mm_wrapper iframe, 
    #main .mm_wrapper object, 
    #main .mm_wrapper embed {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    
    .fancybox-wrap a {
        border-bottom: 0 none;
    }


/*------------------------------MISCELLANEOUS------------------------------*/

.warning {
    color: #F00;
}

/* ********************************************************************************** */
/*                                                                                    */
/*                           STYLES FOR APPENDAROUND                           */
/*                                                                                    */
/* ********************************************************************************** */

#desktop_title_area_links {
    display: block;
}
#mobile_title_area_links {
    display: none;
}

#desktop_search_etc {
    display: block;
}
#mobile_search_etc {
    display: none;
}

#desktop_ownership {
    display: block;
}
#mobile_ownership {
    display: none;
}

#desktop_sidebar_container {
    display: block;
}
#mobile_sidebar_container {
    display: none;
}
/*#full_left_sidebar_container {
    display: block;
}
#mobile_left_sidebar_container {
    display: none;
}*/


/* Other full width styles */

.menu_button.main, .menu_button.secondary {
    display: none;
}