/* Import the main Google font for the portal */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap");
/* custom fonts, woff files placed in client css folder

@font-face {
  font-family: "myfont";
  src: url("awesome-font.woff") format('woff');
}

@font-face {
  font-family: "myfont";
  src: url("awesome-font-bold.woff") format('woff');
  font-weight: bold;
}

@font-face {
  font-family: "myfont";
  src: url("awesome-font-boldoblique.woff") format('woff');
  font-weight: bold;
  font-style: italic;
}

@font-face {
  font-family: "myfont";
  src: url("awesome-font-oblique.woff") format('woff');
  font-style: italic;
}

*/
/* ----------------------- */
/* SASS VARIABLES          */
/* ----------------------- */
/* $header-color:  top header bar background */
/* $nav-bg-color: navigation bar background */
/* $nav-welcome-text: text color for the 'Return to' link and welcome text in header */
/* $nav-text-color: primary nav item text color */
/* $accent-color: color of 'current' item, usually My CME button, used in navigation items */
/* $nav-accent-text-color: text on a highlighted nav item, such as My CME button */
/* $nav-highlight-color: rollover color for a highlighted nav item */
/* color of background on rollover nav items */
/* $nav-text-transform: set to uppercase, or none */
/* $nav-font-size: Overall font size of navigation items */
/* $footer-bg-color: footer bar background */
/* $footer-color: footer text color  */
/* $primary-color: main button color, highlight color in dropdown nav items */
/* $primary-hover: hover color for primary buttons */
/* hedaer-color: main color for h-level headings */
/* $font-fam: primary portal base font */
/* $font-fam-nav: font family for navigation */
/* $font-fam-secondary: some clients use secondary fonts for titles/headers */
/* $tile-list-container: overall width of tile list container */
/* $tile-width: size of a standard square tile */
/* $tile-content-width: tile width -20 for margins for padding out tile text content */
/* $nav-underline: SASS conditional to use underlined nav style, or normal button style */
/* $link-color: general color of body a:href links */
/* primary body styles that set the base font size and white page color */
body {
  background-color: #ffffff;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 1em;
  font-weight: 400;
  font-synthesis: none;
  color: #000000;
  line-height: 1.4em;
  overflow: scroll;
  -webkit-font-smoothing: antialiased;
  font-synthesis: none;
}

/* header bar color */
#header-wrapper {
  background-color: #ffffff;
  box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 999;
  height: 120px;
  border-bottom: 1px solid #ffffff;
}

/* nav bar color */
#header-wrapper-three {
  background-color: #BE0000;
  min-height: 60px;
  position: relative;
  z-index: 998;
}

/* nav container */
#header2 {
  min-height: 50px;
  padding: 0.25em 0 0.25em 0;
}

/* Logo - sometimes this needs adjustment to top value */
#logo {
  display: inline-block;
  position: relative;
  top: 0;
  left: 0;
}

/* this needs adjustment for each customer based on their logo aspect ratio */
#logo img {
  max-width: 275px;
}

/* our base main styles change how lists display, so this resets for the various main content areas in teh portal to make sure they have dots and indentation */
#course1 ol,
#course2 ol,
#course3 ol,
#course4 ol,
#course5 ol,
#course6 ol,
#course7 ol,
#course8 ol,
#course9 ol,
#homepageMainContent ol,
#PageContentDiv ol,
#mainContentDiv ol {
  list-style: decimal !important;
  margin-left: 30px;
}

#course1 ul,
#course2 ul,
#course3 ul,
#course4 ul,
#course5 ul,
#course6 ul,
#course7 ul,
#course8 ul,
#course9 ul,
#homepageMainContent ul,
#PageContentDiv ul,
#mainContentDiv ul {
  list-style: disc !important;
  margin-left: 30px;
}

/* Homepage Banner Image - Constrain to Container Widths - Optional and not used by most customers
#highlightpanel {
    margin-left: auto;
    margin-right: auto;
}

#highlightpanel {
    width: 1400px;
}

@media screen and (max-width: 1680px) {
    #highlightpanel {
        width: 1200px;
    }
}

@media screen and (max-width: 1280px) {
    #highlightpanel {
        width: 960px;
    }
}

@media screen and (max-width: 980px) {
    #highlightpanel {
        width: 90% !important;
    }
}

@media screen and (max-width: 736px) {
    #highlightpanel {
        width: 100% !important;
    }
}*/
/*nav positioning - rarely needs adjustment */
#nav {
  position: relative;
  overflow: hidden;
  top: 0px;
  left: -10px;
  font-size: 0.9em;
  width: 95% !important;
}

#nav ul {
  float: left;
  width: 100%;
  margin-bottom: 0;
}

#nav ul li {
  float: left;
  line-height: 4em;
  padding-left: 0.1em !important;
}

/* based on the SCSS variable above, the nav items can display as bubbles or underlined elements */
/* navigation links and underlined hover transition */
#nav ul li a,
#nav ul li span {
  -moz-transition: border-bottom 0.25s ease-in-out;
  -webkit-transition: border-bottom 0.25s ease-in-out;
  -ms-transition: border-bottom 0.25s ease-in-out;
  transition: border-bottom 0.25s ease-in-out;
  font-family: "Open Sans", Arial, sans-serif;
  text-transform: uppercase;
  font-size: 1.1em;
  color: #ffffff;
  text-decoration: none;
  border-radius: 0;
  padding: 0.5em;
  margin-right: 6px;
  border-bottom: 2px solid #fff;
}

/* navigation hover */
#nav ul li:hover a,
#nav ul li:hover span {
  border-bottom: 3px solid #BE0000;
  color: #BE0000;
  background-color: #ffffff;
}

#nav ul li.active a,
#nav ul li.active span {
  background: #BE0000;
}

/* highlighted nav button, usually the My CME button */
#nav ul li.current a {
  background: #ffbb00;
  color: #ffffff;
}

/* Hover state for already highlighted menu items */
#nav ul li.current a:hover {
  background: #BE0000;
  color: #ffffff;
}

/* the red circle and number next to faculty tasks button in the main nav  */
span.navTaskBadge,
#nav ul li a:hover .navTaskBadge,
#ul li.current a:hover .navTaskBadge {
  display: inline-block;
  position: relative;
  color: #cf0808 !important;
  background: transparent !important;
  padding: 0 !important;
  margin: 0 0 3px 5px !important;
  font-size: 0.85em !important;
  font-weight: 600;
  text-align: center;
}

span.navBadgeNum,
#nav ul li a:hover .navBadgeNum {
  position: relative;
  text-align: center;
  margin: 0 !important;
  padding: 0 !important;
  background-color: #cf0808 !important;
  color: #fff !important;
}

.navTaskBadge,
.navBadgeNum {
  border: 0 !important;
}

/* Positioning adjustment for search icon */
#searchIcon {
  margin-top: -40px !important;
}

@media screen and (max-width: 1280px) {
  #searchIcon {
    margin-top: -80px !important;
  }
}
/* drop down menu highlight colors */
.dropotron li > a:hover,
.dropotron li > span:hover {
  background: #BE0000;
  color: #ffffff;
}

.dropotron li.active > a,
.dropotron li.active > span {
  background: #ffbb00;
  color: #ffffff;
}

/* welcome text and username at top of header */
.welcomeUser {
  color: #000000;
  text-align: right;
}

.welcomeUser a {
  color: #000000 !important;
  font-style: italic;
  text-decoration: none;
  font-size: 1em;
}

/* the mobile nav slide in panel background */
#navPanel {
  background: #d6d6d6;
}

/* footer color and font */
#footer-wrapper {
  background: #363636;
  font-size: 0.85em;
  color: #ffffff;
}

#footer a {
  color: #ffffff;
}

/* general styling of inputs */
input,
select,
textarea {
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 1em;
  color: #696969;
  font-weight: 400;
  line-height: 2em;
  padding-left: 6px;
}

input[type=button]:hover,
input[type=submit]:hover,
input[type=reset]:hover,
button:hover,
.button:hover {
  background: #BE0000;
}

/*  Login Items 2021 */
.flexLoginButton {
  background-color: #525252 !important;
}

/* general style for left alignment */
.left {
  text-align: left;
  font-size: 16px;
  margin-left: 10px;
}

/* basic button style */
.btn {
  display: inline-block;
  margin-bottom: 0;
  margin-right: 6px;
  padding: 8px 14px;
  background: #595959;
  text-decoration: none;
  font-weight: 400;
  font-size: 1em;
  color: #ffffff;
  line-height: 20px;
  /*white-space: nowrap;*/
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15);
}

/* the color of the Details and Reg button. Reg is defaulted to green but can be customized here. */
.det {
  background-color: #BE0000;
}

.det:hover {
  background-color: #BE0000;
}

.reg {
  background-color: #098613;
}

/* override to change the color of the paging number on the activity listing pages */
#pageResultsTopDiv a.active,
#pageResultsBottomDiv a.active {
  background-color: #BE0000;
}

/* Square boxes on My CME page */
.myCategory {
  background-color: #BE0000;
}

.myCategory:hover {
  background-color: #BE0000;
}

/* Accent boxes used on homepage columns, 1px outline with offset title */
.hpBox {
  border: 1px solid #e3e3e3;
  min-height: 80px;
  width: 96%;
  padding: 2%;
  margin-top: 12px;
}

.hpBoxTitle {
  padding: 2px;
  background-color: #ffffff;
  color: #BE0000;
  position: relative;
  top: -18px;
  font-weight: bold;
}

.hpBoxContent {
  position: relative;
  top: -18px;
}

/* for some customers, they use a nicely styled button with icon for searching courses or logging in */
/* see Stanford sign up now button for example */
.homeBtnOuter {
  background-color: #f4f4f4;
  padding: 8px;
  border: 1px solid #d5d5d5;
  border-radius: 4px;
  max-width: 175px;
  overflow: auto;
  cursor: pointer;
  font-size: 14px;
}

.homeBtnArrow {
  color: #BE0000;
  position: relative;
  top: 12px;
  left: 8px;
}

.homeBtnInner {
  background-color: #BE0000;
  padding: 6px;
  border: 1px solid #d5d5d5;
  border-radius: 2px;
  color: #ffffff;
  width: 85%;
  float: left;
  -webkit-transition: 0.25s;
}

.homeBtnInner a:link,
.homeBtnInner a:visited {
  color: #ffffff;
  text-decoration: none;
}

.homeBtnInner:hover {
  background-color: #666666;
}

.homeBtnInner.find:before {
  font-family: FontAwesome;
  content: "\f002";
  margin-right: 5px;
}

.homeBtnInner.login:before {
  font-family: FontAwesome;
  content: "\f007";
  margin-right: 5px;
}

/* main colored buttons */
.btn-primary {
  background: #BE0000;
  text-transform: uppercase;
}

.btn-primary:hover {
  background: #BE0000;
}

.btn-small {
  font-size: 0.85em !important;
  padding: 8px !important;
  line-height: 1 !important;
}

.btn-small:hover {
  background: #BE0000;
}

/* SCSS imprts to fill in various elements that rarely change */
.fancybox-overlay ol {
  list-style: decimal !important;
  margin-left: 30px;
}

.fancybox-overlay ul {
  list-style: disc !important;
  margin-left: 30px;
}

/* homepage table of events, evaluations table, receipts */
#eventsTable, #ReceiptTable, #evalTable {
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  margin-top: 8px;
}

#eventsTable tr, #ReceiptTable tr, #evalTable tr {
  border-bottom: 2px solid #ffffff;
}

#eventsTable td, #ReceiptTable td, #evalTable td {
  padding: 5px;
  text-align: left;
}

#eventsTable thead, #ReceiptTable thead, #evalTable thead {
  background-color: #b0b0b0;
}

#eventsTable thead > tr > th, #ReceiptTable thead > tr > th, #evalTable thead > tr > th {
  text-align: left;
  color: #ffffff;
  padding: 5px;
}

.full-width-container {
  width: 100%;
  max-width: 100%;
  clear: both;
  margin: 0 auto;
}

.full-width-container img {
  width: 100% !important;
}

.agendaDateBtn {
  position: relative;
  font-size: 9pt;
  font-weight: 400;
  background: #bccde1;
  color: #343434;
  margin-right: 2px;
}

.agendaDateBtn:hover {
  background: #e1e2e4;
  color: #343434;
}

.agendaDateBtn a:link, .agendaDateBtn a:visited {
  text-decoration: none;
  color: #343434;
  text-align: center;
  margin-left: 1em;
}

#dateJumpRow {
  margin-bottom: 4px;
}

.facultyblock {
  width: 47%;
  margin-right: 1%;
  margin-bottom: 12px;
  float: left;
  padding: 6px;
  min-height: 100px;
  border: 0px solid rgba(0, 0, 0, 0.05);
}

.grid-item {
  width: 45%;
  padding: 2%;
  font-size: 14px;
}

.grid-item a:link {
  font-weight: bold;
  text-decoration: none;
  margin-bottom: 4px;
  position: relative;
}

.filterarea select {
  float: left;
  width: 28%;
  margin-bottom: 6px;
}

.portalTags {
  list-style: none;
}

.portalTags li {
  display: inline-block !important;
  color: #FFF;
  padding: 2px 8px;
  font-size: 9px;
  text-transform: uppercase;
  border-radius: 16px;
  overflow: hidden;
  display: block;
  margin: 3px 0;
}

/* flexible buttons in various sizes and basic FontAwesome icons for use within the buttons */
.flexButton {
  background-color: #525252;
  border: none;
  color: #ffffff;
  font-size: 0.75em;
  font-weight: 700;
  padding: 0.5em 1em;
  border-radius: 2em;
  line-height: 1;
  font-weight: 400;
}

.flexButtonMedium {
  background-color: #525252;
  border: none;
  color: #ffffff;
  font-size: 0.9em;
  font-weight: 700;
  padding: 0.75em 1.75em;
  border-radius: 2em;
  line-height: 1;
  font-weight: 400;
}

.flexButtonLarge {
  background-color: #525252;
  border: none;
  color: #ffffff;
  font-size: 1em;
  font-weight: 700;
  padding: 1em 2em;
  border-radius: 2em;
  line-height: 1;
  font-weight: 400;
}

.flexButton:hover, .flexButtonMedium:hover, .flexButtonLarge:hover {
  opacity: 0.5;
}

/* basic colors for buttons */
.btnColorBlue {
  background-color: #125775;
}

.btnColorRed {
  background-color: #a30000;
}

.btnColorGreen {
  background-color: #308300;
}

/* define any FontAwesome icons here by duplicating and changing the content code */
.btnIconChevron::after {
  font-family: FontAwesome;
  line-height: 1;
  font-size: 1.25em;
  display: inline-block;
  padding: 0 0 0 10px;
  vertical-align: middle;
  content: "\f054";
}

.btnIconPlus::after {
  font-family: FontAwesome;
  line-height: 1;
  font-size: 1.25em;
  display: inline-block;
  padding: 0 0 0 10px;
  vertical-align: middle;
  content: "\f055";
}

.btnIconAlert::after {
  font-family: FontAwesome;
  line-height: 1;
  font-size: 1.25em;
  display: inline-block;
  padding: 0 0 0 10px;
  vertical-align: middle;
  content: "\f06a";
}

/* make sure to override underlines if used on normal links */
a.flexButton:link, a.flexButtonMedium:link, a.flexButtonLarge:link {
  text-decoration: none;
}

/* padding on the approval box on application.aspx */
#MainContentPlaceHolder_pnlApprove fieldset {
  padding: 10px;
}

/* cloudcme custom login slide-down panel */
#loginpanel {
  margin-bottom: 1em;
  background: -webkit-linear-gradient(#797979 0%, #b5b5b5 14%);
  font-size: 11pt;
  color: #000000;
}

#loginpanel input[type=submit] {
  background-color: #BE0000;
  font-size: 14px;
  line-height: 1;
  width: auto !important;
}

#loginpanel input[type=submit]:hover {
  background-color: #4d4d4d;
}

#loginpanel input[type=text], #loginpanel input[type=password] {
  font-size: 14px;
  line-height: 1;
  padding: 5px;
}

/* cloudcme custom search slide-down panel */
#searchpanel {
  margin-bottom: 1em;
  background: #b5b5b5;
  font-size: 11pt;
  color: #000000;
}

/* google search box */
.gsc-control-cse {
  font-family: Arial, sans-serif !important;
  border-color: #bab5b5 !important;
  background-color: #bab5b5 !important;
}

.gsc-input {
  background-color: transparent !important;
  font-size: 10pt;
}

.cse .gsc-control-cse, .gsc-control-cse {
  background-color: #bab5b5 !important;
  border: 0px solid #fff;
}

.cse .gsc-search-button input.gsc-search-button-v2, input.gsc-search-button-v2 {
  width: auto !important;
  height: auto !important;
  background-color: #B9548F !important;
  background-image: none;
  filter: none;
  position: relative;
  top: 3px;
}

/* reset the rollover on the search button input */
#ctl00_searchField_myBtn_input {
  background: none;
}

/* event detail buttons */
.botMenu {
  overflow: hidden;
  margin: 0 0 10px 0 !important;
  border: 0px solid red;
}

.botMenu li {
  position: relative;
  float: left;
  padding: 0 0 0 1px;
  height: 54px;
  padding: 0 40px;
  margin: 0 4px 0 0;
  cursor: pointer;
  list-style: none !important;
}

.botMenu span {
  background: none;
  color: #ffffff;
  font-size: 16px;
  line-height: 54px;
  opacity: 1;
  text-align: left;
  text-indent: 0;
  width: 100%;
}

.botMenu a {
  text-decoration: none;
}

/* default highlight color for active tab */
.btnHighlight {
  background-color: #e3e3e3 !important;
}

.btnHighlight span {
  color: #000000 !important;
}

/* text color for the link when hovering over a tab */
.botMenu li:hover span {
  color: #000000;
}

.botMenu li:nth-child(1) {
  background-color: #000000;
}

.botMenu li:nth-child(2) {
  background-color: #131313;
}

.botMenu li:nth-child(3) {
  background-color: #272727;
}

.botMenu li:nth-child(4) {
  background-color: #3b3b3b;
}

.botMenu li:nth-child(5) {
  background-color: #4f4f4f;
}

.botMenu li:nth-child(6) {
  background-color: #636363;
}

.botMenu li:nth-child(7) {
  background-color: #777777;
}

.botMenu li:nth-child(8) {
  background-color: #8b8b8b;
}

.botMenu li:nth-child(9) {
  background-color: #9f9f9f;
}

.botMenu li:nth-child(10) {
  background-color: #b3b3b3;
}

.botMenu li:nth-child(11) {
  background-color: #c7c7c7;
}

.botMenu li:hover {
  background-color: #e3e3e3;
}

/*Fancybox3 css control for size of popup */
.fancybox-slide--iframe .fancybox-content {
  width: 90%;
  height: 80%;
  max-width: 90%;
  max-height: 80%;
  margin: 0;
}

.fancybox-slide--video .fancybox-content {
  width: 90%;
  height: 80%;
  max-width: 90%;
  max-height: 80%;
}

/* basic page styles for various elements */
.coursetitle {
  font-size: 1.5em;
  font-weight: 700;
}

a {
  color: #BE0000;
  text-decoration: underline;
}

.listingTitle {
  font-size: 1.35em;
  font-weight: 700;
}

h1 {
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 1.5em;
  margin: 0 0 1em;
  color: #BE0000;
  text-transform: uppercase;
}

h2 {
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 1.35em;
  margin: 0 0 1em;
  color: #BE0000;
  text-transform: uppercase;
}

h3,
h4,
h5 {
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 1.15em;
  margin: 0 0 1em;
  color: #BE0000;
  text-transform: uppercase;
}

/*RadTileList Module CSS*/
.RadTileList .rtlistWrapper {
  max-width: 500px !important;
  width: auto !important;
  margin: auto;
}

.CustomSizeTiles .RadTile.rtileSquare {
  /* SquareTileWidth */
  width: 150px;
}

.CustomSizeTiles .RadTile.rtileWide {
  /* WideTileWidth  */
  width: 150px;
}

.CustomSizeTiles .RadTile.rtileWide,
.CustomSizeTiles .RadTile.rtileSquare {
  /* SquareTileHeight and WideTileHeight */
  width: 150px;
  height: 150px;
}

.CustomSizeTiles.RadTileList .rtlistWrapper {
  /* TileGroupWidth */
  width: 150px;
}

.CustomSizeTiles .RadTile.rtileSquare.BigSquare {
  /* Bigger square sizes */
  width: 150px;
  height: 150px;
}

.rtileTopContent {
  height: 150px !important;
  width: 150px !important;
}

.PeekContent {
  width: 130px !important;
  min-height: 100%;
  color: #ffffff;
  font-size: 1em;
  padding: 5px;
  margin-right: 10px;
  word-wrap: break-word;
}

.rtileBottomContent {
  padding: 5% !important;
  font-size: 1em;
  font-weight: bold;
  background: rgba(0, 0, 0, 0.9) !important;
  color: white;
  width: 90% !important;
  height: auto !important;
  min-height: 35px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* ADJUSTMENTS FOR SPECIFIC SCREEN SIZE BREAKPOINTS /* 

/* large */
@media screen and (max-width: 1280px) {
  #nav ul li {
    line-height: 3em !important;
  }
  #header-wrapper-three {
    display: block;
    height: initial !important;
  }
}
/* medium */
@media screen and (max-width: 980px) {
  #logo {
    top: -20px;
  }
  /* this logo size is important and needs to be confirmed by looking at site on mobile or smallest desktop width */
  #logo img {
    max-width: 260px;
  }
  #header-wrapper-two {
    font-size: 20px;
    text-align: center;
    height: 14px !important;
  }
  #header-wrapper-three {
    display: none;
  }
  .welcomeUser {
    display: none;
  }
  #searchIcon {
    position: relative;
    top: -6px;
  }
  .myCategory {
    width: 140px;
    height: 140px;
  }
  .myCategory .text {
    margin: 20% auto;
    text-align: center;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.2;
    color: #ffffff;
  }
  .myCategory .text img {
    width: 60px;
  }
}
/* small */
@media screen and (max-width: 736px) {
  #header-wrapper-two {
    height: 14px !important;
  }
  .welcomeUser {
    display: none;
  }
  #returntomainsite {
    display: none;
  }
  .botMenu li {
    width: 100%;
    margin-bottom: 1px;
  }
  #eventsTable thead > tr > th:first-child {
    display: none;
  }
  iframe.frevvo-form {
    width: 320px !important;
  }
  #searchIcon {
    position: relative;
    left: -10px;
  }
}
/* super small */
@media screen and (max-width: 320px) {
  .myCategory {
    width: 100px;
    height: 125px;
  }
  .myCategory .text {
    font-size: 12px;
  }
}
/* Various table and syllabus formatting for the AP */
.csstable {
  border-collapse: collapse;
  font-size: 12px;
  margin: 6px 0px 6px 50px;
  text-align: left;
  border: 1px solid #c1c1c1;
  -moz-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.25);
  width: 90%;
}

.csstable .bolded {
  font-weight: bold;
}

.csstable table {
  border-spacing: 2px 2px;
}

.csstable tr {
  border-color: inherit;
  display: table-row;
  vertical-align: inherit;
}

.csstable > tbody > tr {
  border-bottom: 1px solid #d5d5d5;
}

.csstable tr.odd {
  background-color: #f4f4f4;
}

.csstable tbody tr {
  background-color: #fff;
}

.csstable td {
  color: #535353;
  padding: 8px;
}

.csstable thead {
  border-color: inherit;
  display: table-header-group;
  vertical-align: middle;
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#d9d9d9), to(#f4f4f4));
  background: -moz-linear-gradient(-90deg, #d9d9d9, #f4f4f4);
  background-color: #d9d9d9;
}

.csstable th {
  color: #262626;
  font-size: 14px;
  font-weight: normal;
  padding: 8px;
  font-weight: bold;
}

#calTable thead {
  background-image: url("../images/tablesorter_arrow.gif");
  background-repeat: no-repeat;
  background-position: center right;
  cursor: pointer;
}

#accordion, #accordion_s {
  margin: 10px 0 0;
  outline: none;
}

#accordion H2, #accordion_s H2 {
  background: #4d4d4d;
  color: white;
  cursor: pointer;
  font-size: 14px;
  line-height: 16px;
  margin: 0 0 8px 0;
  padding: 5px;
  font-weight: bold;
  border: 0px solid #c1c1c1;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.25);
}

#accordion .content p, #accordion_s .content p {
  margin: 0.5em 0;
  padding: 0 6px 8px 6px;
}

#accordion .sessiontitle, #accordion_s .sessiontitle {
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#d9d9d9), to(#f4f4f4));
  background: -moz-linear-gradient(-90deg, #d9d9d9, #f4f4f4);
  background-color: #d9d9d9;
  color: #000000;
  cursor: pointer;
  font-size: 12px;
  line-height: 16px;
  margin: 0 0 8px 30px;
  padding: 5px;
  font-weight: bold;
  border: 1px solid #c1c1c1;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.25);
}

.listingdate {
  font-weight: bold;
  font-size: 17px;
  padding: 5px;
  background-color: #cecece;
  margin-bottom: 2px;
}

.listingcontent {
  font-size: 14px;
  padding: 5px;
  background-color: #ededed;
  margin-bottom: 2px;
}

.listingfile {
  font-weight: bold;
  font-size: 14px;
  padding: 5px;
  background-color: #ededed;
  margin-top: -2px;
}

.listingfile a:link {
  text-decoration: none;
  color: #315e9c;
}

.listingfile a:link:before {
  content: url("//sharp.cloud-cme.com/images/agenda_pdf.png");
  margin-right: 5px;
}

/* agenda menu buttons */
.daybutton {
  position: relative;
  top: 0px;
  z-index: 2;
  width: 100px;
  height: 40px;
  margin-right: 2px;
  padding: 10px;
  text-align: center;
  background: #494949;
  color: #d6d6d6;
  font-weight: bold;
  font-size: 16px;
  -webkit-border-top-left-radius: 4px;
  -webkit-border-top-right-radius: 4px;
  -moz-border-radius-topleft: 4px;
  -moz-border-radius-topright: 4px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.35);
}

.daybuttonselected {
  position: relative;
  top: 0px;
  z-index: 2;
  width: 100px;
  height: 40px;
  margin-right: 2px;
  padding: 10px;
  text-align: center;
  background: #b1b1b1;
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#46abea), to(#164b6a));
  color: #121212;
  font-weight: bold;
  font-size: 16px;
  -webkit-border-top-left-radius: 4px;
  -webkit-border-top-right-radius: 4px;
  -moz-border-radius-topleft: 4px;
  -moz-border-radius-topright: 4px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.dDate a:link, .dDate a:visited {
  color: #ffffff;
  text-decoration: none;
}

.regBtn {
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #006dcc;
  background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));
  background-image: -webkit-linear-gradient(top, #0088cc, #0044cc);
  background-image: -o-linear-gradient(top, #0088cc, #0044cc);
  background-image: linear-gradient(to bottom, #0088cc, #0044cc);
  background-repeat: repeat-x;
  border-color: #0044cc #0044cc #002a80;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ff0088cc", endColorstr="#ff0044cc", GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  padding: 2px 10px;
  font-size: 11.9px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

.regBtn:hover,
.regBtn:focus,
.regBtn:active,
.regBtn.active,
.regBtn.disabled,
.regBtn[disabled] {
  color: #ffffff;
  background-color: #0033dd;
  border-color: #ffffff;
}

/* ----------------------------------- */
/*   Upcoming Courses iframe styles    */
/* ----------------------------------- */
.compact-date {
  font-weight: bold;
}

.compact-event-title {
  display: block;
}

.eventslist-item {
  padding: 8px;
  margin-bottom: 8px;
  margin-left: -46px;
  background-color: #f9f9f9;
  border: 1px solid #e5e0e0;
  transition: background-color 0.5s ease-in-out;
  transition: border 0.5s ease-in-out;
}

.eventslist-item:hover {
  background-color: #BE0000;
  border: 1px solid #ffbb00;
  color: #ffffff;
}

.eventslist-item:hover a:link {
  color: #ffffff;
}

.events-list > .events {
  list-style-type: none;
}

#applicationNavMenu ul {
  margin-left: 0px;
}

/* ----------------------------------- */
/*     UPENN-STYLE HOMEPAGE TILES      */
/* ----------------------------------- */
.flex {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

@media (max-width: 568px) {
  .flex {
    display: block;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .flex {
    display: block;
  }
}
.dynamicTiles {
  list-style-type: none;
  margin: 0;
  padding-bottom: 1.5%;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-align-items: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-justify-content: center;
  justify-content: center;
  cursor: pointer;
}

@media (max-width: 568px) {
  .dynamicTiles {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
}
.dynamicTiles li {
  position: relative;
  width: 31%;
  margin: 25px 1% 0;
  text-align: center;
  color: #fff;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 30px;
  font-size: 1.875rem;
  line-height: initial;
  box-sizing: border-box;
  list-style: none;
}

@media (max-width: 768px) {
  .dynamicTiles li {
    width: 47%;
  }
}
@media (max-width: 568px) {
  .dynamicTiles li {
    width: 47%;
    margin: 15px 1% 0;
  }
}
.dynamicTiles li:hover .overlay {
  height: 100%;
  background-color: #BE0000;
}

.dynamicTiles li:hover .overlay .text {
  color: #fff;
  font-size: 28px;
  font-size: 1.75rem;
}

@media (max-width: 958px) {
  .dynamicTiles li:hover .overlay .text {
    font-size: 26px;
    font-size: 1.625rem;
  }
}
@media (max-width: 568px) {
  .dynamicTiles li:hover .overlay .text {
    font-size: 22px;
    font-size: 1.375rem;
  }
}
@media (max-width: 320px) {
  .dynamicTiles li:hover .overlay .text {
    font-size: 16px;
    font-size: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .dynamicTiles li:hover .overlay .text {
    line-height: 36px;
    line-height: 2.25rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .dynamicTiles li {
    float: left;
  }
}
.dynamicTiles li .text {
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  position: absolute;
  overflow: hidden;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 0 10px;
  box-sizing: border-box;
}

@media (max-width: 958px) {
  .dynamicTiles li .text {
    font-size: 16px;
    font-size: 1rem;
  }
}
@media (max-width: 568px) {
  .dynamicTiles li .text {
    font-size: 12px;
    font-size: 0.75rem;
    padding: 0 5px;
  }
}
@media (max-width: 320px) {
  .dynamicTiles li .text {
    font-size: 11px;
    font-size: 0.6875rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .dynamicTiles li .text {
    line-height: 24px;
    line-height: 1.5rem;
  }
}
.dynamicTiles li a {
  display: block;
  color: #fff;
}

.dynamicTiles li img {
  display: block;
  width: 100%;
  height: auto;
}

.dynamicTiles li .overlay {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-align-items: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  background-color: #BE0000;
  -ms-transition: 1s;
  -moz-transition: 1s;
  -webkit-transition: 1s;
  transition: 1s;
  opacity: 1;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 25%;
  width: 100%;
  -ms-transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  overflow: hidden;
}

@media (max-width: 930px) {
  .dynamicTiles li .overlay {
    height: 30%;
  }
}
@media (max-width: 768px) {
  .dynamicTiles li .overlay {
    height: 25%;
  }
}
@media (max-width: 568px) {
  .dynamicTiles li .overlay {
    height: 35%;
  }
}
@media (max-width: 414px) {
  .dynamicTiles li .overlay {
    height: 45%;
  }
}
.dynamicTiles li span {
  padding: 0 15px;
  display: block;
}

/* ----------------------------------- */
/*        OLDER FEATURE BLOCK          */
/* ----------------------------------- */
.featureBlock {
  width: 32%;
  float: left;
  margin-right: 1.33%;
}

.featureTxt {
  background-color: #f2f2f2;
  padding: 10px;
  font-size: 0.95em;
  line-height: 1.25em;
  min-height: 160px;
}

.featureTxt h3,
.featureTxt h2 {
  color: #BE0000;
  font-size: 1.1em;
  padding: 0;
  margin: 6px 0;
}

.featureImage img {
  width: 100%;
  min-height: 250px;
  max-height: 250px;
  object-fit: cover;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .featureImage img {
    height: 100%;
  }
}
.featureBtn {
  background-color: #BE0000;
  color: #ffffff;
  text-align: center;
  font-size: 1.25em;
  font-weight: bold;
  padding: 10px 0;
  cursor: pointer;
}

.featureBtn a:link,
.featureBtn a:visited,
.featureBtn a:hover {
  text-decoration: none;
  color: #ffffff;
}

.featureBtn:hover {
  background-color: #BE0000;
}

.marginBottom {
  margin-bottom: 3px;
}

/* A plain sidebox for the homepage with no outline */
.sideBox {
  width: 100%;
}

.sideHeading {
  background-color: #333333;
  color: #ffffff;
  text-transform: uppercase;
  padding: 10px;
  font-size: 18px;
}

.sideContent {
  background-color: #f2f2f2;
  padding: 10px;
  font-size: 18px;
  line-height: 1.33;
}

.sideContent a,
.sideContent a:link,
.sideContent a:visited {
  text-decoration: none;
  color: #3168a6;
  font-weight: 600;
  cursor: pointer;
}

.sideContent ol,
.sideContent ul {
  list-style: disc !important;
  margin-left: 30px;
}