/*--------------------------------------------------------
	FONT ASSIGNMENTS
--------------------------------------------------------*/

:root {
    overflow-x: clip;
}

body {
	font-family: 'Lato', sans-serif;
    font-size: 18px;	
}
p {
	font-family: 'Lato', sans-serif;
	font-size: 18px;
	color: #3D3D3D;
}
.container{
    padding: 1em;
    padding-left: 2em;
}
em {
    color: #2C2C2D;
}

/*--------------------------------------------------------
	H1 - H6
--------------------------------------------------------*/
h1, h2, h3, h4 {
    margin: 0px;
    padding-top: 20px;
    padding-bottom: 10px;
    font-family: 'Lato', sans-serif;
    font-weight: bold;
}
h1 {
    color: #29a34a;
    font-size: 42px;
}
h2 {
    color: #29a34a;
    font-size: 28px;
}
h3 {
    color: #29a34a;
    font-size: 25px;
}
h4 {
	color: #29a34a;
    font-size: 21px;
}
.h4-inline {
	color: black;
    font-size: 21px;
}
h5 {
	color: #29a34a;
    font-size: 17px;
}
.h5-inline {
	color: #29a34a;
    font-size: 17px;
}

h1.title{
	margin-top: 15px;
	padding-top: 1em;
    margin-bottom: 15px;
}
/*--------------------------------------------------------
	BRANDING COLORS
--------------------------------------------------------*/
.bg-green {
    background-color: #10A54B;
}
.bg-lime {
    background-color: #CBE066;
}
.bg-lime-20pct {
    background-color: #f2f7d8;
}
.bg-lime-40pct {
    background-color: #ecf4c8;
}
.bg-blue {
    background-color: #60c8d4;
}
.bg-blue-20pct {
    background-color: #dff1f2;
}
.bg-blue-40pct {
    background-color: #c1e6ea;
}
.bg-bright-blue {
    background-color: #25B2F4;
}

.bg-yellow {
    background-color: #fed600;
}
.bg-yellow-20pct {
    background-color: #fff9d7;
}
.bg-yellow-40pct {
    background-color: #ffeba8;
}
.bg-red {
    background-color: #f05158;
}
.bg-red-20pct {
    background-color: #fcd9d1;
}
.bg-red-40pct {
    background-color: #f9b6ad;
}
.bg-gray {
    background-color: #808080;
}
.bg-purple {
    background-color: #7B68EE;
}

.color-green {
    color: #10A54B;
}
.color-lime {
    color: #CBE066;
}
.color-blue {
    color: #60c8d4;
}
.color-yellow {
    color: #fed600;
}
.color-red {
    color: #f05158;
}
.color-gray {
    color: #808080;
}

.color-dark {
    color: #2e2e2e;
}    
    
.color-purple {
    color: #7B68EE;
}
.color-white {
    color: #ffffff;
}

.color-im3 {
    color: #FF8000;
}

.color-im45 {
/*    color: #99004C;*/
color: #29a34a;
}

/*--------------------------------------------------------
	COLUMNS
--------------------------------------------------------*/
.col-border {
    border: 1px solid #E0E0E0;
    padding: 10px 20px;
    margin-bottom: 20px;
}

/*--------------------------------------------------------
	LINKS
--------------------------------------------------------*/
a {
	font-family: 'Lato', sans-serif;
}

a {
    color: #28559c;
}

a:hover, a:focus, a:active{
	outline: none;
}

a:is(:hover, :focus) {
    outline: 0px;
}

a:focus-visible {
    outline: 2px solid #10a54b; /*hex color can be replaced here with org color or link color*/
}

.reg-btn { 
    font: bold 16px Arial; 
    text-decoration: none; 
    background-color: #E0E0E0; 
    color: #ffffff; 
    padding: 1ch 2ch; 
}

a.reg-btn:hover, a.reg-btn:focus, a.reg-btn:active {
    background-color: #CBE066;
    color: #FFFFFF;
}

.btn-lime { 
    font: bold 16px Arial; 
    text-decoration: none; 
    background-color: #abd037; 
    color: white; 
    padding: 1ch 2ch; 
    margin-bottom: 2px;
    border-radius: 5px;
    box-shadow: 2px 2px 0px 0px darkgray;    
}

a.btn-lime:hover, a.btn-lime:focus, a.btn-lime:active {
    box-shadow: 4px 4px 0px 0px darkgray;
}

.btn-green { 
    font: bold 16px Arial; 
    text-decoration: none; 
    background-color: #10A54B;
    color: white; 
    padding: 1ch 2ch; 
    margin-bottom: 2px;
    border-radius: 5px;
    box-shadow: 2px 2px 0px 0px darkgray;
}

a.btn-green:hover, a.btn-green:focus, a.btn-green:active {
    box-shadow: 4px 4px 0px 0px darkgray;
}

.btn-blue { 
    font: bold 16px Arial; 
    text-decoration: none; 
    background-color: #60c8d4; 
    color: white; 
    padding: 1ch 2ch; 
    margin-bottom: 2px;
    border-radius: 5px;
    box-shadow: 2px 2px 0px 0px darkgray;     
}

a.btn-blue:hover, a.btn-blue:focus, a.btn-blue:active {
    box-shadow: 4px 4px 0px 0px darkgray;
}

.btn-red { 
    font: bold 16px Arial; 
    text-decoration: none; 
    background-color: #f05158; 
    color: white; 
    padding: 1ch 2ch; 
    margin-bottom: 2px;
    border-radius: 5px;
    box-shadow: 2px 2px 0px 0px darkgray;       
}

a.btn-red:hover, a.btn-red:focus, a.btn-red:active {
    box-shadow: 4px 4px 0px 0px darkgray;
}

.btn-yellow { 
    font: bold 16px Arial; 
    text-decoration: none; 
    background-color: #fed600;
    color: black; 
    padding: 1ch 2ch; 
    margin-bottom: 2px;
    border-radius: 5px;
    box-shadow: 2px 2px 0px 0px darkgray;    
}

a.btn-yellow:hover, a.btn-yellow:focus, a.btn-yellow:active {
    box-shadow: 4px 4px 0px 0px darkgray;
}

.btn-orange { 
    font: bold 16px Arial; 
    text-decoration: none; 
    background-color: #E3B54D; 
    color: white; 
    padding: 1ch 2ch; 
    margin-bottom: 2px;
}

a.btn-orange:hover, a.btn-orange:focus, a.btn-orange:active {
    font-style: italic;
}

.conf-btn { 
    font: bold 16px Arial; 
    text-decoration: none; 
    background-color: #FED204; 
    color: black; 
    padding: 1ch 2ch; 
}
a.conf-btn:hover, a.conf-btn:focus, a.conf-btn:active {
    background-color: black;
    color: #FED204;
}

.click {
    cursor: pointer;
}



/*--------------------------------------------------------
	IMAGES, Objects
--------------------------------------------------------*/
img {
	border: 0px;
}
span.inline-img {
  display: inline; /* the default for span */
    vertical-align: bottom;
  width: 100px;
  height: 100px;
  padding: 5px;  
  background-color: white; 
}

/* rows and columns margin inside grid+ */
#gm-canvas .row, #gm-canvas .column {
    margin-top: 1em;
    margin-bottom: 1em;
}

.embed-wrapper { display: contents; }

/*--------------------------------------------------------
	LISTS
--------------------------------------------------------*/
.list-no-bullet {
    list-style-type: none;
    padding-bottom: 1em;
}
.list-no-indent {
    padding-left: 0px;
}
.last-item {
    padding-bottom: 1em;
}

.double-spaced li {
    margin-bottom: 10px;
}
.single-spaced li {
    margin-bottom: 0;
}

/*--------------------------------------------------------
    TABLES
--------------------------------------------------------*/
th {
    padding: 1ch 2ch;
}

td {
    padding: 0 2ch;
}


.row-gap {
    margin-top: 10px;
}


/*--------------------------------------------------------
						HEADER
--------------------------------------------------------*/

div#main-header {
    width: 100%;
    position: fixed;
    top: 0px;
    background-color: white;
    z-index: 1999;
    font-size: 1.2em;
    color: #29a34a;
    padding-top: 10px;
}

body:has(#mms-admin-sidebar) div#main-header {
    width: auto;
    right: 0;
}

body:has(#mms-admin-sidebar:not(.is-collapsed)) div#main-header {
    left: 312px;
}

body:has(#mms-admin-sidebar.is-collapsed) div#main-header {
    left: 64px;
}

#logo-wrap img {
    width: 165px;
    max-width: 100%;
}


.social-media {
    margin-top: -2px;
}
.social-media img {
    width: 35px;
    height: 35px;
}
li.social-media a {
    padding-left: 2px !important;
    padding-right: 2px !important;
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}


/* Mobile Menu Social media */

.mobile-socialmedia-wrap {
    padding: 5px 0px 0px;
}
.mobile-socialmedia-wrap ul {
    position: relative;
    padding: 0px;
    list-style-type: none;
    margin: 0px;
}
.mobile-socialmedia-wrap ul li {
    display: inline-block;
}
.mobile-socialmedia-wrap li a {
    padding-left: 0px !important;
    padding-right: 0px !important;
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}


/* Search */

input.search-button {
    display: none;
}
.search-wrap input {
    box-shadow: none;
    height: 20px;
    color: #474747;
    font-size: 14px;
    font-family: 'Lato', sans-serif;
    border: 1px solid #A9A9A9;
    vertical-align: middle;
}
li.search-wrap {
    margin-top: 0px;
    /*margin-left: 10px;*/
}
li.search-wrap a:hover, li.search-wrap a:focus {
    background: transparent !important;
}

/* Mobile Search */

.mobile-search-menu {
    margin: 0 auto;
    text-align: center;
}

input.search-button {
    display: none;
}
#mobile-search-wrap {
    display: inline-block;
    margin-right: 10px;
}
#mobile-search-wrap input {
    box-shadow: none;
    height: 20px;
    color: #474747;
    font-size: 14px;
    font-family: 'Lato', sans-serif;
    border: 1px solid #A9A9A9;
    vertical-align: middle;
}


/* Mobile Menu */

.mobilemenu-text {
    display: inline-block;
    vertical-align: top;
    padding-right: 5px;
}

.lines .left {
    float: left;
}
.line1 {
    border-bottom: 6px solid #acd333;
    margin-bottom: 3px;
}
.line2 {
    border-bottom: 6px solid #60c8d4;
    margin-bottom: 3px;
}
.line3 {
    border-bottom: 6px solid #fed600;
    margin-bottom: 3px;
}
.line4 {
    border-bottom: 6px solid #f05158;
    margin-bottom: 3px;
}

.wideline1 {
    border-bottom: 12px solid #acd333;
    margin-bottom: 3px;
}
.wideline2 {
    border-bottom: 12px solid #60c8d4;
    margin-bottom: 3px;
}
.wideline3 {
    border-bottom: 12px solid #fed600;
    margin-bottom: 3px;
}
.wideline4 {
    border-bottom: 12px solid #f05158;
    margin-bottom: 3px;
}

.wideline5 {
    border-bottom: 12px solid #10A54B;
    margin-bottom: 3px;
}


/* Lines */

.lines {
    width: 100%;
    background-color: transparent;
    margin-top: 7px;
}



/*-----------------Search Bar*/

/*--------------------------------------------------------
					Desktop Navigation
--------------------------------------------------------*/

.navbar-nav>li a{
	color: ;
	font-family: 'Lato', sans-serif;
	font-size:11px;
}
.navbar-nav>li>a:hover, .navbar-nav>li>a:focus {
	background-color: transparent;
}



/*----------------Slideshow----------*/

.slideshow-wrap [class*="col-"] {
    padding: 0;
}
.slideshow-wrap .container {
    width: 100%;
    padding-left:0;
    padding-right:0;
}
.slideshow-wrap img {
    width: 100%;
}
.slideshow-wrap .carousel-control{
	display: none;
}

.carousel-control.left, .carousel-control.right, .carousel-control:hover{
	background-image: none;
	font-size: ;
	font-weight: ;
	z-index: 101;
}
.carousel-caption {
    position: absolute;
    z-index: 100;
    background: rgba(0, 0, 0, .15);
    padding: 15px 15px;
    left: auto;
    top: auto;
    right: 0px;
    bottom: 0px;
    width: 100%;
    text-align: center;
    text-shadow: none;
}
.carousel-indicators {
	bottom: 0px;
}
.carousel-indicators li {
    width: 12px;
    height: 12px;
    background: #fff;
    border: 0px;
    margin: 0 auto;
    margin-left: 7px;
}
.carousel-indicators .active {
    background: #acd333;
    width: 12px;
    height: 12px;
    margin-left: 7px;
}

@media (min-width: 990px) and (max-width: 1199px) {
	.carousel-caption{
		
	}
}
@media (max-width: 990px){
	.carousel-caption{
		
	}
	#slide-row .col-md-12{
		
	}
}
.caption-text {
    font-size: 18px;
    color: #fff;
    margin-bottom: 15px;
    text-transform: none;
    font-weight: normal;
}
a.caption-btn {
    font-weight: bold;
    background: #acd333;
    color: #fff; 
    max-width: 200px;
    display: block;
    padding: 7px 30px;
    text-align: center;
    margin: 0px auto;
    text-transform: uppercase;
    font-size: 22px;
    text-decoration: none;
    margin-bottom: 25px;
}
.carousel-caption a:hover {
    background: #fff;
    color: #acd333; 
    text-decoration: none;
}
.carousel-control.left {
    height: 75px;
    width: 75px;
    background: rgba(43,68,80,0.3);
    color: #fff;
    top: 250px;
    line-height: normal;
    bottom: 0;
    margin: auto;
    opacity: 1;
    text-shadow: none;
    font-size: 50px;
    font-weight: 300;
    font-family: 'Lato', sans-serif;
    padding-top: 5px;
}
.carousel-control.right {
    height: 75px;
    width: 75px;
    background: rgba(43,68,80,0.3);
    color: #fff;
    top: 250px;
    line-height: normal;
    bottom: 0;
    margin: auto;
    opacity: 1;
    text-shadow: none;
    font-size: 50px;
    font-weight: 300;
    font-family: 'Lato', sans-serif;
    padding-top: 5px;
}

/*----------------End Slideshow------*/

/*---------- news_feed_pages function ----*/
div#news-button-container {
	margin: 10px 0px 0px 0px;
	text-align: right;
}
div#news-button-verbiage {
	margin-right: 10px;
	display: inline-block;
	color: #5DB2D7;
}
div#news-button-container:active{	
	margin: 9px 0px 0px -1px; /* keeps buttons from jumping around when pressed*/
}
div.news-button {
	display: inline-block;
	padding: 5px 10px;
	background-color: #5DB2D7;
	color: black;
	border: 1px solid black;
	border-radius:5px;
	margin: 0px;
}
div.nb-number:hover {
	opacity:0.7; /*buttons move toward backgound color when hovered over*/
	cursor: pointer;
}
div.nb-number:active {
	/* make buttons look like they are being pressed when clicked*/
	opacity:0.6;
	border-width:2px 0px 0px 2px; 
}
div.nb-selected {	
	/* style the selected button */
	opacity:0.5;
}
div#nb-ellipsis-left, div#nb-ellipsis-right {
	background-color: transparent;
	color: #5DB2D7;
	border: 0px;
	margin: 0px;
	padding: 5px;
	font-weight: bold;
}
/*---------- END: news_feed_pages ----*/

/*--------------------------------------------------------
	INDEX / MAIN BODY
--------------------------------------------------------*/

#body-container {
    margin-top: 150px;
}

.other-item h3 {
    padding-top: 0;
}

.indent {
    padding-left: 10px;
}

.highlight {
    background-color: yellow;
    font-weight: bold;
}
.emphasis {
    font-weight: bold;
}
.hanging-indent {
    padding-left: 20px;
    text-indent: -20px;
}
.bottom {
    vertical-align: bottom ;
}
.no-top-pad {
    padding-top: 0;
}
/* Home offerings */

.offerings-outside-wrap {
    padding: 50px 0px 25px;
}
.offerings-wrap {
    max-width: 990px;
    margin: 0 auto;
}
.offerings-wrap a {
	text-decoration: none;
}
.offerings-wrap a:hover {
	text-decoration: underline;
}
.offering {
    float: left;
    min-height: 1px;
    position: relative;
   /* width: 30%; */
}
.offering a {
	color: #fff;
	text-align: center;
}
.offering-img-round {
    border-radius: 50%;
    width: 100%;
    height: 50%;
    z-index: 20;
    color: #fff;
    vertical-align: middle;
    position: relative;
    margin: 0 auto;
    font-size: 2.0em;
    padding-top: 40px;
    line-height: normal;
    padding-bottom: 40px;
    min-height: 204px;
    padding-left: 5px;
    padding-right: 5px;
}
.offering-2-lines {
    line-height: 50%;
}

/* KCM Virtual */
.live-date {
    margin-top: 10px;
    font-size: 250%;
}
.live-time {
    font-size: 100%;
}
/*home page boxes*/

.vtitle {
    color: white;
    text-align: center;
}

.virtual {
    margin-bottom: 30px;
}

.virtual p {
    font-size: 120%;
}

.resource p {
    font-size: 100%;
}

.vple {
    border: 4px solid #60c8d4;
    padding: 10px;
}

.vres {
    border: 4px solid #f05158;
    padding: 10px;
}

.vfam {
    border: 4px solid #CBE066;
    padding: 10px;
}

.vmff {
    border: 4px solid #7B68EE;
    padding: 10px;
}

.vfa {
    border: 4px solid #10A54B;
    padding: 10px;
}

.vig {
    border: 4px solid #25B2F4;
    padding: 10px;
}


/* KCM News */

.news-outside-wrap {
    padding: 50px 0px 25px;
}
.news-outside-wrap h1 {
    color: #29a34a;
    text-align: center;
    font-size: 42px;
}
.news-inside-wrap .row {
    border: 1px solid #E9E9E9;
    margin: 0px !important;
}

.news-inside-wrap #news-left-wrap {
	padding-left: 0px !important;
    padding-right: 15px !important;
}
.news-inside-wrap #news-right-wrap {
    padding-left: 15px !important;
    padding-top: 15px;
    padding-bottom: 15px;
}
.news-inside-wrap p {
    font-size: 18px;
    color: #000;
    margin-bottom: 20px;
    line-height: 24px;
}
.news-inside-wrap a {
    color: #252525;
    text-decoration: none;
    font-size: 18px;
}
a.btn-link {
    color: #551A8B;
    text-decoration: underline;
    font-family: 'Lato', sans-serif;
}

/* Other News */

#other-news-events-wrap {
    margin-top: 20px;
    margin-bottom: 20px;
}
.other-item {
	border-bottom: 1px solid #E9E9E9;
	margin-bottom: 20px;
    padding-bottom: 20px;	
}
.other-item a {
	color: #551A8B;
    text-decoration: underline;
    font-family: 'Lato', sans-serif;
}

/* Professional Learning Open Events */
.ple-box {
    border: 5px solid #CBE066;
}

.event-item {
    margin-bottom: 10px;
}
a.ev-title-link {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}
.event-date {
    font-size: 12px;
    padding: 5px 0px;
    color: #000;
}
.register-btn {
    margin: 5px 0px 10px;
    font-weight: bold;
}
.register-btn a {
    font-size: 15px;
    color: #fff;
    background-color: #acd333;
    padding: 6px 12px;
    text-decoration: none;
    font-weight: bold;
}

.list-container {
    list-style-type: none;
    padding-bottom: 1em;
}

.flex-container {
    display: flex;
}

.img-container {
    padding: 1em;
}

/*--------------------------------------------------------
	CSS STYLE FOR COLLAPSIBLE LISTS
--------------------------------------------------------*/

.accordion, .accordion-green, .accordion-lime, 
.accordion-yellow, .accordion-blue, .accordion-red, 
.accordion-purple, .accordion-gray, .accordion-im3,
.accordion-im45 {
    cursor: pointer;
    padding: 1ch;
    width: 100%;
    border: none;
    text-align: left:
    outline: none;
    transition: 0.4s;
}

.active-lime, .accordion:hover, .accordion-lime:hover {
    background-color: #CBE066;
    color: white;
}

.active-green, .accordion-green:hover {
    background-color: #29a34a;
    color: white;
}

.active-blue, .accordion-blue:hover {
    background-color: #60c8d4;
    color: white;
}

.active-yellow, .accordion-yellow:hover {
    background-color: #fed600;
    color: white;
}

.active-red, .accordion-red:hover {
    background-color: #f05158;
    color: white;
}

.active-purple, .accordion-purple:hover {
    background-color: #7B68EE;
    color: white;
}

.active-gray, .accordion-gray:hover {
    background-color: #808080;
    color: white;
}
.active-im3, .accordion-im3:hover {
    background-color: #FF8000;
    color: white;
}
.active-im45, .accordion-im45:hover {
    background-color: #99004C;
    color: white;
}
.collapse-panel {
    padding: 0 1ch;
    max-height: 0;
    overflow: hidden;
    transition: height 0.2s ease-out;
}
/*  removed 
.panel {
    padding: 0 1ch;
    max-height: 0;
    overflow: hidden;
    transition: height 0.2s ease-out;
}
*/


/*--------------------------------------------------------
	CSS STYLE FOR INNER PAGES
--------------------------------------------------------*/

/*--------------------------------------------------------
    MMS PAGES
--------------------------------------------------------*/

#mheader_5_wrapper td, #mheader_5_wrapper th {
    padding: 0;
    border: none;
}

/*--------------------------------------------------------------
						Modal Log In
--------------------------------------------------------------*/
.modal{
	overflow-y: visible;
	z-index: 2001;
}
.modal-dialog{
	margin: 50px auto;
}
.modal-header{
    text-align: center;
}
.modal-body {
    padding: 15px 23px;
}
.modal-sm{
    width:250px;
}
#login input{
    width: 200px;
    height: 30px;
    border-radius: 5px;
    margin: 0px auto;
    margin-bottom: 10px;
    border: 1px solid #999;
    padding: 3px;
}
#login input[type="submit"] {
    background: #acd333;
    color: #fff;
    border: 0px !important;
    border-radius: 0px !important;
}
#login input[type="submit"]:hover {
    background: #10A54B;
    border: 1px solid #fff;
    color: #fff;
}
#login a {
    margin-top: -5px;
    margin-bottom: 10px;
    display: block;
    color: #10A54B;
}
#login input:last-of-type{
    width: 100px;
    margin: none;
}
h6.modal-title {
    color: #10A54B;
    font-size: 20px;
    font-weight: 700;
}
#login input {
    width: 200px !important;
    height: 30px;
    border-radius: 5px;
    margin: 0px auto;
    margin-bottom: 10px;
    border: 1px solid #999;
    padding: 3px;
}

/*--------------------------------------------------------
    Feedback Modal
--------------------------------------------------------*/

.try .modal-dialog{
	
	margin: 50px auto;
}
.try .modal-header{
    text-align: center;
}
.try .modal-body {
    padding: 15px 23px;
}

/*--------------------------------------------------------
    PROGRAM RESOURCE PAGES LOGIN MODAL
--------------------------------------------------------*/

.btn-prp {
    color: black;
    background-color: #acd333;
    box-shadow: none;
    border: none;
    padding: 6px 12px;
    font-size: 14px;
}


/*--------------------------------------------------------
	FOOTER
--------------------------------------------------------*/

#footer-row {
    color: #29a34a;
    font-size: 0.7em;
    width: 100%;
}
.footer-wrapper {
    padding-top: 50px;
    padding-bottom: 20px;
}
.footer-wrapper p {
    color: #29a34a;
    font-size: 16px;
    padding-top: 15px;
}

.footer-wrapper a {
	color: #29a34a;
	text-decoration: none;
}
/*
.footer-wrapper p span, .footer-wrapper p span a {
    color: #29a34a;
}
*/
.footer-text a {
    /*color: #29a34a;*/
    font-size: 20px;
    padding-top: 15px;
}
.footer-btn {
    margin-top: 40px;
    background-color: #29a34a;
}
.footer-wrapper ul {
    margin: 0px;
    padding: 0px;
}
.footer-wrapper li {
    list-style: none;
}
#first-col ul {
    margin-top: 20px;
}

.footer-research ul {
	padding-bottom: 15px;
}

/*-------------------------------End-Footer ------------*/

/*--------------------------------------------------------
	UTILITIES
--------------------------------------------------------*/



/*--------------------------------------------------------
	OFFERINGS PAGE
--------------------------------------------------------*/
.course {
    font-size: 18px;
}

.desc {
    
}

.desc-text {
    
}

.desc-img {
    width: 250px;
    height: auto;
    float: right;
    margin-left: 20px;
}

.programs {
    display: table;
}

.band {
    height: 120px;
    width: 100%;
    padding: 1em auto;
    cursor: pointer;
    margin: 0;
}

.band img {
    height: 100px;
    width: 150px;
    margin: 0.5em;
    float: left;
}
.band-title {
    color: white; 
    font-size: 1.5em; 
    text-transform: uppercase;
    height: 100px;
    width: auto;
    margin: 0.5em;
    float: left; 
    padding-top: 40px;
}

.po-color { 
    color: #808080; 
} 

.ae-color { 
    color: #7B68EE; 
} 

.hs-color { 
    color: #f05158; 
} 

.ms-color { 
    color: #fed600; 
} 

.im-color { 
     color: #29a34a; 
} 

.bg-im3 {
    background-color: #FF8000;
}
.bg-im45 {
    background-color: #99004C;
}

.pm-color { 
    color: #29a34a; 
} 

.mit-color { 
/*    color: #f05158;*/
    color: #29a34a;
}
.mit-background { 
    background-color: #29a34a; 
}
.offerings { 
    padding: 20px 2.5em; 
} 

.highlight-red {
    color: red;
    font-weight: bold;
}

/*-------------------------------End-Offerings Page*/

/*--------------------------------------------------------
	QUOTES
--------------------------------------------------------*/

.quote {
    font-size: 1.2em;
    line-height: normal;
  margin-top: 10px;
  margin-bottom: 25px;
  margin-left: 10px;
  padding-left: 15px;
  max-width: 75ch;
}

.qm-left {
    padding-right: 0.25em;
}

.qm-right {
    padding-left:  0.25em;
}

.quote-gray {
  border-left: 3px solid #808080;  
}

.quote-purple {
  border-left: 3px solid #7B68EE; 
}

.quote-red {
  border-left: 3px solid #f05158;   
}

.quote-yellow {
  border-left: 3px solid #fed600; 
}

.quote-blue {
  border-left: 3px solid #60c8d4;
}

.quote-lime {
  border-left: 3px solid #acd333;
}

.quote-green {
  border-left: 3px solid #29a34a;   
}
/*-------------------------------End-Quotes*/

/*--------------------------------------------------------
	MAF PAGE
--------------------------------------------------------*/
.box-emphasis {
    width: 80%;
    border: 5px solid #F05158;
    margin: 50px auto;
    padding: 30px 30px;
}
.location {
    font-weight: bold;
    font-size: 110%;
    color: #60c8d4;
}
.label {
    font-weight: bold;
}
table.maf-tbl th, td {
    border: 4px solid #29a34a;
    border-collapse: collapse;
}

.maf-tbl td, th {
    padding: 10px 5px;
    text-align: center;
}

.legend-ple {
    width: 30%;
    float: left;
    font-size: 70%;
}

.map-ple {
    width: 70%;
    float: left;
    padding: 30px 10px 0px 10px;
}

.legend-ple-hdr {
    color: white;
    text-align: center;
}

.clear {
    clear: both;
}

.anchor::before {
    content: "";
    display: block;
    margin-top: -200px;
    position: absolute;
}

/*-------------------------------End-MAF Page*/

/*--------------------------------------------------------
	RESEARCH PAGE
--------------------------------------------------------*/
.article_title {
    font-weight: bold;
}
.journal_title {
    font-style: italic;
}

.img-author {
    margin: 0 auto;
    height: 200px;
    width: auto;
}
.img-cover {
    float: left;
    height: 120px;
    width: auto;
    margin-right: 15px;
    margin-bottom: 15px;
}
/*-------------------------------End-RESEARCH Page*/

/*--------------------------------------------------------
	RESOURCES PAGE
--------------------------------------------------------*/
.resource-hdr {
    padding-top:0;
}

.border-red {
  border: 5px solid #f05158;   
}

.border-yellow {
  border: 5px solid #fed600; 
}

.border-blue {
  border: 5px solid #60c8d4;
}

.resource-box {
    height: 300px;
    padding: 5px;
    box-sizing: border-box;
}
.resource-box-offerings {
    height: 380px;
    padding: 5px;
    box-sizing: border-box;
}

.resource-box-offerings h3 {
    padding-top:0;
}
/*-------------------------------End-RESEARCH Page*/
/*--------------------------------------------------------
	KCM STAFF PAGE
--------------------------------------------------------*/
.stf-name {
    font-size: 150%;
    color: #29a34a;
    margin-top: 20px;
    font-weight: bold;
}
.stf-title {
    font-size: 120%;
    color: #29a34a;
    font-weight: bold;
}
.stf-photo {
    float: left; 
    margin-right: 60px;
    margin-bottom: 10px;
    width: 250px;
    height:275px;
}
.stf-duties li {
    margin-left: -10px;
    margin-right: 40px;
    font-size: 90%;
}
.stf-row {
    border-bottom: 1px solid #DCDCDC;
    padding-top: 20px;
    padding-bottom: 20px;
}
.stf-row-last {
    padding-top: 20px;
    padding-bottom: 20px;
}

/*-------------------------------End-KCM STAFF Page*/

/*--------------------------------------------------------
	TABS
--------------------------------------------------------*/
.tab, .tabcontent {
    margin-top: 25px;
}

.tablinks {
    font: bold 16px Arial; 
    color: #000000; 
    padding: 1ch 2ch; 
}
.tablinks:hover, .tablinks:focus, .tablinks:active{
    background-color: #CBE066;
}

.pubdt {
    font-size: 75%;
    font-style: italic;
}
.read-btn { 
    font: bold 12px Arial; 
    text-decoration: none; 
    background-color: #CBE066;
    color: #ffffff; 
    padding: 1ch 2ch; 
}
.read-btn a {
    color: #ffffff; 
}
a.read-btn:hover, a.read-btn:focus, a.read-btn:active{
    background-color: #CBE066;
    color: #FFFFFF;
}

/*-------------------------------End-TABS*/

/*--------------------------------------------------------
	SPECIALIST
--------------------------------------------------------*/
.specialist-hdr {
    position: relative;
    margin-top: 100px;
}
.specialist-badge {
    position: absolute;
    top: -85px;
    right: 50px;
}
.specialist-badge img {
    width: 250px;
}
table.course-plan {
    margin: 20px 0 20px 100px;
}
.course-plan table, th, td {
    border: 3px solid #29a34a;
    border-collapse: collapse;
}
.course-plan th {
    padding: 15px;
    text-align: center;
}
table.plan-1-col {
    width: 300px;
}
table.plan-2-col {
    width: 600px;
}

/*------------------------------------------------------
        VIETH PAGES
------------------------------------------------------*/
.sp-title {
    color: #29a34a;
    font-size: 25px;
}

#mheader_5_wrapper a[href^="calendar6c"] {
    background-color: #29a34a;
    color: white;
    font-size: 20px;
    padding: 4px 10px;
}

#mheader_5_wrapper a[href^="calendar6c"]:hover,  #mheader_5_wrapper a[href^="calendar6c"]:active{
    background-color: #CBE066;
}
/*------------------------------------------------------
           MEDIA QUERY 
------------------------------------------------------*/


@media (min-width: 1000px) {
    .container {}
}


@media (min-width: 990px) and (max-width: 1199px) {
    .container {}

    .mobile-search-menu {
   		text-align: right;
	}
	.mobile-search-menu {
	    padding-top: 5px;
	}
	.mobile-socialmedia-wrap {
	    margin-bottom: -15px;
	}

    .offerings-wrap {
	    width: 90%;
	}
	.offering-img-round {
	    width: 100%;
	    margin-bottom: 20px;
	    padding-top: 25px;
	    padding-bottom: 10px;
	    line-height: normal;
	}
	
	.resource-box-offerings {
        height: 425px;
    }

}

@media (max-width: 991px) {
    .container {}
    
    .specialist-badge {
        right: 5px;
        top: -30px;
    }

    .specialist-badge img {
        width: 150px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .container {}

    .mobile-search-menu {
	    padding-top: 17px;
	}
	.mobile-socialmedia-wrap {
	    margin-bottom: -15px;
	}

    .offerings-outside-wrap {
	    padding: 50px 0px 0px;
	}
    .offerings-wrap {
	    width: 90%;
	}
	.offering-img-round {
	    width: 100%;
	    margin-bottom: 20px;
	    padding-top: 50px;
	    padding-bottom: 20px;
	    font-size: 26px;
	}
	
    .no-display {
        display: none;
    }
    .row-gap {
        margin-top: 0;
    }
    .item-gap {
        margin-top: 10px;
    }
    
    .resource-box-offerings {
        height: auto;
    }
}


@media (max-width: 767px) {
    .container {}

    #logo-wrap img {
	    text-align: center;
	    margin: 0 auto;
	}
	.mobile-socialmedia-wrap ul {
	    margin: 0 auto;
	    text-align: center;
	    margin-bottom: -10px;
	}
	.lines {
	    margin-top: 15px;
	}
	.slideshow-wrap {
	    margin: 240px 0 50px 0;
	}
	.carousel-caption {
	    display: block;
	    position: static;
	    width: 100%;
	    height: auto !important;
	    padding-bottom: 25px !important;
	    padding-left: 30px;
	    padding-right: 30px;
	    background: #10A54B;
	}
    .alt-text, p.alt-text {
        width: 100%;
    }
    .indent {
        padding-left: 0px;
    }

    .offerings-outside-wrap {
	    padding: 10px 0px 5px;
	}
    .offerings-wrap {
	    width: 60%;
	}
	.offering-img-round {
	    width: 100%;
	    margin-bottom: 20px;
	    padding-left: 25px;
    	padding-right: 25px;
	}
	.news-inside-wrap #news-left-wrap {
	    padding-right: 0px !important;
	}
	.news-inside-wrap #news-left-wrap img {
	    width: 100% !important;
	}
    .no-display {
        display: none;
    }
    .row-gap {
        margin-top: 0;
    }
    .item-gap {
        margin-top: 10px;
    }
    
    .resource-box-offerings {
        height: auto;
    }

}

@media (max-width: 480px) {
    .container {}

    #logo-wrap img {
	    text-align: center;
	    margin: 0 auto;
	}
	.mobile-socialmedia-wrap ul {
	    margin: 0 auto;
	    text-align: center;
	    margin-bottom: -10px;
	}
	.lines {
	    margin-top: 15px;
	}
	.slideshow-wrap {
	    margin: 240px 0 50px 0;
	}
	.carousel-caption {
	    display: block;
	    position: static;
	    width: 100%;
	    height: auto !important;
	    padding-bottom: 25px !important;
	    padding-left: 30px;
	    padding-right: 30px;
	    background: #10A54B;
	}
    .alt-text, p.alt-text {
        width: 100%;
    }
    .offerings-outside-wrap {
	    padding: 10px 0px 5px;
	}
    .offerings-wrap {
	    width: 90%;
	}
	.offering-img-round {
	    width: 100%;
	    margin-bottom: 20px;
	}
	.news-inside-wrap #news-left-wrap {
	    padding-right: 0px !important;
	}
	.news-inside-wrap #news-left-wrap img {
	    width: 100% !important;
	}
	.mit-spotlight h3 {
	    padding-top: 20px;
	}
    .band img {
        display: none;
    }
    .no-display {
        display: none;
    }
    .row-gap {
        margin-top: 0;
    }
    .item-gap {
        margin-top: 10px;
    }
    
    .specialist-badge {
        right: 5px;
        top: 50px;
    }

    .specialist-badge img {
        width: 50px;
    }
    
    table.course-plan {
        margin: 0 0 0 20px;
    }
    
    .resource-box-offerings {
        height: auto;
    }

}


/* Safari Browser */

@media only screen and (-webkit-min-device-pixel-ratio: 1) {
     ::i-block-chrome, #logo-wrap svg {
    }
}

/* Internet Browser */

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {  
	
	.search-wrap input {
		line-height: 16px;
	}
}


/* Media Queries for Print Scren */


@media print {
  #main-header, #footer-row {
    visibility: hidden;
  }
  a[href]:after {
   content:"" !important;
  }
}


/*-------------------------------End-Media Queries*/

/*for star based ratings virtual forms*/

.star-rating {
    direction: rtl;
    display: inline-block;

}

.star-rating input[type=radio] {
    display: none
}

.star-rating label {
    color: #bbb;
    font-size: 18px;
    padding: 0;
    cursor: pointer;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input[type=radio]:checked ~ label {
    color: #f2b600
}

.fa-star{
    font-size: 28px;
}
/* End of star base rating*/ 

/*  Virtual Resources for Math Instruction */
.copymsg {
    width: 67%;
    font-size: 3em;
    padding: 15px;
    margin-bottom: 50px;
    background-color: #f4f9e4;
    border-radius: 8px;
}
