/*
/*
Theme Name: CSP Online
Theme URI: http://online.csp.edu/
Author: Blackstone Media
Author URI: http://blackstonemedia.com/
Description: Custome built theme for Concordia St.Paul Online.
*/

/* oswald-regular - latin */
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 400;
  src: local('Oswald'), local('Oswald-Regular'),
       url('fonts/oswald-v31-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('fonts/oswald-v31-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* oswald-700 - latin */
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 700;
  src: local('Oswald'), local('Oswald-Bold'),
       url('fonts/oswald-v31-latin-700.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('fonts/oswald-v31-latin-700.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* merriweather-sans-regular - latin */
@font-face {
  font-family: 'Merriweather Sans';
  font-style: normal;
  font-weight: 400;
  src: local('Merriweather Sans'), local('MerriweatherSans-Regular'),
       url('fonts/merriweather-sans-v11-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('fonts/merriweather-sans-v11-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* merriweather-sans-italic - latin */
@font-face {
  font-family: 'Merriweather Sans';
  font-style: italic;
  font-weight: 400;
  src: local('Merriweather Sans Italic'), local('MerriweatherSans-Italic'),
       url('fonts/merriweather-sans-v11-latin-italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('fonts/merriweather-sans-v11-latin-italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* merriweather-sans-700 - latin */
@font-face {
  font-family: 'Merriweather Sans';
  font-style: normal;
  font-weight: 700;
  src: local('Merriweather Sans Bold'), local('MerriweatherSans-Bold'),
       url('fonts/merriweather-sans-v11-latin-700.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('fonts/merriweather-sans-v11-latin-700.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* merriweather-sans-700italic - latin */
@font-face {
  font-family: 'Merriweather Sans';
  font-style: italic;
  font-weight: 700;
  src: local('Merriweather Sans Bold Italic'), local('MerriweatherSans-BoldItalic'),
       url('fonts/merriweather-sans-v11-latin-700italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('fonts/merriweather-sans-v11-latin-700italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

.center {
	text-align: center;
}

/*** HEADER & NAV ***/

.header {
	position: fixed;
	width: 100%;
	top:0px;
	z-index:5000;
}

body.fixed .header {
	z-index:1000;
}

.main-menu {
	background-color: #0A3254 ;
	height: 90px;
	box-shadow: 0px 2px 12px rgba(000,000,000,0.5);
	position: relative;
	overflow: hidden;
	-webkit-transition:height 250ms;
	-moz-transition:height 250ms;
	transition:height 250ms;
	z-index: 11;
}

body.honeyishrunktheheader  .main-menu {
	height: 70px;
}

body.fixed .main-menu {
	box-shadow: none;
}

.logo {
	display: block;
	float: left;
}

.logo img {
	width: auto;
	height: 65px;
	margin: 10px 0;
	-webkit-transition:height 500ms;
	-moz-transition:height 500ms;
	transition:height 500ms;
}

body.honeyishrunktheheader .logo img {
	height: 50px;
}

.mini-nav {
	background:rgb(217, 162, 35);
	background-size:contain;
	position: relative;
	z-index: 0;
	float: right;
	padding: 0px 20px 10px;
}

body.ie .mini-nav {
	margin-top: -6px;
}

i, cite, em, var, address, dfn {
	font-style: italic;
}

.mini-nav a {
	font-size: 1.3rem;
	color: #002a4a;
	text-transform: uppercase;
	text-decoration: none;
	display:inline-block;
	margin: 20px 15px 15px;
	position:relative;
}

.mini-nav a::before{
	content: '';
	display:block;
	position:absolute;
	width:100%;
	height:1px;
	background:#002a4a;
	bottom:-15px;
	opacity:0;
	-webkit-transition:all 500ms;
	-moz-transition:all 500ms;
	transition:all 500ms;
}

.mini-nav a:hover::before{
	opacity:1;
	bottom:-5px;
}

.mini-nav ul li {
	display: inline-block;
}

.main-nav ul{
	float:left;
	height:90px;
	margin:0px;
	padding:0px;
	margin-left:20px;
}

body.honeyishrunktheheader .main-nav ul {
	height:70px;
}

.main-nav ul li{
	display:inline-block;
	margin:0px;
	padding:0px;
	-webkit-transition:all 250ms;
	-moz-transition:all 250ms;
	transition:all 250ms;
}

.main-nav ul li:hover,
.main-nav ul li.menu-item-active,
.main-nav ul li.current-menu-item,
.main-nav ul li.current-page-ancestor {
	background:#fff;
}

.main-nav ul li:hover a,
.main-nav ul li.menu-item-active a,
.main-nav ul li.current-menu-item a,
.main-nav ul li.current-page-ancestor a{
	color:#363636;
}

.main-nav ul li a{
	display:block;
	line-height: 90px;
	font-size:1.4rem;
	text-decoration:none;
	color:#fff;
	font-weight:600;
	padding: 0 20px;
	text-transform: uppercase;
	-webkit-transition:line-height 500ms;
	-moz-transition:line-height 500ms;
	transition:line-height 500ms;
}

body.honeyishrunktheheader .main-nav ul li a {
	line-height: 70px;
	display:inherit;
}

body.honeyishrunktheheader .main-nav ul ul li a {
	line-height: 60px;
}

.main-nav ul li .sub-menu-wrapper {
	display: none;
	height:60px;
	position:absolute;
	left:0px;
	top:90px;
	width:100%;
	background:#fff;
}

.main-nav ul li .sub-menu-wrapper.active-sub-menu {
	display: block;
}

body.honeyishrunktheheader .main-nav ul li .sub-menu-wrapper{
	top:70px;
	-webkit-transition: top 250ms; */
	-moz-transition: top 250ms;
	transition: top 250ms;
}

.main-nav ul li ul{
	float:none;
}

.expand-sub-menu .main-menu,
.page-id-8 .main-menu,
.parent-pageid-8 .main-menu,
.page-id-17 .main-menu,
.parent-pageid-17 .main-menu{
	height:150px;
}

.mobile-menu {
	/* display: block; removed for fix accessibility functionality */
	display: none;
	position: fixed;
	z-index: 100000;
	width: 330px;
	overflow-y: auto;
	height: 100%;
	right: -330px;
	top:0;
	padding-top: 70px;
	background: #115E7D;
	font-size: 1.15em;
	-o-transition: right .5s;
  -ms-transition: right .5s;
  -moz-transition: right .5s;
  -webkit-transition:right .5s;
  transition:right .5s;
}

.mobile-menu .menu-mobile-menu li {
    opacity: 0;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s
}


body.mobile .close-all {
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: 9000;
	top: 0;
	left: 0;
}

.navicon,
.olcphone-mobile {
	display: none;
}

@-moz-document url-prefix() {
.css-select-moz{
     background-image: url('images/select_arrow.gif');
     background-repeat: no-repeat;
     background-position: right center;
     padding-right: 20px;
  }
}

.mobile-mini-nav {
	display: none;
}

body.expand-sub-menu,
body.page-id-8,
body.page-id-17,
body.parent-pageid-8,
body.parent-pageid-17{
	padding-top:150px;
}

body.honeyishrunktheheader.expand-sub-menu,
body.honeyishrunktheheader.page-id-8,
body.honeyishrunktheheader.page-id-17,
body.honeyishrunktheheader.parent-pageid-8,
body.honeyishrunktheheader.parent-pageid-17{
	padding-top:140px;
}

body.honeyishrunktheheader.expand-sub-menu .main-menu,
body.honeyishrunktheheader.page-id-8 .main-menu,
body.honeyishrunktheheader.page-id-17 .main-menu,
body.honeyishrunktheheader.parent-pageid-8 .main-menu,
body.honeyishrunktheheader.parent-pageid-17 .main-menu {
	height:130px !important;
}

a.skip-main {
	position: fixed;
	top: -9999px;
	left: 15px;
	padding: 10px;
	background-color: #f7f7f7;
	display: block;
	width: auto;
	height: auto;
	font-size: 16px;
	text-decoration: none;
	color: #666;
	z-index: -1;
}

a.skip-main:focus,
a.skip-main:active {
	z-index: 9999;
	top: 15px;
}

.half, .third {
	margin-bottom: 15px;
}

.main-nav ul li ul li{
	position: relative;
}
.main-nav ul li ul li a{
	color: #000;
	line-height: 60px;
	font-size: 1.3rem;
	position: relative;
	padding: 0px;
	margin: 0 15px;
	font-weight: 400;
	letter-spacing: 1px;
}
.main-nav ul li ul li a::before{
	content: '';
	display:block;
	position:absolute;
	width:100%;
	height:2px;
	background:#E6B222;
	bottom:0px;
	opacity:0;
	-webkit-transition:all 500ms;
	-moz-transition:all 500ms;
	transition:all 500ms;
}

.main-nav ul li ul a:hover::before,
body.honeyishrunktheheader .main-nav ul li ul a:hover::before,
.main-nav ul li ul li.current_page_item a::before
{
	opacity:1;
	bottom:12px;
}

.main-nav .sub-menu-wrapper{
	z-index:1;
}

.page-id-8 .main-nav #menu-item-141 .sub-menu-wrapper,
.parent-pageid-8 .main-nav #menu-item-141 .sub-menu-wrapper,
.page-id-17 .main-nav #menu-item-150 .sub-menu-wrapper,
.parent-pageid-17 .main-nav #menu-item-150 .sub-menu-wrapper {
	z-index:2;
}

.main-nav .sub-menu-wrapper.active-sub-menu{
	z-index: 3;
}

.main-nav .sub-menu-wrapper .sub-menu{
	-webkit-transition:all 500ms 250ms;
	-moz-transition:all 500ms 250ms;
	transition:all 500ms 250ms;
	opacity:0;
	padding-left:30px;
}

.main-nav .sub-menu-wrapper.active-sub-menu .sub-menu,
.page-id-8 .main-nav #menu-item-141 .sub-menu-wrapper .sub-menu,
.parent-pageid-8 .main-nav #menu-item-141 .sub-menu-wrapper .sub-menu,
.page-id-17 .main-nav #menu-item-150 .sub-menu-wrapper .sub-menu,
.parent-pageid-17 .main-nav #menu-item-150 .sub-menu-wrapper .sub-menu {
	opacity:1;
	padding-left:0px;
}

.main-nav .sub-menu-wrapper.active-sub-menu,
.page-id-8 .main-nav #menu-item-141 .sub-menu-wrapper,
.parent-pageid-8 .main-nav #menu-item-141 .sub-menu-wrapper,
.page-id-17 .main-nav #menu-item-150 .sub-menu-wrapper,
.parent-pageid-17 .main-nav #menu-item-150 .sub-menu-wrapper {
	display: block;
}

.main-nav .menu-item-has-children .fa{
	top: -5px;
	position: relative;
	left: 5px;
}

.main-nav .sub-menu {
	float: right;
}

.main-nav .sub-menu .fa {
	font-size: 1.5em;
	margin-right: 10px;
}

.main-nav .sub-menu .fa-user {
	color: #0A3254;
   -webkit-text-stroke-width: 1px;
   -webkit-text-stroke-color: white;
}

.main-nav .site-search .searchform label {
	display: none;
}

label.hidden {
	display: none;
}

.search-wrapper {
	width: 0%;
	opacity: 0;
	position: absolute;
	right: 70px;
	z-index: 1000;
	height: 90px;
	background-color: white;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	display: none;
}

.search-wrapper.search-show {
	width: 75%;
	display: block;
	opacity: 1;
}

.site-search.search-active {
	background-color: white;
}

.site-search .fa-times{
	display:none;
}

.search-active .fa-times{
	display:inline-block;
}

.search-active .fa-search{
	display:none;
}

.site-search.search-active a {
	color: #363636;
}

.search-wrapper .searchform input[type="text"] {
	border: none;
	width: 97%;
	height: 90px;
	outline: none;
	font-style: italic;
	font-size: 2.0rem;
	font-weight: 100;
	color: #969696;
	padding: 0 2%;
}

body.honeyishrunktheheader .search-wrapper .searchform input[type="text"] {
	height: 70px;
}

.sub-menu-contain {
	position: relative;
}

.search-wrapper .searchform input[type="submit"] {
	display: none;
}

.menu-item-343 a {
	cursor: pointer;
}

.request-drawer {
	display: none; /* added to fix accessibility functionality */
	height: 425px;
	position: absolute;
	left: 0px;
	top: -415px;
	width: 100%;
	background: rgba(70,70,70,0.95);
	-webkit-transition:all 500ms;
	-moz-transition:all 500ms;
	transition:all 500ms;
	z-index: 10;
}

body.honeyishrunktheheader .request-drawer {
	top: -430px;
}

.request-drawer.open-drawer {
	top: 90px!important;
	display: block;
}

body.honeyishrunktheheader .request-drawer.open-drawer {
	top: 70px!important;
}

body.fixed .request-drawer.open-drawer {
	top: 130px!important;
}

.request-drawer-contain {
	width: 100%;
	margin: 0 auto;
	overflow: auto;
	margin-top: 20px!important;
	position: relative;
}

.request-drawer-contain h2 {
	font-size: 30px;
	color: #EBEBEB;
	margin-bottom: 20px;
}

.request-drawer-contain p {
	font-size: 20px;
	color: #EBEBEB;
	font-weight: 200;
	margin-bottom: 32px;
}

.request-drawer legend {
	display: none;
}

.request-drawer-contain form li {
	float: left;
	margin-right: 2%;
	margin-left: 2%;
	width: 28%;
	margin-bottom: 15px;
	list-style-type:none;
	position: relative;
	height: 65px;
}

.request-drawer-contain form li input,
.request-drawer-contain form li select {
	margin-top: 10px;
	border: none;
	border-radius: 3px;
	width: 100%;
	font-size: 18px;
	padding: 6px 6px;
	border:1px solid #EEE;
	box-sizing:border-box;
	white-space: nowrap;
}

.request-drawer-contain form li select {
	height: 35px;
}

.request-drawer-contain fieldset.elp_submit {
	padding: 0 6% 0 2%;
}

.request-drawer-contain form input[type='submit'] {
	float: right;
	background-color: transparent;
	border: 2px solid #636363;
	color: white;
	font-family: 'FontAwesome', myriad-pro, sans-serif;
	font-weight: 600;
	text-transform: uppercase;
	border-radius: 10px;
	margin-top: 15px;
	display: inline;
	height: 35px;
	box-sizing: border-box;
	font-size: 2rem;
	line-height: 35px;
	padding: 0px;
	cursor: pointer;
	transition:background 300ms;
	margin-bottom: 1em;
	width: 30%;
	min-width: 200px;
}

.request-drawer-contain form .legal-text {
	margin-top: 1em;
	float: left;
	display: inline;
}

@media all and (min-width: 768px) {
	.request-drawer-contain form .legal-text {
		width: 60%;
	}


	.half {
		display: inline;
	  float: left;
	  width: 46.2%;
	  margin: 0 1.33333%;
	  margin-bottom: 15px;
	}

	.third {
		display: inline;
	  float: left;
	  width: 30%;
	  margin: 0 1.33333%;
	  margin-bottom: 15px;
	}

}

.request-drawer-contain form input[type='submit']:hover {
	background:#636363;
}

.request-drawer-contain label{
	display:block !important;
	color:#FFF;
	font-weight:100;
	font-size:1.9rem;
}

.request-drawer .fa-times-circle {
	color: #949494;
	font-size: 3.5rem;
	position:absolute;
	right: 3%;
	top: 18%;
	cursor: pointer;
  z-index: 11;
  text-decoration: none;
}

/*** FOOTER ***/

.footer {
	background-color: #0A3254;
	float: left;
	width: 100%;
	color: #EBEBEB;
	position: relative;
	z-index:101;
	margin: 0;
	padding: 0;
}

.footer .container {
	padding-bottom: 25px;
}

.footer .row1 {
	padding-top: 15px;
	margin-bottom: 20px;
}

.footer .row1 .logo {
	margin-right: 60px;
}

.footer .row1 .logo img {
	width: auto;
	height: 70px;
	margin: 10px 0;
}

.footer .row1 .social {
	margin-top: 30px;
}

.footer .row1 .social-account {
	margin-right: 25px;
}

.footer .row1 .social-account img {
	width: 30px;
	height: 30px;
}

.footer .row2 {
	margin-bottom: 25px;
}

.footer .row2 .f-col {
	width: 28%;
	padding-right: 5%;
	float: left;
}

.footer .row2 .f-col h3, .footer .row2 .accreditation h3 {
	color: #EBEBEB;
	font-size: 2.0rem;
	font-weight: 200;
	margin-bottom: 15px;
}

.footer .row2 .f-col ul {
	padding-left: 15px;
}

.footer .row2 .f-col ul li{
	margin-bottom: 6px;
}

.footer .row2 .f-col ul li a, .footer .row2 .accreditation p{
	font-size: 1.5rem;
	line-height: 2.3rem;
	font-weight: 200;
	color: #EBEBEB;
	text-decoration: none;
}

.footer-menus {
	border-right: 1px solid #444444;
	float: left;
	width: 60%;
}

.footer .row2 .f-col::last-child {
	padding-right: 0
}

.footer .row2 .accreditation {
	padding-left: 5%;
	width: 34%;
	float: left;
	color: #EBEBEB;
}

.footer .row2 .accreditation p {
	margin-bottom: 20px;
}

.footer .row3 .copyright {
	float: right;
	font-size: 1.5rem;
	font-weight: 200;
	color: #777777;
	margin-top: 45px;
	padding-bottom: 40px;
}

.footer .row3 .fingerprint {
	float: right;
}

.footer .row3 .footer-contact {
	float: left;
	font-size: 1.5rem;
	font-weight: 200;
	line-height: 2.1rem;
	color: #777777;
}

.footer .row3 .footer-contact a {
	color: #777777;
}

.footer .row3 .footer-contact p {
	display: inline-block;
}

.footer-border-bottom {
	content: "";
	display: block;
	width: 100%;
	margin: 20px 0;
	border-bottom: 1px solid #444444;
}

.footer-img {
	display: inline-block;
	margin: 10px;
	float: left;
}

.lcms-logo {
	position: relative;
	    top: 12px;
	    left: 50px;
}

/*** BREADCRUMBS ***/

.breadcrumbs {
	width: auto;
	padding: 25px 10px;
	margin-bottom: 10px;
	border-bottom: 1px solid #444444;
	box-sizing: border-box;
	top:10px;
	left: 0;
	font-size: 1.4rem;
	z-index: 1000;
	color: rgba(255,255,255,0.9);
}

.breadcrumbs a {
	color: rgba(255,255,255,0.9);
	margin-right: 3px;
	margin-left: 3px;
}

.breadcrumbs span {
	margin-right: 3px;
	margin-left: 3px;
}

.home .breadcrumbs {
	display: none;
}

/*** INTERIOR TOP ***/

.interior-top{
	width:100%;
	min-height:700px;
	display:block;
	background-size:cover;
	background-repeat: no-repeat;
	position: relative;
}

.interior-top .container, .interior-top-no-shield .container {
	padding-bottom: 15px;
}

.error404 .interior-top h1 {
	margin-top: 15%;
}

.error404 .interior-top p {
	text-align: center;
	color: white;
	font-size: 2.2rem;
	line-height: 3rem;
	color: #363636;
	width: 38%;
	margin: 0 auto 20px auto;
}

.error404 .interior-top p a {
	color: #363636;
}

.interior-top::before{
	content:'';
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	z-index:1;
	background:#000;
	opacity:.6;
}

.interior-top::after{
	content:'';
	position:absolute;
	height:500px;
	bottom:0px;
	left:0px;
	width:100%;
	background:url(images/fade.png) repeat-x bottom center;
	z-index:2;
}

.interior-top .container{
	position:relative;
	z-index:3;
}

.interior-top h1 {
	font-size:3.5rem;
	color:#fff;
	text-shadow:1px 1px 4px #000;
	font-weight:100;
	text-align:center;
	float:left;
	width:100%;
	margin-top:80px;
	line-height:4.5rem;
	margin-bottom:32px;
}

.interior-top h1 strong{
	font-size: 4.5rem;
	/* font-weight:600; */
	display:block;
	font-family: 'Oswald', sans-serifl;
	font-weight: normal;
}

.interior-top .top-cta-next {
	text-align: center;
	margin-bottom: 1rem;
}

.interior-top .top-cta-next a {
	border: 2px solid white;
	border-radius: 12px;
	padding: 10px;
	text-transform: uppercase;
	color: white;
	text-decoration: none;
	font-size: 1.8rem;
	display: inline-block;
    -webkit-transform: scale(1,1);
	-moz-transform: scale(1,1);
	transform: scale(1,1);
	-webkit-transition: 400ms all ease-in-out;
	-moz-transition: 400ms all ease-in-out;
	transition: 400ms all ease-in-out;
}
.interior-top .top-cta-next a:hover {
    -webkit-transform:scale(1.1,1.1);
	-moz-transform:scale(1.1,1.1);
	transform:scale(1.1,1.1);
    color: #002a4a;
    background-color: #E7B220;
}

.interior-top .top-cta-next a span {
	background:url(images/top-cta-right-arrow.svg) no-repeat center center;
	width: 32px;
	height: 18px;
	float: right;
	margin-top: 0;
	margin-left: 8px;
}

.shield{
	background-size:contain;
	width:88%;
	height:537px;
	float:left;
	margin-left:65px;
}

.blank-shield{
	width: 100%;
	max-width: 1260px;
	height: 445px;
	margin: 0 auto;
}

.no-shield-holder {
	/*background: url(images/no-shield-bg.png) no-repeat center top;*/
	/*background-size: 100%;*/
	background-color: white;
	padding-top: 60px;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	margin-top: -425px;
	position: relative;
	z-index: 3;
}

.shield-left{
	width: 48%;
	float: left;
	padding: 8% 0 0 10%;
}
.shield-right{
	float: right;
	padding: 9% 10% 0 0;
	width: 25%;
}

.shield p, .shield li{
	font-size:1.6rem;
	line-height:2.5rem;
	color:#fff;
	margin-bottom:8px;
	float:left;
	width:100%;
}

.shield ul {
	margin:0px;
	padding:0px;
	list-style:none;
}


/*** INTERIOR CONTENT ***/

.content-left{
	display: block;
	width: 50%;
	float: left;
	padding-left: 4%;
}

.content-right{
	display:block;
	width: 34%;
	float:right;
	padding-right: 6%;
}

.content-right h3 {
	border-top: 4px solid #005D7E;
/* 	font-weight: bold; */
	text-transform: uppercase;
	color: #005D7E!important;
	padding:10px 0;
	border-bottom: 3px solid #D3D3D3;
	margin-bottom: 30px!important;
	text-align: center;
}

.content a {
	color: #005D7E!important;
	font-weight: 400;
}

.content h2{
	color:#002a4a;
	font-size:3.2rem;
	line-height:4.3rem;
	margin-bottom: 20px;
	float:left;
	width:100%;
	/* letter-spacing:-0.01em; */
}

.content h3{
	color:#8e2352;
	font-size:1.8rem;
	line-height:3.5rem;
	margin-bottom:10px;
	width:100%;
	/* letter-spacing:-0.01em; */
}

.content h4{
	color:#666;
	font-size:2rem;
	line-height:2.5rem;
	margin-bottom: 10px;
	float:left;
	width:100%;
	font-style: italic;
	letter-spacing:-0.01em;
}

.content p{
	font-size:1.5rem;
	line-height:2.5rem;
	margin-bottom:15px;
	color:#363636;
	width:100%;
}

.content .divider{
	width:100%;
	float:left;
	margin-bottom: 25px;
	margin-top: 25px;
	background:#dddddd;
	height:2px;
}

.content ul {
	margin:0px;
	padding:0px 0px 25px 0px;
	list-style:none;
	color:#363636;
	width:100%;
	clear: both;
}

.content li{
	list-style-type:none;
	position:relative;
	padding-left:30px;
	font-size:1.5rem;
	line-height:3.2rem;
}

.content li:before {
	content: "•";
	color: #c3c7c7;
	font-size: 4rem;
	display: block;
	top: 0px;
	position: absolute;
	line-height: 2.5rem;
	left: 0px;
}

body.ie .content li:before {
	top: 8px!important;
}

.content blockquote {
    text-align:center;
    font-size:1.75em;
    border-top:1px solid #ccc;
    border-bottom:1px solid #ccc;
    position:relative;
    quotes: "\201C""\201D""\2018""\2019";
    margin: 2em auto 1em;
    width: 90%;
}

.content blockquote:after {
    color:#095d7e;
    content: open-quote;
    font-family: georgia, serif;
    font-size:100px;
    position:absolute;
    left:50%;
    bottom:calc(100% - 20px);
    background:#fff;
    height:55px;
    width: 55px;
    line-height:normal;
    text-align:center;
    transform:translateX(-50%);
}
.content blockquote p {
    padding: 40px 20px 30px;
    font-size: 1.8rem;
}

.left-text, .table-hr{
	padding-left:35px;
}

.right-text {
	overflow: auto;
	margin-bottom: 20px;
	width:100%;
}
.right-text img {
	width:70%;
	height: auto;
}

.photo-info-block {
	position: relative;
	max-width: 441px;
	max-height: 296px;
	margin-bottom: 35px;
	border-bottom: 10px solid #095d7e;
}

.photo-info-block::before {
	content: '';
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	z-index: 0;
	background: #000;
	opacity: 0.6;
}

.photo-info-block .overlay {
	opacity: 0;
	top: 0;
	bottom: 0;
	height: 100%;
	position: absolute;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	width: 100%;
}

.photo-info-block:hover .overlay {
	opacity: 1;
	width: 100%;
	height: 100%;
	background-color: rgba(9,93,126,0.5);
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

.photo-info-block img {
	width: 100%;
	display: inline-block;
	filter: alpha(opacity=50);
	-moz-opacity: 0.5;
	-khtml-opacity: 0.5;
	opacity: 0.5;
}

.photo-info-block .icon-title {
	width: 90%;
	margin: 0 5%;
	position: absolute;
	top:34%;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	text-align: center;
}

.photo-info-block:hover .icon-title {
	top:6%;
}

.photo-info-block .icon-title h4 {
	font-size: 2.4rem;
	color: white;
	text-align: center;
}

.photo-info-block .icon-title img {
	max-width: 60px;
	height: auto;
	opacity: 1;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

.photo-info-block:hover .icon-title img {
	width: 0px;
	opacity: 0;
}

.photo-info-block .overlay-content {
	width: 90%;
	margin: auto;
	bottom: 0;
	left: 0;
	right: 0;
	top: 17%;
	opacity: 0;
	padding: 15px;
	box-sizing: border-box;
	position: absolute;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.photo-info-block:hover .overlay-content {
	opacity: 1;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	-moz-transition-delay: 0.3s;
	-o-transition-delay: 0.3s;
	-webkit-transition-delay: 0.3s;
	transition-delay: 0.3s;
}

.photo-info-block .overlay-content p {
	color: white;
	font-size: 1.4rem;
	line-height: 2rem;
	margin-bottom: 15px;
}

.photo-info-block .overlay-content a {
	color: white!important;
}

.content-right .side-event {
	font-size: 1.5rem;
	width: 100%;
	padding-right: 35px;
	padding-left: 0;
	padding-bottom: 25px;
}

.content-right .side-event .details {
	float: left;
	width: 100%;
}

.content-right .side-event .row {
	clear: both;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #e0e0e0;
	overflow: hidden;
}

.content-right .side-event .campus-map p{
	margin-top: 10px;
	margin-bottom: 0;
}

.content-right .side-event .title {
	background-color: #EDEDEC;
	float: left;
	width: 36%;
	padding: 4% 3%;
	vertical-align: middle;
	padding-bottom:104%;
	margin-bottom:-100%;
	box-sizing: border-box;
}

.content-right .right-contact-form {
	float: left;
	margin-bottom: 50px;
}

.content-right .side-event .the-deet {
	width: 64%;
	float: right;
	padding: 5% 2% 0 4%;
	padding-bottom:104%;
	margin-bottom:-100%;
	background-color: #F6F6F6;
	line-height: 2rem;
	box-sizing: border-box;
}

.footnote {
	border-left: 10px solid #902052;
	background-color: #efefef;
	padding: 15px;
	overflow: auto;
	margin-left: 35px;
}

.footnote h4 {
	color:#8e2352;
	font-size:3.2rem;
	margin-bottom: 20px;
}

.footnote p {
	font-size: 1.3rem;
	line-height: 1.6rem;
	margin-bottom: 20px;
}

.student-quote {
	background-color: #115D7C;
	color: white;
	float: left;
	width: 100%;
}

.student-quote .container {
	padding-bottom: 0;
	position: relative;
}

.student-quote .student-pic {
	height: auto;
	width: 36%;
	max-width: 510px;
	float: left;
	margin-right: 2%;
	position: relative;
}

.student-quote .student-pic::before {
	content:"";
	background-image: url('images/blue-quote-left-abstract-img-bg.jpg');
	background-repeat: no-repeat;
	position: absolute;
	width: 100%;
	max-width: 119px;
	height: 100%;
	left: -23%;
	background-size:contain;
}

.student-quote .student-pic img {
	float: left;
	width: 100%;
}

.student-quote .student-pic::after {
	content:"";
	background-image: url('images/blue-quote-right-abstract-img-bg.jpg');
	background-repeat: no-repeat;
	position: absolute;
	width: 100%;
	max-width: 214px;
	height: 100%;
	background-size:contain;
}

.student-quote .student-info {
	float: left;
	position: relative;
	width: 54%;
	z-index: 4;
	color: white;
	padding: 2%;
}

.student-quote .student-info .the-quote p::before {
	content:"\0022 \00a0";
}

.student-quote .student-info .the-quote p {
	font-size: 1.8rem;
	line-height: 1.4;
	font-weight: 100;
	font-style: italic;
	color: white;
}

.student-quote .student-info .the-quote p::after {
	content:"\00a0 \0022";
}

.student-quote .student-info, .student-quote .student-info .the-quote, .student-quote .student-info .the-student {
	overflow: auto;
}

.student-quote .student-info .the-student p {
	color: white;
/* 	font-weight: 600; */
	font-size: 1.8rem;
}

.student-quote .student-info .the-student p span {
	font-weight: normal;
	font-size: 1.6rem;
}

.content-left table {
	width: 100%;
	max-width: 595px;
	margin-left: 35px;
	font-size: 1.5rem;
	margin-bottom: 10px;
}

.content-left table thead tr th {
/* 	font-weight: bold; */
	background-color: #DADADA;
	padding: 12px;
}

.content-left table tbody tr td {
	padding: 12px;
}

.content-left table tbody tr:nth-child(even) {
	background: #E9E9E9
}

.content-left table tbody tr:nth-child(odd) {
	background: #FFFFFF
}

@media only screen and (min-width: 960px) {
	.student-quote .student-info {
		position: absolute;
		left: 40%;
	}
}

/*** PROGRAM TEMPLATE ***/

.transferology-cta img {
    max-width: 100%;
    height: auto;
}

.single-program .wrapper {
	margin: 15px 0;
}

.single-program .program-title,
.single .program-title {
	text-align: center;
	color: #003055;
	font-size: 4rem;
	font-weight: 400;
	margin-bottom: 20px;
	float: none;
}

.program-sticky-nav {
	border-top:1px solid #D7D7D7;
	border-bottom: 1px solid #D7D7D7;
	padding: 4px 0px;
	background-color: white;
	position: relative;
	z-index: 4000;
	margin-bottom: 25px;
	box-shadow: 0px 2px 12px rgba(000,000,000,0.0);
	-webkit-transition: box-shadow 0.5s linear, top ;
  -o-transition: box-shadow 0.5s linear, top 500ms;
  -moz-transition: box-shadow 0.5s linear, top 500ms;
  -ms-transition: box-shadow 0.5s linear, top 500ms;
  transition: box-shadow 0.5s linear, top 500ms;
}

body.fixed .program-sticky-nav {
	position: fixed;
  top: 70px;
  width: 100%;
  margin: 0px;
  box-shadow: 0px 2px 12px rgba(000,000,000,0.3);
}

body.fixed.expand-sub-menu .program-sticky-nav,
body.fixed.page-id-8 .program-sticky-nav,
body.fixed.page-id-17 .program-sticky-nav,
body.fixed.parent-pageid-8 .program-sticky-nav,
body.fixed.parent-pageid-17 .program-sticky-nav {
	top: 130px;
}

.program-sticky-nav ul {
	float: left;
	width: 80%;
	padding: 0px;
}

.program-sticky-nav ul li:before {
	display: none;
}

.program-sticky-nav ul li {
	display: inline-block;
}

.program-sticky-nav ul li a {
	text-transform: uppercase;
	text-decoration: none;
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 5.0rem;
}

.program-sticky-nav .top-cta-drawer {
	float: right;
	text-decoration: none;
	background-color: #115D7C;
	border: 2px solid transparent;
	border-radius: 10px;
	padding: 12px;
	font-size: 1.6rem;
	font-weight: 400;
	margin: 2px 10px 0;
	color: white!important;
	-webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.program-sticky-nav .top-cta-drawer:hover {
	border: 2px solid #115D7C;
	background: transparent;
	color: #115D7C!important;
}

body.fixed .curr-breakdown {
	margin-top: 104px;
}

.curr-breakdown .container {
	padding-bottom: 16px;
	max-width: 900px;
}

.curr-breakdown .switch {
	width: 100%;
	float: left;
	margin-top: 0;
	margin-bottom: 4%;
	text-align: center;
}

.tabbed-interior .switch {
	width: 100%;
	float: left;
	margin-top: 15px;
	margin-bottom: 0;
	text-align: center;
}

.tabbed-interior .divider {
	width: 100%;
	max-width: 1200px;
	margin: auto;
	border: 1px solid #eee;
	margin-bottom: 25px;
}

.curr-breakdown .switch a,
.tabbed-interior .switch a {
	border: 2px solid #002a4a;
	border-radius: 10px;
	padding: 10px;
	color: #002a4a!important;
	font-weight: 400;
	font-size: 1.6rem;
	text-decoration: none;
	margin: 0 10px;
	-o-transition:.5s;
  -ms-transition:.5s;
  -moz-transition:.5s;
  -webkit-transition:.5s;
  transition:.5s;
  display: inline-block;
}

.tabbed-interior .container {
	padding-bottom: 25px;
}

.curr-breakdown .switch a:hover,
.tabbed-interior .switch a:hover {
	background-color: #002a4a;
	color: white!important;
}

.curr-breakdown .switch a.active,
.tabbed-interior .switch a.active {
	background-color: #002a4a;
	color: white!important;
}

.tab-content .content {
	width: 100%;
	max-width: 1000px;
	margin: auto;
}

.tab-content .content ul li {
	color: #363636;
}

.curr-breakdown .program-overview {
	display: block;
	width: 100%;
	margin: 1em auto;
	clear: both;
	background-color: #E1E6E6;
	padding:6% 8%;
	box-sizing: border-box;
}

.tab-content-box {
	background-color: #E1E6E6;
	padding: 6% 8%;
}

.tab-content-box .columnA {
	width: 65%;
	margin: 0;
	padding-right: 5%;
	float: left;
	border-right: 1px solid #ACACAC;
	box-sizing: border-box;
}

.tab-content-box .columnB {
	width: 30%;
	float: right;
	box-sizing: border-box;
}

.curr-breakdown .program-overview .program-overview-column-b .program-overview-column-cta,
.tab-content-box .columnB .tab-column-cta {
	width: 95%;
	margin-bottom: 50px;
}

.sidebar-cta-btn {
	width: 90%;
	margin-bottom: 50px;
	float: right;
}

.curr-breakdown .program-overview .program-overview-column-b .program-overview-column-cta a,
.sidebar-cta-btn a,
.tab-content-box .columnB .tab-column-cta a {
	text-decoration: none;
}

.curr-breakdown .program-overview .program-overview-column-b .program-overview-column-cta .title:before,
.sidebar-cta-btn .title:before,
.tab-content-box .columnB .tab-column-cta .title:before {
	content: '';
	width: 50px;
	height: 4px;
	background-color: #2E5C7F;
	position: absolute;
	top:0;
}

.curr-breakdown .program-overview .program-overview-column-b .program-overview-column-cta .title,
.sidebar-cta-btn .title,
.tab-content-box .columnB .tab-column-cta .title {
	text-transform: uppercase;
	color: #2E5C7F;
	font-size: 2rem;
	line-height: 2.3rem;
/* 	font-weight: 600; */
	position: relative;
	display: block;
	padding-top: 10px;
	margin-bottom: 7px;
}

.curr-breakdown .program-overview .program-overview-column-b .program-overview-column-cta .title:after,
.sidebar-cta-btn .title:after,
.tab-content-box .columnB .tab-column-cta .title:after {
	content: '';
	background-image: url(images/icon-program-overview-arrow.svg);
	background-repeat: no-repeat;
	width: 6px;
	height: 13px;
	position: relative;
	display: inline-block;
	margin-left: 10px;
	-o-transition:.5s;
  -ms-transition:.5s;
  -moz-transition:.5s;
  -webkit-transition:.5s;
  transition:.5s;
}

.curr-breakdown .program-overview .program-overview-column-b .program-overview-column-cta a:hover .title:after,
.sidebar-cta-btn a:hover .title:after,
.tab-content-box .columnB .tab-column-cta a:hover .title:after {
	margin-left: 15px;
}

.curr-breakdown .program-overview .program-overview-column-b .program-overview-column-cta .copy,
.sidebar-cta-btn .copy,
.tab-content-box .columnB .tab-column-cta .copy {
	color: #363636!important;
	font-size: 1.6rem;
	line-height: 2rem;
	font-style: normal;
	font-weight: 400;
}

.curr-breakdown .required-courses {
	margin:4% 0;
	width: 100%;
	float: left;
	display: none;
}

.curr-breakdown .seventy {
	width: 75%;
	float: left;
}

.curr-breakdown .thirty {
	width: 20%;
	float: right;
}

.curr-breakdown .required-courses .the-list {
	width: 55%;
	float: left;
	margin-right: 5%;
	position: relative;
}

.curr-breakdown .required-courses .the-list .header {
	position: static;
	width: 100%;
	float: left;
	font-size: 1.8rem;
	text-transform: uppercase;
/* 	font-weight: 600; */
	border-bottom: 1px solid #636363;
	padding-bottom: 8px;
}

.curr-breakdown .required-courses .the-list .header .seventy {
	padding-left: 10px;
	text-align: left;
}

.curr-breakdown .required-courses .the-list .header .thirty {
	padding-right: 10px;
	text-align: right;
}

.curr-breakdown .required-courses .the-list ul {
	margin-top: 8px;
	height: 250px;
	overflow-y: scroll;
	padding-bottom: 50px;
}

.ulFade {
	width: 100%;
	height: 50px;
	bottom: 0px;
	position: absolute;
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgICA8c3RvcCBvZmZzZXQ9Ijc1JSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
background: -moz-linear-gradient(top,  rgba(255,255,255,0) 0%, rgba(255,255,255,1) 75%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,0)), color-stop(75%,rgba(255,255,255,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 75%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 75%); /* Opera 11.10+ */
background: -ms-linear-gradient(top,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 75%); /* IE10+ */
background: linear-gradient(to bottom,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 75%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 ); /* IE6-8 */
}

.curr-breakdown .required-courses .the-list .list-o-courses li:last-of-type {
	margin-bottom: 20px;
}

body.ie .ulFade,
body.gecko.windows .ulFade {
	display: none!important;
}

.curr-breakdown .required-courses .the-list ul li:before {
	line-height: 2.9rem;
	left: 10px;
}

body.ie .curr-breakdown .required-courses .the-list ul li:before {
	top:15px!important;
	display: i
}

.curr-breakdown .required-courses .the-list ul li a {
	clear: both!important;
	padding-left: 5px;
	font-size: 1.8rem;
	line-height: 3.6rem;
	color: #8E2352 !important;
	font-weight: normal;
	text-decoration: none;
	display: block;
}

.curr-breakdown .required-courses .the-list ul li a:focus,
.curr-breakdown .required-courses .the-list ul li a:hover {
/* 	font-weight: bold; */
	cursor: pointer;
}

.curr-breakdown .required-courses .the-list .credits {
	float: right;
	color: #363636!important;
}

.curr-breakdown .required-courses .the-list .credits img {
	margin-left: 5px;
	padding-right: 5px;
	margin-top: 5px;
	height: 12px;
	width: auto;
	opacity:0;
}

.curr-breakdown .required-courses .the-list ul li a:hover .credits img {
	opacity:1;
}

.curr-breakdown .required-courses .course-description {
	width: 40%;
	padding: 3%;
	float: left;
	margin: 40px 0% 0 0%;
	background-color: #E0E6E6;
	box-sizing: border-box;
	height: 250px;
	overflow-y: scroll;
}

.curr-breakdown .required-courses .course-description span {
	font-size: 1.5rem;
	line-height: 2.5rem;
	margin-bottom: 6px;
	color: #363636;
	width: 100%;
	display: block;
/* 	font-weight: bold; */
	text-decoration: underline;
}
.single-program .curr-breakdown .required-courses .course-description span {
}

.potential {
	background-color: #efefef;
	padding: 3rem 0;
}

.potential.wrapper {
	margin: 0;
}

.potential .download{
	color: #363636!important;
/* 	font-weight: 600; */
	font-size: 1.6rem;
	text-decoration: none;
}

.curr-breakdown .required-courses .course-description .download span {
	color: #363636!important;
	font-size: 1.6rem;
	text-decoration: none;
	float: left!important;
	width: auto!important;
	display: inline-block!important;
	margin-top: 9px;
}

.curr-breakdown .required-courses .course-description .download img {
	width: 25px;
	height: 28px;
	margin-left: 8px;
}

.curr-breakdown .program-requirements {
	width: 100%;
	display: none;
	margin: 4% auto;
	clear: both;
	background-color: #E1E6E6;
	padding: 6% 8%;
	box-sizing: border-box;
}

.curr-breakdown .program-overview h2,
.curr-breakdown .program-requirements h2 {
	text-align: left;
	float: none;
	clear: both;
}

.curr-breakdown .program-overview .program-overview-column-a {
	width: 62%;
	border-right: 1px solid #ACACAC;
	padding-right: 5%;
	float: left;
}

.curr-breakdown .program-overview .program-overview-column-a .top-cta-drawer {
	margin-top: 1em;
	display: inline-block;
}
	.curr-breakdown .program-overview .program-overview-column-a .top-cta-drawer:hover {
		text-decoration: none;
	}

.curr-breakdown .program-overview .program-overview-column-a .top-cta-drawer span {
	margin: 0;
}

.curr-breakdown .program-overview .program-overview-column-b {
	width: 29%;
	float: right;
}

.curr-breakdown .program-requirements ol {
	width: 98%;
	margin-left: 7%;
	float: left;
	margin-bottom: 25px;
}

.curr-breakdown .program-requirements ol li {
	list-style: decimal;
	padding-left: 5px;
}

.curr-breakdown .program-requirements ol li::before {
 	display: none;
}

.curr-breakdown .program-requirements ol li ul {
	padding: 10px 0;
}

.curr-breakdown .program-requirements ol li ul li {
	list-style: none;
	margin-left: 3%;
	padding-left: 20px;
	float: none;
}

.curr-breakdown .program-requirements ol li ul li::before {
	display: block;
}

.curr-breakdown .program-requirements ul li{
	padding-left: 20px;
	margin-left: 20px;
}

.program-stat{
	border-top:1px solid #D7D7D7;
	border-bottom: 1px solid #D7D7D7;
	padding: 15px 0px;
	margin-bottom: 25px;
}

.program-stat .container {
	width: 45%!important;
	padding-bottom: 0;
}

.program-stat .stat-number {
	font-size: 7.0rem;
/* 	font-weight: 600; */
	color: #115D7C;
	width: auto;
	margin-right: 2%;
	float: left;
	margin-right: 20px;
}

.program-stat .stat-info {
	font-size: 2.2rem;
	width: 70%;
	float: left;
	color: #343434;
	line-height: 3.0rem;
	padding-top: 1rem;
}

.potential .overview {
	width: 100%;
	max-width: 800px;
	margin: auto;
	text-align: center;
}

.potential .list-o-careers ul {
	width: 100%;
	max-width: 766px;
	text-align: center;
	float: none;
	margin: 50px auto 25px;
}

.potential .list-o-careers ul li {
	width: 33%!important;
	float: left!important;
	box-sizing: border-box;
	margin-bottom: 20px;
	font-size: 1.7rem;
/* 	font-weight: 600; */
	padding-bottom: 15px;
	border-bottom: 1px solid #D7D7D7;
}

.potential .list-o-careers ul li::before {
	display: none;
}

.potential .list-o-careers ul li span {
	display: block;
	font-weight: 400;
	color: #929292;
}

.professors .the-line-up {
	border-top: 30px solid #404040;
	border-bottom: 30px solid #404040;
}

.professors .a-professor::before{
	content:'';
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:200px;
	z-index:6;
	background: -moz-linear-gradient(top,  rgba(0,0,0,0.33) 0%, rgba(0,0,0,0) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0.33)), color-stop(100%,rgba(0,0,0,0)));
	background: -webkit-linear-gradient(top,  rgba(0,0,0,0.33) 0%,rgba(0,0,0,0) 100%);
	background: -o-linear-gradient(top,  rgba(0,0,0,0.33) 0%,rgba(0,0,0,0) 100%);
	background: -ms-linear-gradient(top,  rgba(0,0,0,0.33) 0%,rgba(0,0,0,0) 100%);
	background: linear-gradient(to bottom,  rgba(0,0,0,0.33) 0%,rgba(0,0,0,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#54000000', endColorstr='#00000000',GradientType=0 );
}

.professors .a-professor::after{
	content:'';
	position:absolute;
	bottom:0px;
	left:0px;
	width:100%;
	height:350px;
	z-index:6;
	background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,0.33) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,0.33)));
	background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.33) 100%);
	background: -o-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.33) 100%);
	background: -ms-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.33) 100%);
	background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.33) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#54000000',GradientType=0 );
}

.professors .a-professor {
	width: 20%;
	height: 600px;
	float: left;
	position: relative;
	overflow: hidden;
	display: block;
}

.professors .a-professor .professor-details{
	display: block;
	position: absolute;
	height: 600px;
	bottom: 0px;
	left: 0px;
	width: 100%;
	background: transparent;
	margin-bottom: -500px;
	transition:margin 500ms, background 500ms;
	-moz-transition:margin 500ms, background 500ms;
	-webkit-transition:margin 500ms, background 500ms;
	z-index:7;
	padding:30px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	color:#fff;
}

.professors .a-professor:hover .professor-details{
	margin-bottom:0px;
	background: rgba(144,32,82,0.8);
}

.professors .a-professor .professor-details .email {
	display: block;
	position: absolute;
	top: 30px;
	right: 10px;
	background-image: url(images/email-icon.svg);
	background-repeat: no-repeat;
	width: 28px;
	height: 25px;
	opacity: 0;
}

.professors .a-professor .professor-details .email a {
	width: 100%;
	height: 100%;
	float: left;
}

.professors .a-professor:hover .professor-details .email {
	opacity: 1;
	transition:opacity 500ms;
	-moz-transition:opacity 500ms;
	-webkit-transition:opacity 500ms;
}

.professors .a-professor .professor-details .name {
	display: block;
	font-size: 2rem;
	color: white;
	font-weight: 900;
	margin-bottom: 5px;
}

.professors .a-professor .professor-details .title {
	font-size: 1.4rem;
	margin-bottom: 10px;
	display: block;
}

.professors .a-professor .professor-details .description {
	padding-top: 30px;
	border-top: 1px solid white;
	display: block;
	font-size: 1.6rem;
	line-height: 2.4rem;
}

.professors .a-professor .professor-picture {
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 1;
	-webkit-filter: blur(0px);
	-moz-filter: blur(0px);
	-o-filter: blur(0px);
	-ms-filter: blur(0px);
	filter: blur(0px);
	-webkit-transform: scale(1,1);
	-moz-transform: scale(1,1);
	-ms-transform: scale(1,1);
	-o-transform: scale(1,1);
	transform: scale(1,1);
	transition: filter 500ms, transform 500ms;
	-o-transition: -o-filter 500ms, -o-transform 500ms;
	-ms-transition: -ms-filter 500ms, -ms-transform 500ms;
	-moz-transition: -moz-filter 500ms, -moz-transform 500ms;
	-webkit-transition: -webkit-filter 500ms, -webkit-transform 500ms;
}

.professors .a-professor:hover .professor-picture{
	-webkit-filter: blur(5px);
	-moz-filter: blur(5px);
	-o-filter: blur(5px);
	-ms-filter: blur(5px);
	filter: blur(5px);
	-webkit-transform:scale(1.1,1.1);
	-moz-transform:scale(1.1,1.1);
	-ms-transform:scale(1.1,1.1);
	-o-transform:scale(1.1,1.1);
	transform:scale(1.1,1.1);
}

.student-success {
	background-color: #115D7C;
	height: 250px;
}

.student-success .student-pic {
	height: auto;
	width: 36%;
	float: left;
	position: relative;
}

.student-success .student-pic::before {
	content: "";
	background-image: url('images/blue-quote-left-abstract-img-bg.jpg');
	background-repeat: no-repeat;
	position: absolute;
	width: 100%;
	max-width: 119px;
	height: 100%;
	left: -91px;
}

.student-success .student-pic img {
	float: left;
	max-height: 250px;
}

.student-success .student-pic::after {
	content: "";
	background-image: url('images/blue-quote-right-abstract-img-bg.jpg');
	background-repeat: no-repeat;
	position: absolute;
	width: 100%;
	max-width: 214px;
	height: 100%;
}

.student-success .the-student {
	float: left;
	width: 62%;
	z-index: 4;
	position: relative;
	color: white;
	padding:1.5%;
	box-sizing: border-box;
}

.student-success .title {
	margin-bottom: 0;
	font-size: 1.8rem;
	color: white;
/* 	font-weight: 600 */
}

.student-success .student-name {
	margin-top: 5px;
	margin-bottom: 10px;
	font-size: 3.0rem;
	color: white;
	text-transform: uppercase;
	font-weight: 200;
	line-height: 3.5rem;
}

.student-success .student-story p {
	color: white!important;
	margin-bottom: 2rem;
}

.student-success .student-story p:before {
	content:"\0022 \00a0"
}

.student-success .student-story p:after {
	content:"\00a0 \0022";
}

.student-success a {
	font-size: 1.6rem;
/* 	font-weight: 600; */
	text-transform: uppercase;
	color: #fff!important;
	text-decoration: none;
}

.student-success a span {
	background-image: url(images/right-arrow.svg);
	background-repeat: no-repeat;
	width: 31px;
	height: 13px;
	background-position: center right;
	display: inline-block;
	margin-left: 10px;
}

.single-program .program-title span {
	color: #929292;
	font-size: 3.0rem;
	font-weight: 200;
}

.single-program .program-grid {
	background-color: #efefef;
	padding-top: 30px;
	margin-top: -15px;
}

.single-program .program-grid .container, .single-program .student-success .container,
.single .related-posts .container {
	width: 1100px;
}

.HBstudipbarjk {
	width: 100%;
	padding: 10px;
	margin-top: -200px;
	float: left;
	position: relative;
	z-index: 500;
	text-align: center;
	color: white;
	font-size: 2.5rem;
	box-sizing: border-box;
}

.HBstudipbarjk h2 {
	display: inline-block;
	margin: auto;
	color: #333333;
	padding-bottom: 10px;
	margin-bottom: 20px;
}

.programs-grid .program-grid {
	position: relative;
	z-index: 1000;
	margin-top: -140px;
}

.program-grid a {
	display: inline-block!important;
	width: 31%;
	margin: 1%;
}

.program-grid a.hide{
	display: none !important;
}

.program-grid .program-box {
	background-size: cover!important;
	background-repeat: no-repeat;
	margin: auto;
	max-width: 300px;
	height: 275px;
	background-color: #363636;
	color: #fff;
	position: relative;
}

.program-grid .program-box .overlay {
	background-color: rgba(0,0,0,0.4);
	position: absolute;
	width: 100%;
	top: 0;
	bottom: 0;
}

.program-grid .program-box:hover .overlay{
	background-color: rgba(0,93,126,.9)
}

.program-grid .program-box .contain {
	position: relative;
	z-index: 2;
	height: 100%;
}

.program-grid .program-box .contain h3 {
	color: white;
	padding: 25px;
	width: auto;
	font-weight: 200;
	font-size: 2rem;
}

.program-grid .program-box .contain h3 span {
/* 	font-weight: 600; */
	font-size: 2.5rem;
	line-height: 2.7rem;
	float: left;
	margin-top: -5px;
}

.program-grid .program-box .contain .program-details {
	padding: 25px 25px 5px;
	position: absolute;
	bottom: 0px;
}

.program-grid .program-box .contain .program-details .start-date {
	font-size: 1.9rem;
	margin-bottom: 0;
	color: white;
	font-weight: normal;
}

.program-grid .program-box .contain .program-details .credit-hours {
	color: white;
	font-size: 1.6rem;
	font-weight: normal;
}

.program-grid .program-box .program-key {
	background-color: #363636;
}

.program-grid .program-box .program-key .program-icon,
.single .program-box .program-key .program-icon {
	height: 40px !important;
	width: auto;
	float: right;
	padding: 8px;
}

.up-next {
	padding-top: 50px;
	padding-bottom: 50px;
	width: 100%;
	background-color: #2A5B79;
	margin-bottom: 0px!important;
	clear: both;
}

.single-program .up-next {
	margin-top: -15px;
}

.up-next .picture {
	height: auto;
	width: 36%;
	max-width: 395px;
	float: left;
	margin-right: 3%;
}

.up-next .picture img {
	width: 100%;
}

.up-next p,
.up-next h2 {
	margin-top: 0.7rem;
	margin-bottom: 0.7rem;
	color: white!important;
}

.up-next .info {
	float: left;
	width: 61%;
}

.up-next .title {
	font-size: 2rem;
}

.up-next .subject-name {
	font-size: 3.6rem;
	line-height: 3.6rem;
	font-weight: 200;
	margin: 0.5rem 0 2rem;
}

.up-next .text {
	margin-top: 1.5rem;
	margin-bottom: 2rem;
	width: 100%;
}

.up-next a {
	font-size: 2rem;
	font-weight: 400;
	color: #fff!important;
	text-decoration: none;
}

.up-next a span {
	background-image: url(images/right-arrow.svg);
	background-repeat: no-repeat;
	width: 31px;
	height: 13px;
	background-position: center right;
	display: inline-block;
	margin-left: 10px;
}

.content form fieldset {
	float: left;
	width: 100%;
	margin-bottom: 15px;
}

fieldset.elp_hidden{
	display:none !important;
}

.content form li {
	padding-left: 0px;
}

.content form legend{
/* 	font-weight: 600; */
	font-size: 1.8rem;
	color: #902052;
	text-transform: uppercase;
	display: block;
	float: left;
	width: 100%;
	margin: 0px 0 15px 0;
	border-bottom: 1px solid #902052;
	padding-bottom: 10px;
}

.content .elp_identity legend {
	display: none!important;
}

.blog-content-right .requestinfo .legal-text, .content-right .requestinfo .legal-text {
color: #848484;
}

.content form li {
	padding-left: 0px;
	float: left;
	width: 100%;
	position: relative;
	box-sizing: border-box;
	line-height: 2rem;
}

.content form li:before {
	content: "";
	display:none !important;
}

.content form label {
	display: block;
	float: left;
	width: 100%;
	box-sizing: border-box;
	font-size: 1.5rem;
}

.content form input[type=text], .content form select {
	float: left;
	width: 100%;
	box-sizing: border-box;
	border: 1px solid #D3D3D3;
	border-radius: 6px;
	padding: 10px;
	margin-bottom: 5px;
	height: 40px;
	margin-top: 5px;
	font-size:1.5rem;
	font-family: "myriad-pro",sans-serif;
}

span.formError {
	position: absolute;
	bottom: 10px;
	box-sizing: border-box;
	height: 40px;
	width: 30px;
	color: #A00;
	right: 5px;
	display: block;
	line-height: 65px;
	text-align: center;
/* 	font-weight: bold; */
	font-size: 1.5rem;
}

span.formValid  {
	display:none;
}

.content form input[type="submit"] {
	background: url(images/request-info-button.png) no-repeat center center #902052;
	border: 0px;
	border-radius: 6px;
	width: 100%;
	box-sizing: border-box;
	height: 40px;
	background-size: auto 100%;
	cursor: pointer;
	transition:background 300ms;
}

.content form input[type="submit"]:hover{
	background:url(images/request-info-button.png) no-repeat center center  #a4255e;
	background-size: auto 100%;
}

.request-full{
	display:none;
}

.blog-content-left small {
	color: #C3C7C7;
	font-size: 1.5rem;
}

.grid-key {
 position: fixed;
 width: auto;

}

.grid-key {
	position: fixed;
	left: 0;
	bottom: 100px;
	width: auto;
	background-color: #363636;
	z-index: 100;
	box-sizing: border-box;
	border-radius: 0 10px 10px 0;
	padding: 12px;
}

.grid-key div {
	margin-bottom: 15px;
}

.grid-key div img {
	height: 40px;
	margin: auto;
	display: block;
}

.grid-key div .course-type-name {
	text-align: center;
	margin-top: 0.5rem;
	font-size: 1.0rem!important;
}

.references {
	margin-left: .5in !important;
	text-indent: -.5in;
	list-style: none;
}

.references li {
	font-size: 1.3rem;
}

.references li:before {
	content: none;
}

.references em {
	font-style: italic !important;
}

/*** ACCORDION STYLING ****/

.pricing-column {
  width: 47.5%;
  float :left;
}

.pricing-column:first-child {
	margin-right: 5%;
}

.toggle {
  clear: both;
}

.toggle h3 {
	background: #efefef;
	text-indent: .5em;
	cursor: pointer;
}

.toggle h3 a {
	text-decoration: none;
}

.pricing-column h3 {
	background: none;
	border-bottom: 2px solid #D3D3D3;
}

.videoWrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
	margin: 2rem 0;
}
.videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.wpb_wrapper {
 font-size: 1.25rem;
 line-height: 2rem;
 padding-bottom: 2%;
}


/* Optimizely Test Styling */

.btn-blue {
	display: inline-block;
	text-decoration: none;
	background-color: #115D7C;
	border: 2px solid transparent;
	border-radius: 10px;
	padding: 12px;
	font-size: 1.6rem;
/* 	font-weight: bold; */
	margin: 2px 10px 0;
	color: white!important;
	-webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn-blue:hover {
	border: 2px solid #115D7C;
	background: transparent;
	color: #115D7C!important;
	text-decoration: none;
}


.btn-yellow {
	text-decoration: none;
	background-color: #d9a223;
	border: 2px solid transparent;
	border-radius: 10px;
	padding: 1rem 2rem;
	font-size: 1.6rem;
	/* 	font-weight: bold; */
	margin: 1rem;
	box-sizing: border-box;
	line-height: 1.2;
	color: #002a4a!important;
	text-transform: uppercase;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.btn-yellow:hover {
	border: 2px solid #002a4a;
	background: transparent;
	text-decoration: none;
}

.privacy {
	color: #777;
}

.requestinfo select.error {
    border: 2px solid rgba(255, 0, 0, 0.53);
    box-shadow: inset 0 0 6px rgba(255, 0, 0, 0.72);
}

/*********************************
CAREER DEVELOPMENT PROGRAM STYLING
*********************************/

.page-template-page-interior-no-shield-left-sidebar-php .no-shield-holder {
    overflow: hidden;
    padding-bottom: 60px;
    margin-top: -385px;
}
.page-template-page-interior-no-shield-left-sidebar-php .content-left {
    width: 21%;
    margin-right: 4%;
}
.page-template-page-interior-no-shield-left-sidebar-php .content-right table {
    font-size: 1.5rem;
    line-height: 2.5rem;
}
.page-template-page-interior-no-shield-left-sidebar-php .content-right table img.emoji {
    padding-right: 15px !important;
}
.page-template-page-interior-no-shield-left-sidebar-php .content-right h3 {
    clear: both;
}
.page-template-page-interior-no-shield-left-sidebar-php .content-right {
    width: 65%;
}
.page-template-page-interior-no-shield-left-sidebar-php > ul {
    padding: 0;
}
.page-template-page-interior-no-shield-left-sidebar-php .widget {
    padding-left: 0;
}
.page-template-page-interior-no-shield-left-sidebar-php .widget:before {
    display: none;
}
.page-template-page-interior-no-shield-left-sidebar-php .interior-top h1 {
    font-size: 8.5rem;
}
#menu-cdp li:before { display: none; }
#menu-cdp li {
    background: #e7b220;
    margin-bottom: .7em;
    padding: 0;
}
#menu-cdp li a {
    text-decoration: none;
    text-transform: uppercase;
    padding: .75em;
    display: block;
    font-size: 1.2em;
    color: #113255 !important;
}
#menu-cdp li:hover,
#menu-cdp li.current-menu-item {
    background: #113255;
}
#menu-cdp li:hover a,
#menu-cdp li.current-menu-item a {
    color: white !important;
}
.cdp-title-icons {
    text-align: center;
}
.cdp-title-icons img {
    max-width: 60px;
    margin: 1em .5em;
}

p.event-title {
/* 	font-weight: bold; */
	font-size: 2.5rem;
	color: #0A3254;
	margin: 36px 0 6px;
}

/***** RELATED POSTS ON PROGRAM PAGES ******/

.related-posts {
    padding: 25px 0;
}

.related-post {
    background: #E1E6E6;
    padding: 25px;
    box-sizing: border-box;
    max-width: 300px;
    margin: 1% auto 25px;
    box-sizing: border-box;
}

.related-post h3 {
    line-height: 2.5rem;
}

.related-post a {
    text-decoration: none;
}

.related-post .btn-blue {
    border-radius: 10px;
    padding: 10px;
    color: #fff !important;
    font-weight: 400;
    font-size: 1.6rem;
    text-decoration: none;
    -o-transition: .5s;
    -ms-transition: .5s;
    -moz-transition: .5s;
    -webkit-transition: .5s;
    transition: .5s;
    display: inline-block;
}

.related-post .btn-blue:hover {
	color: #115D7C !important;
}

/***** FORENSIC SCHOLARS TODAY STYLING  ******/

.page-id-14573 .interior-top h1 strong {
  border: 0;
  font: 0/0 a;
  text-shadow: none;
  color: transparent;
  background: url(/wp-content/uploads/2016/02/Forensic-Scholars-Today-Logo-White.png) center no-repeat;
  background-size: 100% auto;
  width: 300px;
  height: 102px;
  margin:0 auto;
}

@media (min-width: 959px) {
    .page-id-14573 .interior-top h1 strong {
        width: 400px;
        height: 130px;
    }
}

.issue {
    background: #E1E6E6;
    display: inline-block;
    overflow: hidden;
    font-size: 2em;
    padding: 20px;
    width: 100%;
    margin-bottom: .5em;
    -webkit-transition: .2s all ease-in-out;
    -ms-transition: .2s all ease-in-out;
    transition: .2s all ease-in-out;
    box-sizing: border-box;
}
.issue span {
    display: block;
    font-weight: normal;
    font-size: .9em;
}
.issue {
    text-decoration: none;
}
.issue:hover {
    background: #005D7E;
    color:  #E1E6E6 !important;
}

/**** ADMISSIONS PAGE STYLING ****/

.page-id-17 .cp-fullAccordion .accordHolder .accord .accordTitle {
	padding-right: 90px;
	overflow:hidden;
}
.page-id-17 .cp-fullAccordion .accordHolder .accord .accordTitle .title {
	font-size: 3.2rem;
	font-weight: normal;
}
.page-id-17 .accordTitle .icon:before,
.page-id-17 .accordTitle .icon:after {
	width: 30px;
}
.page-id-17 .accordTitle:hover .title,
.page-id-17 .accordTitle.active .title {
	color: white;
}
.page-id-17 .accordTitle .title {
	margin-bottom: 0;
}
.page-id-17 .cp-fullAccordion .accordHolder .accord .accordTitle .icon {
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	margin-top: 0;
}

/* Student Testimonials on Corporate Partnerships Page */

.studentTestimonial {
    overflow: hidden;
    clear: both;
    margin-top: 30px;
    margin-bottom: 20px;
}

/** Social Sharing**/

.custom-share-button {
  font-family: "Roboto", Helvetica, Arial, sans-serif;
	  color: #fff;
  background-color: #55acee;
  padding: .8em 1.2em;
  border-radius: 3px;
  display: inline-block;
	margin: 0 .5em .5em 0;
}
.custom-share-button.share-fb { background-color: #3b5998; }
.custom-share-button.share-pinterest { background-color: #cb2027; }
.custom-share-button.share-linkedin { background-color:  #007bb5; }
.custom-share-button-icon,
.custom-share-button-label {
  display: inline-block;
  vertical-align: middle;
}
.custom-share-button-icon {
  width: 1.5em;
  height: 1.5em;
  margin-right: .2em;
}
.custom-share-button-icon path { fill: #fff; }

body a.custom-share-button {
	color: white !important;
}

/** Infographics Page **/

.infographic-card {
	margin-bottom: 40px;
	text-decoration: none;
	text-align: center;
	display: block;
}
.infographic-card__button {
	text-decoration: none;
	margin: 0 auto;
	display: inline-block;
	background: rgba(144,32,82,0.95);
	color: white;
	padding: 1em 2em;
	font-size: 1.5em;
}
.infographic-card img {
	max-width: 100%;
	height: auto;
}
.infographic-card__title {
  font-size: 2.5em;
  text-decoration: none;
  margin: 1em 0 .5em;
  display: block;
}
.infographic-card__excerpt p {
	line-height: 1.5
	font-weight: normal;
}

@media (min-width: 800px) {
	.infographics-container {
		display: flex;
		flex-wrap: wrap;
	}
	.infographic-card {
		flex:1;
		max-width: 48%;
		min-width: 48%;
		margin: 0 1% 40px;
	}
}

@media (min-width: 1000px) {
		.infographic-card {
			flex:1 1 auto;
			max-width: 31.33%;
			min-width: auto;
			margin: 0 1% 40px;
		}
	}

/**** Admissions Re-work *****/

.admissions-bachelor,
.admissions-master ,
.admissions-international {
  display: none;
}

.page-template-page-admissions .switch {
	width: 100%;
	float: left;
	margin-top: .5em;
	margin-bottom: 1em;
	text-align: center;
}

.page-template-page-admissions .no-shield-holder {
  padding-top: 40px;
}

.page-template-page-admissions .switch a {
	border: 2px solid #8E2352;
	border-radius: 10px;
	padding: 10px 25px;
	color: #8E2352!important;
	font-weight: 400;
	font-size: 1.6rem;
	text-decoration: none;
	margin: 0 10px;
	-o-transition:.5s;
  -ms-transition:.5s;
  -moz-transition:.5s;
  -webkit-transition:.5s;
  transition:.5s;
  display: inline-block;
  cursor: pointer;
}

.page-template-page-admissions .switch a.active {
  background-color: #8E2352;
  color: white!important;
}

.admissions-content {
  clear: both;
  display: block;
  width: 100%;
  margin: 0 auto 4%;
  clear: both;
  background-color: #E1E6E6;
  padding: 6% 8%;
  box-sizing: border-box;
  overflow: hidden;
}

.admissions-content__column-a {
  width: 62%;
  border-right: 1px solid #ACACAC;
  padding-right: 5%;
  float: left;
}

.admissions-content__column-b {
  width: 29%;
  float: right;
}

.admissions-content__column-b h3 {
  /* font-weight: bold; */
  line-height: 1.2;
}

.page-template-page-admissions .top-cta-next .top-cta-drawer {
  display: none;
}

@media (max-width: 768px) {

  .page-template-page-admissions .switch a {
    width: 40%;
    padding: 10px 0;
    margin-bottom: 1em;
  }

  .admissions-content__column-a,
  .admissions-content__column-b {
    width: 100%;
    border: none;
  }

  .admissions-content__column-b {
    margin-top: 2em;
  }
}

/*@media (min-width: 960px) {
  .no-shield-holder {
    margin-top: -485px;
  }
}  */

.editor-email-button {
    background-color: #902052;
    padding: 0 15px;
    color: #ffffff;
    border: 0px;
    border-radius: 6px;
    width: 100%;
    box-sizing: border-box;
    height: 40px;
    background-size: auto 100%;
    cursor: pointer;
    transition: background 300ms;
    font-size: 1.6rem;
}

/* CTA callout for blog posts */

.cta {
	padding: 3em;
	margin-bottom: 2em;
	background-color: #E1E6E6;
	text-align: center;
}
.cta a {
	color: white !important;
	display: inline-block;
}
form td.td100.content-right {
    padding-right: 0 !important;
}

/*** stat boxes ***/
.stat-container {
	width: 100%;
	margin-right: auto;
  margin-left: auto;
	padding-left: 1rem;
	padding-right: 1rem;
}
.flex-box-wrap {
	display: flex;
	flex-direction: column;
	position: relative;
	margin-top: 32px;
	margin-bottom: 32px;
}

.stat-box-blue p {
	margin-top: 25px;
  text-align: center;
  font-size: 2.0rem;
  line-height: 2.6rem;
}

.outcomes {
	flex:1;
	height: auto;
	padding: 15px;
	margin: 5px;
}

.fact {
		font-size: 2.2em;
    font-weight: 100;
    position: relative;
		padding-bottom: 1em;
}

.stat-info-box {
	box-sizing: border-box;
}

.stat-info-box a {
	text-decoration: none;
}


.stat-info-box p {
	margin-top: 15px;
	margin-bottom: 15px;
  text-align: center;
	line-height: 1.5em;
  font-size: 1.9em;
	font-weight: 100;
}

.stat-info-box span {
	font-size: 40px;
	display: block;
	text-align: center;
}

.stat-box-white {
		background-color: #EBEBEB;
}

.stat-box-white span {
	  color: #005d7e;
}

.stat-box-white a {
	color: #2c6ba3;
}

.stat-box-blue {
		background-color: #005d7e;
	  color: white!important;
	}
.stat-box-blue p {
	color: white!important;
}

.stat-box-blue a {
	color: #ffffff !important;
}

.stat-box-blue span::after {
		content: "";
    width: 55px;
    height: 4px;
    display: block;
    background-color: #fff;
    margin: auto;
    margin-top: 20px;
    position: absolute;
    left: 50%;
    margin-left: -30px;
	}

.stat-box-white span::after {
		content: "";
		width: 55px;
		height: 4px;
		position: absolute;
		display: block;
		background-color: #005d7e;
		margin: auto;
		margin-top: 20px;
		left: 50%;
		margin-left: -30px;
}

	.clearfix {
    clear: both;
	}
	.row {
    margin-right: -15px;
    margin-left: -15px;
	}

@media (min-width: 500px) {
	.stat-container {
		width: 80%;
	}
	.col-sm-12 {
		position: relative;
		padding-right: 15px;
		padding-left: 15px;
	}
}

@media (min-width: 768px) {
	.stat-container {
		width: 100%;
	}
	.col-sm-12 {
			position: relative;
			padding-right: 15px;
			padding-left: 15px;
		}
	.flex-box-wrap {
		flex-direction: row;
	}
}

@media (min-width: 1200px) {
		.stat-container {
			width: 100%;
			max-width: 1200px
		}
	}


/*@media (max-width: 1000px) {
.outcomes {
    width: 345px;
    height: 290px;
    padding: 15px;
    margin: 5px;
}
}*/

.hr-gray {
	margin: 4rem 1rem;
  border-bottom: 1px solid #EBEBEB;
}
 .hr-yellow {
	margin: 4rem 1rem;
	border-bottom: 1px solid #D5AB39;
}
.section-title {
	text-align: center;
	color: #002a4a;
	font-size: 3.4rem;
	/* font-weight: 600; */
	margin-bottom: 20px;
	float: none;
}

.section-desc {
	color: #363636;
	text-align: center;
	font-size: 2.2rem;
	line-height: 1.4;
	font-weight: 200;
	max-width: 930px;
	margin: auto;
}

.subsection-title {
	text-align: center;
	color: #002a4a;
	font-size: 3rem;
	font-weight: 400;
	margin-bottom: 20px;
	float: none;
}

.subsection-desc {
	color: #000000;
	text-align: center;
	font-size: 2rem;
	line-height: 1.4;
	font-weight: 200;
	max-width: 800px;
	margin: auto;
}

/* Alumni Testimonial Cards */
.at-container {
	max-width: 900px;
	margin: 4rem auto;
	justify-content: space-between;
}

.alumni-testimonial {
	background-color: #002a4a;
	color: white;
	text-align: center;
	min-height: 400px;
	flex: 1 0 28%;
	border: 4px solid white;
	position: relative;
	overflow: hidden;
}
.alumni-testimonial a {
	text-decoration: none;
	color: white;
}
.atbg {
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	position: absolute;
	top: 0;
	bottom: 0;
	height: 100%;
	width: 100%;
	z-index: 1;
	transition: all 400ms ease-in;
}
.alumni-info {
	background-color: rgba(13, 51, 83, 0.8);
	padding: 2rem;
	position: absolute;
	top: 60%;
	height: 100%;
	transition: all 400ms ease-in;
	z-index: 2;
	font-size: 1.4rem;
	line-height: 1.4;
}
.alumni-testimonial:hover .atbg {
	-webkit-filter: blur(5px);
  -moz-filter: blur(5px);
  -o-filter: blur(5px);
  -ms-filter: blur(5px);
  filter: blur(5px);
	transform: scale(1.1);
}
.alumni-testimonial:hover .alumni-info {
	top: 0;
}
.at-name {
	color: #D5AB39;
	font-size: 2rem;
	font-weight: 600;
	line-height: 1.8;
}
.at-info {
	font-size: 1.4rem;
	line-height: 1.4;
}
.alumni-info .hr-yellow {
	margin: 2rem 1rem;
}
.alumni-info .quote {
	margin-bottom: 4rem;
}
.alumni-info .btn-yellow:hover {
	border-color: white !important;
	color: white !important;
}

/* Single Program Page */
.banner-info {
	color: white;
}
.bi-badge {
	text-align: center;
}
.bi-badge img {
	max-height: 160px;
	width: auto;
	transition: all .2s ease-in-out;
}
.bi-desc {
	max-width: 400px;
	color: #FFFFFF;
	text-align: center;
	font-size: 1.6rem;
	line-height: 1.4;
	font-weight: 200;
	margin: 1rem auto;
}
.bi-desc .disclaimer {
	font-size: 1rem;
}
.bi-desc a {
	color: #FFFFFF;
}
@media screen and (min-width: 768px){
	.banner-info {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: center;
		align-items: center;
		max-width: 700px;
		margin: 1.5rem auto;
	}
	.bi-desc {
		max-width: 400px;
		text-align: left;
		margin: 0 0 0 2rem;
	}
	.bi-badge:hover img {
		transform: scale(1.8) translateX(-20px) translateY(-20px);
	}
}

#program-details {
	background-color: #D5AB39;
	color: #002a4a;
	height: auto;
}
#program-details .container {
	padding: 1.4rem;
}
.program-details-section h2 {
	color: #002a4a;
	font-size: 1.8rem;
	text-align: left;
}
.program-details-section h3 {
    font-size: 1.4rem;
    color: #002a4a;
    margin-bottom: 1.5rem;
}

.program-details-section li {
	font-size: 1.4rem;
/* 	font-weight: bold; */
	line-height: 1.8rem;
	list-style: none;
	width: auto;
	float: none;
	margin-bottom: 18px;
}

.program-details-section li:before {
	display: none;
}

.program-details-section .display-type-of-course li:last-of-type {
	margin-bottom: 0;
}

.program-details-section li img {
	width: 32px;
	height: 32px;
	margin-right: 2px;
	float: left;
	margin-top: -7px;
}

.program-details-section li span{
	font-weight: 100;
	color: #002a4a;
}

@media all and (min-width: 768px) {
	.program-details-section {
		text-align: center;
	}
	.program-details-section h2, .program-details-section h3, .program-details-section li, .program-details-section ul {
		display: inline-block;
		margin-right: 1.5rem;
		margin-bottom: 0;
	}
	.program-details-section .display-type-of-course {
		display: inline-block;
	}
	.program-details-section .display-type-of-course li:last-of-type {
		margin-right: 0;
	}
}

#section0 {
	margin-top: 32px;
}

.brief-summary p {
	font-size: 1.5rem;
	line-height: 2.5rem;
	max-width: 700px;
	margin: auto;
}
#midpage-form {
	background-color: #002a4a;
	padding: 2rem 0;
}
.curr-breakdown .program-overview .program-overview-column-b .program-overview-column-cta .title.no-arrow-after:after {
	display: none;
}
.midpage-form {
	width: 100%;
	margin: 0 auto;
	overflow: auto;
	margin-top: 20px!important;
	position: relative;
}

.midpage-form h2 {
	color: white;
}

.midpage-form p {
	color: white;
	margin-bottom: 32px;
}

.midpage-form legend {
	display: none;
}

.midpage-form label{
	display:block !important;
	color:#FFF;
	font-weight:100;
	font-size:1.9rem;
}
.midpage-form form ol {
	margin: auto;
}
.midpage-form form li {
	float: left;
	margin-right: 2%;
	margin-left: 2%;
	width: 28%;
	margin-bottom: 15px;
	list-style-type:none;
	position: relative;
	height: 65px;
}

.midpage-form form li input,
.midpage-form form li select {
	margin-top: 10px;
	border: none;
	border-radius: 3px;
	width: 100%;
	font-size: 18px;
	padding: 6px 6px;
	border:1px solid #EEE;
	box-sizing:border-box;
	white-space: nowrap;
}

.midpage-form form li select {
	height: 35px;
}

.midpage-form fieldset.elp_submit {
	padding: 0 6% 0 2%;
}

.midpage-form form input[type='submit'] {
	float: right;
	background-color: #D5AB39;
	border: 2px solid #D5AB39;
	color: #002a4a;
	font-family: 'FontAwesome', myriad-pro, sans-serif;
	font-weight: 600;
	text-transform: uppercase;
	border-radius: 10px;
	margin-top: 15px;
	display: inline;
	box-sizing: border-box;
	font-size: 2rem;
	line-height: 35px;
	padding: .5rem 3rem;
	cursor: pointer;
	transition:background 300ms;
	margin-bottom: 1em;
	width: 30%;
	min-width: 200px;
}

.midpage-form form input[type='submit']:hover {
	background: transparent;
	color: #FFFFFF;
}

.midpage-form form .legal-text {
	margin-top: 1em;
	float: left;
	display: inline;
}

@media all and (min-width: 768px) {
	.midpage-form form .legal-text {
			width: 60%;
	}
}

/* Outcomes Page */
.page-id-16514 .interior-top,
.single-alumni-testimonial .interior-top {
	min-height: 660px;
}

@media screen and (min-width: 768px){
	.page-id-16514 .interior-top,
	.single-alumni-testimonial .interior-top {
		min-height: 620px;
	}
}

.page-id-16514 .interior-top h1 {
	margin-top: 100px;
}

.page-id-16514 .blank-shield {
	display: none;
}

.page-id-16514 .bottom-content {
	padding-bottom: 4rem;
}

.page-id-16514 .videoWrapper {
	  box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.08);
}

.page-id-16514 .content2 {
  display: none;
}

.page-id-16514 .content2.active {
  display: block;
}

.page-id-16514 .accord {
    width: 24%;
    float: left;
    margin-right: 1%;
}
.page-id-16514 .accordInner { display: none; }

.page-id-16514 .right-text {
    overflow: inherit;
}

.page-id-16514 .content img {
    width: 100%;
    height: auto;
}

.page-id-16514 .data-ftr {
    width: 80%;
    margin: auto;
}
.page-id-16514 .accordTitle.active {
    background-color: #dca900;
    color: #002a4a;
}

.page-id-16514 .accordTitle:hover {
    background-color: #dca900;
    color: #002a4a;
}

.accordTitle.accordion-active {
background-color: #dca900;
color: #002a4a;
}

.accordTitle.accordion-active + .accordInner {
height: auto;
max-height: 999999px;
-webkit-animation: accordionIn 0.65s normal ease-in-out both;
animation: accordionIn 0.65s normal ease-in-out both;
}

.alumni-img {
	float: left;
	margin-right: 2em;
	margin-bottom: 1em;
}

@media (max-width: 767px){
	.page-id-16514 .accord {width: 100%; margin-right: 0; float: none;}
	.page-id-16514 .cp-fullAccordion .accordHolder .accord .accordTitle {height: auto; }
}

.page-id-16514 #canvas{
	width: 100%!important;
	height: 100%!important;
}

.infographicCallout video {
	width: 100%;
	height: auto;
}

.infographicCallout__label {
	display: block;
	font-size: 14px;
	color: #002a4a;
	text-transform: uppercase;
}

.content .infographicCallout__heading {
	font-size: 32px;
}

.content .infographicCallout__link {
	margin-left: 0;
	margin-top: 15px;
	display: inline-block;
	color: #002a4a !important;
}

@media screen and (min-width: 768px) {
	.infographicCallout {
		display: flex;
	}

	.infographicCallout__content {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: center;
	}

	.infographicCallout video {
		height: auto;
	}

	.infographicCallout__media {
		margin-right: 40px;
	}
}

.olcphone .fa-phone {
	color: #fff;
	-webkit-text-stroke-width: 1px;
	-webkit-text-stroke-color: #0A3254;
	font-size: 1.7em;
	top: 3px;
	position: relative;
}
