/* Main Application CSS*/
/* Variables Colors */
/* Sizes */
/* Variables Icon Grid */
/* Mixins */
/*
	Index List
	Contents				: 0 ~ 500
	Highlights				: 500 ~ 1000
	Navigation				: 1000 ~ 2000
	Popups					: 5000 ~ 6000
	Alerts					: +10000
*/
/* Font Definition and Style Markers */
/* Font Definitions */
@import url("../fonts/OpenSans/style.css");
/* Global Font Styles */
html, body, p, a, div, span, td, th, article, header, nav, li {
  font-family: 'Open Sans', sans-serif;
}

b, strong {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
}

em, i {
  font-family: 'Open Sans', sans-serif;
  font-style: italic;
}

a {
  color: #000;
  text-decoration: none;
}

a:hover {
  color: #000;
  text-decoration: none;
}

a[href^="http"] {
  color: #78c5b0;
}

a[href^="http"] span, a[href^="http"] div, a[href^="http"] i {
  color: #78c5b0;
}

a[href^="http"]:hover {
  color: #54b69b;
  text-decoration: underline;
}

a[href^="mailto"] {
  color: #a833b9;
}

a[href^="mailto"] span, a[href^="mailto"] div, a[href^="mailto"] i {
  color: #a833b9;
}

a[href^="mailto"]:hover {
  color: #842891;
  text-decoration: underline;
}

a[href^="#"] {
  color: #e06d06;
}

a[href^="#"] span, a[href^="#"] div, a[href^="#"] i {
  color: #e06d06;
}

a[href^="#"]:hover {
  color: #ae5505;
  text-decoration: underline;
}

a[href^="/"] {
  color: #e06d06;
}

a[href^="/"] span, a[href^="/"] div, a[href^="/"] i {
  color: #e06d06;
}

a[href^="/"]:hover {
  color: #ae5505;
  text-decoration: underline;
}

/* Headers */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  margin-top: 5px;
  margin-bottom: 15px;
}

h1 em, h1 i, h2 em, h2 i, h3 em, h3 i, h4 em, h4 i, h5 em, h5 i, h6 em, h6 i {
  font-family: 'Open Sans', sans-serif;
  font-style: italic;
}

@media (min-width: 700px) {
  h1 {
    font-size: 36px;
    color: #78c5b0;
  }
  h2 {
    font-size: 30px;
    color: #000;
  }
  h3 {
    font-size: 26px;
    color: #000;
  }
  h4 {
    font-size: 23px;
    color: #000;
  }
  h5 {
    font-size: 20px;
    color: #000;
  }
  h6 {
    font-size: 18px;
    color: #000;
  }
}

@media (max-width: 700px) {
  h1 {
    font-size: 30px;
    color: #78c5b0;
  }
  h2 {
    font-size: 26px;
    color: #000;
  }
  h3 {
    font-size: 23px;
    color: #000;
  }
  h4 {
    font-size: 20px;
    color: #000;
  }
  h5 {
    font-size: 18px;
    color: #000;
  }
  h6 {
    font-size: 16px;
    color: #000;
  }
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

body::-webkit-scrollbar {
  width: 12px;
  cursor: pointer;
  background: transparent;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
}

body::-webkit-scrollbar-thumb {
  border: 2px solid #f0f0ed;
  background-clip: content-box;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  background: #78c5b0;
  margin: 10px;
  cursor: pointer;
}

body::-webkit-scrollbar-thumb:hover {
  background: rgba(120, 197, 176, 0.7);
}

body::-webkit-scrollbar-thumb:active {
  background: rgba(120, 197, 176, 0.5);
}

body::-webkit-scrollbar-thumb:window-inactive {
  background: #78c5b0;
}

.container-base {
  display: block;
  margin: auto 50px auto 50px;
  padding: 0;
  clear: both;
}

header {
  display: block;
  background-color: #78c5b0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  overflow: visible;
  height: 68px;
  -moz-box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

header .nav-menu-controls {
  display: none;
  cursor: pointer;
}

header .nav-menu-controls .nav-menu-list {
  display: none;
  position: fixed;
  top: 50px;
  left: 0;
  right: 0;
  background-color: #fff;
  max-height: 60%;
  overflow: auto;
  z-index: 1100;
  -moz-box-shadow: 0 10px 12px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 10px 12px rgba(0, 0, 0, 0.3);
  box-shadow: 0 10px 12px rgba(0, 0, 0, 0.3);
}

header .nav-menu-controls .nav-menu-list::-webkit-scrollbar {
  width: 12px;
  cursor: pointer;
  background: transparent;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
}

header .nav-menu-controls .nav-menu-list::-webkit-scrollbar-thumb {
  border: 2px solid #f0f0ed;
  background-clip: content-box;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  background: #78c5b0;
  margin: 10px;
  cursor: pointer;
}

header .nav-menu-controls .nav-menu-list::-webkit-scrollbar-thumb:hover {
  background: rgba(120, 197, 176, 0.7);
}

header .nav-menu-controls .nav-menu-list::-webkit-scrollbar-thumb:active {
  background: rgba(120, 197, 176, 0.5);
}

header .nav-menu-controls .nav-menu-list::-webkit-scrollbar-thumb:window-inactive {
  background: #78c5b0;
}

header .nav-menu-controls .nav-menu-list #navbar {
  display: block;
  margin: 0;
  padding: 0;
}

header .nav-menu-controls .nav-menu-list #navbar ul {
  margin: 0;
  padding: 0;
}

header .nav-menu-controls .nav-menu-list #navbar ul li {
  border-bottom: 1px solid #d9d9d9;
}

header .nav-menu-controls .nav-menu-list #navbar ul li a {
  padding: 15px 10px;
  position: relative;
  color: #000;
  padding-right: 30px;
}

header .nav-menu-controls .nav-menu-list #navbar ul li a .caret {
  position: absolute;
  top: 50%;
  right: 10px;
}

header .nav-menu-controls .nav-menu-list #navbar ul li.open {
  border-bottom: 2px solid #78c5b0;
}

header .nav-menu-controls .nav-menu-list #navbar ul li.open > a {
  font-weight: bold;
  color: #fff;
  background-color: #78c5b0;
}

header .nav-menu-controls .nav-menu-list #navbar ul li.open .dropdown-menu {
  padding: 0;
}

header .nav-menu-controls .nav-menu-list #navbar ul li.open .dropdown-menu li {
  background-color: #f7f7f7;
}

header .nav-menu-controls .nav-menu-list #navbar ul li.open .dropdown-menu li a {
  cursor: pointer;
  padding: 10px 20px;
  white-space: normal;
  color: gray;
  transition: all 150ms ease-in-out;
  -webkit-transition: all 150ms ease-in-out;
  -moz-transition: all 150ms ease-in-out;
}

header .nav-menu-controls .nav-menu-list #navbar ul li.open .dropdown-menu li a:active {
  color: #fff;
  background-color: #48a88e;
}

header .nav-menu-controls.active .nav-menu-list {
  display: block;
}

header .logo {
  float: left;
  padding: 11px 3px 11px 0px;
  height: 68px;
}

header .logo img {
  height: 46px;
}

header .account {
  float: right;
  display: block;
  width: 225px;
  height: 68px;
  padding: 0px;
  margin: auto auto auto 20px;
  position: relative;
}

header .account .nav-accounts-mobile {
  display: none;
}

header .account .account-controller {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
  height: 68px;
  background-color: #fff;
  cursor: pointer;
}

header .account .account-controller .account-user {
  width: 100%;
  margin: auto 10px;
  vertical-align: middle;
}

header .account .account-controller .account-user .account-user-logo {
  height: 40px;
  text-align: center;
  /*border-bottom: 1px solid darken($white, 15%);*/
  padding-bottom: 3px;
}

header .account .account-controller .account-user .account-user-logo img {
  height: 100%;
  width: auto;
  margin: auto;
}

header .account .account-controller .account-user .account-user-name {
  display: none;
  height: 20px;
  text-align: center;
  color: #000;
  font-size: 12px;
  text-decoration: none;
}

header .account .account-controller .caret {
  color: #000;
  margin: auto 10px;
}

header .account .account-dropdown {
  display: none;
  position: absolute;
  top: 68px;
  left: 0;
  right: 0;
  padding: 0;
  background-color: #fff;
  -moz-box-shadow: 0 8px 10px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 8px 10px rgba(0, 0, 0, 0.3);
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.3);
}

header .account .account-dropdown .account-name {
  display: none;
  padding: 10px 10px 0px 10px;
}

header .account .account-dropdown ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

header .account .account-dropdown ul li {
  display: block;
}

header .account .account-dropdown ul li a {
  display: block;
  padding: 10px;
  color: #000;
}

header .account .account-dropdown ul li a:hover {
  text-decoration: none;
  color: #000;
  background-color: #f2f2f2;
}

header .account.active .account-controller .caret {
  border-top-width: 0;
  border-bottom: 4px solid #000000;
}

header .account.active .account-dropdown {
  display: block;
}

header .search-in-page {
  padding-top: 15px;
  text-align: left;
  margin: 0 auto;
}

header .search-in-page .search-container {
  position: relative;
  height: 40px;
  background-color: #fff;
  margin: 0;
  padding: 0 0 0 45px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  border-radius: 50px;
}

header .search-in-page .search-container .icon {
  position: absolute;
  top: 10px;
  left: 15px;
}

header .search-in-page .search-container input[type=search] {
  display: inline-block;
  width: 300px;
  border: 0;
  padding: 10px 0px;
  outline: none;
  background-color: transparent;
}

header .search-in-page .search-container input[type=submit] {
  color: #fff;
  background: #757575;
  font-weight: bold;
  text-transform: uppercase;
  border: 0;
  padding: 10px 20px;
  outline: none;
  -webkit-border-top-right-radius: 50px;
  -webkit-border-bottom-right-radius: 50px;
  -moz-border-radius-topright: 50px;
  -moz-border-radius-bottomright: 50px;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
}

header nav.content-view-options {
  display: inline-block;
  margin: 10px auto auto 30px;
}

header nav.content-view-options .content-view-actions {
  display: block;
  float: left;
  border: 2px solid #9cd4c5;
  height: 50px;
  border-right: 0px;
  background-color: #78c5b0;
}

header nav.content-view-options .content-view-actions.info {
  padding: 8px 10px;
  font-size: 14px;
  line-height: 1.2;
  color: #fff;
}

header nav.content-view-options .content-view-actions.info strong {
  font-size: 12px;
  font-weight: bold;
  display: block;
}

header nav.content-view-options .content-view-actions:first-child {
  -webkit-border-top-left-radius: 5px;
  -webkit-border-bottom-left-radius: 5px;
  -moz-border-radius-topleft: 5px;
  -moz-border-radius-bottomleft: 5px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

header nav.content-view-options .content-view-actions:last-child {
  border-right: 2px solid #9cd4c5;
  -webkit-border-top-right-radius: 5px;
  -webkit-border-bottom-right-radius: 5px;
  -moz-border-radius-topright: 5px;
  -moz-border-radius-bottomright: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

header nav.content-view-options .content-view-actions > a {
  display: block;
  padding: 10px;
  transition: all 200ms ease-in-out;
  -webkit-transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0) inset;
  -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0) inset;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0) inset;
}

header nav.content-view-options .content-view-actions > a:hover {
  background-color: #5fbaa1;
  -moz-box-shadow: 0 0 15px 0px rgba(0, 0, 0, 0.25) inset;
  -webkit-box-shadow: 0 0 15px 0px rgba(0, 0, 0, 0.25) inset;
  box-shadow: 0 0 15px 0px rgba(0, 0, 0, 0.25) inset;
}

header nav.content-view-options .content-view-actions > a:active {
  background-color: #48a88e;
  -moz-box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.5) inset;
  -webkit-box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.5) inset;
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.5) inset;
}

header nav.content-view-options .content-view-actions > a img {
  width: 26px;
  height: 26px;
}

header nav.content-view-options .content-view-actions.active a {
  background-color: #48a88e;
}

aside.content-navbar {
  display: block;
  float: left;
  width: 270px;
  max-width: 270px;
  margin: 0;
  padding: 0 20px 0 0;
  overflow: auto;
}

aside.content-navbar > ul.nav {
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 250px;
  height: initial;
  max-height: 80%;
  background-color: #fff;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}

aside.content-navbar > ul.nav::-webkit-scrollbar {
  width: 12px;
  cursor: pointer;
  background: transparent;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
}

aside.content-navbar > ul.nav::-webkit-scrollbar-thumb {
  border: 2px solid #f0f0ed;
  background-clip: content-box;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  background: #78c5b0;
  margin: 10px;
  cursor: pointer;
}

aside.content-navbar > ul.nav::-webkit-scrollbar-thumb:hover {
  background: rgba(120, 197, 176, 0.7);
}

aside.content-navbar > ul.nav::-webkit-scrollbar-thumb:active {
  background: rgba(120, 197, 176, 0.5);
}

aside.content-navbar > ul.nav::-webkit-scrollbar-thumb:window-inactive {
  background: #78c5b0;
}

aside.content-navbar > ul.nav li {
  margin: 0;
  padding: 0;
  background-color: #fff;
  border-bottom: 1px solid #bfbfbf;
}

aside.content-navbar > ul.nav li.nav-header {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  background-color: #000;
  margin: 0;
  padding: 5px 10px;
  -webkit-border-top-left-radius: 4px;
  -webkit-border-top-right-radius: 4px;
  -moz-border-radius-topleft: 4px;
  -moz-border-radius-topright: 4px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

aside.content-navbar > ul.nav li > a {
  padding: 7px 10px;
  color: #666666;
  background-color: transparent;
}

aside.content-navbar > ul.nav li.active {
  background-color: #f7f7f7;
  border-bottom: 2px solid #78c5b0;
}

aside.content-navbar > ul.nav li.active > ul.nav-stacked li {
  background-color: #f7f7f7;
  border-bottom: 1px solid #d9d9d9;
}

aside.content-navbar > ul.nav li.active > ul.nav-stacked li a {
  display: block;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  font-size: 12px;
}

aside.content-navbar > ul.nav li.active > ul.nav-stacked li a .indent {
  display: inline-block;
  padding-right: 5px;
  white-space: nowrap;
}

aside.content-navbar > ul.nav li.active > ul.nav-stacked li.active a {
  font-weight: bold;
  color: #000 !important;
  background-color: #b3eadb !important;
}

aside.content-navbar > ul.nav li:last-child {
  border-bottom: 0;
  -webkit-border-bottom-right-radius: 4px;
  -webkit-border-bottom-left-radius: 4px;
  -moz-border-radius-bottomright: 4px;
  -moz-border-radius-bottomleft: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

aside.content-navbar > ul.nav li > ul.nav-stacked {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

aside.content-navbar > ul.nav li > ul.nav-stacked li a {
  padding: 5px 5px 5px 15px;
}

aside.content-navbar > ul.nav li > ul.nav-stacked li ul.children {
  list-style-type: none;
  border-left: 5px solid #55bd9b;
}

aside.content-navbar > ul.nav li > ul.nav-stacked li ul.children > li {
  border-bottom: 1px solid #55bd9b;
}

aside.content-navbar > ul.nav li > ul.nav-stacked li ul.children > li a {
  padding: 5px 5px 5px 25px;
}

article.content {
  display: block;
  float: left;
  width: calc(100% - 270px);
}

article.content.wide {
  width: 100%;
}

article.content hr {
  border-top: 2px solid #d9d9d9;
}

section#main-content-area {
  position: relative;
  height: 100%;
  padding: 1px;
  vertical-align: top;
  padding: 20px 0;
  overflow: auto;
}

section.group {
  background-color: #fff;
  padding: 25px 50px;
  margin-bottom: 20px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.15);
}

section.group a[rel=external] {
  display: block;
  white-space: normal;
  text-overflow: ellipsis;
  overflow: hidden;
}

section.group .subgroup {
  padding-top: 90px;
  margin-top: -90px;
}

section.group .subgroup h1 {
  font-size: 30px;
  color: #000;
}

section.group .subgroup.sublevel1 {
  padding-left: 0px;
}

section.group .subgroup.sublevel2 {
  padding-left: 50px;
}

section.group .subgroup.sublevel3 {
  padding-left: 100px;
}

section.group .subgroup.sublevel4 {
  padding-left: 150px;
}

section.group .subgroup.sublevel5 {
  padding-left: 200px;
}

section.group .subgroup.sublevel6 {
  padding-left: 250px;
}

section.group .subgroup.sublevel7 {
  padding-left: 300px;
}

section.group .subgroup.sublevel8 {
  padding-left: 350px;
}

section.group .subgroup.sublevel9 {
  padding-left: 400px;
}

section.group .subgroup.sublevel10 {
  padding-left: 450px;
}

section.group .subgroup.sublevel11 {
  padding-left: 500px;
}

section.group .subgroup.sublevel12 {
  padding-left: 550px;
}

section.group .subgroup.sublevel13 {
  padding-left: 600px;
}

section.group .subgroup.sublevel14 {
  padding-left: 650px;
}

section.group .subgroup.sublevel15 {
  padding-left: 700px;
}

section.group .subgroup.sublevel16 {
  padding-left: 750px;
}

section.group .subgroup.sublevel17 {
  padding-left: 800px;
}

section.group .subgroup.sublevel18 {
  padding-left: 850px;
}

section.group .subgroup.sublevel19 {
  padding-left: 900px;
}

section.group .subgroup.sublevel20 {
  padding-left: 950px;
}

section.header-toolbar {
  flex-direction: row;
  display: block;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
}

section.eguides-cms {
  display: block;
}

nav.content-menu {
  position: relative;
  display: block;
  margin-bottom: 20px;
  height: 60px;
  background-color: #fff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  -moz-box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

nav.content-menu .nav-responsive-controller {
  display: none;
  float: right;
  width: 60px;
  height: 60px;
  cursor: pointer;
  -webkit-border-top-right-radius: 5px;
  -webkit-border-bottom-right-radius: 5px;
  -moz-border-radius-topright: 5px;
  -moz-border-radius-bottomright: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

nav.content-menu .nav-responsive-controller img {
  width: auto;
  height: 40px;
  margin: 10px;
}

nav.content-menu .nav-responsive-controller:hover {
  background-color: #8acdba;
}

nav.content-menu .nav-responsive-controller:active {
  background-color: #66bda6;
}

nav.content-menu .nav-responsive-controller.active {
  background-color: #78c5b0;
  -webkit-border-top-right-radius: 5px;
  -webkit-border-bottom-right-radius: 0;
  -moz-border-radius-topright: 5px;
  -moz-border-radius-bottomright: 0;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 0;
}

nav.content-menu ul.main {
  position: relative;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

nav.content-menu ul.main > li {
  position: relative;
  display: block;
  display: block;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  float: left;
  width: 130px;
  height: 60px;
  vertical-align: middle;
  padding: 10px 20px 10px 10px;
  border-right: 1px solid #e6e6e6;
  transition: all 200ms ease-in-out;
  -webkit-transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  cursor: pointer;
}

nav.content-menu ul.main > li a {
  display: block;
  display: -webkit-box;
  font-size: 14px;
  font-weight: 600;
  color: #000;
  transition: all 200ms ease-in-out;
  -webkit-transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

nav.content-menu ul.main > li a:hover {
  text-decoration: none;
}

nav.content-menu ul.main > li .submenu-arrow {
  position: absolute;
  top: 50%;
  right: 5px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #000;
  transition: all 200ms ease-in-out;
  -webkit-transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
}

nav.content-menu ul.main > li:first-child {
  -webkit-border-top-left-radius: 5px;
  -webkit-border-bottom-left-radius: 5px;
  -moz-border-radius-topleft: 5px;
  -moz-border-radius-bottomleft: 5px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

nav.content-menu ul.main > li ul.sub {
  display: none;
  position: absolute;
  top: 60px;
  left: 0;
  z-index: 1000;
  list-style-type: none;
  margin: 0;
  padding: 0;
  background-color: #78c5b0;
  -moz-box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.25);
}

nav.content-menu ul.main > li ul.sub li {
  display: block;
}

nav.content-menu ul.main > li ul.sub li a {
  display: block;
  color: #fff;
  padding: 5px 10px;
  width: 300px;
  border-bottom: 1px solid #66bda6;
}

nav.content-menu ul.main > li ul.sub li a:hover {
  background-color: #9cd4c5;
}

nav.content-menu ul.main > li:hover {
  background-color: #78c5b0;
}

nav.content-menu ul.main > li:hover a {
  color: #fff;
  text-decoration: none;
}

nav.content-menu ul.main > li:hover .submenu-arrow {
  border-top: 5px solid #fff;
}

nav.content-menu ul.main > li:hover ul.sub {
  display: block;
}

nav.content-menu ul.alternate {
  display: none;
  position: absolute;
  top: 60px;
  right: 0px;
  list-style-type: none;
  margin: 0;
  padding: 5px 0;
  background-color: #78c5b0;
  -webkit-border-radius: 5px;
  -webkit-border-top-right-radius: 0;
  -moz-border-radius: 5px;
  -moz-border-radius-topright: 0;
  border-radius: 5px;
  border-top-right-radius: 0;
  -moz-box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.25);
}

nav.content-menu ul.alternate > li {
  position: relative;
  display: block;
  border-bottom: 1px solid #66bda6;
}

nav.content-menu ul.alternate > li a {
  display: block;
  font-weight: bold;
  color: #fff;
  padding: 5px 20px 5px 10px;
}

nav.content-menu ul.alternate > li:last-child {
  border-bottom: 0;
}

nav.content-menu ul.alternate > li:hover a {
  text-decoration: none;
  background-color: #8acdba;
}

nav.content-menu ul.alternate > li .submenu-arrow {
  position: absolute;
  top: 50%;
  right: 5px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #fff;
  transition: all 200ms ease-in-out;
  -webkit-transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
}

nav.content-menu ul.alternate > li ul.alternate-sub {
  display: none;
}

nav.breadcrumbs {
  display: block;
  padding: 10px;
  background-color: #e6e6e6;
  margin-bottom: 20px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
}

nav.breadcrumbs .icon-nav-back {
  width: 24px;
  height: 24px;
  display: inline-block;
  margin: 0 5px 0 0;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  transition: all 200ms ease-in-out;
  -webkit-transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
}

nav.breadcrumbs .icon-nav-back:hover {
  background-color: #fff;
  -moz-box-shadow: 0 0 5px rgba(120, 197, 176, 0.8);
  -webkit-box-shadow: 0 0 5px rgba(120, 197, 176, 0.8);
  box-shadow: 0 0 5px rgba(120, 197, 176, 0.8);
}

nav.breadcrumbs .icon-nav-back:active {
  background-color: #e6e6e6;
  -moz-box-shadow: 0 0 5px rgba(120, 197, 176, 0.9) inset;
  -webkit-box-shadow: 0 0 5px rgba(120, 197, 176, 0.9) inset;
  box-shadow: 0 0 5px rgba(120, 197, 176, 0.9) inset;
}

nav.breadcrumbs a {
  display: inline-block;
  color: #000;
}

nav.breadcrumbs a .seperator {
  color: #bfbfbf;
}

nav.breadcrumbs a.eguide-name {
  font-weight: bold;
  color: #78c5b0;
}

footer.browser_warning {
  display: block;
  position: fixed;
  bottom: 0;
  top: auto;
  left: 20px;
  right: 140px;
  z-index: 100000;
  margin: 0;
  padding: 10px;
  text-align: center;
  color: white;
  border: 1px solid #1b4437;
  border-bottom: 0;
  background-color: #378e72;
  -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  -webkit-border-top-left-radius: 5px;
  -webkit-border-top-right-radius: 5px;
  -moz-border-radius-topleft: 5px;
  -moz-border-radius-topright: 5px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

footer.browser_warning .nav-container {
  position: relative;
  z-index: 1001;
  height: initial;
  padding-right: 160px;
}

footer.browser_warning .warning-text, footer.browser_warning .browser-links {
  text-align: center;
}

footer.browser_warning .warning-text {
  font-weight: bold;
  color: #fff;
}

footer.browser_warning .browser-links a {
  color: #fff44d;
  display: inline-block;
  float: none;
}

footer.browser_warning .browser-links a:after {
  content: '|';
  margin: 0 10px;
  color: #fff;
}

footer.browser_warning .browser-links a:last-child:after {
  content: '';
  display: none;
}

footer.browser_warning button {
  position: absolute;
  top: 7px;
  right: 0;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  width: 150px;
  padding: 5px 10px;
  background-color: transparent;
  background-color: #1b4437;
  border: 1px solid black;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
}

footer.browser_warning button span {
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  margin-left: 10px;
}

#top-link-block {
  position: fixed;
  right: 40px;
  bottom: 100px;
  z-index: 5000;
}

#top-link-block a.well {
  font-size: 12px;
  font-weight: bold;
  color: #78c5b0;
  background-color: #000;
  text-decoration: none;
  transition: all 150ms ease-in-out;
  -webkit-transition: all 150ms ease-in-out;
  -moz-transition: all 150ms ease-in-out;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  border-radius: 7px;
  -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.15);
}

#top-link-block a.well .glyphicon {
  color: #78c5b0 !important;
}

#top-link-block a.well:hover {
  text-decoration: none;
  color: #fff;
  background-color: #404040;
}

#top-link-block a.well:active {
  background-color: #737373;
  -moz-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
  -webkit-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
}

.spacer-clear {
  display: block;
  height: 1px;
  width: 100%;
  clear: both;
}

.icon {
  display: inline-block;
}

.icon.search {
  width: 20px;
  height: 20px;
  background-image: url("/static/images/icons/search.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.header-static-page, .navbar-inner {
  display: none;
}

#sidebar.affix {
  top: 90px;
}

.spacer-clear {
  display: block;
  clear: both;
  height: 1px;
}

/* Component Styling */
article .content-grid-icons {
  display: block;
}

article .content-grid-icons .content-grid-element {
  position: relative;
  display: block;
  float: left;
  padding: 10px;
  width: calc((100% / 5) - 15px);
  background-color: #fff;
  height: auto;
  text-align: center;
  margin-right: 15px;
  margin-bottom: 15px;
  transition: all 200ms ease-in-out;
  -webkit-transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

article .content-grid-icons .content-grid-element .content-grid-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 130px;
}

article .content-grid-icons .content-grid-element .content-grid-image img {
  width: auto;
  min-width: 100px;
  height: 100%;
  margin: 0 auto;
  transition: all 200ms ease-in-out;
  -webkit-transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
}

article .content-grid-icons .content-grid-element .content-grid-text {
  position: relative;
  z-index: 2;
  display: block;
  text-align: center;
  font-weight: 600;
  height: 40px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all 200ms ease-in-out;
  -webkit-transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
}

article .content-grid-icons .content-grid-element.has-child:after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 3px;
  left: 3px;
  bottom: -3px;
  right: -3px;
  background-color: #cccccc;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  -moz-box-shadow: 3px 3px 0px #b3b3b3;
  -webkit-box-shadow: 3px 3px 0px #b3b3b3;
  box-shadow: 3px 3px 0px #b3b3b3;
}

article .content-grid-icons .content-grid-element:nth-child(5n) {
  margin-right: 0;
}

article .content-grid-icons .content-grid-element:hover {
  -moz-box-shadow: 0 0 10px 5px rgba(120, 197, 176, 0.5);
  -webkit-box-shadow: 0 0 10px 5px rgba(120, 197, 176, 0.5);
  box-shadow: 0 0 10px 5px rgba(120, 197, 176, 0.5);
  text-decoration: none;
}

article .content-grid-icons .content-grid-element:hover.has-child:after {
  display: none;
}

article .content-grid-icons .content-grid-element:active {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$opacity)";
  filter: alpha(opacity=50);
  opacity: 0.5;
}

article .content-grid-icons .content-grid-element.mini {
  display: block;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  height: 70px;
}

article .content-grid-icons .content-grid-element.mini .content-grid-image {
  float: left;
  height: 40px;
  width: 40px;
  display: inline-block;
}

article .content-grid-icons .content-grid-element.mini .content-grid-image img {
  min-width: auto;
}

article .content-grid-icons .content-grid-element.mini .content-grid-text {
  text-align: left;
  width: 70%;
  width: calc(100% - 50px);
}

article .content-grid-icons.full-color-grid .content-grid-element {
  padding: 0;
}

article .content-grid-icons.full-color-grid .content-grid-element .content-grid-image {
  background-position: center;
  background-size: cover;
  height: 190px;
  background-repeat: no-repeat;
  -webkit-border-top-left-radius: 5px;
  -webkit-border-top-right-radius: 5px;
  -moz-border-radius-topleft: 5px;
  -moz-border-radius-topright: 5px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

article .content-grid-icons.full-color-grid .content-grid-element .content-grid-text {
  padding: 10px;
  -webkit-border-bottom-right-radius: 5px;
  -webkit-border-bottom-left-radius: 5px;
  -moz-border-radius-bottomright: 5px;
  -moz-border-radius-bottomleft: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}

/* Actionable Items */
.icon.icon-function.download-pdf {
  position: relative;
  display: inline-block;
  float: right;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
}

.icon.icon-function.download-pdf span {
  position: absolute;
  top: 7px;
  right: 25px;
  display: none;
  font-size: 10px;
  font-weight: bold;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.65);
  white-space: nowrap;
  padding: 3px 7px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
}

.icon.icon-function.download-pdf img {
  display: inline-block;
  width: 24px;
  margin-left: 10px;
  vertical-align: middle;
}

.icon.icon-function.download-pdf:hover span {
  display: block;
}

.container-download {
  position: fixed;
  z-index: 100;
  bottom: 0;
  left: 50px;
  right: 50px;
  display: block;
  padding: 12px 15px;
  text-align: center;
  -webkit-border-top-left-radius: 5px;
  -webkit-border-top-right-radius: 5px;
  -moz-border-radius-topleft: 5px;
  -moz-border-radius-topright: 5px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  background-color: rgba(0, 0, 0, 0.85);
}

.container-download .alert-success {
  font-size: 18px;
  color: #fff;
  background-color: transparent;
  border-color: transparent;
  text-align: center;
}

.container-download .alert-success a {
  color: #67c4a6;
  font-weight: bold;
  text-decoration: underline;
}

/* MEG Custom Table Themes */
/* Default Themed colors */
table.table-bordered {
  margin: 10px auto;
  border: 1px solid #c2c2c2;
}

table.table-bordered th, table.table-bordered td {
  border: 1px solid #c2c2c2;
}

table.table-bordered thead {
  background-color: #c2c2c2;
  color: #000;
}

table.table-bordered thead th {
  background-color: #c2c2c2;
  color: #000;
}

table.table-bordered.table-striped tbody tr:nth-child(odd) {
  background-color: whitesmoke;
}

table.table-bordered.table-striped tbody tr:nth-child(odd) td {
  background-color: whitesmoke;
}

/* MEG Themed Table */
table.table-meg {
  margin: 10px auto;
  border: 1px solid #78c5b0;
}

table.table-meg th, table.table-meg td {
  border: 1px solid #78c5b0;
}

table.table-meg th {
  background-color: #78c5b0 !important;
  color: #fff;
}

table.table-meg thead {
  background-color: #78c5b0;
  color: #fff;
}

table.table-meg thead th {
  background-color: #78c5b0;
  color: #fff;
}

table.table-meg.table-striped tbody tr:nth-child(odd) {
  background-color: #f5fbf9;
}

table.table-meg.table-striped tbody tr:nth-child(odd) td {
  background-color: #f5fbf9;
}

/* Black Themed Table */
table.table-black {
  margin: 10px auto;
  border: 1px solid #000;
}

table.table-black th, table.table-black td {
  border: 1px solid #000;
}

table.table-black th {
  background-color: #000 !important;
  color: #fff;
}

table.table-black thead {
  background-color: #000;
  color: #fff;
}

table.table-black thead th {
  background-color: #000;
  color: #fff;
}

table.table-black.table-striped tbody tr:nth-child(odd) {
  background-color: #f2f2f2;
}

table.table-black.table-striped tbody tr:nth-child(odd) td {
  background-color: #f2f2f2;
}

/* Iphone fix */
@media screen and (max-device-width: 480px) {
  body {
    -webkit-text-size-adjust: none;
  }
}

/* Mobile CSS*/
@media screen and (max-width: 700px) {
  .container-base {
    margin: 0;
  }
  header {
    height: 50px;
  }
  header nav.content-view-options {
    display: none;
  }
  header .container-base {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    flex-wrap: nowrap;
    -webkit-flex-wrap: nowrap;
  }
  header .nav-menu-controls {
    display: block;
    width: 50px;
    height: 50px;
    padding: 11px;
    margin: 0;
  }
  header .nav-menu-controls img {
    width: 26px;
    height: 26px;
  }
  header .nav-menu-controls .nav-menu {
    display: block;
  }
  header .nav-menu-controls .nav-close {
    display: none;
  }
  header .nav-menu-controls.active {
    background-color: #fff;
  }
  header .nav-menu-controls.active .nav-menu {
    display: none;
  }
  header .nav-menu-controls.active .nav-close {
    display: block;
  }
  header .nav-menu-controls nav.content-view-options {
    display: block;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 10px auto;
    overflow: auto;
  }
  header .nav-menu-controls nav.content-view-options .content-view-actions.info {
    margin-left: auto;
  }
  header .nav-menu-controls nav.content-view-options .content-view-actions.menu {
    margin-right: auto;
  }
  header .logo {
    height: 50px;
    padding: 10px 0 10px 0;
    margin: 0 auto 0 auto;
  }
  header .logo img {
    height: 30px;
    width: auto;
  }
  header .account {
    margin: 0;
    width: 50px;
    position: static;
  }
  header .account .nav-accounts-mobile {
    display: block;
    width: 50px;
    height: 50px;
    padding: 9px;
    margin: 0;
    cursor: pointer;
  }
  header .account .nav-accounts-mobile img {
    width: 32px;
    height: 32px;
  }
  header .account .nav-accounts-mobile .nav-account {
    display: block;
  }
  header .account .nav-accounts-mobile .nav-close {
    display: none;
  }
  header .account .account-controller {
    display: none;
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    width: 100%;
    height: 68px;
  }
  header .account .account-controller .account-user .account-user-logo {
    text-align: right;
  }
  header .account .account-controller .account-user .account-user-logo img {
    width: auto;
    height: 64px;
    margin: auto 0 auto auto;
  }
  header .account .account-controller .caret {
    display: none;
  }
  header .account .account-dropdown {
    display: none;
    top: 118px;
  }
  header .account .account-dropdown ul li a {
    text-align: right;
  }
  header .account.active {
    z-index: 1100;
  }
  header .account.active .nav-accounts-mobile {
    background-color: #fff;
  }
  header .account.active .nav-accounts-mobile .nav-account {
    display: none;
  }
  header .account.active .nav-accounts-mobile .nav-close {
    display: block;
  }
  header .account.active .nav-accounts-mobile .nav-close img {
    fill: #000;
  }
  header .account.active .account-controller {
    display: block;
  }
  header .account.active .account-dropdown {
    display: block;
  }
  header .search-in-page {
    float: none;
    padding-top: 0;
    padding: 5px;
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #cccccc;
    -moz-box-shadow: 0 8px 12px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0 8px 12px rgba(0, 0, 0, 0.3);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.3);
  }
  header .search-in-page .search-container {
    height: auto;
    overflow: auto;
  }
  header .search-in-page .search-container .icon {
    top: 5px;
    left: 10px;
  }
  header .search-in-page .search-container input[type=search] {
    padding: 5px 0;
    float: left;
    width: calc(100% - 100px);
  }
  header .search-in-page .search-container input[type=submit] {
    width: 85px;
    float: right;
    padding: 5px 25px;
  }
  aside.content-navbar {
    display: none;
  }
  article.content {
    float: none;
    width: 100%;
  }
  article .content-grid-icons .content-grid-element {
    padding: 5px;
    width: calc((100% / 2) - 15px);
  }
  article .content-grid-icons .content-grid-element:nth-child(5n) {
    margin-right: 15px;
  }
  article .content-grid-icons .content-grid-element:nth-child(4n) {
    margin-right: 15px;
  }
  article .content-grid-icons .content-grid-element:nth-child(2n) {
    margin-right: 0;
  }
  article .content-grid-icons .content-grid-element .content-grid-image {
    position: relative;
    width: 100%;
    height: 90px;
  }
  article .content-grid-icons .content-grid-element .content-grid-image img {
    width: auto;
    min-width: 76px;
    height: 100%;
    margin: 0 auto;
  }
  section#main-content-area .container-base {
    padding: 20px 10px 10px 10px;
  }
  section.group {
    padding: 20px;
  }
  section.group h1 {
    margin: auto;
  }
  section.group .subgroup h1 {
    font-size: 26px;
    color: #000;
  }
  section.group .subgroup.sublevel1 {
    padding-left: 0px;
  }
  section.group .subgroup.sublevel2 {
    padding-left: 15px;
  }
  section.group .subgroup.sublevel3 {
    padding-left: 30px;
  }
  section.group .subgroup.sublevel4 {
    padding-left: 45px;
  }
  section.group .subgroup.sublevel5 {
    padding-left: 60px;
  }
  section.group .subgroup.sublevel6 {
    padding-left: 75px;
  }
  section.group .subgroup.sublevel7 {
    padding-left: 90px;
  }
  section.group .subgroup.sublevel8 {
    padding-left: 105px;
  }
  section.group .subgroup.sublevel9 {
    padding-left: 120px;
  }
  section.group .subgroup.sublevel10 {
    padding-left: 135px;
  }
  section.group .subgroup.sublevel11 {
    padding-left: 150px;
  }
  section.group .subgroup.sublevel12 {
    padding-left: 165px;
  }
  section.group .subgroup.sublevel13 {
    padding-left: 180px;
  }
  section.group .subgroup.sublevel14 {
    padding-left: 195px;
  }
  section.group .subgroup.sublevel15 {
    padding-left: 210px;
  }
  section.group .subgroup.sublevel16 {
    padding-left: 225px;
  }
  section.group .subgroup.sublevel17 {
    padding-left: 240px;
  }
  section.group .subgroup.sublevel18 {
    padding-left: 255px;
  }
  section.group .subgroup.sublevel19 {
    padding-left: 270px;
  }
  section.group .subgroup.sublevel20 {
    padding-left: 285px;
  }
  nav.content-menu {
    display: none;
  }
  footer.browser_warning {
    right: 20px;
  }
  footer.browser_warning .nav-container {
    padding-right: 0;
  }
  footer.browser_warning button {
    position: relative;
    top: auto;
    width: 100%;
    margin-top: 20px;
  }
}

/* Tablet CSS Portrait */
@media screen and (min-width: 700px) and (max-width: 1080px) {
  .container-base {
    margin: auto 10px;
  }
  header .account {
    margin-left: 10px;
  }
  header .account.active {
    z-index: 1100;
  }
  header .search-in-page {
    float: none;
    padding-top: 0;
    padding: 5px;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #cccccc;
    -moz-box-shadow: 0 8px 12px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0 8px 12px rgba(0, 0, 0, 0.3);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.3);
  }
  header .search-in-page .search-container {
    height: auto;
    overflow: auto;
  }
  header .search-in-page .search-container .icon {
    top: 5px;
    left: 10px;
  }
  header .search-in-page .search-container input[type=search] {
    padding: 5px 0;
    float: left;
    width: calc(100% - 100px);
  }
  header .search-in-page .search-container input[type=submit] {
    width: 85px;
    float: right;
    padding: 5px 25px;
  }
  section#main-content-area {
    margin-top: 108px;
  }
  section.group {
    padding: 20px;
  }
  article .content-grid-icons .content-grid-element {
    width: calc((100% / 4) - 15px);
  }
  article .content-grid-icons .content-grid-element:nth-child(5n) {
    margin-right: 15px;
  }
  article .content-grid-icons .content-grid-element:nth-child(4n) {
    margin-right: 0;
  }
}

/* Desktop / Laptop / Tablet CSS */
@media (max-width: 1220px) {
  header .search-in-page .search-container input[type=search] {
    width: 150px;
  }
}

@media (min-width: 1220px) {
  header .search-in-page .search-container input[type=search] {
    width: 300px;
  }
}
