﻿/*
    The following is used to override inherited styles from the WSU CSS
    that would cause issues with Bootstrap formatting of buttons.
*/
.wsu-c-content a.btn:not([class^=wsu-c]):not([class*=" wsu-c"]),
.wsu-c-content a.btn:not([class^=wsu-c]):not([class*=" wsu-c"]):visited {
    text-decoration: none;
    color: #fff;
    border-bottom: none;
}

.wsu-c-content a.btn.btn-warning:not([class^=wsu-c]):not([class*=" wsu-c"]),
.wsu-c-content a.btn.btn-warning:not([class^=wsu-c]):not([class*=" wsu-c"]):visited,
.wsu-c-content a.btn.btn-light:visited,
.wsu-c-content a.btn.btn-light:not([class^=wsu-c]):not([class*=" wsu-c"]),
.wsu-c-content a.btn.btn-light:not([class^=wsu-c]):not([class*=" wsu-c"]):visited {
    color: #212529;
}

.wsu-c-content a.btn.btn-link:not([class^=wsu-c]):not([class*=" wsu-c"]),
.wsu-c-content a.btn.btn-link:not([class^=wsu-c]):not([class*=" wsu-c"]):visited {
    color: #007bff;
}

.wsu-c-content a.btn.btn-link:hover {
    text-decoration: underline;
}

.wsu-c-content button,
.wsu-c-content button.btn {
    color: #fff;
    display: inline-block;
    border: 1px solid transparent;
    border-radius: .25rem;
    background-color: #007bff;
    border-color: #007bff;
    font-size: 1rem;
    text-align: center;
    vertical-align: middle;
    font-weight: 400;
    line-height: 1.5;
    padding: .375rem .75rem;
    -webkit-transform: inherit;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    -o-transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    text-decoration: none;
    box-shadow: none;
    cursor: pointer;
    margin-top: .25rem;
    margin-bottom: .25rem;
}

.wsu-c-content button.btn:hover {
	margin-top: .25rem;
	margin-bottom: .25rem;
	width: unset;
	height: unset;
}

.wsu-c-content button:hover {
	-webkit-box-shadow:none;
	box-shadow:none;
}

.wsu-c-content button.btn-primary {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.wsu-c-content button.btn-primary:hover {
	color: #fff;
	background-color: #0069d9;
	border-color: #0062cc;
}

.wsu-c-content button.btn-primary:focus, .wsu-c-content button.btn-primary.focus {
	color: #fff;
	background-color: #0069d9;
	border-color: #0062cc;
	box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}

.wsu-c-content button.btn-primary.disabled, .wsu-c-content button.btn-primary:disabled {
	color: #fff;
	background-color: #007bff;
	border-color: #007bff;
}

.wsu-c-content button.btn-primary:not(:disabled):not(.disabled):active, .wsu-c-content button.btn-primary:not(:disabled):not(.disabled).active,
.show > .wsu-c-content button.btn-primary.dropdown-toggle {
	color: #fff;
	background-color: #0062cc;
	border-color: #005cbf;
}

.wsu-c-content button.btn-primary:not(:disabled):not(.disabled):active:focus, .wsu-c-content button.btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .wsu-c-content button.btn-primary.dropdown-toggle:focus {
	box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}

.wsu-c-content button.btn-secondary {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}

.wsu-c-content button.btn-secondary:hover {
	color: #fff;
	background-color: #5a6268;
	border-color: #545b62;
}

.wsu-c-content button.btn-secondary:focus, .wsu-c-content button.btn-secondary.focus {
	color: #fff;
	background-color: #5a6268;
	border-color: #545b62;
	box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
}

.wsu-c-content button.btn-secondary.disabled, .wsu-c-content button.btn-secondary:disabled {
	color: #fff;
	background-color: #6c757d;
	border-color: #6c757d;
}

.wsu-c-content button.btn-secondary:not(:disabled):not(.disabled):active, .wsu-c-content button.btn-secondary:not(:disabled):not(.disabled).active,
.show > .wsu-c-content button.btn-secondary.dropdown-toggle {
	color: #fff;
	background-color: #545b62;
	border-color: #4e555b;
}

.wsu-c-content button.btn-secondary:not(:disabled):not(.disabled):active:focus, .wsu-c-content button.btn-secondary:not(:disabled):not(.disabled).active:focus,
.show > .wsu-c-content button.btn-secondary.dropdown-toggle:focus {
	box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
}

.wsu-c-content button.btn-success {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}

.wsu-c-content button.btn-success:hover {
	color: #fff;
	background-color: #218838;
	border-color: #1e7e34;
}

.wsu-c-content button.btn-success:focus, .wsu-c-content button.btn-success.focus {
	color: #fff;
	background-color: #218838;
	border-color: #1e7e34;
	box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
}

.wsu-c-content button.btn-success.disabled, .wsu-c-content button.btn-success:disabled {
	color: #fff;
	background-color: #28a745;
	border-color: #28a745;
}

.wsu-c-content button.btn-success:not(:disabled):not(.disabled):active, .wsu-c-content button.btn-success:not(:disabled):not(.disabled).active,
.show > .wsu-c-content button.btn-success.dropdown-toggle {
	color: #fff;
	background-color: #1e7e34;
	border-color: #1c7430;
}

.wsu-c-content button.btn-success:not(:disabled):not(.disabled):active:focus, .wsu-c-content button.btn-success:not(:disabled):not(.disabled).active:focus,
.show > .wsu-c-content button.btn-success.dropdown-toggle:focus {
	box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
}

.wsu-c-content button.btn-info {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8;
}

.wsu-c-content button.btn-info:hover {
	color: #fff;
	background-color: #138496;
	border-color: #117a8b;
}

.wsu-c-content button.btn-info:focus, .btn-info.focus {
	color: #fff;
	background-color: #138496;
	border-color: #117a8b;
	box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
}

.wsu-c-content button.btn-info.disabled, .wsu-c-content button.btn-info:disabled {
	color: #fff;
	background-color: #17a2b8;
	border-color: #17a2b8;
}

.wsu-c-content button.btn-info:not(:disabled):not(.disabled):active, .wsu-c-content button.btn-info:not(:disabled):not(.disabled).active,
.show > .wsu-c-content button.btn-info.dropdown-toggle {
	color: #fff;
	background-color: #117a8b;
	border-color: #10707f;
}

.wsu-c-content button.btn-info:not(:disabled):not(.disabled):active:focus, .wsu-c-content button.btn-info:not(:disabled):not(.disabled).active:focus,
.show > .wsu-c-content button.btn-info.dropdown-toggle:focus {
	box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
}

.wsu-c-content button.btn-warning {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107;
}

.wsu-c-content button.btn-warning:hover {
	color: #212529;
	background-color: #e0a800;
	border-color: #d39e00;
}

.wsu-c-content button.btn-warning:focus, .wsu-c-content button.btn-warning.focus {
	color: #212529;
	background-color: #e0a800;
	border-color: #d39e00;
	box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
}

.wsu-c-content button.btn-warning.disabled, .wsu-c-content button.btn-warning:disabled {
	color: #212529;
	background-color: #ffc107;
	border-color: #ffc107;
}

.wsu-c-content button.btn-warning:not(:disabled):not(.disabled):active, .wsu-c-content button.btn-warning:not(:disabled):not(.disabled).active,
.show > .wsu-c-content button.btn-warning.dropdown-toggle {
	color: #212529;
	background-color: #d39e00;
	border-color: #c69500;
}

.wsu-c-content button.btn-warning:not(:disabled):not(.disabled):active:focus, .wsu-c-content button.btn-warning:not(:disabled):not(.disabled).active:focus,
.show > .wsu-c-content button.btn-warning.dropdown-toggle:focus {
	box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
}

.wsu-c-content button.btn-danger {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}

.wsu-c-content button.btn-danger:hover {
	color: #fff;
	background-color: #c82333;
	border-color: #bd2130;
}

.wsu-c-content button.btn-danger:focus, .wsu-c-content button.btn-danger.focus {
	color: #fff;
	background-color: #c82333;
	border-color: #bd2130;
	box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
}

.wsu-c-content button.btn-danger.disabled, .wsu-c-content button.btn-danger:disabled {
	color: #fff;
	background-color: #dc3545;
	border-color: #dc3545;
}

.wsu-c-content button.btn-danger:not(:disabled):not(.disabled):active, .wsu-c-content button.btn-danger:not(:disabled):not(.disabled).active,
.show > .wsu-c-content button.btn-danger.dropdown-toggle {
	color: #fff;
	background-color: #bd2130;
	border-color: #b21f2d;
}

.wsu-c-content button.btn-danger:not(:disabled):not(.disabled):active:focus, .wsu-c-content button.btn-danger:not(:disabled):not(.disabled).active:focus,
.show > .wsu-c-content button.btn-danger.dropdown-toggle:focus {
	box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
}

.wsu-c-content button.btn-light {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
}

.wsu-c-content button.btn-light:hover {
	color: #212529;
	background-color: #e2e6ea;
	border-color: #dae0e5;
}

.wsu-c-content button.btn-light:focus, .wsu-c-content button.btn-light.focus {
	color: #212529;
	background-color: #e2e6ea;
	border-color: #dae0e5;
	box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
}

.wsu-c-content button.btn-light.disabled, .wsu-c-content button.btn-light:disabled {
	color: #212529;
	background-color: #f8f9fa;
	border-color: #f8f9fa;
}

.wsu-c-content button.btn-light:not(:disabled):not(.disabled):active, .wsu-c-content button.btn-light:not(:disabled):not(.disabled).active,
.show > .wsu-c-content button.btn-light.dropdown-toggle {
	color: #212529;
	background-color: #dae0e5;
	border-color: #d3d9df;
}

.wsu-c-content button.btn-light:not(:disabled):not(.disabled):active:focus, .wsu-c-content button.btn-light:not(:disabled):not(.disabled).active:focus,
.show > .wsu-c-content button.btn-light.dropdown-toggle:focus {
	box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
}

.wsu-c-content button.btn-dark {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40;
}

.wsu-c-content button.btn-dark:hover {
	color: #fff;
	background-color: #23272b;
	border-color: #1d2124;
}

.wsu-c-content button.btn-dark:focus, .wsu-c-content button.btn-dark.focus {
	color: #fff;
	background-color: #23272b;
	border-color: #1d2124;
	box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
}

.wsu-c-content button.btn-dark.disabled, .wsu-c-content button.btn-dark:disabled {
	color: #fff;
	background-color: #343a40;
	border-color: #343a40;
}

.wsu-c-content button.btn-dark:not(:disabled):not(.disabled):active, .wsu-c-content button.btn-dark:not(:disabled):not(.disabled).active,
.show > .wsu-c-content button.btn-dark.dropdown-toggle {
	color: #fff;
	background-color: #1d2124;
	border-color: #171a1d;
}

.wsu-c-content button.btn-dark:not(:disabled):not(.disabled):active:focus, .wsu-c-content button.btn-dark:not(:disabled):not(.disabled).active:focus,
.show > .wsu-c-content button.btn-dark.dropdown-toggle:focus {
	box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
}

.wsu-c-content button.btn-link {
    font-weight: 400;
    color: #007bff;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
}

.wsu-c-content button.btn-link:hover {
	color: #0056b3;
	text-decoration: underline;
}

.wsu-c-content button.btn-link:focus, .wsu-c-content button.btn-link.focus {
	text-decoration: underline;
}

.wsu-c-content button.btn-link:disabled, .wsu-c-content button.btn-link.disabled {
	color: #6c757d;
	pointer-events: none;
}

.wsu-c-content button.btn-outline-primary {
    color: #007bff;
    border-color: #007bff;
    background-color: transparent;
}

.wsu-c-content button.btn-outline-primary:hover {
	color: #fff;
	background-color: #007bff;
	border-color: #007bff;
}

.wsu-c-content button.btn-outline-primary:focus, .wsu-c-content button.btn-outline-primary.focus {
	box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.wsu-c-content button.btn-outline-primary.disabled, .wsu-c-content button.btn-outline-primary:disabled {
	color: #007bff;
	background-color: transparent;
}

.wsu-c-content button.btn-outline-primary:not(:disabled):not(.disabled):active, .wsu-c-content button.btn-outline-primary:not(:disabled):not(.disabled).active,
.show > .wsu-c-content button.btn-outline-primary.dropdown-toggle {
	color: #fff;
	background-color: #007bff;
	border-color: #007bff;
}

.wsu-c-content button.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .wsu-c-content button.btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.show > .wsu-c-content button.btn-outline-primary.dropdown-toggle:focus {
	box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.wsu-c-content button.btn-outline-secondary {
    color: #6c757d;
    border-color: #6c757d;
    background-color: transparent;
}

.wsu-c-content button.btn-outline-secondary:hover {
	color: #fff;
	background-color: #6c757d;
	border-color: #6c757d;
}

.wsu-c-content button.btn-outline-secondary:focus, .wsu-c-content button.btn-outline-secondary.focus {
	box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.wsu-c-content button.btn-outline-secondary.disabled, .wsu-c-content button.btn-outline-secondary:disabled {
	color: #6c757d;
	background-color: transparent;
}

.wsu-c-content button.btn-outline-secondary:not(:disabled):not(.disabled):active, .wsu-c-content button.btn-outline-secondary:not(:disabled):not(.disabled).active,
.show > .wsu-c-content button.btn-outline-secondary.dropdown-toggle {
	color: #fff;
	background-color: #6c757d;
	border-color: #6c757d;
}

.wsu-c-content button.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .wsu-c-content button.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
.show > .wsu-c-content button.btn-outline-secondary.dropdown-toggle:focus {
	box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.wsu-c-content button.btn-outline-success {
    color: #28a745;
    border-color: #28a745;
    background-color: transparent;
}

.wsu-c-content button.btn-outline-success:hover {
	color: #fff;
	background-color: #28a745;
	border-color: #28a745;
}

.wsu-c-content button.btn-outline-success:focus, .wsu-c-content button.btn-outline-success.focus {
	box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.wsu-c-content button.btn-outline-success.disabled, .wsu-c-content button.btn-outline-success:disabled {
	color: #28a745;
	background-color: transparent;
}

.wsu-c-content button.btn-outline-success:not(:disabled):not(.disabled):active, .wsu-c-content button.btn-outline-success:not(:disabled):not(.disabled).active,
.show > .wsu-c-content button.btn-outline-success.dropdown-toggle {
	color: #fff;
	background-color: #28a745;
	border-color: #28a745;
}

.wsu-c-content button.btn-outline-success:not(:disabled):not(.disabled):active:focus, .wsu-c-content button.btn-outline-success:not(:disabled):not(.disabled).active:focus,
.show > .wsu-c-content button.btn-outline-success.dropdown-toggle:focus {
	box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.wsu-c-content button.btn-outline-info {
    color: #17a2b8;
    border-color: #17a2b8;
    background-color: transparent;
}

.wsu-c-content button.btn-outline-info:hover {
	color: #fff;
	background-color: #17a2b8;
	border-color: #17a2b8;
}

.wsu-c-content button.btn-outline-info:focus, .wsu-c-content button.btn-outline-info.focus {
	box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.wsu-c-content button.btn-outline-info.disabled, .wsu-c-content button.btn-outline-info:disabled {
	color: #17a2b8;
	background-color: transparent;
}

.wsu-c-content button.btn-outline-info:not(:disabled):not(.disabled):active, .wsu-c-content button.btn-outline-info:not(:disabled):not(.disabled).active,
.show > .wsu-c-content button.btn-outline-info.dropdown-toggle {
	color: #fff;
	background-color: #17a2b8;
	border-color: #17a2b8;
}

.wsu-c-content button.btn-outline-info:not(:disabled):not(.disabled):active:focus, .wsu-c-content button.btn-outline-info:not(:disabled):not(.disabled).active:focus,
.show > .wsu-c-content button.btn-outline-info.dropdown-toggle:focus {
	box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.wsu-c-content button.btn-outline-warning {
    color: #ffc107;
    border-color: #ffc107;
    background-color: transparent;
}

.wsu-c-content button.btn-outline-warning:hover {
	color: #212529;
	background-color: #ffc107;
	border-color: #ffc107;
}

.wsu-c-content button.btn-outline-warning:focus, .wsu-c-content button.btn-outline-warning.focus {
	box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.wsu-c-content button.btn-outline-warning.disabled, .wsu-c-content button.btn-outline-warning:disabled {
	color: #ffc107;
	background-color: transparent;
}

.wsu-c-content button.btn-outline-warning:not(:disabled):not(.disabled):active, .wsu-c-content button.btn-outline-warning:not(:disabled):not(.disabled).active,
.show > .wsu-c-content button.btn-outline-warning.dropdown-toggle {
	color: #212529;
	background-color: #ffc107;
	border-color: #ffc107;
}

	.wsu-c-content button.btn-outline-warning:not(:disabled):not(.disabled):active:focus, .wsu-c-content button.btn-outline-warning:not(:disabled):not(.disabled).active:focus,
	.show > .wsu-c-content button.btn-outline-warning.dropdown-toggle:focus {
		box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
	}

.wsu-c-content button.btn-outline-danger {
    color: #dc3545;
    border-color: #dc3545;
    background-color: transparent;
}

.wsu-c-content button.btn-outline-danger:hover {
	color: #fff;
	background-color: #dc3545;
	border-color: #dc3545;
}

.wsu-c-content button.btn-outline-danger:focus, .wsu-c-content button.btn-outline-danger.focus {
	box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.wsu-c-content button.btn-outline-danger.disabled, .wsu-c-content button.btn-outline-danger:disabled {
	color: #dc3545;
	background-color: transparent;
}

.wsu-c-content button.btn-outline-danger:not(:disabled):not(.disabled):active, .wsu-c-content button.btn-outline-danger:not(:disabled):not(.disabled).active,
.show > .wsu-c-content button.btn-outline-danger.dropdown-toggle {
	color: #fff;
	background-color: #dc3545;
	border-color: #dc3545;
}

.wsu-c-content button.btn-outline-danger:not(:disabled):not(.disabled):active:focus, .wsu-c-content button.btn-outline-danger:not(:disabled):not(.disabled).active:focus,
.show > .wsu-c-content button.btn-outline-danger.dropdown-toggle:focus {
	box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.wsu-c-content button.btn-outline-light {
    color: #f8f9fa;
    border-color: #f8f9fa;
    background-color: transparent;
}

.wsu-c-content button.btn-outline-light:hover {
	color: #212529;
	background-color: #f8f9fa;
	border-color: #f8f9fa;
}

.wsu-c-content button.btn-outline-light:focus, .wsu-c-content button.btn-outline-light.focus {
	box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.wsu-c-content button.btn-outline-light.disabled, .wsu-c-content button.btn-outline-light:disabled {
	color: #f8f9fa;
	background-color: transparent;
}

.wsu-c-content button.btn-outline-light:not(:disabled):not(.disabled):active, .wsu-c-content button.btn-outline-light:not(:disabled):not(.disabled).active,
.show > .wsu-c-content button.btn-outline-light.dropdown-toggle {
	color: #212529;
	background-color: #f8f9fa;
	border-color: #f8f9fa;
}

.wsu-c-content button.btn-outline-light:not(:disabled):not(.disabled):active:focus, .wsu-c-content button.btn-outline-light:not(:disabled):not(.disabled).active:focus,
.show > .wsu-c-content button.btn-outline-light.dropdown-toggle:focus {
	box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.wsu-c-content button.btn-outline-dark {
    color: #343a40;
    border-color: #343a40;
    background-color: transparent;
}

.wsu-c-content button.btn-outline-dark:hover {
	color: #fff;
	background-color: #343a40;
	border-color: #343a40;
}

.wsu-c-content button.btn-outline-dark:focus, .wsu-c-content button.btn-outline-dark.focus {
	box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.wsu-c-content button.btn-outline-dark.disabled, .wsu-c-content button.btn-outline-dark:disabled {
	color: #343a40;
	background-color: transparent;
}

.wsu-c-content button.btn-outline-dark:not(:disabled):not(.disabled):active, .wsu-c-content button.btn-outline-dark:not(:disabled):not(.disabled).active,
.show > .wsu-c-content button.btn-outline-dark.dropdown-toggle {
	color: #fff;
	background-color: #343a40;
	border-color: #343a40;
}

.wsu-c-content button.btn-outline-dark:not(:disabled):not(.disabled):active:focus, .wsu-c-content button.btn-outline-dark:not(:disabled):not(.disabled).active:focus,
.show > .wsu-c-content button.btn-outline-dark.dropdown-toggle:focus {
	box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}





/*
    The following is used to override inherited styles from the WSU CSS
    that were breaking the Event Calendar control
*/
.wsu-c-content div.eventCalendar-wrap ul li {
    padding-left: 0;
    font-size: inherit;
    font-weight: normal;
    line-height: 1em;
    padding-left: 0;
    margin: 0;
}

.wsu-c-content div.eventCalendar-wrap ul:not([class^=wsu-c-]):not([class*=" wsu-c-"]) > li:before, ul.wsu-c-list > li:before,
.wsu-c-content div.eventCalendar-wrap ul li:before {
    content: "";
    background-color: transparent;
}

.wsu-c-content div.eventCalendar-wrap a:not([class^=wsu-c]):not([class*=" wsu-c"]),
.wsu-c-content div.eventCalendar-wrap a:not([class^=wsu-c]):not([class*=" wsu-c"]):visited {
    color: initial;
    border-bottom: none;
}





/*
    The following fixes are in place for old Bootstrap 3x styles that may still be in use
*/
.panel {
    margin-bottom: 20px;
    background-color: #fff;
    border: 1px solid transparent;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
    box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
}

.panel-body {
    padding: 15px;
}

.panel-heading {
    padding: 10px 15px;
    border-bottom: 1px solid transparent;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.panel-heading > .dropdown .dropdown-toggle {
	color: inherit;
}

.panel-title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
    color: inherit;
}

.panel-title > a,
.panel-title > small,
.panel-title > .small,
.panel-title > small > a,
.panel-title > .small > a {
	color: inherit;
}

.panel-footer {
    padding: 10px 15px;
    background-color: #f5f5f5;
    border-top: 1px solid #ddd;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
}

.panel > .list-group,
.panel > .panel-collapse > .list-group {
    margin-bottom: 0;
}

.panel > .list-group .list-group-item,
.panel > .panel-collapse > .list-group .list-group-item {
	border-width: 1px 0;
	border-radius: 0;
}

.panel > .list-group:first-child .list-group-item:first-child,
.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
	border-top: 0;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
}

.panel > .list-group:last-child .list-group-item:last-child,
.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
	border-bottom: 0;
	border-bottom-right-radius: 3px;
	border-bottom-left-radius: 3px;
}

.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.panel-heading + .list-group .list-group-item:first-child {
    border-top-width: 0;
}

.list-group + .panel-footer {
    border-top-width: 0;
}

.panel > .table,
.panel > .table-responsive > .table,
.panel > .panel-collapse > .table {
    margin-bottom: 0;
}

.panel > .table caption,
.panel > .table-responsive > .table caption,
.panel > .panel-collapse > .table caption {
	padding-right: 15px;
	padding-left: 15px;
}

.panel > .table:first-child,
.panel > .table-responsive:first-child > .table:first-child {
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
}

.panel > .table:first-child > thead:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
}

.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
	border-top-left-radius: 3px;
}

.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
	border-top-right-radius: 3px;
}

.panel > .table:last-child,
.panel > .table-responsive:last-child > .table:last-child {
	border-bottom-right-radius: 3px;
	border-bottom-left-radius: 3px;
}

.panel > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
	border-bottom-right-radius: 3px;
	border-bottom-left-radius: 3px;
}

.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
	border-bottom-left-radius: 3px;
}

.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
	border-bottom-right-radius: 3px;
}

.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive,
.panel > .table + .panel-body,
.panel > .table-responsive + .panel-body {
	border-top: 1px solid #ddd;
}

.panel > .table > tbody:first-child > tr:first-child th,
.panel > .table > tbody:first-child > tr:first-child td {
	border-top: 0;
}

.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
    border: 0;
}

.panel > .table-bordered > thead > tr > th:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
.panel > .table-bordered > tbody > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.panel > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-bordered > thead > tr > td:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.panel > .table-bordered > tbody > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
	border-left: 0;
}

.panel > .table-bordered > thead > tr > th:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
.panel > .table-bordered > tbody > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.panel > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-bordered > thead > tr > td:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.panel > .table-bordered > tbody > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
	border-right: 0;
}

.panel > .table-bordered > thead > tr:first-child > td,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
.panel > .table-bordered > tbody > tr:first-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
.panel > .table-bordered > thead > tr:first-child > th,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
.panel > .table-bordered > tbody > tr:first-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
	border-bottom: 0;
}

.panel > .table-bordered > tbody > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.panel > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-bordered > tbody > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.panel > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
	border-bottom: 0;
}

.panel > .table-responsive {
    margin-bottom: 0;
    border: 0;
}

.panel-group {
    margin-bottom: 20px;
}

.panel-group .panel {
	margin-bottom: 0;
	border-radius: 4px;
}

.panel-group .panel + .panel {
	margin-top: 5px;
}

.panel-group .panel-heading {
	border-bottom: 0;
}

.panel-group .panel-heading + .panel-collapse > .panel-body,
.panel-group .panel-heading + .panel-collapse > .list-group {
	border-top: 1px solid #ddd;
}

.panel-group .panel-footer {
	border-top: 0;
}

.panel-group .panel-footer + .panel-collapse .panel-body {
	border-bottom: 1px solid #ddd;
}

.panel-default {
    border-color: #ddd;
}

.panel-default > .panel-heading {
	color: #333;
	background-color: #f5f5f5;
	border-color: #ddd;
}

.panel-default > .panel-heading + .panel-collapse > .panel-body {
	border-top-color: #ddd;
}

.panel-default > .panel-heading .badge {
	color: #f5f5f5;
	background-color: #333;
}

.panel-default > .panel-footer + .panel-collapse > .panel-body {
	border-bottom-color: #ddd;
}

.panel-primary {
    border-color: #337ab7;
}

.panel-primary > .panel-heading {
	color: #fff;
	background-color: #337ab7;
	border-color: #337ab7;
}

.panel-primary > .panel-heading + .panel-collapse > .panel-body {
	border-top-color: #337ab7;
}

.panel-primary > .panel-heading .badge {
	color: #337ab7;
	background-color: #fff;
}

.panel-primary > .panel-footer + .panel-collapse > .panel-body {
	border-bottom-color: #337ab7;
}

.panel-success {
    border-color: #d6e9c6;
}

.panel-success > .panel-heading {
	color: #3c763d;
	background-color: #dff0d8;
	border-color: #d6e9c6;
}

.panel-success > .panel-heading + .panel-collapse > .panel-body {
	border-top-color: #d6e9c6;
}

.panel-success > .panel-heading .badge {
	color: #dff0d8;
	background-color: #3c763d;
}

.panel-success > .panel-footer + .panel-collapse > .panel-body {
	border-bottom-color: #d6e9c6;
}

.panel-info {
    border-color: #bce8f1;
}

.panel-info > .panel-heading {
	color: #31708f;
	background-color: #d9edf7;
	border-color: #bce8f1;
}

.panel-info > .panel-heading + .panel-collapse > .panel-body {
	border-top-color: #bce8f1;
}

.panel-info > .panel-heading .badge {
	color: #d9edf7;
	background-color: #31708f;
}

.panel-info > .panel-footer + .panel-collapse > .panel-body {
	border-bottom-color: #bce8f1;
}

.panel-warning {
    border-color: #faebcc;
}

.panel-warning > .panel-heading {
	color: #8a6d3b;
	background-color: #fcf8e3;
	border-color: #faebcc;
}

.panel-warning > .panel-heading + .panel-collapse > .panel-body {
	border-top-color: #faebcc;
}

.panel-warning > .panel-heading .badge {
	color: #fcf8e3;
	background-color: #8a6d3b;
}

.panel-warning > .panel-footer + .panel-collapse > .panel-body {
	border-bottom-color: #faebcc;
}

.panel-danger {
    border-color: #ebccd1;
}

.panel-danger > .panel-heading {
	color: #a94442;
	background-color: #f2dede;
	border-color: #ebccd1;
}

.panel-danger > .panel-heading + .panel-collapse > .panel-body {
	border-top-color: #ebccd1;
}

.panel-danger > .panel-heading .badge {
	color: #f2dede;
	background-color: #a94442;
}

.panel-danger > .panel-footer + .panel-collapse > .panel-body {
	border-bottom-color: #ebccd1;
}

.panel-body:before,
.panel-body:after {
    display: table;
    content: " ";
}

.panel-body:after {
    clear: both;
}

a.selectboxit-option-anchor {
    color: #000 !important;
    border-bottom: none !important;
}

li.selectboxit-option {
    padding-left: 0 !important;
}

li.selectboxit-option:before,
ul.ui-tabs-nav li:before,
ol.carousel-indicators li:before {
    content: "" !important;
    background-color: transparent !important;
}

ul.ui-tabs-nav li a,
a.carousel-control-prev,
a:active.carousel-control-prev,
a.carousel-control-next,
a:active.carousel-control-next {
    color: #000 !important;
    border-bottom: none !important;
    border: 0 !important;
}

ol.carousel-indicators {
    position: absolute !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    z-index: 15 !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
    padding-left: 0 !important;
    margin-right: 15% !important;
    margin-left: 15% !important;
    list-style: none !important;
    margin-top: 0 !important;
    margin-bottom: 1rem !important;
}

.carousel-indicators li {
    box-sizing: content-box !important;
    -ms-flex: 0 1 auto !important;
    flex: 0 1 auto !important;
    width: 30px !important;
    height: 3px !important;
    margin-right: 3px !important;
    margin-left: 3px !important;
    text-indent: -999px !important;
    cursor: pointer !important;
    background-color: #fff !important;
    background-clip: padding-box !important;
    border-top: 10px solid transparent !important;
    border-bottom: 10px solid transparent !important;
    opacity: .5 !important;
    transition: opacity .6s ease !important;
    list-style: none !important;
    padding: 0 !important;
}

.carousel-indicators .active {
    opacity: 1 !important;
}

.wsu-c-content div.carousel-item p {
    margin-bottom: 0;
}

.wsu-c-content .gform_wrapper select.form-select, .wsu-c-content select.form-select,
.wsu-c-content .gform_wrapper select.form-control, .wsu-c-content select.form-control {
	padding: 6px 12px;
	width: 100%;
	min-height: unset;
}

.wsu-c-content .input-group > .form-control {
    width: 1%;
}

.wsu-c-content .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
.wsu-c-content input,
.wsu-c-content textarea {
    width: unset;
    padding: 6px 4px;
}

.wsu-c-content .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
.wsu-c-content input.form-control,
.wsu-c-content textarea.form-control {
	width: 100%;
}

.wsu-c-content img {
    width: unset;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

.wsu-c-content img, .wsu-c-image {
    width: unset;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

.wsu-s-container--content-xlarge .wsu-c-container, .wsu-s-wrapper--content-xlarge .wsu-c-container {
    max-width: 100%;
}

div.wsu-s-container.wsu-s-container--content-xlarge {
    z-index: 9999;
}

.wsu-c-content label {
	margin: 0 0 0 5px;
	width: unset;
	max-width:95%;
	line-height: inherit;
	vertical-align:middle;
}

.wsu-c-content input[type="checkbox"]{
    display:inline-block;
}

.wsu-c-content input[type="checkbox"] + label,
.wsu-c-content input[type="radio"] + label {
    margin: 0 0 0 5px;
}

.padbottom {
    margin-bottom: 20px;
}

.wsu-c-card__description {
    margin-bottom: 0 !important;
}

a.no-border {
    border-bottom: none !important;
}


.show {
    display: block !important;
}

.wsu-c-content fieldset, .wsu-c-form__fieldset {
    border: unset;
    border-radius: unset;
    margin: unset;
}

.wsu-c-content h1:not([class^=wsu-c]):not([class*=" wsu-c"]).margin,
.wsu-c-content h2:not([class^=wsu-c]):not([class*=" wsu-c"]).margin,
.wsu-c-content h3:not([class^=wsu-c]):not([class*=" wsu-c"]).margin,
.wsu-c-content h4:not([class^=wsu-c]):not([class*=" wsu-c"]).margin,
.wsu-c-content h5:not([class^=wsu-c]):not([class*=" wsu-c"]).margin,
.wsu-c-content h6:not([class^=wsu-c]):not([class*=" wsu-c"]).margin,
.wsu-c-heading {
    color: #fff;
}


.wsu-g-header__wrapper {
    position: fixed;
    z-index: 10000;
}

a,
a:not([href]) {
    scroll-margin-top: 80px;
}

.wsu-c-content figure:not([class^="wsu-c-"]):not([class*=" wsu-c-"]) {
	margin-left:0;
}

.ui-dialog-titlebar-close {
	
}