.bcm-shell_light {
    width: 100%;
    background-color: #f7f5f2;
}

.bcm-shell_medium {
    width: 100%;
    background-color: #e0dad6;
    padding: 30px 0;
    position: relative;
    overflow: hidden;
}

/*
.site-panel-shape-bbc--gold-navy:before {
    border-bottom-color: #e4a01b;
    height: 200px;
    top: -60px;
    right: -400px;
    background-color: #e0dad6;
}
*/

.bcm-wrapper_wide {
    width: 100%;
    max-width: 1170px;
    margin: auto;
}

@media (max-width:1170px) {
    .site-panel__explore-chevron {
        visibility: hidden;
    }
}

/* opacity settings and transitions for jeff's disappearing blue band */
.metachevron:after {
    opacity: 1;
    transition: opacity 0.5s ease;
}

.metachevron.short:after {
    opacity: 0;
    transition: opacity 0.5s ease;
}


/* player */
.playercontainer {
	position: relative;
	width: 100%;
	background-color: #4D4D4F;
    padding-bottom: 56.25%;
    background-repeat: no-repeat;
    background-size: cover;
}

#player {
	position: absolute;
	top: 0;
}

/*****/
/* These rules added to work around changes to the CSS made to global stolaf site styling */
button.rmp-button, button.rmp-color-button, button.rmp-control-bar-hint, button.rmp-time-elapsed-text, button.rmp-duration-text, button.rmp-hint, button.rmp-in-module-hint, button.rmp-quality-hd, button.rmp-related-skip-preview-up-next, button.rmp-transcripts-current-item:hover, button.rmp-volume-indicator, button.rmp-volume-hint, button.rmp-related-skip-preview-title {
    color: #d89614 !important;
}

button.rmp-overlay-level-active {
    background-color: rgba(33, 33, 33, 0.85) !important;
}

.rmp-overlay-fcc-settings-area .rmp-select {
    background-image: none;
}
/*******/

.rmp-title {
    font-family: Calluna Sans, -apple-system, BlinkMacSystemFont, Segoe UI, Segoe UI Emoji, Cantarell, Verdana, sans-serif;
    color: #e3a025;
    text-transform: uppercase;
    font-variant-numeric: lining-nums;
}

#playeroverlay,
#restrictoverlay {
	color: #e5e2db;
	width: 100%;
    min-height: 100%;
	text-align: center;
    padding: 40px 20px;
    position: absolute;
    top: 0;
	pointer-events: none;
    font-family: Calluna Sans, sans-serif;

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#playermsg {
    /*width: 80%;*/
}

#playertimer {
    width: 60%;
}

#restrictoverlay {
    pointer-events: all;
    z-index: 90;
}

#playermsg p a, 
#restrictmsg p a {
    border-bottom: 1px solid;
}

#restrictmsg .red {
    color: #e8797c;
}

#restrictmsg input {
    width: 35%;
    min-width: 150px;
    margin: 20px 10px 10px 10px;
    padding: 10px;
    border: 1px solid #242121;
    border-radius: 4px;
    font-family: Calluna Sans, sans-serif;
}

#restrictmsg input.email {
    width: 90%;
}

#restrictmsg a#tokensubmit {
    font-size: 18px;
    padding: 10px 20px;
    border-radius: 4px;
}

@media (max-width:600px) {
    #playermsg p,
    #restrictmsg p {
        font-size: 11px;
    }
}

/* player page */
.playerbanner {
    width: 100%;
    padding: 20px 0;
}

.playerbanner img {
    display: block;
    margin: auto;
}

.metawrapper {
    position: relative;
    z-index: 3;
    background-color: #ffffff;
}

.metabar {
    width: 100%;
    text-align: center;
    font-size: 16px;
    line-height: 1.44;
    background-color: #e0dad6; /*hides gap at end w/jeff spacing fix*/
    
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;  

    -webkit-flex-flow: column;
    flex-flow: column;
}

@media (min-width:600px) {
    .metabar {
        -webkit-flex-flow: row wrap;
        flex-flow: row wrap;
    }
}

.metabutton, 
.metabarlink {
    flex-grow: 1;
    padding: 10px;
    font-family: Calluna Sans, sans-serif;
}

.metabutton {
    font-weight: 700;
    text-transform: uppercase;
    background-color: #f7f5f2;
    cursor: pointer;
}

.metabutton.active {
    background-color: #e3a025;
    color: #ffffff;
}

.metabutton:hover {
    color: #E4A01B;
    background-color: #242121;
}

.metabarlink {
    background-color: #e0dad6;
}

@media (min-width:1170px) {
    .metabarlink {
        flex: 0 1 21%; /* jeff spacing fix */
    }
}

/* overrides for a.cta so it plays nice in menu bar */
.metabarlink a.cta {
    font-size: 16px;
}
.metabarlink a.cta:after {
    top: 9px;
}
.metabarlink a.cta:after {
    line-height: 0;
}
/* end a.cta overrides */

.metaouter {
    position: relative;
    padding: 20px;
}

.metaouter div.metalogo {
    float: right;
    margin-left: 30px;
    margin-bottom: 20px;
}

@media (max-width:600px) {
    .metaouter div.metalogo {
        width: 100%;
        margin: auto;
        margin-bottom: 20px;
    }
}

.metaouter div.metalogo img {
    max-width: 100%;
    height: auto;
}

.metaouter > .metainner:not(:first-child) {
    display: none;
}

.metainner h4 {
    font-style: italic;
}

.metahead {
    margin-bottom: 24px;
}

.metaitem {
    margin-bottom:24px;
}

.metaitem h6, 
.metaitem p {
    margin-bottom:4px;
}

/* meta listings */
.metainner .performer-title {
    font-style: italic;
}

.metafooter {
    width: 100%;
    position: relative;
    font-family: Calluna Sans, sans-serif;
    
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;  

    -webkit-flex-flow: column;
    -ms-flex-flow: column;
    flex-flow: column;
}

.metasponsors,
.metalinks {
    flex: 5;
    text-align: center;
    font-style: italic;
    background-color: #f7f5f2;
    padding: 0 10px;
	position: relative;
	overflow: hidden;
    
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;  

    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
}

.metasponsors {
    background-color: #ffffff;
    font-style: normal;
}

.metashares {
    flex: 0 1 21%;
    text-align: center;
    font-size: 14px;
    line-height: 1.44;
    min-height: 95px;
    background-color: #e0dad6;
    position: relative;
    
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;  

    -webkit-flex-flow: row;
    -ms-flex-flow: row;
    flex-flow: row;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
}

@media (min-width:600px) {
    .metafooter {
        -webkit-flex-flow: row;
        flex-flow: row;
    }
	.metalinks {
        -webkit-justify-content: flex-start;
        -ms-justify-content: flex-start;
        justify-content: flex-start;
		padding-right: 40px;
	}
	.metalinks:after {
		content: "";
		position: absolute;
		right: 0;
		top: 0;
		border-right: 100px solid #e0dad6;
		border-top: 300px solid transparent;
	}
    .metashares {
        -webkit-justify-content: flex-start;
        -ms-justify-content: flex-start;
        justify-content: flex-start;
    }
}

.metasponsor {
    min-width: 220px;
    flex: 2 1 15%;
    margin: 20px 10px 0;
}

.metasponsor img {
    padding-bottom: 10px;
}

.metasponsor p {
    margin-bottom: 0.5em;
}

.metalink {
    margin: 8px;
    cursor: pointer;
    min-width: 22%;
    flex: 0 1 auto;
}

.metalink a,
.metalink a:hover,
.metalink a:visited {
    border-bottom: none;
    color: inherit;
}

.metashares span {
    position: absolute;
    top: 7px;
    left: 20px;
    text-transform: uppercase;
}

.metafooter i.icon, 
.metafooter i.fa {
    font-size: 28px;
    color: #6d3a5b;
    margin: 10px 15px;
    line-height: 1.4;
    cursor: pointer;
}

.metafloor {
    width: 100%;
    position: relative;
    font-family: Calluna Sans, sans-serif;    
    background-color: #bebbbb;
    padding: 30px 20px 20px;
    display: none;
}

.metafloor_content i.fa {
    color: #6d3a5b;
    margin: 10px 15px;
    line-height: 2.0;
}

.metafloor_content input {
    width: calc(100% - 60px);
    font-size: 14px;
    font-family: Calluna Sans, sans-serif;
    padding: 3px 5px;
}

.metafloor span.closelink {
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px 10px 0 0;
    font-size: 12px;
    color: #6d3a5b;
    cursor: pointer;
}

.metafloor span.closelink:hover {
    color: #a5578b;
}

.metainner#meta_athstats iframe {
    width: 100%;
    min-height: 600px;
    max-height: 1000px;
    overflow-x: hidden;
    overflow-y: scroll;
}

.metabutton[data-for="meta_athstats"].livebutton, 
.metabutton[data-for="meta_interact"],
.metabutton[data-for="meta_livechat"].livebutton {
    color: #e20b0e;
}


/* live chat */
#chatshell {
    background-color: #efefef;
    padding: 2px 4px;
    min-height: 200px;
    max-height: 45vh;
    overflow-y: scroll;
}
#chathead {
    display: flex;
    align-items: flex-end;
}
#chathead div#chattitle {
    flex-grow: 1;
}
#chathead div#chatstats {
    padding: 4px 16px;
    font-size: 14px;
}
#chatshell div.templaterow {
    display: none;
}
#chatshell .interact-msg {
    position: relative;
    width: 100%;
    margin: 2px 0;
	display: flex;
    justify-content: space-between;
}
#chatshell .interact-msg div.msgcontent {
	margin: 0;
    padding: 0 4px;
    flex-grow: 1;
}
#chatshell .interact-msg .msgcontent .sendername {
    display: inline-block;
    padding: 2px 8px;
    background-color: #8cd3d8;
    border-radius: 6px;
    font-size: 14px;
    font-family: "Calluna Sans",-apple-system,BlinkMacSystemFont,"Segoe UI","Segoe UI Emoji",Cantarell,Verdana,sans-serif;
}
#chatshell .interact-msg .msgcontent.modmsg .sendername {
    background-color: #e4a11b;
}
#chatshell .interact-msg .msgcontent .msgtext {
    /* placeholder for text formatting if needed */
}
#chatshell .interact-msg .msgcontent .msgtext span.msgat {
    display: inline-block;
    padding: 1px 6px;
    background-color: #d0e0d8;
    border-radius: 6px;
    font-size: 16px;
}
#chatshell .interact-msg div.msgcomment {
    padding: 2px 8px;
    background-color: #f6c65c;
    border-radius: 6px;
    font-size: 14px;
    min-width: 20%;
    max-width: 40%;
    flex-grow: 0;
    display: none;
}
#chatinput {
    background-color: #efefef;
    padding: 2px 4px;
    display: flex;
}
#chatinput input#chat_msgtext {
    flex-grow: 1
}
#chatinput div#chat_send {
    height: 45px;
    padding: 6px 12px 0;
    border-radius: 4px;
    background-color: #dedede;
}
#chatinput div#chat_return {
    height: 45px;
    padding: 12px;
    font-size: 14px;
    border-radius: 4px;
    font-family: "Calluna Sans",-apple-system,BlinkMacSystemFont,"Segoe UI","Segoe UI Emoji",Cantarell,Verdana,sans-serif;
}
#chatinput div#chat_return.success {
    background-color: #A7F0BF;
}
#chatinput div#chat_return.failure {
    background-color: #F8B8BA;
}
#chatinput div#chat_send:hover {
    color: #E4A01B;
}
#chathead .click,
#chatshell .click, 
#chatinput .click {
    text-align: center;
    font-size: 24px;
    cursor: pointer;
}


/* featured streams */
.bcm-streamfeature {
	position: relative;
	height: 100% !important;
    margin-bottom: 50px;
}

.swiper-container .slider-navigation .swiper-button-next,
.swiper-container .slider-navigation .swiper-button-prev {
    background: #e4a01b;
    bottom: 0;
    color: #242121;
    font-size: 24px;
    font-weight: bold;
    height: 35px;
    top: auto;
    width: 30px;
}
.swiper-container .slider-navigation .swiper-button-next::before,
.swiper-container .slider-navigation .swiper-button-prev::before {
  position: relative;
  left: 2px;
  top: 6px;
}
.swiper-container .slider-navigation .swiper-button-next:hover,
.swiper-container .slider-navigation .swiper-button-prev:hover {
  background: #ca870d;
  background: var(--color-gold-dark, #ca870d);
  color: #fff;
  color: var(--color-white, #fff);
}
.swiper-container .slider-navigation .swiper-button-prev {
  left: auto;
  right: 32px;
}
.swiper-container .slider-navigation .swiper-button-next {
  right: 0;
}
.swiper-container .slider-navigation .swiper-button-disabled {
  opacity: 0.8;
}

.bcm-streamfeature .streamfeatureitem {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.bcm-streamfeature .streamfeatureitem img {
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
}

.bcm-streamfeature .streamfeaturebar {
	position: absolute;
	bottom: 0;
    left: 0;
	width: 68%;
	padding: 6px 20px;
	color: #ffffff;
    z-index: 2;
}

.bcm-streamfeature .streamfeaturebar {
	position: absolute;
	bottom: 0;
    left: 0;
	width: calc(100% - 70px);
	padding: 6px 20px;
	color: #ffffff;
    z-index: 2;
}

.bcm-streamfeature .streamfeaturebar h6 {
    padding-top: 10px;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.bcm-streamfeature .streamfeaturebar p {
    margin-bottom: 3px;
    font-size: 20px;
    font-weight: normal;
    color: #ffffff;
}

@media (max-width:600px) {
    .bcm-streamfeature .streamfeaturebar {
        position: relative;
        width: 100%;
        background-color: #242121;
    }

    .bcm-streamfeature .streamfeatureitem:before, 
    .bcm-streamfeature .streamfeatureitem:after {
        display: none;
    }
    
    .bcm-streamfeature .slider-navigation .swiper-button-prev, 
    .bcm-streamfeature .slider-navigation .swiper-button-next {
        top: 22px !important;
        bottom: auto !important;
    }
    
}

.bcm-streamfeature .streamfeatureitem:before {
    background: none;
    border-right: 1200px solid transparent;
    border-bottom: 180px solid #233746;
    opacity: 0.85;
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    bottom: 0;
    right: -145px;
    z-index: 1;
}

.bcm-streamfeature .streamfeatureitem:after {
    background: none;
    border-left: 380px solid transparent;
    border-bottom: 140px solid #242121;
    opacity: 1;
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    bottom: 0;
    left: 62%;
    z-index: 1;
}


/** SPECIAL COLLECTION PAGE **/
.bcm-specialcoll_logo {
    float: right;
    margin-left: 30px;
    margin-bottom: 30px;
}

.bcm-specialcoll_banner {
    width: 100%;
    margin: 0 0 30px;
}

.bcm-specialcoll_banner img {
    width: 100%;
}


/** BEGIN EXCERPTABLE **/
/* stream collections */

.bcm-streamcollection {
    position: relative;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: column;
    -ms-flex-flow: column;
    flex-flow: column;
    width: 100%;
    margin-bottom: 30px;
}

.bcm-streamcollection .bcm-streamitem {
    position: relative;
    margin-bottom: 30px;
    min-width: 0;
    padding: 0;
    width: 100%;
}

.bcm-streamitem_upper {
    position: relative;
    background-color: #f7f5f2;
    cursor: pointer;
}

.bcm-streamitem_upper:hover {
    background-color: #e0dad6;
}

i.bcm-streamitem_more {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 10px;
    background-color: #e0dad6;
}

i.bcm-streamitem_more:hover {
    color: #6d3a5b;
    font-weight: 600;
}

.bcm-streamitem_lower {
    display: none;
}

@media (min-width:500px) {
    .bcm-streamitem_upper {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
    }
}

.bcm-streamitem_img {
    background: 50% no-repeat;
    background-size: cover;
    overflow: hidden;
    padding-bottom: 0;
    position: relative;
    min-height: 180px;
    width: 100%;
}

@media (min-width:500px) {
    .bcm-streamitem_img {
        padding-bottom: 0;
        height: 135px;
        min-height: 135px;
        /*width: 240px;*/
        max-width: 240px;
    }
}

@media (min-width:960px) {
    .bcm-streamitem_img {
        padding-bottom: 0;
        height:135px;
        min-height: 135px;
        width: 240px;
        min-width: 240px;
    }
}

.bcm-streamcollection--today .bcm-streamitem_img,
.bcm-streamcollection--today .bcm-streamitem_header--date,
.bcm-streamcollection--today .bcm-streamitem_more,
.bcm-streamcollection:not(.bcm-streamcollection--today) i.bcm-streamitem_icon,
.bcm-streamcollection:not(.bcm-streamcollection--today) .bcm-streamitem_header--status,
.bcm-streamcollection:not(.bcm-streamcollection--today) .bcm-streamitem_action,
.bcm-streamcollection.bcm-streamcollection--today .bcm-streamitem--live .bcm-streamitem_header--time,
.bcm-streamcollection .bcm-streamitem--archived .bcm-streamitem_header--time {
    display: none;
}

.bcm-streamcollection--today .bcm-streamitem_content:before {
    background: none;
    border-right: 0;
    border-left: 600px solid transparent;
    border-bottom: 300px solid transparent; /*#e1dbd7*/
    opacity: 0.85;
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    bottom: 0;
    left: 65%;
}

.bcm-streamcollection--today .bcm-streamitem--live h6, 
.bcm-streamcollection--today .bcm-streamitem--live i.bcm-streamitem_icon {
    color: #b30d55;
}

.bcm-streamcollection--today .bcm-streamitem--live .bcm-streamitem_content:before {
    border-bottom-color: #b30d55;
}

.bcm-streamcollection--today .bcm-streamitem--archived .bcm-streamitem_content:before {
    border-bottom-color: #00837F;
}

.bcm-streamitem_content {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: column;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-align-items: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
    padding: 20px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.bcm-streamitem_content i.bcm-streamitem_icon {
    display: none;
    flex: none;
    font-size: 40px;
    margin-right: 15px;
}
.bcm-streamitem_content div {
    flex: 1 1 auto;
}
.bcm-streamitem_content .bcm-streamitem_action {
    flex: none;
    height: auto;
    z-index: 2;
    margin: 20px 0 0;
    width: 100%;
}

/* disinct button colors on non-live */
.bcm-streamitem--upcoming .bcm-streamitem_action.btn,
.bcm-streamitem--waiting .bcm-streamitem_action.btn,
.bcm-streamitem--notfound .bcm-streamitem_action.btn {
    background-color: #e0dad6;
}
.bcm-streamitem--upcoming .bcm-streamitem_action.btn:hover,
.bcm-streamitem--waiting .bcm-streamitem_action.btn:hover,
.bcm-streamitem--notfound .bcm-streamitem_action.btn:hover {
    color: #e4a01b;
}
.bcm-streamitem--upcoming:hover .bcm-streamitem_action.btn,
.bcm-streamitem--waiting:hover .bcm-streamitem_action.btn,
.bcm-streamitem--notfound:hover .bcm-streamitem_action.btn {
    background-color: #f7f5f2;
}

@media (min-width:500px) {
    .bcm-streamitem_content {
        -webkit-flex-flow: row nowrap;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
    }    

    .bcm-streamitem_content i.bcm-streamitem_icon {
        display: inline-block;
    }
    
    .bcm-streamitem_content .bcm-streamitem_action {
        width: auto;
        min-width: 165px;
        margin: 0 0 0 20px;
    }
}

.bcm-streamitem_info h6 {
    margin-bottom: 2px;
}

.bcm-streamitem_title {
    font-weight: 600;
}

.bcm-streamitem_subtitle {
    font-style: italic;
}

.bcm-streamitem_info p {
    margin-bottom: 0;
}

.bcm-streamitem_lower .bcm-streamitem_content {
    position: relative;
    background-color: #e0dad6;
    text-align: center;
    font-style: italic;
    padding: 0 20px;
    
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
}

@media(min-width:500px) {
	.bcm-streamitem_lower .bcm-streamitem_content {
        -webkit-justify-content: flex-start;
        -ms-justify-content: flex-start;
        justify-content: flex-start;
	}
}

.bcm-streamitem_lower .metalink {
    margin: 8px;
    cursor: pointer;
    min-width: 22%;
    flex: 0 1 auto;
}

.bcm-streamitem_lower .metalink a,
.bcm-streamitem_lower .metalink a:hover,
.bcm-streamitem_lower .metalink a:visited {
    border-bottom: none;
    color: inherit;
}

.bcm-streamitem_lower .metalink i.fa {
    font-size: 28px;
    color: #6d3a5b;
    margin: 10px 15px;
    line-height: 1.4;
    cursor: pointer;
}

.bcm-streamcollection_search,
.bcm-streamcollection_filter {
	position: relative;
	width: 100%;
	min-height: 40px;
	margin-bottom: 20px;
}

.bcm-streamcollection_filter select {
    width: 100%;
}

.bcm-streamcollection_search input,
.bcm-streamcollection_filter input {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 45px;
	padding: 6px 10px 6px 40px;
    margin-bottom: 20px;
	border-radius: 4px;
	border: 1px solid #d3d3d3;
}

.bcm-streamcollection_search i {
	position: absolute;
	top: 13px;
	left: 13px;
	z-index: 6;
}

.bcm-streamcollection_filter select option:disabled {
	/*color: #d3d3d3;*/
}

.bcm-streamcollection_nav {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
	margin-bottom: 30px;
}

.bcm-streamcollection_nav .bcm-loadmore {
    flex: 6 1 auto;
    padding: 10px;
    cursor: pointer;
	margin-right: 10px;
}

.bcm-streamcollection_nav .bcm-gototop {
    flex: 1 1 auto;
    padding: 10px;
    cursor: pointer;
    background-color: #e0dad6;
}

/** END EXCERPTABLE **/


/** FORMS **/
/* responsive form buttons; from formsmain.css */
@media (max-width:600px) {
    .gform_wrapper .gform_button, 
    .gform_wrapper input[type=submit] {
        font-size: 1em;
        width: 100%;
        margin: 0 0 16px;
    }
}

.gfield textarea {
    max-width: 100%;
}

/* fix for colliding radio buttons in sto+gf styles */
.gform_wrapper ul li {
    line-height: 2.1;
}

/* set buttons min-width for jeff */
.gform_button {
    min-width: 260px;
}

/* misc forms stuff */
.returns {
	padding: 10px;
	text-align: center;
	display: none;
}

.success {
	background-color: #CFC;
	border: 1px dashed #393;
}

.failure {
	background-color: #FCC !important;
	border: 1px dashed #933 !important;
}

/* oddballs */
p.indent {
    padding-left: 20px;
}

/* adjustments to make staff profile fit in sidebar template */
.c-faculty__info {
    padding-left: 20px !important;
    padding-right: 20px !important;
}

.c-faculty__img {
    min-height: 220px;
}

/* sidebar title to top for link use */
.sidebar__title-site {
    z-index: 19;
    cursor: pointer;
}