/***


TABLE OF CONTENTS

  I. Bootstrap Variable Resets
 II. Global Styles
	   a. Header
	   b. Footer
III. Global Internal Styles
	   a. Internal Layout: Column & Sidebar
	   b. Expandable Content
 IV. Individual Pages
	   a. Homepage
	   b. Landing Page
	   c. Faculty Pages
	   d. News
  V. Legacy Browser Patches
  	   a. SVG Fallback
  	   b. BG Position Shorthand Fallback

Notes:
> Media queries are organized by section rather than globally.


***/


/* I. Bootstrap Variable Resets */

/**********************/

html {
    -webkit-overflow-scrolling : touch; 
    -webkit-text-size-adjust : 100%; 
    -ms-text-size-adjust : 100%;
}

body {
	font-family: 'Merriweather Sans', sans-serif;
	font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
	line-height: 1.4;
	font-family: 'Merriweather', serif;
	margin: 1.2em 0 1em 0;
}

h1, h2, h3 {
	margin: 1.2em 0 1em 0;
}

h1 {
	text-transform: uppercase;
	font-size: 1.875em;
	letter-spacing: 0.15em;
}

/* Giving day
h1 a, h1 a:hover {
	color: #ffffff;
	text-decoration:underline;
}*/

h2 {
	text-transform: uppercase;
	font-size: 1.125em;
	letter-spacing: 0.15em;
}

h3 {
	font-style: italic;
	font-size: 1.2em;
	font-weight: 600;
}

h4 {
	font-style: italic;
	font-size: 1em;
	font-weight: 600;
}

h5 {
	font-style: italic;
	font-size: 0.95em;
	font-weight: 600;
}

h6 {
	font-style: italic;
	font-size: 0.875em;
	font-weight: 600;
}

a {
	color: #2fa0d2;
	/*Orig link color: #2684ae;*/
}

p {
	color: #787878;
	line-height: 1.6em;
	margin-bottom: 1.2em;
}

/*p a {
	color: #2684ae;
	text-decoration:underline;
}
*/

p.footnote {
	color: #898989;
	font-size: 0.625em;
}

blockquote {
	border-left: 6px solid #99bc5f;
}

blockquote footer {
	padding: 0;
	text-align: left;
	background-color: transparent;
}

h1 span {
	display: block;
	font-size: 0.6em;
	font-style: italic;
	font-weight: 600;
	text-transform: none;
	letter-spacing: 0;
	font-family: 'Merriweather Sans', sans-serif;
	margin-top: 0.4em;
}

ul, ol {
	color: #787878;
	line-height: 1.6em;
	margin-bottom: 1em;
}

table {
	width: 100%;
	margin-bottom: 1.4em;
	color: #787878;
	border: none;
}

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

table th {
	padding: 0.6em 1em;
	background-color: #555555;
	color: #ffffff;
	font-weight: 400;
	vertical-align: bottom;
}

table td {
	padding: 0.8em 1em;
	vertical-align: top;
}

.table>tbody>tr>td, 
.table>tbody>tr>th, 
.table>tfoot>tr>td, 
.table>tfoot>tr>th, 
.table>thead>tr>td, 
.table>thead>tr>th {
	border-top: none;
}

.table-responsive {
	border: none;
}

.table-sm {
	font-size: 0.75em;
}

.table-sm a {
	text-decoration:underline;
}

.btn, .btn-primary {
	border: 1px solid #2684ae;
	color: #ffffff;
	border-radius: 0;
    padding: 1.4em 2.5em;
    font-size: 1em;
    background-color: #2684ae;
    white-space: inherit;
}

.btn-sm {
	padding: 0.6em 1.2em;
}

.btn-inverse {
	border: 1px solid #cfcfcf;
	color: #2684ae;
	border-radius: 0;
    font-size: 1em;
    background-color: transparent;
    white-space: inherit;
}

.btn:hover, .btn-primary:hover, .btn-inverse:hover {
	border: 1px solid #217196;
	background-color: #217196;
	color: #ffffff;
}

.main-column p, .main-column ul, .main-column ol, .main-column table {
	font-weight: 300;
}

.main-column ul li, .main-column ol li {
	margin-bottom: 0.4em;
}

/*Jason added underline to main-col links
.main-column p a, .main-column ul li a, .main-column ol li a, .main-column table td a {
	text-decoration:underline;
}
*/

.main-column img {
	max-width: 100%;
	margin: 1em 0;
}

.lstc-form label {
	font-size: 0.875em;
    color: #4d4d4d;
}

.lstc-form .form-control {
	border-radius: 0;
	border: 1px solid #cfcfcf;
}

.lstc-form .form-group {
	margin-bottom: 20px;
}

.lstc-form textarea {
	height: 8em;
}

form #flytrap.form-group {
	display: none
}

.checkbox input[type=checkbox], .checkbox-inline input[type=checkbox], .radio input[type=radio], .radio-inline input[type=radio] {
	margin-left: -19px;
}

code {
	padding: 1em;
	display: block;
	background-color: #2a2d31;
	color: #7a929f;
	margin: 1em 0;
}

.video-wrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
	margin-bottom: 1.2em;
}

.video-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

@media only screen and (max-width: 1199px) {

	.container {
		width: 92%;
	}

}

@media only screen and (max-width: 400px) {

	body {
		font-size: 14px;
	}

	.lstc-form {
		font-size: 1.14em;
	}

	p.footnote {
		font-size: 0.85em;
	}

}

@media only screen and (max-width: 768px) {

	.table-responsive {
		border-right: 2px solid #cfcfcf;
	}

	.table-responsive-labels th {
		display: none;
	}

	.table-responsive-labels td {
		display: block;
	}

	.table-responsive-labels td:before {
		content: attr(data-th)": ";
		display: inline-block;
		font-weight: 600;
		width: 45%;
		margin-right: 5%;
	}

}

/* II. Global Styles */

/**********************/


/* Global Header */

.skip {
	overflow: hidden;
	position: absolute;
	clip: rect(0 0 0 0);
	height: 1px;
	width: 1px;
	margin: -1px;
	padding: 0;
	border: 0;
}

header {
	position: relative;
}

.pre-header {
	background-color: #f1f1f1;
	-webkit-box-shadow: inset 0px -2px 4px 0px rgba(0,0,0,0.5); 
	box-shadow: inset 0px -2px 4px 0px rgba(0,0,0,0.05);
}

.pre-header ul {
	list-style-type: none;
	padding-left: 0;
	float: right;
	margin-bottom: 0;
}

.pre-header ul li {
	display: inline-block;
	margin: 0 0.5em;
}

.pre-header ul li:last-child {
	margin-right: 0;
}

.pre-header ul li a {
	color: #000000;
	font-family: 'Merriweather', serif;
	font-size: 11px;
	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: 0.175em;
	display: inline-block;
	padding: 0.25em 0.5em;

}

.pre-header ul li a:hover {
	opacity: 0.7;
}

.brand {
	padding: 1.9em 0;
}

.logo {
	float: left;
	max-width: 100%;
	display: block;
	width: 354px;
	height: 78px;
	background-image: url('../img/lstc-logo.svg');
	background-repeat: no-repeat;
	margin: 0 auto;
}

.logo img {
	max-width: 100%;
}

.site-search {
	position: absolute;
	top: 3em;
	right: 9.2em;
	color: #ffffff;
}

.site-search > a {
	background-color: #2684ae;
	padding: 0.6em 0.8em;
	border-radius: 2em;
	display: inline-block;
}

.site-search > a span {
	vertical-align: middle;
}

.site-search > a span:nth-child(1) {
	display: inline-block;
	width: 16px;
	height: 18px;
	background-image: url('../img/icons/magnifying_white.svg');
	background-repeat: no-repeat;
}

.site-search > a span:nth-child(2) {
	display: none;
}

.lstc-search-engine {
	position: absolute;
	width: 10%;
	display: block;
	right: 0;
    width: 300px;
    top: 0;
    z-index: -1;
    opacity: 0;
}

.lstc-search-engine.active {
	z-index: 2;
	opacity: 1;
}

.lstc-search-engine table.gsc-search-box td {
  vertical-align: middle;
}

.lstc-search-engine .gsc-input-box {
	border: none;
	border-bottom: 1px solid #cfcfcf;
	box-shadow: none;
}

.lstc-search-engine .gsc-input-box > table {
  margin-bottom: 0;
}

.lstc-search-engine .gsc-input-box > table td {
  padding: 4px 0;
}

.lstc-search-engine .gsc-input-box-focus {
	border: none;
	border-bottom: 1px solid #cfcfcf;
	box-shadow: none;
}

.lstc-search-engine .gsib_a input {
}

.lstc-search-engine .gsib_b .gsst_a {
  transform: translateY(2px);
}

.lstc-search-engine td.gsc-search-button {
	padding: 0;
}

.lstc-search-engine input.gsc-search-button, .lstc-search-engine button.gsc-search-button {
  border: none;
  background-color: #2684ae;
  background-image: url('../img/icons/arrow_white.svg');
  background-repeat: no-repeat;
  background-position: center center;
  padding: 1.8em;
  margin: 0;
  width: 42px;
  height: 41px;
  border-collapse: separate;
  border-radius: 21px;
}

.lstc-search-engine button.gsc-search-button > svg {
  display: none;
}

.lstc-search-engine input.gsc-search-button:hover, .lstc-search-engine button.gsc-search-button:hover {
  background-color: #2684ae;
  background-image: url('../img/icons/arrow_white.svg');
}

.lstc-search-engine input.gsc-search-button:hover {
	background-color: #2684ae;
}

.lstc-search-engine input.gsc-search-button:hover, .lstc-search-engine button.gsc-search-button:hover {
  background-color: #2684ae;
}

.lstc-search-engine table td {
	padding: 0;
}

.global-give {
	position: absolute;
	top: 3em;
	right: 4em;
	color: #ffffff;
}

.global-give > a {
	background-color: #2684ae;
	padding: 0.9em 1.3em;
	border-radius: 2em;
	display: inline-block;
	color: #ffffff;

	font-size: 0.8em;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	font-weight: 300;
}

.global-give > a:hover {
	text-decoration: none;
}

a#pull {
	display: none;
}

.navbar {
	border-top: 1px solid #cfcfcf;
	border-bottom: 1px solid #cfcfcf;
	border-left: none;
	border-right: none;
	border-radius: 0;
	min-height: 0;
	margin-bottom: 0;
	display: block;
}

.nav {
	text-align: center;
}

.nav > li {
	display: inline-block;
}

.nav > li > a {
	color: #000000;
	font-size: 0.9em;
	font-family: 'Merriweather', serif;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	padding: 1.35em 1.6em;
	position: relative;
}

.nav > li > a:hover {
	background-color: transparent;
	opacity: 0.7;
}

.nav > li > a.toggleSubmenu {
	display: none;
}

.nav ul {
	display: none;
	position: absolute;
	padding-left: 0;
	list-style-type: none;
	background-color: #2684ae; 
	background-image: url('../img/pattern/stainedglass_blue.jpg');
	font-family: 'Merriweather', serif;
	font-size: 0.93em;
	border: 1px solid #0f5b7c;
	padding: 1em 2em;
    width: 246px;
	left:50%; 
	-ms-transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	transform:translateX(-50%);
	/*z-index: 1;*/
	z-index: 3;
}

.nav ul:before {
	content: '';
	display: block;
    position: absolute;
    top: -2px;
    left: 50%;
    margin-left: -13px;
    border-left: 13px solid transparent;
  	border-right: 13px solid transparent;
  
  	border-top: 12px solid #fff;
}

.nav ul > li {
}

.nav ul > li > a {
	color: #ffffff;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	display: inline-block;
	padding: 0.7em 0;
	text-decoration: none;
	font-weight: 300;
}

.nav > li > a.nav-btn-mobile-only {
	display: none;
}

.nav > li > a.nav-blue-btn {
	background-color: #2684ae;
	color: #ffffff;
	text-align: center;
	background-image: none;
}

@media only screen and (min-width: 1200px) {

	.site-search {
		right: auto;
		left: 50%;
		margin-left: 445px;
	}

	.global-give {
		right: auto;
		left: 50%;
		margin-left: 503px;
	}

}

@media only screen and (min-width: 1100px) and (max-width: 1180px), (min-width: 930px) and (max-width: 1000px), (min-width: 769px) and (max-width: 850px) {

	.nav li:first-child ul {
		transform:translateX(-25%);
	}

	.nav li:first-child ul:before {
		left: 24%;
	}

	.nav li:last-child ul {
		transform:translateX(-75%);
	}

	.nav li:last-child ul:before {
		left: 75%;
	}

}

@media only screen and (max-width: 1100px) {

	.nav > li > a {
		padding: 1.35em 0.8em;
	}

}

@media only screen and (max-width: 930px) {

	.nav > li > a {
		padding: 1.35em 0.7em;
		font-size: 0.75em;
	}

}

@media only screen and (max-width: 860px) {

	.lstc-search-engine {
		width: 220px;
	}

}

@media only screen and (min-width: 769px) {

	.nav > li:hover > ul {
		display: block;
	}

}

@media only screen and (max-width: 768px) {

	.pre-header {
		display: none;
	}

	.brand {
		text-align: center;
	}

	.logo {
		float: none;
		background-size: 100%;
	}

	.logo img {
		width: 324px;
	}

	.mobile-options {
		overflow: hidden;
		border-top: 1px solid #cfcfcf;
		border-bottom: 1px solid #cfcfcf;
	}

	.mobile-options a {
		font-size: 1.06em;
		font-family: 'Merriweather', serif;
		letter-spacing: 0.1em;
		text-transform: uppercase;
		color: #000000;
	}

	.mobile-options a:hover {
		text-decoration: none;
	}

	.site-search {
		position: static;
		float: left;
		width: 33.33333%;
		text-align: center;
		border-right: 1px solid #cfcfcf;
	}

	.site-search > a {
		width: 100%;
		padding: 1.5em 0;
		border-radius: 0;
		background-color: transparent;
		text-decoration: none;
	}

	.site-search > a span:nth-child(1) {
		background-image: url('../img/icons/magnifying.svg');
		margin-right: 0.3em;
		height: 16px;
	}

	.site-search > a span:nth-child(2) {
		display: inline;
	}

	.lstc-search-engine {
		position: static;
		background-color: #ffffff;
		height: 0;
		width: 302%;
	}

	.lstc-search-engine.active {
		height: auto;
		opacity: 1;
		border-top: 1px solid #cfcfcf;
	}

	.lstc-search-engine table {
		margin-bottom: 0;
	}

	.lstc-search-engine .gsc-input-box {
		height: auto;
	}

	.gsc-search-box-tools .gsc-search-box .gsc-input {
		padding-left: 12px;
		padding-top: 1em;
		padding-bottom: 1em;
	}

	.lstc-search-engine form.gsc-search-box, .lstc-search-engine table.gsc-search-box {
		margin-bottom: 0;
		width: 100%;
	}

	.lstc-search-engine .gsc-input-box {
		border-bottom: none;
	}

	.gsc-search-box-tools .gsib_a .gsc-input {
		padding: 15px !important;
	}

	.lstc-search-engine .gsc-input-box-focus {
		border:0;
		box-shadow: none;
	}

	.lstc-search-engine td.gsc-search-button {
		background-color: #99bc5f;
		width: 80px;
		transform: translateX(1px);
	}

  .lstc-search-engine input.gsc-search-button, .lstc-search-engine button.gsc-search-button {
    border-radius: 0;
    background-color: #99bc5f;
    vertical-align: middle;
    height: 100%;
    min-height: 24px
  }

  .lstc-search-engine input.gsc-search-button:hover, .lstc-search-engine button.gsc-search-button:hover {
    background-color: #99bc5f;
  }

	.global-give {
		position: static;
		float: left;
		width: 33.33333%;
		text-align: center;
		border-right: 1px solid #cfcfcf;
	}

	.global-give > a {
		width: 100%;
		padding: 1.5em 0;
		border-radius: 0;
		background-color: transparent;
		text-decoration: none;
		font-weight: normal;
	}

	.global-give > a span:nth-child(1) {
		display: inline-block;
		width: 21px;
		height: 19px;
		background-image: url('../img/icons/giving.svg');
		background-repeat: no-repeat;
		margin-right: 0.3em;
		position: relative;
		top: 2px;
	}

	.global-give > a span:nth-child(2) {
		display: inline;
	}

	a#pull {
		display: block;
		float: right;
		text-align: center;
		width: 33.33333%;
		padding: 1.5em 0;
		text-decoration: none;
	}

	a#pull span {
		vertical-align: middle;
	}

	a#pull span:nth-child(1) {
		display: inline-block;
		width: 16px;
		height: 16px;
		background-image: url('../img/icons/menu.svg');
		background-repeat: no-repeat;
    	margin-right: 0.3em;
	}

	.navbar {
		display: none;
		border-top: none;
		border-bottom: none;
	}

	.navbar.active {
		display: block;
	}

	.nav {
		text-align: left;
	}

	.nav > li {
		width: 100%;
		display: block;
	}

	.nav > li > a {
		display: block;
		overflow: hidden;
		padding: 1.25em 1.5em;
		font-size: 1em;
		border-bottom: 1px solid #cfcfcf;
		background-image: url('../img/icons/arrow.svg');
		background-repeat: no-repeat;
		background-position: right 2.25em center;
	}

	.nav > li > a.toggleSubmenu {
		display: inline-block;
		float: right;
		background-color: #f1f1f1;
    	padding: 1.25em 2.1em;
    	border-bottom: 1px solid #cfcfcf;
    	border-left: 1px solid #cfcfcf;
    	background-image: url('../img/icons/expand_grey.svg');
    	background-position: center center;
	}

	.nav > li > a.toggleSubmenu.active {
		background-color: #99bc5f;
		border-bottom: 1px solid #ffffff;
		border-left: 1px solid #99bc5f;
		background-image: url('../img/icons/collapse.svg');
	}

	.nav > li > a.toggleSubmenu span {
		text-indent: -9999px;
		white-space: nowrap;
		vertical-align: top;
		display: inline-block;
		width: 0;
		overflow: hidden;
	}

	.nav > li > a.nav-btn-mobile-only {
		display: block;
	}

	.nav ul {
		position: static;
		background-image: none;
		border: none;
		background-color: #99bc5f;
		width: 100%;
		left: 0;
		-ms-transform: translateX(0%);
		-webkit-transform: translateX(0%);
		-moz-transform: translateX(0%);
		transform:translateX(0%);
		padding: 0;
	}

	.nav ul.active {
		display: block;
	}

	.nav ul:before {
		display: none;
	}

	.nav ul > li > a {
		padding: 1.25em 2.75em 1.25em 1.5em;
	    font-size: 1em;
	    width: 100%;
		border-bottom: 1px solid #ffffff;
		background-image: url('../img/icons/arrow_white.svg');
		background-repeat: no-repeat;
		background-position: right 1.8em center;
	}

	.nav ul > li:last-child > a {
		border-bottom: none;
	}

}

@media only screen and (max-width: 400px) {

	.logo {
		width: 220px;
		height: 48px;
	}

	.logo img {
		width: 200px;
	}

	.nav > li > a {
		font-size: 0.85em;
		background-position: right 1.25em center;
		padding: 1.4em 1.5em;
	}

	.nav > li > a.toggleSubmenu {
    	padding: 1.4em 2.6em;
    }

	.lstc-search-engine {
		width: 303%;
	}

	.global-give > a span:nth-child(1) {
		width: 19px;
		height: 15px;
		background-size: 18px;
		top: 2px;
		margin-right: 0.2em;
	}

}


/* Global Footer */

.primary-actions {
	border-top: 1px solid #cfcfcf;
	border-bottom: 1px solid #cfcfcf;
	text-align: center;
	padding-left: 0;
	margin-bottom: 0;
}

.primary-actions li {
	display: inline-block;
	width: 20%;
	margin: 0 1%;
}

.primary-actions li > a {
	width: 100%;
	display: inline-block;
	padding: 9.8em 0 4.2em;
	font-size: 0.93em;
	font-family: 'Merriweather', serif;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	background-repeat: no-repeat;
}

.primary-actions li > a:hover {
	border-right: 1px solid #cfcfcf;
	border-left: 1px solid #cfcfcf;
	text-decoration: none;
}

.primary-actions.footer-actions li:nth-child(1) a {
	background-image: url('../img/icons/contact.svg');
	background-position: top 4.75em center;
}

.primary-actions.footer-actions li:nth-child(2) a {
	background-image: url('../img/icons/gift.svg');
	background-position: top 3.5em center;
}

.primary-actions.footer-actions li:nth-child(3) a {
	background-image: url('../img/icons/news.svg');
	background-position: top 4em center;
}

.primary-actions.footer-actions li:nth-child(4) a {
	background-image: url('../img/icons/events.svg');
	background-position: top 4em center;
}

footer {
	background-color: #f1f1f1;
	text-align: center;
	padding: 5em 0 0.6em;
}

footer ul {
	padding-left: 0;
}

footer ul.social {
	display: block;
	width: 98%;
	margin-bottom: 1.6em;
}

footer ul.social li {
	display: inline-block;
	margin: 0 0.9em;
}

footer ul.social li a {
	display: inline-block;
	width: 34px;
	height: 34px;
	text-indent: 100%; 
	white-space: nowrap; 
	overflow: hidden;
	background-repeat: no-repeat;
}

footer a.facebook {
	background-image: url('../img/icons/facebook.svg');
}

footer a.instagram {
	background-image: url('../img/icons/instagram.svg');
}

footer a.vimeo {
	background-image: url('../img/icons/vimeo.svg');
}

footer a.soundcloud {
	background-image: url('../img/icons/soundcloud.svg');
}

footer a.twitter {
	background-image: url('../img/icons/twitter.svg');
}

footer ul {
	margin-left: 0;
	display: inline-block;
	width: 28%;
	margin: 1%;
	list-style-type: none;
	vertical-align: top;
	line-height: 2em;
	margin-bottom: 3.6em;
	font-family: 'Merriweather', serif;
	letter-spacing: 0.08em;
}

footer h3 {
	font-size: 0.812em;
	letter-spacing: 0.15em;
	color: #999999;
	text-transform: uppercase;
	font-style: normal;
	font-weight: 400;
}

footer ul a {
	font-size: 0.812em;
}

footer p {
	color: #909090;
	font-size: 0.75em;
	letter-spacing: 0.07em;
}

.to-top {
	display: none;
}

@media only screen and (max-width: 768px) {

	footer {
		padding: 2em 0 0.6em;
	}

	footer ul {
		display: none;
	}

	footer ul.social li {
		margin: 0 0.8em;
	}

	footer ul.social li a {
		width: 60px;
		height: 60px;
		background-size: 100%;
	}

	.to-top {
		display: block;
		background-color: #ffffff;
		border-top: 1px solid #cfcfcf;
		color: #000000;
		text-transform: uppercase;
		letter-spacing: 0.15em;
		text-align: center;
		font-family: 'Merriweather', serif;
		padding: 1em 0;
	}

	.to-top:hover {
		text-decoration: none;
		color: #000000;
		background-color: #f1f1f1;
	}

	.to-top span {
		display: inline-block;
		width: 20px;
		height: 13px;
		background-image: url('../img/icons/arrow_up.svg');
		background-repeat: no-repeat;
		margin-right: 1em;
		margin-top: 3px;
	}

	.primary-actions li {
		width: 24%;
		margin: 0;
	}

	.primary-actions li > a {
		padding: 9.8em 0 3.6em;
		font-size: 0.8em;
		border-right: 1px solid #cfcfcf;
	}

	.primary-actions li:last-child > a {
		border-right: none;
	}

	.primary-actions li > a:hover {
		border-left: none;
		border-right: 1px solid #cfcfcf;
	}

	.primary-actions li:last-child > a:hover {
		border-right: none;
	}

}

@media only screen and (max-width: 600px) {

	.primary-actions {
		border: none;
	}

	.primary-actions.footer-actions {
		border-top: 1px solid #cfcfcf;
	}

	.primary-actions li {
		width: 50%;
		display: block;
		float: left;
	}

	.primary-actions li a, .primary-actions li a:hover {
		border: none;
	}

	.primary-actions > li > a {
		padding: 8.8em 0 2.6em;
	}

	.primary-actions li:nth-child(odd) a, .primary-actions li:nth-child(odd) a:hover {
		border-right: 1px solid #cfcfcf;
	}

	.primary-actions li:nth-child(-n+4) a, .primary-actions li:nth-child(-n+4) a:hover {
		border-bottom: 1px solid #cfcfcf;
	}

	.primary-actions.footer-actions li:nth-child(1) a {
		background-position: top 3.75em center;
	}

	.primary-actions.footer-actions li:nth-child(2) a {
		background-position: top 2.5em center;
	}

	.primary-actions.footer-actions li:nth-child(3) a {
		background-position: top 3em center;
	}

	.primary-actions.footer-actions li:nth-child(4) a {
		background-position: top 2.7em center;
	}

	footer ul.social li {
		margin: 0 0.35em;
	}

	footer ul.social li a {
		width: 40px;
		height: 40px;
		background-size: 100%;
	}

}


/* III. Global Internal Styles */

/**********************/


/* Internal Layout: Column & Sidebar */

.content {
	padding: 3.5em 0;
}

.main-column {
	overflow: hidden;
}

.sidebar {
	width: 350px;
	float: right;
	margin-left: 5em;
}

.tertiary-nav {
	color: #ffffff;
	background-color: #217196;
	padding: 2.2em 0em;
	margin-bottom: 5em;
	background-image: url('../img/pattern/logo_bg.svg');
	background-repeat: no-repeat;
	background-position: top -58px right -64px;
}

.tertiary-nav h2 {
	margin-top: 0;
	display: inline-block;
	font-size: 1.3em;
	border-bottom: 1px solid #3ca9d9;
	padding-bottom: 0.3em;
	margin-left: 1.3em;
	margin-right: 1.3em;
}

.tertiary-nav h2 span {
	display: none;
}

.tertiary-nav ul {
	list-style-type: none;
	padding-left: 0;
	margin-bottom: 0;
}

.tertiary-nav ul li {
	position: relative;
}

.tertiary-nav ul a {
	color: #ffffff;
	font-family: 'Merriweather';
	text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 1.125em;
    display: inline-block;
    width: 100%;
    padding: 0.5em 1.5em;
}

.tertiary-nav ul a.active {
	background-color: #2b91bf;
}

.tertiary-nav ul a.toggleTertiary {
	display: none;
}

.tertiary-nav ul li > ul {
	padding-left: 0;
	border-left: 1px solid #ffffff;
	margin: 0.5em 0 0.5em 1.7em;
}

.tertiary-nav ul li > ul a {
	font-size: 0.875em;
	text-transform: none;
	letter-spacing: 0.1em;
	padding: 0.3em 2em;
}

.sidebar .primary-actions {
	border-left: 1px solid #cfcfcf;
	border-right: 1px solid #cfcfcf;
	overflow: visible;
}

.sidebar .primary-actions li {
	display: block;
	margin: 0;
	width: 100%;
}

.sidebar .primary-actions li > a {
	border-top: 1px solid #ffffff;
	border-bottom: 1px solid #ffffff;
}

.sidebar .primary-actions li:first-child > a {
	border-top: none;
}

.sidebar .primary-actions li:last-child > a {
	border-bottom: none;
}

.sidebar .primary-actions li > a:hover {
	border-left: none;
	border-right: none;
	border-top: 1px solid #cfcfcf;
	border-bottom: 1px solid #cfcfcf;
	text-decoration: none;
}

.sidebar .primary-actions li:first-child > a:hover {
	border-top: none;
}

.sidebar .primary-actions li:last-child > a:hover {
	border-bottom: none;
}


/* Expandable Content */

.expandable {
	border: 1px solid #cfcfcf;
	margin: 1em 0 1em 0;
}

.expandable > h2, .expandable > h3, .expandable > h4, .expandable > h5, .expandable > h6 {
	cursor: pointer;
	background-image: url(../img/icons/plus.svg);
	background-repeat: no-repeat;
	background-position: right 2em center;
    margin: 0;
    padding: 1em 3em 1em 1.3em;
}

.expandable.active > h2, .expandable.active > h3, .expandable.active > h4, .expandable.active > h5, .expandable.active > h6 {
	background-image: url(../img/icons/minus.svg);
}

.expandable > div {
	display: none;
	padding: 0.4em 1.5em;
}

.expandable.active > div {
	display: block;
}

@media only screen and (max-width: 1020px) {

	.sidebar {
		width: 280px;
	}

}

@media only screen and (max-width: 768px) {

	.content {
		padding: 2.5em 0 4em;
	}

	.sidebar {
		float: none;
		width: 100%;
		margin-left: 0;
		border-bottom: 1px solid #cfcfcf;
    	margin-bottom: 2em;
	}

	.tertiary-nav {
		background-image: none;
		background-color: transparent;
		padding: 0;
		margin-bottom: 2em;
	}

	.tertiary-nav h2 {
		display: block;
		border: 1px solid #217196;
		color: #217196;
		font-size: 0.875em;
		padding: 1.2em 1.2em;
		cursor: pointer;
		margin-bottom: 0;
		margin-left: 0;
		margin-right: 0;
		background-image: url('../img/icons/expand_blue.svg');
		background-repeat: no-repeat;
		background-position: center right 1.5em;
	}

	.tertiary-nav h2 span {
		display: inline;
	}

	.tertiary-nav ul {
		display: none;
		background-color: #217196;
	}

	.tertiary-nav ul.active {
		display: block;
	}

	.tertiary-nav ul a {
		padding: 1em 1.2em;
		display: inline-block;
		width: 100%;
		border-bottom: 1px solid #f1f1f1;
		font-size: 1em;
	}

	.tertiary-nav ul a.toggleTertiary {
		display: inline-block;
		position: absolute;
		top: 0;
		right: 0;
		padding: 1em;
		border-bottom: none;
		width: 55px;
		text-indent: -9999px;
		white-space: nowrap;
		vertical-align: top;
		background-image: url('../img/icons/expand.svg');
		background-repeat: no-repeat;
		background-position: center center;
	}

    .tertiary-nav ul li > ul {
		margin: 0;
		border-left: none;
		border-bottom: 1px solid #ffffff;
		background-color: #1b6283;
		padding: 0.6em 0;
    }

	.tertiary-nav ul li > ul a {
		border-bottom: none;
		padding: 0.9em 1.4em;
	}

	.sidebar .primary-actions {
		display: none;
	}

}


/* IV. Individual Pages */

/**********************/


/* Homepage */

.home-hero {
	background-image: url('../img/placeholders/hero-bg-new.jpg');
	background-size: cover;
	padding: 7.7em 0;
	overflow: hidden;
	position: relative;
}

.home-hero > div, .home-hero-slider > .hero-slider-content {
  padding: 4% 4%;
  color: #ffffff;
  text-align: center;
  background-color: rgba(154,191,93,0.8);
}

/* Callout Variations */

.home-hero.corner-top-left, .home-hero.corner-top-right, .home-hero.corner-bottom-left, .home-hero.corner-bottom-right, .home-hero.full-top, .home-hero.full-bottom, .home-hero-slider.corner-top-left, .home-her-slidero.corner-top-right, .home-hero-slider.corner-bottom-left, .home-hero-slider.corner-bottom-right, .home-hero-slider.full-top, .home-hero-slider.full-bottom, .home-hero-slider.corner-top-right {
  padding: 31em 0 0;
}

.home-hero.float-right > div, .home-hero-slider.float-right > .hero-slider-content {
  width: 370px;
  margin-right: 10%;
  float: right;
  text-align: left;
}

.home-hero.float-left > div, .home-hero-slider.float-left > .hero-slider-content {
  width: 370px;
  margin-left: 10%;
  float: left;
  text-align: left;
}

.home-hero.float-center > div, .home-hero-slider.float-center > .hero-slider-content {
  width: 370px;
  margin: 0 auto;
  text-align: left;
}

.home-hero.corner-top-left > div, .home-hero-slider.corner-top-left > .hero-slider-content {
  position: absolute;
  top: 0;
  left: 0;
}

.home-hero.corner-top-right > div, .home-hero-slider.corner-top-right > .hero-slider-content {
  position: absolute;
  top: 0;
  right: 0;
}

.home-hero.corner-bottom-left > div, .home-hero-slider.corner-bottom-left > .hero-slider-content {
  position: absolute;
  bottom: 0;
  left: 0;
}

.home-hero.corner-bottom-right > div, .home-hero-slider.corner-bottom-right > .hero-slider-content {
  position: absolute;
  bottom: 0;
  right: 0;
}

.home-hero.full-top > div, .home-hero-slider.full-top > .hero-slider-content {
  position: absolute;
  top: 0;
  width: 100%;
  text-align: center;
}

.home-hero.full-bottom > div, .home-hero-slider.full-bottom > .hero-slider-content {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  text-align: center;
}

.home-hero.background-green > div, .home-hero-slider.background-green > .hero-slider-content {
  background-color: rgba(154,191,93,0.8);
}

.home-hero.background-blue > div, .home-hero-slider.background-blue > .hero-slider-content {
  background-color: rgba(39,132,174,0.8);
}

.home-hero.background-red > div, .home-hero-slider.background-red > .hero-slider-content {
  background-color: rgba(205,119,89,0.8);
}

.home-hero.background-yellow > div, .home-hero-slider.background-yellow > .hero-slider-content {
  background-color: rgba(238,183,88,0.8);
}

.home-hero.background-purple > div, .home-hero-slider.background-purple > .hero-slider-content {
  background-color: rgba(174,154,181,0.8);
}

.home-hero.background-navy > div, .home-hero-slider.background-navy > .hero-slider-content {
  background-color: rgba(51,85,90,0.8);
}

.home-hero h1 {
  font-size: 1.875em;
  text-transform: none;
  margin: 0;
  letter-spacing: 0;
  font-weight: 600;
  font-style: italic;
  line-height: 1.6em;
}

.home-hero p {
  color: #ffffff;
  margin-bottom: 0;
  margin-top: 0.5em;
}

/* Homepage Slider */

.home-hero-slider {
  padding: 7.7em 0;
  overflow: hidden;
  position: relative;
}

.hero-slide {
  /*position: relative;*/
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  background-size: cover;
  transition: transform 1s cubic-bezier(.68,.25,.48,.93);
  transform: translateX(100%);
  z-index: 1;
}

.hero-slide.prev {
  transform: translateX(-100%);
  z-index: 1;
}

.hero-slide.active {
  transform: translateX(0);
  z-index: 2;
}

.hero-slide.reset {
	transition: none !important;
	transform: translateX(100%);
	z-index: -1 !important;
}

.hero-slide-1 {
  background-image: url('../img/content/hero/hero-presentation.jpg');
	background-position: center;
}

.hero-slide-2 {
  background-image: url('../img/content/hero/hero-rooftop-garden.jpg');
}

.hero-slide-3 {
  background-image: url('../img/content/hero/hero-students-walking.jpg');
	background-position: center;
}

.hero-slider-content {
	position: relative;
	z-index: 2;
}

.hero-slider-content h1 {
  /*font-size: 60px;*/
  position: relative;
  margin-top: 0;
  /*margin-right: 1em;*/
  padding-right: 3em;
}

/*.hero-slider-content h1:before {
	content: '';
	display: block;
}*/

.hero-slider-content h1 > span {
  position: absolute;
  top: 0;
  left: 5px;
  font-size: 1.45em;
  font-family: 'Merriweather', serif;

  margin-top: 0;
  opacity: 0;
  transition: opacity 0.65s cubic-bezier(.4,.07,.63,.91);
}

.hero-slider-content h1 > span.active {
	opacity: 1;
	transition: opacity 0.65s cubic-bezier(.4,.07,.63,.91) 0.3s;
}

.hero-slider-content h1 > span:first-child {
  position: static;
}

.hero-slider-content > a {
	text-transform: uppercase;
	font-family: 'Merriweather', serif;
	letter-spacing: 0.14em;
	color: #ffffff;

	background-image: url('../img/icons/play.svg');
	background-repeat: no-repeat;
	background-position: left center;
	padding: 1em 0 1em 3em;
}

.primary-actions.hero-actions li:nth-child(1) a {
	background-image: url('../img/icons/apply.svg');
	background-position: top 4.5em center;
}

.primary-actions.hero-actions li:nth-child(2) a {
	background-image: url('../img/icons/visit.svg');
	background-position: top 4.7em center;
}

.primary-actions.hero-actions li:nth-child(3) a {
	background-image: url('../img/icons/programs.svg');
	background-position: top 4.8em center;
}

.primary-actions.hero-actions li:nth-child(4) a {
	background-image: url('../img/icons/students.svg');
	background-position: top 4.5em center;
}

.home-sub-hero {
	background-color: #f1f1f1;
	position: relative;
	padding: 5em 0;
	background-size: 100%;
	background-repeat: no-repeat;
}

.home-sub-hero.public-church {
	background-image: url('../img/content/public_church_bg.jpg');
}

.home-sub-hero.chicago-living {
	background-image: url('../img/content/chicago_living_bg.jpg');
	background-position: bottom;
	padding: 10em 0;
}

.home-sub-hero > div {
	float: left;
	width: 45%;
	margin-left: 6%;
	position: relative;
	padding: 3.75em 3.5em;
	background-color: rgba(255, 255, 255, 0.9);
	border-bottom: 2px solid #2684ae;
}

.home-sub-hero.chicago-living > div {
	float: right;
	margin-left: 0;
	margin-right: 6%;
}

.home-sub-hero h2 {
	text-align: center;
	color: #2684ae;
	font-size: 2.25em;
	font-family: 'Merriweather';
	font-style: italic;
	font-weight: 600;
	position: relative;
	margin-top: 0;
	text-transform: none;
	letter-spacing: 0;
}

.home-sub-hero h2:after {
	content: "";
    position: absolute;
    width: 32px;
    height: 2px;
    bottom: -14px;
    left: 50%;
    margin-left: -16px;
    background-color: #2684ae;
}

.home-sub-hero p {
	font-size: 1.15em;
	color: #999999;
	line-height: 1.9em;
	margin-bottom: 2.2em;
}

.home-sub-hero a {
	text-align: center;
    display: block;
    font-family: 'Merriweather', serif;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.home-callouts {
	border-top: 1px solid #cfcfcf;
	border-bottom: 1px solid #cfcfcf;
	display: table;
}

.home-callout {
	width: 50%;
	padding: 5%;
	display: table-cell;
}

.home-callout:first-child {
	border-right: 1px solid #cfcfcf;
}

.home-callout div {
	text-align: center;
}

.home-callout img {
	border-radius: 8em;
}

.home-callout h2 {
	font-size: 2.25em;
	color: #99Bc5f;
	font-family: 'Merriweather';
	font-style: italic;
	font-weight: 400;
	letter-spacing: 0;
	text-transform: none;
	position: relative;
}

.home-callout h2 span {
	font-weight: 600;
}

.home-callout h2:after {
	content: "";
	position: absolute;
	width: 32px;
	height: 2px;
	bottom: -14px;
	left: 50%;
	margin-left: -16px;
	background-color: #99Bc5f;
}

.home-callout p {
	font-size: 1.15em;
	color: #999999;
	line-height: 1.9em;
	margin-bottom: 2.2em;
}

.home-callout a {
	text-align: center;
  display: block;
  font-family: 'Merriweather', serif;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.news-and-events {
	border-top: 1px solid #cfcfcf;
	border-bottom: 1px solid #cfcfcf;
	padding: 5em 0;
}

.news-and-events .news-listing, .news-and-events .events-listing {
	float: left;
	width: 48%;
}

.news-and-events .news-listing {
	margin-right: 4%;
}

.news-and-events h2 {
	color: #2684ae;
	font-size: 2.25em;
	font-family: 'Merriweather';
	font-style: italic;
	font-weight: 600;
	position: relative;
	margin-top: 0;
	margin-bottom: 0.75em;
	text-transform: none;
	letter-spacing: 0;
	border-bottom: 1px solid #cfcfcf;
}

.news-and-events ul {
	list-style-type: none;
	padding: 0;
	margin: 0;	
	line-height: 1.9
}

.news-listing ul li {
	background-image: url('../img/icons/arrow_sm_blue.svg');
	background-repeat: no-repeat;
	background-position: 0 13px;
	padding-left: 1.2em;
	margin-bottom: 0.75em;
}

.events-listing ul li {
	margin-bottom: 1.5em;
}

.events-listing ul li span.event-date {
	color: #000000;
	font-family: 'Merriweather', serif;
	font-size: 12.5px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	display: block;
	margin-bottom: 0.35em;
}

.events-listing ul li span.event-title {
	color: #000000;
	font-family: 'Merriweather', serif;
	font-size: 16px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	display: block;
	line-height: 1.75;
}

@media only screen and (min-width: 1367px) {

	.home-hero {
		// Load larger image here
		// background-image: url('../img/placeholders/hero-bg.jpg');
	}

	.home-sub-hero.public-church {
		// Load larger image here
		// background-image: url('../img/content/public_church_bg.jpg');
	}

	.home-sub-hero.chicago-living {
		// Load larger image here
		// background-image: url('../img/content/chicago_living_bg.jpg');
	}

}

@media only screen and (min-width: 1200px) {

	.home-hero > div {
		margin: 0 auto;
		float: none;
	}

}

@media only screen and (max-width: 1000px) {

	.home-sub-hero {
		padding: 14em 0 8em;
	}

	.home-sub-hero.chicago-living {
		padding: 7em 0 9em;
	}

	.home-sub-hero > div, .home-sub-hero.chicago-living > div {
		width: 75%;
		float: none;
		margin: 0 auto;
	}

}

@media only screen and (max-width: 930px) {

	.home-hero {
		padding: 5.3em 0;
		background-image: url('../img/placeholders/hero-bg-768-new.jpg');
	}

	.home-hero > div {
		width: 370px;
		/*margin-right: 2.5%;*/
		padding: 4% 5%;
	}

}

@media only screen and (max-width: 768px) {

	.home-sub-hero {
		padding: 17em 0 5em;
	}

	.home-sub-hero.public-church {
		background-image: url('../img/content/public_church_768_bg.jpg');
	}

	.home-sub-hero.chicago-living {
		background-image: url('../img/content/chicago_living_768_bg.jpg');
		padding: 15em 0;
	}

	.home-sub-hero > div, .home-sub-hero.chicago-living > div {
		width: 80%;
		float: none;
		margin: 0 auto;
		padding: 3.75em 2.5em;
	}

	.home-sub-hero p {
		font-size: 1.15em;
	}

	.home-callouts {
		display: block;
		border-bottom: none;
	}

	.home-callout {
		width: 100%;
		display: block;
		border-bottom: 1px solid #cfcfcf;
		padding: 3em 5%;
	}

	.home-callout:first-child {
		border-right: none;
	}

	.home-callout div {
		max-width: 55%;
		margin: 0 auto;
	}

	.news-and-events .news-listing, .news-and-events .events-listing {
		float: none;
		width: 100%;
	}

	.news-and-events .news-listing {
		margin-right: 0;
		margin-bottom: 2.5em;
	}

}

@media only screen and (max-width: 600px) {

	.home-hero {
		padding: 8em 2em 2em;
	}

	.home-hero > div {
		width: 100%;
		margin-right: 0; 
		border: none;
	}

	.home-hero.float-left > div, .home-hero.float-right > div, .home-hero.float-center > div {
		width: 100%;
		/*margin-right: 0;*/ 
		border: none;
		margin: 0;
	}

	.hero-slider-content {
    top: 0;
    right: 0;
    bottom: 0;
		left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
	}

	.hero-slider-content h1 {
		padding-right: 0;
	}

	.hero-slider-content h1 > span {
		width: 100%;
		left: 0;
	}

	.hero-slider-content > a {
		background-position: top center;
		padding: 4em 0 1em;
	}

	.primary-actions.hero-actions li:nth-child(1) a {
		background-position: top 3.5em center;
	}

	.primary-actions.hero-actions li:nth-child(2) a {
		background-position: top 3.7em center;
	}

	.primary-actions.hero-actions li:nth-child(3) a {
		background-position: top 3.8em center;
	}

	.primary-actions.hero-actions li:nth-child(4) a {
		background-position: top 3.5em center;
	}

	.home-callout div {
		max-width: 75%;
		margin: 0 auto;
	}

}

@media only screen and (max-width: 400px) {

	.home-hero h1 {
		font-size: 1.5em;
	}

	.home-sub-hero.public-church {
		background-image: url('../img/content/public_church_400_bg.jpg');
	}

	.home-sub-hero.chicago-living {
		background-image: url('../img/content/chicago_living_400_bg.jpg');
		padding: 9em 0 5em;
	}

	.home-sub-hero > div, .home-sub-hero.chicago-living > div {
		width: 95%;
		padding: 3em 2em;
	}

}


/* Landing Page */

.landing-hero {
	position: relative;
	background-size: cover;
}

.landing-hero .container {
	position: relative;
	padding-top: 10.6em;
	padding-bottom: 10.6em;
}

.landing-hero h1 {
	position: absolute;
	background-image: url('../img/pattern/stainedglass_green_85.jpg');
	color: #ffffff;
    padding: 0.8em 1.6em;
    bottom: -20px;
    margin-bottom: 0;
    border: 1px solid #6c8542;
}

.landing-hero.about {
	background-image: url('../img/content/about_bg.jpg');
}

.landing-hero.admissions {
	background-image: url('../img/content/admissions_bg.jpg');
}

.landing-hero.academics {
	background-image: url('../img/content/academics_bg.jpg');
}

.landing-hero.students {
	background-image: url('../img/content/students_bg.jpg');
}

.landing-hero.giving {
	background-image: url('../img/content/giving_bg.jpg');
}

.landing-hero.alumni-friends {
	background-image: url('../img/content/alumni_bg.jpg');
}

.landing-hero.lstc-life {
	background-image: url('../img/content/life_bg.jpg');
}

.landing-hero.quick-links {
	background-image: url('../img/content/quicklinks_bg.jpg');
}

.card {
	border: 1px solid #cfcfcf;
	border-left: 6px solid #99bc5f;
	overflow: auto;
	margin-bottom: 3.4em;
	display: block;
    position: relative;
    top: 0;
    padding: 3em;
    transition: all 0.1s ease;
}

.card:hover {
	text-decoration: none;
	background-color: #fafafa;
}

.card h2 {
	margin-top: 0;
	margin-bottom: 1.6em;
	font-size: 1.25em;
	color: #000000;
	width: auto;
	overflow: hidden;
}

.card span {
	float: right;
	padding-right: 1em;
	margin-right: 0.3em;
	font-family: 'Merriweather', serif;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	transition: all 0.2s ease;
	background-image: url('../img/icons/arrow_sm_blue.svg');
	background-repeat: no-repeat;
	background-position: center right;
	line-height: 1.9em;
}

.card:hover span {
	margin-right: 0;
}

.card p {
	margin-bottom: 0;
}


/* Faculty */

.faculty-snippet {
	display: inline-block;
	width: 48%;
	margin-bottom: 4em;
	vertical-align: top;
}

.faculty-snippet:nth-child(odd) {
	margin-right: 3%;
}

.faculty-snippet img {
	float: left;
	width: 38%;
	display: inline-block;
	margin: 0 25px 0 0;
}

.faculty-snippet > div {
	overflow: auto;
	word-wrap: break-word;
}

.faculty-snippet h2 {
	font-size: 1em;
	text-transform: none;
	letter-spacing: 0.05em;
	margin: 0.4em 0;
}

.faculty-snippet h2 a {
	color: #000000;
}

.faculty-snippet p {
	font-size: 0.75em;
	line-height: 1.35em;
}

.faculty-snippet span {
	font-size: 0.875em;
	line-height: 1.8em;
	display: block;
}

.faculty-member-title {
	position: relative;
	top: -1em;
}

.faculty-member-synopsis {
	border-bottom: 1px solid #cfcfcf;
    padding-bottom: 2em;
    margin-bottom: 2em;
}

.faculty-member-synopsis img {
	float: left;
	margin-right: 3em;
	max-width: 260px;
	margin: 0 3em 0 0;
}

.faculty-member-synopsis > div {
	overflow: hidden;
}

span.phone, span.email {
	display: block;
	padding: 0.5em 0 0.5em 35px;
	background-repeat: no-repeat;
	background-position: left center;
}

span.phone {
	background-image: url('../img/icons/phone.svg');
}

span.email {
	background-image: url('../img/icons/email.svg');
	background-repeat: no-repeat;
}

@media only screen and (max-width: 1060px) and (min-width: 769px) {

	.faculty-snippet {
		width: 100%;
		margin-bottom: 3em;
	}

	.faculty-snippet:nth-child(odd) {
		margin-right: 0;
	}

	.faculty-snippet img {
		width: 25%;
	}

	.faculty-member-synopsis img {
		float: none;
		margin-right: 0;
		max-width: 100%;
		margin-bottom: 1em;
	}

}

@media only screen and (max-width: 880px) and (min-width: 769px) {

	.card h2 {
		overflow: visible;
		margin-bottom: 0.8em;
	}

	.card h2:after {
		display: block;
		content: 'Learn more \203a';
		text-transform: uppercase;
		letter-spacing: 0.1em;
		font-size: 0.8em;
		color: #2684ae;
		margin-top: 0.6em;
	}

	.card span {
		display: none;
	}

}

@media only screen and (max-width: 768px) {

	.landing-hero .container {
		padding-top: 5.5em;
	}

	.card {
		border: 1px solid #cfcfcf;
		border-bottom: 6px solid #99bc5f;
	}

	.card img {
		display: none;
	}

	.card span {
		margin-right: 0;
	}

}

@media only screen and (max-width: 600px) {

	.faculty-snippet {
		width: 100%;
		margin-bottom: 3em;
	}

	.faculty-snippet:nth-child(odd) {
		margin-right: 0;
	}

	.faculty-snippet img {
		width: 25%;
	}

	.faculty-member-synopsis img {
		float: none;
		margin-right: 0;
		max-width: none;
		width: 100%;
		margin-bottom: 1em;
	}

	.card h2 {
		overflow: visible;
		margin-bottom: 0.8em;
	}

	.card h2:after {
		display: block;
		content: 'Learn more  \203a';
		text-transform: uppercase;
		letter-spacing: 0.1em;
		font-size: 0.8em;
		color: #2684ae;
		margin-top: 0.6em;
	}

	.card span {
		display: none;
	}

}

@media only screen and (max-width: 400px) {

	.landing-hero .container {
		padding-top: 5em;
		padding-bottom: 2em;
	}

	.landing-hero h1 {
		position: static;
		padding: 0.8em 0;
		margin: 0;
		text-align: center;
	}

	.faculty-snippet {
		font-size: 1.125em;
	}

	.card {
		padding: 2.8em 2em;
	}

}


/* News */

.archive-nav {
	border: 1px solid #cfcfcf;
	padding: 0.9em 2em;
	overflow: auto;
}

.archive-nav div {
	float: right;
    width: 40%;
}

.archive-nav h2 {
	display: inline-block;
	margin: 0.7em 0;
}

.story-snippet {
	margin: 2em 0;
}

.story-snippet-date {
	float: left;
	width: 80px;
	margin-right: 2em;
	margin-top: 1.2em;
}

.story-snippet-date span {
	display: block;
	text-align: center;
}

.story-snippet-date span:first-child {
	background-color: #99bc5f;
	color: #ffffff;
	text-transform: uppercase;
    padding: 0.3em 0;
    font-size: 0.9em;
    letter-spacing: 1px;
}

.story-snippet-date span:last-child {
	border-left: 1px solid #cfcfcf;
	border-bottom: 1px solid #cfcfcf;
	border-right: 1px solid #cfcfcf;
	font-family: 'Merriweather', serif;
	font-size: 1.875em;
	padding-bottom: 0.3em;
}

.story-snippet-content {
	overflow: hidden;
}

.story-snippet h2 a {
	color: #000000;
}

.story-snippet p {
	margin-bottom: 1.3em;
}

@media only screen and (max-width: 940px) {

	.archive-nav div {
		float: none;
		width: 100%;
	}

}

@media only screen and (max-width: 768px) {

	.story-snippet-content {
		padding-bottom: 4px;
	}

}

@media only screen and (max-width: 400px) {

	.archive-nav {
		padding: 0.9em 1em 1.3em;
	}

	.story-snippet-date {
		float: none;
		width: auto;
	}

	.story-snippet-date span {
		display: inline-block;
	}

	.story-snippet-date span:first-child, .story-snippet-date span:last-child {
		background-color: transparent;
		color: #000000;
		text-transform: uppercase;
		font-size: 0.9em;
		letter-spacing: 1px;
		border: none;
	}

	.story-snippet-date span:first-child {
		margin-right: 5px;
	}

}


/* V. Legacy Browser Patches */

/**********************/

.no-inlinesvg .logo {
	background-image: url('../img/png/lstc-logo.png');
}

.no-inlinesvg .site-search > a span:first-child {
	background-image: url('../img/icons/png/magnifying_white.png');
}

.no-inlinesvg .lstc-search-engine input.gsc-search-button {
	background-image: url('../img/icons/png/arrow_white.png');
}

.no-inlinesvg .lstc-search-engine input.gsc-search-button:hover {
	background-image: url('../img/icons/png/arrow_white.png');
}

.no-inlinesvg .primary-actions.footer-actions li a.action-contact {
	background-image: url('../img/icons/png/contact.png');
	background-position-x: center;
	background-position-y: 72px;
}

.no-inlinesvg .primary-actions.footer-actions li a.action-giving {
	background-image: url('../img/icons/png/gift.png');
	background-position-x: center;
	background-position-y: 52px;
}

.no-inlinesvg .primary-actions.footer-actions li a.action-news {
	background-image: url('../img/icons/png/news.png');
	background-position-x: center;
	background-position-y: 56px;
}

.no-inlinesvg .primary-actions.footer-actions li a.action-events {
	background-image: url('../img/icons/png/events.png');
	background-position-x: center;
	background-position-y: 53px;
}

.no-inlinesvg footer a.facebook {
	background-image: url('../img/icons/png/facebook.png');
}

.no-inlinesvg footer a.instagram {
	background-image: url('../img/icons/png/instagram.png');
}

.no-inlinesvg footer a.vimeo {
	background-image: url('../img/icons/png/vimeo.png');
}

.no-inlinesvg footer a.soundcloud {
	background-image: url('../img/icons/png/soundcloud.png');
}

.no-inlinesvg footer a.twitter {
	background-image: url('../img/icons/png/twitter.png');
}

.no-inlinesvg .expandable > h2, .no-inlinesvg .expandable > h3, .no-inlinesvg .expandable > h4, .no-inlinesvg .expandable > h5, .no-inlinesvg .expandable > h6 {
	background-image: url('../img/icons/png/plus.png');
}

.no-inlinesvg .expandable.active > h2, .no-inlinesvg .expandable.active > h3, .no-inlinesvg .expandable.active > h4, .no-inlinesvg .expandable.active > h5, .no-inlinesvg .expandable.active > h6 {
	background-image: url('../img/icons/png/minus.png');
}

.no-inlinesvg .primary-actions.hero-actions li a.action-apply {
	background-image: url('../img/icons/png/apply.png');
	background-position-x: center;
	background-position-y: 65px;
}

.no-inlinesvg .primary-actions.hero-actions li a.action-visit {
	background-image: url('../img/icons/png/visit.png');
	background-position-x: center;
	background-position-y: 68px;
}

.no-inlinesvg .primary-actions.hero-actions li a.action-degrees {
	background-image: url('../img/icons/png/programs.png');
	background-position-x: center;
	background-position-y: 65px;
}

.no-inlinesvg .primary-actions.hero-actions li a.action-quicklinks {
	background-image: url('../img/icons/png/students.png');
	background-position-x: center;
	background-position-y: 64px;
}

.no-inlinesvg .card span {
	background-image: url('../img/icons/png/arrow_sm_blue.png');
}

.no-inlinesvg span.phone {
	background-image: url('../img/icons/png/phone.png');
}

.no-inlinesvg span.email {
	background-image: url('../img/icons/png/email.png');
}

.lt-ie9 .home-sub-hero > div {
	background-color: #ffffff;
}

.lt-ie9 .home-callouts {
	text-align: center;
}

.lt-ie9 .home-callout {
	width: 49%;
	display: inline-block;
}

.lt-ie9 .nav > li:hover > ul {
	display: block;
}

.lt-ie9 .nav ul {
	margin-left: -123px;
}

/* Background Position Fixes - Legacy Browsers */

.lt-ie9 .lstc-search-engine input.gsc-search-button {
	background-position-x: center;
	background-position-y: center;
}

.no-bgpositionshorthand .primary-actions.hero-actions li a.action-apply {
	background-position-x: center;
	background-position-y: 65px;
}

.no-bgpositionshorthand .primary-actions.hero-actions li a.action-visit {
	background-position-x: center;
	background-position-y: 68px;
}

.no-bgpositionshorthand .primary-actions.hero-actions li a.action-degrees {
	background-position-x: center;
	background-position-y: 65px;
}

.no-bgpositionshorthand .primary-actions.hero-actions li a.action-quicklinks {
	background-position-x: center;
	background-position-y: 64px;
}

.no-bgpositionshorthand .primary-actions.footer-actions li a.action-contact {
	background-position-x: center;
	background-position-y: 72px;
}

.no-bgpositionshorthand .primary-actions.footer-actions li a.action-giving {
	background-position-x: center;
	background-position-y: 52px;
}

.no-bgpositionshorthand .primary-actions.footer-actions li a.action-news {
	background-position-x: center;
	background-position-y: 56px;
}

.no-bgpositionshorthand .primary-actions.footer-actions li a.action-events {
	background-position-x: center;
	background-position-y: 53px;
}

.no-bgpositionshorthand .expandable > h2, .no-bgpositionshorthand .expandable > h3, .no-bgpositionshorthand .expandable > h4, .no-bgpositionshorthand .expandable > h5, .no-bgpositionshorthand .expandable > h6 {
	background-position-x: 90%;
	background-position-y: center;
}

.no-bgpositionshorthand .card span {
	background-position-x: right;
	background-position-y: center;
}

.no-bgpositionshorthand span.phone, .no-bgpositionshorthand span.email {
	background-position-x: left;
	background-position-y: center;
}

@media only screen and (max-width: 768px) {

	.no-bgpositionshorthand .nav > li > a {
		background-position-x: 93%;
		background-position-y: center;
	}

	.nav > li > a.toggleSubmenu {
		background-position-x: center;
		background-position-y: center;
	}

	.nav ul > li > a {
		background-position-x: 93%;
		background-position-y: center;
	}


	.no-bgpositionshorthand .tertiary-nav h2 {
		background-position-x: 93%;
		background-position-y: center;
	}

}

@media only screen and (max-width: 600px) {

	.no-bgpositionshorthand .primary-actions.hero-actions li a.action-apply {
		background-position-x: center;
		background-position-y: 42px;
	}

	.no-bgpositionshorthand .primary-actions.hero-actions li a.action-visit {
		background-position-x: center;
		background-position-y: 46px;
	}

	.no-bgpositionshorthand .primary-actions.hero-actions li a.action-degrees {
		background-position-x: center;
		background-position-y: 48px;
	}

	.no-bgpositionshorthand .primary-actions.hero-actions li a.action-quicklinks {
		background-position-x: center;
		background-position-y: 47px;
	}

	.no-bgpositionshorthand .primary-actions.footer-actions li a.action-contact {
		background-position-x: center;
		background-position-y: 50px;
	}

	.no-bgpositionshorthand .primary-actions.footer-actions li a.action-giving {
		background-position-x: center;
		background-position-y: 30px;
	}

	.no-bgpositionshorthand .primary-actions.footer-actions li a.action-news {
		background-position-x: center;
		background-position-y: 36px;
	}

	.no-bgpositionshorthand .primary-actions.footer-actions li a.action-events {
		background-position-x: center;
		background-position-y: 31px;
	}

}