/********************************************
    Default CSS for online courses
*********************************************/
/* Import Open Sans font */
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,600,400italic);

* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

html {
	height: 100%;
	background: -webkit-radial-gradient(ellipse, #406986 0%, #16344a 100%);
	background: radial-gradient(ellipse, #406986 0%, #16344a 100%);
	background-attachment: fixed;
	font-size: 16px;
	font-family: 'Open Sans', verdana, Arial, Helvetica, sans-serif;
}

#main {
	width: 90%;
	max-width: 950px;
	margin: 0 auto;
	box-shadow: 0 0 12px #000000;
}

#header img {
	width: 100%;
    display: block;
}

#article {
	position: relative;
    padding: 20px;
    color: #3e3e3e;
	background-color: #f0f0f0;
}

/* Keeps images from escaping the bottom of #article */
#article:after {
	content: "";
	clear: both;
	height: 0px;
	display: block;
	opacity: 0;
}

/********************************************
   PAGE STYLING
*********************************************/

/* Headings */

h1, h2, h3, h4, h5, h6{
	font-weight: normal;
}

h1 {
	font-size: 32px;
	color: #333333;
}

h1 + p {
	padding-top: 20px;
}

h2 {
	font-size: 29px;
	margin: 15px 0 10px;
	color: #2d5d94;
}

h3 {
	font-size: 26px;
	margin: 12px 0 4px;
	color: #5f6060;
}

h4 {
	font-size: 23px;
	margin: 10px 0 4px;
	color: #2d5d94;
}

h5 {
	font-size: 20px;
	margin: 3px 0px 0px;
	color: #5f6060;
}

hr {
	width: 100%;
	height: 0px;
	margin: 10px 0;
	color: #5a5a5a;
	background-color: #5a5a5a;
	border-color: #5a5a5a;
}

/* Links */

a {
	color: #2d5d94;
	text-decoration: none;
	border-bottom: 2px solid #2d5d94;
}

a:hover {
	color: #7b4c8d;
    border-bottom: 2px solid #7b4c8d;
}

a:visited {
	color: #7b4c8d;
    border-bottom: 2px solid #7b4c8d;
}

#footer {
	text-align: center;
	padding: 6px;
	color: #e2e2e2;
	background-color: #2d5d94;
	font-size: 13px;
}

/********************************************
    SPLASH PAGE STYLING
*********************************************/

/* Article colors */

.splash > #article {
	color: #eaeaea;
	background-color: #125576;
}

/* Headings */

.splash h1 {
	color: #fafafa;
}

.splash h2 {
	color: #a1d7ff;
}

.splash h3 {
	color: #c3c3c3;
}

.splash h4 {
	color: #a1d7ff;
}

.splash h5 {
	color: #c3c3c3;
}

/* Splash Links */

.splash a {
    color: #a1d7ff;
	border-bottom: 2px solid #a1d7ff;
}

.splash a:hover {
	color: #c08fd3;
    border-bottom: 2px solid #c08fd3;
}

.splash a:visited {
	color: #c08fd3;
    border-bottom: 2px solid #c08fd3;
}

/* Splash Page Footer */

.splash #footer {
	color: #e2e2e2;
	background-color: #133955;
}

/* Splash Horizontal Rule */

.splash hr {
	color: #aaaaaa;
	background-color: #aaaaaa;
	border-color: #aaaaaa;
}

/******************************************************
    EXTRA OPTIONS & FEATURES
*******************************************************/

/* Tables */

table {
	width: 100%;
	font-size: 14px;
	border-collapse: collapse;
    margin: 15px 0;
}

table th, table td  {
    border: 1px solid #000;
}

table th {
	padding: 8px;
	font-weight: normal;
    color: #3e3e3e;
	background-color: #d2d2d2;
	text-align: right;
}

table tr:first-child th {
	padding: 6px;
	font-weight: bold;
	text-align: center;
}

table td {
	padding: 8px;
	color: #333;
    vertical-align: top;
}

table tr:nth-child(odd) td {
	background-color: #e9e9e9;
}

table tr:nth-child(even) td {
	background-color: #f0f0f0;
}

table.breakTable {
    table-layout: fixed;
}

table.breakTable td {
    word-wrap: break-word;
}

/* Rubric table: Column headings */
.rubric tr:first-child th {
	padding: 6px;
	color: #fff;
	font-weight: bold;
	text-align: center;
	background-color: #1e435d;
}

/* Rubric table: Row headings */
.rubric th {
    color: #fff;
    background-color: #2d5d94;
}

.rubric table tr:nth-child(odd) td {
	background-color: #d2d2d2;
}

.rubric table tr:nth-child(even) td {
	background-color: #dcdcdc;
}

.calendar ul,
.calendar ol {
    margin: 0px;
    padding: 0px;
}

.calendar li {
    list-style-position: inside;
}

.crowdedTable td {
    padding: 0px;
    margin: 0px;
    font-size: 10px;
}

.invisibleTable tr td,
.invisibleTable tr th{
    border: none;
    padding: 4px;
    margin: 0px;
}

.invisibleTable tr:nth-child(odd) td,
.invisibleTable tr:nth-child(even) td{
    background-color: transparent;
}

/* Layout Tools */

blockquote {
	margin: 10px 20px;
	border: 1px solid #9a9a9a;
	border-radius: 5px;
	padding: 6px;
	font-size: 12px;
}

/********************************************************
    MOUSEOVER POPUPS
********************************************************/
.popup {
    position: relative;
    border-bottom: dotted 2px #3084c3;
    cursor: help;
}

.popup span {
    position: absolute;
    bottom: calc(100% + 14px);
    left: calc(50% - 100px);
    padding: 15px;
    width: 200px;
    color: #fdfdfd;
    background: #274b66;
    border-radius: 8px;
    z-index: -100;
    opacity: 0;
    transition: all .5s;
}

.popup::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: calc(50% - 15px);
    border-style: solid;
    border-width: 15px 15px 0 15px;
    border-color: #274b66 transparent transparent transparent;
    z-index: -100;
    opacity: 0;
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
    transition: all .1s;
}

.popup:hover span,
.popup:focus span {
    opacity: 1;
    z-index: 100;
    transition: all .3s;
}

.popup:hover::after,
.popup:focus::after {
    opacity: 1;
    z-index: 100;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    transition: all .2s .1s;
}

/********************************************************
    CSS Drop-downs
********************************************************/

.tab-group {
    position: relative;
    margin: 0 auto;
    width: 95%;
}

.tab {
    position: relative;
    width: 100%;
}

.tab > input {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -999;
}

.tab > label {
    display: block;
    position: relative;
    background: #6c6c6c;
    color: #fff;
    padding: 15px 10px;
    margin-bottom: .5em;
    cursor: pointer;
}

.tab > label:hover {
    background: #7f7f7f;
}

.tab-content {
    display: none;
    width: 95%;
    margin: 0 auto;
    text-align: justify;
}

.tab-content p {
    margin: 1em 0;
}

.tab input:checked ~ .tab-content {
    display: block;
    margin-bottom: 10px;
}

/* Outline label when checkbox has focus */
.tab > input:focus + label {
    box-shadow: 0 0 3px 4px #4380b3;
}

/* Drop-Down Arrows */
.tab > label:after {
	content: "\276f";
	color: #e6e6e6;
	position: absolute;
    top: calc(50% - 12px);
    right: 20px;
	font-size: 22px;
	padding: 0;
	margin: 0;
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
}

/* Rotate Arrow */
.tab > input:checked + label:after {
	-webkit-transform: rotate(270deg);
	-ms-transform: rotate(270deg);
	transform: rotate(270deg);
}

/* This allows for inserting messages that will not be displayed visually but will be read by screen readers */
.hiddenText {
    position: absolute;
    font-size: 1px;
    line-height: 1px;
    z-index: -999;
}

/********************************************************
    JavaScript Drop-downs
********************************************************/
.drop-down {
    position: relative;
    width: 95%;
    margin: 10px auto;
    padding: 15px 50px 15px 10px;
    color: #fff;
    background: #6c6c6c;
}

.drop-down-hover {
    cursor: pointer;
}

.drop-down-hover:hover {
    background: #7f7f7f;
}

.drop-content {
    width: 95%;
    margin: 0 auto;
    padding: 5px 2.5%;
    text-align: justify;
}

/* Drop-Down Arrows */
.drop-pointer {
	position: absolute;
    top: calc(50% - 12px);
    right: 20px;
	font-size: 22px;
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
}

/* Callout is for emphasizing important text and giving it a differnt background color */

.callout {
    display: block;
    background: #e3ded1;
    margin: 15px auto;
    width: 90%;
    padding: 10px;
    border: 1px solid black;
    color: #2d5d94;
}

/* PARAGRAPHS / LISTS */

p {
    margin-bottom: 10px;
	line-height: 22px;
}

ol, ul {
    padding-left: 50px;
	margin-bottom: 10px;
}

.listFix {
    overflow: hidden;
}

li {
	padding-bottom: 6px;
}

ul {
	list-style-type: square;
}

ul ul {
	list-style-type: circle;
}

ul ul ul {
    list-style-type: disc;
}

ol ol {
	list-style-type: lower-alpha;
}

ol ol ol {
    list-style-type: lower-roman;
}

/* Images / Floating */

.left {
	float: left;
	display: block;
	margin: 12px 15px 12px 0;
}

.center {
    display: block;
    margin: 12px auto;
}

.right {
	float: right;
	display: block;
    margin: 12px 0 12px 15px;
}

/* For an element containing floated elements */
.clearfix:after {
	content: " ";
	display: block;
	clear: both;
	opacity: 0;
	height: 0;
}

/* Sizing */

.full {
	width: 100%;
}

.half {
	width: 50%;
}

.quarter {
	width: 25%;
}

/* Captions for images */

span.caption {
    text-align: center;
    font-style: italic;
    padding: 5px;
    background: #e0e0e0;
}

.right + span.caption {
    clear: both;
    float: right;
    margin: 0 0 12px 15px;
}

.center + span.caption {
    display: block;
    margin: 0 auto 12px;
}

.left + span.caption {
    clear: both;
    float: left;
    margin: 0 15px 12px 0;
}

.full + span.caption {
    width: 100%;
}

.quarter + span.caption {
    width: 25%;
}

.half + span.caption {
    width: 50%;
}

/* Hanging indent for reference pages */

.hangingIndent {
    padding-left: 22px;
    text-indent: -22px;
}

/* Loader */
.externalContent {
    margin-top: 50px;
    text-align: center;
    font-size: 14px;
    color: #b1b1b1;
}

.loader {
    display: inline-block;
    border: 8px solid #f3f3f3;
    border-radius: 50%;
    border-top: 8px solid #3498db;
    width: 60px;
    height: 60px;
    animation: spin 1.3s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Button styling */
.button {
    width: 75px;
    background-color: #eaeaea;
    cursor: pointer;
    font-family: Times;
    font-size: inherit;
    border-radius: 5px;
    text-align: center;
    box-shadow: 1.5px 1.5px 1.5px #888;
} 

/* Possible easier way for button links */
a.button {
    display: inline-block;
    min-width: 75px;
    width: auto;
    padding: 0 5px;
    border: 2px outset #c7c7c7;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    font-family: Times;
    color: black;
    background: #eaeaea;
    box-shadow: 1.5px 1.5px 1.5px #888;
}

a:hover.button, a:visited.button {
    border: 2px outset #c7c7c7;
}

a:active.button {
    border: 2px inset #c7c7c7;
}

/* Flat Buttons */
.flatButton {
    display: inline-block;
    margin: 5px 0;
    padding: 15px;
    font-size: 1.05em;
    text-align: left;
    color: #fff;
    background: #486f9b;
    border-width: 0 0 2px 0;
    border-color: #253c56;
    cursor: pointer;
}

a.flatButton,
a.flatButton:hover,
a.flatButton:visited {
    color: #fff;
    border-color: #253c56;
}

.icon {
    position: relative;
    padding-left: 75px;
    min-width: 250px;
}

.icon:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 100%;
    background: #3e628c;
}

.icon:after {
    content: "";
    display: block;
    position: absolute;
    top: 5px;
    left: 7px;
    width: 45px;
    height: 45px;
    background-size: cover;
}

.drop-down.icon:before {
    background: #5c5c5c;
}

.icon.discussion:after {
    background-image: url(https://content.byui.edu/integ/gen/4273a425-48a7-469f-b9d9-79745f1668e3/0/discussion.png);
}

.icon.quiz:after {
    background-image: url(https://content.byui.edu/integ/gen/4273a425-48a7-469f-b9d9-79745f1668e3/0/quiz.png);
}

.icon.assignment:after {
    background-image: url(https://content.byui.edu/integ/gen/4273a425-48a7-469f-b9d9-79745f1668e3/0/assignment.png);
}

.icon.video:after {
    background-image: url(https://content.byui.edu/integ/gen/4273a425-48a7-469f-b9d9-79745f1668e3/0/video.png);
}
.icon.reading:after {
    background-image: url(https://content.byui.edu/integ/gen/4273a425-48a7-469f-b9d9-79745f1668e3/0/readings.png);
}

/********************************************
    Tab Outlines
*********************************************/
*[tabIndex='0']:focus,
button:focus {
    outline: 2px solid #7db9f7;
    outline-offset: 1px;
}

/* Disable firefox's dotted outline so you only see our outline */
::-moz-focus-inner {
    border:0;
}

/* Disable outlines on any tabindex set to -1 */
*[tabIndex='-1']:focus {
    outline: none;
} 

/***********************************************************
    ACTIVTY BANNERS
***********************************************************/

h1.activity,
h2.activity,
.splash h1.activity,
.splash h2.activity {
    position: relative;
    margin: 20px 0 30px;
    padding: 10px 0 10px 200px;
    color: #000;
    font-size: 32px;
    background: #d69595;
}

h1.prepare,
h2.prepare,
.splash h1.prepare,
.splash h2.prepare {
    background: #8ed0cb;
}

h1.teach,
h2.teach,
.splash h1.teach,
.splash h2.teach {
    background: #9abad6;
}

h1.ponder,
h2.ponder,
.splash h1.ponder,
.splash h2.ponder {
    background: #baa4d4;
}

/****** TOA Pseudo Text ******/
h1.activity:before,
h2.activity:before {
    content: "ACTIVITY";
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    box-sizing: border-box;
    padding-top: 22px;
    padding-right: 25px;
    width: 140px;
    height: 100%;
    font-size: 14px;
    color: #fff;
    font-family: 'Open Sans';
    text-align: center;
    background: #9f5454;
}

h1.prepare:before,
h2.prepare:before {
    content: "PREPARE";
    background: #49807b;
}

h1.teach:before,
h2.teach:before {
    content: "TEACH ONE ANOTHER";
    padding-top: 13px;
    background: #537491;
}

h1.ponder:before,
h2.ponder:before {
    content: "PONDER \0026  PROVE";
    padding-top: 13px;
    background: #8163a5;
}

/****** TOA Pseduo Icon ******/
h1.activity:after,
h2.activity:after {
    content: "";
    position: absolute;
    top: -6px;
    left: 110px;
    display: inline-block;
    width: 75px;
    height: 75px;
    background-size: cover;
}

/***********************************************************
    PREPARE ICONS
***********************************************************/

h1.readings:after,
h2.readings:after {
    background-image: url(icons.zip/icons/reading.png);
}

h1.video:after,
h2.video:after {
    background-image: url(icons.zip/icons/video.png);
}

h1.preAssessment:after,
h2.preAssessment:after {
    background-image: url(icons.zip/icons/preAssessment.png);
}

h1.checkUnderstanding:after,
h2.checkUnderstanding:after {
    background-image: url(icons.zip/icons/checkUnderstanding.png);
}

h1.caseStudy:after,
h2.caseStudy:after {
    background-image: url(icons.zip/icons/caseStudy.png);
}

h1.research:after,
h2.research:after {
    background-image: url(icons.zip/icons/research.png);
}

/***********************************************************
    TEACH ONE ANOTHER ICONS
***********************************************************/

h1.iceBreaker:after,
h2.iceBreaker:after {
    background-image: url(icons.zip/icons/iceBreaker.png);
}

h1.insightSharing:after,
h2.insightSharing:after {
    background-image: url(icons.zip/icons/insight.png);
}

h1.peerAccountability:after,
h2.peerAccountability:after {
    background-image: url(icons.zip/icons/peerAccountability.png);
}

h1.supportForum:after,
h2.supportForum:after {
    background-image: url(icons.zip/icons/supportForum.png);
}

h1.topicDiscussion:after,
h2.topicDiscussion:after {
    background-image: url(icons.zip/icons/topicDiscussion.png);
}

h1.studyGroup:after,
h2.studyGroup:after {
    background-image: url(icons.zip/icons/studyGroup.png);
}

h1.groupProblemSolving:after,
h2.groupProblemSolving:after {
    background-image: url(icons.zip/icons/groupProblemSolving.png);
}

h1.groupPresentation:after,
h2.groupPresentation:after {
    background-image: url(icons.zip/icons/groupPresentation.png);
}

h1.jigsawActivity:after,
h2.jigsawActivity:after {
    background-image: url(icons.zip/icons/jigsawActivity.png);
}

h1.rolePlayDiscussion:after,
h2.rolePlayDiscussion:after {
    background-image: url(icons.zip/icons/rolePlayDiscussion.png);
}

h1.structuredDebate:after,
h2.structuredDebate:after {
    background-image: url(icons.zip/icons/structuredDebate.png);
}

h1.peerFeedback:after,
h2.peerFeedback:after {
    background-image: url(icons.zip/icons/peerFeedback.png);
}

h1.fieldExperience:after,
h2.fieldExperience:after {
    background-image: url(icons.zip/icons/fieldExperience.png);
}

h1.groupProject:after,
h2.groupProject:after {
    background-image: url(icons.zip/icons/groupProject.png);
}

/***********************************************************
    PONDER AND PROVE ICONS
***********************************************************/

h1.reflection:after,
h2.reflection:after {
    background-image: url(icons.zip/icons/reflection.png);
}

h1.assessment:after,
h2.assessment:after {
    background-image: url(icons.zip/icons/assessment.png);
}

h1.practiceApply:after,
h2.practiceApply:after {
    background-image: url(icons.zip/icons/practiceApply.png);
}

h1.demonstrateProficiency:after,
h2.demonstrateProficiency:after {
    background-image: url(icons.zip/icons/demonstrateProficiency.png);
}

h1.presentation:after,
h2.presentation:after {
    background-image: url(icons.zip/icons/presentation.png);
}

/* Other Icon */
h1.other:after,
h2.other:after {
    background-image: url(icons.zip/icons/other.png);
}

/********************************************************
    CAROUSEL
********************************************************/
/* Override button styling from other features */
.carousel button,
.overlay button {
    padding: 0;
    font-weight: normal;
    box-shadow: none;
}

/* Style if JavaScript didn't load */
.carousel {
    width: 100%;
}

.carousel .slide {
    margin-bottom: 15px;
    width: 100%;
    min-height: 100px;
}

.carousel .slide img{
    display: block;
    margin: auto;
    max-width: 100%;
}

/* Activated carousel */
.carousel.active {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: inherit;
}

.carousel.active .slide {
    position: absolute;
    top: 0;
    margin: 0;
    width: calc(100% - 70px);
    transition: left .5s linear;
}

.carousel.active .slide.selected {
    left: 35px;
}

.carousel.active .slide.right {
    left: 105%;
}

.carousel.active .slide.left {
    left: -105%;
}

.carousel.active > button {
    position: absolute;
    top: 0;
    margin: 0;
    width: 35px;
    color: inherit;
    font-size: 65px;
    border: none;
    background: inherit;
    cursor: pointer;
    z-index: 10;
    transition: .3s;
}

.carousel.active > button:hover {
    font-size: 74px;
}

.carousel.active button.carouselLeft {
    left: 0;
}

.carousel.active button.carouselRight {
    right: 0;
}

.carousel.active .navDots {
    position: absolute;
    bottom: 0;
    margin: 0;
    padding: 5px 35px 10px;
    width: 100%;
    text-align: center;
}

.carousel.active .navDots button {
    margin-left: 6px;
    height: 10px;
    width: 10px;
    cursor: pointer;
    border: 2px solid #000;
    border-radius: 50%;
    background: none;
}

.carousel.active .navDots .current {
    background: #000;
}

.carousel.active .navDots button:hover {
    background: #000;
}

/********************************************
    OVERLAY
*********************************************/

a.triggerOverlay,
a.triggerOverlay:hover,
a.triggerOverlay:visited {
    border-bottom: #1381bb dashed 2px;
    color: inherit;
}


#overlayBackdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 998;
    background: rgba(0, 0, 0, 0.6);
}

.overlay {
    margin: 20px auto;
    padding: 30px 15px 15px;
    width: 90%;
    z-index: 999;
    background: #ffffff;
    box-shadow: 0 0 12px #000000;
    border-radius: 5px;
}

.overlay h2:first-child {
    margin-top: 0;
}

.overlay .closingX,
.overlay .closingX:hover,
.overlay .closingX:visited {
    position: absolute;
    top: 5px;
    right: 10px;
    padding: 0 5px;
    font-size: 26px;
    background: none;
    border: none;
    color: inherit;
    transform: scale(1);
    transition: .2s;
}

.overlay .closingX:hover {
    transform: scale(1.2);
}

/********************************************
    IMAGE VIEWER
*********************************************/
a.imgViewer,
a.imgViewer:hover,
a.imgViewer:visited {
    display: block;
    position: relative;
    border-bottom: none;
    cursor: pointer;
}

.imgViewer img {
    width: 100%;
}

.imgViewer p {
    position: absolute;
    top: 0;
    right: 0;
    width: 35px;
    height: 25px;
    background: #000000;
    opacity: .4;
    transition: .4s;
}

.imgViewer:hover p {
    opacity: .8;
}

.imgViewer p:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 10px;
    width: 8px;
    height: 8px;
    border: 2px solid #fff;
    border-radius: 100%;
}

.imgViewer p:after {
    content: "";
    position: absolute;
    top: 17px;
    left: 19px;
    width: 8px;
    height: 2px;
    background: #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

#imgViewer .zoom {
    position: relative;
    width: 100%;
    overflow: hidden;
/*    padding: 15px 0 0;*/
    margin-top: 15px;
}

#imgViewer .zoom img {
    position: relative;
    width: 100%;
}

#imgViewer .zoom button {
    position: absolute;
    right: 20px;
    height: 25px;
    width: 25px;
    padding: 0;
    text-align: center;
    line-height: 20px;
    font-size: 18px;
    color: #fff;
    background: #000;
    border: 1px solid #fff;
    border-radius: 3px;
    cursor: pointer;
}

#imgViewer .zoom button:nth-of-type(1) {
    bottom: 150px;
}

#imgViewer .zoom button:nth-of-type(2) {
    bottom: 115px;
}

#imgViewer .zoom button:nth-of-type(3) {
    bottom: 75px;
}
#imgViewer .zoom button:nth-of-type(4) {
    bottom: 45px;
    right: 35px;
}
#imgViewer .zoom button:nth-of-type(5) {
    bottom: 45px;
    right: 5px;
}
#imgViewer .zoom button:nth-of-type(6) {
    bottom: 15px;
}

/********************************************
    TWO COLUMN LAYOUT
*********************************************/
.column {
    display: inline-block;
    padding: 0 15px 0;
    width: 49%;
    vertical-align: top;
}

/********************************************
    List COLUMN LAYOUT
*********************************************/
.list-columns {
    font-size: 0;
}

.list-columns > * {
    font-size: 16px;
}

.list-columns > ul,
.list-columns > ol {
    display: inline-block;
    padding-top: 10px;
    vertical-align: top;
}

.list-columns ul ul,
.list-columns ol ol {
    margin-bottom: 0px;
    padding-left: 20px;
}

.list-columns.two > ul,
.list-columns.two > ol {
    width: 50%;
}

.list-columns.three > ul,
.list-columns.three > ol {
    width: 33.3%;
}

.list-columns.four > ul,
.list-columns.four > ol {
    width: 25%;
}

.list-columns.center {
    text-align: center;
}

.list-columns.center * {
    text-align: left;
}

/********************************************
    MEDIA QUERIES
*********************************************/

@media only screen and (max-width: 800px) {
    /* Turn four column list to a three column list */
    .list-columns.four > ul,
    .list-columns.four > ol {
        width: 33.3%;
    }
}

@media only screen and (max-width: 700px) {
    #main {
        width: 100%;   
    }
    
    .callout {
        width: 100%;
    }
    
   /* Images */
    .left, .right, span.caption {
        float: none;
        display: block;
        margin: 5px auto;
    }
    
    .half, .quarter, .half + span.caption,
    .quarter + span.caption {
        width: 100%;
    }
    
   /* Drop down menues */
    .tab-group {
        margin: 5px 0;
        width: 100%;
    }
    
    /*    TOA Banner */
    h1.activity,
    h2.activity {
        padding: 10px 0 10px 110px;
    }
    
    
   /* TOA Pseduo Text*/
    h1.activity:before,
    h2.activity:before {
        content: "";
        padding-right: 0px;
        width: 20px;
    }
    
   /* TOA Pseduo Icons */
    h1.activity:after,
    h2.activity:after {
        left: 25px;
    }
    
    /* Turn four and three column list to a two column list */
    .list-columns.three > ul,
    .list-columns.three > ol,
    .list-columns.four > ul,
    .list-columns.four > ol {
        width: 50%;
    }
    
    .carousel .slide {
        min-height: 60px;
    }
    
    .carousel.active > button {
        font-size: 50px;
    }
    
    .carousel.active > button:hover {
        font-size: 58px;
    }
}

@media only screen and (max-width: 600px) {
    #article {
        padding: 10px 5px;
    }
    .drop-down,
    .drop-content {
        width: 100%;
    }
    .drop-content {
        padding: 5px 2%;
    }
    .callout {
        padding: 5px;
    }
    .column {
        display: block;
        width: 100%;
        padding: 0;
        vertical-align: baseline;
    }
    /* Turn two/three/four column list to a single column list */
    .list-columns.two > ul,
    .list-columns.two > ol,
    .list-columns.three > ul,
    .list-columns.three > ol,
    .list-columns.four > ul,
    .list-columns.four > ol {
        width: 100%;
    }
}

@media only screen and (max-width: 500px) {
   /* TOA Banner */
    h1.activity,
    h2.activity {
        padding: 10px 0 10px 95px;
        font-size: 24px;
    }
    
    
    /* TOA Pseduo Text*/
    h1.activity:before,
    h2.activity:before {
        padding-right: 0px;
        width: 15px;
    }
    
    /* TOA Pseduo Icons */
    h1.activity:after,
    h2.activity:after {
        left: 20px;
        width: 65px;
        height: 65px;
    }
}

@media print {
    h1, h2, h3, h4, h5 {
        break-after: avoid;
    }
    
    .tab-content {
        break-before: avoid;
    }
    
    .callout, table, .caption {
        break-inside: avoid;
    }
    
    #main {
        width: 100%;   
    }
    
    .callout {
        width: 100%;
    }
    
    .tab-group {
        margin: 5px 0;
        width: 100%;
    }
    
    .tab-content {
        max-height: 1000px;
    }
}