/* 
  style.css contains a reset, font normalization and some base styles.
  credit is left where credit is due.
  additionally, much inspiration was taken from these projects:
    yui.yahooapis.com/2.8.1/build/base/base.css
    camendesign.com/design/
    praegnanz.de/weblog/htmlcssjs-kickstart
*/
/* 
  html5doctor.com Reset Stylesheet (Eric Meyer's Reset Reloaded + HTML5 baseline)
  v1.4 2009-07-27 | Authors: Eric Meyer & Richard Clark
  html5doctor.com/html-5-reset-stylesheet/
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i, p,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, figure, footer, header,
hgroup, menu, nav, section, menu,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent; }

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

html {
  overflow-x: hidden; }

nav ul {
  list-style: none; }

ul, ol, li {
  text-align: left; }

blockquote, q {
  quotes: none; }

a {
  margin: 0;
  padding: 0;
  font-size: 15px;
  vertical-align: baseline;
  background: transparent;
  outline: 0; }

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none; }

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold; }

del {
  text-decoration: line-through; }

abbr[title], dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help; }

/* tables still need cellspacing="0" in the markup */
table {
  border-collapse: collapse;
  border-spacing: 0; }

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0; }

input, select {
  vertical-align: middle; }

/* END RESET CSS */
/*
fonts.css from the YUI Library: developer.yahoo.com/yui/
          Please refer to developer.yahoo.com/yui/fonts/ for font sizing percentages

There are three custom edits:
 * remove arial, helvetica from explicit font stack
 * make the line-height relative and unit-less
 * remove the pre, code styles
*/
body {
  font: 13px/1.231 sans-serif;
  *font-size: small;
  line-height: 1.22; }

select, input, textarea, button {
  font: 99% sans-serif; }

/* normalize monospace sizing 
 * en.wikipedia.org/wiki/MediaWiki_talk:Common.css/Archive_11#Teletype_style_fix_for_Chrome
 */
pre, code, kbd, samp {
  font-family: monospace, sans-serif; }

/* 
 * minimal base styles 
 */
/* #444 looks better than black: twitter.com/H_FJ/statuses/11800719859 */
body, select, input, textarea {
  color: #444; }

/* Headers (h1,h2,etc) have no default font-size or margin,
   you'll want to define those yourself. */
h1, h2, h3, h4, h5, h6 {
  font-weight: bold; }

/* always force a scrollbar in non-IE */
/* html { overflow-y: scroll; } */
/* Accessible focus treatment: people.opera.com/patrickl/experiments/keyboard/test */
a:hover, a:active {
  outline: none; }

a, a:active {
  color: #607890; }

a:hover {
  color: #036; }

ul {
  list-style-type: none; }

ol {
  margin-left: 30px;
  list-style-type: decimal; }

small {
  font-size: 85%; }

strong, th {
  font-weight: bold; }

td, td img {
  vertical-align: top; }

sub {
  vertical-align: sub;
  font-size: smaller; }

sup {
  vertical-align: super;
  font-size: smaller; }

pre {
  padding: 15px;
  /* www.pathf.com/blogs/2008/05/formatting-quoted-code-in-blog-posts-css21-white-space-pre-wrap/ */
  white-space: pre;
  /* CSS2 */
  white-space: pre-wrap;
  /* CSS 2.1 */
  white-space: pre-line;
  /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word;
  /* IE */ }

textarea {
  overflow: auto; }

/* align checkboxes, radios, text inputs with their label
   by: Thierry Koblentz tjkdesign.com/ez-css/css/base.css  */
input[type="radio"] {
  vertical-align: text-bottom; }

input[type="checkbox"] {
  vertical-align: bottom; }

.ie7 input[type="checkbox"] {
  vertical-align: baseline; }

.ie6 input {
  vertical-align: text-bottom; }

/* hand cursor on clickable input elements */
label, input[type=button], input[type=submit], button {
  cursor: pointer; }

/* webkit browsers add a 2px margin outside the chrome of form elements */
button, input, select, textarea {
  margin: 0; }

/* These selection declarations have to be separate.
   No text-shadow: twitter.com/miketaylr/status/12228805301 
   Also: hot pink. */
::-moz-selection {
  background: #FF5E99;
  color: #fff;
  text-shadow: none; }

::selection {
  background: #FF5E99;
  color: #fff;
  text-shadow: none; }

/*  j.mp/webkit-tap-highlight-color */
a:link {
  -webkit-tap-highlight-color: #FF5E99; }

/* make buttons play nice in IE:    
   www.viget.com/inspire/styling-the-button-element-in-internet-explorer/ */
button {
  width: auto;
  overflow: visible; }

/* bicubic resizing for non-native sized IMG: 
   code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/ */
.ie7 img {
  -ms-interpolation-mode: bicubic; }

/* 
 * Non-semantic helper classes 
 */
/* for image replacement */
.ir {
  display: block;
  text-indent: -999em;
  overflow: hidden;
  background-repeat: no-repeat;
  text-align: left;
  direction: ltr; }

/* Hide for both screenreaders and browsers
   css-discuss.incutio.com/wiki/Screenreader_Visibility */
.hidden {
  display: none;
  visibility: hidden; }

/* Hide only visually, but have it available for screenreaders 
   www.webaim.org/techniques/css/invisiblecontent/ 
   Solution from: j.mp/visuallyhidden - Thanks Jonathan Neal! */
.visuallyhidden {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px); }

/* Hide visually and from screenreaders, but maintain layout */
.invisible {
  visibility: hidden; }

/* >> The Magnificent CLEARFIX << j.mp/phayesclearfix */
.clearfix:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden; }

/* Fix clearfix: blueprintcss.lighthouseapp.com/projects/15318/tickets/5-extra-margin-padding-bottom-of-page */
.clearfix {
  zoom: 1; }

.slidetabber .tabs li {
  float: left;
  display: block;
  list-style: none;
  margin: 0 34px 32px 0;
  position: relative; }
  .slidetabber .tabs li a {
    display: block;
    width: 130px;
    height: 130px; }
  .slidetabber .tabs li img {
    display: none; }
  .slidetabber .tabs li .pointer {
    background: #0077b5;
    display: none;
    width: 23px;
    height: 23px;
    position: absolute;
    left: 49px;
    top: 150px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg); }
  .slidetabber .tabs li:last-child {
    margin-right: 0; }
  .slidetabber .tabs li:hover img {
    display: block; }
  .slidetabber .tabs li.active img {
    display: block; }
  .slidetabber .tabs li.active .pointer {
    display: block; }
.slidetabber .containers {
  clear: both;
  margin-bottom: 30px; }
  .slidetabber .containers .content {
    text-align: left;
    display: none;
    background: #0077b5;
    padding: 22px 25px 19px 25px;
    color: #FFF; }
    .slidetabber .containers .content h1 {
      font-family: Georgia, serif;
      color: #FFF;
      font-size: 1.5em; }
    .slidetabber .containers .content article {
      -moz-column-count: 3;
      -moz-column-gap: 30px;
      -moz-column-width: 257px;
      -webkit-column-count: 3;
      -webkit-column-width: 257px;
      -webkit-column-gap: 30px;
      column-count: 3;
      column-gap: 30px;
      column-width: 257px; }
    .slidetabber .containers .content nav {
      text-align: center; }
      .slidetabber .containers .content nav a {
        margin: 0 3px;
        border: solid 10px;
        color: #888;
        height: 0;
        width: 0;
        display: inline-block; }
        .slidetabber .containers .content nav a.botton {
          border-width: 5px;
          border-radius: 25px; }
        .slidetabber .containers .content nav a.prev {
          border-left: none;
          border-top: 5px solid transparent;
          border-bottom: 5px solid transparent; }
        .slidetabber .containers .content nav a.next {
          border-right: none;
          border-top: 5px solid transparent;
          border-bottom: 5px solid transparent; }
        .slidetabber .containers .content nav a.active {
          color: #FFF; }
        .slidetabber .containers .content nav a.selected, .slidetabber .containers .content nav a.active:hover {
          color: #ff9b23; }

/* here I override the boilerplate and use Blueprint.css typography settings, for now */
body {
  color: #828282;
  background: rbga(255, 255, 255, 1);
  font-family: Georgia, serif;
  line-height: 1.5;
  font-size: 15px;
  text-align: justify;
  min-width: 1000px; }
  body > header {
    position: relative;
    height: 265px;
    background: url(images/header-background-small.jpg) center bottom no-repeat; }
    body > header #menu-meta-menu {
      text-align: right;
      margin: 0 auto;
      width: 950px; }
      body > header #menu-meta-menu li {
        display: inline;
        padding-right: 17px;
        background: url(images/sprite.png) right -1px no-repeat; }
        body > header #menu-meta-menu li a {
          color: #828282;
          font-family: Arial, Helvetica, sans-serif;
          line-height: 1em;
          font-size: 11px;
          font-weight: bold; }
          body > header #menu-meta-menu li a:hover {
            color: #0077B5; }
          body > header #menu-meta-menu li a[href^="http"] {
            color: #0077B5; }
        body > header #menu-meta-menu li:last-child {
          padding-right: 0;
          background: none; }
    body > header .logo-container {
      position: relative;
      width: 950px;
      margin: 0 auto; }
      body > header .logo-container #logo {
        display: inline-block;
        height: 70px;
        width: 178px;
        background-image: url("images/logo.png"); }
      body > header .logo-container .column {
        display: inline-block;
        vertical-align: bottom; }
        body > header .logo-container .column.left {
          width: 178px; }
        body > header .logo-container .column.right {
          width: 772px; }
      body > header .logo-container #blog-description p {
        color: #828282;
        font-family: Georgia, serif;
        font-size: 11px;
        line-height: 1.22em;
        font-weight: normal;
        background: url(images/header_divider.png) center left no-repeat;
        padding: 16px;
        margin: 0;
        width: 300px; }

h1, h2, h3, h4, h5, h6 {
  text-align: left; }

#container {
  overflow: hidden; }

a {
  text-decoration: none;
  color: #ff9b23; }
  a.pdf {
    display: block;
    font-size: 1.5em;
    margin-bottom: 1em;
    line-height: 1.25em;
    backfground: url(http://network.virtual-liver.de/en/wp-content/themes/vln-new-design/pdf.png) top left no-repeat;
    padding-left: 60px; }
  a.news {
    display: block;
    font-size: 1.5em;
    margin-bottom: 1em;
    line-height: 1.25em;
    background: url(http://network.virtual-liver.de/en/wp-content/themes/vln-new-design/news.png) top left no-repeat;
    padding-left: 60px; }

p, h2, li {
  margin-bottom: 0.75em; }

p:last-child {
  margin-bottom: 0; }

blockquote {
  position: relative;
  padding-left: 20px;
  font-size: 1.3em;
  margin-bottom: 1em;
  font-style: italic;
  line-height: 1.25em; }
  blockquote:before {
    content: '\201C';
    position: absolute;
    font-size: 2em;
    line-height: 1;
    color: #0077B5;
    left: 0;
    height: 0px; }
  blockquote:after {
    display: inline-block;
    content: '\201D';
    font-size: 2em;
    line-height: 1;
    color: #0077B5;
    vertical-align: top;
    height: 0px; }

em {
  color: #646464; }

p.caption {
  padding-left: 20px; }

span.ldquo {
  left: 0;
  top: 0em; }

.feature {
  font-size: 1.2em;
  line-height: 1.4em; }

header .intro {
  display: block;
  clear: both;
  width: 950px;
  margin: 0 auto;
  padding-top: 52px;
  color: #fff;
  font-size: 1.3em;
  text-align: left; }
  header .intro * {
    width: 550px; }
  header .intro h1 {
    font-size: 30px;
    color: #91d9ff; }
  header .intro p {
    display: none;
    margin-top: 10px;
    line-height: 1.4; }

.home header {
  height: 415px;
  background: url(images/header-background.jpg) center bottom no-repeat; }
  .home header .intro {
    padding-top: 30px; }
    .home header .intro p {
      display: block; }

header.entry-header {
  background: none; }

header.short {
  height: 130px;
  background: none; }

header nav#main-navigation {
  position: absolute;
  bottom: 0;
  width: 100%; }

header nav#main-navigation ul {
  width: 950px;
  margin: 0 auto; }

header nav#main-navigation ul li {
  float: left;
  margin: 0 10px 0 0; }

header nav#main-navigation ul li ul.children {
  display: none; }

header nav#main-navigation ul li a {
  position: relative;
  display: block;
  width: 130px;
  padding: 13px 0;
  font-family: Nobile, Arial, Helvetica, sans-serif;
  color: #fff;
  background-color: #103c64;
  font-size: 1.1em;
  text-align: center;
  border-bottom: none; }

header nav#main-navigation ul li a:hover {
  color: #91d9ff; }

header nav#main-navigation ul li.current_page_item a {
  background-color: #fff;
  color: #0077B5; }

h1 {
  color: #0077B5;
  font-family: Nobile, Arial, Helvetica, sans-serif;
  font-size: 26px;
  margin-bottom: 10px; }

h1.entry-title a {
  color: #0077B5;
  font-family: Nobile, Arial, Helvetica, sans-serif;
  font-size: 26px;
  margin-bottom: 10px; }

.entry-meta {
  margin-bottom: 1.5em; }

blockquote.smaller {
  font-size: 1.4em; }

h1.smaller {
  font-size: 23px; }

.sponsor {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  height: 1px;
  margin-bottom: -1px; }

.container {
  width: 950px;
  margin: 0 auto;
  position: relative; }

.sponsor h3 {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 11px;
  font-weight: normal;
  padding: 4px;
  vertical-align: top; }

.sponsor h3 .bmbf {
  overflow: hidden;
  height: 49px;
  width: 150px;
  display: block;
  background: url(http://network.virtual-liver.de/en/wp-content/themes/vln-new-design/images/bmbf-logo.png);
  background-repeat: no-repeat;
  vertical-align: top;
  text-indent: -400px; }

#main {
  background-color: #fff;
  min-height: 100px;
  position: relative; }

#primary {
  float: left;
  background: none;
  margin-bottom: 0;
  padding-bottom: 0;
  padding-right: 40px;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 66%; }

#secondary {
  float: left;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding-top: 30px;
  width: 33%; }

section {
  clear: both;
  margin: 0 auto;
  margin-bottom: 35px;
  padding-bottom: 63px; }

section {
  background: url(images/horizontal-divider.png) bottom center no-repeat; }
  section:last-child {
    background: none;
    padding-bottom: 0px;
    margin-bottom: 0px; }

nav + section, #primary section:first-child {
  padding-top: 30px; }

#primary section:last-child {
  margin-bottom: 30px; }

.subpage-nav {
  padding-top: 15px;
  padding-bottom: 25px;
  position: absolute;
  top: 0;
  display: block;
  width: 950px;
  background: url(images/bg_submenu.png) bottom center no-repeat;
  z-index: 1000; }
  .subpage-nav a {
    margin-right: 40px;
    color: #828282;
    font-family: Arial, sans-serif;
    font-size: 17px; }
    .subpage-nav a:hover {
      color: #0077b5; }
  .subpage-nav + section {
    padding-top: 87px; }
  .subpage-nav.fixed {
    position: fixed; }

footer {
  color: #fff;
  background-color: #005d8e;
  clear: both;
  margin-top: 30px;
  padding-top: 50px;
  padding-bottom: 47px; }
  footer section {
    width: 950px;
    background: none;
    padding-bottom: 0;
    display: block; }
    footer section > div {
      float: left;
      margin-right: 20px;
      width: 303.33333px; }
      footer section > div:last-child {
        margin-right: 0; }
  footer ul {
    margin: 1em 0; }
  footer li {
    margin: 0; }
    footer li::before {
      content: '> ';
      font-weight: bold;
      color: #ff9b23;
      font-size: 0.8em;
      vertical-align: text-top; }
  footer a:hover {
    text-decoration: underline;
    color: #ff9b23; }
  footer #collaboration a {
    height: 89px;
    width: 100%;
    display: block;
    background-repeat: no-repeat;
    background-position: center left; }
    footer #collaboration a[href='http://www.easl.eu/'] {
      background-image: url("images/easl.png"); }
    footer #collaboration a[href='http://www.vph-institute.org/'] {
      background-image: url("images/logo_VPH_Istitute.png"); }

section .column {
  width: 50%;
  float: left; }

section:after, footer:after, header:after, div.video:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  overflow: hidden; }

section.post:last-child {
  padding-bottom: 0; }

section.post aside {
  padding: 10px;
  background-image: url(images/gradient.png); }

section.post aside h1 {
  font-size: 0.8em;
  font-weight: bolder;
  color: #888;
  text-align: left; }

section.post aside p {
  font-size: 0.8em;
  font-style: italic; }

section.post aside a {
  font-style: normal; }

div.video {
  padding-bottom: 0; }

/* based on 902px */
section .left {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 66%;
  padding-right: 40px; }

section .right {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 33%; }

.zoom {
  display: block; }
  .zoom > div {
    float: left;
    margin-right: 40px;
    width: 455px; }
    .zoom > div:last-child {
      margin-right: 0; }
  .zoom .video {
    position: relative;
    text-align: center; }
    .zoom .video .controlls * {
      margin: 0 10px;
      display: inline-block;
      width: 20px;
      height: 25px;
      background-image: url(images/video-sprite.png);
      background-repeat: no-repeat; }
    .zoom .video .controlls button {
      border: none;
      color: transparent;
      padding: 0;
      background-image: url(images/video-sprite.png);
      background-repeat: no-repeat;
      background-position: center 25px;
      background-color: #fff; }
      .zoom .video .controlls button:disabled {
        cursor: default; }
    .zoom .video .controlls .backward {
      background-position: center -12px; }
      .zoom .video .controlls .backward:disabled {
        background-position: center -32px; }
    .zoom .video .controlls .forward {
      background-position: center -52px; }
      .zoom .video .controlls .forward:disabled {
        background-position: center -72px; }
    .zoom .video .controlls .tick {
      background-position: center -112px;
      vertical-align: bottom; }
      .zoom .video .controlls .tick.active {
        background-position: center -92px; }
  .zoom video {
    width: 455px;
    height: 255.9375px; }
  .zoom .loading .video-wrapper {
    position: relative; }
    .zoom .loading .video-wrapper::before {
      -moz-box-sizing: border-box;
      box-sizing: border-box;
      background-image: url(images/load.gif);
      background-position: center 5px;
      background-repeat: no-repeat;
      text-align: center;
      content: "loading";
      display: block;
      position: absolute;
      height: 30%;
      width: 100%;
      top: 35%;
      left: 0;
      color: #fff;
      visibility: visible;
      padding-top: 53px; }
  .zoom .loading button {
    display: none; }

#return-to-top {
  position: fixed;
  margin: 15px;
  margin-left: 475px;
  left: 50%;
  padding: 0 15px;
  width: auto;
  display: none;
  background-position: right -32px;
  background-repeat: no-repeat;
  background-image: url(images/sprite.png); }

.subpage aside * {
  margin-bottom: 0.5em; }
.subpage aside li, .subpage aside p {
  text-align: left;
  font-weight: normal; }
.subpage aside li {
  padding-left: 0.75em; }
  .subpage aside li:before {
    display: inline-block;
    content: "-";
    position: relative;
    right: 0.75em;
    width: 0; }
.subpage aside h1 + p, .subpage aside h2 + p, .subpage aside h3 + p, .subpage aside h4 + p, .subpage aside h5 + p, .subpage aside h6 + p {
  margin-left: 0.5em; }
.subpage aside h1 + ul li, .subpage aside h2 + ul li, .subpage aside h3 + ul li, .subpage aside h4 + ul li, .subpage aside h5 + ul li, .subpage aside h6 + ul li {
  margin-left: 0.5em; }

.vln-video {
  padding-top: 20px; }

#bmbf-logo {
  display: block;
  height: 49px;
  float: right;
  margin: 5px 0 0 10px;
  font-size: 0.65em;
  color: #828282;
  padding-right: 109px;
  background-image: url(images/bpmf-sprite.png);
  background-repeat: no-repeat;
  background-position: right 0px; }

.de #bmbf-logo {
  background-position: right -49px; }

.icon--in {
  height: 32px;
  width: 32px;
  display: inline-block;
  background-image: url("images/linkedin-icon.png"); }

.icon--tw {
  height: 32px;
  width: 32px;
  display: inline-block;
  background-image: url("images/twitter-icon.png"); }

/* Wordpress specific styles
   ======================================== */
/*Search Results*/
.page-header, .entry-header {
  background: none;
  height: auto;
  margin-bottom: 3em; }

.page-header h1 {
  color: #666; }

#content section {
  margin: 0 0 30px 0; }

/* Sidebar */
.widget {
  margin-bottom: 3em; }

.widget ul {
  margin-left: 0; }

.widget li {
  list-style: none;
  border-bottom: 1px dotted #ccc;
  padding: 0.75em 0;
  margin: 0; }

.widget-title {
  font-family: "Nobile", Arial, Helvetica, sans-serif;
  font-size: 1.25em;
  margin-bottom: 0.25em;
  color: #666;
  font-weight: 400; }

/* Search Bar */
#searchform:after {
  content: "";
  clear: both;
  display: block; }

.assistive-text {
  display: block;
  font-family: "Nobile", Arial, Helvetica, sans-serif;
  font-size: 1.25em;
  margin-bottom: 1em;
  color: #666;
  font-weight: 400; }

#s {
  display: block;
  width: 92%;
  padding: 4%;
  font-size: 1em;
  margin-bottom: 0.75em;
  border: 1px solid #ddd;
  background: #f5f5f5;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px; }

#s:focus {
  border: 1px solid #ccc;
  background: #fff; }

#searchform input[type="submit"] {
  margin: 0;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: bold;
  border: 1px solid #ccc;
  background: #eee;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  float: right; }

#searchform input[type="submit"]:hover,
#searchform input[type="submit"]:focus {
  border: 1px solid #bbb;
  background: #e5e5e5; }

#searchform input[type="submit"]:active {
  border: 1px solid #ccc;
  background: #eee; }

/*Paginator*/
#nav-above {
  display: none; }

#nav-single {
  margin-bottom: 30px !important; }

#nav-below {
  margin-bottom: 3em !important; }

#nav-below h3 {
  display: none; }

.nav-previous, .nav-next {
  display: inline; }

.alignleft {
  float: left;
  margin: 0 1.5em 1em 0; }

.post .footer {
  margin-top: 15px;
  padding: 15px 20px;
  background: url(images/gradient.png) top left repeat-x; }

.publication-title {
  font-weight: bold; }

.publication-author {
  font-style: italic; }

.plug {
  background: url(images/gradient.png) repeat-x left top;
  display: inline-block;
  display: table-cell;
  height: 100%;
  width: 33.333%;
  font-size: 13px;
  text-align: left;
  vertical-align: top; }
  .plug h1 {
    color: #0077B5;
    font-family: Nobile, Arial, Helvetica, sans-serif;
    font-size: 26px;
    margin-bottom: 10px;
    line-height: 1.4; }
  .plug p {
    color: #828282; }
    .plug p:after {
      background: url(images/pointer.png) no-repeat;
      display: inline-block;
      height: 1em;
      margin-left: 0.5em;
      width: 13px;
      vertical-align: bottom;
      content: ''; }
  .plug .padding {
    display: block;
    padding: 15px 20px;
    height: 100%;
    border-left: solid 10px #ffffff;
    border-right: solid 10px #ffffff; }
  .plug:first-child .padding {
    border-left: none; }
  .plug:last-child .padding {
    border-right: none; }

#main .network-map {
  position: relative; }
  #main .network-map .map-container {
    position: absolute;
    height: 95%;
    width: 95%;
    top: 2.5%;
    left: 2.5%;
    background-color: #FFF;
    -webkit-box-shadow: #999 0px 0px 18px;
    -moz-box-shadow: #999 0px 0px 18px;
    box-shadow: #999 0px 0px 18px;
    box-sizing: border-box;
    padding: 10px; }
    #main .network-map .map-container .map-canvas {
      height: 90%; }
    #main .network-map .map-container .marker-content {
      overflow: hidden;
      box-sizing: border-box;
      padding-top: 10px;
      height: 10%; }
      #main .network-map .map-container .marker-content .content-container h2 {
        font-size: 1em;
        margin: 0; }
      #main .network-map .map-container .marker-content .content-container .address .name:after {
        content: ', '; }
    #main .network-map .map-container .map-close {
      position: absolute;
      right: 10px;
      top: 10px;
      font-family: arial;
      font-weight: bold;
      line-height: 2em;
      text-align: center;
      width: 60px;
      color: #000;
      background-color: #FFF;
      cursor: pointer; }
  #main .network-map > nav {
    background: url("images/germany.png") no-repeat center;
    width: 570px;
    height: 630px; }
  #main .network-map > aside {
    float: right;
    width: 380px;
    height: 630px; }
    #main .network-map > aside section {
      background-image: none;
      height: 100%;
      width: 100%;
      margin: 0;
      padding: 0;
      position: relative; }
      #main .network-map > aside section > h1 {
        line-height: 26px;
        font-size: 1.5em;
        margin: 0px;
        font-family: georgia; }
      #main .network-map > aside section h2 {
        font-size: 1em; }
      #main .network-map > aside section .openmap {
        padding: 0;
        margin: 0;
        position: absolute;
        top: 0;
        right: 0;
        display: block;
        line-height: 1.5em;
        font-size: 1em; }
      #main .network-map > aside section .accordion .ui-accordion-header {
        border-top: solid 1px #f2f2f2;
        margin: 0.75em 0 0;
        padding: 0.5em 0 0;
        cursor: pointer; }
        #main .network-map > aside section .accordion .ui-accordion-header:before {
          content: "arrowicon";
          background: url("images/spriteMapVLN.png");
          height: 6px;
          width: 11px;
          margin-right: 0.5em;
          display: inline-block;
          vertical-align: middle;
          color: transparent;
          background-position: 30px 0; }
        #main .network-map > aside section .accordion .ui-accordion-header:hover {
          color: #0077B5; }
          #main .network-map > aside section .accordion .ui-accordion-header:hover:before {
            background-position-x: 45px; }
        #main .network-map > aside section .accordion .ui-accordion-header.ui-state-active {
          color: #0077B5; }
          #main .network-map > aside section .accordion .ui-accordion-header.ui-state-active:before {
            background-position-x: 60px; }
      #main .network-map > aside section .accordion .ui-accordion-content {
        padding: 0.5em 0 0; }
      #main .network-map > aside section article {
        text-align: left;
        margin: 0;
        padding: 0;
        line-height: 1.5em; }
        #main .network-map > aside section article .address {
          margin-top: 1em;
          line-height: 1.5em; }
          #main .network-map > aside section article .address span {
            margin: 0;
            display: block; }
          #main .network-map > aside section article .address .name {
            font-weight: bold; }
  #main .network-map .marker {
    position: absolute;
    height: 24px;
    margin-left: -12px;
    margin-top: -12px;
    padding-left: 30px;
    line-height: 24px;
    background: url(images/dots-vertical.png) no-repeat 0 0;
    top: -12px;
    left: -12px;
    opacity: 0.75;
    color: #607890; }
    #main .network-map .marker:hover {
      background-position: 0 -24px;
      color: #000000;
      z-index: 50; }
    #main .network-map .marker.active {
      background-position: 0 -24px;
      color: #000000; }
    #main .network-map .marker label {
      position: absolute;
      left: 30px;
      bottom: 5px;
      opacity: 1; }

.scientific a {
  height: 130px;
  width: 130px; }

.scientific {
  background-image: url(images/scientific/sprite-bw.png); }

.scientific:hover, .scientific.active {
  background-image: url(images/scientific/sprite.png); }

#tabContainer {
  width: 884px;
  min-height: 340px;
  _height: 340px;
  color: #fff; }
  #tabContainer .tabContent {
    background: #0077b5;
    width: 834px;
    padding: 22px 25px 19px 25px; }
    #tabContainer .tabContent h2 {
      color: #fff;
      font-size: 1.5em; }
    #tabContainer .tabContent .col {
      width: 257px;
      float: left;
      margin-right: 32px; }
    #tabContainer .tabContent .last {
      margin: 0; }
    #tabContainer .tabContent .article {
      -moz-column-width: 257px;
      -webkit-column-width: 257px;
      column-count: 3;
      column-gap: 30px;
      column-width: 257px;
      -moz-column-gap: 30px;
      -webkit-column-gap: 30px;
      -moz-column-count: 3;
      -webkit-column-count: 3; }
      #tabContainer .tabContent .article .pointer {
        display: block; }
    #tabContainer .tabContent .pagebreak {
      border: 0;
      border-bottom: 1px solid #fff; }
    #tabContainer .tabContent, #tabContainer .tabContent .csscolumns {
      display: none; }

.no-csstransforms .pointer {
  top: 150px;
  left: 49px; }

.no-csstransforms .pointholder .point {
  top: -20.707106781px;
  left: 11px; }

.workleader {
  background: url(images/workleader/sprite.jpg) no-repeat; }

/* 'Return To Top' links for iOS */
.top-link {
  display: none; }

.mobile-webkit-fix .top-link {
  display: block;
  text-align: right; }

/* Scientific */
.article h1 {
  font-family: 'Georgia', serif; }

.slideContent h1 {
  color: #fff;
  font-size: 1.5em; }

.workleader:hover {
  background: none; }

.workleader:hover img {
  display: block; }

.workleader--dooley {
  background-position: -150px 0; }

.workleader--gebhart {
  background-position: -450px 0; }

.workleader--hengstler {
  background-position: -600px 0; }

.workleader--holz {
  background-position: -750px 0; }

.workleader--kling {
  background-position: 0 -141px; }

.workleader--kuepfer {
  background-position: -300px -141px; }

.workleader--mueller {
  background-position: -450px -141px; }

.workleader--preusser {
  background-position: -600px -141px; }

.workleader--timmer {
  background-position: -750px -141px; }

.workleader--zerial {
  background-position: 0 -282px; }

.workleader--drasdo {
  background-position: -150px -282px; }

.workleader--kummer {
  background-position: -300px -282px; }

.workleader > article {
  display: none; }

.slidetabs {
  margin: 0; }

.slidetabs li {
  float: left;
  display: block;
  list-style: none;
  margin: 0 20px 32px 0;
  position: relative; }

.slidetabs li.last {
  margin-right: 0px; }

.slidetabs li a {
  display: block;
  width: 130px;
  height: 130px; }

.slidetabs li img {
  display: none; }

.slidetabs li.hover img {
  display: block; }

.slidetabs li.active img {
  display: block; }

.slideContainer {
  width: 884px;
  color: #fff;
  margin-bottom: 30px; }

.slideWrap.active .slideContainer {
  overflow: hidden;
  height: 0; }

.slideWrap.inactive .slideContainer {
  display: none;
  height: 0; }

.slideContent {
  background: #0077b5;
  width: 834px;
  padding: 22px 25px 19px 25px;
  color: white; }

.slideContent .article {
  -moz-column-width: 257px;
  -webkit-column-width: 257px;
  column-count: 3;
  column-gap: 30px;
  column-width: 257px;
  -moz-column-gap: 30px;
  -webkit-column-gap: 30px;
  -moz-column-count: 3;
  -webkit-column-count: 3; }

.slideContent header {
  height: auto;
  background: none; }

.csscolumns .slideContent {
  display: none; }

.slideContent .col {
  width: 257px;
  float: left;
  margin-right: 32px; }

.slideContent .last {
  margin: 0; }

.pagebreak {
  border: 0;
  border-bottom: 1px solid #fff; }

ul.slidetabs .pointer {
  background: #0077b5;
  display: none;
  width: 23px;
  height: 23px;
  position: absolute;
  left: 49px;
  top: 150px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg); }

ul.slidetabs li.active .pointer {
  display: block; }

.no-csstransforms .pointer {
  top: 150px;
  left: 49px; }

.no-csstransforms .pointholder .point {
  top: -20.707106781px;
  left: 11px; }

#conference-stream .right {
  width: 352px;
  margin-right: 50px; }

#conference-stream .left {
  width: 500px;
  margin-right: 0; }

#conference-stream embed {
  float: right; }

.socialmedia {
  clear: both; }

.IN-widget {
  display: inline-block;
  margin-left: 1em; }

.tiles .tile {
  color: #828282;
  text-align: left;
  position: relative;
  background-color: #f2f2f2;
  background-image: none;
  width: 470px;
  margin: 0;
  margin-right: 10px;
  margin-top: 15px;
  font-size: 0.9em;
  float: left;
  clear: none;
  height: 125px;
  border-bottom: #dbdcdd solid 2px; }
  .tiles .tile:nth-child(even) {
    margin-right: 0px; }
  .tiles .tile:before {
    position: absolute;
    top: 10px;
    left: 10px;
    display: none;
    content: '';
    width: 140px;
    height: 105px;
    z-index: 100;
    background-color: #0077B5;
    background-image: url("images/play.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50px; }
  .tiles .tile:hover {
    color: #828282; }
    .tiles .tile:hover:before {
      display: block; }
  .tiles .tile img {
    position: absolute;
    top: 10px;
    left: 10px;
    width: auto;
    height: 105px; }
  .tiles .tile article {
    position: absolute;
    padding-left: 10px;
    top: 10px;
    left: 150px;
    z-index: 50;
    width: 300px;
    height: 105px;
    background-color: #f2f2f2;
    overflow-y: hidden; }
    .tiles .tile article h1 {
      font-size: 1.1em;
      font-family: Arial;
      font-weight: bold; }
  .tiles .tile.is-new::after {
    content: url("images/new-small.png");
    position: absolute;
    left: 10px;
    top: 10px;
    display: block;
    z-index: 150; }

.features {
  clear: both; }
  .features .feature {
    text-align: left;
    float: left;
    width: 290px;
    height: 380px;
    border-bottom: #dbdcdd solid 2px;
    background-color: #f2f2f2;
    padding: 10px;
    font-size: 15px;
    margin-right: 10px; }
    .features .feature:last-child {
      margin-right: 0; }
    .features .feature a.post-link {
      position: relative;
      display: block;
      height: 243px;
      width: 100%;
      overflow: hidden;
      margin-bottom: 10px; }
      .features .feature a.post-link img {
        height: 100%;
        width: auto; }
      .features .feature a.post-link .overlay {
        position: absolute;
        height: 100%;
        width: 100%;
        z-index: 100;
        top: 0;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 40%, black 95%, black 100%); }
        .features .feature a.post-link .overlay h1 {
          position: absolute;
          top: 80%;
          font-size: 1em;
          color: #fff;
          margin: 0px 10px;
          line-height: 1.5em; }
      .features .feature a.post-link .overlay:hover {
        background-color: #0077B5;
        background-image: url("images/play.png");
        background-repeat: no-repeat;
        background-position: center 35%; }
    .features .feature.is-new .overlay {
      background: #0077B5; }
      .features .feature.is-new .overlay::after {
        content: url("images/new-big.png");
        position: absolute;
        left: 0;
        top: 0;
        display: block;
        z-index: 150; }

.columns {
  text-align: left;
  counter-reset: column; }
  .columns .column {
    float: left;
    margin: 1em 0;
    margin-right: 40px;
    counter-increment: column; }
  .columns .last {
    margin-right: 0; }

.columns-3 .column {
  width: 290px; }
  .columns-3 .column:before {
    content: counter(column);
    font-size: 2.9em;
    vertical-align: middle;
    float: left;
    line-height: 1;
    font-family: arial;
    margin: 0;
    margin-right: 0.2em;
    color: #0077B5;
    text-align: center; }

.columns-2 .column {
  width: 455px; }

.boxes {
  text-align: left;
  counter-reset: box;
  flex-wrap: wrap;
  display: flex;
  justify-content: space-between; }
  .boxes .box {
    width: 280px;
    counter-increment: box;
    margin-top: 2em; }
    .boxes .box:before {
      content: counter(box);
      font-size: 3.2em;
      vertical-align: middle;
      float: left;
      line-height: 1;
      font-family: arial;
      margin: 0;
      margin-right: 0.2em;
      color: #0077B5;
      text-align: center; }

#publications {
  padding-top: 0px; }
  #publications .publication.loading {
    cursor: progress; }
  #publications .publication artical {
    display: block;
    width: 100%;
    text-align: left;
    column-count: 3;
    column-gap: 30px;
    column-width: 257px;
    -moz-column-width: 250px;
    -webkit-column-width: 250px;
    -moz-column-gap: 30px;
    -webkit-column-gap: 30px;
    -moz-column-count: 3;
    -webkit-column-count: 3; }
  #publications .publication footer {
    color: #828282;
    width: initial;
    margin: 15px 0px 0px 0px;
    padding: 15px 20px;
    background: url(images/gradient.png) top left repeat-x; }
    #publications .publication footer .author {
      font-style: italic; }
  #publications .publication h1 {
    font-size: 1.2em;
    cursor: pointer;
    background-image: url(images/liver-bulletpoint.png);
    background-repeat: no-repeat;
    background-position: 0 8px;
    text-indent: 25px; }
    #publications .publication h1 a, #publications .publication h1 a:hover {
      color: inherit;
      font-size: inherit; }
  #publications nav {
    height: 25px;
    width: 950px;
    position: relative;
    padding-bottom: 15px;
    padding-top: 15px;
    background-image: url("images/pub-navigation.png");
    font-size: 13px; }
    #publications nav.fixed {
      margin: 0px auto 0px -475px;
      position: fixed;
      top: 0px;
      left: 50%; }
    #publications nav.placeholder {
      display: none;
      background-color: transparent;
      background-image: none; }
    #publications nav .search-container {
      position: absolute;
      right: 0;
      width: 20%;
      height: 25px; }

#pub-search-popup {
  display: none;
  margin-top: 10px;
  border: solid 1px #888;
  padding-top: 14px; }

#search-result {
  max-height: 20em;
  overflow-y: scroll;
  overflow-x: hidden;
  background-color: #fff;
  margin-left: 0; }

#search-result li.result-item {
  padding: 2px 5px;
  margin-bottom: 0px;
  cursor: pointer; }

#search-result .result-item:hover {
  border-top: 1px solid #ff9b23;
  border-bottom: 1px solid #ff9b23;
  padding: 1px 5px;
  cursor: pointer; }

#search-result .result-item em {
  color: #ff9b23;
  font-style: normal; }

#search-result .result-item.selected {
  background-color: #0288ce;
  color: #000; }

#search-result .result-item.selected em {
  color: #fff; }

.search-box {
  border-radius: 10px;
  background-color: #FFF;
  background-image: url("images/search.png");
  background-repeat: no-repeat;
  background-position: 3px center;
  background-size: 15px;
  border: solid #ff9b23 2px;
  padding: 0px;
  padding-left: 18px;
  padding-right: 7px;
  border-width: 2px;
  position: absolute;
  left: 0px;
  right: 0px; }
  .search-box .wrapper {
    weight: auto;
    display: block;
    height: 21px; }
  .search-box input {
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    height: 100%;
    color: #828282; }
    .search-box input:focus {
      outline: none; }

.ui-helper-hidden-accessible {
  display: none; }

.ui-autocomplete {
  background-color: #fff;
  border: 1px solid #000; }

#pub-navigation ul.categories {
  display: table;
  width: 80%;
  height: 100%; }
  #pub-navigation ul.categories li {
    display: table-cell;
    min-width: 15px;
    margin-right: 10px;
    font-size: 1.3em;
    margin-bottom: 0px; }
    #pub-navigation ul.categories li a {
      display: block; }

.loading-animation {
  position: relative;
  left: 50%;
  margin-left: -36px;
  background-image: url(images/dots.png);
  background-repeat: no-repeat;
  background-position-x: -48px;
  background-position-y: 9px;
  height: 32px;
  width: 72px;
  display: block;
  margin-bottom: 1em; }

/* for video carousel */
.gallery-indicators {
  position: absolute;
  bottom: -3em;
  right: 0; }

.gallery-indicators, .gallery-buttons {
  color: #4F4F4F;
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 10; }

* + html .gallery-indicators {
  margin: 0 0 20px 0; }

.gallery-indicators li {
  float: left;
  list-style: none; }

/* default is for gallery-buttons */
.gallery-indicators a {
  display: block;
  overflow: hidden;
  text-indent: -9999px;
  background: url(images/video-sprite.png) no-repeat;
  background-position: 0px -117px;
  margin-left: 10px;
  width: 10px;
  height: 1em;
  line-height: 1em; }

.gallery-indicators a:hover, .gallery-indicators li.active a {
  background-position: 0px -97px; }

.gallery-nav a {
  background-position: 0 -37px; }

.gallery-nav a:hover {
  background-position: 0 -17px; }

.gallery-nav a.next {
  background-position: right -77px; }

.gallery-nav a.next:hover {
  background-position: right -57px; }

/* positions the quotes */
ul.carousel-quote {
  position: absolute;
  list-style: none;
  margin-left: 0;
  top: 49px;
  right: 0;
  width: 312px;
  height: 320px;
  overflow: hidden; }

ul.carousel-quote li {
  width: 312px;
  position: absolute; }

/* zoom */
#zoom .column {
  margin-top: 0;
  margin-bottom: 0; }
#zoom .description {
  position: relative; }
  #zoom .description button {
    position: absolute;
    right: 0;
    top: 0;
    background: none;
    border: none;
    text-align: left;
    font-family: Georgia, serif;
    font-size: 1em;
    color: #ff9b23;
    padding: 0; }
    #zoom .description button:focus {
      outline: none; }
    #zoom .description button:hover {
      color: #036; }
    #zoom .description button:disabled {
      color: transparent; }

.comments .comment {
  padding: 0;
  margin: 0;
  margin-bottom: 10px;
  position: relative;
  padding-top: 5px;
  background: none;
  min-height: 50px; }
  .comments .comment .comment {
    padding-left: 55px; }
  .comments .comment header {
    background: none;
    height: auto;
    box-shadow: none;
    line-height: 32px; }
    .comments .comment header img {
      height: 32px;
      width: 32px;
      margin-right: 0.5em;
      vertical-align: top;
      border-radius: 16px; }
    .comments .comment header strong {
      color: #000;
      font-size: 1em;
      margin: 0;
      display: inline; }
      .comments .comment header strong:after {
        content: ' \2022  ';
        color: #828282; }
  .comments .comment article {
    font-size: 1em;
    border: solid 1px #F2F2F2;
    padding: 0.5em;
    margin: 0.5em 0; }
    .comments .comment article p {
      margin: 0; }
  .comments .comment footer {
    background: none;
    text-align: right;
    padding: 0;
    margin: 0; }
    .comments .comment footer a {
      font-size: 0.8em;
      font-family: arial;
      margin-left: 1em; }

.comment-respond {
  background-color: #f2f2f2;
  padding: 20px;
  margin-top: 2em; }
  .comment-respond h3 {
    color: #0077B5;
    font-family: arial;
    font-size: 1.3em;
    margin-bottom: 0.5em; }
  .comment-respond .comment-form-author input, .comment-respond .comment-form-email input {
    width: 540px;
    border-radius: 2px;
    resize: none;
    border: solid 1px #828282;
    padding: 5px; }
  .comment-respond .comment-form-author label, .comment-respond .comment-form-email label {
    display: block; }
  .comment-respond .comment-notes {
    float: right;
    width: 300px;
    margin-top: 21px; }
  .comment-respond .comment-form-comment label {
    display: block; }
  .comment-respond .comment-form-comment textarea {
    width: 542px;
    border-radius: 2px;
    resize: none;
    border-color: #828282;
    padding: 5px;
    margin: 0; }
  .comment-respond .form-allowed-tags {
    display: none; }
  .comment-respond .form-submit {
    margin-bottom: 0; }
    .comment-respond .form-submit input {
      background-color: #0077B5;
      color: #FFF;
      height: 40px;
      width: 180px;
      font-weight: bold;
      border: none;
      border-radius: 5px; }

.single-post .comment-respond .comment-form-author input, .single-post .comment-respond .comment-form-email input {
  box-sizing: border-box;
  width: 100%; }
.single-post .comment-respond .comment-notes {
  float: none;
  margin: 0 0 0.5em;
  width: auto; }
.single-post .comment-respond .comment-form-comment textarea {
  box-sizing: border-box;
  width: 100%; }

@media print {
  * {
    background: transparent !important;
    color: #444 !important;
    text-shadow: none; }

  a {
    color: #444 !important;
    text-decoration: underline; }

  a:after {
    content: " (" attr(href) ")"; }

  abbr:after {
    content: " (" attr(title) ")"; }

  .ir a:after {
    content: ""; }

  /* Don't show links for images */
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }

  img {
    page-break-inside: avoid; }

  p, h2, h3 {
    orphans: 3;
    widows: 3; }

  h2, h3 {
    page-break-after: avoid; }

  @page {
    margin: 0.5cm; } }