a {
  cursor: pointer;
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

sup, sub {
  position: relative;
  top: -0.4em;
  vertical-align: baseline;
}

sub {
  top: 0.4em;
}

tr {
  height: 20px;
}

span.highlight {
  background-color: #d6ecff;
}

section img {
  max-width: 100%;
  height: auto;
}

/* collapse/expand large tables */
.table-wrapper {
  position: relative;
  overflow: hidden;
  margin: -30px 0 0 -30px;
  padding: 30px 0 30px 30px;
}

.table-wrapper table {
  width: 880px;
  margin-bottom: 0;
}

.table-overlay {
  z-index: 1000001;
  position: absolute;
  top: 29px;
  right: -1px;
  bottom: 29px;
  width: 40%;
  box-shadow: inset -18px 1px 48px -35px rgba(0, 0, 0, 0.4);
  background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 90%, rgb(255, 255, 255) 100%); /* FF3.6+ */
  background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(90%, rgb(255, 255, 255)), color-stop(100%, rgb(255, 255, 255))); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 90%, rgb(255, 255, 255) 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 90%, rgb(255, 255, 255) 100%); /* Opera 11.10+ */
  background: -ms-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 90%, rgb(255, 255, 255) 100%); /* IE10+ */
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 90%, rgb(255, 255, 255) 100%); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00ffffff", endColorstr="#ffffff",GradientType=1 ); /* IE6-9 */
}

.table-zoom {
  z-index: 1000002;
  position: absolute;
  right: -1px;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border: 1px solid #ddd;
  background: url(../img/zoom.png) center center no-repeat #fff;
}

.table-close {
  display: none;
  position: absolute;
  top: 10px;
  right: 10px;
  width: 35px;
  height: 30px;
  border: 1px solid #ddd;
  background: url(../img/close.png) center center no-repeat #fff;
}

.table-wrapper.popup {
  overflow: visible;
  float: right;
  margin: 0;
  padding: 50px 20px 20px;
  background-color: #fff;
  box-shadow: 0 0 25px -5px;
}

.popup .table-overlay, .popup .table-zoom {
  display: none;
}

.popup .table-close {
  display: block;
}

/* tooltips */
span.hint--bottom {
  line-height: 12px;
  border-bottom: 1px dotted #000;
}

span.hint--bottom:after {
  width: 400px;
  line-height: 16px;
  white-space: normal;
}

.hint--leftside.hint--bottom:before, .hint--leftside.hint--bottom:after {
  left: auto;
  right: 50%;
  margin-right: -100%;
}

.hint--leftside.hint--bottom:after {
  margin-right: -20px;
}

/*.right*/
.hint--bottom:after {
  margin-left: -20px;
}

.noselect {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}

/* ol list-styles */
.list-style-decimal {
  list-style: decimal;
}

.list-style-decimal-leading-zero {
  list-style: decimal-leading-zero;
}

.list-style-lower-alpha {
  list-style: lower-alpha;
}

.list-style-upper-alpha {
  list-style: upper-alpha;
}

.list-style-lower-roman {
  list-style: lower-roman;
}

.list-style-upper-roman {
  list-style: upper-roman;
}

/* ul list styles */
.list-style-none {
  list-style: none;
}

.list-style-square {
  list-style: square;
}

.list-style-circle {
  list-style: circle;
}

.list-style-disc {
  list-style: disc;
}

.marginbottom-none {
  margin-bottom: 0px;
}

nav a {
  text-decoration: none;
}

.r-header {
  margin-bottom: 15px;
}

.main-nav {
  display: inline-table;
  padding: 10px 0 5px;
}

.main-nav > a {
  display: table-cell;
  color: white;
  padding: 0 50px 5px 0;
}

/*.main-nav a:first-child {
    padding: 1rem 1rem 1rem 0;
}*/
.main-nav .child {
  display: none;
}

.header-menu-button {
  border: 1px solid #afafaf;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  color: #3c3c3c;
  cursor: default;
  font-size: 14px;
  float: right;
  margin-top: 11px;
  padding: 7px 8px;
  transition: all 0.3s linear !important;
  -webkit-transition: all 0.3s linear !important;
  width: 40px;
}

.header-menu-button:hover {
  background-color: #606060;
  border: 1px solid #606060;
  color: #ffffff;
}

@media screen and (max-width: 767px) {
  .header-menu-button {
    display: inline-block;
  }
}
@media screen and (min-width: 768px) {
  .header-menu-button {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .container {
    width: 100%;
  }
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .container {
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .container {
    width: 100%;
  }
}
.nav-pink-dropdown {
  /*  background-color: #fcfcfc;*/
  display: none;
  height: auto;
  width: 100%;
}

.nav-pink-dropdown ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.nav-pink-dropdown ul li {
  display: inline-block;
  font-size: 16px;
  vertical-align: top;
  width: 50%;
  margin: 0 0 1.7em 0;
  padding: 0 2.65em 0 0;
  line-height: 1.5em;
  /*    @media screen and (max-width: 768px) {
        width: 100%;
      }*/
}
.nav-pink-dropdown ul li a {
  display: inline-block;
  color: #07838f;
  font-family: "Calibri", Verdana, sans-serif;
  font-size: 20px;
  text-decoration: underline;
  line-height: 1.3em;
  margin-bottom: 3px;
  font-weight: 600;
  word-wrap: break-word;
}
.nav-pink-dropdown ul li a:hover {
  color: #9d2f87;
}
.nav-pink-dropdown ul li p {
  margin: 0;
}

.nav-pink-link {
  border-left: 1px solid rgba(60, 60, 60, 0.15);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  display: inline-table;
  height: 100%;
  margin: 0;
  padding: 0;
  width: calc(16.6666666667% - 2px);
}

.nav-pink-link > a {
  color: #ffffff;
  display: table-cell;
  font-size: 18px;
  height: 100%;
  margin: 0;
  padding: 0;
  /*    text-align: center;*/
  text-decoration: none;
  text-transform: capitalize;
  transition: all 0.3s linear !important;
  -webkit-transition: all 0.3s linear !important;
  vertical-align: middle;
  width: 100%;
}

.nav-pink-link > a:hover {
  background-color: #db2f36;
}

.main-nav {
  background-color: #07838f;
  display: block;
  height: auto;
  position: relative;
  /*	text-align: center;*/
  width: 100%;
}

#breadcrumbs {
  height: auto;
}

.nav-pink-dropdown {
  /*	border-bottom: 3px solid $color-geha-blue-header;*/
}

.banner {
  margin-left: 0;
  padding-left: 0;
}

.field-content img {
  width: 100%;
  padding: 0;
  margin: 0;
}

#block-menu-block-6 .menu {
  height: 100%;
  display: flex;
  flex-wrap: wrap;
}
#block-menu-block-6 .menu li {
  margin-bottom: 20px;
}
#block-menu-block-6 .menu li a {
  height: 100%;
}
@media screen and (min-width: 43.75em) {
  #block-menu-block-6 {
    margin: 60px 0 30px 0;
  }
}
@media screen and (max-width: 43.75em) {
  #block-menu-block-6 .menu li {
    width: 100%;
  }
}

table.none tbody tr {
  background-color: #fff;
}

.bgcolor-none {
  background-color: inherit !important;
}

.bgcolor-geha-green {
  background-color: #99FF00 !important;
}

.bgcolor-geha-yellow {
  background-color: #F9AB43 !important;
}

.bgcolor-geha-red {
  background-color: #CC0000 !important;
}

.bgcolor-geha-risk-dark-green {
  background-color: #6FBB45 !important;
}

.bgcolor-geha-risk-green {
  background-color: #ADD36A !important;
}

.bgcolor-geha-risk-yellow {
  background-color: #F9AB43 !important;
}

.bgcolor-geha-risk-red {
  background-color: #F25A30 !important;
}

.bgcolor-geha-risk-dark-red {
  background-color: #F0302E !important;
}

.related-pages-section .field-name-field-related-pages ul ul {
  margin-left: 0.8em;
  font-size: 90%;
}

.related-pages-section .field-name-field-related-pages ul li.active a::before {
  text-decoration: none;
}

.related-pages-section .field-name-field-related-pages ul li.active a {
  text-decoration: underline;
}

.logo {
  margin-left: -20px;
}

@media screen and (max-width: 43.75em) {
  .logo {
    margin-bottom: 20px;
    margin-left: 0px;
  }
  .search-block {
    top: 120px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .view-header-slider .flexslider {
    display: none;
  }
}
/*@media screen and (max-width:740px){
  .nav-pink-dropdown ul li {
    width: 100%;
    padding: 10px 10px;
  }
}*/
@media screen and (max-width: 1010px) {
  .block-search {
    width: 76%;
  }
  .block-search .search-block {
    float: left;
  }
}
/*.search-block {
  width:400px;
}*/
@media screen and (max-width: 740px) {
  .nav-pink-dropdown ul li {
    width: 100%;
    padding: 0;
  }
  .block-search {
    margin-top: 0;
    margin-left: 0;
    width: auto;
  }
  .block-search .search-block {
    width: inherit;
  }
}
#edit-search::placeholder {
  color: #cbcbcb;
  font-weight: 600;
  font-family: "Calibri", Verdana, sans-serif;
}

@media screen and (max-width: 702px) {
  .search-block {
    position: relative;
    top: 0;
    /*    padding-left: 20px;*/
  }
  .search-block #edit-search-wrapper {
    width: calc(100% - 33px);
    float: left;
  }
  .search-block .views-widget {
    width: 100%;
    display: inline-block;
  }
  .search-block .views-widget .form-item-search {
    width: 98%;
    margin-right: 5px;
  }
  .search-block .views-exposed-form .views-exposed-widget .form-text {
    opacity: 1;
  }
}
@media screen and (min-width: 425px) and (max-width: 699px) {
  .search-block #edit-search-wrapper {
    width: calc(100% - 83px) !important;
  }
}
@media screen and (min-width: 43.75em) {
  .block-menu-block.inline-menu ul.menu.five-parts li {
    width: 20%;
  }
}
h1.doctitle {
  color: #07838f;
  font-size: 1.5em;
}

.submenu ul {
  list-style-type: none;
  /*		display: flex;
  		flex-direction: row;
  		align-items: stretch;
  		flex-wrap: wrap;*/
}
.submenu ul li {
  margin: 0;
  padding: 0;
  /*			display: inline-flex;*/
  /*			width: calc(33% - 10px);*/
  /*			@media screen and (max-width: 767px) {
  				width: calc(50% - 10px);
  			}*/
}
.submenu ul li a {
  font-size: 14px;
  text-align: center;
  vertical-align: middle;
  border: 1px solid #07838f;
  border-radius: 2px;
  background-color: #07838f;
  margin: 0 10px 20px 0px;
  padding: 10%;
  text-decoration: none;
  color: white;
  display: block;
}
.submenu ul li a:hover {
  background-color: #9d2f87;
  border: 1px solid #9d2f87;
}

.block-menu-block.inline-menu ul.menu li a:link:hover,
.block-menu-block.inline-menu ul.menu li a:visited:hover {
  background-color: #9d2f87;
}

.main-section {
  max-width: 100%;
}

section {
  clear: both;
}

h1 {
  color: black;
  font-size: 2.444em;
}

h2 {
  color: black;
  font-size: 1.333em;
}

h3 {
  color: #07838f;
}

h4 {
  font-size: 1em;
  font-weight: bold;
}

h5 {
  font-size: 1em;
  font-style: italic;
  font-weight: normal;
}

.content-title h1 {
  margin: 68px 0 30px 0;
}

table.glossary {
  width: 100%;
}
table.glossary th, table.glossary td {
  text-align: left;
  vertical-align: top;
  background-color: transparent;
}
table.glossary td, table.glossary th {
  padding: 0;
}
table.glossary .glossary-header {
  color: white;
  font-size: 10pt;
  font-weight: bold;
  font-size: 10pt;
  line-height: 120%;
  text-align: left;
  padding-bottom: 5mm;
}
table.glossary .glossary-header.first {
  padding-right: 4.3mm;
  text-align: right;
  width: 20%;
}
table.glossary .glossary-name {
  color: #339999;
  font-size: 1em;
  line-height: 120%;
  font-weight: bold;
  padding-right: 4.3mm;
  text-align: right;
  vertical-align: top;
}
table.glossary td.glossary-name {
  color: black;
}
table.glossary .glossary-definition {
  width: 136mm;
  font-size: 10pt;
  line-height: 120%;
  padding-right: 15mm;
}

table tbody tr:nth-child(2n+1) {
  background: none;
}

ul li, ol li {
  margin-bottom: 0;
}

table.standard {
  /*    border-collapse: separate;
      border-spacing: azc($border-spacing);*/
  /*  th.text, td.text{
      ul,ol, li, p{
        font-size: azc($font-size + 2pt);
        line-height: 140%;
      }
    }*/
  /*  td{
      background-color: $color-geha-blue-secondary;
      &.highlight{
        background-color:$color-geha-blue-total;
      }
      &.text{
        background-color: transparent;
        padding-bottom: 30px;
      }
    }*/
  /*  .border-single{
      border-bottom:azc(0.5mm) solid $color-geha-blue;
    }
    .border-double{
      border-bottom:azc(0.5mm) double $color-geha-blue;
    }*/
}
table.standard .title {
  font-size: 0.8333333333rem;
  font-weight: bold;
}
table.standard .subtitle {
  font-size: 0.5416666667rem;
  line-height: 120%;
  text-align: right;
  font-weight: normal;
  margin-right: 0.1181102362rem;
}
table.standard .caption {
  font-size: 0.75rem;
  font-style: italic;
  margin: 0.1875rem 0;
}
table.standard th, table.standard td {
  padding: 0.1181102362rem 0.1181102362rem 0.1181102362rem 0.2362204724rem;
}
table.standard th ul, table.standard th ol, table.standard th li, table.standard th p, table.standard td ul, table.standard td ol, table.standard td li, table.standard td p {
  font-size: 1rem;
  line-height: 140%;
  word-break: break-word;
}
table.standard td.text p {
  font-size: 1rem;
}
table.standard.smallFont th ul, table.standard.smallFont th ol, table.standard.smallFont th li, table.standard.smallFont th p, table.standard.smallFont td ul, table.standard.smallFont td ol, table.standard.smallFont td li, table.standard.smallFont td p {
  font-size: 0.625rem;
  line-height: 140%;
}
table.standard th.header-1, table.standard td.header-1 {
  color: #339999;
  font-weight: bold;
}
table.standard th.header-2, table.standard td.header-2 {
  color: #9c2e86;
}
table.standard th {
  color: #339999;
  font-weight: bold;
}
table.standard th.highlight {
  color: #9c2e86;
}
table.standard td.highlight {
  color: #9c2e86;
}
table.standard td.odd-row {
  background-color: #EEEEEE;
}
table.standard td.text {
  background-color: white;
}
table.standard tr.header td {
  color: #339999;
}
table.standard tr.total td {
  font-weight: bold;
  color: #9c2e86;
}
table.standard tr.subtotal td {
  font-weight: bold;
  color: #9c2e86;
}
table.standard tr.emphasized td, table.standard tr.emphasized th {
  font-weight: bold;
  color: black;
}

.r-content table, .r-content th, .r-content tr, .r-content td {
  border: 0;
}

table {
  /* table-layout: fixed; GEHA-71*/
}
table img {
  max-height: 150px;
  min-width: 40px;
  width: auto;
}

.table-wide {
  min-width: 800px;
}

.smallfont table.standard th p,
.smallfont table.standard td p {
  font-size: 0.625rem;
}

/*.main-nav a.active {
  font-weight: bold;
  font-size: 110%;
}*/
.l-breadcrumbs {
  border-top: none;
  background: none;
}
.l-breadcrumbs .breadcrumb {
  margin-top: 68px;
  margin-bottom: 65px;
  position: relative;
}
.l-breadcrumbs .breadcrumb a {
  color: black;
}
.l-breadcrumbs .breadcrumb .breadcrumb-symbol {
  position: relative;
  top: 2px;
  display: inline-block;
  text-indent: -999px;
  overflow: hidden;
  width: 10px;
  height: 14px;
  background: url(../img/icon-li-arrow-grey-dark.png) no-repeat center center;
  margin: 0 0.3em;
}
.l-breadcrumbs .main-nav {
  border-bottom: 3px solid #9d2f87 !important;
  background-color: transparent;
  height: auto;
  position: relative;
  width: 100%;
}
.l-breadcrumbs .main-nav > a {
  font-weight: bold;
  display: inline-block;
  color: #07838f;
  font-family: "Calibri", Verdana, sans-serif;
  line-height: 1.35;
  font-size: 110%;
}
.l-breadcrumbs .main-nav > a:hover {
  color: #9d2f87;
}

.sub-main-nav, .breadcrumb, .wrapper-breadcrumb {
  margin: 0 20px;
  max-width: 63.125rem;
}

.wrapper-breadcrumb {
  margin-bottom: 20px;
}

.cols .submenu {
  float: left;
  /*    padding-right:1.5%;*/
  width: 25%;
}
.cols .conwrap {
  float: left;
  width: 75%;
  padding-left: 1.5%;
}
.cols:after {
  content: "";
  display: table;
  clear: both;
}
@media screen and (max-width: 740px) {
  .cols .submenu, .cols .conwrap {
    float: none;
    width: 100%;
  }
  .cols .submenu li a {
    padding: 20px;
    margin-right: 0;
  }
  .cols .conwrap {
    padding-left: 0;
  }
}

.field-collection-view {
  border: none;
  margin: 0 0 10px;
  padding: 0;
}

.field-collection-view .accordion-tabs {
  width: 100%;
}

@media screen and (min-width: 60em) {
  .field-collection-view .accordion-tabs {
    width: 900px;
  }
}
.field-collection-view .accordion-tabs .field-item {
  margin-bottom: 0;
}

.field-collection-view .accordion-tabs .field-name-field-title {
  background: #fff;
  padding: 15px 50px 15px 30px;
  position: relative;
  margin: 0;
  font-size: 1.2em;
  border: 1px solid #07838f;
  cursor: pointer;
  transition: all 300ms;
}

.field-collection-view .accordion-tabs .field-name-field-title:after {
  content: "+";
  font-family: "Open Sans", Arial, Verdana, sans-serif;
  font-weight: 100;
  font-size: 24px;
  display: block;
  position: absolute;
  right: 20px;
  top: 16px;
  background-color: #07838f;
  transition: all 300ms;
  color: #fff;
  width: 30px;
  height: 30px;
  line-height: 30px;
  vertical-align: middle;
  text-align: center;
}

.field-collection-view .accordion-tabs .field-name-field-title h2,
.field-collection-view .accordion-tabs .field-name-field-title fieldset.webform-component-fieldset legend,
fieldset.webform-component-fieldset .field-collection-view .accordion-tabs .field-name-field-title legend {
  color: #07838f;
  margin-bottom: 0;
  font-size: 1.2em;
  font-weight: 300;
}

.field-collection-view .accordion-tabs .field-collection-view.active .field-name-field-title::after {
  content: "-";
}

.field-collection-view .accordion-tabs .field-name-field-body {
  display: none;
  padding: 20px 20px 0 20px;
}

.field-collection-view.active .accordion-tabs {
  width: 900px;
}

.field-collection-view.active .accordion-tabs .field-item {
  margin-bottom: 0;
}

.field-collection-view.active .accordion-tabs .field-name-field-title:after {
  content: "-";
}

h5.table-title {
  font-style: normal;
}

p.caption {
  font-style: italic;
}

li p {
  margin: 0;
}
/*# sourceMappingURL=tangelo.css.map */
