  /*** GENERAL PAGE STYLES ***/
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&amp;display=swap');

.standard-link-style a,
a.standard-link-style {
    border-bottom: 2px dotted currentColor;
}

.standard-link-style a:hover,
.standard-link-style a:focus,
a.standard-link-style:hover,
a.standard-link-style:focus {
    border-bottom-style: solid;
}

/* Angle icon styles */
.angle-icon {
    width: 40px;
    height: 40px;
    padding: 2px 5px;
    transform: scale(.75);
}

.fa-primary,
.fa-secondary {
    fill: #fff;
}

.fa-secondary {
    opacity: .4;
    transition: opacity .5s ease-in-out;
}

/*** HERO ***/

.pull-right {
    text-align: right;
}
.hero .tagline {
  font-size: 1.25em;
  font-family: "Open Sans","Helvetica Neue",Helvetica,Roboto,Arial,sans-serif !important;
  text-transform: uppercase;
  -ms-flex-item-align: end;
  align-self: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0 .1em;
  width: 100%;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media print, screen and (min-width: 40em) {
	.hero .tagline {
		font-size: 1.4em;
		align-self: center;
	}
}
@media print, screen and (min-width: 64em) {
	.hero .tagline {
		font-size: 1.6em;
	}
}
.readmore {
	background: #6cc24a;
	color: #004433;
	display: inline-block;
	padding: 0 0.5em;
	margin-left: 0.5em;
}

/*** SEARCH ***/

#search {
    background-color: #d0e1c9;
    width: 100%;
    padding: .5rem .5rem 0 .5rem;
}

#search .tabs {
    border: none;
    background: transparent;
    flex-wrap: wrap;
    align-items: center;
	padding: 1.5rem 0 0.5rem;
}
/*
#search .tabs-title {
	flex-basis:33.3333%;	
}
*/

#search .tabs-title>a:focus,
#search .tabs-title>a[aria-selected="true"] {
    background: #005a43;
    color: #e6e6e6;
}

#search .tabs-title>a {
    padding: .6rem .5rem;
    margin: .5rem auto 0 auto;
    display: inline-block;
    height: auto;
    background: transparent;
    color: #222;
    text-transform: uppercase;
    border-radius: 3px;
    font-weight: bold;
    transition: background-color .15s ease-in-out .05s, color .15s ease-in-out;
    font-size: 12px;
}

#search .tabs-panel {
    padding: 1.5rem 3.2%;
}

#search .tabs li>a:not([aria-selected="true"]):hover {
    background-color: rgba(0, 90, 67, .15);
}

#search .tabs-content {
    border: none;
    background: transparent;
}

#search ::placeholder {
    /* color: transparent; */
	color: #757575;
}

#search [type="text"] {
    margin: 0;
    height: 2.5rem;
    padding: .5rem 1rem;
}

#search .input-group-button input.button.secondary {
    font-size: 1rem;
    text-transform: uppercase;
    border: 1px solid #cacaca;
    border-left: none;
}

#search fieldset {
    padding: 0;
    background-color: transparent;
    border: none;
    margin: 0;
	margin-bottom: .3rem;
}

#search label {
    color: #222;
    font-size: 1rem;
}

#search .bottom-links {
    margin: 1.5rem 0 0 0;
    min-height: 2rem;
}

#search .bottom-links a {
    color: #222;
}

#search .bottom-links>div {
    text-align: right;
}

#search a.options-link {
	float: left;
}

#search a.advanced-link,
#search a.options-link {
    position: relative;
}

#search a.options-link::after,
#search a.advanced-link::before {
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	top:5px;
}

#search a.options-link::after {
	content: "\f106";
	position: absolute;
	right: -18px;
}

#search a.options-link.open::after {
    content: "\f107";
}

#search a.advanced-link::before {
    content: "\f107";
    position: absolute;
    left: -18px;
}

#search a.advanced-link.open::before {
    content: "\f106";
}

#search a.advanced-link.open,
#search a.options-link.open {
    border-bottom-style: solid;
}

#search .advanced-panel {
    text-align: right;
    position: relative;
    top: -1.5rem;
}

#search .advanced-panel a {
    margin-left: auto;
    color: #222;
	padding-top:5px;
	display:block;
	width:max-content;
}

#search .advanced-panel.open a {
	animation-name: animateIn;
	animation-duration: 200ms;
	animation-delay: calc(var(--animation-order) * 100ms);
	animation-fill-mode: both;
	animation-timing-function: ease-in-out;
}

#search .advanced-panel.closed a {
    animation-name: animateOut;
	animation-duration: 200ms;
	animation-delay: calc(var(--animation-order-reverse) * 100ms);
	animation-fill-mode: both;
	animation-timing-function: ease-in-out;
}

#search .radio-buttons.open label {
	animation-name: animateIn;
	animation-duration: 200ms;
	animation-delay: calc(var(--animation-order) * 100ms);
	animation-fill-mode: both;
	animation-timing-function: ease-in-out;
}

#search .radio-buttons.closed label {
    animation-name: animateOut;
	animation-duration: 200ms;
	animation-delay: calc(var(--animation-order-reverse) * 100ms);
	animation-fill-mode: both;
	animation-timing-function: ease-in-out;
}

@keyframes animateIn {
  0% {
    opacity: 0;
    transform: translateX(5px);
  }
  
  100% {
    opacity: 1;
  }
}

@keyframes animateOut {
  0% {
    opacity: 1;
  }
	
  100% {
    opacity: 0;
    transform: translateX(5px);
  }
}

/* Customize radio buttons */
.radio-container {
    display: inline-block;
    position: relative;
    padding: 0 7px 0 21px;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.radio-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.radio-circle {
    position: absolute;
    top: 7px;
	left: 0;
    height: 16px;
    width: 16px;
    background-color: #fff;
    border-radius: 50%;
}

.radio-container:hover input~.radio-circle {
    background-color: #eee;
}

.radio-container input:checked~.radio-circle {
    background-color: #005a43;
}

.radio-circle:after {
    content: "";
    position: absolute;
    display: none;
}

.radio-container input:checked~.radio-circle:after {
    display: block;
}

.radio-container .radio-circle:after {
    top: 5px;
    left: 5px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: white;
}

/*** HOURS AND LINKS ***/

.green-box {
	background-color:#004333;
    background-image:
        linear-gradient(90deg, rgba(4, 67, 51, 1) 0%, rgba(4, 67, 51, .85) 7%, rgba(4, 67, 51, .85) 93%, rgba(4, 67, 51, 1) 100%),
        url('/libraries/img/patterns/geometric-vert.jpg');
    padding-bottom: 3rem;
	background-repeat:repeat-y;
	background-size:100%;
}

section.green-box.hero h2 {
	border-bottom:none;
	padding-bottom:0;
	margin:0;
	margin-bottom:.5rem;
}

.green-box,
.green-box h2 {
    color: #fff
}

.green-box h2 {
    font-family: Open Sans, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;
}

.feature-box>div {
    padding: 3rem 4% 0 4%;
    color: #fff;
}

.help-section {
    padding-right: 0
}

#content1 .help-section>.row,
#content1 .hours>.row{
    margin: auto;
}

.help-section a {
    display: block;
    border: 1px solid rgba(136, 136, 136, 0.4);
    border-radius: 12px;
    width: 100%;
    padding: .75rem;
    background: rgba(0, 0, 0, 0.1);
    color: currentColor;
    transition: background-color .15s ease-in-out;
}

.help-section a:hover,
.help-section a:focus {
    color: currentColor;
    background: rgba(0, 0, 0, 0.3);
}

.help-section a .link-title {
    font-weight: bold;
    text-decoration: underline;
}

.help-section a .link-desc {
    display: block;
    font-size: .9em;
}

.help-section>div>div.column:first-child {
    margin-bottom: 1rem;
}

.hours-links {
    text-align: right;
}

.hours-links a {
	position:relative;
	padding-right:58px;
}

.hours-links a,
.hours-links a:hover {
    color: currentColor;
    font-weight: bold;
}

.hours .angle-icon {
    position: absolute;
    top: -8px;
	right: 18px;
    background-color: transparent;
}

.hours td {
	padding: 2px 0;
}

.hours td:first-child {
    padding-right: 5em;
}

.hours td.libcallocation {
    padding-left: .4em;
}

.hours tr.library td {
    padding-left: 0;
    font-weight: bold;
}

.quicklinks ul {
    margin-left: 0;
    list-style-type: none;
}

.quicklinks li {
    margin-bottom: .4rem;
    border: 1px solid rgba(136, 136, 136, 0.4);
}

.quicklinks a {
    color: currentColor;
    ;
    display: block;
    padding: 2px 2px 2px .4em;
    background: rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 100%;
    border-bottom: none !important;
    align-items: center;
    transition: background-color .15s ease-in-out;
}

/* Fallback for grid non-support */
@supports not (display: grid) {
	.quicklinks a { 
		position:relative;
	}
	.quicklinks a .angle-icon {
		position: absolute;
		top: -5px;
	}
}

@supports (display: grid) {
  .quicklinks a {
    display: inline-grid;
    grid-template-columns: auto 35px;
    grid-template-rows: 30px;
  }
}

a:hover .fa-secondary,
a:focus .fa-secondary {
    opacity: .8;
}

.quicklinks a:hover,
.quicklinks a:focus {
    background-color: rgba(0, 0, 0, 0.3);
    color: #fff;
}

/*** NEWS SECTION ***/

.news-section {
    margin: 3rem 0;
    background-image: url('/libraries/img/patterns/multicolor-on-white.jpg');
    background-repeat: repeat-x;
    background-size: cover;
    background-position: 50%;
}

section.hero.news-section h2 {
    margin: 0 auto 3rem auto;
    border-bottom: none;
    padding: 0;
    width: auto;
}



.news-section h2 .squiggly {
    display: inline-block;
    padding-bottom: .6rem;
    background: url('/libraries/img/squiggly-underline.png') no-repeat bottom center;
    background-size: 100%;
    text-transform: uppercase;
    font-weight: 500;
}

div.news-cards .story,
div.news-cubes .story {
    background-color: rgba(255, 255, 255, .5);
}

.more-news-link {
    text-align: right;
	width:100%;
}

.more-news-link a {
	position:relative;
	padding-right:58px;
	color:#005a43;
}

.more-news-link a:hover {
	color:#004333;
}

.more-news-link a,
.more-news-link a:hover {
    font-weight: bold;
}

.more-news-link .angle-icon {
    position: absolute;
    top: -8px;
	right: 18px;
    background-color: transparent;
}

.more-news-link .fa-primary,
.more-news-link .fa-secondary {
    fill: #004333;
}

/*** PROMO SECTION ***/

#content1 .promo-section section.hero.photo.p40 {
    height: auto !important;
    max-height: none !important;
}

/*** LIBRARY ALERT ***/

#library-alert {
	display:none;
}

#library-alert[data-active=true] {
	display:block !important;
	position:absolute;
	width:100%;
	top:6.5rem;
}

#library-alert[data-active=true] .callout {
	background-color:#6cc24a;
	color:#004333;
	font-weight:700;
	text-align:center;
}

#library-alert[data-active=true].red .callout {
	background-color:#900;
	color:#fff;
}

#library-alert[data-active=true] .callout a {
	color:#002018;
	border-bottom: none;
	text-decoration: underline;
}

#library-alert[data-active=true].red .callout a {
	color: #fff;
}

#library-alert[data-active=true] .callout a:hover, #library-alert[data-active=true] .callout a:focus {
	color: #004333;
	border-bottom: none;
	text-decoration: underline;
}
#library-alert[data-active=true].red .callout a:hover, #library-alert[data-active=true].red .callout a:focus {
	color: #c8d7c2;
}

#library-alert[data-active=true] .callout .close-button {
	color:#004333;
}

#library-alert[data-active=true].red .callout .close-button { 
	color:#fff;
}

#library-alert[data-active=true] .callout p {
	margin-bottom:0;
	display:inline-block;
}

/*** MEDIA QUERIES ***/

@media screen and (min-width:32.5em) {
	#search .tabs {
		padding: 0;
	}
	
	#search .tabs-title {
		flex-basis:0;	
	}
	
	#search ::placeholder {
		color: #757575;
	}
	
	#search [type="text"] {
		height: 3.5rem;
	}
	
	.radio-container {
    	padding:0 22px;
		font-size:16px;
	}
	
	#search .radio-buttons.open label {
		animation-name: none;
	}

	#search .radio-buttons.closed label {
		animation-name: none;
		opacity:1;
		left:0;
	}
	
	#search .advanced-panel a {
		display:inline-block;
		margin-left:2rem;
	}
	
	#search .advanced-panel.open a {
		animation-delay: calc(var(--animation-order-reverse) * 100ms);
	}

	#search .advanced-panel.closed a {
		animation-delay: calc(var(--animation-order) * 100ms);
	}
	
	#content1 .hours table, 
	#content1 .hours .hours-links { 
		font-size: 15px;
	}
	
    .news-section {
        margin: 5rem 0;
    }

    .news-section div.news-cubes .story {
        height: 270px;
        width: calc(50% - 3em);
        margin: 1.5em;
    }

    div.news-cards .story,
    div.news-cubes .story {
        background-color: none;
    }
	
	div.news-cubes .story a { border:1px solid #e1e1e1; }
}	

@media screen and (min-width:40em) {
	.green-box {
		background-image:
        linear-gradient(90deg, rgba(4, 67, 51, 1) 0%, rgba(4, 67, 51, .95) 7%, rgba(4, 67, 51, 0.7) 40%, rgba(4, 67, 51, 0.7) 60%, rgba(4, 67, 51, .95) 93%, rgba(4, 67, 51, 1) 100%),
        url('/libraries/img/patterns/geometric.jpg');
		background-repeat:no-repeat;
		background-size:cover;
        padding-bottom: 0;
	}

	#content1 .hours>.row>.column {
		padding-left:0;
		padding-right:0;
	}

    .search-box,
    .feature-box {
        position: relative;
        top: -7rem;
        padding-left: 4%;
        padding-right: 4%
    }

    .search-box {
        position: relative;
    }

    #search {
        border-radius: 10px;
        padding: 1rem .5rem 0 .5rem;
    }

    #search .tabs-title>a {
        font-size: 14px;
        margin: 0 auto;
    }

    .hours td:first-child {
        padding-right: 0;
    }

    .help-section>div>div.column:first-child {
        margin-bottom: 0;
    }
	
	.more-news-link {
		padding-right:1rem;
		padding-top:1rem;
	}
	
	#content1 section.hero .overlay.right .slide-content {
		margin-right: 10%;
		margin-left: 0;
	}

	#content1 section.hero .overlay.right {
		text-align: left;
	}
}

@media screen and (min-width:56.25rem) {
    .feature-box>div {
        padding: 2.5rem 4% 0 0;
        margin-bottom: -2rem;
    }

    #search {
        padding: 1.5rem 2.5rem 0 2.5rem;
    }

    #search .tabs-title>a {
        font-size: 16px;
        padding: .6rem 1rem;
    }

    .help-section>div>div.column:first-child {
        margin-bottom: .4rem;
    }

    .help-section {
        padding-right: 4%;
    }
}

@media screen and (min-width:64rem) {
    #content1 .help-section>.row {
        margin-left: -.9375rem;
    }

    .news-section div.news-cubes .story {
        width: calc(33% - 3em);
    }
	
	#content1 section.hero.photo:first-child article .shadow {
		padding-top: 20px !important;
	}
}

@media print,screen and (min-width:64rem) and (max-height:43.75rem) {
	#content1 section.hero.photo.p60 {
		height:450px;
	}
}