/*
 	0. BUTTONS
	1. FONTS
	2. TYPOGRAPHY
	3. HEADER & NAVIGATION
	4. MAIN
	   - BREADCRUMBS
	   - PROGRAMS SEARCH
	   - CALENDAR EVENTS FILTERS
	   - DRUPAL PRIMARY TABS/BUTTONS
	5. NEWS & EVENTS
	6. CALENDAR OF EVENTS
	7. INDIVIDUAL CALENDAR EVENT
	8. STUDENT SPOTLIGHT
	9. INDIVIDUAL STUDENT SPOTLIGHT & INDIVIDUAL FACULTY
	10. STUDENT SPOTLIGHT CAROUSEL
	11. DIRECTORY/FACULTY BLOCKS
	12. PROGRAMS
	13. SUBFOOTER LATEST NEWS & UPCOMING EVENTS
	14. FOOTER
	15. HOME
	16. SEARCH
	17. WEBFORM
*/

/*------------
0. BUTTONS
------------*/
#block-views-helpful-links-block .views-row {
  display: inline-block;
}
.button {
  background: red;
  color: #fff;
  display: inline-block;
  font: 500 18px/22px "futura-pt", sans-serif;
  margin: 0 10px 10px 0;
  min-width: 200px;
  padding: 5px 40px 5px 10px;
  position: relative;
}
.button:hover {
  color: #fff;
}
.button:after {
  background: #202021;
  color: #fff;
  content: "i";
  display: inline-block;
  font-family: "methodist-university" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  line-height: 1;
  margin: 0;
  padding: 7px;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
#block-views-helpful-links-block .field-content a.bracket {
  color: #00573d;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
#block-views-helpful-links-block .field-content a.bracket:hover {
  color: #ffc423;
}
#block-views-helpful-links-block .field-content a.bracket:after {
  content: none;
}
.button.red {
  background: #cd2327;
}
#block-views-helpful-links-block .field-content:hover > a:after {
  background: transparent;
}
.button.lightblue {
  background: #8ccdd1;
}
.button.darkblue {
  background: #2c2f76;
}
.button.teal {
  background: #00a1c2;
}
.button.fuschia {
  background: #9b3467;
}
.button.limegreen {
  background: #b0d136;
}
.button.darkpurple {
  background: #6e1344;
}
.button.yellow {
  background: #ffc423;
}
.button.green {
  background: #00573d;
}

.button.bracket {
  background: url("../img/button-brackets.png") no-repeat 0 0;
  color: #fff;
  display: block;
  font: 700 16px/20px "futura-pt", sans-serif;
  height: 41px;
  min-width: 0;
  padding: 10px;
  text-align: center;
  text-transform: uppercase;
  width: 146px;
}
.button.bracket:after {
	content: none;
}
.button.bracket.green {
  color: #00573d;
}
.button.bracket.white {
  background: url("../img/button-brackets-white.png") no-repeat 0 0;
}

/*------------
1. FONTS
------------*/
@charset "UTF-8";

@font-face {
  font-family: "methodist-university";
  src:url("../fonts/methodist-university.eot");
  src:url("../fonts/methodist-university.eot?#iefix") format("embedded-opentype"),
    url("../fonts/methodist-university.woff") format("woff"),
    url("../fonts/methodist-university.ttf") format("truetype"),
    url("../fonts/methodist-university.svg#methodist-university") format("svg");
  font-weight: normal;
  font-style: normal;

}

[data-icon]:before {
  font-family: "methodist-university" !important;
  content: attr(data-icon);
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[class^="icon-"]:before,
[class*=" icon-"]:before {
  font-family: "methodist-university" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-search:before {
  content: "a";
}
.icon-give:before {
  content: "o";
}
.icon-facebook:before {
  content: "b";
}
.icon-instagram:before {
  content: "c";
}
.icon-twitter:before {
  content: "d";
}
.icon-youtube:before {
  content: "e";
}
.icon-email:before {
  content: "f";
}
.icon-arrow-left:before {
  content: "h";
}
.icon-arrow-right:before {
  content: "i";
}
.icon-arrow-double-left:before {
  content: "j";
}
.icon-arrow-double-right:before {
  content: "k";
}
.icon-arrow-down:before {
  content: "l";
}
.icon-flickr:before {
  content: "g";
}
.icon-close:before {
  content: "m";
}
.icon-menu:before {
  content: "n";
}


/*------------
2. TYPOGRAPHY
------------*/
body {
  font-family: "Crimson Text", serif;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
  font-family: "futura-pt", sans-serif;
}
p {
  font-size: 18px;
}
a {
  text-decoration: none;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
a:hover {
  color: #cbb778;
}
a:hover, a:focus, a:active {
	outline: none;
}
.highlight {
  color: #cbb778;
}
input:focus,
input:active,
textarea:focus,
textarea:active {
	outline: none;
}


/*------------
3. HEADER & NAVIGATION
------------*/
#toggle,
#block-system-main-menu .sub-toggle {
	display: none;
}
#block-system-main-menu {
	background: #202021;
	height: 55px;
}
#block-system-main-menu .content {
	margin: 0 auto;
	width: 1015px;
}
#block-system-main-menu ul,
#block-system-main-menu li {
	list-style-type: none;
	list-style-image: none;
	margin: 0;
	padding: 0;
}
#block-system-main-menu a {
	color: #fff;
	font: 700 13px/17px "futura-pt", sans-serif;
}
#block-system-main-menu li {
	display: inline-block;
	vertical-align: top;
}
#block-system-main-menu li > a {
	display: block;
	padding: 15px;
	text-transform: uppercase;
}
#block-system-main-menu li > a:hover {
  color: #cbb778;
}
#block-system-main-menu li ul {
	-webkit-column-count: 4;
	-moz-column-count: 4;
	column-count: 4;
	-webkit-column-width: 200px;
	-moz-column-width: 200px;
	column-width: 200px;
	-webkit-column-gap: 40px;
	-moz-column-gap: 40px;
	column-gap: 40px;
}
#block-system-main-menu li ul li {
	display: block;
	margin-bottom: 10px;
	padding-bottom: 10px;
-webkit-column-break-inside: avoid;
          page-break-inside: avoid;
               break-inside: avoid;
}
#block-system-main-menu li ul li > a {
	padding: 0;
	text-transform: none;
}
#block-system-main-menu li.active-trail > a {
	color: #cbb778;
}
#block-system-main-menu ul li .sub-menu-wrapper {
	background: #202021;
	left: 0;
	position: absolute;
	width: 100%;
}
#block-system-main-menu .sub-menu-wrapper:before {
	content: "";
	display: block;
	background: #202020;
	height: 100%;
	margin-left: -50000px;
	position: absolute;
	top: 95px;
	left: 0;
	width: 100000px;
	display: none;
}
#block-system-main-menu li ul {
	display: none;
	margin: 25px auto;
	width: 1000px;
}
#block-system-main-menu li:hover ul {
  display: block;
  background: #202020;
}
#block-system-main-menu li ul li ul {
	display: none !important;
}
#block-custom-search-blocks-1 {
  background: #ffc423;
  height: 64px;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 100%;
  visibility: hidden;
  z-index: 10; 
}
#block-custom-search-blocks-1 .content {
  margin: 0 auto;
  width: 1050px;
}
#block-custom-search-blocks-1 .search-form,
#block-custom-search-blocks-1 .form-item,
#block-custom-search-blocks-1 .form-actions {
  margin: 0;
}
#block-custom-search-blocks-1 .search-form {
  margin-top: 6px;
  position: relative;
}
#block-custom-search-blocks-1 .search-form input {
  padding: 15px;
  width: 100%;
}
#block-custom-search-blocks-1 .form-actions {
  position: absolute;
  right: 0;
  top: 0;
}
#block-custom-search-blocks-1 .form-actions input {
	background: transparent;
	border: none;
  font-family: "methodist-university" !important;
  font-size: 38px;
  padding: 0;
  position: relative;
  right: 15px;
  top: 2px;
  width: auto;
}
#block-custom-search-blocks-1 a.icon-close {
	color: #000;
	font-size: 24px;
	position: absolute;
	right: 10px;
	top: 20px;
}
#page-wrap {
  position: relative;
  overflow: hidden;
}
header  {
  overflow: hidden;
  position: relative;
}
header .top {
  position: relative;
  z-index: 100;
}
#new-banner-wrapper {
	height: 250px;
	position: relative;
}
#new-banner-wrapper .page-title {
	color: #fff;
	display: block;
	font-size: 28px;
	left: 675px;
	line-height: 42px;
	max-width: 575px;
	position: relative;
	text-transform: uppercase;
	top: 100px;
}
#new-banner-wrapper .page-title h2 {
	font-weight: 300;
}
#logo-placement {
	
}
#logo {
	background: url("../img/interior-logo.png") no-repeat 0 0;
	display: block;
	height: 250px;
	left: 280px;
	position: relative;
	width: 300px;
	z-index: 10;
}
#methodist-univ {
	display: block;
	text-indent: -9999px;
}
#logo-wrapper-new,
#shapes,
#banner-photo {
	display: block;
	height: 250px;
	left: 50%;
	margin: 0 auto;
	position: absolute;
	top: 0;
	width: 1600px;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}
#logo-wrapper-new {
	z-index: 10;
}
#shapes {
	background: url('../img/banner-shapes.png') no-repeat 0 0;
	z-index: 1;
}
#banner-photo {
	z-index: -1;
}
header #social-bar-wrapper {
  background: #ffc423;
  position: absolute;
  right: -115px;
  top: 0;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
header #social-bar-wrapper.active {
	right: 0;
}
header ul.social-media {
  font-size: 24px;
  list-style-type: none;
  margin: 0;
  padding: 15px 0;
}
header ul.social-media li {
  display: inline-block;
}
header ul.social-media a {
  color: #202021;
  margin: 0 5px;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
header ul.social-media a:hover {
	color: #00573d;
}
.logo {
  background: url('../img/interior-logo.png') no-repeat 0 0;
  display: block;
  height: 250px;
  margin-left: 5px;
  text-indent: -9999px;
  width: 300px;
}
#page-title-wrapper {
  left: 400px;
  position: absolute;
  top: 160px;
}
#page-title-wrapper h2 {
	color: #fff;
	font: 100 48px/52px "futura-pt", sans-serif;
	margin: 0;
	text-transform: uppercase;
}

/*------------
4. MAIN
------------*/
/* FULL WIDTH PAGES */
body.page-mu-events #main section,
body.page-node-129 #main section,
body.node-type-event #main section,
body.page-node-125 #main section,
body.node-type-student-spotlight #main section,
body.node-type-faculty #main section,
body.page-node-28 #main section,
body.node-type-audience-landing-page #main section,
body.page-node-56 #main section {
	display: block;
	margin: 50px auto 0;
	padding: 0;
	position: relative;
	width: 955px;
}
/* MARQUEE */
.breadcrumb-wrapper,
#main .wrapper {
  margin: 0 auto;
  width: 1050px;
}
#marquee-wrapper {
	color: #00573d;
	font: normal 15px/19px "futura-pt", sans-serif;
	height: 50px;
}
.breadcrumb-wrapper {
	height: 50px;
	margin-right: 300px;
	position: relative;
	width: auto;
}
.breadcrumb-wrapper:after {
	background: #cbb778;
	border-top: 50px solid transparent;
	border-right: 50px solid #fff;
	content: '';
	display: block;
	height: 0;
	position: absolute;
	top: 0;
	width: 100%;
}
.breadcrumb {
	left: 50%;
	margin-left: -350px;
	padding: 15px 0;
	position: absolute;
	top: 0;
	z-index: 1;
}
.breadcrumb-break,
.breadcrumb a {
	color: #fff;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
  -o-transition: all .3s ease;
	transition: all .3s ease;
}
.breadcrumb a:hover {
	color: #00573d;	
}

/* Programs Page Breadcrumbs & Search Box */
/* Drectory Page Breadcrumbs & Search Box */
/* Calendar Events Filters */
body.page-node-28 #marquee-wrapper,
body.page-node-56 #marquee-wrapper {
  height: 230px;
}
body.page-node-28 .breadcrumb-search-wrapper,
body.page-node-56 .breadcrumb-search-wrapper {
  height: 100px;
  margin-right: 200px;
  position: relative;
  width: auto;
}
body.page-mu-events #marquee-wrapper,
body.page-node-129 #marquee-wrapper {
	height: 170px;
	margin-right: 200px;
	position: relative;
	width: auto;
}
body.page-node-28 .breadcrumb-search-wrapper:after,
body.page-node-56 .breadcrumb-search-wrapper:after {
  content: '';
  background: #cbb778;
  border-top: 230px solid transparent;
  border-right: 200px solid #fff;
  display: block;
  height: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
body.page-mu-events #marquee-wrapper:after,
body.page-node-129 #marquee-wrapper:after {
  content: '';
  background: #cbb778;
  border-top: 170px solid transparent;
  border-right: 200px solid #fff;
  display: block;
  height: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
body.page-node-28 .breadcrumb-wrapper,
body.page-mu-events .breadcrumb-wrapper,
body.page-node-129 .breadcrumb-wrapper,
body.page-node-56 .breadcrumb-wrapper {
  margin-right: auto;
}
body.page-node-28 .breadcrumb-wrapper:after,
body.page-mu-events .breadcrumb-wrapper:after,
body.page-node-129 .breadcrumb-wrapper:after,
body.page-node-56 .breadcrumb-wrapper:after {
  background: transparent;
  border: none;
}
body.page-node-28 .breadcrumb,
body.page-mu-events .breadcrumb,
body.page-node-129 .breadcrumb,
body.page-node-56 .breadcrumb {
  margin-left: -380px;
}
body.page-node-28 .search-wrapper,
body.page-mu-events .marquee,
body.page-node-129 .marquee,
body.page-node-56 .search-wrapper {
  left: 50%;
  margin-left: -380px;
  min-width: 950px;
  position: absolute;
  top: 50px;
  z-index: 10;
}
body.page-mu-events .marquee,
body.page-node-129 .marquee {
	margin-top: 10px;
}
.search-wrapper p {
  color: #202021;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}
.search-wrapper strong {
  margin-right: 15px;
}
.search-wrapper a {
  background: #202021;
  color: #fff;
  display: inline-block;
  font-size: 12px;
  padding: 8px;
}
.search-wrapper a:hover {
	background: #00573d;
}
#search-programs input,
#search-faculty input {
  border: none;
  font-size: 28px;
  height: 75px;
  margin: 15px 0;
  padding: 25px;
  width: 100%;
}
/* MAIN CONTENT */
#block-views-background-images-block {
  left: 0;
  position: absolute;
  top: 0;
  z-index: -1;
}
#block-views-background-images-block img {
  height: auto;
  width: 100%;
}
#main {
	padding: 60px 0 115px;
	position: relative;
}
#main section {
	display: inline-block;
	margin-top: 50px;
	width: 675px;
}
#main section h1 {
	color: #00573d;
	font: 100 52px/56px "futura-pt", sans-serif;
	margin-top: 0;
	text-transform: uppercase;
}
#main section h2 {
	font-size: 24px;
	text-transform: uppercase;
}
#main section ul,
#main section ol {
	font-family: "futura-pt", sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 26px;
}
#main section a {
	color: #0d4b8c;
}
#main section a.button {
	color: #fff;
}
#block-views-01c0ed08b9b885a564a15aa8df9bd780 {
	margin-top: 50px;
}
#block-views-01c0ed08b9b885a564a15aa8df9bd780 li {
	color: #00573d;
	display: inline-block;
	list-style-type: none;
	margin: 0;
	width: 45%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
#block-views-01c0ed08b9b885a564a15aa8df9bd780 li:before {
	content: "\2022";
	display: inline-block;
	margin-right: 5px;
	vertical-align: top;
}
#block-views-01c0ed08b9b885a564a15aa8df9bd780 li a {
	color: #00573d;
}
/* SIDEBAR */
aside.sidebar {
	display: inline-block;
	margin: 0 85px 0 0;
	vertical-align: top;
	width: 265px;
}
aside .block {
  margin-bottom: 40px;
}
aside.sidebar h2 {
  color: #00573d;
  font-size: 34px;
  font-weight: 100;
  margin: 0 0 10px 10px;
  text-transform: uppercase;
}
aside .block > .content {
  background: #fff;
  text-align: center;
}
#block-views-helpful-links-sidebar-block .content ul,
#block-views-news-categories-block .content,
#block-views-news-archives-block .content ul {
	background: #fff;
	font: bold 18px/22px "futura-pt", sans-serif;
	margin: 0;
	padding: 0;
	text-align: center;
	text-transform: uppercase;
}
#block-views-helpful-links-sidebar-block .content ul li,
#block-views-news-categories-block .views-field-name,
#block-views-news-archives-block .content li,
#block-views-degree-block .views-row {
	border-bottom: 1px solid #cbb778;
	list-style-image: none;
	list-style-type: none;
	margin: 0;
	padding: 8px 0;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
  -o-transition: all .3s ease;
	transition: all .3s ease;
}
#block-views-helpful-links-sidebar-block .content ul li:last-child,
#block-views-news-categories-block .views-row-last .views-field-name,
#block-views-news-archives-block .content li:last-child {
  border-bottom: none;
}
#block-views-helpful-links-sidebar-block .content ul li:hover,
#block-views-news-categories-block .views-field-name:hover,
#block-views-news-archives-block .content li:hover,
#block-views-degree-block .views-row:hover {
  background: #cbb778;
}
#block-views-helpful-links-sidebar-block .content ul li:hover > a,
#block-views-news-categories-block .views-field-name:hover a,
#block-views-news-archives-block .content li:hover a,
#block-views-degree-block .views-row:hover a {
  color: #fff;
}
#block-views-helpful-links-sidebar-block .content ul a,
#block-views-news-categories-block .content a,
#block-views-news-archives-block .content a {
	color: #00573d;
}
#block-views-helpful-links-sidebar-block .content ul li.active-trail {
	padding: 0;
}
#block-views-helpful-links-sidebar-block .content ul a.active-trail {
  border-bottom: 1px solid #cbb778;
  display: block;
  padding: 8px 0;
}
#block-views-helpful-links-sidebar-block .content ul a.active {
	background: #cbb778;
	color: #fff;
	display: block;
}
#block-views-helpful-links-sidebar-block .content ul li {
  padding: 0;
}
#block-views-helpful-links-sidebar-block .content ul li a {
  display: block;
	padding: 10px 0;
}
#block-views-news-categories-block {
  margin-bottom: 50px;
}
/* Helpful Links */
#block-views-helpful-links-block {
  margin-top: 50px;
}
/* Program Sidebar - Degrees */
#block-views-degree-block .content a {
  color: #00573d;
  display: block;
  font: 700 18px/22px "futura-pt", sans-serif;
  padding: 0 15px;
}
#block-views-degree-block .views-row:last-child {
  border-bottom: none;
}
/* Program Sidebar - Main Contact */
#block-views-programs-block-3 .content {
  background: transparent;
  text-align: left;
}
#block-views-programs-block-3 .view-content {
  background: #fff;
  padding: 15px;
  text-align: center;
}
#block-views-programs-block-3 .views-field {
  color: #00573d;
  font: 300 18px/22px "futura-pt", sans-serif;
}
#block-views-programs-block-3 .views-field-field-first-name,
#block-views-programs-block-3 .views-field-field-last-name {
  display: inline-block
}
#block-views-programs-block-3 .views-field-field-phone-number {
  margin-top: 5px;
}
/* DRUPAL PRIMARY TABS/BUTTONS */
#main section ul.primary {
  border: none;
  display: inline-block;
  margin: 0;
  padding: 0;
}
#main section ul.primary li.active a {
  background: #ffc423;
}
#main section ul.primary li.active a:hover {
  background: #EAAB00;
}

#main section ul.primary li a,
#main section .login,
#main section .logout {
  background: #ddd;
  border: none;
  color: #000;
  display: inline-block;
  font: 500 14px/18px "futura-pt", sans-serif;
  padding: 5px 20px;
  text-transform: uppercase;
}
#main section ul.primary li a:hover,
#main section .login:hover,
#main section .logout:hover {
  background: #ffc423;
}

/*------------
5. NEWS & EVENTS
------------*/
#block-views-news-categories-block h2,
#block-views-news-archives-block h2 {
  color: #00573d;
  font: 300 30px/34px "futura-pt", sans-serif;
  margin: 0 0 15px;
  text-transform: uppercase;
}
body.page-node-127 .article-wrapper {
  border-bottom: 1px solid #cbb778;
  margin-bottom: 50px;
  padding-bottom: 50px;
}
body.page-node-127 .article-image,
body.page-node-127 .article {
  display: inline-block;
  vertical-align: top;
}
body.page-node-127 .article-image {
  border: 3px solid #cbb778;
  margin-right: 15px;
  padding: 8px;
}
body.page-node-127 .article {
  width: 450px;
}
body.page-node-127 .post-title {
  margin: 0;
}
body.page-node-127 .post-title a {
  color: #202021;
  text-transform: none;
}
body.page-node-127 .post-date,
#block-views-post-date-block {
  font-family: "futura-pt", sans-serif;
  font-size: 18px;
  font-weight: 500;
  margin: 8px 0 0;
}
body.page-node-127 .article p:last-child {
  margin-bottom: 0;
}
body.page-node-127 .read-more a {
  color: #00573d;
  display: block;
  font: 700 14px/18px "futura-pt", sans-serif;
}
body.page-node-127 .read-more a:hover {
  color: #ffc423;
}
#main .item-list .pager {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-align: right;
  text-transform: uppercase;
}
#main .item-list .pager li {
  background: #eae6d9;
  display: inline-block;
  margin: 0 0 0 2px;
  min-width: 30px;
  padding: 4px 10px;
  text-align: center;
  vertical-align: top;
}
#main .item-list .pager .pager-current {
  background: #00573d;
  padding: 4px 10px;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
#main .item-list .pager li:hover {
	background: #00573d;
}
#main .item-list .pager li:hover > a {
	color: #fff;
}
#main .item-list .pager a {
  color: #202021;
}
/* Archives List */
#block-views-news-archives-block-1 ul,
#block-views-news-archives-block-1 li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
#block-views-news-archives-block-1 li {
  margin: 20px 0;
}
#block-views-news-archives-block-1 li:first-child {
  margin-top: 0;
}
#block-views-news-archives-block-1 a {
  color: #202021;
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  text-transform: uppercase;
  -webkit-transform: all .3s ease;
  -moz-transform: all .3s ease;
  transform: all .3s ease;
}
#block-views-news-archives-block-1 a:hover {
  color: #cbb778;
}
/* Categories & Archives Banner */
body.page-mu-news-archives #banner-photo,
body.page-taxonomy-term #banner-photo {
  background: url("../img/page-banner.jpg") no-repeat 0 0;
}
body.page-mu-news-archives #main,
body.page-taxonomy-term #main {
  background: url("../img/page-background-audiencelandingpage.jpg") no-repeat 0 0;
}
/* Calendar Events Filter */
#block-block-13 {
	color: #202021;
}
#block-block-13 p {
	font-size: 14px;
	font-weight: 700;
	margin: 0 0 10px;
	text-transform: uppercase;
}
#block-block-13 strong {
	margin-right: 15px;
}
#block-block-13 .content a {
	background: #202021;
	color: #fff;
	display: inline-block;
	padding: 8px;
}
#block-block-13 .content a:hover {
	background: #00573d;
}
#no-upcoming-events {
  text-align: center;
}

/*------------
6. CALENDAR OF EVENTS
------------*/
#block-block-5 {
  display: none;
}
.view-calendar-of-events .views-row {
	background: #eae6d9;
	display: inline-block;
	font: 700 14px/18px "futura-pt", sans-serif;
	margin: 0 15px 15px 0;
	min-height: 435px;
	padding-bottom: 15px;
	position: relative;
	vertical-align: top;
	width: 300px;
}
.view-calendar-of-events .views-field-field-date,
.view-calendar-of-events .views-field-field-date-1,
.view-calendar-of-events .views-field-view-node {
	text-transform: uppercase;
}
.view-calendar-of-events .views-field-field-date-1,
.view-calendar-of-events .views-field-title,
.view-calendar-of-events .views-field-view-node {
	margin: 10px 25px;
}
.view-calendar-of-events a {
	color: #000;
}
.view-calendar-of-events .views-field-field-date {
	color: #fff;
	font-size: 28px;
	font-weight: 300;
	margin-bottom: 40px;
	padding: 20px 35px;
	position: relative;
	z-index: 1;
}
.view-calendar-of-events .views-field-field-date:after {
	content: '';
  position: absolute;
  left: 0;
  bottom: -15px;
  overflow: visible;
  width: 100%;
  height: 35px;
  z-index: -1;
  -webkit-transform: skewY(-6deg);
  -moz-transform: skewY(-6deg);
  -ms-transform: skewY(-6deg);
  -o-transform: skewY(-6deg);
  transform: skewY(-6deg);
}
.view-calendar-of-events .views-row:nth-child(5n+1) .views-field-field-date,
.view-calendar-of-events .views-row:nth-child(5n+1) .views-field-field-date:after {
	background: #cd2327; /* Pink */
}
.view-calendar-of-events .views-row:nth-child(5n+2) .views-field-field-date,
.view-calendar-of-events .views-row:nth-child(5n+2) .views-field-field-date:after {
	background: #8ccdd1; /* Light Blue */
}
.view-calendar-of-events .views-row:nth-child(5n+3) .views-field-field-date,
.view-calendar-of-events .views-row:nth-child(5n+3) .views-field-field-date:after {
	background: #1d3961; /* Dark Blue */
}
.view-calendar-of-events .views-row:nth-child(5n+4) .views-field-field-date,
.view-calendar-of-events .views-row:nth-child(5n+4) .views-field-field-date:after {
	background: #b0d136; /* Lime Green */
}
.view-calendar-of-events .views-row:nth-child(5n+5) .views-field-field-date,
.view-calendar-of-events .views-row:nth-child(5n+5) .views-field-field-date:after {
	background: #00a1c2; /* Teal */
}
.view-calendar-of-events .views-field-title a {
	font-size: 18px;
	line-height: 22px;
}
.view-calendar-of-events .views-field-view-node {
	position: absolute;
	bottom: 10px;
}
.view-calendar-of-events .views-field-view-node a {
	border-bottom: 2px solid #00573d;
	color: #00573d;
}
.view-calendar-of-events .views-field-view-node a:hover {
	border-color: #202021;
	color: #202021;
}

/*------------
7. INDIVIDUAL CALENDAR EVENT
------------*/
body.node-type-event .marquee {
	margin: 0 auto;
	width: 1050px;
}
body.node-type-event .node .flippy {
	display: none;
}
/* Events Header */
body.node-type-event .region-content {
	position: relative;
}
#block-views-calendar-event-header-block {
	background: #eae6d9;
	color: #202021;
	font: 700 20px/24px "futura-pt", sans-serif;
	height: 116px;
	position: relative;
}
#block-views-calendar-event-header-block a {
	color: #202021;
}
#block-views-calendar-event-header-block .views-field-title,
#block-views-calendar-event-header-block .views-field-nothing {
	display: inline-block;
	vertical-align: top;
}
#block-views-calendar-event-header-block .views-field-title {
  padding: 30px 0 0 75px;
  width: 300px;
}
#block-views-calendar-event-header-block .views-field-nothing:before {
  background: url("../img/angle-single-event.png") no-repeat 0 0;
  content: "";
  display: inline-block;;
  height: 116px;
  position: absolute;
  left: -77px;
  top: 0;
  width: 77px;
}
#block-views-calendar-event-header-block .views-field-nothing {
  background: #00573d;
  height: 100%;
  padding: 30px 65px 0 35px;
  position: absolute;
  right: 0;
  width: 390px;
}
#block-views-calendar-event-header-block .month-day,
#block-views-calendar-event-header-block .time {
	color: #fff;
	text-transform: uppercase;
}
#block-views-calendar-event-header-block .month-day {
	font: 300 34px/38px "futura-pt", sans-serif;
}
#block-views-calendar-event-header-block .time {
	font: 700 18px/22px "futura-pt", sans-serif;
}
/* Flippy Pager */
#block-flippy-flippy-pager-node-type-event {
	position: absolute;
	top: 135px;
	width: 100%;
}
#block-flippy-flippy-pager-node-type-event .flippy,
#block-flippy-flippy-pager-node-type-event .flippy li {
	padding: 0;
}
#block-flippy-flippy-pager-node-type-event .flippy li.prev a,
#block-flippy-flippy-pager-node-type-event .flippy li.next a {
	display: block;
	height: 33px;
	overflow: hidden;
	text-indent: -9999px;
}
#block-flippy-flippy-pager-node-type-event .flippy li.prev a:before,
#block-flippy-flippy-pager-node-type-event .flippy li.next a:before {
	background: url("../img/flippy-arrows.jpg") no-repeat 0 0;
	content: "";
	display: block;
	height: 34px;
	text-indent: -9999px;
	width: 33px;
}
#block-flippy-flippy-pager-node-type-event .flippy li.prev a:before {
  background-position: top left;
}
#block-flippy-flippy-pager-node-type-event .flippy li.next a:before {
  background-position: top right;
}
#block-flippy-flippy-pager-node-type-event .flippy li.prev {
	float: left;
}
#block-flippy-flippy-pager-node-type-event .flippy li.next {
	float: right;
}
/* Event Information */
body.node-type-event #block-system-main {
  background: #eae6d9;
  margin-top: 75px;
  min-height: 410px;
  padding: 40px 520px 40px 40px;
  position: relative;
}
body.node-type-event .field-name-field-location,
body.node-type-event .field-name-field-contact {
  display: inline-block;
  font-size: 18px;
  line-height: 26px;
  vertical-align: top;
}
body.node-type-event .field-name-field-location {
  width: 210px;
}
body.node-type-event .field-name-field-contact {
  margin-left: 20px;
  width: 160px;
}
body.node-type-event .field-label {
  font: 700 16px/20px "futura-pt", sans-serif;
  text-transform: uppercase;
}
body.node-type-event .field-name-body {
  margin-top: 40px;
}
body.node-type-event .field-name-field-image img {
  position: absolute;
  right: 0;
  top: 0;
}
/* Event Footer/Social Media */
#block-views-calendar-of-events-footer-block {
  margin-top: 30px;
}
#block-views-calendar-of-events-footer-block .sharethis {
  display: none;
}
#block-views-calendar-of-events-footer-block ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
#block-views-calendar-of-events-footer-block li {
  display: inline-block;
  vertical-align: top;
}
#block-views-calendar-of-events-footer-block .content a {
  color: #fff;
  display: block;
  font-size: 18px;
  font-weight: 300;
  margin-right: 10px;
  padding: 4px 8px;
  position: relative;
  width: 240px;
}
#block-views-calendar-of-events-footer-block .content a:after {
  background: #000;
  content: "l";
  display: inline-block;
  font-family: "methodist-university";
  font-size: 28px;
  height: 34px;
  line-height: 32px;
  position: absolute;
  text-align: center;
  top: 0;
  right: 0;
  width: 34px;
}
#block-views-calendar-of-events-footer-block a.calendar:after {
  content: "i";
}
#block-views-calendar-of-events-footer-block a.share {
  background: #9b3467;
}
#block-views-calendar-of-events-footer-block a.add {
  background: #009dd0;
  border: none;
  color: #fff !important;
  font-family: "futura-pt", sans-serif;
  padding: 4px 8px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
#block-views-calendar-of-events-footer-block a.calendar {
  background: #b0d136;
}
#block-views-calendar-of-events-footer-block .sharethis-wrapper {
  border: 1px solid #ddd;
  padding: 20px 10px;
  width: 240px;
}
#block-views-calendar-of-events-footer-block .addthisevent_dropdown {
  border: 1px solid #ddd;
  top: 36px;
  width: 240px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.stButton .stFb,
.stButton .stTwbutton,
.stButton .stMainServices {
  height: 25px !important;
}

/*------------
8. STUDENT SPOTLIGHT
------------*/
body.page-node-125 #main section {
  display: block;
  margin: 50px auto 0;
  width: 955px;
}
body.page-node-125 #main .wrapper .views-row {
  border-bottom: 1px solid #cbb778;
  margin-bottom: 50px;
  padding-bottom: 50px;
}
body.page-node-125 .article-image,
body.page-node-125 .article {
  display: inline-block;
  vertical-align: top;
}
body.page-node-125 .article {
  width: 75%;
}
body.page-node-125 .article-image {
  border: 3px solid #cbb778;
  display: inline-block;
  margin-right: 15px;
  padding: 8px;
}
body.page-node-125 .article h2,
body.page-node-125 .article h2 a {
  color: #202021;
  text-transform: none !important;
}
body.page-node-125 .article h2 {
  display: inline-block;
  margin-bottom: 0;
}
body.page-node-125 .views-field-body {
  
}
body.page-node-125 .read-more a {
  color: #00573d;
  display: block;
  font: 700 14px/18px "futura-pt", sans-serif;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
body.page-node-125 .read-more a:hover {
	color: #ffc423;
}

/*------------
9. INDIVIDUAL STUDENT SPOTLIGHT & INDIVIDUAL FACULTY
------------*/
body.node-type-student-spotlight .field-type-image,
body.node-type-faculty .faculty-thumbnail {
  border: 3px solid #cbb778;
  float: left;
  margin: 0 30px 30px 0;
  padding: 8px;
}
body.node-type-student-spotlight .field-name-field-sub-title,
body.node-type-faculty #main section h2 {
  font: 700 18px/22px "futura-pt", sans-serif;
}
body.node-type-faculty .position,
body.node-type-faculty .phone,
body.node-type-faculty .email,
body.node-type-faculty .office {
  display: inline-block;
  font: 500 18px/22px "futura-pt", sans-serif;
  margin: 0 15px 35px 0;
}
body.node-type-faculty .position,
body.node-type-faculty .phone,
body.node-type-faculty .email {
  display: inline-block;
  margin-right: 15px;
}
body.node-type-faculty .position:after,
body.node-type-faculty .phone:after,
body.node-type-faculty .email:after {
  color: #ddd;
  content: "/";
  display: inline-block;
  margin-left: 15px;
}
body.node-type-student-spotlight #block-system-main .flippy,
body.node-type-faculty #block-system-main .flippy {
  display: none;
}
body.node-type-faculty #main section h1 {
  margin-bottom: 0;
}
/* Flippy Pager */
#block-flippy-flippy-pager-node-type-hjr2lwgjb,
#block-flippy-flippy-pager-node-type-faculty {
  float: right;
  width: 75px;
}
#block-flippy-flippy-pager-node-type-hjr2lwgjb .flippy,
#block-flippy-flippy-pager-node-type-hjr2lwgjb .flippy li,
#block-flippy-flippy-pager-node-type-faculty .flippy,
#block-flippy-flippy-pager-node-type-faculty .flippy li {
	padding: 0;
}
#block-flippy-flippy-pager-node-type-hjr2lwgjb .flippy li.prev a,
#block-flippy-flippy-pager-node-type-hjr2lwgjb .flippy li.next a,
#block-flippy-flippy-pager-node-type-faculty .flippy li.prev a,
#block-flippy-flippy-pager-node-type-faculty .flippy li.next a {
	display: block;
	height: 33px;
	overflow: hidden;
	text-indent: -9999px;
	width: 33px;
}
#block-flippy-flippy-pager-node-type-hjr2lwgjb .flippy li.prev a:before,
#block-flippy-flippy-pager-node-type-hjr2lwgjb .flippy li.next a:before,
#block-flippy-flippy-pager-node-type-faculty .flippy li.prev a:before,
#block-flippy-flippy-pager-node-type-faculty .flippy li.next a:before {
	background: url("../img/flippy-arrows.jpg") no-repeat 0 0;
	content: "";
	display: block;
	height: 34px;
	text-indent: -9999px;
	width: 33px;
}
#block-flippy-flippy-pager-node-type-hjr2lwgjb .flippy li.prev a:before,
#block-flippy-flippy-pager-node-type-faculty .flippy li.prev a:before {
  background-position: top left;
}
#block-flippy-flippy-pager-node-type-hjr2lwgjb .flippy li.next a:before,
#block-flippy-flippy-pager-node-type-faculty .flippy li.next a:before {
  background-position: top right;
}
#block-flippy-flippy-pager-node-type-hjr2lwgjb .flippy li.prev,
#block-flippy-flippy-pager-node-type-faculty .flippy li.prev {
	float: left;
}
#block-flippy-flippy-pager-node-type-hjr2lwgjb .flippy li.next,
#block-flippy-flippy-pager-node-type-faculty .flippy li.next {
	float: right;
}

/*------------
10. STUDENT SPOTLIGHT CAROUSEL
------------*/
#owl-carousel-block-114 .owl-item {
  position: relative;
  width: 930px !important;
  -webkit-transform: none;
}
#owl-carousel-block-114 .owl-item:nth-child(12n+1),
#owl-carousel-block-114 .owl-item:nth-child(12n+1) .student-spotlight-info:after {
  background: #cd2327;
}
#owl-carousel-block-114 .owl-item:nth-child(12n+2),
#owl-carousel-block-114 .owl-item:nth-child(12n+2) .student-spotlight-info:after {
  background: #98B821;
}
#owl-carousel-block-114 .owl-item:nth-child(12n+3),
#owl-carousel-block-114 .owl-item:nth-child(12n+3) .student-spotlight-info:after {
  background: #1d3961;
}
#owl-carousel-block-114 .owl-item:nth-child(12n+4),
#owl-carousel-block-114 .owl-item:nth-child(12n+4) .student-spotlight-info:after {
  background: #971a2c;
}
#owl-carousel-block-114 .owl-item:nth-child(12n+5),
#owl-carousel-block-114 .owl-item:nth-child(12n+5) .student-spotlight-info:after {
  background: #8ccdd1;
}
#owl-carousel-block-114 .owl-item:nth-child(12n+6),
#owl-carousel-block-114 .owl-item:nth-child(12n+6) .student-spotlight-info:after {
  background: #9b3467;
}
#owl-carousel-block-114 .owl-item:nth-child(12n+7),
#owl-carousel-block-114 .owl-item:nth-child(12n+7) .student-spotlight-info:after {
  background: #d96c1f;
}
#owl-carousel-block-114 .owl-item:nth-child(12n+8),
#owl-carousel-block-114 .owl-item:nth-child(12n+8) .student-spotlight-info:after {
  background: #F5C946;
}
#owl-carousel-block-114 .owl-item:nth-child(12n+9),
#owl-carousel-block-114 .owl-item:nth-child(12n+9) .student-spotlight-info:after {
  background: #00a1c2;
}
#owl-carousel-block-114 .owl-item:nth-child(12n+10),
#owl-carousel-block-114 .owl-item:nth-child(12n+10) .student-spotlight-info:after {
  background: #b51c38;
}
#owl-carousel-block-114 .owl-item:nth-child(12n+11),
#owl-carousel-block-114 .owl-item:nth-child(12n+11) .student-spotlight-info:after {
  background: #009dd0;
}
#owl-carousel-block-114 .owl-item:nth-child(12n+12),
#owl-carousel-block-114 .owl-item:nth-child(12n+12) .student-spotlight-info:after {
  background: #2c2f76;
}
#owl-carousel-block-114 .student-spotlight-image,
#owl-carousel-block-114 .student-spotlight-info {
  display: inline-block;
  vertical-align: top;
}
#owl-carousel-block-114 .student-spotlight-info {
  color: #fff;
  font: 500 38px/42px "futura-pt", sans-serif;
  height: 275px;
  margin: 35px 0 35px 35px;
  position: relative;
  width: 375px;
  z-index: 10;
  -webkit-backface-visibility: hidden;
}
#owl-carousel-block-114 .student-spotlight-image {
  border-right: 10px solid #fff;
  right: 0;
  overflow: hidden;
  position: absolute;
}
#owl-carousel-block-114 .student-spotlight-image img {
  height: auto;
  width: 100%;
  -webkit-backface-visibility: hidden;
}
#owl-carousel-block-114 .student-spotlight-info:after {
  content: '';
  position: absolute;
  right: -70px;
  top: -35px;
  overflow: visible;
  width: 200px;
  height: 345px;
  z-index: 1;
  -webkit-transform: skewX(-15deg);
  -moz-transform: skewX(-15deg);
  -ms-transform: skewX(-15deg);
  -o-transform: skewX(-15deg);
  transform: skewX(-15deg);
}
#owl-carousel-block-114 .spotlight-header {
  position: relative;
  z-index: 5;
}
#owl-carousel-block-114 h2 {
  font-size: 16px;
  line-height: 20px;
  margin: 20px 0 15px;
  position: relative;
  z-index: 5;
}
#owl-carousel-block-114 h2 a {
  color: #fff;
}
#owl-carousel-block-114 p {
  font: 500 18px/24px "Crimson Text", serif;
  margin: 0;
  position: relative;
  z-index: 5;
}
#owl-carousel-block-114 p span {
  display: block;
  margin: 15px 0 25px;
}
#owl-carousel-block-114 p a {
  color: #ffc423;
  display: block;
  font: 700 14px/18px "futura-pt", sans-serif;
}
#owl-carousel-block-114 p a:hover {
  color: #fff;
}
#owl-carousel-block-114 .owl-controls {
  position: absolute;
  left: 50%;
  top: 135px;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
#owl-carousel-block-114 .owl-nav {
  margin: 0 auto;
  width: 1015px;
}
#owl-carousel-block-114 .owl-prev,
#owl-carousel-block-114 .owl-next {
  background: url("../img/spotlight-arrows.png") no-repeat 0 0;
  display: inline-block;
  height: 74px;
  text-indent: -9999px;
  width: 74px;
}
#owl-carousel-block-114 .owl-prev {
  
}
#owl-carousel-block-114 .owl-next {
  background-position: top right;
  float: right;
  margin-right: 10px
}

/*------------
11. DIRECTORY/FACULTY BLOCKS
------------*/
#preload-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}
.preloader {
  background: #fff;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99999;
}
.preloader .preloader-gif {
  display: block;
  margin: 100px auto 0;
  max-width: 66px;
  max-height: 66px;
  background: url('../img/loading.gif') no-repeat;
  background-size: 100%;
  width: 100%;
  height: 100%;
}
.view-directory {
  margin: 50px auto 0;
  width: 625px;
}
.view-directory .views-row,
#block-views-programs-block-1 .views-row,
#block-views-faculty-block .views-row {
  background: #eae6d9;
  display: inline-block;
  line-height: 18px;
  margin: 0 20px 20px 0;
  vertical-align: top;
  width: 300px;
}
.view-directory .views-row-even {
  margin-right: 0;
}
.view-directory .faculty-thumbnail,
.view-directory .faculty-wrapper,
#block-views-programs-block-1 .faculty-thumbnail,
#block-views-programs-block-1 .faculty-wrapper,
#block-views-faculty-block .faculty-thumbnail,
#block-views-faculty-block .faculty-wrapper {
  display: inline-block;
  vertical-align: top;
}
.view-directory .faculty-thumbnail,
#block-views-programs-block-1 .faculty-thumbnail,
#block-views-faculty-block .faculty-thumbnail {
  margin-right: 10px;
  width: 116px;
}
.view-directory .faculty-wrapper,
#block-views-programs-block-1 .faculty-wrapper,
#block-views-faculty-block .faculty-wrapper {
  padding-right: 10px;
  width: 170px;
}
.view-directory h2,
#block-views-programs-block-1 h2,
#block-views-faculty-block h2 {
	font-size: 18px !important;
  margin: 18px 0 5px;
}
.view-directory h2 a,
#block-views-programs-block-1 h2 a,
#block-views-faculty-block h2 a {
  color: #202021;
  text-transform: none;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.view-directory h2 a:hover,
#block-views-programs-block-1 h2 a:hover,
#block-views-faculty-block h2 a:hover {
	color: #cbb778;
}
.view-directory .view-content {
  border-bottom: 1px solid #cbb778;
  margin-bottom: 50px;
  padding-bottom: 50px;
}
#block-views-programs-block-1 {
	margin-top: 50px;
}
#block-views-helpful-links-sidebar-block .content {
  background: transparent;
  text-align: left;
}
.faculty {
	background: #eae6d9;
	margin: 0 10px 10px 0;
	width: 320px;
}
.faculty a,
#block-views-programs-block-1 h2 a,
#block-views-faculty-block h2 a {
	color: #00573d;
}
.faculty .faculty-thumbnail,
.faculty .faculty-wrapper {
	display: inline-block;
	vertical-align: top;
	
}
.faculty .faculty-thumbnail {
	max-width: 115px;
}
.faculty .faculty-wrapper {
	margin-left: 10px;
	max-width: 155px;
}
.faculty h2 {
	font-size: 18px !important;
	line-height: 18px;
	margin-bottom: 0;
}
.faculty .position,
.faculty .phone-number,
.faculty .email-address,
#block-views-programs-block-1 .position,
#block-views-programs-block-1 .phone-number,
#block-views-programs-block-1 .email-address,
#block-views-faculty-block .position,
#block-views-faculty-block .phone-number,
#block-views-faculty-block .email-address {
	font: 500 15px/18px "futura-pt", sans-serif;
	margin: 5px 0;
}

/*------------
12. PROGRAMS
------------*/
body.page-node-28 #main section,
body.page-node-56 #main section {
  margin-top: 0;
  width: 1000px;
}
#block-views-programs-block-2 .view-header {
  display: none;
}
.program {
  background: #eae6d9;
  margin: 10px;
  min-height: 245px;
  width: 300px;
}
.program-title {
  margin-bottom: 50px;
  padding: 20px 25px 35px;
  position: relative
}
.program-title:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -15px;
  overflow: visible;
  width: 100%;
  height: 35px;
  z-index: 1;
  -webkit-transform: skewY(-5deg);
  -moz-transform: skewY(-5deg);
  -ms-transform: skewY(-5deg);
  -o-transform: skewY(-5deg);
  transform: skewY(-5deg);
}
.program:nth-child(9n+1) .program-title,
.program:nth-child(9n+1) .program-title:after {
  background: #cd2327;
}
.program:nth-child(9n+2) .program-title,
.program:nth-child(9n+2) .program-title:after {
  background: #00a1c2;
}
.program:nth-child(9n+3) .program-title,
.program:nth-child(9n+3) .program-title:after {
  background: #1d3961;
}
.program:nth-child(9n+4) .program-title,
.program:nth-child(9n+4) .program-title:after {
	background: #b0d136;
}
.program:nth-child(9n+5) .program-title,
.program:nth-child(9n+5) .program-title:after {
  background: #971a2c;
}
.program:nth-child(9n+6) .program-title,
.program:nth-child(9n+6) .program-title:after {
  background: #8ccdd1;
}
.program:nth-child(9n+7) .program-title,
.program:nth-child(9n+7) .program-title:after {
  background: #d96c1f;
}
.program:nth-child(9n+8) .program-title,
.program:nth-child(9n+8) .program-title:after {
  background: #F5C946;
}
.program:nth-child(9n+9) .program-title,
.program:nth-child(9n+9) .program-title:after {
  background: #00a1c2;
}
.program-degrees {
	padding: 0 25px 10px;
}
#main .program-title h3 a {
  color: #fff;
  font-size: 22px;
  line-height: 24px;
}
.program-degrees p {
  color: #202021;
}
.program-title h3 {
  margin: 0;
  position: relative;
  z-index: 2;
}
.program-degrees p,
.program-degrees a {
  font: 700 14px/18px "futura-pt", sans-serif;
  text-transform: uppercase;
}
.program-degrees a {
	bottom: 20px;
  border-bottom: 2px solid #00573d;
  color: #00573d;
  position: absolute;
}
.program-degrees a:hover {
	border-color: #202021;
	color: #202021;
}
/* Individual Degree */
body.node-type-degree #main section,
#block-views-curriculum-block table  {
  width: 100%;
}
#block-views-curriculum-block {
  margin-top: 75px;
}
#block-views-curriculum-block table,
#block-views-curriculum-block tbody {
  border: none;
}
#block-views-curriculum-block .views-row {
  padding: 35px 60px 0;
}
#block-views-curriculum-block .views-row-odd {
  background: #eae6d9;
}
#block-views-curriculum-block tr {
  line-height: 30px;
}
#block-views-curriculum-block tr:last-child {
  font: 700 16px/20px "futura-pt", sans-serif;
  line-height: 100px;
}
#block-views-curriculum-block td:first-child {
  width: 150px;
}
#block-views-curriculum-block td:last-child {
  width: 100px;
}
#block-views-curriculum-block a {
  color: #00573d;
  font: 700 14px/18px "futura-pt", sans-serif;
  letter-spacing: 1px;
  text-decoration: underline;
  text-transform: uppercase;
}
#block-views-curriculum-block a:hover {
  color: #00a1c2;
}
body.node-type-degree #main section p:last-child {
  margin-top: 35px;
}
/* Individual Course */
body.node-type-course #main section {
  width: 100%;
}
#block-views-course-helpful-links-block,
#block-views-faculty-block {
	margin-top: 75px;
}
#block-views-hours-block {
  background: #eae6d9;
  display: inline-block;
  margin: 0 40px 0 0;
  padding: 25px 35px 35px;
  vertical-align: top;
  width: 265px;
}
#block-views-hours-block h3 {
	margin: 10px 0
}
#block-views-hours-block p {
	margin: 0;
}
#block-views-hours-block ul {
	list-style-type: none;
	list-style-image: none;
	margin: 0;
	padding: 0;
}
body.node-type-course #block-system-main {
  display: inline-block;
  margin-top: 20px;
  width: 675px;
}

/*------------
13. SUBFOOTER LATEST NEWS & UPCOMING EVENTS
------------*/
#block-views-73eaf847742f7cc1203ed7a9c8a0c97f {
	display: block;
}
#block-views-d8d5dbb4844d056f879a60c2d46cea42 {
	display: none;
}
#subfooter {
  position: relative;
}
#block-block-4,
#block-block-8 {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 5;
}
#block-block-4 .content,
#block-block-8 .content {
  color: #fff;
	font: normal 15px/19px "futura-pt", sans-serif;
	height: 111px;
	margin-right: 300px;
	position: relative;
	width: auto;
}
#block-block-4 .content {
	background: #04589f;
}
#block-block-8 .content {
  background: #00573d;
}
#block-block-4 .content:after,
#block-block-8 .content:after {
  content: "";
  display: block;
  height: 111px;
  position: absolute;
  right: -85px;
  width: 86px;
}
#block-block-4 .content:after {
  background: url("../img/angle-latest-news-header.png") no-repeat 0 0;
}
#block-block-8 .content:after {
  background: url("../img/angle-upcoming-events-header.png") no-repeat 0 0;
}
#block-block-4 .latest-news-wrapper,
#block-block-8 .upcoming-events-wrapper {
	left: 50%;
	margin-left: -320px;
	padding: 45px 0;
	position: absolute;
	top: 0;
	width: 800px;
	z-index: 100;
}
#block-block-4 .sub-footer-title,
#block-block-8 .sub-footer-title  {
  float: left;
  font-size: 50px;
  font-weight: 300;
  text-transform: uppercase;
}
#block-block-4 .view-more,
#block-block-8 .view-more {
  float: right;
}
#block-views-latest-news-block {
  background: url("../img/background-news.jpg") no-repeat top center;
}
#block-views-upcoming-events-block {
  background: url("../img/background-events.jpg") no-repeat top center;
}
#block-views-latest-news-block,
#block-views-upcoming-events-block {
  background-size: cover;
}
#block-views-latest-news-block .content,
#block-views-upcoming-events-block .content {
  margin: 0 auto;
  padding: 200px 0 100px;
  width: 940px;
}
#block-views-latest-news-block .views-row:after,
#block-views-upcoming-events-block .views-row:after {
  background: url("../img/angle-latest-news.png") no-repeat 0 0;
  content: '';
  display: block;
  height: 54px;
  width: auto;
}
#block-views-latest-news-block .views-row,
#block-views-upcoming-events-block .views-row {
  color: #fff;
  display: inline-block;
  margin-right: 20px;
  position: relative;
  vertical-align: top;
  width: 295px;
}
#block-views-latest-news-block .views-field,
#block-views-upcoming-events-block .views-field {
  background-color: rgba(0,0,0,0.85);
  min-height: 415px;
  padding: 50px 25px;
  position: relative;
}
#block-views-latest-news-block .views-row:last-child,
#block-views-upcoming-events-block .views-row:last-child {
  margin-right: 0;
}
#block-views-latest-news-block a,
#block-views-upcoming-events-block a {
  color: #fff;
}
#block-views-latest-news-block .post-date,
#block-views-latest-news-block .article,
#block-views-upcoming-events-block .post-date,
#block-views-upcoming-events-block .article {
  display: inline-block;
  vertical-align: top;
}
#block-views-latest-news-block .post-date,
#block-views-upcoming-events-block .post-date {
  font: 300 32px/36px "futura-pt", sans-serif;
  margin-right: 15px;
  text-align: center;
  text-transform: uppercase;
  width: 75px;
}
#block-views-latest-news-block .post-date,
#block-views-upcoming-events-block .date-display-single,
#block-views-upcoming-events-block .date-display-start,
#block-views-upcoming-events-block .date-display-end {
  border: 2px solid #fff;
  display: block;
  padding: 15px 10px;
}
#block-views-latest-news-block .post-date {
  display: inline-block;
}
#block-views-latest-news-block .post-date::first-line,
#block-views-upcoming-events-block .date-display-single::first-line,
#block-views-upcoming-events-block .date-display-start::first-line,
#block-views-upcoming-events-block .date-display-end::first-line {
  font: 700 18px/22px "futura-pt", sans-serif;
}
#block-views-latest-news-block .article,
#block-views-upcoming-events-block .article {
  width: 150px;
}
#block-views-latest-news-block h2,
#block-views-upcoming-events-block h2 {
  font-size: 20px;
  line-height: 24px;
  margin-top: 0;
}
#block-block-4 .view-more,
#block-block-8 .view-more,
#block-views-latest-news-block h2 a,
#block-views-latest-news-block .read-more a,
#block-views-upcoming-events-block h2 a,
#block-views-upcoming-events-block .read-more a {
  color: #ffc423;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
#block-views-latest-news-block h2 a:hover,
#block-views-latest-news-block .read-more a:hover,
#block-views-upcoming-events-block h2 a:hover,
#block-views-upcoming-events-block .read-more a:hover {
	color: #fff;
}
#block-block-4 .view-more,
#block-block-8 .view-more,
#block-views-latest-news-block .read-more a,
#block-views-upcoming-events-block .read-more a {
  border-bottom: 2px solid #ffc423;
  font: 700 14px/18px "futura-pt", sans-serif;
  text-transform: uppercase;
}
#block-views-latest-news-block .read-more a,
#block-views-upcoming-events-block .read-more a {
  bottom: 25px;
  position: absolute;
}
#block-block-4 .view-more:hover,
#block-block-8 .view-more:hover,
#block-views-latest-news-block .read-more a:hover,
#block-views-upcoming-events-block .read-more a:hover {
  color: #fff;
  border-bottom: 2px solid #fff;
}

/*------------
14. FOOTER
------------*/
footer {
  background: #202021;
  color: #fff;
  padding: 65px 0 50px;
}
footer a {
  color: #fff;
}
footer p {
  margin-top: 0;
}
footer .bottom-wrapper {
  margin: 0 auto;
  width: 940px;
}
.footer-first-column,
.footer-second-column,
.footer-third-column,
.footer-fourth-column {
  border-right: 1px solid #cbb778;
  display: inline-block;
  min-height: 200px;
  vertical-align: top;
}
.footer-first-column,
.footer-second-column,
.footer-third-column,
.footer-fourth-column {
  width: 220px;
}
.footer-first-column,
.footer-second-column,
.footer-third-column {
  margin-right: 15px;
}
.footer-fourth-column {
  border-right: none;
  text-align: center;
}
#block-menu-block-2 ul,
#block-menu-block-2 li {
  margin: 0;
  padding: 0;
}
#block-menu-block-2 li {
  list-style-image: none;
  list-style-type: none;
  padding-bottom: 8px;
}
#block-menu-block-2 a {
  color: #fff;
  font: bold 12px/16px "futura-pt", sans-serif;
  text-transform: uppercase;
}
#block-menu-block-2 a:hover {
  color: #cbb778;
}
#block-block-1 {
  font: normal 18px/22px "Crimson Text", serif;
}
#block-block-2 p {
  font: bold 14px/18px "futura-pt", sans-serif;
  text-transform: uppercase;
}
#block-block-2 a {
  color: #cbb778;
  font-size: 32px;
  margin-right: 22px
}
.copyright {
  margin-top: 65px;
  text-align: center;
}
.copyright p {
  font: normal 12px/16px "futura-pt", sans-serif;
  margin: 0;
}

/*------------
15. HOME
------------*/
body.front header {
	height: 720px;
}
body.front #stage {
	display: block;
  height: 670px;
  left: 50%;
  margin: 0 auto;
  position: absolute;
  top: 50px;
  width: 1600px;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
body.front #logo-wrapper,
body.front #home-shapes-wrapper,
body.front #slider-wrapper {
	left: 0;
	position: absolute;
	top: 0;
}
body.front #logo-wrapper {
	left: 325px;
	top: 25px;
  z-index: 10;
}
body.front #home-logo {
	background-image: url("../img/logo.png");
	background-repeat: no-repeat;
	display: block;
	height: 126px;
	text-indent: -9999px;
	width: 170px;
}
body.front #home-shapes-wrapper {
  z-index: 5;
}
body.front #slider-wrapper {
	height: 670px;
	width: 1600px;
  z-index: 1;
}
body.front #home-shapes {
  background: url("../img/home-shapes.png") no-repeat 0 0;
  height: 670px;
  position: relative;
  width: 686px;
  z-index: 10;
}

.flexslider {
  background: transparent;
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}
.flexslider .slides img {
  height: auto;
}
header .flexslider .slides > li {
  height: 670px;
  position: relative;
}
#block-views-home-page-slideshow-block {
  display: block;
  height: auto;
  left: 50%;
  margin: 0 auto;
  position: absolute;
  top: 0;
  width: 1600px;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
#block-views-home-page-slideshow-block .slide-title {
  bottom: 100px;
  color: #fff;
  font: 300 56px/58px "futura-pt", sans-serif;
  left: 700px;
  position: absolute;
  text-transform: uppercase;
  width: 550px;
}
#block-views-home-page-slideshow-block .button.bracket {
  bottom: 100px;
  position: absolute;
  right: 200px;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
#block-views-home-page-slideshow-block .button.bracket:hover {
  color: #ffc423;
}
body.front #marquee-wrapper {
  color: #fff;  
  height: auto;
  margin-top: -75px;
  position: relative;
  z-index: 5;
}
body.front #marquee-wrapper a {
  color: #00573d;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
body.front #marquee-wrapper a:hover {
  color: #fff;
}
#block-views-front-page-section-block {
  background: transparent url('../img/background-sections.png') no-repeat top center;
  height: 317px;
  position: relative;
  overflow: hidden;
}
#block-views-front-page-section-block:before {
	content: "";
	display: block;
	height: 320px;
	width: 10000px	;
	background: #cbb778;
	position: absolute;
	top: 0;
	right: 50%;
	z-index: -1;
}
#block-views-front-page-section-block:after {
	content: "";
	display: block;
	height: 72px;
	width: 10000px	;
	background: #fff;
	position: absolute;
	top: 0;
	right: 50%;
	z-index: -1;
}
#block-views-front-page-section-block .views-field-nothing .field-content {
  display: block;
  margin: 0 auto;
  padding: 30px;
  position: relative;
  width: 1050px;
}
#block-views-front-page-section-block .trimmed {
  left: 385px;
  position: absolute;
  width: 470px;
}
#block-views-front-page-section-block .views-field-title {
  background: #fff;
  color: #00573d;
  font-size: 13px;
  font-weight: 700;
  height: 72px;
  left: 50%;
  padding: 15px 0 0;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  top: 0;
  width: 125px;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
#block-views-front-page-section-block .views-field-nothing img {
  border: 2px solid #fff;
  display: block;
  height: auto;
  left: 50%;
  margin-left: -500px;
  padding: 8px;
  position: absolute;
  top: 30px;
  width: auto;
}
#block-views-front-page-section-block .views-field-nothing p {
  font: 500 18px/26px "Crimson Text", serif;
}
#block-views-front-page-section-block .views-field-nothing .button.bracket.white {
  margin: 20px 0 0;
}
#block-views-front-page-section-block .views-field-title:hover {
  background: #cbb778;
  color: #fff;
  cursor: pointer;
}
#block-views-front-page-section-block .views-field-title::first-line {
  font-size: 18px;
}
#block-views-front-page-section-block .views-row-1 .views-field-title {
  margin-left: -480px;
}
#block-views-front-page-section-block .views-row-2 .views-field-title {
  margin-left: -355px;
}
#block-views-front-page-section-block .views-row-3 .views-field-title {
  margin-left: -230px;
}
#block-views-front-page-section-block .views-row-4 .views-field-title {
  margin-left: -105px;
}
#block-views-front-page-section-block .views-row-5 .views-field-title {
  margin-left: 20px;
}
#block-views-front-page-section-block .views-row-6 .views-field-title {
  margin-left: 145px;
}
#block-views-front-page-section-block .views-row-7 .views-field-title {
  margin-left: 270px;
}
#block-views-front-page-section-block .views-row-8 .views-field-title {
  margin-left: 395px;
}
#block-views-front-page-section-block .views-field-title.active {
  background: #cbb778;
  color: #fff;
}
#block-views-front-page-section-block .views-field-nothing {
  display: none;
  position: relative;
  top: 70px;
  width: 100%;
  z-index: 1;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#block-views-front-page-section-block .views-field-nothing.active {
  display: block;
}

/* Home - Sidebar */
body.front aside.sidebar {
  margin: 0 0 0 70px;
  width: 300px;
}
#block-views-view-our-programs-block:before,
#block-views-latest-news-block-1:before {
  content: '';
  height: 50px;
  left: 0;
  overflow: visible;
  position: absolute;
  width: 100%;
  z-index: 1;
  -webkit-transform: skewY(-2deg);
  -moz-transform: skewY(-2deg);
  -ms-transform: skewY(-2deg);
  -o-transform: skewY(-8deg);
  transform: skewY(-8deg);
}
#block-views-view-our-programs-block {
  background: #ffc423;
  color: #fff;
  font: 400 18px/22px "futura-pt", sans-serif;
  margin-bottom: 25px;
  position: relative;
}
#block-views-view-our-programs-block h2 {
  color: #202021;
  font-size: 36px;
  line-height: 36px;
  font-weight: 300;
  margin: 0;
  padding: 15px 25px 0;
  position: relative;
  text-transform: uppercase;
  z-index: 2;
}
#block-views-view-our-programs-block:before {
  background: #ffc423;
  top: 60px;
}
#block-views-view-our-programs-block .content {
  background: #00573d;
  margin: 0;
  padding: 50px 25px 25px;
  text-align: left;
}
#block-views-view-our-programs-block .view-content {
  margin-top: 25px;
}
#block-views-view-our-programs-block .view-content:before {
  color: #fff;
  content: "Choose a program";
  display: block;
  font-weight: bold;
}
#block-views-view-our-programs-block .content a {
  color: #fff;
  display: block;
  font-size: 16px;
  padding: 5px;
}
#block-views-view-our-programs-block .content a:hover {
  color: #ffc423;
}
#block-views-view-our-programs-block .views-row-even {
  background-color: #006c4c;
}
#block-views-view-our-programs-block .views-exposed-form .views-exposed-widget {
  float: none;
  padding: 0;
}
#block-views-view-our-programs-block .view-empty {
  display: none;
}
#block-views-view-our-programs-block select {
  background: #cbb778;
  border: none;
  color: #fff;
  font-size: 14px;
  margin: 10px 0 0;
  padding: 10px;
  width: 100%;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
#block-views-latest-news-block-1 .view-header {
  background: #0d4b8c;
  margin-bottom: 0;
  position: relative;
}
#block-views-latest-news-block-1:before {
  background: #0d4b8c;
  top: 30px;
}
#block-views-latest-news-block-1 > .content {
  background: transparent;
  margin: 0;
  text-align: left;
}
#block-views-latest-news-block-1 p {
  color: #fff;
  font: 400 36px/40px "futura-pt", sans-serif;
  margin: 0;
  padding: 18px 25px 0;
  position: relative;
  text-transform: uppercase;
  z-index: 2;
}
#block-views-latest-news-block-1 {
  background: #eae6d9;
  position: relative;
}
#block-views-latest-news-block-1 .post-date {
  border-top: 1px solid #dcd1b7;
  padding: 20px 20px 0;
}
#block-views-latest-news-block-1 .article {
  padding: 0 20px 20px;
}
#block-views-latest-news-block-1 .post-date,
#block-views-latest-news-block-1 .read-more a {
  font: 700 14px/18px "futura-pt", sans-serif;
  text-transform: uppercase
}
#block-views-latest-news-block-1 .post-title {
  font: 500 16px/20px "Crimson Text", serif;
  margin: 10px 0;
  text-transform: none;
}
#block-views-latest-news-block-1 .post-title a {
  color: #222;
}
#block-views-latest-news-block-1 .read-more a {
  border-bottom: 2px solid #00573d;
  color: #00573d;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
#block-views-latest-news-block-1 .read-more a:hover {
  color: #202021;
}

/* Home - Main */
body.front #main {
  padding: 55px 0 75px;
}
body.front #main section {
  margin-top: 20px;
}

/*------------
16. SEARCH
------------*/
body.page-search #main section {
  width: 100%;
}
body.page-search .search-advanced {
  display: none;
}
body.page-search .search-form {
  margin: 0 auto 50px;
  width: 700px;
}
body.page-search .search-form label {
  color: #00573d;
  display: block;
  font: 100 52px/56px "futura-pt", sans-serif;
  margin-bottom: 25px;
  text-align: center;
  text-transform: uppercase;
}
body.page-search .search-form input {
  margin-right: 15px;
  padding: 10px;
  width: 500px;
}
/*
body.page-search .form-item input:focus,
body.page-search .form-item input:active {
	outline: none;
}
*/
body.page-search .search-form input[type=submit] {
  background: url("../img/button-brackets.png") no-repeat 0 0;
  border: none;
  color: #00573d;
  font: 700 16px/20px "futura-pt", sans-serif;
  height: 41px;
  min-width: 0;
  outline: none;
  padding: 10px;
  text-align: center;
  text-transform: uppercase;
  width: 146px;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
body.page-search .search-form input[type=submit]:hover {
  color: #ffc423;
}
body.page-search .search-results a {
  color: #00573d;
}
body.page-search .search-results a:hover {
  color: #ffc423;
}
body.page-search #main section ol,
body.page-search #main section ul {
  margin: 0;
  padding: 0;
}
body.page-search .search-results li {
  border-top: 2px solid #eee;
  margin: 30px 0 0;
  padding: 0 25px;
}
body.page-search .search-results .search-snippet-info {
  padding-left: 0;
}
body.page-search .search-results li:first-child {
  margin-top: 0;
}

/*------------
17. WEBFORM
------------*/
body.node-type-webform #main section {
	width: 100%;
}
body.node-type-webform .field-name-body {
	text-align: center;
}
body.node-type-webform form {
	margin: 0 auto;
	width: 515px;
}
body.node-type-webform input {
	border: 1px solid #ccc;
	color: #555;
	padding: 10px;
}
body.node-type-webform input:focus,
body.node-type-webform textarea:focus {
	border: 1px solid #cbb778;
}
body.node-type-webform textarea {
	border-color: #CCC;
}
body.node-type-webform .form-item {
	margin: 35px 0;
}
body.node-type-webform .form-item .form-item {
	margin: 10px 0;
}
body.node-type-webform input[type="submit"] {
	background: url("../img/button-brackets.png") no-repeat 0 0;
	border: none;
	color: #00573d;
	font: 700 16px/20px "futura-pt", sans-serif;
	height: 41px;
	padding: 10px;
	text-align: center;
	text-transform: uppercase;
	width: 146px;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}
body.node-type-webform input[type="submit"]:hover {
	color: #ffc423;
}

@media only screen and (max-width: 1390px) {
  body.page-mu-events #marquee-wrapper:after,
  body.page-node-129 #marquee-wrapper:after {
    border-top: 200px solid transparent;
  }
  .search-wrapper p,
  #block-block-13 p {
    margin: 0;
  }
  .search-wrapper strong,
  #block-block-13 strong {
    display: block;
    margin: 0 0 5px;
  }
  .search-wrapper a,
  #block-block-13 a {
    font-size: 11px;
    padding: 4px;
  }
}

@media only screen and (max-width: 1215px) {
	#block-system-main-menu li > a {
		font-size: 12px;
		line-height: 16px;
		padding: 15px 10px;
	}
	
	body.front #block-views-home-page-slideshow-block .slide-title {
		bottom: 200px;
	}
	body.front #block-views-home-page-slideshow-block .button.bracket {
		left: 700px;
		right: auto;
	}
	body.page-node-28 .search-wrapper,
	body.page-mu-events .marquee,
	body.page-node-129 .marquee,
	body.page-node-56 .search-wrapper {
	  min-width: 775px;
	}
}

@media only screen and (max-width: 1050px) {
	#page-title-wrapper {
  	left: 425px;
	}
  .breadcrumb-wrapper {
    margin-right: 200px;
  }
  #main .wrapper {
    margin: 0 auto;
    width: 955px;
  }
  aside.sidebar {
    margin-right: 20px;
    width: 285px;
  }
  #main section {
    width: 620px;
  }
  body.page-node-127 .article {
	  width: 400px;
  }
  
  /* Home Page */
  body.front aside.sidebar {
    margin: 0 0 0 30px;
  }
	
	/*------------
  13. SUBFOOTER LATEST NEWS & UPCOMING EVENTS
  ------------*/
	#owl-carousel-block-114 .owl-controls {
  	display: none;
	}
	#block-block-4 .content,
	#block-block-8 .content {
  	margin-right: 100px;
	}
	#block-views-latest-news-block .content,
	#block-views-upcoming-events-block .content {
  	width: 100%;
	}
	#block-block-4 .latest-news-wrapper,
	#block-block-8 .upcoming-events-wrapper {
  	width: auto;
	}
	#block-views-latest-news-block .views-row,
	#block-views-upcoming-events-block .views-row {
  	margin: 0 0 0 15px;
  	width: 31%;
	}
	#block-views-latest-news-block .views-row:after,
	#block-views-upcoming-events-block .views-row:after {
  	width: auto;
	}
	
  /*------------
	14. FOOTER
	------------*/
  footer .bottom-wrapper {
    width: 840px;
  }
  .footer-first-column,
  .footer-second-column,
  .footer-third-column,
  .footer-fourth-column {
    width: 195px;
  }
}