/*
 * @file
 * global.styles
 *
 * Styles you add here will load for all device sizes, they are "global", as
 * opposed to "responsive" styles, which only load for a given breakpoint (media
 * query) that you set in theme settings. See the README for more details.
 *
 *
 * How to use this file:
 * --------------------
 *
 * There are many empty selectors and some basic styles to act as a guide.
 * Nothing is set in stone and you can change anything - even delete all of it
 * and start with your own clean slate.
 *
 * See global.base also which includes normalize.css and some additional
 * helper classes and base styles.
 */

/* =============================================================================
 *   Base
 * ========================================================================== */

/*
 * To preserve theme settings never apply font properties to the HTML element.
 * This is critically important if you are using the Responsive JavaScript
 * feature as this relies on being able to set a pseudo font family on the HTML
 * element. If you need to set default font properties of any kind use the BODY
 * element as these can be overridden using font theme settings.
 */
html {
  background: #fff;
}
body {
  font-family: "Merriweather", "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: 95%;
	line-height: 1.8em;
}
#content,
#content p {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #000000;
	line-height: 2em;
}
#content td p {
	margin-left: 0;
}
/* =============================================================================
 *   HTML Elements
 * ========================================================================== */
.not-front #block-block-8.top-page-banner-article h1.page-title {
  font-size: 2em;
}
h2 {
	color: #7D121D;
  font-size: 2em;
  line-height: 1.4em;
	padding: 10px 0;
}
h3 {
	color: #093B55;
}
.front #block-system-main h2.pane-title {
	color: #093B55;
	font-size: 2.41071em;
	border-bottom: 1.5px solid #808080;
	margin-bottom: 20px;
	padding: 10px 0;
}
.front #main-content {
	margin: 0;
}
.front #block-system-main h2.pane-title, #block-block-3 h2 {
	color: #093B55;
	font-size: 2.410714286em;
	border-bottom: 1.5px solid #808080;
	margin-bottom: 20px;
	padding: 10px 0px;
}
.front #block-system-main .region .panel-pane {
	margin-bottom: 0px;
}
.recently-reviewed-block .block-content {overflow: auto;}
.visually-hidden:not(:focus):not(:active) {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
pre,
code,
tt,
samp,
kbd,
var {
  font-family: Consolas, Monaco, 'Courier New', Courier, monospace, sans-serif;
}
a, p, #search-toggle label {
	color: #3d3d3d;
	line-height: 1.25;
}
.rtecenter img {
	padding-right: 5px;
	padding-left: 5px;
}
hr {
  border: 0;
  height: 1px;
  background-color: #808080;
}
/* =============================================================================
 *   Wrappers
 * ========================================================================== */

.region-leaderboard .region-inner,
#header,
#menu-bar,
#primary-menu-bar,
#breadcrumb-row,
.region-secondary-content,
#messages,
#columns,
#footer {
    max-width: 1140px;
    margin: 0px auto;
}
/*
 * Wraps all header elements - branding and .region-header
 */
#header {
    border-bottom: 1.5px solid #808080;
}
/*
 * Full Width Wrappers
 * These are used in the optional page--full-width-wrappers.tpl.php template.
 * All have internal .container classes. In the full width wrapper template the
 * .container classes set the width or max-width - you can style this but never
 * add any width/margin/padding/borders etc to .container
 */

/*
 * Wraps the leaderboard
 */
#leaderboard-wrapper {}
#leaderboard-wrapper .container {}
.region-leaderboard {
    border-bottom: 1.5px solid #808080;
}
#block-system-user-menu .block-inner {
    padding: 10px 0;
}
#block-system-user-menu .block-inner ul {
    text-align: right;
    list-style-type:none;
    padding: 0px;
    margin: 0px;
}
#block-system-user-menu .block-inner ul li {
    display: inline;
    margin-right: 10px;
}

#block-system-user-menu .block-inner ul li a.active {
  color: #E68025;
}
.title-twitter,
.title-facebook,
.title-youtube,
.title-instagram,
.title-home {
    display: none;
}
.icons-leaderboard,
.menu-217 {
    font-size: 1.8em;
    padding: 0px;
    line-height: 0.5;
}
nav#block-system-user-menu {
    margin-bottom: 0px;
}

/*
 * Wraps the header
 */
#header-wrapper {
  /* Debug styles, is this working */
  background: rgba(255, 192, 203, 0.5);
}
/*
 * Footer wrapper
 */
#footer-wrapper {
  /* Debug styles, is this working? */
  background: rgba(255, 192, 203, 0.5);
}
#footer-wrapper .container {}


/* =============================================================================
 *   Branding
 * ========================================================================== */

/*
 * Wraps all the branding elements, logo, name and slogan
 */

/*
 * Logo
 */
#logo {
  padding: 0;
}

#logo img {
  vertical-align: bottom;
}

/*
 * Wrapper for the site name and slogan
 */
#name-and-slogan {}

/*
 * Site name (h1)
 */
#site-name {
  margin: 0;
}

#site-name a {}

#site-name a:link,
#site-name a:visited {
  text-decoration: none;
}

#site-name a:hover,
#site-name a:focus {
  text-decoration: underline;
}

/*
 * Site slogan (h2)
 */
#site-slogan {
  margin: 0;
}


/* =============================================================================
 *   Page content header
 * ========================================================================== */

/*
 * Main content header wraps the page title, tabs and actions links
 */
#main-content-header {}

/*
 * The main page title (h1)
 */
#page-title {
  color: #7D121D;

  font-size: 2.41071em;
  border-bottom: 1.5px solid #808080;
  margin-bottom: 20px;
  padding: 10px 0px;
}


/* =============================================================================
 *   Misc Global Styles
 * ========================================================================== */

/*
 * Feed icons
 */
.feed-icon {}

/*
 * Aggregator feed source
 */
#aggregator .feed-source .feed-icon {
  display: inline;
  float: none;
  margin-right: 10px;
}

.feed-details dt,
.feed-details dd {
  display: inline;
  margin: 0;
}

/*
 * Generic styles for the more link
 */
.more-link {}
.more-link, .all-featured-titles, .all-coming-soon {
	background-color: #093B55;
	padding: 12px 5px;
	text-align: center;
	display: block;
}

.more-link.more-link-news {
	margin-top: 7px;
}

.more-link a, .all-featured-titles a, .all-coming-soon a{
	font-family: 'Quicksand';
	font-size: 1.375em;
	font-weight: 700;
	text-decoration: none;
	color: #ffffff;
}
.more-link a:hover, .all-featured-titles a:hover, .all-coming-soon a:hover {color: #ffffff;text-decoration: underline;}
.more-link a:focus, .all-featured-titles a:focus, .all-coming-soon a:focus {color: #ffffff;outline-color: #ffffff;}
.more-link a:active, .all-featured-titles a:active, .all-coming-soon a:active {color: #ffffff;text-decoration: underline;}

.sign-up {
	border: 2px solid #093B55;
	padding: 12px 5px;
	text-align: center;
	display: block;
	margin-top: 7px;
}
.sign-up a{
	font-family: 'Quicksand';
	font-size: 1.375em;
	font-weight: 700;
	text-decoration: none;
	color: #093B55;
}
/*
 * Generic styles for links. See the ul.links declaration in node and comment
 * stylesheets
 */
ul.links {
  margin: 0;
  padding: 0;
}

ul.links.inline {
  display: block;
}

ul.links li {
  display: inline;
  list-style: none;
  padding: 0 10px 0 0;
}

li a.active {
	color: #E68025;
}
/*
 * Search results are an ordered list so reset the margin
 */
.search-results {
  margin: 0;
  padding: 0;
}

/*
 * Attribution message and link
 */
.attribution {
  display: block;
  opacity: 0.65;
  padding: 1em 0;
  text-align: center;
}

.attribution a {
  text-decoration: none;
  color: inherit;
}

.attribution a:hover,
.attribution a:focus {
  text-decoration: underline;
}


/* =============================================================================
 *   Regions
 * ========================================================================== */
/*
 * Second sidebar
 */
.region-sidebar-second .region-inner {
	margin: 0;
	margin-top: 24%;
	border-top: 1.5px solid #808080;
	margin-left: 10%;
}
@media only screen and (max-width:768px) {
  .region-sidebar-second .region-inner {
    margin: 2rem;
  }
}

#block-menu-block-1 {
	margin: 0;
}

.region-sidebar-second .block {
	border-bottom: 1.5px solid #808080;
	padding: 0.6em;
}

.sidebar .block ul.menu li a {
	color: #093B55;
	font-family: "Quicksand";
	font-size: 130%;
	font-weight: 900;
	text-decoration: none;
}
.sidebar .block ul.menu li a:hover,
.sidebar .block ul.menu li a.active {
	color: #7D121D;
}

.sidebar .block ul.menu li {
	margin: 0px;
	padding: 5px 5px 5px 0px;
	border-bottom: 1px dotted #808080;
}
.sidebar .block ul.menu li:last-of-type {
	border: none;
}
/*
 * Tertiary content
 */
.region-tertiary-content {}

/*
 * Footer region
 */
.region-footer {}

#footer {
	padding-top: 10px;
	margin-top: 40px;
}

#block-block-3 {
    border-bottom: 1.5px solid #808080;
}
#block-block-3 .block-inner {
	margin: 0;
}
.front .library-supporter h3, #block-block-3 h3 {
  margin: 0 0 1rem 0;
	text-align: center;
}

/* Calendar */
.calendar-calendar th.days {color: #000000;}
.calendar-calendar td {color: #000000;}
.calendar-calendar td.empty {color: #000000;}
.calendar-calendar td .inner div.day a {color: #093B55;}
.calendar-calendar td .inner div.day a:hover {color: #7d121d;}
.calendar-calendar .month-view .full td.multi-day div.monthview, .calendar-calendar .week-view .full td.multi-day div.weekview, .calendar-calendar .day-view .full td.multi-day div.dayview,
.calendar-calendar .month-view .full td.multi-day .inner .monthview .continues, .calendar-calendar .month-view .full td.multi-day .inner .monthview .cutoff, .calendar-calendar .week-view .full td.multi-day .inner .weekview .continues, .calendar-calendar .week-view .full td.multi-day .inner .weekview .cutoff {
  background: #093B55;
}
.calendar-calendar .month-view .full td.multi-day div.monthview a,
.calendar-calendar .week-view .full td.multi-day div.weekview a,
.calendar-calendar .day-view .full td.multi-day div.dayview a {
  color: #ffffff;
}
.calendar-calendar .month-view .full td.multi-day div.monthview a:focus,
.calendar-calendar .week-view .full td.multi-day div.weekview a:focus,
.calendar-calendar .day-view .full td.multi-day div.dayview a:focus {
  outline-color: #ffffff;
}

/* =============================================================================
 *   Links
 * ========================================================================== */

a, ul.menu li a {
    text-decoration: underline;
    color: #093B55;
}
.views-more-link {
	border-bottom: 1px dotted #0082BC;
}

a:hover, ul.menu li a:hover {
  color: #7d121d;
}
a:focus, ul.menu li a:focus {outline: 2px dashed #7d121d;}
a:active, ul.menu li a:active {color: #7d121d;}


/* =============================================================================
 *   Primary, Secondary and Menu Bar region menus
 * ========================================================================== */
.nav {
    clear: both;
    margin: 10px 0;
}
.nav ul,
.nav ul.menu {
    margin: 0;
    padding: 0;
    margin-top: -4px;
}
.nav li,
.nav ul.menu li {
  display: inline;
  float: left;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav li a,
.nav ul.menu li a {
    display: block;
    white-space: nowrap;
    padding: 0 10px;
    line-height: .9em;
}
.nav .block {
  margin-bottom: 0;
}
.not-front #menu-bar {
	border-bottom: 1.5px solid #808080;
}
#menu-bar ul.nice-menu-down > li {
	border: none;
	background-color: transparent;
}
.menu-depth-2 {
	z-index: 10;
}
#menu-bar ul.nice-menu-down li.menuparent {
	background: none;
	height: 1.7em;
}
#primary-menu-bar .menu-wrapper a.active, #menu-bar .block-nice-menus a.active {
	color: #7D121D;
}
/* main nav section */
.nav ul.menu li a {
	text-decoration: none;
}
#primary-menu-bar .menu-wrapper a, #menu-bar .block-nice-menus a:active {
	color: #7D121D;
}
#primary-menu-bar .menu-wrapper a, #menu-bar .block-nice-menus a:hover {
	color: #7D121D;
}
#menu-bar .menu-wrapper, #primary-menu-bar .menu-wrapper {
	padding: 0.500em 0 0.438em  0;
}
/* =============================================================================
 *   Superfish
 * ========================================================================== */

ul.sf-menu {
  margin-bottom: 0;
}

ul.sf-menu a {
  border-left: 0;
  border-top: 0;
  padding: 0 10px;
  text-decoration: none;
  height: 2.5em;
  line-height: 2.5em;
}

ul.sf-menu a:link,
ul.sf-menu a:visited {}

ul.sf-menu li {}

ul.sf-menu li:hover,
ul.sf-menu li.sfHover {
  outline: 0;
}

ul.sf-menu a {}

ul.sf-menu a:focus,
ul.sf-menu a:hover,
ul.sf-menu a:active {
  outline: 0;
}

/*
 * Superfish blocks
 */
.block-superfish {}

.block-superfish .block-inner .content {}

.block-superfish ul {
  margin: 0 !important;
  padding: 0 !important;
}

.block-superfish ul ul {}

.block-superfish ul ul ul {}

.block-superfish ul ul ul ul {}

.block-superfish li {
  margin: 0 !important;
  padding: 0 !important;
}

/*
 * Vertical style
 */
.sf-vertical {
  width: 100%;
}

.sf-vertical li {
  width: 100%;
}

.sf-vertical li.last {}

.sf-vertical li:hover ul,
.sf-vertical li.sfHover ul {
  left: 100%;
  top: 0;
  margin: 0;
  padding: 0;
}

.sf-vertical li a {
  padding: 0 10px;
}

/*
 * Navbar style
 */
.sf-navbar {
  padding-bottom: 0 !important;
}

/*
 * Sensible padding for the default style
 */
.sf-menu.sf-style-default a {
  padding: 0 10px;
}




/* =============================================================================
 *   Menu Toggles
 * ========================================================================== */

.at-mt .at-menu-toggle,
.at-mt .at-menu-toggle ul,
.at-mt .at-menu-toggle ul.menu {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
}

.at-mt .at-menu-toggle-button {
  margin: 0;
}

.at-mt .at-menu-toggle ul a {
  padding: 0 10px;
  white-space: nowrap;
}
/* =============================================================================
 *   Menus, usually blocks
 * ========================================================================== */
ul.menu {
  padding-left: 15px;
}

ul.menu ul {
  padding-left: 15px;
}

ul.menu ul ul {}

ul.menu ul ul ul {}

ul.menu li {
  margin: 0;
}

.sidebar .block ul.menu {
	padding: 0px;
	margin: 0px;
}
.sidebar .block ul.menu li li {
	border: none;
	margin-left: 20px;
	list-style: initial;
	padding: 5px 5px 5px 0;
}
ul.menu li.collapsed,
ul.menu li.expanded,
ul.menu li.leaf {
	list-style: none none;
}

ul.menu li a.leaf {
    font-family: "Quicksand";
    font-size: 1.2em;
}

ul.menu li a {}
ul.menu li a:link,
ul.menu li a:visited {}

ul.menu li a:active,
ul.menu li a.active {}

ul.menu li a:hover,
ul.menu li a:focus {}

ul.menu li.active a,
ul.menu li.active-trail a {}

ul.menu li.first,
ul.menu li.last {}

/* If li.content exists it's a problem, so reset the padding */
.block .menu li.content {
  padding: 0;
}
.responsive-menus.responsified .responsive-menus-simple {
	background: #093B55;
	border-radius: 0;
}
.responsive-menus.responsified .toggler {
	background: #0A83C2;
}
.responsive-menus.responsified span.toggler {
	background: #808080;
	border-radius: 0px;
	box-shadow: 2px 2px 2px #000;
	font-size: 1.35em;
	text-align: right;
}
.responsive-menus.responsified .responsive-menus-simple ul li ul,
.responsive-menus.responsified .responsive-menus-simple li ul {
	display: none !important;
}
.responsive-menus.responsified .responsive-menus-simple li ul.active {
	display: block !important;
}
.responsive-menus.responsified .responsive-menus-simple ul li.menuparent {
	border-bottom: 1px solid #bbb;
	border-bottom: 1px solid rgba(255,255,255,0.5);
}
.responsive-menus.responsified .responsive-menus-simple ul li.menuparent:last-of-type {
	border:none;
}
.responsive-menus.responsified .responsive-menus-simple ul li.menuparent > a {
	border: none;
	display: inline-block;
}
.responsive-menus.responsified .responsive-menus-simple ul li.menuparent > i {
	font-size: 1.5em;
	display: inline-block;
	color: #FFF;
	cursor: pointer;
}

#menu-bar {
  clear: both;
	border-top: 1px solid #999999;
}
#menu-bar nav > div > .menu > .menu-item {position: relative;}
#menu-bar .menu {
  font-size: 1.2em;
  font-weight: 900;
  margin: 0;
  padding: 0;
  text-align: left; /* LTR */
}
[dir="rtl"] #menu-bar .menu {
  text-align: right;
}
#menu-bar .menu li {
  float: none;
  list-style: none;
  margin: 0;
  padding: 0;
  height: auto;
	width: 100%;
	position: relative;
}
#menu-bar .menu a {
  color: #093B55;
  float: none;
  display: block;
  text-decoration: none;
	padding: 10px;
	margin-top: 0;
}
[dir="rtl"] #menu-bar .menu a {
	padding: 10px;
}
#menu-bar .menu .menu a {
	text-align: left;
}
#menu-bar .menu a:hover,
#menu-bar .menu a:focus {
	color: #fff;
	background: #093B55;
}
#menu-bar .menu a:active {
  background: #b3b3b3;
  background: rgba(255, 255, 255, 1);
}
#menu-bar ul.menu > li.menu-item--active-trail > a,
#menu-bar .menu li.menu-item a.is-active {
  border-bottom: none;
	color: #fff;
	background: #093B55;
}
#menu-bar .menu a.home-link {
	font-size: 2em;
	color: #999999;
}
#menu-bar .menu a.home-link:hover {color: #ffffff;}
/* ---------- Primary Menu Toggle ----------- */
/* Hide the toggle by default. */
.menu-toggle,
.menu-toggle-target {
  display: none;
}
/* Unhide it for the primary menu. */
#menu-bar .menu-toggle-target {
  display: inherit;
  position: fixed;
  top: 0;
}
.mm__toggle {
  display: none;
  appearance: none;
  background-color: #808080;
  border: 0;
  color: #fff;
  transition:background-color 0.2s ease-in-out;
	border: 0;
	width: 100%;
	text-align: left;
	font-weight: 900;
	float: none;
	font-size: 1em;
	text-decoration: none;
	text-shadow: 0 1px #000;
	padding: 0.9em 10px 0.9em 10px;
	z-index: 1000;
}
.mm__toggle:hover {
  background-color: #093B55;
  text-decoration: underline;
}
.mm__toggle:focus {
  outline: 2px dashed #3d3d3d;
  outline-offset: 2px;
}
.mm__toggle:hover:focus {outline: none;}
@media only screen and (max-width:768px) {
  .mm__toggle {display: block;}
}
.mm__toggle:after {
  content:"";
  /* background: url($core-icons + '/ffffff/hamburger.svg') no-repeat; */
  background-size: contain;
  width: 22px;
  height: 22px;
  display: inline-block;
  position: absolute;
  right: 10px; /* LTR */
}
[dir="rtl"] .mm__toggle:after {
	right: initial;
	left: 10px;
}
#mm {display: block;}
@media only screen and (max-width:768px) {
	.mm__toggle {display: block;}
	#mm {
		display: none;
	}
}

/**
 * Media queries for primary menu.
 */
@media all and (min-width: 461px) and (max-width: 900px) {
	#menu-bar .menu-item:nth-child(3n) {
		margin-right: -5px; /* LTR */
	}
	[dir="rtl"] #menu-bar .menu-item:nth-child(3n) {
		margin-left: -5px;
		margin-right: 0;
	}
}
@media all and (max-width: 768px) {
	#menu-bar > ul.menu {
		background: #f6f6f2;
	}
	#menu-bar > ul.menu > li > a {
		border-top: 2px solid #999;
		border-color: rgba(255, 255, 255, 0.7);
  }
  #menu-bar ul ul {display: none;}
}
@media all and (min-width: 851px) {
	#menu-bar .menu {
		margin: 0 10px;
		padding: 0;
		text-align: center;
		background: #fff;
	}
	#menu-bar .menu-item,
	body:not(:target) #menu-bar .menu-item {
		float: left;  /*LTR*/
		margin-right: 5px;  /*LTR */
		padding: 0;
		/*display: inline-block;*/
		height: auto;
		overflow: visible;
	}
	[dir="rtl"] #menu-bar .menu-item,
	[dir="rtl"] body:not(:target) #menu-bar .menu-item {
		float: right;
		margin-left: 5px;
		margin-right: 0;
	}
	body:not(:target) #menu-bar .menu-toggle {
		display: none;
	}
}
@media all and (min-width: 901px) {
	#menu-bar .block-menu .menu {
		font-size: 1.3em;
		margin: 0;
		padding: 0 15px;
	}
	#menu-bar .menu-item,
	body:not(:target) #menu-bar .menu-item {
		float: left;  /*LTR*/
		list-style: none;
		padding: 0 1px;
		margin: 0 1px;
		width: auto;
		height: auto;
		overflow: visible;
	}
	[dir="rtl"] #menu-bar .menu-item,
	[dir="rtl"] body:not(:target) #menu-bar .menu-item {
		float: right;
	}
}
/** Drop down menu styling **/
#menu-bar ul li ul.menu li,
#menu-bar ul li ul.menu li a {
  float: none;
  font-size: 0.8em;
}
#menu-bar ul li ul li a:hover {
  border-bottom: 1px solid#7d121d;
}
#menu-bar ul li ul a {
  width: 250px;
	padding: 0.4em 0.8em;
	border-bottom: 1px solid #ededed !important;
}
#menu-bar ul li ul li:last-of-type a {
	border-bottom: none !important;
}
#menu-bar > ul > li {
  position: relative;
}
#menu-bar ul li ul.menu {
  padding: 0;
  position: absolute;
  left: -10000px;
}
#menu-bar ul li:hover ul.menu,
#menu-bar ul li:focus-within ul.menu {
  left: auto;
	z-index: 1000;
	top: 100%;
  background: #fff;
  border: 1px solid #999999;
}
#menu-bar ul li:hover ul.menu:before,
#menu-bar ul li:focus-within ul.menu:before {
  position: absolute;
  top: -1em;
  left: 0;
  content: '';
  display: block;
  width: 100%;
  height: 2em;
	background: transparent;
	z-index: -1;
}
#menu-bar ul li ul li {
  float: none;
  margin: 0;
  padding: 0;
}
@media all and (min-width: 769px) and (max-width: 900px) {
  #menu-bar .menu {
    margin: 0 5px;
    padding: 0;
    text-align: center;
  }
  #menu-bar .menu li,
  body:not(:target) #menu-bar .menu li {
    float: left; /* LTR */
    margin-right: 5px; /* LTR */
    padding: 0;
    display: inline-block;
    width: auto;
    height: auto;
    overflow: visible;
  }
  [dir="rtl"] #menu-bar .menu li,
  [dir="rtl"] body:not(:target) #menu-bar .menu li {
    float: right;
    margin-left: 5px;
    margin-right: 0;
  }
  #menu-bar .menu li:nth-child(3n) {
    margin-right: -5px; /* LTR */
  }
  [dir="rtl"] #menu-bar .menu li:nth-child(3n) {
    margin-left: -5px;
    margin-right: 0;
  }
  #menu-bar .menu a {
    float: none;
    display: block;
    padding: 0.9em 5px;
  }
	#menu-bar .menu a.home-link {
		padding: 0.2em 5px;
	}
  body:not(:target) #menu-bar .menu-toggle {
    display: none;
  }
}

@media all and (min-width: 901px) {
  #menu-bar nav .menu {
    font-size: 1.2em;
    font-weight: 900;
    margin: 0;
    padding: 0 15px;
  }
  #menu-bar .menu li,
  body:not(:target) #menu-bar .menu li {
    float: left; /* LTR */
    list-style: none;
    padding: 0 1px;
    margin: 0 1px;
    width: auto;
    height: auto;
    overflow: visible;
  }
  #menu-bar .menu li:last-of-type,
  body:not(:target) #menu-bar .menu li:last-of-type {
    margin-right: 0;
  }
  [dir="rtl"] #menu-bar .menu li,
  [dir="rtl"] body:not(:target) #menu-bar .menu li {
    float: right;
  }
  #menu-bar .menu a {
    float: left; /* LTR */
    padding: 0.7em 0.8em;
    margin-bottom: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
	#menu-bar .menu a.home-link {
    padding: 0.18em 0.2em;
	}
  [dir="rtl"] #menu-bar .menu a {
    float: right;
    padding: 0.7em 0.8em;
  }
	[dir="rtl"] #menu-bar .menu a.home-link {
		padding: 0.1em 0.2em;
	}
  .featured #menu-bar .menu li a:active,
  .featured #menu-bar .menu li a.is-active {
    background: #f0f0f0;
    background: rgba(240, 240, 240, 1.0);
  }
  body:not(:target) #menu-bar .menu-toggle {
    display: none;
  }
}
/* =============================================================================
 *   Book navigation menu
 * ========================================================================== */
.book-navigation .page-up {
  /* Prevent text wrapping to a new line, assumes the string is two chars */
  min-width: 2em;
  white-space: nowrap;
}
.book-navigation .menu {
  margin-left: 0;
}

/* =============================================================================
 *   Breadcrumbs
 * ========================================================================== */
#breadcrumb {
  margin: 10px 0;
}
/* If the label is set to show in theme settings the label class is added */
#breadcrumb .breadcrumb-label {
  font-size: 1em;
  display: inline;
  padding-right: 10px;
}

#breadcrumb .breadcrumb-label:after {
  content: ":";
}

#breadcrumb ol {
  margin: 0;
  padding: 0;
}

#breadcrumb .with-breadcrumb-label ol {
  display: inline;
}

#breadcrumb li {
  list-style: none;
  display: inline;
}
#breadcrumb a {
	color: #0082BC;
	display: inline-block;
	border-bottom: 1px dotted #0082BC;
}

#breadcrumb a:hover,
#breadcrumb a:focus {
	color: #7D121D;
	border-color: #7D121D;
	text-decoration: none;
}

/* =============================================================================
 *   Pagers
 * ========================================================================== */

ul.pager {
  clear: both;
  margin: 0;
  text-align: center;
}

.item-list ul.pager li {
  margin: 0;
}

ul.pager li {
  background-image: none;
  display: inline;
  list-style-type: none;
  padding: .5em;
}

ul.pager li.pager-current {
  font-weight: 700;
}

.block ul.pager li {
  margin: 0;
}

/*
 * Theme the various states of pager links
 */
ul.pager li {}

ul.pager li a {}

ul.pager li a:link,
ul.pager li a:visited {}

ul.pager li a:active,
ul.pager li a.active {}

ul.pager li a:hover,
ul.pager li a:focus {}

ul.pager li.pager-item {}
ul.pager li.first {}
ul.pager li.last {}
ul.pager li.pager-current {}
ul.pager li.pager-first {}
ul.pager li.pager-previous {}
ul.pager li.pager-next {}
ul.pager li.pager-last {}


/* =============================================================================
 *   Skip Navigation
 * ========================================================================== */

#skip-link {
  left: 50%;
  margin-left: -6.5em;
  margin-top: 0;
  padding: 0 0.5em;
  position: absolute;
  width: 12em;
  z-index: 50;
}

#skip-link a {
  background: #444;
  background: rgba(0,0,0,0.6);
  color: #fff;
  display: block;
  line-height: 2;
  padding: 0;
  text-align: center;
  text-decoration: none;
}

#skip-link a:link,
#skip-link a:visited {
  background: #444;
  background: rgba(0,0,0,0.6);
  color: #fff;
  display: block;
  line-height: 2;
  padding: 0;
  text-align: center;
  text-decoration: none;
}

#skip-link a:hover,
#skip-link a:focus,
#skip-link a:active {
  outline: 0;
}


/* =============================================================================
 *   Tabs (local tasks)
 * ========================================================================== */

#tasks {
  margin-bottom: 15px;
}

ul.primary {
  border-bottom-color: #ccc;
  margin: 20px 0;
  padding: 0 0 0 5px;
}

ul.primary li {
  display: block;
  float: left;
  margin: 0 1px -1px;
}

ul.primary li a {
  background-color: #f5f5f5;
  border-color: #ccc;
  margin-right: 1px;
  padding: 0 10px;
  display: block;
  float: left;
  height: 1.5em;
  line-height: 1.5em;
}

ul.primary li a:hover,
ul.primary li a:focus {
  background-color: #eee;
  border-color: #ccc;
}

ul.primary li.active a,
ul.primary li.active a:hover,
ul.primary li.active a:focus {
  background-color: #fff;
  border-bottom-color: #fff;
}

ul.secondary {
  border-bottom: 1px solid #ccc;
  margin: 1em 0 0;
  padding: 0 .3em 1em;
}

ul.secondary li {
  border-right: 0;
  list-style: none;
  padding: 0 10px 0 0;
}

ul.secondary li a {}

ul.secondary li a:hover,
ul.secondary li a.active {
  border-bottom: none;
  text-decoration: underline;
}
li.expanded, li.collapsed, li.leaf.icons-leaderboard {
	padding: 0.2em 0 0 0;
	margin: 0;
}
#block-system-user-menu .block-inner {overflow: visible;}
li.leaf.icons-leaderboard:focus-within {position: relative;}
li.leaf.icons-leaderboard:focus-within span[class^="title-"] {
  display: block;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translate(-50%,0);
  background: #ffffff;
  z-index: 10;
}

li.leaf.icons-leaderboard a {border-bottom: 1px solid transparent;}
li.leaf.icons-leaderboard a:hover {border-bottom: 1px solid #7d121d;}

/* =============================================================================
 *   Action links
 * ========================================================================== */

ul.action-links {
  margin: 20px 0 0;
  list-style: none;
}

ul.action-links li {}


/* =============================================================================
 *  Field Styling
 * ========================================================================== */

/*
 * Wrapper for any field
 */
.field {}

/*
 * Above and inline classes are on the field wrapper
 */
.field-label-above {}

/*
 * When labels are set to inline in field display settings the clearfix class is
 * automatically added
 */
.field-label-inline {}

.field-label-inline .field-label {
  margin: 0;
	padding: 0;
}

/*
 * Labels are h2 in Adaptivetheme. Use a strong selector to mitigate unwanted
 * ineritance issues
 */
.field-label {
  font-size: 1em;
  font-weight: 700;
  font-family: inherit;
  line-height: inherit;
  margin-bottom: 0;
}

/*
 * Field types (Core)
 */
/*
 * Taxonomy
 */
.field-type-taxonomy-term-reference {
  /* The same bottom margin as p, blockquote, ul, ol and dl */
  margin-bottom: 1.5em;
}

.field-type-taxonomy-term-reference.field-label-inline .field-items {
  margin: 0;
  padding: 0;
}

.field-type-taxonomy-term-reference.field-label-inline .field-item {
  display: inline;
  list-style: none;
  padding: 0 10px 0 0;
}
/*
 * Float left setting
 */
.ia-l .field-type-image figure,
.iat-l .field-type-image figure {
  margin: 5px 20px 15px 0;
}

/*
 * Centered setting
 */
.ia-c .field-type-image figure,
.iat-c .field-type-image figure {
  margin: 5px auto 15px;
}

/*
 * Float right setting
 */
.ia-r .field-type-image figure,
.iat-r .field-type-image figure {
  margin: 5px 0 15px 20px;
}


/* =============================================================================
 *   Block Styling
 * ========================================================================== */

/*
 * Main wrapper for most blocks, block_system_main does not have it
 */
.block {
  margin-bottom: 20px;
}
#block-block-2, #block-search-form {
	margin: 0px;
}
#block-block-2 .block-inner, #block-search-form .block-inner {
	margin: 0px;
}
#block-block-2 .block-inner > .block-content {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
}
#block-search-form .content {
	display: none;
}
#search-toggle label {
	font-size: 0.875em;
	font-weight: 400;
}
#header .region .region-inner #block-block-2 form select {
	font-family: "Quicksand";
}
#header .region .region-inner #block-block-2 form .inline input[type="submit"] {
	color: #7D121D;
	padding: 0 0.142em;
}
.fa.fa-angle-right {
	color: #7D121D;
	padding: 0 0.417em;
}
#search-toggle label {
	font-weight: 400;
}
#by option {
	color: #808080;
	background-color: #ffffff;
}
/*search box library*/
#header .region .region-inner #block-search-form .container-inline {
	color: #ffffff;
	background-color: #7D121D;
	opacity: 0.9;
	padding: 0.143em 0;
}
#header .region .region-inner #block-search-form input[type="search"] {   /*library*/
	border: none;
	padding: 7px 2px;
}
/*
 * Block title
 */
.block-title {
  margin: 0;
	/*font-size: 1.8em;*/
}

/*
 * Block content wrapper
 */
.block-content {}

/*
 * Match item list and block menu margin and padding
 */
.block-content {}

.block-content ul,
.block-content ol {
  padding: 0 0 0 15px;
}

.block-content li {
  margin: 0;
  padding: 0;
}
/*
 * Custom menu block
 */
#block-menu-menu-NAME {}

/*
 * "Recent content" block
 */
#block-node-recent {}

/*
 * "Syndicate" block for primary RSS feed; see also page.css's .feed-icon
 */
#block-node-syndicate {}

/*
 * "Most recent poll" block
 */
#block-poll-recent {}

/*
 * "Author information" block for the profile of the page's author
 */
#block-profile-author-information {}

/*
 * "Search form" block
 */
#block-search-form, #block-block-2 {
	margin: 0px;
}
#block-block-2 .block-inner, #block-search-form .block-inner {
	margin: 0px;
}
#header .region .region-inner #block-block-2 form {
  background-color: #7D121D;
	padding: 8px 10px;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}
#header .region .region-inner #block-block-2 form input.text {
	border: medium none;
	padding: 7px 2px;
}
#header .region .region-inner #block-block-2 #search-toggle {
    padding-top: 8px;
}
#header .region .region-inner #block-search-form #search-toggle, #header .region .region-inner #block-block-2 #search-toggle {
    float: right;
    padding-top: 8px;
    padding-bottom: 8px;
}
#header {
    min-height: 150px;
}
#header .region-header .region-inner {
    /*padding: 10px;*/
    /*border: 2px solid #7D121D;*/
}
#header .region-header-bottom .region-inner,
#header .region-alert-message .region-inner {
    padding:0;
    border: none;
}
#header-bottom-wrapper {
    float: right;
}
#header .region .region-inner #block-search-form #search-toggle label, #header .region .region-inner #block-block-2 #search-toggle label {
    float: left;
}

#header .region .region-inner #block-search-form #search-toggle input, #header .region .region-inner #block-block-2 #search-toggle input {
    float: left;
    margin-top: 3px;
    margin-right: 6px;
    clear: none;
}

#header .region .region-inner #block-search-form p, #header .region .region-inner #block-block-2 p {
    margin: 0;
}
#block-block-2 .field-global-search-item {
	display: inline-block;
}

#header .region .region-inner #block-block-2 form select {
    font-family: "Merriweather";
    border: medium none;
    background-color: #7D121D;
    color: #FFFFFF;
    font-weight: bold;
}

#header .region .region-inner #block-block-2 form .inline input.text {
    border: none;
}

#global-search-edit-actions {
    text-align: right;
}

#header .region .region-inner #block-search-form .container-inline {
    color: #7D121D;
}

#header .region .region-inner #block-search-form input[type="search"] {
    border: none;
    border-bottom: 0.08em solid #808080;
}

#header .region .region-inner #block-search-form input[type="submit"],
#header .region .region-inner #block-block-2 input[type="submit"] {
	color: #FFFFFF;
	font-family: "Quicksand";
	font-size: 1.500em;
	font-weight: 900;
	text-align: right;
	text-transform: uppercase;
	overflow: hidden;

	padding: 10px 2px 0 2px;
	border: none;
	background: transparent;
}
#header .region .region-inner #block-search-form input[type="submit"]:hover,
#header .region .region-inner #block-block-2 input[type="submit"]:hover {
	text-decoration: underline;
}
#header .region .region-inner #block-block-2 input[type="submit"] {
	padding-top: 0;
}
/*
 * "Shortcuts" block
 */
#block-shortcut-shortcuts {}

/*
 * "Popular content" block
 */
#block-statistics-popular {}

/*
 * "Main menu" block
 */
#block-system-main-menu {}
ul.nice-menu li a {
	text-decoration: none;
	font-weight: 900;
}
ul.nice-menu > li.menuparent > a {
	color: #093B55;
}

/*
 * "Management" block for Drupal management menu
 */
#block-system-management {}

/*
 * "Navigation" block for Drupal navigation menu
 */
#block-system-navigation {}

/*
 * "User menu" block for Drupal user menu
 */
#block-system-user-menu {}

/*
 * "System help" block
 */
#block-system-help {}

/*
 * "Main page content" block
 */
#block-system-main {}

/*
 * "Powered by Drupal" block
 */
#block-system-powered-by {}

/*
 * "User login form" block
 */
#block-user-login {}

/*
 * "Who's new" block for a list of the newest users
 */
#block-user-new {}

/*
 * "Who's online" block for a list of the online users
 */
#block-user-online {}


/* =============================================================================
 *   Node Styling
 * ========================================================================== */

.node {
  margin-bottom: 20px;
}

.node.node-promoted {}

.node.node-sticky {}

.node.node-by-viewer {}

.node.node-teaser {}

.node.node-full {}

.node.odd {}

.node.even {}

.node .node-title {
  margin: 0;
}

.node .user-picture {}

.node .submitted {}

.node .submitted .username {}

.node .submitted time {}

.node .node-content {}

.node ul.links {}

.node ul.links li {}

.node ul.links li a {}

.node ul.links li.node-read-more a {}

.node ul.links li.comment-add a {}

.node ul.links li.comment-comments a {}

.node ul.links li.comment-new-comments a {}

.node ul.links li.blog-sernames-blog a {}

.node ul.links li.print-html a {}

.node ul.links li.print-email a {}

.node ul.links li.print-pdf a {}

.preview .node {}

/*
 * All nodes are given a node-FOO class that describes the type of content that
 * it is. If you create a new content type called "my-custom-type", it will
 * receive a "node-my-custom-type" class.
 */
.node-page {}

.node-article {}

.node-book {}

.node-forum {}

.node-poll {}


/* =============================================================================
 *   Comment Styling - Comments, comment wrapper, comment form
 * ========================================================================== */

/*
 * Wrapper for the list of comments and its titles
 */
#comments {
  margin: 1.5em 0;
}

#comments h2 {}

#comments h2.comment-title {
  margin: 0;
}

#comments h2.comment-form {
  margin: 0;
}

/*
 * Wrapper for a single comment
 */
.comment {
  margin-bottom: 20px;
}

.comment.first {}

.comment.last {}

.comment.odd {}

.comment.even {}

.comment .user-picture {}

.comment .submitted {}

.comment .submitted p {}

.comment .submitted .username {}

.comment .submitted time {}

.comment .user-signature {}

.comment ul.links {}

/*
 * Comment title
 */
.comment-title {
  margin: 0;
}

/*
 * Comment states
 */
.comment-new {}

.comment-by-anonymous {}

.comment-by-node-author {}

.comment-by-viewer {}

.comment-title-hidden {}

.comment-with-picture {}

.comment-with-signature {}

/*
 * Preview of the comment before submitting new or updated comment
 */
.comment-preview {}

/*
 * "New" marker for comments that are new for the current user
 */
.new {
  color: #c00;
}

/*
 * Nested comments are indented
 */
.indented {
  margin-left: 40px;
}


/* =============================================================================
 *   Forms
 * ========================================================================== */

/*
 * Wrapper for a form element (or group of form elements) and its label
 */
.form-item {}

.form-item input.error,
.form-item textarea.error,
.form-item select.error {
  border: 1px solid #c00;
}

.form-item label {
  font-weight: 700;
}

.form-item label.option {}

/*
 * Highlight marks and form required mark
 */
.marker,
.form-required {
  color: #c00;
}

.form-item .description {
  font-size: 0.85em;
}

.form-checkboxes .form-item,
.form-radios .form-item {}

/*
 * The submit button
 */
.form-submit {}
#edit-change + input {
  margin-left: 5px;
}
.container-inline div,
.container-inline label {
  display: inline;
}

/*
 * Define consistent borders
 */
fieldset {
  border: 1px solid #ccc;
}

/*
 * Tips for Drupal's input formats
 */
.tips {}

/*
 * Buttons used by contrib modules like Media
 */
a.button {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
}

/*
 * Password confirmation
 */
.password-parent,
.confirm-parent {
  margin: 0;
}


/* =============================================================================
 *   Tables
 * ========================================================================== */

table {
  margin: 10px 0;
  padding: 0;
  width: 100%;
}

table.sticky-header {
  z-index: 10;
}

table,
thead,
tbody,
tr,
th,
td {
  border-color: #ccc;
}

table,
td,
th {
  vertical-align: middle;
}

caption,
th,
td {
  text-align: left;
}

thead tr {
  font-weight: 700;
  background-color: #e5e5e5;

}

td,
th {
  border-bottom: 0;
  margin: 0;
  padding: 5px 7px;
}
.node-content .field-item > table td {
	padding: 5px 15px;
}
tbody {}

tbody tr {
  border-top: 1px solid #ccc;
}

tr.odd {
  background: #fff;
}

tr.info,
tr.even,
tr:nth-child(2n+2) {
  border-bottom: 0;
  background-color: #f5f5f5;
}

tr.drag {}

tr.drag-previous {}

tr.odd td.active {
  background-color: #eee;
}

tr.even td.active {
  background-color: #ebebeb;
}

.lt-ie8 tr {}

.lt-ie8 tr.even,
.lt-ie8 tr.odd {}

.lt-ie8 tr.even th,
.lt-ie8 tr.even td,
.lt-ie8 tr.odd th,
.lt-ie8 tr.odd td {
}

/*
 * Forum tables
 * Core sets white-space to nowrap, which makes no sense
 */
#forum td {}

#forum td.created,
#forum td.posts,
#forum td.topics,
#forum td.last-reply,
#forum td.replies,
#forum td.pager {
  white-space: normal;
}



/* =============================================================================
 *   Messages
 * ========================================================================== */

/* Left and right margin are set by the global gutter width */
div.messages {
  margin-bottom: 10px;
  margin-top: 10px;
}

div.messages ul {
  margin-top: 0;
  margin-bottom: 0;
}

div.status {}

div.warning {}

tr.warning {}

div.error,
tr.error {}

.error {}

.warning {}

/*
 * Unpublished nodes
 */
.node-unpublished,
.comment-unpublished {}

.node-unpublished,
.comment-unpublished {}

.node-unpublished p.unpublished,
.comment-unpublished p.unpublished {
  color: pink;
  color: rgba(239, 170, 170, 0.4);
  font-family: Impact,"Arial Narrow",Helvetica,sans-serif;
  font-size: 75px;
  font-weight: bold;
  height: 0;
  line-height: 1.2;
  margin: 0;
  padding: 0;
  overflow: visible;
  text-align: center;
  text-transform: uppercase;
  word-wrap: break-word;
}

/*
 * Otherwise these elements will appear below the "Unpublished" text
 */
.lt-ie8 {}

.lt-ie8 .node-unpublished > *,
.lt-ie8 .comment-unpublished > * {
  position: relative;
}


/* =============================================================================
 *    Maintenance pages
 * ========================================================================== */

.maintenance-page {}
.maintenance-page .container {
  padding: 40px 0;
}

.maintenance-page #site-name,
.maintenance-page #page-title {
  margin: 0;
}

.db-offline {}

.db-offline .container {
  margin: 0 auto;
  padding: 40px 0;
  width: 100%;
  max-width: 960px;
}

.db-offline div.messages {
  margin: 20px 0 0;
}

.db-offline #content {
  padding: 20px 0;
}


/* =============================================================================
 *   Misc overrides for contrib modules
 * ========================================================================== */

/*
 * Admin menu overrides
 */
#admin-menu {
  margin: 0;
  padding: 0;
}

/*
 * Devel Module
 */
.dev-query {
  background: #eee;
  padding: 30px;
}

/*
 * Styleguide module tweaks
 */
#styleguide-header {
  padding: 0 10px;
}

#styleguide-header .item-list {
  font-family: inherit;
  margin: 0 20px 20px 0;
  min-height: 260px;
  width: auto;
}
/**** Views ***/
/**
 * Views responsive grid
 */
@media all and (max-width: 479px) {
    .view-id-libary_branches.view-display-id-block_1 .view-content .views-row,
    .view-id-eresources_categories.view-display-id-block .view-content .views-row {
        width: 100%;
        float: left;
        border-top: 2px dashed #7D121D;
    }
}
@media all and (min-width: 480px) and (max-width: 959px) {
    .view-id-libary_branches.view-display-id-block_1 .view-content .views-row,
    .view-id-eresources_categories.view-display-id-block .view-content .views-row {
        width: 48%;
        float: left;
        margin-bottom: 2%;
        border-top: 2px dashed #7D121D;
    }
    .view-id-libary_branches.view-display-id-block_1 .view-content .views-row:nth-child(2n - 1),
    .view-id-eresources_categories.view-display-id-block .view-content .views-row:nth-child(2n - 1) {
        margin-right: 1%;
    }
}
@media all and (min-width: 960px) {
    .view-id-libary_branches.view-display-id-block_1 .view-content .views-row,
    .view-id-eresources_categories.view-display-id-block .view-content .views-row {
        float: left;
        width: 31%;
        margin-bottom: 2%;
        border-top: 1px solid #7D121D;
    }
    .view-id-libary_branches.view-display-id-block_1 .view-content .views-row:nth-child(3n - 1),
    .view-id-eresources_categories.view-display-id-block .view-content .views-row:nth-child(3n - 1) {
        margin-right: 1%;
        margin-left: 1%;
    }
    .view-id-libary_branches.view-display-id-block_1 .view-content .views-row:nth-child(3n + 1),
    .view-id-eresources_categories.view-display-id-block .view-content .views-row:nth-child(3n + 1) {
        clear: left;
    }
}
.view-id-eresources_categories.view-display-id-block .view-content .views-row {
	border-top: none;
}
.view-display-id-page_4 .date-icon,
.view-id-news_archive.view-display-id-page_1 .date-icon,
.view-id-news_archive.view-display-id-page .date-icon{
    border: 1px solid #093B55;
    text-align: center;
    text-transform: uppercase;
}
.page-news .content-inner {
	margin-top: 10px;
}
.view-display-id-page_4 .date-icon .day-name,
.view-id-news_archive.view-display-id-page_1 .date-icon .day-name,
.view-id-news_archive.view-display-id-page .date-icon .day-name {
    padding: 0px 10px;
}
.view-display-id-page_4 .date-icon .month-day,
.view-id-news_archive.view-display-id-page_1 .date-icon .month-day,
.view-id-news_archive.view-display-id-page .date-icon .month-day {
    background-color: #7D121D;
    padding: 0px 10px;
    color: #FFFFFF;
}
.view-display-id-page_4 .date-icon .year,
.view-id-news_archive.view-display-id-page_1 .date-icon .year
.view-id-news_archive.view-display-id-page .date-icon .year {
    padding: 0px 10px;
}
.view-display-id-page_4 .views-field-field-event-date-2,
.view-id-news_archive.view-display-id-page_1 .views-field-created-2,
.view-id-news_archive.view-display-id-page .views-field-created-2 {
    float: left;
    margin-right: 1em;
}
.view-event-calendar .views-field-title .field-content a {
	font-size: 1.25em;
	font-weight: 600;
}
.view-event-calendar.view-display-id-page_4 .views-field-title .field-content a,
.view-id-news_archive.view-display-id-page_1 .views-field-title .field-content a,
.view-id-news_archive.view-display-id-page .views-field-title .field-content a {
    font-size: 1.4em;
    line-height: 1em;
    font-weight: 300;
    margin-bottom: 5px;
}
.view-event-calendar.view-display-id-page_4 .views-row,
.view-id-news_archive.view-display-id-page_1 .views-row,
.view-id-news_archive.view-display-id-page .views-row {
	border-bottom: 1px dashed #808080;
	margin-bottom: 10px;
	padding-bottom: 10px;
  height: auto;
	min-height: 7em;
}
.view-event-calendar.view-display-id-page_4 .views-row-last,
.view-id-news_archive.view-display-id-page_1 .views-row-last,
.view-id-news_archive.view-display-id-page .views-row-last {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}
.view-id-event_calendar.view-display-id-block_2 .views-row {
	padding-bottom: 15px;
}
.view-id-event_calendar.view-display-id-block_2 .view-display-id-attachment_1 .views-row-1 {
	padding-top: 15px;
}
.region-sidebar-first .views-exposed-form .views-widget-filter-field_age_group_tid,
.region-sidebar-first .views-exposed-form .views-widget-filter-field_branch_location_target_id {
	border-top: 4px solid #027AC6;
	width: 100%;
}
.region-sidebar-first .views-exposed-form .views-widget-filter-field_branch_location_target_id {
	clear: both;
}
.region-sidebar-first .views-exposed-form .views-exposed-widgets label:first-child {
	font-size: 1.2em;
	text-transform: uppercase;
	font-weight: normal;
}
.region-sidebar-first .views-exposed-form .views-exposed-widgets .views-widget {
	margin-top: 20px;
}
.region-sidebar-first .views-exposed-form #edit-field-age-group-tid-wrapper .views-widget {
	margin-bottom: 30px;
}
.region-sidebar-first .views-submit-button,
.region-sidebar-first .views-reset-button {
	float: left;
}
.region-sidebar-first .views-submit-button #edit-submit-event-calendar,
.region-sidebar-first .views-reset-button #edit-reset {
	font-size: 1.1em;
	padding: 6px 10px;
	text-decoration: none;
	color: white;
	text-transform: uppercase;
	font-weight: bold;
	border: 1px solid #1e5c90;
	background-color: #0071b8;
}
.region-sidebar-first .views-reset-button #edit-reset {
	color: #333333;
	border: 1px solid #a6a6a6;
	background-color: #f2f1eb;
}
.region-sidebar-first .views-submit-button #edit-submit-event-calendar:hover {
	color: #0071b8;
	background-color: #FFF;
}
.region-sidebar-first .views-reset-button #edit-reset:hover {
	color: #f2f1eb;
	background-color: #333333;
}
.front .view-event-calendar .views-row .views-field-field-branch-location a {
	font-weight: 900;
}
.sdg-lib-featured-title-block li a, .sdg-lib-coming-soon-title-block li a {
	font-weight: 900;
}
ul.sdg-lib-featured-title-block, ul.sdg-lib-coming-soon-title-block {
	padding: 0;
	margin: 0;
	list-style-type: none;
}
ul.sdg-lib-featured-title-block li, ul.sdg-lib-coming-soon-title-block li {
	list-style-type: none;
	float: left;
	width: 31%;
	margin-bottom: 2%;
}
ul.sdg-lib-featured-title-block li:nth-child(3n - 1), ul.sdg-lib-coming-soon-title-block li:nth-child(3n - 1) {
	margin-right: 1%;
	margin-left: 1%;
}
ul.sdg-lib-featured-title-block li:nth-child(3n + 1), ul.sdg-lib-coming-soon-title-block li:nth-child(3n + 1) {
	clear: left;
}
ul.sdg-lib-featured-title-block li:nth-child(n+4), ul.sdg-lib-coming-soon-title-block li:nth-child(n+4)  {
	margin-top: 15px;
	margin-bottom: 15px;
}
ul.sdg-lib-featured-title-block li div, ul.sdg-lib-coming-soon-title-block li div {
	text-align: left !important;
	font-size: 0.8em;
	line-height: 1.2em;
}
ul.sdg-lib-featured-title-block li div:first-child, ul.sdg-lib-coming-soon-title-block li div:first-child {
	margin-bottom: 15px;
}

#block-nice-menus-1 ul.nice-menu li ul li a {
	line-height: 1.2em;
  text-transform: none;
}
.not-front .region-secondary-content .block-inner {
	margin: 0;
}
.flexslider {
  margin: 0;
  border: none;
  border-radius: 0;
  background: none;
}
.flex-control-nav {
	top: 0;
	text-align: right;
	right: 0;
	bottom: auto;
	width: auto;
	height: calc(22px + 0.5rem);
	padding: 0.25rem !important;
	background-color: #fff;
}
.flex-control-nav li {margin: 0 6px !important;}
.flex-control-paging li a {
  width: 20px;
  height: 20px;
  border-radius: 0;
  border: 1px solid #093B55;
  background: transparent;
  box-shadow: none;
  color: transparent;
}
.flex-direction-nav a {
  background-color: #093B55;
  color: #ffffff;
	opacity: 1;
}
.flex-direction-nav a:before {
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: #fff;
}
.flex-control-paging li a.flex-active {
	background: #093B55;
}
#flexslider-1 {
	box-shadow: none;
	border: 0px;
	border-radius: 0px;
	margin: 0;
}
#flexslider-1 .slides {
	padding: 0;
	background-color: #093B55;
}
#flexslider-1 .views-field-field-caption p {
	font-size: 1.6em;
	font-weight: bold;
	font-style: italic;
	line-height: 1.25;
	color: #FFFFFF;
	margin: 0;
}
#flexslider-1 .views-field-field-link .field-content a {
	color: #FFFFFF;
	font-family: 'Quicksand';
	line-height: 1.25;
	font-weight: bold;
	display: block;
}
#flexslider-1 .views-field-field-link .field-content a:hover {
	border: 1px groove #808080;
	color: #093B55;
	text-decoration: none;
	background-color: #FFFFFF;
}

#flexslider-1 ol.flex-control-nav {
	top: 0;
	z-index: 2;
	padding: 10px 0 0 0;
	list-style-type: none;
	color: transparent;
	text-align: right;
}

.view-event-calendar .views-field-colorbox .field-content a {
	font-weight: bold;
}
.not-front .region-secondary-content .block {
	margin: 0;
}

.not-front .region-secondary-content .block-inner .view-content {
	background-color: #093B55;
	color: #FFFFFF;
}

/*** hightlight box ***/
#main-content .highlight-box {
	float: right;
	width: 300px;
	background-color: #231f20;
	border-top: none;
	padding: 0 15px;
	margin-left: 10px;
}
#main-content .highlight-box h3 {
	color: white;
	margin: 0 -15px;
	margin-bottom: 10px;
	padding: 3px 15px;
}
#main-content .highlight-box p {
	margin-bottom: .5em;
}
#main-content .highlight-box ul {
	list-style-image: none;
	list-style: square outside none;
	padding-left: 0;
}
#main-content .highlight-box.blue {
	background-color: #a6cddd;
	color: #0046ae;
}
#main-content .highlight-box.blue h3 {
	background-image: url("images/box_blue.png");
	background-repeat: repeat-x;
	background-color: #116AB3;
}
#main-content .highlight-box.green {
	background-color: #f0f5cb;
	color: #618400;
}
#main-content .highlight-box.green h3 {
	background-image: url("images/box_green.png");
	background-repeat: repeat-x;
	background-color: #84A006;
}
#main-content .highlight-box.purple {
	background-color: #e2d7e5;
	color: #6e377b;
}
#main-content .highlight-box.purple h3 {
	background-image: url("images/box_purple.png");
	background-repeat: repeat-x;
	background-color: #6F387C;
}

/*** main content list type ***/
.not-front #main-content .field-item ul {
	list-style: none;
}
.not-front #main-content .field-item ul li {
	position: relative;
	padding-left: 12px;
}
.not-front #main-content .field-item ul li:before {
	content: ' ';
	display: block;
	width: 6px;
	height: 6px;
	background: #0046ae;
	margin-right: -6px;
	position: absolute;
	left: 0;
	top: 10px;
}

#block-gtranslate-gtranslate .content {
	text-align: right;
}

/*** Remove hide page-title if banner ***/
.not-front.with-secondary-content #page-title {
	display: none;
}
.not-front.not-logged-in.with-secondary-content .content-column .content-inner {
	margin-top: 10px;
}

/* Align year and submit buttons on meetings and agendas as per issue #SL-20 */
.views-exposed-form .views-exposed-widget .form-submit {
	margin-top: 2.2em;
}

/* calendar customization */
#content .calendar-calendar table {
  line-height: 1.2em;
}
.view .date-nav-wrapper .date-prev,
.view .date-nav-wrapper .date-next {
  padding: 5px;
}
.view .date-nav-wrapper .date-prev a,
.view .date-nav-wrapper .date-next a {
  margin: 0;
}

/** purchase suggestion **/
.page-eform-submit-purchase-suggestion .field-type-taxonomy-term-reference {
  margin-bottom: 0;
}
.page-eform-submit-purchase-suggestion .field-label {
  margin: 0;
  padding: 0;
}
.page-eform-submit-purchase-suggestion .field-items {
  margin: 0;
}