/*allgemein Bootstrap-Styles*/
*,
*:before,
*:after {
    box-sizing: border-box;
}

body {
  font-family: "Open Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
}

b, strong {
  font-weight: 700;
}

i, em {
}

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #8D8D8D;
}
/* Helper classes / Hilfsklassen
------------------------------------------------------------------------------*/
/* nur fuer Screen-Reader lesbar*/
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

/*Embedded Elements / Eingebettete Elemente
------------------------------------------------------------------------------*/
figure {
  margin: 0;
}
/* Videos responsive*/
.responsive_16-9,
.responsive_4-3,
.responsive_a4{
 /*position: relative;  */
 /* 16 zu 9 Layout für Videos */
 padding-bottom: 56.25%;
 height: 0;
 overflow: hidden;
}
.responsive_4-3{
/* 4 zu 3 Layout für Präsentationen */
 padding-bottom: 75%;
}
.responsive_a4{
/* DIN A4 Layout für Dokumente */
 padding-bottom: 142.86%;
}

.responsive_16-9 iframe,
.responsive_4-3 iframe,
.responsive_a4 iframe,
.responsive_16-9 object,
.responsive_4-3 object,
.responsive_a4 object,
.responsive_16-9 embed,
.responsive_4-3 embed,
.responsive_a4 embed{
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
}
iframe {
  border: none;
}
/*images / Bilder
------------------------------------------------------------------------------*/
img {
  vertical-align: middle;
}
/*Bildunterscrift*/
.csc-textpic-caption {
  margin-top: 5px;
  font-size: 80%;
  color: #999;
}
.img-responsive,
.thumbnail > img,
.thumbnail a > img,
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  display: block;
  max-width: 100%;
  height: auto;
}
.img-rounded {
  border-radius: 10px;
}
.img-thumbnail {
  display: inline-block;
  max-width: 140px;
  height: auto;
  padding: 4px;
  line-height: 1.42857143;
  background-color: #fff;
  border: 2px solid #d9dadb !important;
  border-radius: 4px;
  -webkit-transition: all .2s ease-in-out;
       -o-transition: all .2s ease-in-out;
          transition: all .2s ease-in-out;
}
.img-circle {
  border-radius: 50%;
}
.img-border{
  border: 2px solid #d9dadb !important;
}

.ce-gallery img {
	height: auto;
	max-width: 100%;
}

/*Ueberschriften / Headlines
------------------------------------------------------------------------------*/
#content h1 {
  color: #e4003a;
  text-transform: uppercase;
}

@media screen and (min-width: 1024px) {
  #content h1 {
    font-size: 45px;
    font-weight: normal;
  }
}

#content h1 small,
#content h2 small,
#content h3 small,
#content h4 small,
#content h5 small,
#content h6 small{
  font-weight: normal;
  line-height: 1;
  color: #777;
}
.content h1,
#content h1,
.content .h1,
#content .h1,
.content h2,
#content h2,
.content .h2,
#content .h2,
.content h3,
#content h3,
.content .h3,
#content .h3{
  margin-top: 20px;
  margin-bottom: 15px;
}
#content h1 small,
#content h2 small,
#content h3 small{
  font-size: 65%;
}
.content header:first-child h1,
.content header:first-child .h1,
#content > .frame:first-child header:first-child h1,
#content > .frame:first-child header:first-child .h1 {
 margin-top: 0;
}

.content h4,
#content h4,
.content .h4,
#content .h4,
.content h5,
#content h5,
.content .h5,
#content .h5,
.content h6,
#content h6,
.content .h6,
#content .h6 {
  margin-top: 10px;
  margin-bottom: 10px;
}
#content h4 small,
#content h5 small,
#content h6 small{
  font-size: 75%;
}
#content .teaserbox h3 {
  font-size: 18px;
}
/*Paragraphs / Absaetze
------------------------------------------------------------------------------*/
.lead {

}
.content ul p,
#content ul p {
  margin-bottom:5px;
}
/*Inline text elements
------------------------------------------------------------------------------*/
/*Marked text*/
mark,
.mark {
  padding: .2em;
  background-color: #fcf8e3;
}
/*Alignments / Textausrichtung
------------------------------------------------------------------------------*/
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}
.text-nowrap {
  white-space: nowrap;
}
/* Transformation classes / Text umwandeln
------------------------------------------------------------------------------*/
.text-lowercase {
  text-transform: lowercase;
}
.text-uppercase {
  text-transform: uppercase;
}
.text-capitalize {
  text-transform: capitalize;
}
/* Contextual colors / Text-Farben
------------------------------------------------------------------------------*/
.text-muted {
  color: #777777;
}
.text-primary {
  color: #337ab7;
}
a.text-primary:hover {
  color: #286090;
}
.text-success {
  color: #3c763d;
}
a.text-success:hover {
  color: #2b542c;
}
.text-info {
  color: #31708f;
}
a.text-info:hover {
  color: #245269;
}
.text-warning {
  color: #8a6d3b;
}
a.text-warning:hover {
  color: #66512c;
}
.text-danger {
  color: #a94442;
}
a.text-danger:hover {
  color: #843534;
}

/* Contextual backgrounds / Hintergrund-Farben
------------------------------------------------------------------------------*/
.bg-primary {
  color: #fff;
  background-color: #337ab7;
}
a.bg-primary:hover {
  background-color: #286090;
}
.bg-success {
  background-color: #dff0d8;
}
a.bg-success:hover {
  background-color: #c1e2b3;
}
.bg-info {
  background-color: #d9edf7;
}
a.bg-info:hover {
  background-color: #afd9ee;
}
.bg-warning {
  background-color: #fcf8e3;
}
a.bg-warning:hover {
  background-color: #f7ecb5;
}
.bg-danger {
  background-color: #f2dede;
}
a.bg-danger:hover {
  background-color: #e4b9b9;
}
/*eigene Farben*/
.hellgrau{
  color: #fff;
  background-color: #ededed;
}
/* lists / Listen
------------------------------------------------------------------------------*/
#content ul,
#content ol {
  margin-top: 0;
  margin-bottom: 15px;
  line-height:1.38em;
}
#content ul ul,
#content ol ul,
#content ul ol,
#content ol ol {
  margin-bottom: 0;
}
/*ungestylt*/
.list-unstyled {
  padding-left: 0;
  list-style: none;
}
/*inline*/
.list-inline {
  padding-left: 0;
  /*margin-left: -5px;*/
  list-style: none;
}
.list-inline > li {
  display: inline-block;
  padding-right: 5px !important;
  padding-left: 5px !important;
}
.list-inline > li:first-child{
  padding-left: 0!important;
}
.list-inline > li:last-child{
  padding-right: 0!important;
}
/* Beschreibungslisten*/
dl {
  margin-top: 0;
  margin-bottom: 20px;
}
dt,
dd {
  line-height: 1.42857143;
}
dt {
  font-weight: bold;
}
dd {
  margin-left: 0;
}
@media screen and (min-width: 768px) {
  .dl-horizontal dt {
    float: left;
    width: 160px;
    overflow: hidden;
    clear: left;
    text-align: right;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .dl-horizontal dd {
    margin-left: 180px;
  }
}
/* Abbreviations / Abkürzungen
------------------------------------------------------------------------------*/


/* Blockquotes / Blockzitate
------------------------------------------------------------------------------*/


/* Addresses / Adressen
-----------------------------------------------------------------------------*/
address {
  margin-bottom: 20px;
  font-style: normal;
  line-height: 1.42857143;
}

/*Kontaktbloecke
-----------------------------------------------------------------------------*/
div#content table.persontable{
  margin:0;
  padding: 0 0 0 10px;
}
#main div.personblock.big span.name a{
  font-size: 20px;
  margin-bottom:0;
}
/*Kleiner Personenblock*/
div.personblock {
  padding: 0;
  min-width: 260px;
  background-color: transparent;
  border: none;
  margin-bottom:5px;
}
/*grosser Personenblock*/
div.personblock.big {
  max-width: 100%;
  position: relative;
  padding: 20px;
  background-color: #eeeeee;
  border: 1px solid #dddddd;
}
/*Topnavigation
-----------------------------------------------------------------------------*/
/*mit Hochschule buendig setzen
#topnavigation {
  left:376px;
}
*/
/*Buttons*/
.btn {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.btn:hover,
.btn:focus,
.btn.focus {
  color: #333;
  text-decoration: none;
}
.btn:active,
.btn.active {
  background-image: none;
  outline: 0;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
          box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
}
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  pointer-events: none;
  cursor: not-allowed;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
          box-shadow: none;
  opacity: .65;
}
.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}
.btn-default:hover,
.btn-default:focus,
.btn-default.focus,
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  background-image: none;
}
.btn-default.disabled,
.btn-default[disabled],
fieldset[disabled] .btn-default,
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled.focus,
.btn-default[disabled].focus,
fieldset[disabled] .btn-default.focus,
.btn-default.disabled:active,
.btn-default[disabled]:active,
fieldset[disabled] .btn-default:active,
.btn-default.disabled.active,
.btn-default[disabled].active,
fieldset[disabled] .btn-default.active {
  background-color: #fff;
  border-color: #ccc;
}
.btn-default .badge {
  color: #fff;
  background-color: #333;
}
/* Tab-Elemente */
/* accordion */
div.accordioncontent {
  margin-bottom: 15px;
}
ul.accordion li {
  margin-bottom:15px !important;
}
ul.accordion li li {
  margin-bottom:5px !important;
}

/*Submenu*/
#content ul.csc-menu:after {
  content: ".";
  visibility: hidden;
  height: 0;
  clear: both;
  display: block;
}
#content ul.csc-menu {
  margin-top: 20px;
  margin-bottom: 20px;
  list-style-type: none;
  padding-left:0;
  padding-right:0;
  border-bottom: 3px solid #e53434;
  box-shadow: 0 5px 10px -7px #000000;
}
#content ul.csc-menu > li:first-child {
  margin-left:0;
}
#content ul.csc-menu > li{
  float: left;
  margin-bottom:0;
  margin-right: 1px;
  text-align: center;
}

#content ul.csc-menu > li a{
  display: block;
  margin-bottom:0;
  padding: 5px 0 2px 0;
  padding-right: 10px;
  padding-left: 10px;
  border-radius: 5px 5px 0 0;
  color: #000000;
  background-color: #d9dadb;
  font-size: 14px;
}
#content ul.csc-menu > li a.active{
  padding: 8px 0 5px 0;
  font-size: 14px;
  color: #ffffff;
  background-color: #e53434;
}
/*Bilder**************************************************************** */
#content img,
.content img{border:0;}

.img_border {
    border: 1px solid #d9dadb;
}

/* Hilfsklassen **************************************************************** */
.lastElementInTab{
  margin-bottom:15px;
}
/* Code **************************************************************** */

/* Tables / Tabellen **************************************************************** */
/*div#content table {
    margin-bottom: 20px;
    margin-bottom: 1.250rem;
}*/
div#content div.table-responsive table {
  min-width: 400px;
  white-space: normal !important;
}
.tdwidthzehn {
  width: 10%;
}
.tdwidthzehnpx {
  width: 10px;
}
.tdwidthsiebzehn {
  width: 17%;
}
.tdwidthdreiunddreissig {
  width: 33%;
}
.tdwidthfuenf {
  width: 5%;
}
.tdwidthfuenfzigpx {
  width: 50px;
}
.tdwidthhundertpx {
  width: 100px;
}
.tdwidthweihundertpx {
  width: 200px;
}
.tdwidthdreihundertpx {
  width: 300px;
}
/*dataTables*/
/*Aussencontainer*/
.dataTables_wrapper {
  margin-top: 30px;
}
/*Tabellen-Container ohne Suchfelder*/
.dataTables_scroll {
  padding-top:20px;
  padding-bottom:10px;
}
.dataTables_scrollHead{
  margin-bottom:5px;
}
/*Kopfzeile*/
table.dataTable thead th,
table.dataTable thead td {
padding-top: 10px;
padding-right: 25px;
padding-bottom: 10px;
padding-left: 10px;
border-bottom: 2px solid #d9dadb;
}
table.dataTable thead th:focus-visible {
  background-color: #e4003a;
  color: #FFF;

  &:after {
    display: none;
  }
}
/*Sortierpfeile*/
table.dataTable thead .sorting{
 background-repeat: no-repeat;
 background-position: 100% 10px;
}

table.dataTable thead .sorting_desc{
 background-repeat: no-repeat;
 background-position: 100% 10px;
}
/*Tabellenkoerper*/
table.dataTable tbody th,
table.dataTable tbody td{
 padding: 8px;
 line-height: 1.42857143;
 vertical-align: top;
 border-top: 1px solid #d9dadb;
}
table.dataTable tbody > tr:first-child > th,
table.dataTable tbody > tr:first-child > th,
table.dataTable tbody > tr:first-child > th,
table.dataTable tbody > tr:first-child > td,
table.dataTable tbody > tr:first-child > td,
table.dataTable tbody > tr:first-child > td {
  border-top: 0;
}
/*Linie unter Tabelle*/
.dataTables_wrapper.no-footer .dataTables_scrollBody {
  border-bottom: 2px solid #d9dadb;
}
/*Pagination*/
.dataTables_wrapper .dataTables_paginate{
  padding-top:0.25em;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active{
  /*font-size:12px !important;*/
}
/*Button*/
.dataTables_wrapper .dataTables_paginate .paginate_button{
  padding: 0.25em 0.5em;
}
/* Studienverlauf */
table.table-studienverlauf{
    width: 100%;
    max-width: 100%;
}
.table-studienverlauf > tbody > tr:hover {
    background-color: #d9dadb;
}
.table-studienverlauf > thead > tr > th,
.table-studienverlauf > tbody > tr > th,
.table-studienverlauf > tfoot > tr > th,
.table-studienverlauf > thead > tr > td,
.table-studienverlauf > tbody > tr > td,
.table-studienverlauf > tfoot > tr > td {
  background-color: #ff9933;
  border: 2px solid #fff;
}
.table-studienverlauf > thead > tr > td,
.table-studienverlauf > tbody > tr > td,
.table-studienverlauf > tfoot > tr > td {
  text-align: center;
  vertical-align: middle;
}
table.table-studienverlauf a {
    color: #000 !important;
}
table.table-studienverlauf a:active {
    text-decoration: underline;
}
table.table-studienverlauf a:hover {
    text-decoration: underline;
}

/* Studienverlauf EI */
table.studienverlaufEI{
  width:100%;
}

/*Seitenmenu*/
#main #sidebar ul.fourthnavigation {
  padding-left:0;
  padding-top:8px;
}
#main #sidebar ul.fourthnavigation li {
  margin-left: 14px;
  line-height: 0.8em;
}
#main #sidebar ul.fourthnavigation li a {
  font-size: 11px;
}

.content .csc-header-n2 h1 ,
#content .csc-header-n2 h1 {
  margin-top: 10px;
}
  .halfwidth,
  .quarterwidth,
  .tenwidth{
    display:block;
    float:left;
  }
  .halfwidth{
        width:50%;
  }
  .quarterwidth{
    width:25%;
  }
.tenwidth{width:10%}

/* BUTTONS ************************************************************** */
.btn {
  -moz-user-select: none;
    border-radius: 4px;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857;
    margin-bottom: 2px;
    padding: 6px 12px;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.15) inset, 0 1px 1px rgba(0, 0, 0, 0.075);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
}
.btn-rot {
    background-color: #e4003a;
    background-repeat: repeat-x;
    border-radius: 0;
    color: #fff !important;
    text-decoration: none !important;
}
.btn-div a  {
}
.btn-div a:hover {
  background-repeat: repeat-x;
}

.btn-div a:active  {
    background-image: linear-gradient(to bottom, #e53434 0px, #bf2e2b 100%);
    background-repeat: repeat-x;
    border-color: #b92c28;
}

/* INTERAKTIVER HEADER ************************************************************** */
.headerwechsler .text {
  background-color: rgba(52, 52, 52, 0.75);
  bottom: 0;
  /*border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;*/
  left: 15px;
  line-height: 1.6em;
  padding: 5px 10px 0 10px;
  position: absolute;
  width: 400px !important;
}

.text h3 {
  font-size: 18px;
  font-weight: normal;
  margin-bottom: 0;
  padding-bottom: 0;
}

.text a {
  margin: 0 5px 10px 0;
}
/*Personal-Detailseite
------------------------------------------------------------------------------*/
div.tx-pm_personaldatenbank span.titel + span.titel { margin-left: 5px; }

/*Kontaktdaten*/
/*mobile*/
div.tx-pm_personaldatenbank div.list {
  margin-top: 5px!important;
  padding-left: 15px;
}
/*Desktop*/
@media screen and (min-width: 768px){
  div.tx-pm_personaldatenbank div.list {
    margin: 0!important;
  }
}

div.tx-pm_personaldatenbank div.row {
  padding-top: 5px;
  padding-bottom: 0;
}
/* labels**********************************************/
/*mobile*/
div.tx-pm_personaldatenbank div.list div.caption,
div.tx-pm_personaldatenbank span.years {
  display: block;
  width: 100%;
  margin-right: 0;
  padding-bottom: 5px;
  padding-top: 10px;
}
/*Desktop*/
@media screen and (min-width: 768px){
  div.tx-pm_personaldatenbank div.list div.caption,
  div.tx-pm_personaldatenbank span.years {
    display: inline-block;
    width: 80px;
    margin-right: 10px;
    padding-bottom:0;
    padding-top:0;
  }
}

/*.area Strukturbereiche*/
/* Linie oberhalb der Strukturelemente*/
div.tx-pm_personaldatenbank div.area {
  margin: 10px 0 10px 0;
  border-top: 1px solid #eeeeee;
  padding-bottom: 5px;
  padding-top: 20px;
}

/* Akkordeons und Organisation keine Linie*/
div.tx-pm_personaldatenbank div.area.bio,
div.tx-pm_personaldatenbank div.area.publikation{
  border-top: none!important;
  padding-top: 5px;
}

/*Zeilen in Bio/Publikationen*/
div.tx-pm_personaldatenbank div.entries > div.row {
  border-bottom: 1px solid #eeeeee;
  padding: 10px 6px !important;
}

/*Details****************************************************/
/*mobile*/
div.tx-pm_personaldatenbank div.area.bio div.details,
div.tx-pm_personaldatenbank div.area.publikation div.details {
  float: none;
  width: 100%;
  padding-top: 5px;
}

/*Desktop*/
@media screen and (min-width: 768px){
  div.tx-pm_personaldatenbank div.area.bio div.details,
  div.tx-pm_personaldatenbank div.area.publikation div.details {
    float: right;
    width: calc(100% - 90px);
    padding-top:0;
  }
}

/*Trenner auf Personaldetailseite*/
div.tx-pm_personaldatenbank hr {
  border-top: 1px solid #eeeeee;
}

/*News
------------------------------------------------------------------------------*/
/*Teaser auf News-Detail-Seite groesser*/
.news.news-single .teaser-text {
  font-size: 18px;
  color: #000;
}

#cboxTitle {
  display: none !important;
}

/*Aenderungen durch FH Luebeck
------------------------------------------------------------------------------*/
/*Blendet die h2 der Quicklinks auf Startseite aus, 09.05.2017 /bas */
#c1 h2 {
  display:none;
}



/** pager */
ul.f3-widget-paginator { clear: both; display: table; float: none; list-style: none; margin: 30px auto 0; padding: 0 100px; position: relative; }
ul.f3-widget-paginator li { font-weight: bold; float: left; margin: 0 0 0 5px; }
ul.f3-widget-paginator li::before { display: none; }
ul.f3-widget-paginator li:first-child { margin-left: 0; }
ul.f3-widget-paginator li a { padding: 0 5px; }
ul.f3-widget-paginator li a:hover {}
ul.f3-widget-paginator li.current { cursor: default; padding: 0 5px; }
ul.f3-widget-paginator li.current:first-child { margin-left: 5px; }
ul.f3-widget-paginator li.current:last-child {}
ul.f3-widget-paginator li.previous { text-align: left; left: 0; }
ul.f3-widget-paginator li.next { text-align: right; right: 0; }
ul.f3-widget-paginator li.previous,
ul.f3-widget-paginator li.next { float: none; margin: 0; position: absolute; width: 80px; }
ul.f3-widget-paginator li.previous a,
ul.f3-widget-paginator li.next a { padding: 0; }
ul.f3-widget-paginator li.previous::before,
ul.f3-widget-paginator li.next:after { display: inline-block; font-family: FontAwesome; font-size: 18px; line-height: 1; position: relative; top: 1px; }
ul.f3-widget-paginator li.previous::before { content: "\f104"; margin-right: 10px; }
ul.f3-widget-paginator li.next::after { content: "\f105"; margin-left: 10px; }

/* page-navigation */
.news-list-view .page-navigation { margin: 0; }
.news-list-view .page-navigation:first-child { margin-bottom: 40px; }
.news-list-view .article  + .page-navigation {}
.news-list-view .page-navigation p { float: none; text-align: left; }

.page-navigation .paginate { margin-top: 10px; overflow: hidden; }
.page-navigation .previous { float: left; }
.page-navigation .next { float: right; }
.page-navigation .paginate a { border: none; text-decoration: none; }
.page-navigation .paginate a:hover { color: #E4003A; }
.page-navigation .previous > span,
.page-navigation .next > span { cursor: default; }
.page-navigation .previous span::before,
.page-navigation .next span::after { color: #E4003A; display: inline-block; font-family: FontAwesome; font-size: 18px; line-height: 1; position: relative; top: 2px; }
.page-navigation .previous span::before { content: "\f104"; margin-right: 15px; }
.page-navigation .next span::after { content: "\f105"; margin-left: 15px; }

#content .news .page-navigation ul { float: none; margin: -20px auto 0; padding: 0 100px; }
.news .page-navigation ul li {}
.news .page-navigation ul li span { padding: 0 5px; }
.news .page-navigation ul li a { text-decoration: none; }
.news .page-navigation ul li a:hover { color: #E4003A; }
.news .page-navigation .lessPages,
.news .page-navigation .morePages { cursor: default; }
.news .page-navigation .current { color: #E4003A; cursor: default; }
@media screen and (max-width: 479px) {
	#content .news .page-navigation ul { margin-top: 10px; padding: 0; }
}
.borderred{
  border: 1px solid #e4003a !important;
  padding-left: 0.8rem;
  padding-right: 0.8rem;
  padding-top: 0.5rem;
  padding-bottom: 0.2rem;
  margin-bottom:15px;
}

.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}
.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

/** eof */
