/* -----------------------------------------------
bepress IR local stylesheet.
Author:   David Stienstra
Version:  2022
PLEASE SAVE THIS FILE LOCALLY!
----------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap');
/* ---------------- Meta Elements ---------------- */
    /* --- Meta styles and background --- */
body {
    font: normal 13px/1.5 'Montserrat', sans-serif;  /* should be medium except when fitting into a fixed container */
    background: #f6f6f6 url(assets/md5images/47886075b62452e1c4b7c86528b97a3e.png) repeat-x left top;
}
/* ---------------- Header ---------------- */
#ucf #header {
    position: relative;  /* needed for logo positioning */
  height: auto !important; /* !important overrides mbl styling */
}
#ucf #banner_image {
    display: block; /* removes descender of inline element */
    width: 980px; /* not necessary if image is sized correctly */
    height: auto !important;  /* avoids warping improperly sized header image / SUP-19994 */
}
    /* --- Logo --- */
#ucf #logo_image,
#ucf #header a#logo_link {
    display: none;
}
#ucf #header a#banner_link:focus img,
#ucf #header a#logo_link:focus img {
  outline: 1px dashed #000000;
}
/* ---------------- Navigation ---------------- */
#ucf #navigation,
#ucf #navigation #tabs {
    height: 36px;
    overflow: hidden; /* have seen issues with tabs extending below nav container */
    white-space: nowrap;
}
#ucf #navigation #tabs,
#ucf #navigation #tabs ul,
#ucf #navigation #tabs ul li {
    padding: 0;
    margin: 0;
}
/* Flexbox Navigation July 2018 */
#ucf #navigation #tabs,
#ucf #navigation #tabs ul {
    display: flex;
    justify-content: flex-start; /* "flex-start" for left-aligned tabs, change to "flex-end" for right-aligned tabs, "center" for centered */
    width: 100%;
}
#ucf #navigation #tabs a {
    font: bold 15px 'Montserrat', sans-serif;
    display: block;
    width: auto !important; /* fixes "my account" not fitting in container on page load */
    height: 36px;
    line-height: 36px;
    color: #2973a9;
    transition: 0.3s ease-in-out;
    background-color: transparent;
    padding: 0 11px; /* with arial bold, this fits */
    margin: 0;
    border: 0;
    border-right: 1px solid #f6f6f6;
    /* float: left; Not needed? Using flexbox now */
}
#ucf #navigation #tabs a:hover,
#ucf #navigation #tabs a:active,
#ucf #navigation #tabs a:focus {
    color: #000000;
    background-color: #f6f6f6;
    text-decoration: underline;
}
#ucf #navigation #tabs li:first-child a { padding-left: 15px; }
#ucf #navigation #tabs li:last-child a {
    border-right: none;
}
/* ---------------- Sidebar ---------------- */
#ucf #sidebar {
  padding-top: 0;
}
#ucf #sidebar h2 {
    font: bold 15px/1.5 'Montserrat', sans-serif;
    color: #000000;
    background: transparent;
    padding: 0;
    margin: 0 15px;
    border: none;
    border-bottom: 2px solid #ffc90a !important;
    text-indent: 0;
}
#ucf #sidebar a {
    font: 500 13px 'Montserrat', sans-serif;
    color: #525252;
    text-decoration: none;
}
#ucf #sidebar ul li {
  padding: 0 0 4px;
}
#ucf #sidebar a:hover,
#ucf #sidebar a:active,
#ucf #sidebar a:focus {
    color: #000000;
    text-decoration: underline;
}
#ucf #sidebar #sidebar-search label {
    font: 500 13px 'Montserrat', sans-serif;
    color: #000000;
}
#ucf #sidebar #sidebar-search {
    margin-top: 8px;
    padding-left: 15px;
}
#ucf #sidebar #sidebar-search span.border { background: transparent; }
#ucf #sidebar ul#side-notify {
  padding-top: 0;
}
.searchbutton { cursor: pointer; } /* best practice, should move to ir-layout.css */

/* Social Media button rules BAG 6/5/23 */
#ucf #sidebar #sb-custom-middle #social_media_icons {
	text-align: left; 
	display: flex; 
	justify-content: start; 
	padding-top: 1.5em; 
	padding-bottom: 1.3em; 
}
#ucf #sidebar #sb-custom-middle #social_media_icons img {
	padding-left: 15px;
}


/* ---------------- Main Content ---------------- */
#ucf #wrapper { /* for full-length sidebar content background/elements */
    background: url(assets/md5images/9ec7156b6e59aeebdff394b2e7af6e3c.gif) repeat-y left top;
    margin: 25px 0;
}
/*#ucf #content { padding-top: 16px; }*/
    /* --- Breadcrumbs --- */
#ucf #main.text div.crumbs a:link,
#ucf #main.text div.crumbs a:visited {
    text-decoration: none;
    color: #2973a9;
}
#ucf #main.text div.crumbs a:hover,
#ucf #main.text div.crumbs a:active,
#ucf #main.text div.crumbs a:focus {
    text-decoration: underline;
    color: #000000;
}
#ucf #dcn-home > #homepage-intro { 
  margin: 0 15px 0 0; }
#ucf #homepage-intro h2,
#ucf #main.text h2 {
  font-weight: bold;
}
 /* adds space under full-width main-content image */
#ucf #home-page-banner { margin-bottom: 16px; }
    /* --- Headers --- */
#ucf #dcn-home > h2 {
    font: bold 21px 'Montserrat', sans-serif;
}
h3 {
    margin: 0;
    text-decoration: underline; }
/* FF 55 takes parent element's color a text-deoration-color (black, usually) */
#dcn-home #cover-browse h3 { color: #2973a9; }
#ucf #dcn-home #cover-browse h3 a {
    font: 400 17px/1.6 'Montserrat', sans-serif;
    text-decoration: none;
}
#ucf #dcn-home #cover-browse h3 a:hover,
#ucf #dcn-home #cover-browse h3 a:focus,
#ucf #dcn-home #cover-browse h3 a:active {
    text-decoration: underline;
}
    /* --- Links --- */
#ucf #main.text a:link,
#ucf #main.text a:visited {
    color: #2973a9; /* declared for #network-icon text */
}
#ucf #main.text a:hover,
#ucf #main.text a:active,
#ucf #main.text a:focus {
    color: #000000;
    text-decoration: underline;
}
    /* PotD / Top DL widgets */
#ucf #dcn-home .box.aag h2,
#ucf #dcn-home .box.potd h2 {
    width: 267px;
    margin: 0;
    font: bold 16px 'Montserrat', sans-serif;
    border-bottom: 1px solid #d3d3d3;
}
#ucf #main.text .box a:link,
#ucf #main.text .box a:visited {
    font: bold 13px 'Montserrat', sans-serif;
    text-decoration: none;
    border-bottom: 1px solid #d3d3d3;
    background: none;
}
#ucf #main.text .box a:hover,
#ucf #main.text .box a:active,
#ucf #main.text .box a:focus {
    text-decoration: underline;
}
    /* article-level text // default values 12px/13px */
#alpha .element p, #custom-fields .element p { font-size: 13px; }
#alpha .element h4, #custom-fields .element h4 { font-size: 14px; }
#ucf #series-home .pdf,
#ucf #series-home .native,
#ucf #series-home .metadata-only,
#ucf #series-home .external {
  line-height: 2.3em;
}
/* homepage buttons */
#ucf #main.text #homebuttons {
  width: 100%;
  margin: 0;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
#ucf #main.text #homebuttons a {
  height: 140px;
  width: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-right: 20px;
  margin-bottom: 20px;
  text-decoration: none;
  border-radius: 10px;
  border-color: transparent;
  box-shadow: 0 0 0 2px #ffc90a;
  font: 500 14px 'Montserrat', sans-serif;
}
#ucf #main.text #homebuttons a:focus {
  border-bottom: none;
}
#ucf #main.text #homebuttons a p {
  text-decoration: none;
  text-align: center;
  margin: 0;
  color: #000;
}
#ucf #main.text #homebuttons a img {
  margin: 0 auto;
}
#ucf #main.text #homebuttons a:active,
#ucf #main.text #homebuttons a:hover,
#ucf #main.text #homebuttons a:focus {
  box-shadow: 0 0 0 5px #ffc90a;
}
#ucf #dcn-home .newCarousel {
  margin: 10px 0;
}

#ucf #main.text #rights_statements.element img {max-width:150px; height:auto; padding-top:4px;}
#ucf #main.text #rights_statements.element h4 {margin-top:0px; color:#000;}
#ucf #main.text #rights_statements.element {padding-left:4px; margin-top:-10px;}

#ucf #main.text ul li ul {margin-top:.5em; margin-bottom:0;}

/* Diverse Family rules //BRG/1/12/17// */
#ucf .divfam {
    display: initial;
    list-style: none;
}
#ucf .divfam { 
    display: inline-block; 
    width: 19%; 
    vertical-align: top; 
    list-style: none;
}

/* intro text columns BAG 8/14/25 */
#ucf #series-home .intro .threecolumn,
#ucf #series-home .intro .fourcolumn {
    display: initial;
    list-style: none;
}
#ucf #series-home .intro .threecolumn { 
    display: inline-block; 
    width: 30%; 
    vertical-align: top; 
    list-style: none;
}

#ucf #series-home .intro .fourcolumn { 
    display: inline-block; 
    width: 19%; 
    vertical-align: top; 
    list-style: none;
} 
/* Patents rules //BAG/12/19/22 */
#ucf #main.text .patent-cols {
	display:block; 
	width:49%; 
	float:left; 
	margin-top:1em;
}
/* Central Florida Future rules //BAG/06/29/23*/
#ucf #main.text .florida-future-cols {
	display:block; 
	width:25%; 
	float:left; 
	margin-top:1em;
}

/* CIRS rules //BAG/12/19/22 */
#ucf #main.text #series-home #cirs_annotation p,
#ucf #main.text #series-home #cirs_browsefields p {margin-left:59px}

/* fix display of TOC fields //BAG/06/06/23 */
#ucf #main.text #alpha #toc.element p {text-align:inherit}
#ucf #main.text #alpha #toc.element h4 {text-align:inherit}
#ucf #main.text #alpha #toc.element {padding:inherit;}


/* ---------------- Footer ---------------- */
#ucf #footer,
#ucf #bepress a {
    height: 76px;
    background-color: #fff; }
#ucf #footer p,
#ucf #footer p a {
    font: 500 12px/2 'Montserrat', sans-serif;
    color: #2973a9;
    text-decoration: none;
}
#ucf #footer p:first-of-type { padding-top: 14px }
#ucf #footer p a:hover,
#ucf #footer p a:active,
#ucf #footer p a:focus {
    text-decoration: underline; }
#bepress a:focus {
      outline: 1px dashed #000000;
}
#ucf {
    background: url(assets/md5images/9d65e7caa958a05a421e4ac97f459f0e.gif) repeat-x left bottom;
}
#ucf #content {
    min-height: calc(100vh - 245px);  /* 310px varies by site. calculated by summing all fixed heights (header, navigation, footer, fixed margins between these elements) */
}
/* Search pages */
.legacy #ucf #wrapper:after {
	content: none; /* search pages */
}
.legacy #ucf #wrapper {
  margin-bottom: 0;
}
.legacy #ucf #content {
  margin-bottom: 25px;
}
/* ---------------- Miscellaneous fixes ---------------- */
    /* --- Advanced Search --- */
.legacy #ucf #wrapper {  background-image: none; }
/* Browse Authors accessibility fix- CSFR-2648 */
#ucf #main.text .authorbrowser p.letters a:hover,
#ucf #main.text .authorbrowser p.letters a:focus {
    background: url(/assets/azMe.jpg) bottom center no-repeat;
    color: #fff;
}

/* ---------------- Mobile ---------------- */
/*fixes bullet underline for Browse Research and Scholarship links*/
.mbl #main #cover-browse h3 { text-decoration: none; }
.mbl #dcn-home .box.aag span,
.mbl #dcn-home .box.potd span {
    display: block;
}
.mbl #ucf #main.text #dcn-home .box.aag h2,
.mbl #ucf #main.text #dcn-home .box.potd h2 {
  width: 100%;
}
header#mobile-nav {
    font-size: 0;
    line-height: 0; }
.mbl #ucf #header,
.mbl #ucf #header a#banner_link img,
.mbl #ucf #navigation {
    width: 100% !important;
}
.mbl #ucf #header #logo_image {
    display: none;
}
.mbl #ucf #sidebar h2 {
  margin: 0;
}
