/*!
 * 
 * Built for MNSU.  
 * Authors: Lynn Sessions
 * 
 */

/* ---------------------------------------------------------------------
 Modern Styles
------------------------------------------------------------------------ */
/* ---------------------------------------------------------------------
RESET CSS (thanks Eric Meyer)
------------------------------------------------------------------------ */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-weight: inherit;
  font-style: inherit;
  font-family: inherit;
  vertical-align: baseline; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

:focus {
  outline: 0; }

html {
  overflow-y: scroll;
  /* Always show a vertical scrollbar, even when there is no scrolling */ }

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

/* ---------------------------------------------------------------------
 HTML5 Element Reset
------------------------------------------------------------------------ */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, main {
  display: block; }

audio, canvas, video, progress, picture {
  display: inline-block; }

template {
  display: none; }

/* ---------------------------------------------------------------------
 Form Reset Styles
------------------------------------------------------------------------ */
input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration, input[type="search"]::-webkit-search-results-button, input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance: none; }

input[type="search"] {
  -webkit-appearance: none;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box; }

textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical; }

::-moz-focus-inner {
  border: 0;
  padding: 0; }

/* ---------------------------------------------------------------------
 MNSU-specific Design // Lynn Sessions
------------------------------------------------------------------------ */

html {}

body {
	color: #666666;
	font: 14px/1 'Myriad Pro', Arial, Helvetica, sans-serif;
}

input, 
textarea {
	font: 14px/1 'Myriad Pro', Arial, Helvetica, sans-serif;
}

a {
	color: #2687bf;
	text-decoration: none;
	transition: color .5s;
}

a:hover {
	color: #461c8c;
}

p {
	line-height: 1.5;
}

/* ---------------------------------------------------------------------
 header
------------------------------------------------------------------------ */

.header {
	height: 100px;
	position: relative;
	background: #ca3333;
	background: -moz-linear-gradient(top,  #ca3333 0%, #a71010 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ca3333), color-stop(100%,#a71010));
	background: -webkit-linear-gradient(top,  #ca3333 0%,#a71010 100%);
	background: -o-linear-gradient(top,  #ca3333 0%,#a71010 100%);
	background: -ms-linear-gradient(top,  #ca3333 0%,#a71010 100%);
	background: linear-gradient(to bottom,  #ca3333 0%,#a71010 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ca3333', endColorstr='#a71010',GradientType=0 );
	z-index: 300;
}

.header-logo {
	height: 148px;
	width: 354px;
	position: absolute;
	top: 10px;
	left: 0;
	background: url('../images/mainlogo.png') no-repeat;
}

.header-logo-accessText {
	display: block;
	width: 0;
	height: 0;
	overflow: hidden;
}

.header-nav {
	position: absolute;
	right: 0;
	top: 40px;
	font-size: 20px;
}

.header-nav-item {}

.header-nav-item-link {
	text-decoration: none;
	color: #ffffff;
	text-shadow: 2px 2px 4px #2b2b2b;
}

.header-nav-item-link:hover {
	color: #ffa9a9;
}

/* ---------------------------------------------------------------------
Headings
------------------------------------------------------------------------ */

.hdg {
	color: #494949;
}

.hdg_white {
	color: #ffffff;
}

.hdg_1 {
	font-size: 30px;
}

.hdg_2 {
	font-size: 22px;
}

.hdg_3 {
	font-size: 18px;
}

.hdg_4 {
	font-size: 14px;
}

.hdg_5 {
	font-size: 12px;
}

.hdg_caps {
	text-transform: uppercase;
}

.hdg_bold {
	font-weight: bold;
}

.hdg_italic {
	font-style: italic;
}

.hdg_lighter {
	color: #8a8989;
}

/* ---------------------------------------------------------------------
 Footer
------------------------------------------------------------------------ */

.footer {
	padding: 40px 0 20px;
	box-sizing: border-box;
	position: relative;
	min-height: 282px;
	background: #ffffff;
	background: -moz-linear-gradient(top,  #ffffff 0%, #f0f0f0 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#f0f0f0));
	background: -webkit-linear-gradient(top,  #ffffff 0%,#f0f0f0 100%);
	background: -o-linear-gradient(top,  #ffffff 0%,#f0f0f0 100%);
	background: -ms-linear-gradient(top,  #ffffff 0%,#f0f0f0 100%);
	background: linear-gradient(to bottom,  #ffffff 0%,#f0f0f0 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f0f0f0',GradientType=0 );
}

.footer:after {
	content: "";
	width: 234px;
	height: 256px;
	position: absolute;
	bottom: 0;
	right: 30px;
	background: url('../images/footer-shadow.png') no-repeat;
} 

.footer-about-hd {
	height: 121px;
	margin-bottom: 10px;
	background: url('../images/mainlogo-wo-shadow.png') no-repeat;
}

.footer-about-hd-accessText {
	display: block;
	width: 0;
	height: 0;
	overflow: hidden;
}

.footer-about-bd {
	margin-bottom: 20px;
} 

/* ---------------------------------------------------------------------
Horizontal List
------------------------------------------------------------------------ */
.hList {
    overflow: hidden;
    *zoom: 1; /* ie6-7 float clearing */
}

.hList > * { float: left; }

/* horizontal spacing extensions */
.hList_tight > * + * { margin-left: 8px; }
.hList_std > * + * { margin-left: 16px; }
.hList_loose > * + * { margin-left: 24px; }

/* adds vertical pipes between list elements */
.hList_divided > * + * {
    margin-left: 12px;
    padding-left: 12px;
    border-left: 1px solid;
}

/* ---------------------------------------------------------------------
 Run-on List
------------------------------------------------------------------------ */

.runList {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}

.runList > * {
	flex: 0 1 auto;
	margin: 0 7px 8px 0;
}

/* ---------------------------------------------------------------------
 Icon Item
------------------------------------------------------------------------ */

.iconItem {
	border: 1px solid #ca3333;
}

.iconItem > * {
	display: inline-block;
}

.iconItem-icon {
	padding: 3px 6px;
	background: #ca3333;
	color: #ffffff;
	cursor: pointer;
}

.iconItem-item {
	padding: 3px 4px 3px 2px;
}
	

/* ---------------------------------------------------------------------
wrapper
------------------------------------------------------------------------ */

.wrapper {
	width: 960px;
	margin: 0 auto;
	position: relative;
}

/* ---------------------------------------------------------------------
carousel
------------------------------------------------------------------------ */

.carousel {
	position: relative;
	z-index: 100;
}

.carousel-content {
	max-width: 100%;
	height: 500px;
	background: url('../images/cover1.png') no-repeat top center; 
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

.carousel-note {
	height: 70px;
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	text-align: center;	
	line-height: 70px;
	font-size: 20px;
	color: #ffffff;
	background: -moz-linear-gradient(top,  rgba(148,148,148,0.8) 0%, rgba(0,0,0,0.8) 12%, rgba(0,0,0,0.8) 49%, rgba(0,0,0,0.8) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(148,148,148,0.8)), color-stop(12%,rgba(0,0,0,0.8)), color-stop(49%,rgba(0,0,0,0.8)), color-stop(100%,rgba(0,0,0,0.8)));
	background: -webkit-linear-gradient(top,  rgba(148,148,148,0.8) 0%,rgba(0,0,0,0.8) 12%,rgba(0,0,0,0.8) 49%,rgba(0,0,0,0.8) 100%);
	background: -o-linear-gradient(top,  rgba(148,148,148,0.8) 0%,rgba(0,0,0,0.8) 12%,rgba(0,0,0,0.8) 49%,rgba(0,0,0,0.8) 100%);
	background: -ms-linear-gradient(top,  rgba(148,148,148,0.8) 0%,rgba(0,0,0,0.8) 12%,rgba(0,0,0,0.8) 49%,rgba(0,0,0,0.8) 100%);
	background: linear-gradient(to bottom,  rgba(148,148,148,0.8) 0%,rgba(0,0,0,0.8) 12%,rgba(0,0,0,0.8) 49%,rgba(0,0,0,0.8) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cc949494', endColorstr='#cc000000',GradientType=0 );
}

.content {
	padding: 20px 0;
	background-color: #e3e3e3;
}

.content_underLogo {
	padding-top: 60px;
}

/* ---------------------------------------------------------------------
Media
------------------------------------------------------------------------ */

.media {
	margin-bottom: 20px;
	overflow: hidden;
}

.media_flat {
	margin-bottom: 0;
}

.media-ent {
	max-width: 50%;
	margin-right: 20px;
	float: left;
}

.media-ent_right {
	margin-right: 0;
	margin-left: 20px;
	float: right;
}

.media_stacked .media-ent,
.media_stacked .media-ent_right {
	max-width: none;
	margin-left: 0;
	margin-right: 0;
	float: none;
}

.media-ent img {
	width: 100%;
}

.media-content-hd {
	margin-bottom: 25px;
}

.media-content-hd_small {
	margin-bottom: 10px;
}

.media-content-bd {
	margin-bottom: 10px;
}

.media-content-ft_right {
	text-align: right;
}

/* ---------------------------------------------------------------------
Grid
------------------------------------------------------------------------ */

.grid {
  margin: -1em 0 0 -1em;
  display: flex;
}

.grid > .grid-cell {
  padding: 1em 0 0 1em;
}

.grid_top {
  align-items: flex-start;
}

.grid_bottom {
  align-items: flex-end;
}

.grid_center {
  align-items: center;
}

.grid-cell {
  flex: 1;
  flex-grow: 1;
}

.grid-cell_top {
  align-self: flex-start;
}

.grid-cell_bottom {
  align-self: flex-end;
}

.grid-cell_center {
  align-self: center;
}

.grid-cell_1 {
  flex-basis: 8.3333%;
}

.grid-cell_2 {
  flex-basis: 16.6666%; 
}

.grid-cell_3 {
  flex-basis: 25%;
}

.grid-cell_4 {
  flex-basis: 33.3333%;
}

.grid-cell_5 {
  flex-basis: 41.6666%;
}

.grid-cell_6 {
  flex-basis: 50%;
}

.grid-cell_7 {
  flex-basis: 58.3333%;
}

.grid-cell_8 {
  flex-basis: 66.6666%;
}

.grid-cell_9 {
  flex-basis: 75%;
}

.grid-cell_10 {
  flex-basis: 83.3333%;
}

.grid-cell_11 {
  flex-basis: 91.6666%;
}

.grid-cell_12 {
  flex-basis: 100%;
}

/* ---------------------------------------------------------------------
Box
------------------------------------------------------------------------ */

.box {
	margin-bottom: 20px;
	box-sizing: border-box;
}

.box-hd_branded {
	padding: 10px;
	border-top-left-radius: 10px; 
	border-top-right-radius: 10px; 
	text-align: center;
	background: #ca3333;
	background: -moz-linear-gradient(top,  #ca3333 0%, #a71010 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ca3333), color-stop(100%,#a71010));
	background: -webkit-linear-gradient(top,  #ca3333 0%,#a71010 100%);
	background: -o-linear-gradient(top,  #ca3333 0%,#a71010 100%);
	background: -ms-linear-gradient(top,  #ca3333 0%,#a71010 100%);
	background: linear-gradient(to bottom,  #ca3333 0%,#a71010 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ca3333', endColorstr='#a71010',GradientType=0 );
}

.box-bd_branded {
	padding: 10px;
	border: 1px solid #ca3333;
	background: #ffffff;
}

.mix-box-bd_stuffed {
	padding: 20px;
}

/* ---------------------------------------------------------------------
Blocks
------------------------------------------------------------------------ */

.blocks {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.block {
}

.block_third {
	width: 32%;
	margin-bottom: 2%;
}

.block_fourth {
	width: 23.5%;
	margin-bottom: 2%;
}

/* ---------------------------------------------------------------------
Yes/No Input Toggle
------------------------------------------------------------------------ */

.cmn-toggle {
  position: absolute;
  margin-left: -9999px;
  visibility: hidden;
}
.cmn-toggle + label {
  display: block;
  position: relative;
  cursor: pointer;
  outline: none;
  user-select: none;
}

.cmn-toggle-round + label {
  width: 60px;
  height: 30px;
  background-color: #dddddd;
  border-radius: 15px;
}
.cmn-toggle-round + label:before,
.cmn-toggle-round + label:after {
  display: block;
  position: absolute;
  top: 1px;
  left: 0;
  bottom: 1px;
  content: "";
}
.cmn-toggle-round + label:before {
  right: 1px;
  background-color: #f1f1f1;
  border-radius: 15px;
  transition: background 0.4s;
}
.cmn-toggle-round + label:after {
  width: 30px;
  background-color: #fff;
  border-radius: 100%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  transition: margin 0.4s;
}
.cmn-toggle-round:checked + label:before {
  background-color: #8ce196;
}
.cmn-toggle-round:checked + label:after {
  margin-left: 30px;
}

/* ---------------------------------------------------------------------
vList
------------------------------------------------------------------------ */

.vList {
	margin-left: 20px;
}

.vList > * + * {
	margin-top: 20px;
}

.vList .vList {
	margin-top: 10px;
}

.vList_bullets {
	list-style: disc;
}

.vList_num {
	list-style: decimal;
}

/* ---------------------------------------------------------------------
Generic Input
------------------------------------------------------------------------ */

.textarea {
	min-height: 100px;
	width: 100%;
	box-sizing: border-box;
}













