@font-face {
  font-family: "Roboto";
  src: url("fonts/Roboto-Regular.woff2");
  font-weight:400;
}
@font-face {
  font-family: "Roboto";
  src: url("fonts/Roboto-Bold.woff2");
  font-weight:600;
}
@font-face {
  font-family: "Exo";
  src: url("fonts/Exo-Bold.woff2");
  font-weight:600;
}
* {
    font-family: "Roboto", Arial, Helvetica, sans-serif;
}
h1, h2, h3, h4 {
	font-family: Exo;
	font-weight: 600;
}

.indent {
    margin-left: 20px;
}

html {
    height: 100%;
}

body {
    margin: 0px;
    height: 100%;
}

div.bannerDiv {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
}

div.contentDiv {
    overflow: hidden;
    position: absolute;
    top: 130px;
    bottom: 0;
    width: 100%;
}

div.logoDiv {
    display: inline-block;
    width: 100%;
}

img.logo {
    float: left;
}

/* UML-Grafiken */
img {
    width: 100%;
    max-width: 1200px;
    height: auto;
}

header {
    background-image: url(./img/logo.jpg);
    background-repeat: no-repeat;
    margin: 10px;
    width: 100%;
    z-index: 10;
    vertical-align: middle;
}

a:link {
    text-decoration: none;
    border-bottom: none;
    color: #337ab7;
}

a:visited {
    text-decoration: none;
    color: #337ab7;
}

a:hover,
a:focus {
    text-decoration: none;
    border-bottom: none;
    color: black;
}

a:active {
    text-decoration: none;
    border-bottom: none;
    color: black;
}

h1.sidepanel {
    font-size: 1em;
    padding-left: 3px;
}


h1.banner {
    vertical-align: bottom;
    text-align: center;
    height: 130px;
    padding-top: 30px;
}

h2.sidepanel {
    font-size: 1em;
    padding-left: 3px;
}

/* Schriftgröße und Zeilenumbruch für linke Tabellenzellen */
li {
    margin-bottom: 2px;
    font-size: 0.9em;
    overflow-wrap: break-word
}

p {
    margin-top: 0px;
    margin-bottom: 4px;
}

p.title {
    font-weight: bold;
}

/* evtl. Schriftgröße für breite Tabellenzelle rechts*/
tr {
    vertical-align: top;
    border-bottom: 1px solid #aaa;
}

.inheritedProperty {
    background-color: #FFF;
}

.directlyOwnedProperty {
    background-color: #EEEFFC;
}

td,
th {
    text-align: left;
    vertical-align: top;
}

table.colored {
    width: 100%;
    border-collapse: collapse;
  }
  
  /*table.colored tr:nth-child(odd) {
    background-color: #f5f5f5;
  }*/
  
  table.colored th,
  table.colored td {
    padding: 10px;
    text-align: left;
  }
  
  /* Hover style */
  table.colored tr:hover {
    background-color: #e6e6e6;
  }

  /* inherited data */
  .inheritedProperty td:first-child::before {
    content: "";
    width: 24px;
    height: 12px;
    display: inline-block;
    background: url(img/inherited.png) no-repeat;
    margin-right: .625em;
  }
  
  /* Pseudo-element for table cell borders
  table.colored td:before {
    content: "";
    display: block;
    height: 100%;
    border-left: 1px solid #ccc;
    border-top: 1px solid #ccc;
    position: absolute;
    top: 0;
    left: -1px;
  }
  
  /* Pseudo-element for table cell borders - first column
  table.colored td:first-child:before {
    border-left: none;
  }
  
  /* Pseudo-element for table cell borders - first row
  table.colored tr:first-child td:before {
    border-top: none;
  } */

table.overallContent {
    table-layout: fixed;
    border: 1px solid;
    border-collapse: collapse;
    padding: 0px;
    width: 100%;
    height: 100%;
}

td.contentCell {
    padding-left: 10px;
    border: 1px solid;
    width: 80%;
    height: 100%;
}

iframe {
    border: 0px;
    margin: 0px;
    width: 100%;
    height: 100%;
}

/* new css */
ul {
    padding-left: 0;
    list-style: none;
}
ul li {
    margin-bottom:0;
}
ul li a {
    padding: 0.5em;
    border-bottom: 1px solid #afbbcf;
    margin-bottom: 0;
    display: block;
}
ul li a:hover {
    background: #dde4e4;
}
/* width */
::-webkit-scrollbar {
    width: 8px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #f1f1f1; 
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #888; 
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #555; 
  }