@charset "utf-8";
/* Simple fluid media
   Note: Fluid media requires that you remove the media's height and width attributes from the HTML
   http://www.alistapart.com/articles/fluid-images/ 
*/
img,
object,
embed,
video {
  max-width: 100%;
}
/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
  width: 100%;
}

/*
	Dreamweaver Fluid Grid Properties
	----------------------------------
	dw-num-cols-mobile:		6;
	dw-num-cols-tablet:		10;
	dw-num-cols-desktop:	14;
	dw-gutter-percentage:	25;
	
	Inspiration from "Responsive Web Design" by Ethan Marcotte 
	http://www.alistapart.com/articles/responsive-web-design
	
	and Golden Grid System by Joni Korpi
	http://goldengridsystem.com/
*/

/* Mobile Layout: 480px and below. */

.sort-pane {
  width: auto;
  height: auto;
  display: block;
  float: right;
  position: relative;
  top: 0;
  right: 0;
  z-index: 100;
}

.searchbutton {
  float: right;
  margin: 0em 5% 1em;
  display: block;
  clear: both;
  position: relative;
}

.searchbutton i {
  transform-origin: center left;
  font-size: 1em;
  transition: all 0.3s;
  margin: auto 0.5em auto auto;
}

.searchbutton:hover i {
  font-size: 1em;
  margin: auto 1em auto auto;
}

.sort-pane-expanded {
  width: calc(30% - 2em);
  height: auto;
  display: block;
  float: right;
  position: relative;
  top: 0;
  right: 0;
  box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
  -webkit-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
  -moz-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
  background-color: white;
  border-radius: 1em;
  z-index: 100;
  padding: 1.5em;
}

.sort-pane-inner {
  float: left;
  clear: none;
  display: none;
  width: 100%;
  height: auto;
}

.sort-pane-inner .search {
  width: 100%;
  margin: auto 0%;
}

.sort {
  width: 100%;
  margin: auto 0% 0em;
  height: auto;
  display: block;
  float: left;
  clear: none;
  display: grid;
  grid-auto-flow: row dense;
  grid-auto-columns: 1fr;
  grid-auto-rows: 1fr;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 2em 2em;
  grid-template-areas: ". .";
}

.eventnews-list {
  width: calc(90% - 0em);
  height: auto;
  display: grid;
  grid-template-columns: repeat(1, 1fr); /* Strictly 3 columns */
  grid-auto-rows: 1fr; /* Equal row height */
  gap: 2em 2em;
  margin: auto 5%;
  z-index: 5;
  position: relative;
}

.post {
  width: calc(100% - 2em);
  height: 90%; /* Takes full height of the grid row */
  display: flex;
  flex-direction: column;
  cursor: pointer;
  box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.3);
  -webkit-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.3);
  -moz-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.3);
  padding: 1em;
  background-color: white;
  border-radius: 1em;
  overflow: hidden;
  transition: all 0.3s;
  margin-top: 2em;
  min-height: 0; /* Prevents content from stretching rows */
}

.post:hover {
  box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.7);
  -webkit-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.7);
  -moz-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.7);
}

.post-img {
  width: 100%;
  height: 35vh;
  display: block;
  float: left;
  clear: none;
  background-size: cover;
  background-position: center top;
  border-radius: 0.5em;
}

.post-text {
  width: 100%;
  height: auto;
  overflow: hidden;
  display: block;
  float: left;
  clear: none;
}

.post-text h4 {
  font-size: 1.3em !important;
  margin-bottom: 0.4em;
  line-height: 1.1em;
}

.post-text h5 {
  font-family: "GeneralSans";
}

.post-text p {
  clear: left;
  text-overflow: ellipsis;
  height: 5em;
}

.eventdetail {
  margin: auto;
  display: block;
  clear: both;
  float: left;
  margin: 0.5em auto;
}

.eventdetail span {
  font-size: 0.85em;
  font-family: "GeneralSans";
  letter-spacing: 0.5px;
  color: #747474;
}

.eventdetail i {
  color: #e8c899;
  font-size: 1em;
  margin-right: 0.5em;
}

.eventpage-details {
  width: 90%;
  height: auto;
  display: block;
  float: left;
  margin: auto 5%;
}

.ed-left {
  width: 100%;
  float: left;
  clear: none;
  display: block;
  margin: auto;
}

.ed-right {
  width: 100%;
  float: right;
  clear: none;
  margin: auto;
  display: grid;
  grid-auto-flow: row dense;
  grid-auto-columns: 1fr;
  grid-auto-rows: 1fr;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto;
  gap: 1em 1em;
  grid-template-areas:
    "."
    "."
    ".";
  margin: 5em 0;
}

.ed-right h3 {
  margin: 0.5em 0;
}

.ed-right .cd {
  display: grid;
  grid-auto-flow: row dense;
  grid-auto-columns: 1fr;
  grid-auto-rows: 1fr;
  grid-template-columns: 1fr 5fr;
  grid-template-rows: 1fr;
  gap: 1em 1em;
  grid-template-areas: ". .";
}

.ed-right .panetab h4 {
  margin-top: 0;
}

.ed-right .cd i {
  font-size: 1.5em;
}

.ed-right .post {
  height: auto;
  padding: 1em;
  width: calc(100% - 2em);
}

.career-list {
  width: calc(90% - 2em);
  height: auto;
  display: grid;
  grid-auto-flow: row dense;
  grid-auto-columns: 1fr;
  grid-auto-rows: 1fr;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  gap: 2em 2em;
  grid-template-areas: ".";
  float: left;
  clear: none;
  margin: 0vh 5% auto;

  z-index: 5;
  position: relative;
}

.career-list .post {
  height: auto;
  padding: 1.5em;
}

.career-list .post-text h4 {
  margin-top: 0;
}

/* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */

@media only screen and (min-width: 481px) {
}

/* Desktop Layout: 769px to a max of 1232px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 769px) {
  .sort-pane {
    width: auto;
    height: auto;
    display: block;
    float: right;
    position: relative;
    top: 0;
    right: 0;
    z-index: 100;
  }

  .searchbutton {
    float: right;
    margin: 0em 5% 1em;
    display: block;
    clear: both;
    position: relative;
  }

  .searchbutton i {
    transform-origin: center left;
    font-size: 1em;
    transition: all 0.3s;
    margin: auto 0.5em auto auto;
  }

  .searchbutton:hover i {
    font-size: 1em;
    margin: auto 1em auto auto;
  }

  .sort-pane-expanded {
    width: calc(30% - 2em);
    height: auto;
    display: block;
    float: right;
    position: relative;
    top: 0;
    right: 0;
    box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
    -webkit-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
    -moz-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
    background-color: white;
    border-radius: 1em;
    z-index: 100;
    padding: 1.5em;
  }

  .sort-pane-inner {
    float: left;
    clear: none;
    display: none;
    width: 100%;
    height: auto;
  }

  .sort-pane-inner .search {
    width: 100%;
    margin: auto 0%;
  }

  .sort {
    width: 100%;
    margin: auto 0% 0em;
    height: auto;
    display: block;
    float: left;
    clear: none;
    display: grid;
    grid-auto-flow: row dense;
    grid-auto-columns: 1fr;
    grid-auto-rows: 1fr;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 2em 2em;
    grid-template-areas: ". .";
  }

  .eventnews-list {
    width: calc(90% - 0em);
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Strictly 3 columns */
    grid-auto-rows: 1fr; /* Equal row height */
    gap: 1em 1em;
    margin: auto 5%;
    z-index: 5;
    position: relative;
  }

  .post {
    width: calc(100% - 2em);
    height: 90%; /* Takes full height of the grid row */
    display: flex;
    flex-direction: column;
    cursor: pointer;
    box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.3);
    -webkit-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.3);
    -moz-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.3);
    padding: 1em;
    background-color: white;
    border-radius: 1em;
    overflow: hidden;
    transition: all 0.3s;
    margin-top: 2em;
    min-height: 0; /* Prevents content from stretching rows */
  }

  .post:hover {
    box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.7);
    -webkit-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.7);
    -moz-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.7);
  }

  .post-img {
    width: 100%;
    height: 35vh;
    display: block;
    float: left;
    clear: none;
    background-size: cover;
    background-position: center top;
    border-radius: 0.5em;
  }

  .post-text {
    width: 100%;
    height: 30vh;
    overflow: hidden;
    display: block;
    float: left;
    clear: none;
  }

  .post-text h4 {
    font-size: 1.3em !important;
    margin-bottom: 0.4em;
    line-height: 1.1em;
  }

  .post-text h5 {
    font-family: "GeneralSans";
  }

  .post-text p {
    clear: left;
    text-overflow: ellipsis;
    height: 5em;
  }

  .eventdetail {
    margin: auto;
    display: block;
    clear: both;
    float: left;
    margin: 0.5em auto;
  }

  .eventdetail span {
    font-size: 0.85em;
    font-family: "GeneralSans";
    letter-spacing: 0.5px;
    color: #747474;
  }

  .eventdetail i {
    color: #e8c899;
    font-size: 1em;
    margin-right: 0.5em;
  }

  .eventpage-details {
    width: 90%;
    height: auto;
    display: block;
    float: left;
    margin: auto 5%;
  }

  .ed-left {
    width: 60%;
    float: left;
    clear: none;
    display: block;
    margin: auto;
  }

  .ed-right {
    width: 35%;
    float: right;
    clear: none;
    margin: auto;
    display: grid;
    grid-auto-flow: row dense;
    grid-auto-columns: 1fr;
    grid-auto-rows: 1fr;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 1em 1em;
    grid-template-areas:
      "."
      "."
      ".";
    margin: auto 0;
  }

  .ed-right h3 {
    margin: 0.5em 0;
  }

  .ed-right .cd {
    display: grid;
    grid-auto-flow: row dense;
    grid-auto-columns: 1fr;
    grid-auto-rows: 1fr;
    grid-template-columns: 1fr 5fr;
    grid-template-rows: 1fr;
    gap: 1em 1em;
    grid-template-areas: ". .";
  }

  .ed-right .panetab h4 {
    margin-top: 0;
  }

  .ed-right .cd i {
    font-size: 1.5em;
  }

  .ed-right .post {
    height: auto;
    padding: 1em;
    width: calc(100% - 2em);
  }

  .career-list {
    width: calc(90% - 0em);
    height: auto;
    display: grid;
    grid-auto-flow: row dense;
    grid-auto-columns: 1fr;
    grid-auto-rows: 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 1em 1em;
    grid-template-areas: ". . . .";
    float: left;
    clear: none;
    margin: 0vh 5% auto;

    z-index: 5;
    position: relative;
  }

  .career-list .post {
    height: 15vh;
  }

  .career-list .post-text h4 {
    margin-top: 0;
  }
}
/* Desktop Layout: 769px to a max of 1080px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 1080px) {
  .sort-pane {
    width: auto;
    height: auto;
    display: block;
    float: right;
    position: relative;
    top: 0;
    right: 0;
    z-index: 100;
  }

  .searchbutton {
    float: right;
    margin: 0em 5% 1em;
    display: block;
    clear: both;
    position: relative;
  }

  .searchbutton i {
    transform-origin: center left;
    font-size: 1em;
    transition: all 0.3s;
    margin: auto 0.5em auto auto;
  }

  .searchbutton:hover i {
    font-size: 1em;
    margin: auto 1em auto auto;
  }

  .sort-pane-expanded {
    width: calc(30% - 2em);
    height: auto;
    display: block;
    float: right;
    position: relative;
    top: 0;
    right: 0;
    box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
    -webkit-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
    -moz-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
    background-color: white;
    border-radius: 1em;
    z-index: 100;
    padding: 1.5em;
  }

  .sort-pane-inner {
    float: left;
    clear: none;
    display: none;
    width: 100%;
    height: auto;
  }

  .sort-pane-inner .search {
    width: 100%;
    margin: auto 0%;
  }

  .sort {
    width: 100%;
    margin: auto 0% 0em;
    height: auto;
    display: block;
    float: left;
    clear: none;
    display: grid;
    grid-auto-flow: row dense;
    grid-auto-columns: 1fr;
    grid-auto-rows: 1fr;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 2em 2em;
    grid-template-areas: ". .";
  }

  .eventnews-list {
    width: calc(90% - 0em);
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Strictly 3 columns */
    grid-auto-rows: 1fr; /* Equal row height */
    gap: 1em 1em;
    margin: auto 5%;
    z-index: 5;
    position: relative;
  }

  .post {
    width: calc(100% - 3em);
    height: 90%; /* Takes full height of the grid row */
    display: flex;
    flex-direction: column;
    cursor: pointer;
    box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.3);
    -webkit-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.3);
    -moz-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.3);
    padding: 1.5em;
    background-color: white;
    border-radius: 1em;
    overflow: hidden;
    transition: all 0.3s;
    margin-top: 2em;
    min-height: 0; /* Prevents content from stretching rows */
  }

  .post:hover {
    box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.7);
    -webkit-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.7);
    -moz-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.7);
  }

  .post-img {
    width: 100%;
    height: 35vh;
    display: block;
    float: left;
    clear: none;
    background-size: cover;
    background-position: center top;
    border-radius: 0.5em;
  }

  .post-text {
    width: 100%;
    height: 12em;
    overflow: hidden;
    display: block;
    float: left;
    clear: none;
  }

  .post-text h4 {
    font-size: 1.3em !important;
    margin-bottom: 0.4em;
    line-height: 1.1em;
  }

  .post-text h5 {
    font-family: "GeneralSans";
  }

  .post-text p {
    clear: left;
    text-overflow: ellipsis;
    height: 5em;
  }

  .eventdetail {
    margin: auto;
    display: block;
    clear: both;
    float: left;
    margin: 0.5em auto;
  }

  .eventdetail span {
    font-size: 0.85em;
    font-family: "GeneralSans";
    letter-spacing: 0.5px;
    color: #747474;
  }

  .eventdetail i {
    color: #e8c899;
    font-size: 1em;
    margin-right: 0.5em;
  }

  .eventpage-details {
    width: 90%;
    height: auto;
    display: block;
    float: left;
    margin: auto 5%;
  }

  .ed-left {
    width: 60%;
    float: left;
    clear: none;
    display: block;
    margin: auto;
  }

  .ed-right {
    width: 35%;
    float: right;
    clear: none;
    margin: auto;
    display: grid;
    grid-auto-flow: row dense;
    grid-auto-columns: 1fr;
    grid-auto-rows: 1fr;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 1em 1em;
    grid-template-areas:
      "."
      "."
      ".";
  }

  .ed-right h3 {
    margin: 0.5em 0;
  }

  .ed-right .cd {
    display: grid;
    grid-auto-flow: row dense;
    grid-auto-columns: 1fr;
    grid-auto-rows: 1fr;
    grid-template-columns: 1fr 5fr;
    grid-template-rows: 1fr;
    gap: 1em 1em;
    grid-template-areas: ". .";
  }

  .ed-right .panetab h4 {
    margin-top: 0;
  }

  .ed-right .cd i {
    font-size: 1.5em;
  }

  .ed-right .post {
    height: auto;
    padding: 1em;
    width: calc(100% - 2em);
  }

  .career-list {
    width: calc(90% - 0em);
    height: auto;
    display: grid;
    grid-auto-flow: row dense;
    grid-auto-columns: 1fr;
    grid-auto-rows: 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 1em 1em;
    grid-template-areas: ". . . .";
    float: left;
    clear: none;
    margin: 0vh 5% auto;

    z-index: 5;
    position: relative;
  }

  .career-list .post {
    height: 15vh;
  }

  .career-list .post-text h4 {
    margin-top: 0;
  }
}

/* Desktop Layout:1080px to a max of 1440px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 1440px) {
  .sort-pane {
    width: auto;
    height: auto;
    display: block;
    float: right;
    position: relative;
    top: 0;
    right: 0;
    z-index: 100;
  }

  .searchbutton {
    float: right;
    margin: 0em 5% 1em;
    display: block;
    clear: both;
    position: relative;
  }

  .searchbutton i {
    transform-origin: center left;
    font-size: 1em;
    transition: all 0.3s;
    margin: auto 0.5em auto auto;
  }

  .searchbutton:hover i {
    font-size: 1em;
    margin: auto 1em auto auto;
  }

  .sort-pane-expanded {
    width: calc(30% - 2em);
    height: auto;
    display: block;
    float: right;
    position: relative;
    top: 0;
    right: 0;
    box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
    -webkit-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
    -moz-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
    background-color: white;
    border-radius: 1em;
    z-index: 100;
    padding: 1.5em;
  }

  .sort-pane-inner {
    float: left;
    clear: none;
    display: none;
    width: 100%;
    height: auto;
  }

  .sort-pane-inner .search {
    width: 100%;
    margin: auto 0%;
  }

  .sort {
    width: 100%;
    margin: auto 0% 0em;
    height: auto;
    display: block;
    float: left;
    clear: none;
    display: grid;
    grid-auto-flow: row dense;
    grid-auto-columns: 1fr;
    grid-auto-rows: 1fr;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 2em 2em;
    grid-template-areas: ". .";
  }

  .eventnews-list {
    width: calc(85% - 0em);
    height: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Strictly 3 columns */
    grid-auto-rows: 1fr; /* Equal row height */
    gap: 2em 2em;
    margin: auto 7.5%;
    z-index: 5;
    position: relative;
  }

  .post {
    width: calc(100% - 4em);
    height: 90%; /* Takes full height of the grid row */
    display: flex;
    flex-direction: column;
    cursor: pointer;
    box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.3);
    -webkit-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.3);
    -moz-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.3);
    padding: 2em;
    background-color: white;
    border-radius: 1em;
    overflow: hidden;
    transition: all 0.3s;
    margin-top: 2em;
    min-height: 0; /* Prevents content from stretching rows */
  }

  .post:hover {
    box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.7);
    -webkit-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.7);
    -moz-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.7);
  }

  .post-img {
    width: 100%;
    height: 40vh;
    display: block;
    float: left;
    clear: none;
    background-size: cover;
    background-position: center top;
    border-radius: 0.5em;
  }

  .post-text {
    width: 100%;
    height: auto;
    display: block;
    float: left;
    clear: none;
    height: auto;
    overflow: hidden;
  }

  .post-text h4 {
    font-size: 1.3em !important;
    margin-bottom: 0.4em;
    line-height: 1.1em;
  }

  .post-text h5 {
    font-family: "GeneralSans";
  }

  .post-text p {
    clear: left;
    text-overflow: ellipsis;
    height: auto;
  }

  .eventdetail {
    margin: auto;
    display: block;
    clear: both;
    float: left;
    margin: 0.5em auto;
  }

  .eventdetail span {
    font-size: 0.85em;
    font-family: "GeneralSans";
    letter-spacing: 0.5px;
    color: #747474;
  }

  .eventdetail i {
    color: #e8c899;
    font-size: 1em;
    margin-right: 0.5em;
  }

  .eventpage-details {
    width: 85%;
    height: auto;
    display: block;
    float: left;
    margin: auto 7.5%;
  }

  .ed-left {
    width: 60%;
    float: left;
    clear: none;
    display: block;
    margin: auto;
  }

  .ed-right {
    width: 35%;
    float: right;
    clear: none;
    margin: auto;
    display: grid;
    grid-auto-flow: row dense;
    grid-auto-columns: 1fr;
    grid-auto-rows: 1fr;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 1em 1em;
    grid-template-areas:
      "."
      "."
      ".";
  }

  .ed-right h3 {
    margin: 0.5em 0;
  }

  .ed-right .cd {
    display: grid;
    grid-auto-flow: row dense;
    grid-auto-columns: 1fr;
    grid-auto-rows: 1fr;
    grid-template-columns: 1fr 5fr;
    grid-template-rows: 1fr;
    gap: 1em 1em;
    grid-template-areas: ". .";
  }

  .ed-right .panetab h4 {
    margin-top: 0;
  }

  .ed-right .cd i {
    font-size: 2em;
  }

  .career-list {
    width: calc(85% - 4em);
    height: auto;
    display: grid;
    grid-auto-flow: row dense;
    grid-auto-columns: 1fr;
    grid-auto-rows: 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 1em 1em;
    grid-template-areas: ". . . .";
    float: left;
    clear: none;
    margin: 0vh 7.5% auto;

    z-index: 5;
    position: relative;
  }

  .career-list .post {
    height: 15vh;
  }

  .career-list .post-text h4 {
    margin-top: 0;
  }
}

/* Desktop Layout: 1440px to a max of 1920px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 1920px) {
}
/* Desktop Layout: 1920px to a max of 2400px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 2400px) {
}
