/*
Theme Name: JALC Theme
Theme URI: https:/jalc.edu
Author: Phillip Lane
Author URI: https:/jalc.edu
Description: Responsive theme built of John A. Logan College 
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: jalc.edu
Tags: blue, grey, responsive
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

/* CSS Variables */

:root {
	--logan-blue: #001489;
	--logan-blue-light1: #001cc3;
	--logan-blue-dark1: #000a47;
	--accent-color: #DF0038;
	--accent-color-light: #f50039;
}

/* General */
html {
	scroll-behavior: smooth;
}
body {
	background: #001489 url(images/bg.gif) no-repeat fixed;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.skip-to-content-link {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: 1em;
  background-color: #FFF;
  color: #000;
  opacity: 0;
}
.skip-to-content-link:focus {
   left: 50%;
  transform: translateX(-50%);
  opacity: 1;
}
a {
	color: var(--logan-blue);
}
.wunderline a {
	text-decoration: underline;
}
a:hover {
	color: var(--logan-blue-light1);
}
a.accentlink {
	color: var(--accent-color);
}
a.accentlink:hover {
	color: var(--accent-color-light);
}
h1, h2, h3, h4, h5 {
	font-family: 'Oswald', sans-serif;
}
ul {
	list-style: none;
}
ul.wbullets {
	list-style: disc;
}
li {
	padding: .25em 0;
}
ol.lcalpha {
	list-style-type: lower-alpha;
	margin-top: 10px;
	margin-left: 30px;
}
address {
	background: #f0f0f0;
	margin: 30px 0 30px 30px;
	padding: 15px 45px;
	display: inline-block;
	border: 1px solid #d0d0d0;
}
table, tr {
	border: 1px solid #C0C0C0;
}
tr:nth-child(even) {
	background: #f0f0f0;
}
td, th {
	padding: .5em;
}
figure.nostripes tr:nth-child(even) {
	background: none;
}
figure.bluetable table thead tr {
	background: #262626;
	color: #fff;
	font-size: 110%;
	border-bottom: none;
}
figure.bluetable table tr {
	border: 1px solid var(--logan-blue);
}
figure.bluetable tr:nth-child(even) {
	background: #e2e6ff;
}
figure.tablevertaligntop table tr {
	vertical-align: top;
}
blockquote {
	font-style: italic;
	margin-left: 60px;
}
.wp-block-quote {
	border-left: 4px solid #001489;
}
.wp-block-quote p {
	padding-left: 40px;
}
.wp-block-quote cite {
	color: #808080;
	padding-left: 40px;
}

.wp-block-image img {
  max-width: 100%;
  height: auto;
}


/* from image block */
.wp-block-image figcaption {
	text-align: center;
	font-size: 90%;
}

/* from image gallery block */
.wp-block-gallery {
	background: #f0f0f0;
	padding: 10px 10px 20px 10px;
	border-top: 2px solid #b0b0b0;
	border-bottom: 2px solid #b0b0b0;
}
.wp-block-gallery figcaption.blocks-gallery-caption {
	font-style: italic;
}

.fltright, .fltrightmobileblock {
	float: right;
	margin: 0 0 30px 30px;
}
.fltleft {
	float: left;
	margin: 0 30px 30px 0;
}
.contain {
	overflow: auto;
}
.breakout, .sidebar {
	background: #F0F0F0;
	padding: 15px 30px 5px 30px;
	margin-bottom: 15px;
	border: 2px solid #C0C0C0;
	border-radius: 15px;
}
.announce {
	text-align: center;
	padding: 15px 30px 5px 30px;
	margin-bottom: 30px;
	border-top: 2px solid #C0C0C0;
	border-bottom: 2px solid #C0C0C0;
}
.announce h3 {
	color: #bf0202;
}
.attnbox { /* red border with no background and text not centered */
	margin-bottom: 15px;
	border: 2px solid #c50000;
	padding: 10px;
}
.attnboxtwo { /* red border with grey background and text-aligned center */
	margin-bottom: 15px;
	text-align: center;
	background: #F0F0F0;
	border: 2px solid #c50000;
	padding: 10px;
}

.attnboxthree { /* green border with grey background and text-aligned center */
	margin-bottom: 15px;
	text-align: center;
	background: #F0F0F0;
	border: 2px solid #178b00;
	padding: 10px;
}
.attnboxfour { /* grey border with light grey background and text not centered */
	margin-bottom: 15px;
	margin-top: 10px;
	background: #F0F0F0;
	border: 2px solid #D0D0D0;
	padding: 20px;
}
.attnboxyes {
	border: 2px solid #178b00;
	background: #e7f3e5;
	padding: 15px;
}
.attnboxno {
	border: 2px solid #c50000;
	background: #f9e5e5;
	padding: 15px;
}
.sronly { /* Only readable for screen readers */
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
  }

/* CSS Animations */
p.aacat {
	font-size: 125%;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: .25rem;
}
p.aacat span.movabletext {
	transition: transform 500ms;
	display: inline-block;
}
p.aacat:hover span.movabletext {
	transform: translateX(5%);
}
p.aacat span.movabletext {
	transition: all .2s ease-in-out;
} 
p.aacat i {
	transition: all .2s ease-in-out; 
}
p.aacat:hover i {
	transform: scale(1.5);
}
p.aacat a {
	text-decoration: none;
}

h3.fpheading {
	font-size: 220%;
	letter-spacing: .2rem;
	transition: all .2s ease-in-out;
	margin: 30px 0;
	padding-left: 15px;
	font-weight: 400;
}
h3.fpheading:hover {
	text-decoration: none;
	transform: translateX(1%);
}
h3.fpheading a:hover {
	text-decoration: none;
}

.loganstatue {
	border-top: 2px solid #a0a0a0;
	border-bottom: 2px solid #a0a0a0;
	font-size: 1.4em;
	overflow: auto;
	margin-bottom: 30px;
}
.sidebar h3, .sidebar h4, .sidebar h5 {
	text-align: center;
	border-bottom: 2px solid #C0C0C0;
	padding-bottom: 10px;
	margin-bottom: 10px;
}
.sidebar ul {
	margin: 0 0 15px 0;
	padding: 0;
}
.accentbg {
	background-color: var(--accent-color);
}
.lrgtxt {
	font-size: 1.25rem;
}
.lrgtxt2 {
	font-size: 1.5em;
}
.lrgtxtcenter {
	font-size: 1.5rem;
	text-align: center;
}
.missionlg {
	font-family: "Times New Roman", Times, serif;
	font-size: 2.2rem;
	padding: 30px;
	border-top: 2px solid var(--logan-blue);
	border-bottom: 2px solid var(--logan-blue);
	background: #efefef;
}
.corvaluescols {
	border-top: 2px solid var(--logan-blue);
	border-bottom: 2px solid var(--logan-blue);
}
.xtrapadtop {
	padding-top: 115px;
}
.headingxtramargtop {
	margin-top: 60px;
}
.bordertopdesc {
	border-top: 1px solid #b2b2b2;
	padding-top: 15px;
	font-size: 1.25rem;
}
.borderbottomlist {
	border-bottom: 1px solid #b2b2b2;
	padding: 0 0 15px 0;
}
.listnoindent {
	padding: 0;
}
.imgfltcap {
	padding: 10px;
	background: #f0f0f0;
	text-align: center;
}
.imgfltcap p {
	margin: 0;
	padding: 10px 0 0 0;
}
.warning {
	color: #c50000;
}
.highlight {
	background: yellow;
}
.cybintinfobox {
	border: 2px solid #808080;
	background: #f4f4f4;
	border-radius: 15px;
	padding: 30px;
	margin-top: 15px;
}
.clearfloats {
	clear: both;
}
.clearfloatswtoppad {
	clear: both;
	padding-top: 10px;
}
.recentarticles {
	padding: 0 30px 30px 0;
}
.recentarticles h3 {
	font-size: 1.4rem;
}
.recentarticles p {
	font-size: 1rem;
}
.mypagination {
	font-size: 140%;
}
.mypagination .nav-links {
	margin: 0 auto;
}
.picwborder img {
	padding: 8px;
	background: #FFF;
	border: 2px solid #606060;
	box-shadow: 4px 4px 8px #606060;
}
h2.progname {
	color: #001489;
	font-size: 3rem;
}
p.progsub {
	font-size: 1.5rem;
	color: #848484;
}
.progfac {
	font-size: 130%;
	margin-top: 60px;
}
a.btn {
	background-color: var(--logan-blue);
	background-color: #001489;
	color: #fff;
	margin-bottom: 1em;
	display: table;
}
a.btnsforclubs {
	background-color: var(--logan-blue);
	color: #fff;
	margin-bottom: 1em;
	display: table;
	width: 100%;
	text-align:  left;
}
a.btn:hover {
	background-color: var(--logan-blue-dark1);
	background-color: #000a47;
	color: #fff;
}
a.btn.accentbg {
	background-color: var(--accent-color);
}
a.btn.accentbg:hover {
	background-color: var(--accent-color-light);
}
a.annbut {
	background: var(--accent-color);
	padding: 10px 15px;
	margin: 0 5px;
	border-radius: 5px;
	font-size: 90%;
}
#ancr-11188 .ancr-content {
	font-size: 1.2rem;
}
#ancr-11188 .ancr-content a.annlink {
	color: var(--logan-blue);
}
button.btn {
	background-color: var(--accent-color);
	color: #fff;
}
button.btn:hover {
	color: #fff;
	background-color: var(--accent-color-light);
}
.searchbydept {
	text-align: center;
}
.searchbydept a {
	display: block;
	background: #f0f0f0;
	border: 1px solid #C0C0C0;
	border-radius: 10px;
	padding: 10px 15px;
	height: 80px;
}
.searchbydept a:hover {
	background: #001489;
	color: #fff;
	text-decoration: none;
}
p.tplus {
	background: url("/wp-content/uploads/2019/12/transcriptsplus_wtagline2.jpg") no-repeat center left;
	line-height: 60px;
	margin: 2rem 0;
}
p.tplus a {
	padding-left: 270px;
}
ol.ua {
	list-style-type: upper-alpha;
}

/* For Fall 2020 Course Formats */

.cformatcontain {
	overflow: auto;
    border: 4px solid #C0C0C0;
    border-radius: 30px;
    padding: 15px 30px;
    margin-bottom: 30px;
}
.cformatcontain p {
	font-size: 1.2rem;
}
.cformatcontain span, p.cformatopening {
	font-size: 2rem;
	font-weight: bold;
	color: #001489;
}

.tblines {
	border-top: 2px solid #c0c0c0;
	border-bottom: 2px solid #c0c0c0;
	padding-top: 10px;
	margin: 30px 0;
}

/* Header Area with Navigation */
header {
	background: var(--logan-blue) url(images/bg.gif) no-repeat fixed;
}
header .home {
	color: #fff;
	font-family: 'Oswald', sans-serif;
	font-size: 1.75em;
	letter-spacing: .25em;
	margin: 0;
	padding: 0;
	display: block;
}
header .home a {
	color: #fff;
}
header .home a:hover {
	color: #fff;
	text-decoration: none;
}
.headerrow {
	height: 60px;
}
header .nav.firstnav li {
	line-height: 44px;
	padding: 0;
}
header .nav.firstnav .nav-link {
	color: #fff;
}
header a.dropdown-item {
	color: var(--logan-blue);
}
header a.dropdown-item:active {
	background: var(--logan-blue-dark1);
}
header a.dropdown-item:last-child {
	border-top: 2px solid #d9d9d9;
}
header a.applybg {
	background: var(--accent-color);
}
header a.applybg:hover {
	background: #f50039;
}

/* Show/Hide Search */
.shsearch {
	display: none;
	background-color:rgba(0,0,0,0.5);
	padding: 15px 0 5px 0;
}
.shsearch .btn {
	vertical-align: top;
}

/* Secondary Navigation */
.secondnavcf {
	background: #d9d9d9;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #606060;
	font-size: .9em;
}
ul.secondnav li {
	padding: 0;
}

/* Original Side Navigation 
.sidenav {
	margin-bottom: 2em;
}
.sidenav h2 {
	background: var(--logan-blue-dark1);
	color: #fff;
	padding: .5em;
	font-size: 1.4em;
	letter-spacing: .1em;
}
.sidenav h2 a {
	color:#fff;
}
.sidenav h2 a:hover {
	text-decoration: none;
}
.sidenav ul {
	padding: 0;
}
.sidenav li {
	margin: 0;
	padding: 0;
}
.sidenav li.current_page_item {
	background: #f0f0f0;
}
.sidenav li.current_page_item a {
	color: var(--logan-blue-light1);
}
.sidenav li a {
	display: block;
	padding: .5em;
}
.sidenav li a:hover {
	background: #f0f0f0;
	text-decoration: none;
}*/

/* New Side Navigation */
.sidenav-2 h2 {
	background: var(--logan-blue-dark1);
	color: #fff;
	padding: .5em;
	font-size: 1.4em;
	letter-spacing: .1em;
}
.sidenav-2 h2 a {
	color:#fff;
}
.sidenav-2 h2 a:hover {
	text-decoration: none;
}
.sidenav-2 .navbar {
	padding: 0;
	margin-bottom: 15px;
}
.sidenav-2 .navbar .navbar-brand {
	color: #fff;
	font-family: 'Oswald', sans-serif;
	font-size: 1.4em;
	letter-spacing: .1em;
}
.custom-toggler.navbar-toggler { 
	border-color: #FFF;
}
.custom-toggler .navbar-toggler-icon { 
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}
.sidenav-2 ul.navbar-nav {
	width: 100%;
}
.sidenav-2 ul.navbar-nav li {
	margin: 0;
	padding: 0;
}
.sidenav-2 ul.navbar-nav li.active {
	background: #f0f0f0;
}
.sidenav-2 ul.navbar-nav li a {
	display: block;
	padding: 10px;
}
.sidenav-2 ul.navbar-nav li a:hover {
	background: #f0f0f0;
	text-decoration: none;
}


/* Banner Area */
.banner, .pagebanner {
	position: relative;
	background: #000;
	text-align: center;
	padding: 0;
}
.banner img, .pagebanner img {
	width: 100%;
	height: auto;
	opacity: 0.70; */
	filter: alpha(opacity=70); /* For IE8 and earlier */
}
.banner h1 {
 	position: absolute;
 	top: 32%; /* Original was 45, then 32 */
	width: 100%;
	font-family: 'Yellowtail', cursive;
	text-align: center;
 	color: #fff;
 	/* font-weight: 500; */
 	/* letter-spacing: .1em; */
	font-size: 3.25em; /* Original was 4em */
 	text-shadow: 4px 4px 4px #000;
}
.bannernelinks {
	position: absolute;
	top: 15%;
	right: 0px;
	width: 200px;
}
.bannernelinks ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.bannernelinks li {
	padding: 0;
	margin: 0;
}
.bannernelinks li {
	margin-bottom: 10px;
}
.bannernelinks li a  {
	background: var(--logan-blue);
	color: #fff;
	border-left: 5px solid rgba(255, 255, 255, 0.8);;
	text-align: left;
	font-size: 1.4em;
	padding: 5px 15px;
	margin: 0;
	display: block;
}
.bannernelinks li a:hover {
	text-decoration: none;
	background: #0019ac;
}
.register {
	position: absolute;
	width: 100%;
	top: 18%;
	left: 30px;
	text-align: left;
}
.register h2 {
	color: #FFD631;
	text-transform: uppercase;
	font-family: 'League Spartan', sans-serif;
	font-size: 3.6rem;
	letter-spacing: .25rem;
}
.register p {
	font-family: 'Lato', sans-serif;
	color: #fff;
	font-size: 2rem;
}
.register p .walkin {
	color: #FFD631;
	font-style: italic;
}
.register p a {
	color: var(--accent-color);
	text-decoration: underline;
}
/*
 * ul.newssubnav, ul.eventssubnav {
	background: #000;
	padding: 15px 0;
	display: none;
}
ul.newssubnav li, ul.eventssubnav li {
	margin: 0;
	border-bottom: 1px solid #d9d9d9;
}
ul.newssubnav li a, ul.eventssubnav li a {
	background: none;
	width: auto;
	font-size: .9em;
	text-decoration: none;
	border-left: none;
}
ul.newssubnav li a:hover, ul.eventssubnav li a:hover {
	background: none;
	text-decoration: underline;
}
ul.newssubnav li.viewall, ul.eventssubnav li.viewall {
	margin-top: 10px;
	border-bottom: none;
}
*/
.bannervid {
 	position: absolute;
	bottom: 140px;
	/* bottom: 80px; -- Use when there are two bannervid buttons */
	width: 100%;
	text-align: center;
}
.banner .bannervid a, .banner .bannervid2 a {
	width: 440px;
	color: #fff;
	background-color:rgba(223,0,56,0.7);
	padding: 10px 15px;
	margin: 0;
	display: inline-block;
	border-radius: 10px;
	border: 1px solid #fff;
	letter-spacing: .1em;
 	/*text-transform: uppercase;*/
 	font-size: 1.25em;
}
.banner .bannervid a:hover, .banner .bannervid2 a:hover {
	text-decoration: none;
	background: #df0038;
}

/* Extra button */
.bannervid2 {
 	position: absolute;
	bottom: 200px;
	width: 100%;
	text-align: center;
}

/* End extra button */

.bannermorelinks {
	position: absolute;
	bottom: 90px;
	/* bottom: 30px; -- use when there are two bannervid buttons */
	margin: 0;
	padding: 0;
	width: 100%;
}
.bannermorelinks ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.bannermorelinks li {
	margin: 0 5px;
	padding: 0;
	display: inline;
	text-transform: uppercase;
}
.bannermorelinks li a {
	width: 220px;
	background-color:rgba(0,0,0,0.6);
	color: #fff;
	padding: 10px 15px;
	margin: 0;
	display: inline-block;
	border-radius: 10px;
	border: 1px solid #fff;
}
.bannermorelinks li.bmlapply a {
	background-color:rgba(0,20,137,0.6);
}
.bannermorelinks li a:hover {
	text-decoration: none;
	background: #000;
}
.bannermorelinks li.bmlapply a:hover {
	background: var(--logan-blue);
}

/* Banner button links with video */

.bannermorelinksv2 {
	position: absolute;
	bottom: 0;
	/* bottom: 30px; -- use when there are two bannervid buttons */
	margin: 0;
	padding: 0;
	text-align: center;
	width: 100%;
	font-size: 120%;
}
.bannermorelinksv2 ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.bannermorelinksv2 li {
	margin: 0;
	padding: 0;
	display: inline;
	text-transform: uppercase;
}
.bannermorelinksv2 li a {
	width: 250px;
	background-color:rgba(0,0,0,0.8);
	color: #fff;
	padding: 10px 15px;
	margin: 0;
	display: inline-block;
	border: 1px solid #fff;
}
.bannermorelinksv2 li.bmlapply a {
	background-color:rgba(0,20,137,0.8);
}
.bannermorelinksv2 li a:hover {
	text-decoration: none;
	background: #000;
}
.bannermorelinksv2 li.bmlapply a:hover {
	background: var(--logan-blue);
}

/* Parent or Child Page */
.pagebanner h1 {
 	position: absolute;
 	bottom: 30px;
	margin: 0;
	font-family: 'Oswald', sans-serif;
 	color: #fff;
 	font-weight: 500;
 	letter-spacing: .2em;
 	font-size: 4.5em;
	text-transform: uppercase;
 	text-shadow: 4px 4px 4px #000;
	text-align: left;
}
.maincontentfluidcont {
	background: #fff;
}
.maincontent {
	padding: 30px 0 60px 0;
}
main h2 {
	color: var(--logan-blue);
	border-bottom: 1px solid #b2b2b2;
	padding: 5px 0;
	margin-bottom: 1em;
}
main h3, main h4, main h5, main h6 {
	margin-bottom: .5em;
}

/* Single Page */
.single-heading {
	background: var(--logan-blue-dark1);
}
.single-heading h1 {
	text-transform: uppercase;
	color: #f8f8f8;
	font-size: 3em;
	letter-spacing: .20em;
	padding: .5em 0;
	margin: 0;
}
.searchtoparea {
	padding-bottom: 30px;
	border-bottom: 1px solid #C0C0C0;
	margin-bottom: 30px;
}
.searchtoparea p {
	margin-bottom: 0;
}
.searchinfo {
	margin-bottom: 40px;
}
.searchinfo h3 {
	font-weight: 400;
}

/* Bread Crumb Trail */
.bc-trail {
	background: #f8f8f8;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #606060;
	font-size: .9em;
	padding: 5px 0;
}
.bc-trail p {
	margin: 0;
	padding: .05em .25em;
}
.bc-trail span {
	padding: 0 10px;
}
.bc-trail a {
	text-decoration: underline;
}

/* Explore JALC */
.explore {
	background: #fff;
}
.explore p {
	padding: 10px 0;
	text-align: center;
	margin: 0;
}
.list-group-item.active {
	background: var(--logan-blue);
	border-color: var(--logan-blue);
}

/* Info Boxes */
.infoboxes {
	padding: 15px 0;
	text-align: center;
	overflow: auto;
}
.box {
	position: relative;
	margin-bottom: 15px;
}
.box img {
	border: 10px solid #fff;
}
.statscontainer {
	position: absolute;
	top: 30px;
	width: 100%;
	margin-left: -15px;
	padding-left: 8%;
	padding-right: 8%;
}
.box .statscontainer p {
	margin: 0;
	padding: 0;
	text-shadow: 4px 4px 4px #000;
	color: #fff;
	font-size: 1.75em;
}
.box .statscontainer p.statsone {
	font-size: 2.25em;
	border-bottom: 2px solid #fff;
	font-family: 'Oswald', sans-serif;
	font-weight: 800;
	text-transform: uppercase;
}
.box .statscontainer p.statstwo {
	line-height: normal;
}
.box p.iblink {
	position: absolute;
	bottom: 30px;
	left: 0;
	right: 0;
	width: 240px;
	padding: 0;
	margin: auto;
	text-transform: uppercase;
	font-size: 1em;
	border: 1px solid #fff;
}
.box p.iblink a {
	background: var(--accent-color);
	color: #fff;
	margin: 0;
	padding: 10px 15px;
	display: block;
}
.box p.iblink a:hover {
	text-decoration: none;
	background: #f50039;
}

/* Degrees and Certificates and Community Courses */
.ccdcfluidcont {
	background: rgb(238,238,238);
	background: radial-gradient(circle, rgba(238,238,238,1) 0%, rgba(147,147,147,1) 100%);
}
.ccdcbox {
	position: relative;
	padding: 15px 0;
	overflow: auto;
}
.dcinfo {
	position: absolute;
	top: 45px;
	right: 0;
	background: #5e5e5e;
	width: 500px;
	border-top: 5px solid #fff;
	border-bottom: 5px solid #fff;
	border-left: 5px solid #fff;
	border-right: 2px solid #fff;
	padding: 15px;
}
.dcinfo h2, .dcinfo p, .ccinfo h2, .ccinfo p {
	color: #fff;
}
.dcinfo p.ccdclink, .ccinfo p.ccdclink {
	margin: 0;
	padding: 0;
	border: 2px solid #fff;
	display: inline-block;
}
.dcinfo p.ccdclink a, .ccinfo p.ccdclink a {
	color: #fff;
	background: var(--logan-blue);
	display: block;
	padding: 5px 15px;
	font-size: 1.2em;
}
.dcinfo p.ccdclink a:hover, .ccinfo p.ccdclink a:hover  {
	text-decoration: none;
	background: #0019ac;
}
img.ccimg {
	float: right;
}
.ccinfo {
	position: absolute;
	top: 45px;
	left: 0;
	background: #5e5e5e;
	width: 500px;
	border-top: 5px solid #fff;
	border-bottom: 5px solid #fff;
	border-right: 5px solid #fff;
	border-left: 2px solid #fff;
	padding: 15px;
}

/* Featured Article */
.featarticle {
	position: relative;
	background: #000;
	text-align: center;
	padding: 0;
	clear: right;
}
.featarticle img {
	width: 100%;
	height: auto;
}
.featarticleinfo {
	position: absolute;
	top: 30px;
	right: 30px;
	width: 400px;
	padding: 15px;
	background: #000;
}
.featarticleinfo h3, .featarticleinfo p {
	color: #fff;
	text-align: left;
}
.featarticleinfo a {
	color: var(--accent-color);
	text-transform: uppercase;
}
.featarticle p.featarticlelink {
	position: absolute;
	bottom: 30px;
	right: 30px;
	margin: 0;
	padding: 0;
	border: 2px solid #fff;
}
.featarticle p.featarticlelink a {
	color: #fff;
	background-color:rgba(0,0,0,0.6);
	display: block;
	padding: 5px 15px;
	font-size: 1.2em;
}
.featarticle p.featarticlelink a:hover {
	text-decoration: none;
	background: #000;
}

.fatop {
	margin-bottom: 30px;
}

/* Take the Next Step */
.tns {
	text-align: center;
	padding: 30px 0;
}
.tns h3 {
	color: #fff;
	text-transform: uppercase;
	display: inline-block;
	border-top: 4px solid #fff;
	border-bottom: 4px solid #fff;
	padding: 5px;
	margin-bottom: 30px;
	font-size: 3em;
}
ul.tnslinks {
	margin: 0;
	padding: 0;
	list-style: none;
}
ul.tnslinks li {
	margin: 0 5px;
	padding: 0;
	display: inline;
	text-transform: uppercase;
}
ul.tnslinks li a {
	width: 220px;
	background-color:rgba(0,0,0,0.6);
	color: #fff;
	padding: 10px 15px;
	margin: 0;
	display: inline-block;
	border-radius: 10px;
	border: 1px solid #fff;
}
ul.tnslinks li a:hover {
	text-decoration: none;
	background: #000;
}

/* Footer Area */
.footonefluidcont {
	background: rgb(238,238,238);
	background: radial-gradient(circle, rgba(238,238,238,1) 0%, rgba(147,147,147,1) 100%);
	padding: 30px 0;
	border-top: 1px solid #606060;
}
.contactbox {
	background: #606060;
	color: #fff;
	border-top: 8px solid var(--logan-blue);
	border-bottom: 8px solid var(--logan-blue);
	text-align: center;
	padding: 30px 5px;
	font-family: "Times New Roman", Times, serif;
}
.contactbox a {
	color: #fff;
}
.contactbox a:hover {
	color: #fff;
	color: #0019ac;
	text-decoration: none;
}
.contactbox h3 {
	margin: 20px 0;
	padding: 0;
	text-transform: uppercase;
	font-size: 1.5em
}
.mobilephone {
	line-height: 40px;
	font-size: 2em;
}
.mobilephone i {
	vertical-align: middle;
	font-size: 2em;
}
.socicons a {
	margin: 0 10px;
}
ul.footerinfolinks {
	margin: 15px 0 0 0;
	padding: 0;
	list-style: none;
}
ul.footerinfolinks li {
	margin: 0;
	padding: 0;
	font-size: 1.2em;
	margin-bottom: 5px;
}
ul.footerinfolinks li:last-child {
	margin-bottom: 0;
}
ul.footerinfolinks li a {
	display: block;
	color: #fff;
	background: var(--accent-color);
	padding: 10px 30px;
}
ul.footerinfolinks li a:hover {
	text-decoration: none;
	background: #f50039;
}
.yrtklist {
	list-style: none;
	margin-left: 0;
	margin-right: 0;
	padding: 0;
}
.yrtklist li {
	line-height: 1.75em;
}
.footonefluidcont h3, .footonefluidcont h4 {
	margin-top: 15px;
	font-size: 1.25em;
}
.footonefluidcont h4.msheadline {
	margin-top: 30px;
}
.mstxt {
	font-family: "Times New Roman", Times, serif;
	font-size: 140%;
	margin-bottom: 30px;
}
.accred {
	display: block;
	margin: 30px auto 0 auto;
}
.foottwofluidcont {
	background: #333333;
	color: #fff;
	padding: 15px 0;
	text-align: center;
}
.foottwofluidcont ul {
	list-style: none;
	margin: 0 0 15px 0;
	padding: 0;
}
.foottwofluidcont li {
	display: inline;
	padding: 5px 15px;
	border-left: 1px solid #fff;
}
.foottwofluidcont ul li:first-child {
	border-left: none;
}
.foottwofluidcont a {
	color: #fff;
	text-decoration: underline;
}
.foottwofluidcont .fstnlink {
	margin: 5px 5px 15px 5px;
	padding: 0;
	display: inline-block;
}
.foottwofluidcont .fstnlink a {
	display: block;
	text-decoration: none;
	background: var(--logan-blue);
	padding: 5px 20px;
}
.foottwofluidcont .fstnlink a:hover {
	background: #0019ac;
}
/* End Footer Area */

.centered {
	text-align: center;
}

.videocontainer {
    position: relative;
    padding-bottom: 33.33%; /* 3:1 */
    height: 0;
	margin-bottom: 0;
}
.video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
		border: 0;
}

/* For JALC A-Z page */
ul.lcp_catlist {
	font-size: 1.25rem;
	padding-left: 0;
}
ul.lcp_catlist li {
	border-bottom: 1px solid #b2b2b2;
	padding: 15px 0;
}
ul.lcp_catlist li a {
	font-weight: bold;
}

/* Pagination */
.jpagination {
	text-align: center;
	font-size: 1.2em;
}

/* For wpDataTables */
.wpdt-c a {
	color: var(--logan-blue) !important;
}
.wpDataTablesWrapper {
	margin-bottom: 0 !important;
}
.wpdt-c .btn {
	color: #fff;
}

/* WP Job Manager */

.rp4wp-related-job_listing>ul li.job_listing a div.position h3, .rp4wp-related-job_listing>ul li.no_job_listings_found a div.position h3, ul.job_listings li.job_listing a div.position h3, ul.job_listings li.no_job_listings_found a div.position h3 {
	font-size: 1.4em;
	line-height: 1.4em;
}
.job-manager .job-type, .job-types .job-type, .job_listing .job-type {
    color: #5e5e5e;
}
.single_job_listing .meta .job-type {
	background-color: transparent;
	color: #000;
}
.single_job_listing .meta {
	margin-top: 30px;
}
.single_job_listing .meta li {
	padding-left: 0;
	padding-right: 0
}

/* Page Not Found */

h2.pnf {
	font-size: 3em;
	font-weight: 800;
	text-transform: uppercase;
	color: #9a9a9a
}

/* Form styles */

div.wpforms-container-full .wpforms-form .formsdheading h3, div.wpforms-container-full .wpforms-form .wpforms-title {
	padding: 10px;
	background: #001489;
	color: #fff;
}
div.wpforms-container-full .wpforms-form .wpforms-field-label {
	word-break: normal;
}

/* This is for 2021 FALL KICKOFF DAYS form */
#wpforms-6856 .wpforms-field-checkbox ul li {
    margin-bottom: 15px !important;
	margin-top: 15px !important;
}
#wpforms-6856 .wpforms-field-checkbox ul li label {
	margin-left: 2rem;
	margin-top: -1.5rem;
	display: block;
}
/* End 2021 FALL KICKOFF DAYS form styles */

.wtitleaccent form .wpforms-title {
	background: var(--accent-color) !important;
}

/* End Form styles */

/* Add Responsive Full-Width Video */
.video-holder {
	display: inline-block;
	position: relative;
	padding-bottom: 60%;
	width: 100%;
	margin-bottom: 1em;
}
.video-holder iframe {
	height: 100% !important;
	position: absolute;
	top: 0; left: 0;
	width: 100% !important;
}

/* For amr ical plugin event dates */

.holcloheading {
	background: #E0E0E0;
	font-size: 1.2em;
	padding: .5em;
	margin-top: 60px;
}
#collapseholclo #events_wrap {
	font-size: 90%;
}

abbr[data-original-title], abbr[title] {
	text-decoration: none;
	cursor: none;
}
article.event {
	padding: 10px .5em;
	border-bottom: 1px solid #c0c0c0;
}
article.event abbr.dtstart, article.event abbr.dtend {
	font-weight: bold;
}

/* Interested in JALC page */
#interestedcontainer {
	text-align: center;
	font-size: 120%;
}
#interestedcontainer div.kt-inside-inner-col {
	padding-bottom: 600px;
}
#interestedcontainer div.kt-inside-inner-col h3 {
	padding-top: 100px;
}

/* Newsletters */

.nlheadings {
	color: #DF0038;
	text-transform: uppercase;
	margin: 30px 0;
	text-align: center;
	clear: both;
}

/* Media Queries */

@media (max-width: 575.98px) {
	/*.banner img {
		visibility: hidden;;
		height: auto;
	}*/
	.banner .bannervid a {
		width: 300px;
		padding: 5px 10px;
		font-size: 1em;
	}
	.fltrightmobileblock {
		float: none;
		margin: 0 auto 15px auto;
		display: block;
		text-align: center;
	}
	.banner img.regimg {
		display: none;
	}
	.register {
		position: relative;
		padding-top: 10px;
	}
	.register h2 {
		font-size: 1.8rem;
	}
	.register p {
		font-size: 1rem;
	}
	.holcloheading {
		margin-top: auto;
	}
	.holcloheading a {
		text-decoration: underline;
	}
}
@media (min-width: 576px) and (max-width: 767.98px) {
	.register {
		top: 12%;
	}
	.register h2 {
		font-size: 1.75rem;
	}
	.register p {
		font-size: 1.25rem;
	}
}
@media (min-width: 576px) and (max-width: 991.98px) {
	.banner .bannervid a, .banner .bannervid2 a {
		width: 340px;
		padding: 5px 10px;
		font-size: 1em;	
	}
}
@media (max-width: 767.98px) {
	.pagebanner h1 {
		font-size: 2em;
		bottom: 15px;
		letter-spacing: .1em;
	}
	.bannervid {
		bottom: auto;
		top: 40px;
		/* top: 80px; Use when there are two bannervid buttons */
	}
	/*.bannervid2 {
		bottom: auto;
		top: 30px;
	}*/
	.single-heading h1 {
		font-size: 2.5em;
	}
	.bannernelinks {
		position: static;
		width: auto;
		margin-bottom: 0;
	}
	.bannernelinks li {
		margin-bottom: 0;
		border-bottom: 1px solid #d9d9d9;
	}
	.bannermorelinks {
		position: static;
		margin-top: 0;
	}
	.bannermorelinks li {
		margin: 0;
		display: block;
		text-align: left;
		border-bottom: 1px solid #d9d9d9;
	}
	.bannermorelinks li a {
		width: auto;
		display: block;
		border-radius: 0;
		border: none;
		background: #00072c;
	}
	.videocontainer {
		background: #000;
		height: auto;
 		padding-bottom: 0px;
	}
	.video {
		position: static;
	}
	.bannermorelinksv2 {
		position: static;
		font-size: 90%;
		height: auto;
	}
	.bannermorelinksv2 li {
		margin: 0;
		display: block;
		text-align: left;
		border-bottom: 1px solid #d9d9d9;
	}
	.bannermorelinksv2 li a {
		width: auto;
		display: block;
		border-radius: 0;
		border: none;
		background: #00072c;
}
	.sidenav-2 .navbar {
		background: var(--logan-blue-dark1);
		padding: 10px;
		margin-left: -15px;
		margin-right: -15px;
	}
	.sidenav-2 ul.navbar-nav li a {
		color: #fff;
	}
	.sidenav-2 ul.navbar-nav li.active, .sidenav-2 ul.navbar-nav li a:hover {
		background: var(--logan-blue);
	}
	.statscontainer {
		width: 80%;
		margin-left: 34px;
	}
	.ccdcbox {
		position: static;
	}
	.dcinfo, .ccinfo {
		position: static;
		width: auto;
		border: none;
	}
	.ccinfo {
		clear: right;
	}
	ul.tnslinks li {
		display: block;
		margin-bottom: 10px;
	}
	.foottwofluidcont li {
		display: block;
		border-left: none;
	}
	.xtrapadtop {
	padding-top: 180px;
	}
	.sidenav {
		margin-left: 15px;
	}
}
@media (min-width: 768px) and (max-width: 991.98px) {
	header .home {
		font-size: 1.5em;
	}
	.statscontainer {
		width: 90%;
		margin-left: -4px;
		top: 10px;
	}
	.box .statscontainer p {
		font-siZe: 1em;
	}
	.box .statscontainer p.statsone {
		font-size: 1.25em;
	}
	.bannernelinks {
		width: 160px;
	}
	.bannernelinks li a {
		font-size: .9em;
	}
	.bannermorelinks {
		top: 20px;
	}
	.bannermorelinks li {
		display: list-item;
		padding: 5px 0;
	}
	.bannermorelinks li.enrolltwo a {
		background-color:rgba(223,0,56,0.7);
	}
	.bannermorelinks li.enrolltwo a:hover {
		background-color: #df0038;
	}
	.register h2 {
		font-size: 2.5rem;
	}
	.register p {
		font-size: 1.25rem;
	}
}
@media (min-width: 768px) and (max-width: 1199.98px) {
	.box p.iblink {
		width: 150px;
		font-size: .9em;
	}
	.box p.iblink a {
		padding: 5px;
	}
	.banner h1 {
		top: 12%;
		font-size: 2.25em;
	}
	.pagebanner h1 {
		font-size: 3em;
	}
	.single-heading h1 {
		font-size: 2.5em;
	}
	.bannermorelinks li a {
		padding: 5px 10px;
		font-size: .9em;
	}
	.bannervid2 {
		bottom: 190px;
	}
}
@media (max-width: 991.98px) {
	header .home {
		text-align: center;
		padding: 15px 0 5px 0;
	}
	.headerrow {
		height: auto;
	}
	header .nav.firstnav li {
		line-height: 2em;
	}
	.dropdown-item {
		padding-top: .75rem;
		padding-bottom: .75rem;
	}
	/*.searchtop {
		width: 50%;
		margin-right: 5px;
	}*/
	.featarticleinfo {
		position: static;
		width: auto;
	}
	.featarticle p.featarticlelink {
		position: static;
		border-top: 2px solid #fff;
		border-bottom: 2px solid #fff;
		border-left: none;
		border-right: none;
	}
	.featarticle p.featarticlelink a {
		background-color: #000;
	}
	.featarticle p.featarticlelink a:hover {
		background: #222222;
	}
}
@media (min-width: 992px) and (max-width: 1199.98px) {
	.box .statscontainer p {
		font-size: 1.25em;
	}
	.box .statscontainer p.statsone {
		font-size: 1.5em;
	}
	.featarticleinfo h3 {
		font-size: 1.4em;
	}
	.featarticleinfo p, .featarticle p.featarticlelink a {
		font-size: 1em;
	}
	.banner .bannervid a, .banner .bannervid2 a {
		width: 340px;
		padding: 5px 10px;
		font-size: 1em;	
	}
	.bannernelinks {
		width: 160px;
	}
	.bannernelinks li a {
		font-size: 1em;
	}
	.register h2 {
		font-size: 2.75rem;
	}
	.register p {
		font-size: 1.5rem;
	}
}


/* =WordPress Core
-------------------------------------------------------------- */
.alignnone {
    margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

.alignright {
    float:right;
    margin: 5px 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

a img.alignnone {
    margin: 5px 20px 20px 0;
}

a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    background: #fff;
    border: 1px solid #f0f0f0;
    max-width: 96%; /* Image does not overflow the content area */
    padding: 5px 3px 10px;
    text-align: center;
}

.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}

.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}

.wp-caption p.wp-caption-text {
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px;
}

/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
	background-color: #eee;
	clip: auto !important;
	clip-path: none;
	color: #444;
	display: block;
	font-size: 1em;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
	/* Above WP toolbar. */
}
