@charset "UTF-8";

/* Custom Styles -- Added by gguzman@vusd.org */

/* 
Primary Blue: #005CA6
Purple: #6102B0
Green: #02B16E
Orange: #FF9500
Yellow: #FFC200
Baby Blue: #098BFB
Light Blue: #E9EEF4

System grays
Tints:
10% gray: #F8F8F8
20% gray: #E5E5E5
30% gray: #CFCFCF
50% gray: #959595
80% gray: #373737

*/

/* Directory Table Start */

.dir {
  display: table;
  color: #636363;
  font-size: 1rem;
  line-height: 1.25;
  text-align: left;
  width: 100%;
}
.dir th {
  color: #FFF;
  background-color: #005CA6;	
  padding: 10px 20px;
  font-weight: 700;
  line-height: 1;
}
.dir h3 {
  color: #FFF;
}
.dir-th-link {
  color: #FFF;
  text-decoration: none;
}
.dir-th-link:hover {
  color: #FFF;
  text-decoration: underline;
}
.dir td {
  padding: 10px 20px
}

/* Directory Table end */



.button-top {
  color: #636363;
  font-size: .75rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .03em;
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  position: relative;
  text-decoration: none;
}
.button-top:after {
  content: "\F106";
  font-family: icomoon;
  font-smoothing: antialiased;
  speak: none;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  color: #005CA6;
  margin-left: 12px;
  padding-right: 5px;
}
.button-top:focus, .button-top:hover {
  color: var(--primary-color, #005baa);
  text-decoration: underline;
}
.button-top:focus:after, .button-top:hover:after {
  color: #005CA6;
  overflow: hidden;
}

/* Begin Residency Styling */

.fpu-style {
	background-color: #00205b;
	padding: 30px;
	border-radius: 10px;
	color: #FFF;
}
.fpu-style h3 {
	color: #FFF;
}
.fsu-style {
	background-color: #b42b36;
	padding: 30px;
	border-radius: 10px;
	color: #FFF;
}
.fsu-style h3 {
	color: #FFF;
}

/* End Residency Styling */

/* Telephone Directory Styling */

.dir-top-header {
	display: flex;
	gap: 10px;
	line-height: 1.25;
	margin-bottom: -20px;
}
@media screen and (max-width: 450px) {
	.dir-top-header {
		flex-direction: column;
		text-align: center;
		margin-bottom: 20px;
	}
}
.dir-top-header-phone {
	display: flex;
	align-items: baseline;
	gap: 10px;
	margin-left: auto;	
}
@media screen and (max-width: 450px) {
	.dir-top-header-phone {
		flex-direction: column;
                margin: 0px auto;
	}
}
@media screen and (max-width: 450px) {
	.dir-top-header-phone h2 {
		text-align: center;
		margin: 0px auto;
		line-height: 1em;
	}
}
@media screen and (max-width: 450px) {
	.dir-top-header-phone h5 {
		text-align: center;
		margin: 0px auto;
		line-height: 1em;
	}
}
.dir-card {
	border: 1px solid #CFCFCF;
	border-radius: 0px 0px 10px 10px;
	box-shadow: 0 5px 10px #CFCFCF;
	padding-bottom: 20px;
	margin: -30px -20px 0px -20px;
}
.dir-header {
	display:flex;
	padding: 20px;
	background-color: #005CA6;
	border-radius: 10px 10px 0px 0px;
	line-height: 1.25;
}
@media screen and (max-width: 450px) {
	.dir-header {
		flex-direction: column;
		text-align: center;
	}
}
.dir-header h3 {
	color: #FFF;
}
.dir-dept-seperator {
	background-color: #F8F8F8;
	margin: 0px;
	padding: 4px 20px;
	border-bottom: 1px solid #CFCFCF;
}
@media screen and (max-width: 450px) {
	.dir-dept-seperator {
		text-align: center;
	}
}
.dir-header h3 {
	color: #FFF;
}
.dir-dept-seperator {
	background-color: #F8F8F8;
	margin: 0px;
	padding: 4px 20px;
	border-bottom: 1px solid #CFCFCF;
}
.dir-listing {
	display: flex;
	gap: 10px;
	align-items: center;
	padding: 10px 20px;
	line-height: 1.25;
	border-bottom: 1px solid #CFCFCF;
}
@media screen and (max-width: 450px) {
	.dir-listing {
		flex-direction: column;
                text-align: center;
	}
}
.dir-listing img {
	border-radius: 10px;
	width: 60px;
	height: 60px;
	object-fit: cover;
	flex-shrink: 0;
}
.dir-listing p {
	margin: 0px;
	padding: 0px;
}
.dir-listing h3 {
	margin-left: auto;
	color: #005CA6;
	line-height: 1;
	letter-spacing: -1px;
}
@media screen and (max-width: 450px) {
	.dir-listing h3 {
		margin: 0px;
	}
}
.dir-listing-name {
	font-weight: 700;
}
.dir-listing-title {
	font-style: italic;
	font-size: 0.875em;
}

/* End Telephone Directory Styling */

/* Begin Step List */

.steplist ul {
	list-style: none;
    padding: 0;
}
.steplist ul li {
	counter-increment: step-counter;
	margin-bottom: 20px;
	position: relative;
	padding-left: 80px;
}
.steplist ul li::before {
	content: "Step " counter(step-counter, decimal-leading-zero);
    position: absolute;
    left: 0;
    font-weight: 700;
    color: #005CA6;
}
.steplist-white ul {
	list-style: none;
    padding: 0;
	color: #FFF;
}
.steplist-white ul li {
	counter-increment: step-counter;
	margin-bottom: 20px;
	position: relative;
	padding-left: 80px;
}
.steplist-white ul li::before {
	content: "Step " counter(step-counter, decimal-leading-zero);
    position: absolute;
    left: 0;
    font-weight: 700;
	color: #FFF;
}
.steplist-white a {
	color: #FFF;
}
.steplist-white a:hover {
	color: #FFF;
}

/* End Step List */

/* Begin Convocation Styling */


.conv-hover-card {
    padding: 20px;
    margin:-5px;
    background-color: #FFF;
    border-radius: 10px;
    box-shadow: 0 7px 15px rgba(2, 177, 110, .5);
    position: relative;
}
.conv-hover-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 7px 20px rgba(2, 177, 110, 1);
}
.conv-hover-card h2 {
        font-size: 1.75rem;
	line-height: 1;
	color: #02B16E;
	margin: 0px;
}
.conv-hover-card h3 {
	line-height: 1.25;
	color: #8D8D8D;
	padding: 0px;
	margin: 0px;
}
.conv-hover-card h4 {
	line-height: 1.25;
	color: #8D8D8D;
	padding: 0px;
	margin: 0px 0px 10px 0px;
}
.conv-hover-card p {
	line-height: 1.25;
	padding: 0px;
	margin: 0px 0px 50px 0px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.conv-hover-card-link {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 20px;
	align-items: end;
}
.conv-hover-card-link-white {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 20px;
	align-items: end;
	color: #FFF;
}
.conv-hover-card-link-white:hover {
	color: #FFF;
}
.sessions-table {
	margin: -30px 0px;
	height: fit-content;
}
.sessions-table h2 {
	color: #02B16E;
	margin: 0px;
	padding: 0px;
}
.sessions-table-title {
	margin-top: 10px 0px 0px 0px;
}
.sessions-table td {
	vertical-align: top;
	height: fit-content;
}
.sessions-time {
	text-align: center;
	border-radius: 10px;
	background-color: rgba(2, 177, 110, 0.1);
	margin-right: 20px;
	height: 100%;
	padding: 10px;
}
.am-pm {
	font-size:0.875rem;
	color: #02B16E;
	font-weight: 700;
	margin: -8px 0px 0px 0px;
	padding: 4px;
	background-color: #FFF;    /*  rgba(2, 177, 110, 0.2); */
	border-radius: 6px;
	line-height: 1;
}
.bio-div {
	margin: 10px 0px;
	display: flex;
}
@media screen and (max-width: 475px) {
	.bio-div {
		flex-direction: column;
	}
}
.bio-div img {
	border-radius: 50%;
	box-shadow: 0px 5px 15px rgba(2, 177, 110, .5);
	width: 60px;
	height: 60px;
	object-fit: cover;
	border: 2px solid #02B16E;
	flex-shrink: 0;
}
.bio-div div {
	margin: 10px 0px 10px 10px;
	flex-shrink: 1;
}
@media screen and (max-width: 475px) {
	.bio-div div {
		margin: 20px 0px 10px 0px;
	}
}
.bio-div h4 {
	margin: 0px;
	line-height: 0.95;
}
.bio-div p {
	font-size: 0.9rem;
	margin: 0px;
	line-height: 1.5;
}
.bio-div-title {
	font-style: italic;
	margin-bottom: 10px;
	line-height: 1;
}


.conv-nav {
	display: flex;
	align-items: center;
	margin-bottom: -30px;
	line-height: 1;
}
@media screen and (max-width: 800px) {
	.conv-nav {
		flex-direction: column;
		text-align: center;
	}
}
.conv-nav-links {
	flex-grow: 1;
}
.conv-nav ul {
	display: flex; 
	justify-content: flex-end; 
	align-items: center; 
	flex-wrap: nowrap; 
	margin: 0px;
	padding: 0px;
	list-style: none;
}
@media screen and (max-width: 800px) {
	.conv-nav ul {
		justify-content: center;
	}
}
.conv-nav a {
	color: #FFF;
	padding: 10px;
	font-size: 1rem;
	font-weight: 700;
	text-decoration: none;
	display: block;
}
.conv-nav a:hover {
	text-decoration: underline;
}

.container-conv-main {
  background: url(../jpg/convocation2025_bg-img-g-bottom.jpg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: bottom;
  margin: 0px;
  padding: 0px 0px 30% 0px;
  background-color: #FFF;
  box-shadow: 0 5px 30px rgba(0, 92, 166, 0.5);
  border-radius: 20px;
}
.container-blue-glow {
	padding: 30px;
	background-color: #FFF;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 92, 166, 0.5);
}
.conv-top-margin-fix {
	margin-top: -20px;	
}
@media screen and (max-width: 886px) {
	.conv-top-margin-fix {
		margin-top: -60px;
	}
}
@media screen and (max-width: 685px) {
	.conv-top-margin-fix {
		margin-top: -40px;
	}
}
/* End Convocation Styling */





/* Begin BIM Jump Nav */

.jump-nav-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 10px;
}
.jump-nav {
        padding: 20px;
	background-color: #FFF;
	border: 1px solid #e3f4ec;
	border-radius: 10px;
	box-shadow: 0 5px 10px rgba(59, 102, 43, 0.4);
	position: relative;	
}
.jump-nav:hover {
	transform: translateY(-4px);
        box-shadow: 0 5px 10px rgba(59, 102, 43, 0.9);
}
.jump-nav-link {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	padding-left: 20px;
}
.BIM-BG {
	background: linear-gradient(0deg, #FFFFFF, #94C0AB);
	padding:30px 30px 60px 30px;
        /*  color: #3B662B;  */
}

/* End BIM */


/** Begin Enrollment Page Styling **/


.header-14 .nav-utility-header .fsNavLevel1>li.btn-orange>a {
    padding: 12px 20px;
    margin: 0px 10px;
    background: #FF9500;
    color: #FFF;
    font-weight: 700;
    text-align: center;
    font-size: 0.8125rem;
    text-decoration: none;
    text-transform: uppercase;
    border: none;
    display: inline-block;
}
.header-14 .nav-utility-header .fsNavLevel1>li.btn-orange>a:hover, .header-14 .nav-utility-header .fsNavLevel1>li.btn-orange>a:focus {
    color:#FFF;
    transform: translateY(-4px);
    box-shadow: 0 5px 10px rgba(255, 149, 0, 0.75);
  }

.dob-field {
	display:flex;
	gap: 10px;
	margin-bottom: 30px;
}
@media screen and (max-width: 690px) {
	.dob-field {
	flex-direction: column;
    }
}
.download-card-dark {
	display: flex;
	padding: 20px;
	background-color: #005CA6;
        border: none;
        border-radius: 10px;
        box-shadow: 0 5px 10px rgba(0, 92, 166, .5);
	flex: 1 1 0;
	color: #FFF;
}
@media screen and (max-width: 460px) {
	.download-card-dark {
	flex-direction: column;
    }
}
.download-card-dark:hover {
	transform: translateY(-6px);
    box-shadow: 0 5px 20px rgba(0, 92, 166, 1);
}
.download-card-dark h3 p {
	color: #FFF;
}

/** End Enrollment Page Styling **/


.neg30-margin {
	margin-top: -30px;
}
.minus30 {
  margin-bottom:-30px;
}
.dob-field {
	display:flex;
	gap: 10px;
	margin-bottom: 30px;
}
@media screen and (max-width: 690px) {
	.dob-field {
	flex-direction: column;
    }
}
/*  Begin Benefits Page Styling  */

.bg-image-benefits {
	background: url(../jpg/bg-image-doctor03.jpg);
	background-repeat: no-repeat;
	background-size: 100% auto;
}
.bg-image-retirees {
	background: url(../jpg/bg-image-retirees02.jpg);
	background-repeat: no-repeat;
	background-size: 100% auto;
}
.bg-image-leaves {
	background: url(../jpg/bg-image-leaves02.jpg);
	background-repeat: no-repeat;
	background-size: 100% auto;
}

/*  End Benefits Page Styling  */

/* Begin Download Cards */

.grid-3-download {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 20px;
}
@media screen and (max-width: 975px) {
	.grid-3-download {
	grid-template-columns: 1fr 1fr;
    }
}
@media screen and (max-width: 740px) {
	.grid-3-download {
	grid-template-columns: auto;
    }
}
.grid-2-download {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}
@media screen and (max-width: 680px) {
	.grid-2-download {
	grid-template-columns: auto;
    }
}
.grid-1-download {
	display: grid;
	grid-template-columns: auto;
	gap: 20px;
}
.download-card {
	display: flex;
	padding: 14px;
    background-color: #FFF;
    border: 1px solid #cfcfcf;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(207, 207, 207, .5);
	flex: 1 1 0;
}
@media screen and (max-width: 460px) {
	.download-card {
	flex-direction: column;
    }
}
.download-card:hover {
	transform: translateY(-6px);
    box-shadow: 0 5px 20px rgba(207, 207, 207, 1);
}
.download-card-text {
	margin-right: 10px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}
.download-card-text h3 {
	line-height: 1.125;
	padding: 0px;
	margin: 0px 0px 10px 0px;
}
.download-card-text p {
	line-height: 1.25;
	padding: 0px;
	margin: 0px 0px 10px 0px;
	flex-grow: 1;
}
.download-card-img {
	margin: 0px;
	padding: 0px;
	box-shadow: 0 10px 15px rgba(207, 207, 207, .75);
	max-height: 160px;
	justify-content: flex-end;
}
@media screen and (max-width: 460px) {
	.download-card-img {
    margin-top: 20px;
	max-height: none;
    }
}
.download-card-img img {
	max-height: 160px;
	max-width: 131px;
}
@media screen and (max-width: 460px) {
	.download-card-img img {
	max-width: 400px;
	width: 100%;
	max-height: none;
    height: auto;
    }
}
.form-badge {
	margin-bottom: 10px;
	padding: 4px 10px;
	background-color: #FFC200;
	color: #FFF;
	text-transform: uppercase;
	line-height: 1;
	font-weight: 700;
	font-size: 0.875rem;
	border-radius: 5px;
}

/* End Download Cards */

/* Begin Hover Cards */

.hover-card-grid-3 {
	display: grid;
	grid-template-columns: auto auto auto;
	gap: 10px;
}
@media screen and (max-width: 800px) {
	.hover-card-grid-3 {
	grid-template-columns: auto auto;
    }
}
@media screen and (max-width: 490px) {
	.hover-card-grid-3 {
	grid-template-columns: auto;
    }
}

.hover-card-grid-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}
@media screen and (max-width: 680px) {
	.hover-card-grid-2 {
	grid-template-columns: auto;
    }
}
.hover-card {
	padding: 14px;
        background-color: #FFF;
        border: 1px solid #cfcfcf;
        border-radius: 10px;
        box-shadow: 0 5px 10px rgba(207, 207, 207, .5);
	position: relative;
}
.hover-card:hover {
	/* cursor: pointer; */
	transform: translateY(-5px);
        box-shadow: 0 5px 20px rgba(207, 207, 207, 1);
}
.hover-card h2 {
	line-height: 1;
}
.hover-card h3 {
	line-height: 1.25;
	padding: 0px;
	margin: 0px;
}
.hover-card p {
	line-height: 1.25;
	padding: 0px;
	margin: 0px;
}.hover-card-link {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 14px;
	align-items: end;
}

.date-card-top {
	display: flex;
	padding-bottom: 10px;
}
.date-card-date {
	text-align: center;
	height: 80px;
	width: 30%;
	background-color: #005CA6;
	margin: 0px 10px 10px 0px;
	color: #FFF;
	line-height: 1;
	font-weight: 700;
}
.date-card-month {
	font-size: .75rem;
	display: block;
	padding-top: 18px;
}
.date-card-day {
	font-size: 1.875rem;
	display: block;
}
.date-card-info {
	width: 70%;
}
.date-card-info h4 {
	margin: 0px;
	line-height: 1.25;
}
.date-card-info p {
	font-size: .875rem;
	line-height: 1.25;
}

/* End Hover Cards */

.grid-4 {
	display: grid;
	grid-template-columns: auto auto auto auto;
	gap: 30px;
}
@media screen and (max-width: 986px) {
	.grid-4 {
	grid-template-columns: auto auto auto;
    }
}
@media screen and (max-width: 790px) {
	.grid-4 {
	grid-template-columns: auto auto;
    }
}
@media screen and (max-width: 500px) {
	.grid-4 {
	grid-template-columns: auto;
    }
}

.grid-2 {
	display: grid;
	grid-template-columns: auto auto;
	gap:30px;
}
@media screen and (max-width: 680px) {
	.grid-2 {
	grid-template-columns: auto;
    }
}

/* Begin Teach Landing Pages */

.pill-box-sm {
	margin: 0px 40px;
	display: flex;
	justify-content: center;
	padding: 6px;
	border-radius: 50px;
	box-shadow: 0px 5px 10px rgba(0, 92, 166, .5);
}
.pill-box {
	margin: 0px 200px;
	display: flex;
	justify-content: center;
	padding: 6px;
	border-radius: 50px;
	box-shadow: 0px 5px 10px rgba(0, 92, 166, .5);
}
@media screen and (max-width: 800px) {
	.pill-box {
		margin: 0px 60px;
	}
}
.pill-box span, .pill-box-sm span {
	padding: 0px;
	margin: 0px;
	font-size: 34px;
	font-weight: 700;
	line-height: 1;
	align-self: center;	
}
.pill-box p, .pill-box-sm p {
	padding: 0px 6px;
	margin: 0px;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1;
	align-self: center;
}
.bonus-box {
	margin: 0px 40px;
	padding: 30px;
	border: 2px solid #FFC200;
}
.bonus-box p {
	color:#FFF;
	text-align: center;
	line-height: 1.25;
}
.bonus-box a {
	margin: 0px;
	font-size: 1rem;
}
@media screen and (max-width: 800px) {
	.bonus-box a {
		width: 100%;
	}
}.teach-nav {
	display: flex;
	align-items: center;
	margin-bottom: -30px;
	line-height: 1;
}
@media screen and (max-width: 800px) {
	.teach-nav {
		flex-direction: column;
		text-align: center;
	}
}
.teach-nav-links {
	flex-grow: 1;
}
.logo-shadow {
	border-radius: 100px;
	box-shadow: 0px 5px 20px rgba(0, 92, 166, .5);
	width: 60px;
	min-width: 60px;
}
.teach-nav ul {
	display: flex; 
	justify-content: flex-end; 
	align-items: center; 
	flex-wrap: nowrap; 
	margin: 0px;
	padding: 0px;
	list-style: none;
}
@media screen and (max-width: 800px) {
	.teach-nav ul {
		justify-content: center;
	}
}
.teach-nav a {
	color: #005CA6;
	padding: 10px;
	font-size: .875rem;
	font-weight: 700;
	text-decoration: none;
	display: block;
}
.teach-nav a:hover {
	text-decoration: underline;
}
.container-green-blue {
  margin: 0px;
  padding: 0px;
  background: linear-gradient(0deg, #005CA6, #02B16E);
  box-shadow: 0 5px 30px rgba(2, 177, 110, .75);
}
.container-orange-blue {
  margin: 0px;
  padding: 0px;
  background: linear-gradient(0deg, #005CA6, #FF9500);
  box-shadow: 0 5px 30px rgba(255, 149, 0, .75);
}
.container-lightblue-blue {
  margin: 0px;
  padding: 0px;
  background: linear-gradient(0deg, #005CA6, #098BFB);
  box-shadow: 0 5px 30px rgba(9, 139, 251, .75);
}
.container-yellow-blue {
  margin: 0px;
  padding: 0px;
  background: linear-gradient(0deg, #005CA6, #FFC200);
  box-shadow: 0 5px 30px rgba(255, 194, 0, .75);
}
.padding-squeeze {
	padding-left: 200px;
	padding-right: 200px;
}
@media screen and (max-width: 1025px) {
	.padding-squeeze {
	padding-left: 0px;
	padding-right: 0px;
	}
}


/* End Teach Landing Pages */


/*  Start forward styling  */

.fwd-list {
	color: #FFF;
	font-family: Lato;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 18px;
        padding: 0px;
        margin: 0px;
}
.fwd-list li {
        list-style: none;
        padding: 0px;
        margin: 0px;
}
.fwd-list li:before {
        content: '';
        display: inline-block;
        margin-right: 3px;
        height: 14px;
        width: 25px;
        background-image: url("../png/bullet-motion-lines.png");
 }
.fwd-container {
  padding: 40px;
  background: #FFF;
  box-shadow: 8px 12px #401D66;
  clip-path: polygon(3% 0%, 95% 3%, 98% 96%, 0% 100%);
}
.fwd-container-centered {
  padding: 100px;
  text-align: center;
  background: #FFF;
  box-shadow: 8px 12px #401D66;
  clip-path: polygon(3% 0%, 95% 3%, 98% 96%, 0% 100%);
}
@media screen and (max-width: 948px) {
	.fwd-container-centered {
	padding: 50px;
	}
}
.fwd-container-shadow {
  filter: drop-shadow(16px 12px #9708BD);
}
.fwd-container-border {
  margin: 0px;
  padding: 30px;
  border-style: solid;
  border-width: 10px;
  border-image: linear-gradient(-45deg, rgb(12,247,246), rgb(151,8,189)) 1;
}
.fwd-container-bg-gradient {
  margin: 0px;
  padding: 30px;
  color: #FFF;
  background-image: url("../png/fwd-container-stripes.png");
  background-repeat: no-repeat;
  background: linear-gradient(-45deg, rgb(12,247,246), rgb(151,8,189));
}
.fwd-container-glow {
  margin: 0px;
  padding: 30px;
  color: #401D66;
  box-shadow: rgba(51, 8, 189, 0.2) 0px 10px 30px 0px;
}
.fwd-button {
  padding: 12px 20px;
  margin: 0px;
  background-image: linear-gradient(-45deg, #0CF7F6 0%, #9708BD 100%);
  color: #fff;
  font-weight: 700;
  text-align: center;
  font-size: .8125rem;
  line-height: 1.23077;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  min-width: 180px;
  display: inline-block;
  border: 3px solid #fff;
}
.fwd-button:hover {
  background: #fff;
  color: #9708BD;
  text-decoration: none;
  border: 3px solid #9708BD;
}
.bg-forward {
  box-shadow: rgba(51, 8, 189, 0.5) 0px 10px 30px 0px;
  background: linear-gradient(-45deg, rgb(12,247,246), rgb(151,8,189));
}
.bg-forward h1, .bg-forward h2, .bg-forward h3, .bg-forward h4, .bg-forward h5 {
  color: #9708BD;
}
.bg-forward p, .bg-forward li {
  color: #401D66;
}

/* End forward styling */

/* Begin VTEC */

.vtec-cta-card {
	padding: 0px;
	background-color: #f79239;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(247, 146, 57, .95);
	color: #FFF;
        line-height: 1.25rem;
}
.vtec-cta-card h3 {
	color: #00205C;
}
.vtec-cta-card-header {
	background-image: url('../png/vtec_header_topper-blue-02.png');
	background-repeat: no-repeat;
	background-position-x: center;
	background-size: 100% auto;
	border-radius: 10px 10px 0px 0px;
	display: flex;
}
.vtec-cta-card-header h2 {
	color: #FFF;
	line-height: 1;
	padding: 30px 0px 20px 30px;
	margin: 0px;
	flex-grow: 1;
}
.vtec-cta-card-header-img {
	width: 30%;
	margin: 10px 10px 0px 0px;
}
.vtec-container {
	padding: 30px; 
	background-image: url('../png/vtec_bg-claws-blue.png'); 
	background-repeat: no-repeat; 
	background-position-x: center; 
	background-size: 100% auto; 
	background-color:#FFF; 
	border-radius: 10px; 
	box-shadow: 0 5px 15px rgba(0, 38, 89, .3);
}
.vtec-media-container {
	padding: 30px; 
	background-image: url('../png/vtec_bg-pattern_claws.png'); 
	background-repeat: repeat-y;
        background-size: 100% auto;
	background-color:#FFF; 
	border-radius: 10px; 
	box-shadow: 0 5px 15px rgba(0, 38, 89, .3);
}
.vtec-basic-container {
	padding: 0px; 
	background-color:#FFF; 
	border-radius: 10px; 
	box-shadow: 0 5px 15px rgba(0, 38, 89, .3);
}


/* End VTEC */



/* Begin Facility Mock Button */

.fsElementTitle-temp {
  font-weight: 700;
  text-align: center;
  font-size: .8125rem;
  line-height: 1.23077;
  text-decoration: none;
  text-transform: uppercase;
}

/* End  Facility Mock Button*/


.fsStyleDefaultField {
  width: 100%;
  padding: 12px 20px;
  border-radius: 6px;
}

.fsAccount input[type=submit] {
  width: 100%;
  margin: 10px 0px;
}

.clockIcon {
  margin: 0px;
  font-weight:600;
}
.clockIcon:before {
  content: "\F017";
  font-family: icomoon;
  font-smoothing: antialiased;
  font-weight: 400;
  speak: none;
  margin-right: 5px;
}

.mapPinIcon {
  margin:0px;
  font-weight:600;
}
.mapPinIcon:before {
  content: "\E903";
  font-family: icomoon;
  font-smoothing: antialiased;
  font-weight: 400;
  speak: none;
  margin-right: 5px;
}

/*  Begin Comic Styling */

.bg-comic {
  background-image: url('../jpg/bg_iamvusd_comic.jpg');
  background-repeat: no-repeat;
  background-position-x: center;
  background-size: 100% auto;
  border:4px solid #000;
  box-shadow:16px 16px #000;
  border-radius:16px;
}
.container-comic {
  border:4px solid #000;
  padding:30px;
  background:#fff;
  box-shadow:6px 6px #000;
  margin-bottom:30px;
  border-radius:16px;
}
.container-comic-sm {
  border:4px solid #000;
  padding:20px;
  background:#fff;
  box-shadow:4px 4px #000;
  border-radius:16px;
}

/*  End Comic Styling  */

/* Begin StratNav */

.StratNav {
    display:flex;
    width:50%;
    margin:-110px auto 0px auto;
    z-index:1;
}
@media only screen and (max-width:820px) {
    .StratNav {
    width:80%;
    margin:-60px auto 20px auto;
    }
}
@media only screen and (max-width:390px) {
    .StratNav {
    width:90%;
    margin:-30px auto 20px auto;
    }
}
.StratNav div {
    flex:33.33%;
    z-index:2;
}
.StratNav a {
    display:inline-block;
}
.StratNav img:hover, .StratNav img:active {
    transform:translateY(-10px);
}

/* End StratNav */


.header-14 .fsResourceElement.fsSingleItem.logo-hero article picture {
  height:200px;
}
@media (max-width:600px) {
  .header-14 .fsResourceElement.fsSingleItem.logo-hero article picture {
  height:100px;
  }
}
.LogoHero {
  margin-top:-200px;
  width:100%;
  height:150px;
  display:flex;
  justify-content:center;
  align-items:center;
  z-index:-1;
  padding:30px;
  margin-bottom:30px;
}
@media (max-width:600px) {
  .LogoHero {
  margin-top:-100px;
  height:60px;
  }
}
.LogoHero img, .LogoHero h1 {
  z-index:1;
  width:auto !important;
  max-height:100px !important;
}
.header-14 .logo-container .logo-title .fsLocationName, .footer-2 .school-details-container .logo-container .logo-title .fsLocationName {
  line-height:1.5rem;
}
.header-14 .logo-container .logo-title .fsLocationName .fsLocationLink, .footer-2 .school-details-container .logo-container .logo-title .fsLocationName .fsLocationLink {
  font-family:Lato;
  font-size:1.5rem;
  font-weight:700;
}
.fsLocationSubtitle {
  font-family:Lato;
  font-size:.8rem;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:0.125rem;
  line-height:1rem;
}
.border-left {
  display: block;
  padding: 0 0 0 30px;
  margin: 50px 0;
  border-left: 2px solid var(--secondary-color, #a7a9ac)
}
.gray-container {
  padding: 30px;
  background-color: #F8F8F8;
  border: 1px solid #cfcfcf;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(207, 207, 207, .5);
}
.gray-stretch-container {
  margin-right: -1.25em;
  margin-left: -1.25em;
  padding: 2.5em;
  background-color: #F8F8F8;
  border: 1px solid #cfcfcf;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(207, 207, 207, .5);
}
.light-blue-container {
  padding: 30px;
  background-color: #E9EEF4;
  border: 1px solid #B2CEE4;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(178, 206, 228, .5);
}
.light-blue-stretch-container {
  margin-right: -1.25em;
  margin-left: -1.25em;
  padding: 2.5em;
  background-color: #E9EEF4;
  border: 1px solid #B2CEE4;
}
.alert-box-green {
  padding: 30px;
  background-color: #02B16E;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(2, 177, 110, .5);
}
.bg-gray {
  background-color: #F8F8F8;
}
.bg-light-blue {
  background-color: #E9EEF4;
}
.bg-blue {
  background-color: #005CA6;
}
.bg-purple {
  background-color: #6102B0;
}
.bg-green {
  background-color: #02B16E;
}
.bg-orange {
  background-color: #FF9500;
}
.bg-yellow {
  background-color: #FFC200;
}
.bg-baby-blue {
  background-color: #098BFB;
}
.bg-white {
  background-color: #FFFFFF;
}
.border-gray {
  border: 1px solid #cfcfcf;
}
.gradient-bar {
    height: 6px;
    background: linear-gradient(90deg, rgba(9,139,251,1) 0%, rgba(255,149,0,1) 20%, rgba(255,194,0,1) 40%, rgba(2,177,110,1) 60%, rgba(0,92,166,1) 80%, rgba(97,2,176,1) 100%);
    margin-bottom: -20px;
}
.hero-bar {
  margin: -20px 0px 0px 0px;
  padding: 20px;
  display: block;
}
.hero-bar a, .hero-bar h1, .hero-bar h2, .hero-bar h3, .hero-bar h4, .hero-bar h5, .hero-bar h6, .hero-bar p {
  color: #fff;
  text-align: center;
  margin: 0px;
  padding: 0px;
}
.hero-bar a:focus, .hero-bar a:hover {
  color: inherit;
}
.callout-banner {
  margin:0px;
  padding:2px;
  display: block;
}
.callout-banner p {
    margin:0px;
    padding:0px;
    color:#FFF;
    text-align:center;
    text-transform:uppercase;
    font-weight:700;
    font-size:1.125rem;
}

/* Constituent Styles */

.fsFullName {
  font-size: 1.25rem;
  line-height: 1.35rem;
}
.fsTitles {
  margin-top: -6px;
  font-size: .85rem;
  text-transform: capitalize;
  font-style: italic;
  line-height: 1rem;
}

.fsLocations, .fsDegrees {
  font-size: .85rem;
  line-height: 1rem;
}
.fsDepartments {
  font-size: .85rem;
  margin-top:-10px;
  line-height: 1rem;
}
.fsEmail {
  line-height: 1.25rem;
}
.fsPhones {
  margin-top: -6px;
  line-height: 1.25rem;
}
.fsConstituentProfileLink {
  color: #636363;
  font-size: .75rem;
  line-height: 1.33333;
  font-weight: 700;
  letter-spacing: .03em;
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  position: relative;
  text-decoration: none
}
.fsConstituentProfileLink:after {
  content: "\F105";
  font-family: icomoon;
  font-smoothing: antialiased;
  font-weight: 400;
  speak: none;
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  color: #005baa;
  margin-left: 12px;
  padding-right: 5px
}
.fsConstituentProfileLink:focus, .fsConstituentProfileLink:hover {
  color: #005baa;
  text-decoration: underline
}
.fsConstituentProfileLink:focus:after, .fsConstituentProfileLink:hover:after {
  color: #005baa;
  overflow: hidden;
  animation: wobble-horizontal 1s ease-in-out 1
}

/* End Constituent Styles */

/* Start Timeline */

.tl-timeline .tl-timeline-item .tl-card {
    max-height: 300px;
}

.tl-timeline .tl-timeline-item {
    display: flex;
    position: relative;
}

.tl-timeline .tl-timeline-item::before {
    content: "";
    background: #005CA6;
    height: 100%;
    left: 18px;
    position: absolute;
    top: 20px;
    width: 4px;
}

.tl-timeline-icon {
    z-index:1;
}
.tl-timeline .tl-timeline-item .tl-timeline-icon .tl-badge {
    margin-top: 20px;
    width: 40px;
    height: 40px;
}

.tl-timeline .tl-timeline-item .tl-timeline-content {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 0 0 0 1rem;
}
.tl-badge {
  box-sizing: border-box;
  min-width: 22px;
  height: 22px;
  padding: 0 5px;
  border-radius: 500px;
  vertical-align: middle;
  background: #005CA6;
  color: #fff;
  font-size: .875rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.tl-card-default {
  background: #fff;
  margin-bottom: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, .25);
}
.tl-card-default.tl-card-hover:hover {
  background-color: #fff;
  box-shadow: 0 14px 25px rgba(0, 0, 0, .25);
}
.tl-card-default .tl-card-header {
  padding: 15px 30px;
  border-bottom: 1px solid #e5e5e5;
}
.tl-card-default .tl-card-header h2, h3, h4, h5, h6 {
  margin: 0px;
  padding: 0px;
}
.tl-card-default .tl-card-footer {
  border-top: 1px solid #e5e5e5;
}
.tl-card-body {
  padding: 30px;
}

/* End Timeline */
