html {
    height: 100%;
	font-size: 	0.875rem
    /* font-size: 1.14rem; */
}
body {
    position: relative; /* for scrollspy */
    background-color:#f8f9fa;
    /* sticky footer: */
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow-y: scroll;
    color:  #3c3938;
    font-family: Source Sans Pro, Sans-Serif;
	font-weight: 400;
}


/*******************************************************
NAVIGATION BAR
*******************************************************/


/*
.dropdown:hover>.dropdown-menu {
    display: block;
}
*/
/*
.dropdown > .dropdown-menu, .dropdown-submenu > .dropdown-menu {
    transition: visibility 0s 2s, opacity .6s linear, max-height .6s linear, overflow 0s 2s;
    display: block;
    visibility: hidden;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
}

.dropdown > .dropdown-menu.show, .dropdown-submenu > .dropdown-menu.show {
    transition: opacity .6s linear, max-height .6s linear;
    visibility: visible;
    max-height: 100px;
    opacity: 1;
}
*/
#navigation {
    background-color: #074486;
    margin-bottom:2rem;
    z-index: 1025;
    /* width: 100%; *//* all this did was make it shift when there was a modal */
}
.navbar{
    /* height: 3rem; */
    max-width: 1340px;
    position: initial;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}
#navigation .navbar-toggler {
    margin: .25rem .5rem;
    font-size: 1rem;
    line-height: 1;
    padding: calc(.25rem - 1px) 0.5625rem;
	border-width: 1px;
}

.navbar-dark .navbar-toggler{
	border-color: #6088b2;
}

#navCollapse {
    max-height: 80vh;
    overflow: auto;
}
#navigation .nav-link {
    font-size: 1rem; /* 1.1875rem; */
    line-height: 1.5;
	font-weight: 500;
	font-family: Roboto, sans-serif;
    background-color: #3a71b1; /*#f5f5f5;*/
    color: #ffffff; /*#1d5796;*/
    padding: .5rem 1rem;
    position: relative;
    overflow: hidden;
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
    #navigation .nav-link {
        font-size: 1rem;
    }
}

.navbar-dark .navbar-nav .active > .nav-link {
	box-shadow: inset 6px 0 0 -1px #618dc0;
}
@media screen and (min-width: 992px) {
	.navbar-dark .navbar-nav .active > .nav-link {
		box-shadow: inset 0 -6px 0 -1px #618dc0;
	}
}
/* Text gets shifted when borders that weren't there are applied,
so there would need to be a border on each edge at all times
(maybe the color could transition too) */
/* #navigation .nav-link:not(.collapsed) {
    border-left: 1px solid #bdc3cb;
    border-top: 1px solid #bdc3cb;
    border-right: 1px solid #bdc3cb !important;
} */

@media screen and (max-width: 991px) {
    #navCollapse {
        border-bottom: 1px solid #074486;
    }
}

@media screen and (min-width: 992px) {
    .navbar {
        padding: 0;
    }

	/*#navigation .nav-item:not(:last-child) .nav-link {
        border-right: 1px solid #074486; */ /* #003671; dark */
    /*}*/
    #navigation .nav-link {
		text-align: center;
        padding-left: 0;
        padding-right: .6rem;/* all on right to help center the arrow */
		transition: all .2s ease-in-out;
		transition-property: color, background-color;
    }
    #navCollapse {
        overflow: visible;
    }
    #navigation .nav-item:not(.megamenu) {
        position: relative;
    }
}

#navigation .active > .nav-link.collapsed, #navigation .nav-link.collapsed:focus {
    color: #ffffff;
}
#navigation .nav-link.collapsed {
    background-color: #074486;
    color: #e9ecef;
}
#navigation .nav-link.collapsed:hover {
    color: #ffffff;
    background-color: #3a71b1;
}
#navigation .nav-link:after {
    content: "\00A0\25B8";
    display: inline-block; /* relative inline-block messes up ie11 (for some reason it adds some height to the nav bar when you click a nav-link), fixed with inline but then it only rotates in ie */
	color: #b0c6df; /*#1d5796;*/
	transform: rotateZ(90deg);
	font-size: 1.25rem;
	position: absolute;
    line-height: 1.1;
	transition: all .2s ease-in-out;
	transition-property: color, transform;
	/*top:1px;*/
}
#navigation .nav-link.collapsed:after {
	color: #618dc0; /*#1d5796;*/
	transform: none;
}
#navigation .nav-link.collapsed:hover:after {
    color: #b0c6df;
}

/* replaced .nav-arrow with .nav-link:after *//*
.nav-arrow {
	color: #618dc0;
	font-size: 1.25rem;
	display:inline-block;
	transition: all .2s ease-in-out;
	position: relative;
	top:1px;
}
#navigation .nav-link.collapsed:hover .nav-arrow {
    color: #b0c6df;
}
#navigation .nav-link:not(.collapsed) .nav-arrow {
	color: #b0c6df;
	transform: rotateZ(90deg);
}
*/

.submenu-container {
    background-color: #ffffff; /* #f5f5f5; */
    padding: .3rem 0;
    z-index: 1020; /* for ie 10 (which didn't inherit this correctly) */
    /* border-top: 1px solid #0a1647; */
}
.submenu-row {
    font-family: Roboto, sans-serif;
	font-size: 1rem;
	font-weight: 400;
	text-align: left;
    max-width:960px;
    margin:auto;
    /* padding: .6rem .4rem .8rem .4rem; */ /* vertical padding goes here to not mess up collapse transition */
    display: -ms-flexbox;
    display: flex;
    ms-flex-pack: distribute;
    justify-content: space-around;
    -ms-flex-direction: column;
    flex-direction: column;
}
.submenu-col {
    padding-top: .3rem;
    padding-bottom: .3rem;
}
@media screen and (min-width: 768px) {
    .submenu-row {
        -ms-flex-direction: row;
        flex-direction: row;
    }
}
@media screen and (min-width: 992px) {
    .submenu-container {
        position:absolute;
        min-width: 100%;
        white-space: nowrap;
        border-left: 1px solid #bbc7d4; /*#bdc3cb; #3a71b1;*/
        border-bottom: 1px solid #bbc7d4;
        border-right: 1px solid #bbc7d4;
        border-radius: 0 0 7px 7px;
        padding: 0;
    }
    .submenu-container.submenu-right {
        right: 0;
    }
    .megamenu .submenu-container {
        left: 0;
        width: 100%;
        white-space: initial;
        border-left: 0;
        border-right: 0;
        border-radius: initial;
    }
    .submenu-col {
        padding-top: .6rem;
        padding-bottom: .6rem;
    }
}
.submenu-col-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

@media screen and (min-width: 992px) {
    #navigation .nav-item:not(.megamenu) .submenu-row>.submenu-col:not(:last-child) { /* ideally this would show for megamenu too, but it's hard to center correctly */
        border-right: 1px solid #e9ecef;
        /* vertical line separators - not centered in megamenu/tablet, should hide in mobile view: */
        /* border-right: 1px solid #899eb6;
        margin-right: 1em; */
    }
}

/* Messing with list types */
/* .submenu-col-list {
    list-style-type: disc;
    padding-left: 1.6rem;
} */

.submenu-item a, .submenu-header {
    display:block;
    padding: .25rem 1.5rem;
}
.submenu-header {
    font-family: 'Merriweather';
	color: #000000;
	font-weight: bold;
}

.submenu-item a{
	color: #3c3938;
}

.submenu-item a.submenu-important {
	color: #005c31;
}

.submenu-item a:hover {
    background-color: #e6eaf2;
	color: #063d78;
	transition: all .1s ease-in-out;
	transition-property: color, background-color;
}

.submenu-item.active, .submenu-item a:hover:active{
	background-color: #d5dce9;
	color: #1e5085;
	transition: all .1s ease-in-out;
    transition-property: color, background-color;
}

.login-input {
    margin-bottom: 1rem;
}





/*******************************
MISC
*******************************/
.btn-big {
    width: 100%;
    font-size: 1.5rem;
    text-shadow: 2px 1px 2px rgba(0,0,0,.5);
}
.btn-big1{
    font-size: 1.5rem;
    line-height: 1.5rem;
    text-align: center;
    display: inline-block;
    margin: 0 auto;
    padding: 10px;
    width: 100%;
    text-shadow: 2px 1px 2px rgba(0,0,0,.5);
}
.btn-big2{
    background: #f08c20;
    color: #ffffff !important;
    margin-top: 2px;
    margin-bottom: 2px;
    padding: 7px;
    line-height: 1.15;
    display: inline-block;
    text-shadow: 0 1px 2px rgba(0,0,0,0.25);
    box-shadow: inset 0px 4px 6px rgba(246, 186, 121, 0.5), 0 1px 2px rgba(0,0,0,0.05);
    border-width: 2px;
    border-radius: 4px;
    border-style: solid;
    border-top-color: #f19736;
    border-bottom-color: #c07019;
    border-left-color: #f08c20;
    border-right-color: #f08c20;
    font-size: 1.875rem;
    font-weight: 700;
    text-align: center;
    vertical-align: middle;
    font-family: "Source Sans Pro", sans-serif;
}

/* frmi */
.row.vdivide {
    overflow: hidden; /* prevents seeing border on last column before wrap (when combined with right:-1px) */
}
.row.vdivide>div:not(:last-child):after {
    background: rgba(0, 0, 0, 0.1);
    width: 1px;
    content: "";
    display:block;
    position: absolute;
    top:0;
    bottom: 0;
    right: -1px;
    min-height: 70px;
}

/*
background-color: #078649;
border-color: #078649;

background-color: #f08c20;
border-color: #f08c20;
*/

#paypal-button-container {
    max-width: 300px;
    margin: auto;
}



/*******************************
FORMS
*******************************/

@media screen and (min-width: 992px) {
    .label-aligned {
        text-align: right;
    }
}
@media (min-width: 768px) {
    .medium-width {
        max-width: 24rem;
    }
    .small-width {
        max-width: 8rem;
    }
}
.form-button {
    width: initial;
}

.form-group-sm {
    margin-bottom: .7rem;
    font-size: .875rem;
}

.form-text-sm {
    display: block;
    margin-top: 0.1rem;
}

.invalid-tooltip:before {
	content: "\f071 ";
	margin-right: .375em;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1;
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
}
.invalid-tooltip {
	white-space: pre-line;
	position: relative; top: initial; /* pushes down content instead of overlapping (similar to .invalid-feedback) */
}

.was-validated .custom-select:invalid ~ .invalid-tooltip, .custom-select.is-invalid ~ .invalid-tooltip,
.was-validated .form-control-file:invalid ~ .invalid-tooltip, .form-control-file.is-invalid ~ .invalid-tooltip,
.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-tooltip,
.was-validated .form-control:invalid ~ .invalid-tooltip, .form-control.is-invalid ~ .invalid-tooltip {
    display: table; /* similar to "width: fit-content;" */
}

.datepicker {
    position: relative;
    z-index: 10;
}

/* show file validation immediately */
/*.needs-validation .form-control-file:invalid ~ .invalid-tooltip {
	display: block;
}*/

.striped-rows{
	margin-bottom:1rem;
	border: 1px solid #d5dce9;
	border-radius: 4px;
}
.striped-rows>.row:not(:last-child){
	border-bottom: 1px solid #d5dce9;
}
@media (min-width: 768px) {
	.striped-rows>.row:nth-of-type(even) {
		background-color: #edf0f5;
	}
}




/* STYLE FOR THE TOP HEADER */

#menu-top-nav {
	list-style: none;
	margin: 0;
	padding: 0;
}
.search-form label {
	margin: 0;
}
#header {
    max-width: 1340px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 15px auto 10px;

	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 400;
	line-height: 1.5rem;
	word-wrap: break-word;
}
#header, #header input {
  color: #4B4846; /* Very Dark Gray */
}

.asbs-logo {
	max-width: 100%;
	height: auto;
}

@media screen and (min-width: 992px) {
    #header {
        -webkit-box-align: center;
           -moz-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
    }
}

main {
    padding-bottom: 2rem;
}

.footer-container {
    /* max-width: 1340px; */

    /* background-color: #d7dce4;
    border-top: 1px solid #b9c3d2; */

    font-size: 1rem;
	background-color: #e0ebf4;
    border-top: 1px solid #d3d5f0;
    color: #00529c;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    margin-top: auto; /* sticky footer */
    padding-bottom: 1rem;
    padding-top: 2rem;
}

.footer-container a{
	transition: color .2s ease-in-out;
}

.footer-container hr{
	border: 1px solid #00529c;
	margin-top: 12px;
}

/* .footer-divider {
    margin-top: 2rem;
    margin-bottom: 2rem;
} */

.footer-container .tbs-social-links-widget a{
	padding-left: 3px;
	padding-right: 3px;
	color: #00529c;
}

.footer-container .facebook a:hover{
	color: #4267b2;
}

.footer-container .twitter a:hover{
	color: #38A1F3;
}

.footer-container .linkedin a:hover{
	color: #0077B5;
}

.footer-container .instagram a:hover{
	color: #405DE6;
}

.foot-widget {
	padding-top: 8px;
	text-align: center;
}

.footer-logo{
	text-align: center;
}

.footer-copyright {
	font-size: 0.875rem;
}

.footer-address {
	font-size: 0.875rem;
	padding-top: 3px;
	padding-bottom: 3px;
}

.footer-contact {
	font-size: 0.875rem;
	padding-bottom: 6px;
}

.footer-contact a{
	color:#00529c;
}

.footer-contact a:hover{
	color: #078649;
}

.footer-links {
	margin-right:0;
	font-size: 1rem;
	text-align: center;
	padding-bottom:6px;
}

.footer-links a{
	color: #00529c;
}

.footer-links a:hover{
	color: #078649;
}

.twitter-icon {
    width: 1.1em;
    height: 1.1em;
    vertical-align: -0.21em;
}

@media screen and (min-width: 992px) {
	.footer-logo{
		text-align: left;
	}
	.foot-widget {
	  text-align: right;
	}
	.footer-links {
	  margin-right: 0.5rem;
	  text-align: right;
	}
}


/*************************************************************************
1.03 - Base Styles
*************************************************************************/

h1 {
	color: #074486;
    font-family: 'Merriweather', serif;
	font-size: 2rem;
	font-style: normal;
    font-weight: 700;
	line-height: 1.25;
}

h2 {
	color: #074486;
    font-family: 'Merriweather', sans-serif;
	font-size: 1.375rem;
	font-style: normal;
    font-weight: 700;
	line-height: 1.25;
}

h3, h3 a {
	color: #074486;
    font-family: 'Source Sans Pro', sans-serif;
	font-size: 1.25rem;
	font-style: normal;
    font-weight: 600;
	line-height: 1.25;
}

h4, h4 a {
	color: #074486;
    font-family: 'Source Sans Pro', sans-serif;
	font-size: 1.1rem;
    font-weight: 600;
	line-height: 1.25;
}

h5 {
	color: #074486;
    font-family: 'Source Sans Pro', sans-serif;
	font-size: 1rem;
    font-weight: 600;
	line-height: 1.25;
}

h6 {
	color: #078649;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 1.1rem;
	font-weight: 600;
	line-height: 1.25;
}

header h1, header h2, header h3, header h4, header h5, header h6 {
    margin-bottom: 0;
	padding-bottom: 0;
}
header p {
    margin-bottom: 0;
    font-style: italic;
    font-weight: bolder;
    font-size: 1.0625rem;
	color: #4f4c4b;
}
header {
    margin-bottom: .5rem;
}

/*
 * Does the same thing as <meta name="viewport" content="width=device-width">,
 * but in the future W3C standard way. -ms- prefix is required for IE10+ to
 * render responsive styling in Windows 8 "snapped" views; IE10+ does not honor
 * the meta tag. See https://core.trac.wordpress.org/ticket/25888.
 */
@-ms-viewport {
	width: device-width;
}

@-o-viewport {
	width: device-width;
}

@viewport {
	width: device-width;
}











/*************************************************************************
3.03 - Site Logo
*************************************************************************/

.site-logo {
    margin: 0 auto;
    max-width:320px;
}

@media screen and (min-width: 992px) {
    .site-logo {
        margin: 0 auto 0 0;
    }
}



/*************************************************************************
3.04 - Top Nav
*************************************************************************/

#top-nav {
    font-family:Roboto, Sans-Serif;
	font-size: 1rem;
	font-weight: 500;
    margin: 10px 0;
}

#top-nav ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

#top-nav ul li a {
    border-right: 1px solid #A29F9E; /* Dark Gray */
    color: #A29F9E; /* Dark Gray */
    display: block;
    padding: 0 10px;
}

#top-nav ul li a:focus,
#top-nav ul li a:hover,
#top-nav ul li a:active {
	color: #3A71B1; /* Medium Blue */
}

#top-nav ul li.button a {
    background-color: #D3F0EF; /* Light Blue */
    border-radius: 100px;
    color: #074486; /* Dark Blue */
}

#top-nav ul li.button a:focus,
#top-nav ul li.button a:hover,
#top-nav ul li.button a:active {
    background-color: #074486; /* Dark Blue */
    color: #fff; /* White */
}

#top-nav ul li:last-of-type a,
#top-nav ul li.button a {
    border-right: 0px;
}

@media screen and (min-width: 992px) {
    #top-nav {
        margin: 0 1.5rem 0 1.5rem;
    }
}



/*************************************************************************
3.05 - Search Form
*************************************************************************/

.tbs-search-form form label {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 0.8125rem;
    -webkit-box-pack: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
	margin-right: 1.5rem;
}

.tbs-search-form form label input[type="search"] {
    border: 1px solid #074486; /* Dark Blue */
    border-bottom-left-radius: 100px;
    border-top-left-radius: 100px;
    padding: 0 0 0 15px;
    line-height: 2rem;
  	font-size: 0.9rem;
	font-family: Roboto, sans-serif;
	font-weight: 400;
	outline: none;
}

.tbs-search-form form label button[type="submit"] {
    background-color: #074486; /* Dark Blue */
    border: 1px solid #074486; /* Dark Blue */
    border-bottom-right-radius: 100px;
    border-top-right-radius: 100px;
    color: #fff; /* White */
    padding: 0 15px;
	font-size: 1.125rem;
	cursor: pointer;
}

.tbs-search-form form label button[type="submit"]:focus{
    outline: none;
}

.tbs-search-form form label {
	font-size: 1rem;
}







/*************************************************************************
**************************************************************************
SIDE BAR - RIGHT
**************************************************************************
*************************************************************************/

ul.news-list {
    list-style: none;
    padding: 0;
    margin: 0;
}


/*************************************************************************
3.21 - Sidebar
*************************************************************************/

.sidebar {
	padding-bottom: 1rem;
}

.sidebar > div {
	margin-bottom: 2rem;
}

/* todo: add some comments to this sidebar section */

@media screen and (min-width: 992px) {
    .sidebar-col:first-child>.sidebar {
        border-right: 1px solid rgba(0,0,0,.1);
        margin-right: -15px;
        padding-right: 15px;
    }
    .sidebar-col:last-child>.sidebar {
        border-left: 1px solid rgba(0,0,0,.1);
        margin-left: -15px;
        padding-left: 15px;
    }
}

@media (min-width: 768px) {
    .sidebar-sticky {
        height: 100%;
        border-right: 1px solid rgba(0,0,0,.1);
    }
    .sidebar-col:first-child .sidebar-sticky {
        /* border-right: 1px solid rgba(0,0,0,.1); */
        margin-right: -15px;
        padding-right: 15px;
    }
    .sidebar-col:last-child .sidebar-sticky {
        /* border-left: 1px solid rgba(0,0,0,.1); */
        margin-left: -15px;
        padding-left: 15px;
    }
    .sidebar-sticky .sidebar {
        position: -webkit-sticky;
        position: sticky;
        top: 40px;
        max-height: calc(100vh - 40px);
        overflow-y: auto;
        z-index: 400;
        padding-top: 1rem;
        padding-bottom: 1rem;

        border-left: none;
        border-right: none;
        margin-left: 0;
        padding-left: 0;
    }
}



/*************************************************************************
3.23 - Join ASBS
*************************************************************************/

.join a {
	background-color: #D3F0EF; /* Light Blue */
	display: block;
	padding: 35px 25px;
	box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2);
	border-radius: 2px;
}

.join img {
	display: block;
	margin: 0 auto 20px auto;
	width: 35px;
}

.join h5 {
	font-family: 'Merriweather', serif;
	text-align: center;
}

@media screen and (min-width: 992px) {
    .join a{
        padding: 20px 20px 0px 20px;
        display: inline-block;
        width: 100%;
    }
    .join img {
        float: left;
    }
    .join h5 {
        line-height: 1.75;
        font-size: 1.25rem;
    }
}


/*************************************************************************
3.11 - Info Box
*************************************************************************/

.info-area {
	font-size: 0.875rem;
	line-height: 1.25;
}

.info-area h2 {
	color: #078649; /*old green was #3d7806*/
	border-bottom: 1px solid #CCC8BF; /* Medium Gray */
	font-size: 1.25rem;
	margin: 0 0 15px 0;
	padding: 0 0 15px 0;
}

.info-area h3, .info-area h3 a {
	font-size: 1.1rem;
	font-weight:600;
	margin: 15px 0;
	transition: color .2s ease-in-out;
}

h3 a:hover, h4 a:hover {
	color: #7b301c;
}

.home-container .see-more-link{
	font-size: 0.9375rem !important;
}

.see-more-link {
	font-family: 'Merriweather', serif;
	margin: 5px 0 5px 0;
	font-style: italic;
	color: #074486;
	font-size: 0.875rem;
	font-weight: 700;
	transition: color .2s ease-in-out;
}

.see-more-link:hover {
	color:#3A71B1;
}

.see-more-link:before {
	font-family: "Font Awesome 5 Free";
	content: "\f0a9\00A0";
	font-weight: 900;
	font-style: normal;
	color: #074486;
	display: inline-block;
	position: relative;
}

.see-more-link:hover:before{
	animation: shake 0.82s cubic-bezier(.36,.07,.19,.97) both;
	transform: translate3d(0, 0, 0);
	backface-visibility: hidden;
	perspective: 1000px;
}

@keyframes shake {
  20%  { 
    -webkit-transform: translateX(2px);
    transform: translateX(2px);  
  }
  80%  {
    -webkit-transform: translateX(0px);
    transform: translateX(0px); 
  }
  100% { 
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

/*************************************************************************
3.12 - Forum Trending
*************************************************************************/

#forum-trending{
	display: none;
}

#forum-trending .bbpress-trending-widget ul li {
	font-size: 	1rem;
	font-weight: 600;
	text-transform: uppercase;
}

#forum-trending .bbpress-trending-widget ul li:before {
   background-color: #078649; /* Dark Green */
   border-radius: 100px;
   color: #fff;
   content: "\f07b";
   font-family: 'Font Awesome 5 Free';
   font-size: 0.6875rem;
   margin: 0 5px 0 0;
   padding: 5px;
   position: relative;
   top: -3px;
}

#forum-trending a.topic-title {
	color: #A29F9E; /* Dark Gray */
	font-family: 'Merriweather', serif;
	font-size: 1.125rem;
	font-style: italic;
}

#forum-trending a.topic-title:hover {
	color: #3A71B1
}


/*************************************************************************
3.13 - Latest News
*************************************************************************/

.info-box{
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2);
    border-radius: 2px;
    padding: 5%;
    background-color: #ffffff;
}

.info-box h3 {
	margin-bottom: 5px;
}

.info-box ul li {
	margin: 0 0 15px 0;
	padding: 0;
}






/*************************************************************************
NEWS
*************************************************************************/

.article-short {
    margin-bottom: 0.5rem;
}

.page-item.active .page-link {
	background-color: #618dc0;
	border-color: #618dc0;
}

/*************************************************************************
Accessing Content
*************************************************************************/

.access-banner{
	background: #efe1d5 no-repeat right;
	background-size: contain;
	background-origin: content-box;
	display: block;
	padding: 1rem 1.5rem;
	box-shadow: 0 2px 2px 0 rgba(0,0,0,0.07), 0 3px 1px -2px rgba(0,0,0,0.06), 0 1px 5px 0 rgba(0,0,0,0.1);
	border-radius: 2px;
	color: #77706a;
	font-family: 'Merriweather', sans-serif;
	font-size: 0.9rem;
	margin: 1rem 15px 2rem 15px;
}

.access-banner span{
	color: #77706a;
}

.access-banner:hover{
	color: #77706a;
}

.access-banner-deny{
	background-color: #efeed5;
	color: #776a6b;
}

.access-banner-renew{
	background-color: #efd5d6;
	color: #77776a;
}

.access-banner-allow{
	background-color: #d5efe1;
	color: 	#6a7770;
}

@media screen and (min-width: 992px){
	.access-banner{
		background-image: url('/images/access_banners/access_banner_lock.png');
	}
	.access-banner-deny{
		background-image: url('/images/access_banners/access_banner_deny.png');
	}

	.access-banner-renew{
		background-image: url('/images/access_banners/access_banner_renew.png');
	}

	.access-banner-allow{
		background-image: url('/images/access_banners/access_banner_allow.png');
	}
}

/*************************************************************************
Misc
*************************************************************************/

a.anchor {
    display: block;
    position: relative;
    top: -3rem; /* menu height is 2.5rem */
    visibility: hidden;
}

.statement-list{
	line-height: 1.25;
	list-style: none;
	padding-left: 0;
}

.statement-list li{
	margin-bottom: 0.5rem;
}

.statement-list a{
	font-size: 	1.0625rem;
	font-weight: 600;
	color: #074486;
}
.statement-list a:hover{
	color: #7b301c;
	transition: color 0.2s ease-in-out;
}
.statement-date {
	font-size: 0.875rem; 
	font-style: italic;
	padding-left: 1rem;
}
.main-section-shade {
    margin-top: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 1rem 1rem 1rem 1rem;
    position: relative;
	background: linear-gradient(to bottom, rgba(7,68,134,0.07) 0%,rgba(209,238,238,0.2) 90%,rgba(211,240,239,0.18) 91%,rgba(211,240,239,0) 100%);
	border-top: 1px solid #d3d5f0;
	border-left: 1px solid #d3d5f0;
	border-right: 1px solid #d3d5f0;
}
.quick-downloads h3 a{
	color: #9e5608;
}
.quick-downloads h3 a:hover{
	color: #7b301c;
	transition: color 0.2s ease-in-out;
}

.quick-downloads h3 a{
    font-size: 1rem;
}
.quick-downloads li.active h3{
	margin-left: -7px;
	border-left: 7px solid transparent;
	box-shadow: -5px 0 0 -1px #1f925b;
}
/* todo: change vertical margin a little - this is complicated because info-box sets margin on li and h3, and info-area also sets margin to h3... this should all get cleaned up a bit */
.quick-downloads li.sub h3 {
    padding-left: .5rem;
}
.quick-downloads li.sub h3 a{
    font-size: .875rem;
}

.news-title h3:hover{
	color: #7b301c;
	transition: color 0.2s ease-in-out;
}


/*.quick-downloads li.active a{
	box-shadow: inset 2px 0 0 0 #9e5608;
	padding-left: 4px;
}
.quick-downloads li.active a:before{
	content: "\f061";
	font-family: 'Font Awesome 5 Free';
	font-size: 0.9375em;
	padding-right: 4px;
}*/

/*************************************************************************
Banners
*************************************************************************/
.meeting-banner{
margin-bottom: 1.5rem;
width: 100%;
}

.page-banner{
	margin-bottom: 1.5rem;
	width: 100%;
	box-shadow: 0 2px 2px 0 rgba(0,0,0,0.07), 0 3px 1px -2px rgba(0,0,0,0.06), 0 1px 5px 0 rgba(0,0,0,0.1);
    border-radius: 2px;
}

/*************************************************************************
Resource Center
*************************************************************************/
.video-card p:last-child{
	margin-bottom: 0;
}

.video-card{
	border-left: 2px solid rgb(100,202,97);
	transition: all .2s ease-in-out;
	transition-property: border-left, padding-right;
	color: #3c3938;
    padding: 0.5rem 5px 0.5rem 0.5rem;
    margin: 1rem 0.5rem;
	box-shadow: 0 1px 5px 0 rgba(0,0,0,0.1);
}

.video-card:hover{
	border-left: 5px solid rgb(100,202,97);
	color: #3c3938;
	padding-right: 2px;
}

.video-card:hover h4{
	color: #7b301c;
}

/*************************************************************************
Committee List
*************************************************************************/

.committee-list li{
	border-top-right-radius: 0 !important;
	border-top-left-radius: 0 !important;
	border-bottom-right-radius: 0 !important;
	border-bottom-left-radius: 0 !important;
	padding: 0.25rem 1.25rem;
	background-color: #fdfdfe;
}

.committee-card .card-body .card-top{
	color: #3a71b1;
	font-size: 1.3rem;
	float: right;
	position: absolute;
	bottom: 15px; 
	right: 15px;
}

.committee-card li{
	background-color: transparent;
	border: none;
}

.committee-card .card-body{
	box-shadow: 0 2px 2px 0 rgba(0,0,0,0.07), 0 3px 1px -2px rgba(0,0,0,0.06), 0 1px 5px 0 rgba(0,0,0,0.1);
}

.committee-card .card-body ul{
	list-style-type: none;
	padding-inline-start: 0rem;
	padding-bottom: 1rem;
	margin-left: 0;
	padding-left: 0;
}

.committee-card .card-body li{
	padding-bottom: 0.5rem;
}

.committee-card .card-body h2{
	font-size: 1.25rem;
}

.committee-member {
	font-weight: 600;
}
.committee-title{
	padding-left: 1rem;
	font-size: 0.875rem;
}

.card.sticky-top{
	z-index: 0;
	top: 4rem;
}
.committee-card a.anchor {
	top: -4rem;
}
.committee-card a.anchor:target + div {
	background-color: #fdfefe;
}
.committee-card a.anchor:target + div .card-title, .committee-card a.anchor:target + div .card-subtitle {
	color: #056c3a;
}

.committee-card a.anchor:target + div .card-body{
	box-shadow: 0 2px 2px 0 rgba(7,134,73,0.28), 0 3px 1px -2px rgba(7,134,73,0.24), 0 1px 5px 2px rgba(7,134,73,0.4);
}

.committee-card a.anchor:target + div .card-top{
	color: #056c3a;
}


/*************************************************************************
Button
*************************************************************************/

.btn-primary:not(:disabled):not(.disabled){
	background-color: #006fe6;
	border-color: #197de8;
}

.btn-primary:not(:disabled):not(.disabled):hover{
	background-color: #0063cf;
	border-color: #1972d3;
}

.submenu-item .action-button, .action-button {
	background: #f08c20;
	color: #ffffff;
	margin-top:2px;
	margin-bottom:2px;
	padding: 7px;
	line-height: 1.15;
	display: inline-block;
	min-width: 150px;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	text-shadow: 0 1px 2px rgba(0,0,0,0.25);
	box-shadow: inset 0px 4px 6px rgba(246, 186, 121, 0.5), 0 1px 2px rgba(0,0,0,0.05);

	border-width: 2px;
	border-radius: 8px;
	border-style: solid;
	border-top-color: #f2a14a;
	border-bottom-color: #c07019;
	border-left-color: #f08c20;
	border-right-color: #f08c20;
		
	font-size: 1.125rem;
	font-weight: 600;
	text-align: center;
	vertical-align: middle;
	font-family: "Source Sans Pro", sans-serif;
	transition: all .1s ease-in-out;
	transition-property: background, color;
}

.submenu-item .action-button:hover, .action-button:hover{
	background: #f19736;
	color: #ffffff;
	cursor: pointer;
}

.submenu-item .action-button:active, .submenu-item.active, .submenu-item .action-button:hover:active, .action-button:active{
	color: #ffffff;
	background: #f08c20;
	border-bottom-color: #f2a14a;
	border-left-color: #f19736;
	border-right-color: #f19736;
	border-top-color: #f19736;
	box-shadow: inset 0px -4px 6px rgba(246, 186, 121, 0.12), 0 -1px 2px rgba(0,0,0,0.05);
	outline: none;
}

.login-button{
	font-family: Roboto, sans-serif;
	font-weight: 400;
	background-color: #078649;
	border-color: #1f925b;
	line-height:1.125rem;
    white-space: nowrap;
}

.login-button:hover{
	background-color: #067841;
	border-color: #1e8554;
}

.dropdown-toggle::after {
	content: none;
	transition: color .2s ease-in-out;
}

.login-button:not(:disabled):not(.disabled):active, .login-button:not(:disabled):not(.disabled).active, .show > .login-button.dropdown-toggle {
	background-color: #067841;
	border-color: #1e8554;
}

.login-button:not(:disabled):not(.disabled):active:focus, .login-button:not(:disabled):not(.disabled).active:focus, .show > .login-button.dropdown-toggle:focus {
	box-shadow: 0 0 0 0.2rem rgba(6, 120, 65, 0.5);
}

.login-button:focus, .login-button.focus {
	background-color: #067841;
	border-color: #1e8554;
    box-shadow: 0 0 0 0.2rem rgba(6, 120, 65, 0.5);
}

.small-login{
	background-color: #517ba8;
	border-color: #6088b2;
}

.small-login:hover{
	background-color: #6088b2;
	border-color: #6f93b9;
}

.small-login:not(:disabled):not(.disabled):active, .small-login:not(:disabled):not(.disabled).active, .show > .small-login.dropdown-toggle{
	border-color: #6f93b9;
}

.small-login:not(:disabled):not(.disabled):active:focus, .small-login:not(:disabled):not(.disabled).active:focus, .show > .small-login.dropdown-toggle:focus {
	box-shadow: 0 0 0 0.2rem rgba(96, 136, 178, 0.5);
}

.small-login:focus, .small-login.focus {
	background-color: #6088b2;
    border-color: #6f93b9;
    box-shadow: 0 0 0 0.2rem rgba(96, 136, 178, 0.5);
}


.small-login:not(:disabled):not(.disabled):active, .small-login:not(:disabled):not(.disabled).active, .show > .small-login.dropdown-toggle {
	background-color: #6088b2;
}


/*************************************************************************
Bootstrap Style Overrides
*************************************************************************/
.list-group-item.active {
background-color:#618dc0;
border-color:#618dc0;
}

/*Note: red replacement color should be #cf0f0b*/




/*Header*/

a:link, a:focus, a:hover, a:active {
    text-decoration: none;
}

a{
	color: #006fe6;
}

a:hover{
	color: #0058b8;
}

.page-link{
	color: #006fe6;
}

.page-link:hover{
	color: #0058b8;
}

.green, #main a:not(.no-green){
	box-shadow: inset 0 -3px 0 -1px rgb(100,202,97);
	color: inherit;
	transition: all 0.2s ease-in-out;
	transition-property:background-color, color;
}

#main a:not(.no-green):hover{
	color: #078649;
	background-color: #D7F1D6;
	cursor: pointer;	
}
.green:hover{
	color: #078649;
	background-color: #D7F1D6;
	cursor: pointer;	
}

@media screen and (min-width: 992px) {
#top-nav {
	font-size: 1rem !important;
}
li#menu-item-298 {
	padding-right: 8px !important;
	}
#top-nav ul li.button a {
	background-color: #D3F0EF;
	border-radius: 100px;
	color: #074486;
	}
#top-nav ul li a {
	border-right: 1px solid #A29F9E;
	color: #A29F9E;
	display: block;
	padding: 6px 10px;
	}	
}

.wide-img {
    width: 100%;
    height: auto;
}

.small-caps {
    font-variant: small-caps;
}

.dropdown-item:hover, .dropdown-item:focus{
	background-color: #e6eaf2;
    color: #063d78;
    transition: all .1s ease-in-out;
    transition-property: color, background-color;
}

.dropdown-item.active, .dropdown-item:active{
	background-color: #d5dce9;
	color: #1e5085;
	transition: all .1s ease-in-out;
    transition-property: color, background-color;
}

.tabcontent{
	padding: 1rem;
	border-left: 1px solid #dee2e6;
	border-right: 1px solid #dee2e6;
	border-bottom: 1px solid #dee2e6;
	background-color: #fcfcfd;
}

.nav-tabs .nav-link.active, .nav-tabs .nav-item.show .nav-link{
	background-color: #fcfcfd !important;
	border-color: #dee2e6 #dee2e6 #fcfcfd !important;
	font-weight: 600;
}

.nav-tabs .nav-link{
	font-weight: 600;
}

.nav-tabs .nav-link, .nav-tabs .nav-link{
	border-color: #dae0e5 #dae0e5 #dae0e5;
	background-color: #e9ecef;
}

.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
    border-color: #dae0e5 #dae0e5 #eceff2;
	background-color: #f3f5f7;
}

.nav-tabs > li > a, .nav-pills > li > a {
	margin-right: 2px;
}
.navlinkoverride{
	padding-left: 12px;
	padding-right: 12px;
}

/*************************************************************************
Reports
*************************************************************************/
.table-report {

}
.table-report, .table-report th, .table-report td {
    border: 1px solid grey;
}
.table-report th, .table-report td {
    padding: .25rem .5rem;
}
.table-report tr:nth-child(even) {background-color: #f0f0f0;}


/*************************************************************************
FAQs
*************************************************************************/
.accordion ol {
  counter-reset: my-awesome-counter;
  list-style: none;
  margin: 0 0 1rem 0;
  padding:0;
}
.accordion ol button > li {
  margin: 0 0 0.5rem 0;
  counter-increment: my-awesome-counter;
  position: relative;
}
.accordion ol .card-body p:last-child{
  margin-bottom: 0;
}
.accordion ol li::before {
  content: counter(my-awesome-counter);
  color: #074486;
  font-size: 1.1rem;
  font-weight: bold;
  position: absolute;
  size: 2rem;
  left: -2.75rem;
  line-height: 2rem;
  width: 2rem;
  height: 2rem;
  top: -5px;
  background: #f8f9fa;
  border-radius: 15%;
  text-align: center;
  box-shadow: 1px 1px 1px #c3d4e7;
  background-color: #ffffff;
}

.accordion ol ul{
  list-style-type: disc;
}

.accordion ol ul li::before {
  content: "";
  background: none;
  box-shadow: none;
}

.accordion ol ol{
	list-style: upper-alpha;
}

.accordion ol ol li::before {
  content: "";
  background: none;
  box-shadow: none;
}

/*************************************************************************
Certification Applications
*************************************************************************/
.certlist li {
	margin: 0 0 0.5rem 0;
}

.info-box.review-box {
	padding: 0 !important;
	border: 0 !important;
}

.review-box .form-row{
	padding-bottom: 0.25rem;
	padding-top: 0.25rem;
	margin-left: 0;
	margin-right: 0;
}

.review-box .card-footer{

}

.review-box .card-header {
	color: #074486;
	background-color: #e6eaf2;
	margin-bottom: 0.25rem;
}

.review-box .card-header a {
	color: #074486;
}

.info-box.review-box h2 a:hover {
	color: #7b301c;
	transition: color .2s ease-in-out;
}


/*************************************************************************
Home Page
*************************************************************************/

.home-container{
    width: 100%;
    max-width:1500px;
    margin: -2rem auto 0 auto;
    padding-bottom: 2rem;
}

/* MAIN CAROUSEL */
.main-carousel .carousel-inner{
    height: 375px;
}
.main-carousel .carousel-item{
    height: 100%;
    background-position: center;
    background-size: cover;
}
.carousel-control-prev, .carousel-control-next {
    opacity: .65;
}
.carousel-control-prev{
	background: linear-gradient(to left, rgba(0,0,0,0), #f8f9fa41);
}
.carousel-control-next{
	background: linear-gradient(to right, rgba(0,0,0,0), #f8f9fa41);
}
.main-carousel .carousel-control-prev, .main-carousel .carousel-control-next{
    width: 50px;
}
.main-carousel .carousel-arrow {
    font-size: 2rem;
    text-shadow: 0 1px 1px rgba(229, 229, 229, 0.1), 0px -1px 2px rgba(0, 0, 0, 0.1);
}
.main-carousel .carousel-text{
    color: #ffffff;
    padding: 40px 50px 50px 50px;
    height: 100%;
    overflow: hidden;
    background-color: rgba(58,113,177,0.87);
    width:100%;
}
.main-carousel .carousel-indicators {
    margin-left: auto;
    margin-right: auto;
}
@media screen and (min-width: 576px){
    .main-carousel .carousel-text{
        margin-left: 50px;
        width: 410px;
    }
    .main-carousel .carousel-indicators {
        margin-left: 0;
        margin-right: 0;
        right: unset;
        left: 255px;
        transform:translateX(-50%);
    }
}
.main-carousel .carousel-item:nth-child(even) .carousel-text{
    background-color: rgba(35, 154, 61, 0.867);
}
.main-carousel .carousel-text h2{
    color: #ffffff;
    font-style: italic;
    font-size: 1.625rem;
    text-shadow:0 -2px 0 rgba(0, 0, 0, 0.25);
}
.main-carousel .carousel-text h3{
    color: #ffffff;
}
.main-carousel .carousel-text .message{
    font-size: 1.0625rem;
}

.main-carousel .slide-button{
    outline: none;
    margin-top: 20px;
}
.main-carousel .slide-button a{
    color: #ffffff;
    border: solid 2px rgba(255,255,255,.40);
    font-weight: bold;
    font-size: 1.125rem;
    margin-right: 20px;
    padding: 7.5px 20px 7.5px 15px;
    border-radius: 100px;
    background-color: rgba(7,68,134,.5);
    transition: all 0.2s linear 0s;
	transition-property: background-color;
}
.main-carousel .slide-button a:hover{
    background-color: rgba(7,68,134,75);
}
.main-carousel .carousel-item:nth-child(even) .slide-button a{
    background-color: rgba(21,92,36,.5);
}
.main-carousel .carousel-item:nth-child(even) .slide-button a:hover{
    background-color: rgba(21,92,36,.75);
}
.main-carousel .slide-button a:after {
    content: "\f061";
    font-family: 'Font Awesome 5 Free';
    font-size: 0.9375rem;
    font-size: 0.9375rem;
    display: inline-block;
    white-space: nowrap;
    text-align: left;
    padding-left: 9px;
    transition: all 0.2s linear 0s;
}
.main-carousel .slide-button a:hover:after{
    padding-left: 12px;
    margin-right:-3px;
    transition: all 0.15s linear 0s;
}
/*#hp-billboard div.tbs-slick-slide:nth-child(odd) .slide-button a{
    background-color: rgba(7,68,134,.50);
}
#hp-billboard div.tbs-slick-slide:nth-child(even) .slide-button a{
    background-color: rgba(21,92,36,.5);
}*/


/* QUICK LINKS */
.card-img-top {
    min-height: 1px; /* fixes ie11 ignoring aspect ratio for some reason */
}
.quick-links {
    background: linear-gradient(to bottom, rgba(7,68,134,0.15) 0%,rgba(209,238,238,0.4) 90%,rgba(211,240,239,0.36) 91%,rgba(211,240,239,0) 100%);
    margin: auto;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
}
.quick-links h2 {
    color: #fff;
    background-color: #074486;
    font-size: 1.5rem;
    text-shadow: 0 -2px 0 rgba(0, 0, 0, 0.25);
    border-bottom: 4px solid rgba(0, 0, 0, 0.15);
    font-style: normal;
    font-weight: 600;
    padding: 8px 16px;
    text-transform: capitalize;
}
.quick-links-flex {
    max-width: 500px;
    margin: auto;
}
.card-container {
    display: flex;
    width: 50%;
    padding: 10px;
}
.card-container:hover .card-body {
    color: #074486;
    transition: color .1s ease-in-out;
}
.quick-link-card {
    box-shadow: 0px 0px 5px 1px rgba(76, 64, 35, .10);
    color: black;
    /* width: 170px;
    height: 250px;
    margin: 10px; */
    border-radius: 10px;
    border:1px solid #bbbbbb;
    overflow: hidden;
    background-color: #f9f9f9;
    transition: transform .15s, box-shadow .3s;
    text-align: center;
    overflow-wrap: normal;
    max-width: 100%; /* for ie10 */
}

.card-container:hover .quick-link-card{
    transform: scale(1.05);
    box-shadow: 0px 0px 30px 1px rgba(76, 64, 35, 0.15), 0 2px 0px 0 rgba(35,154,61,0.75);
}
.quick-link-card .card-title {
    margin-bottom: 0;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.25;
}
.quick-link-card .card-body {
    padding: .5rem 0.25rem;
	font-size: 1rem;
}
/* very tiny phone (max-width, not bootstrap) */
@media screen and (max-width: 280px){
    .card-container {
        width: 100%;
        padding-left: 20%;
        padding-right: 20%;
    }
}
/* regular phone is default (todo: change this to make it consistent, tiny phone should be default i guess) */
/* large phone (not bootstrap) */
@media screen and (min-width: 480px){
    .card-container {
        width: 33.3%;
    }
}
/* small tablet */
/*@media screen and (min-width: 576px){
    .card-container {
        width: 33.3%;
    }
}*/
/* tablet */
/* @media screen and (min-width: 768px){
    .card-container {
        width: 33.3%;
    }
    .quick-link-card .card-body {
        min-height: 5rem;
    }
} */
/* narrow screen */
@media screen and (min-width: 992px){
    .card-container {
        width: 50%;
    }
    .quick-links-col {
        max-width: 325px;/*375px;*/
    }
}
/* wide screen */
/* @media screen and (min-width: 1200px){
    .card-container {
        width: 50%;
    }
    .quick-link-card .card-body {
        min-height: 5rem;
    }
} */


/* INFO BOXES */
.home-container .info-area {
    font-size: 1.125rem;
}
.home-container .info-area h2{
    font-size: 1.5rem;
}
.home-container .info-area h3, .home-container .info-area h3 a {
    font-size: 1.25rem;
}

/* FEATURED CONTENT */
#featured-content{
    padding-top: 1rem;
    margin-bottom: 1rem;
}

#featured-content h3, #featured-content h3 a {
    font-family: 'Merriweather', serif;
}

#featured-content .see-more {
	padding-bottom: 1rem;
}


/* MEMBERSHIP BENEFITS */

.membership-benefits h2 {
    font-style: italic;
    font-size: 1.5rem;
}

.membership-benefits h3 {
    font-size: 1.375rem;
}

.membership-benefits {
    background-color: #D3F0EF;
    padding: 30px;
}
.membership-benefits ul {
    list-style: none;
}
.membership-benefits li {
    padding: 0.125em 0;
    font-size: 	1.125rem;
}
.membership-benefits li:before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f00c';
    margin: 0 7.5px 0 -22.5px;
    color: #074486;
}

.membership-benefits-row {
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2);
}


/*******************************************
Scalable Font Sizes Based on Media Query
*******************************************/

/* Portrait phone is default */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
	html{
		font-size: 0.9375rem;
	}
}


/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
	
}


/* Large devices (laptop, 992px and up) */
@media (min-width: 992px) {
	html{
		font-size: 1.0625rem;
	}
	h1{
		font-size: 2.3rem;
	}
	.news-header{
		font-size: 2rem;
	}
}


/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
}


/* Compatibility between Bootstrap 4 and jQuery UI */
.ui-widget * {
	box-sizing:content-box;
}



