@charset "UTF-8";
/*
  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, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
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, figure, footer, header,
hgroup, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

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 sans-serif;
  *font-size: small;
  *font: x-small;
  line-height: 1.22;
}

table {
  font-size: inherit;
  font: 100%;
}

select, input, textarea {
  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. */
/* www.aestheticallyloyal.com/public/optimize-legibility/ */
h1, h2, h3, h3, h4, h5, h6 {
  font-weight: bold;
  text-rendering: optimizeLegibility;
}

/* maxvoltar.com/archive/-webkit-font-smoothing */
html {
  -webkit-font-smoothing: antialiased;
}

/* Accessible focus treatment: people.opera.com/patrickl/experiments/keyboard/test */
a:hover, a:active {
  outline: none;
}

ul {
  margin-left: 30px;
}

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 */
}

/* 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;
  *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;
}

/* always force a scrollbar in non-IE */
html {
  overflow-y: scroll;
}

/* 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;
}

/* 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 << */
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  overflow: hidden;
}

.clearfix {
  display: inline-block;
}

* html .clearfix {
  height: 1%;
}

/* Hides from IE-mac \*/
.clearfix {
  display: block;
}

#tooltip-container {
  position: absolute;
  display: none;
  z-index: 1000;
}

#tooltip-content {
  background: #5b5b5b;
  color: #fff;
  padding: 3px 6px;
  max-width: 250px;
  position: relative;
  z-index: 2;
  font-size: 11px;
  font-family: helvetica, arial, "Nimbus Sans L", "Liberation Sans", FreeSans, sans-serif;
}

/*
 * CSS Styles that are needed by jScrollPane for it to operate correctly.
 *
 * Include this stylesheet in your site or copy and paste the styles below into your stylesheet - jScrollPane
 * may not operate correctly without them.
 */
/*  */
.jspContainer {
  overflow: hidden;
  position: relative;
}

.jspPane {
  position: absolute;
}

.jspHorizontalBar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: transparent;
  z-index: 3;
}

.ie7 .jspHorizontalBar {
  bottom: -19px;
}

.jspHorizontalBar * {
  margin: 0;
  padding: 0;
}

.jspCap {
  display: none;
}

.jspHorizontalBar .jspCap {
  float: left;
}

.jspTrack {
  background: transparent;
  position: relative;
}

.jspDrag {
  background: transparent;
  position: relative;
  top: 0;
  left: 0;
  cursor: pointer;
  display: none;
}

.jspHorizontalBar .jspTrack,
.jspHorizontalBar .jspDrag {
  float: left;
  height: 100%;
}

.jspArrow {
  background: transparent;
  text-indent: -20000px;
  display: block;
  cursor: pointer;
}

.jspHorizontalBar .jspArrow {
  width: 39px;
  float: left;
  height: 39px;
}

.jspCorner {
  background: #eeeef4;
  float: left;
  height: 100%;
}

.jspArrowLeft {
  background: url("img/pfeil-links.png") 0 0px no-repeat;
  position: absolute;
  bottom: 16px;
  left: -1px;
}

.ie6 .jspArrowLeft {
  filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='http://www.leson.de/static/img/pfeil-links.png');
  background: none;
}

.jspArrowRight {
  background: url("img/pfeil-rechts.png") 0 0px no-repeat;
  position: absolute;
  bottom: 16px;
  right: -3px;
}

.ie6 .jspArrowRight {
  filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='http://www.leson.de/static/img/pfeil-rechts.png');
  background: none;
}

.jspArrowLeft:hover {
  background: url("img/pfeil-links-aktiv.png") 0 0px no-repeat;
}

.jspArrowRight:hover {
  background: url("img/pfeil-rechts-aktiv.png") 0 0px no-repeat;
}

.jspArrow.jspDisabled {
  cursor: default;
  background: transparent;
}

.horizontal-only {
  height: auto;
}

/* Yuk! CSS Hack for IE6 3 pixel bug :( */
* html .jspCorner {
  margin: 0 -3px 0 0;
}

a.textlink:before, a.textlink-up:before, .project-pagination-prev:before, .project-pagination-next:after, .read-more:before, .publication .pdf-link:before {
  background-image: url('data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjE1IiB2aWV3Qm94PSIxMDAgMTAwIDM1MCAzNTAiIHdpZHRoPSIxNSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBmaWxsPSIjYTBhMGEwIj48cGF0aCBkPSJNOTguOSwxODQuN2wxLjgsMi4xbDEzNiwxNTYuNWM0LjYsNS4zLDExLjUsOC42LDE5LjIsOC42YzcuNywwLDE0LjYtMy40LDE5LjItOC42TDQxMSwxODcuMWwyLjMtMi42IGMxLjctMi41LDIuNy01LjUsMi43LTguN2MwLTguNy03LjQtMTUuOC0xNi42LTE1Ljh2MEgxMTIuNnYwYy05LjIsMC0xNi42LDcuMS0xNi42LDE1LjhDOTYsMTc5LjEsOTcuMSwxODIuMiw5OC45LDE4NC43eiIvPjwvc3ZnPg==');
  background-size: contain;
}

a.textlink:hover:before, a.textlink-up:hover:before, .project-pagination-prev:hover:before, .project-pagination-next:hover:after, .read-more:hover:before, .publication .pdf-link:hover:before {
  background-image: url('data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjE1IiB2aWV3Qm94PSIxMDAgMTAwIDM1MCAzNTAiIHdpZHRoPSIxNSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBmaWxsPSIjNWI1YjViIj48cGF0aCBkPSJNOTguOSwxODQuN2wxLjgsMi4xbDEzNiwxNTYuNWM0LjYsNS4zLDExLjUsOC42LDE5LjIsOC42YzcuNywwLDE0LjYtMy40LDE5LjItOC42TDQxMSwxODcuMWwyLjMtMi42IGMxLjctMi41LDIuNy01LjUsMi43LTguN2MwLTguNy03LjQtMTUuOC0xNi42LTE1Ljh2MEgxMTIuNnYwYy05LjIsMC0xNi42LDcuMS0xNi42LDE1LjhDOTYsMTc5LjEsOTcuMSwxODIuMiw5OC45LDE4NC43eiIvPjwvc3ZnPg==');
  background-size: contain;
}

.project-pagination-overview:before {
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNyIgaGVpZ2h0PSIxMSIgdmlld0JveD0iMCAwIDE3IDExIj48cGF0aCBmaWxsPSIjQTBBMEE5IiBkPSJNMCAwSDVWM0gweiIvPjxwYXRoIGZpbGw9IiNBMEEwQTkiIGQ9Ik02IDBIMTFWM0g2eiIvPjxwYXRoIGZpbGw9IiNBMEEwQTkiIGQ9Ik0xMiAwSDE3VjNIMTJ6Ii8+PHBhdGggZmlsbD0iI0EwQTBBOSIgZD0iTTAgNEg1VjdIMHoiLz48cGF0aCBmaWxsPSIjQTBBMEE5IiBkPSJNNiA0SDExVjdINnoiLz48cGF0aCBmaWxsPSIjQTBBMEE5IiBkPSJNMTIgNEgxN1Y3SDEyeiIvPjxwYXRoIGZpbGw9IiNBMEEwQTkiIGQ9Ik0wIDhINVYxMUgweiIvPjxwYXRoIGZpbGw9IiNBMEEwQTkiIGQ9Ik02IDhIMTFWMTFINnoiLz48cGF0aCBmaWxsPSIjQTBBMEE5IiBkPSJNMTIgOEgxN1YxMUgxMnoiLz48L3N2Zz4=');
  background-size: contain;
}

.project-pagination-overview:hover:before {
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNyIgaGVpZ2h0PSIxMSIgdmlld0JveD0iMCAwIDE3IDExIj48cGF0aCBmaWxsPSIjNWI1YjViIiBkPSJNMCAwSDVWM0gweiIvPjxwYXRoIGZpbGw9IiM1YjViNWIiIGQ9Ik02IDBIMTFWM0g2eiIvPjxwYXRoIGZpbGw9IiM1YjViNWIiIGQ9Ik0xMiAwSDE3VjNIMTJ6Ii8+PHBhdGggZmlsbD0iIzViNWI1YiIgZD0iTTAgNEg1VjdIMHoiLz48cGF0aCBmaWxsPSIjNWI1YjViIiBkPSJNNiA0SDExVjdINnoiLz48cGF0aCBmaWxsPSIjNWI1YjViIiBkPSJNMTIgNEgxN1Y3SDEyeiIvPjxwYXRoIGZpbGw9IiM1YjViNWIiIGQ9Ik0wIDhINVYxMUgweiIvPjxwYXRoIGZpbGw9IiM1YjViNWIiIGQ9Ik02IDhIMTFWMTFINnoiLz48cGF0aCBmaWxsPSIjNWI1YjViIiBkPSJNMTIgOEgxN1YxMUgxMnoiLz48L3N2Zz4=');
  background-size: contain;
}

.header .toggle-nav-mobile .icon {
  background-image: url('data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjEyIiB2aWV3Qm94PSIwIDAgMTggMTIiIHdpZHRoPSIxOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48dGl0bGUvPjxwYXRoIGQ9Ik0wLDEyIEwxOCwxMiBMMTgsMTAgTDAsMTAgTDAsMTIgTDAsMTIgWiBNMCw3IEwxOCw3IEwxOCw1IEwwLDUgTDAsNyBMMCw3IFogTTAsMCBMMCwyIEwxOCwyIEwxOCwwIEwwLDAgTDAsMCBaIiBmaWxsPSIjMDA4RUJGIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiLz48L3N2Zz4=');
  width: 36px;
  height: 24px;
  background-repeat: no-repeat;
  background-size: contain;
}

a.button, a.textlink, a.textlink-up, .project-pagination a, .read-more, .publication .pdf-link {
  font-family: georgia, "Times New Roman", Times, Garamond, serif;
  color: #a0a0a0;
  text-decoration: none;
  background-color: #eaeaea;
  padding: 4px 8px;
  border-radius: 3px;
  box-sizing: border-box;
  margin-top: 5px;
}
a.button:hover, a.textlink:hover, a.textlink-up:hover, .project-pagination a:hover, .read-more:hover, .publication .pdf-link:hover {
  color: #5b5b5b;
}

.project-pagination-prev:before, .project-pagination-overview:before, .project-pagination-next:after, .read-more:before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  background-position: center center;
  background-repeat: no-repeat;
}

.state {
  position: fixed;
  left: -100px;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Leson Styles */
h1 {
  font-family: georgia, "Times New Roman", Times, Garamond, serif;
  font-size: 16px;
  font-style: italic;
  color: #000000;
  margin-top: 16px;
  margin-bottom: 11px;
}

h2, h3 {
  font-family: georgia, "Times New Roman", Times, Garamond, serif;
  font-size: 12px;
  font-style: italic;
  color: black;
  margin-top: 35px;
  margin-bottom: 10px;
  font-weight: bold;
}

h3 {
  font-style: normal;
  font-family: helvetica, arial, "Nimbus Sans L", "Liberation Sans", FreeSans, sans-serif;
}

p {
  font-family: helvetica, arial, "Nimbus Sans L", "Liberation Sans", FreeSans, sans-serif;
  font-size: 11px;
  line-height: 14px;
  font-style: normal;
  color: #404040;
  margin-bottom: 10px;
  margin-top: 10px;
}
p.teaser {
  color: #000000;
}

a {
  font-family: helvetica, arial, "Nimbus Sans L", "Liberation Sans", FreeSans, sans-serif;
  font-size: 11px;
  font-style: oblique;
  color: #000000;
}
a:hover {
  color: #5b5b5b;
}
a.textlink, a.textlink-up {
  display: inline-block;
  margin-top: 5px;
  line-height: 18px;
}
a.textlink:before, a.textlink-up:before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 12px;
  background-position: center center;
  background-repeat: no-repeat;
  transform: rotate(270deg);
  -webkit-transform: rotate(270deg);
}
a.textlink:hover, a.textlink-up:hover {
  color: #5b5b5b;
}
a.textlink:hover:before, a.textlink-up:hover:before {
  transform: rotate(270deg);
  -webkit-transform: rotate(270deg);
}
a.textlink-up {
  background-position: 0 4px;
}
a.textlink-up:before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 12px;
  background-position: center center;
  background-repeat: no-repeat;
  margin-right: 5px;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}
a.textlink-up:hover {
  background-position: 0 4px;
}
a.textlink-up:hover:before {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}

ul {
  list-style: none;
  margin-left: 0;
  font-size: 11px;
  color: #404040;
  line-height: 24px;
  padding-left: 10px;
}
ul li {
  text-indent: -5px;
}
ul li:before {
  color: #008ebf;
  content: '·';
  display: inline-block;
  margin-right: 5px;
}

table p {
  margin: 0;
}

.visible-xs,
.visible-sm,
.visible-smd,
.visible-md,
.visible-lg,
.visible-xlg {
  display: none;
}

.hidden-xs,
.hidden-sm,
.hidden-md,
.hidden-lg {
  display: block;
}

@media (max-width: 480px) {
  .visible-xs {
    display: block;
  }

  .hidden-xs {
    display: none;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .visible-sm {
    display: block;
  }

  .hidden-sm {
    display: none;
  }
}
@media (min-width: 769px) and (max-width: 960px) {
  .visible-smd {
    display: block;
  }

  .hidden-smd {
    display: none;
  }
}
@media (min-width: 961px) and (max-width: 1024px) {
  .visible-md {
    display: block;
  }

  .hidden-md {
    display: none;
  }
}
@media (min-width: 1025px) {
  .visible-lg {
    display: block;
  }

  .hidden-lg {
    display: none;
  }
}
@media (min-width: 1201px) {
  .visible-xlg {
    display: block;
  }

  .hidden-xlg {
    display: none;
  }
}
.no-mediaqueries .visible-xlg,
.no-mediaqueries .visible-lg,
.no-mediaqueries .visible-md {
  display: block !important;
}

.grid-wrapper {
  max-width: 1180px;
  margin: 0 auto;
  clear: left;
  padding-left: 15px;
  padding-right: 15px;
}

.grid {
  margin-left: 225px;
  overflow: hidden;
}

.col, .col-lg-1, .col-lg-2, .col-container-2 .matrix__item, .col-container-2 .matrix__item--blank, .col-lg-3, .col-lg-4, .matrix__item, .matrix__item--blank {
  width: 25%;
  padding-left: 15px;
  padding-right: 15px;
  float: left;
  box-sizing: border-box;
  margin-bottom: 30px;
}
.col > :first-child, .col-lg-1 > :first-child, .col-lg-2 > :first-child, .col-lg-3 > :first-child, .col-lg-4 > :first-child, .matrix__item > :first-child, .matrix__item--blank > :first-child,
.col > :first-child > :first-child,
.col-lg-1 > :first-child > :first-child,
.col-lg-2 > :first-child > :first-child,
.col-lg-3 > :first-child > :first-child,
.col-lg-4 > :first-child > :first-child,
.matrix__item > :first-child > :first-child,
.matrix__item--blank > :first-child > :first-child,
.col > :first-child > :first-child > :first-child,
.col-lg-1 > :first-child > :first-child > :first-child,
.col-lg-2 > :first-child > :first-child > :first-child,
.col-lg-3 > :first-child > :first-child > :first-child,
.col-lg-4 > :first-child > :first-child > :first-child,
.matrix__item > :first-child > :first-child > :first-child,
.matrix__item--blank > :first-child > :first-child > :first-child {
  margin-top: 0;
}
.col > :last-child, .col-lg-1 > :last-child, .col-lg-2 > :last-child, .col-lg-3 > :last-child, .col-lg-4 > :last-child, .matrix__item > :last-child, .matrix__item--blank > :last-child,
.col > :last-child > :last-child,
.col-lg-1 > :last-child > :last-child,
.col-lg-2 > :last-child > :last-child,
.col-lg-3 > :last-child > :last-child,
.col-lg-4 > :last-child > :last-child,
.matrix__item > :last-child > :last-child,
.matrix__item--blank > :last-child > :last-child,
.col > :last-child > :last-child > :last-child,
.col-lg-1 > :last-child > :last-child > :last-child,
.col-lg-2 > :last-child > :last-child > :last-child,
.col-lg-3 > :last-child > :last-child > :last-child,
.col-lg-4 > :last-child > :last-child > :last-child,
.matrix__item > :last-child > :last-child > :last-child,
.matrix__item--blank > :last-child > :last-child > :last-child {
  margin-bottom: 0;
}
.col img.imagecolor, .col-lg-1 img.imagecolor, .col-lg-2 img.imagecolor, .col-lg-3 img.imagecolor, .col-lg-4 img.imagecolor, .matrix__item img.imagecolor, .matrix__item--blank img.imagecolor {
  width: 100%;
  height: auto;
}

.col-no-margin {
  margin-bottom: 0;
}

.col-container-4 {
  width: 100%;
  float: left;
  box-sizing: border-box;
}

.col-container-3 {
  width: 75%;
  float: left;
  box-sizing: border-box;
}

.col-container-2 {
  width: 50%;
  float: left;
  box-sizing: border-box;
}

.col-first {
  width: 225px;
  display: inline-block;
}

.col-lg-2, .col-container-2 .matrix__item, .col-container-2 .matrix__item--blank {
  width: 50%;
}

.col-lg-3 {
  width: 75%;
}

.col-lg-4 {
  width: 100%;
}

.offset-1 {
  margin-left: 0;
}

@media (min-width: 769px) and (max-width: 960px) {
  .col-lg-2, .col-container-2 .matrix__item, .col-container-2 .matrix__item--blank,
  .col-container-2 {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .grid-wrapper {
    padding: 0;
  }

  .col-first {
    display: block;
  }

  .grid {
    margin-left: 0;
    overflow: hidden;
    width: 100%;
    display: block;
  }

  .col-lg-1,
  .col-lg-2,
  .col-container-2 .matrix__item,
  .col-container-2 .matrix__item--blank,
  .col-lg-3,
  .col-lg-4,
  .col-container-1,
  .col-container-2,
  .col-container-3,
  .col-container-4 {
    width: 100%;
  }
}
.header {
  padding: 0px;
  width: 100%;
  background: #fff;
  z-index: 2;
}
.ie6 .header {
  position: absolute;
}
.header .logo-wrapper {
  margin-bottom: 10px;
}
.header #logo {
  display: block;
  margin: 0 auto;
}
.header #logo.logo1 {
  height: 130px;
  width: 259px;
  position: relative;
  margin-bottom: 10px;
}
.header #logo.logo1 img {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  margin: auto;
}

@media (min-width: 481px) and (max-width: 768px) {
  .toggle-nav-mobile {
    color: #008ebf;
    z-index: 100;
    position: relative;
    width: 20%;
  }
  .toggle-nav-mobile svg,
  .toggle-nav-mobile .icon {
    margin: 15px;
  }
}
@media (max-width: 480px) {
  .header #logo.logo1 {
    margin-bottom: 0;
  }

  .toggle-nav-mobile {
    color: #008ebf;
    z-index: 100;
    position: relative;
    width: 20%;
  }
  .toggle-nav-mobile svg,
  .toggle-nav-mobile .icon {
    margin: 15px;
  }
}
.main-navigation {
  width: 195px;
}
.main-navigation .main-navigation__wrapper {
  -moz-box-shadow: 1px 3px 3px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 1px 3px 3px rgba(0, 0, 0, 0.3);
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.15);
  border: 1px solid #bfbfbf;
}
@media (min-height: 800px) {
  .main-navigation {
    position: fixed;
  }
}
.main-navigation ul {
  margin: 0;
  padding: 0;
}
.main-navigation ul li {
  padding: 12px;
}
.main-navigation ul li:before {
  display: none;
}
.main-navigation ul li.social__navitem {
  padding: 0;
}
.main-navigation ul.main-nav__l1 {
  margin: 0;
}
.main-navigation li.main-nav__l1 {
  padding-top: 9px;
  padding-bottom: 7px;
  border-bottom: 1px solid #bfbfbf;
}
.main-navigation li.main-nav__l1.active {
  padding-bottom: 0;
}
.main-navigation li.main-nav__l1 a,
.main-navigation li.main-nav__l1 span {
  font-family: georgia, "Times New Roman", Times, Garamond, serif;
  font-style: italic;
  color: #a0a0a0;
  padding-left: 12px;
  font-size: 15px;
  text-decoration: none;
}
.main-navigation li.main-nav__l1 a.active,
.main-navigation li.main-nav__l1 span.active {
  color: #008ebf;
}
.main-navigation li.main-nav__l1 a:hover,
.main-navigation li.main-nav__l1 span:hover {
  color: #404040;
}
.main-navigation ul.main-nav__l2 {
  margin: 6px 0 0 0;
  display: none;
}
.main-navigation li.main-nav__l2 {
  list-style: none;
  padding: 4px 12px 4px 12px;
}
.main-navigation li.main-nav__l2 a {
  font-family: helvetica, arial, "Nimbus Sans L", "Liberation Sans", FreeSans, sans-serif;
  font-size: 11px;
  font-style: normal;
  color: #a0a0a0;
  text-decoration: none;
  display: block;
  padding-left: 0;
  line-height: 1em;
}
.main-navigation li.main-nav__l2 a.active {
  color: #008ebf;
}
.main-navigation li.main-nav__l2 a:hover {
  color: #404040;
}
.main-navigation li.main-nav__l2:last-child {
  margin-bottom: 8px;
}
.main-navigation input[id^="menu"]:checked ~ .main-nav__l2 {
  display: block;
}
.no-mediaqueries .main-navigation li.main-nav__l1.active > ul.main-nav__l2 {
  display: block !important;
}
.main-navigation .social__nav {
  padding: 9px 9px 9px 12px;
  list-style: none;
}
.main-navigation .social__navitem:before {
  display: none;
}
.main-navigation .social__navitem a {
  font-family: georgia, "Times New Roman", Times, Garamond, serif;
  font-style: italic;
  color: #a0a0a0;
  padding-left: 12px;
  font-size: 11px;
  text-decoration: none;
}
.main-navigation .social__navitem a.active {
  color: #008ebf;
}
.main-navigation .social__navitem a:hover {
  color: #404040;
}
.main-navigation .social__navitem span,
.main-navigation .social__navitem .svg {
  display: inline-block;
  vertical-align: middle;
}
.main-navigation .social__navitem .svg {
  width: 15px;
  height: 15px;
  margin-right: 10px;
}

@media (max-width: 768px) {
  .main-navigation {
    position: relative;
    margin-right: 0;
    width: 100%;
  }

  input#toggle-main-nav ~ nav.main-navigation {
    display: none;
  }

  input#toggle-main-nav:checked ~ nav.main-navigation {
    margin-top: 15px;
    display: block;
  }

  .navigation {
    left: -250px;
    width: 250px;
    transition: 0.25s linear;
    position: absolute;
  }

  input#toggle-main-nav:checked ~ .navigation {
    left: 0;
  }

  .grid-wrapper {
    overflow: hidden;
  }

  .grid {
    width: 100%;
    display: block;
    position: relative;
    transition: 0.25s linear;
    left: 0;
  }

  input#toggle-main-nav:checked ~ .grid {
    left: 250px;
  }

  input#toggle-sub-nav ~ label > span.active {
    margin-bottom: 8px;
  }

  input#toggle-sub-nav:checked ~ label > span.active {
    margin-bottom: 0;
  }
}
.no-mediaqueries .visible-xlg,
.no-mediaqueries .visible-lg,
.no-mediaqueries .visible-md {
  display: block !important;
}

.project__image {
  margin-bottom: 30px;
  display: block;
}

.project__image--full {
  width: 100%;
}

#project-detail-column-second .first {
  margin: 3px 0px 20px 0px;
}
#project-detail-column-second .next {
  display: none;
  position: absolute;
  top: 0;
  margin-top: 3px;
}

#project-detail-description {
  clear: left;
  margin-bottom: 30px;
}

.project-pagination-link {
  display: inline-block;
}
.flexbox .project-pagination-link {
  flex-grow: 1;
  text-align: center;
}

.project-pagination {
  margin-top: 23px;
}
.flexbox .project-pagination {
  display: flex;
}

.project-pagination-prev {
  margin-right: 5px;
}
.col-lg-4 > .project-pagination > .project-pagination-prev {
  margin-top: 5px;
}
.project-pagination-prev:before {
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  margin-right: 5px;
}
.project-pagination-prev:hover:before {
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
}
.flexbox .project-pagination-prev span {
  min-width: 80px;
  display: inline-block;
}

.project-pagination-overview {
  margin-right: 5px;
  max-width: 40px;
}
.project-pagination-overview:before {
  height: 11px;
  width: 17px;
}

.project-pagination-next:after {
  transform: rotate(270deg);
  -webkit-transform: rotate(270deg);
  margin-left: 5px;
  margin-bottom: 1px;
}
.project-pagination-next:hover:after {
  transform: rotate(270deg);
  -webkit-transform: rotate(270deg);
}
.flexbox .project-pagination-next span {
  min-width: 80px;
  display: inline-block;
}

.project-pagination-prev:before {
  margin-top: 4px;
  margin-right: 1px;
}

.project-pagination-next:after {
  margin-top: 2px;
  margin-left: 0;
}

.project-pagination-overview:before {
  margin-top: 3px;
}

.read-more {
  width: 100%;
  font-size: 11px;
  display: block;
  text-align: center;
  margin-top: 20px;
}
.read-more:before {
  height: 8px;
  width: 10px;
  margin-right: 5px;
}

@media (min-width: 1200px) {
  .project-pagination .project-pagination-next span,
  .project-pagination .project-pagination-prev span {
    display: none;
  }
}
@media (min-width: 1024px) and (min-height: 800px) {
  #project-detail-description,
  .project__basics {
    width: 66.6666%;
  }

  .csscalc .offset-1 {
    margin-left: 25%;
  }
  .csscalc .project.fixed {
    width: calc((100vw - 19px - 19px - 250px)/4);
    max-width: 250px;
    position: fixed;
  }
}
@media (min-width: 769px) and (max-width: 960px) {
  .col-container-3.offset-1.project__content {
    width: 100%;
    margin-left: 0;
  }
}
@media (min-width: 961px) {
  .project__image--full {
    width: 100%;
  }

  .project__image--right {
    width: 66.6666%;
    float: right;
  }
  .project__image--right:after {
    clear: both;
  }

  .project__image--left {
    width: 66.6666%;
    float: left;
  }
  .project__image--left:after {
    clear: both;
  }

  label.read-more {
    display: none;
  }
}
@media (min-width: 961px) and (max-width: 1200px) {
  .col-container-3.offset-1.project__content {
    width: 100%;
    margin-left: 0;
  }
}
@media (max-width: 960px) {
  .project__image--full {
    width: 100%;
  }

  input#read-more ~ .more {
    display: none;
  }

  input#read-more:checked ~ .more {
    display: block;
  }

  input#read-more:checked ~ .read-more {
    display: none;
  }
}
.news-review {
  margin-bottom: 38px;
}
.news-review img {
  width: 100%;
  height: auto;
}
.news-review .col-lg-2, .news-review .col-container-2 .matrix__item, .col-container-2 .news-review .matrix__item, .news-review .col-container-2 .matrix__item--blank, .col-container-2 .news-review .matrix__item--blank {
  margin-bottom: 0;
}

.news__title {
  margin-bottom: 8px;
  margin-top: 20px;
}

.news__date {
  color: #404040;
  margin-top: 8px;
  font-size: 11px;
  margin-bottom: 5px;
}

.news__date + .news__title {
  margin-top: 0;
}

.news__date + a > h2, .news__date + a > h3 {
  margin-top: 0;
}

.news__teaserimage {
  margin-bottom: 1em;
}

.news--home h1:first-child {
  margin-top: 40px;
}
.news--home .news-review {
  margin-top: 20px;
  margin-bottom: 20px;
}

@media (max-width: 960px) {
  .news__teasertext {
    margin-bottom: 60px;
  }
}
.matrix,
#project-gallery {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}

.col-lg-2 > .wide > img, .col-container-2 .matrix__item > .wide > img, .col-container-2 .matrix__item--blank > .wide > img {
  width: 100%;
}

.matrix__item, .matrix__item--blank {
  margin-bottom: 30px;
  text-indent: 0;
  line-height: 0;
}
.matrix__item:before, .matrix__item--blank:before {
  display: none;
}
.matrix__item a, .matrix__item--blank a {
  display: block;
}
.matrix__item figcaption, .matrix__item--blank figcaption {
  opacity: 0;
  position: absolute;
  bottom: 0;
  z-index: 100;
  width: 100%;
  height: auto;
  transition: opacity 0.3s;
}
.matrix__item figcaption .matrix-item__imagecap, .matrix__item--blank figcaption .matrix-item__imagecap {
  line-height: 1.3;
  display: block;
  font-style: normal;
  font-size: 11px;
  padding: 10px;
  background-color: white;
  color: #404040;
  text-decoration: none;
}
.no-mediaqueries .matrix__item figcaption, .no-mediaqueries .matrix__item--blank figcaption {
  border: 1px solid #bfbfbf;
}
.matrix__item figure, .matrix__item--blank figure {
  border: 1px solid transparent;
  position: relative;
}
.matrix__item img, .matrix__item--blank img {
  width: 100%;
  height: auto;
}

.matrix__item--blank:before {
  display: block;
  content: '';
  width: 100%;
  padding-top: 56%;
}

.matrix__item--double {
  width: 100%;
}

.matrix__item--reference img {
  max-width: 200px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.col-container-2 .matrix__item--double,
.col-container-2 .matrix .matrix__item--double {
  width: 100%;
}

.matrix .matrix__item--double {
  width: 50%;
}

@media (min-width: 769px) {
  .matrix__item figure:hover figcaption, .matrix__item--blank figure:hover figcaption {
    line-height: 1.3;
    display: block;
    opacity: 1;
    box-sizing: border-box;
    -moz-box-shadow: 1px 3px 3px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 1px 3px 3px rgba(0, 0, 0, 0.3);
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.15);
    border: 1px solid #bfbfbf;
  }
}
@media (min-width: 1025px) and (max-width: 1200px) {
  .matrix__item, .matrix__item--blank {
    width: 33.3333%;
  }

  .matrix__item--double,
  .matrix .matrix__item--double {
    width: 66.666%;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .matrix__item, .matrix__item--blank {
    width: 50%;
  }

  .col-container-2 .matrix__item, .col-container-2 .matrix__item--blank {
    width: 100%;
  }
  .col-container-2 .matrix__item--blank {
    display: none;
  }
}
@media (max-width: 768px) {
  .matrix__item, .matrix__item--blank {
    width: 50%;
  }
  .matrix__item figure, .matrix__item--blank figure {
    -moz-box-shadow: 1px 3px 3px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 1px 3px 3px rgba(0, 0, 0, 0.3);
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.15);
    border: 1px solid #bfbfbf;
  }
  .matrix__item figcaption, .matrix__item--blank figcaption {
    display: block;
    opacity: 1;
  }

  .matrix__item--double,
  .matrix .matrix__item--double {
    width: 100%;
  }

  .matrix__item--blank {
    display: none;
  }
}
@media (max-width: 768px) and (max-width: 480px) {
  .matrix__item, .matrix__item--blank {
    width: 100%;
    margin-bottom: 15px;
  }
}
.publication p {
  color: #000;
}
.publication .publication-column-first {
  margin-bottom: 30px;
}
.publication .publication-column-second {
  margin-bottom: 30px;
}
.publication .publication-column-second img {
  width: 200px;
  margin-top: 3px;
}
.publication ul {
  list-style: none outside;
  margin-left: 0;
  margin-bottom: 8px;
}
.publication .pdf-link {
  margin-top: 5px;
  display: inline-block;
}
.publication .pdf-link:before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  background-position: center center;
  background-repeat: no-repeat;
  margin-right: 4px;
}
.publication .pdf-link:hover {
  color: #5b5b5b;
}

.publication-categories {
  margin-left: 0;
}
.publication-categories li,
.publication-categories li a {
  display: inline-block;
  font-size: 11px;
  color: #a0a0a0;
  font-family: georgia, "Times New Roman", Times, Garamond, serif;
  font-style: italic;
  text-decoration: none;
  margin-right: 30px;
}
.publication-categories li:before,
.publication-categories li a:before {
  display: none;
}
.publication-categories a.active {
  color: #008ebf;
}

@media (max-width: 960px) {
  .publication .publication__image {
    margin-bottom: 1em;
  }
  .publication .publication__text {
    margin-bottom: 60px;
  }
}
.claim-wrapper h2.claim, .claim-wrapper h3.claim {
  font-size: 11px;
  color: #585b5b;
}

.claim-wrapper--out {
  margin-top: 18px;
  position: absolute;
  bottom: 20px;
}
@media (min-height: 720px) and (min-width: 768px) {
  .claim-wrapper--out {
    position: fixed;
  }
}
.claim-wrapper--out h2.claim, .claim-wrapper--out h3.claim {
  margin-left: 19px;
}

.claim-wrapper--in h2.claim, .claim-wrapper--in h3.claim {
  font-size: 11px;
  color: #585b5b;
  margin-top: 30px;
  margin-left: 20px;
}

@media (max-height: 720px) {
  .claim-wrapper--out {
    display: none;
  }

  .claim-wrapper--in {
    display: block;
  }
}
@media (min-height: 720px) {
  .claim-wrapper--out {
    display: block;
  }

  .claim-wrapper--in {
    display: none;
  }
}
@media (max-width: 768px) {
  .grid-wrapper {
    position: relative;
    padding-bottom: 40px;
  }

  .claim-wrapper h2.claim, .claim-wrapper h3.claim {
    display: inline;
  }

  .claim-wrapper--in {
    width: 100%;
    margin-top: 20px;
  }
}
.contact__title {
  margin-bottom: 16px;
}

.contact__data .col, .contact__data .col-lg-1, .contact__data .col-lg-2, .contact__data .col-lg-3, .contact__data .col-lg-4, .contact__data .matrix__item, .contact__data .matrix__item--blank {
  margin-bottom: 35px;
}

.contact__slogan h2, .contact__slogan h3 {
  font-size: 14px;
  color: #585b5b;
}

.map {
  width: 100%;
  height: 400px;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .map {
    width: 100%;
    height: 200px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .contact__data .col, .contact__data .col-lg-1, .contact__data .col-lg-2, .contact__data .col-lg-3, .contact__data .col-lg-4, .contact__data .matrix__item, .contact__data .matrix__item--blank {
    width: 100%;
  }
}
@media (min-width: 1025px) and (max-width: 1200px) {
  .contact__data .col, .contact__data .col-lg-1, .contact__data .col-lg-2, .contact__data .col-lg-3, .contact__data .col-lg-4, .contact__data .matrix__item, .contact__data .matrix__item--blank {
    width: 50%;
  }
}
.cookie-notice__wrapper {
  position: fixed;
  width: 100%;
  bottom: 0;
  z-index: 10;
  border-top: 1px solid #bfbfbf;
  background-color: #fff;
  clear: both;
  padding: 10px 0;
}
.cookie-notice__wrapper .grid-wrapper {
  clear: both;
}

.cookie-notice__notice {
  max-width: 85%;
  margin-left: 15px;
  float: left;
}

.cookie-notice__accept {
  float: right;
}

/*  */
/* Primary Styles
   Author: 4wd media
 */
/* These selection declarations have to be separate.
   No text-shadow: twitter.com/miketaylr/status/12228805301 */
::-moz-selection {
  background: #404040;
  color: #fff;
  text-shadow: none;
}

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

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

#content {
  margin-right: 20px;
  position: absolute;
  top: 112px;
  left: 220px;
  z-index: 1;
}
#content table {
  margin-bottom: 8px;
}
#content table td {
  font-size: 11px;
  font-style: normal;
  color: #585B5B;
  padding-right: 2px;
}

#publication-categories {
  list-style: none outside;
  margin-left: 34px;
  padding-top: 24px;
}
#publication-categories a {
  color: #a0a0a0;
  font-family: georgia, "Times New Roman", Times, Garamond, serif;
  font-style: italic;
  font-size: 11px;
  text-decoration: none;
}
#publication-categories a:hover {
  color: #5b5b5b;
}
#publication-categories a.active {
  color: #000;
}

.pagination {
  width: 440px;
  padding-left: 40px;
  position: relative;
}
.pagination .pagination-next {
  font-family: georgia, "Times New Roman", Times, Garamond, serif;
  text-decoration: none;
  color: #a0a0a0;
  padding-left: 8px;
  background: url("img/links.png") 0 2px no-repeat;
  position: absolute;
  left: 40px;
}
.pagination .pagination-next:hover {
  color: #5b5b5b;
  background-image: url("img/links-hover.png");
}
.pagination .pagination-prev {
  color: #a0a0a0;
  position: absolute;
  font-family: georgia, "Times New Roman", Times, Garamond, serif;
  text-decoration: none;
  right: 0;
  padding-right: 8px;
  background: url("img/rechts.png") 37px 2px no-repeat;
}
.pagination .pagination-prev:hover {
  color: #5b5b5b;
  background-image: url("img/rechts-hover.png");
}

.javascript .pagination-news {
  display: none;
}
.javascript .pagination-publications {
  display: none;
}

.two-column-first,
.three-column-first,
.three-column-second,
#project-detail-column-first,
.news-column-first-detail,
.anfahrt-column-first-detail {
  width: 200px;
  padding-left: 40px;
  float: left;
}

.news-column-second-detail {
  width: 200px;
  float: left;
}
.news-column-second-detail img {
  width: 200px;
  height: 112px;
  margin: 3px 0px 20px 40px;
  float: left;
}

.contact-column-first-detail {
  width: 440px;
  padding-left: 40px;
  float: left;
}
.contact-column-first-detail #contact table {
  margin-top: 20px;
}
.contact-column-first-detail #contact table td.first {
  width: 130px;
}
.contact-column-first-detail #contact table label {
  font-family: georgia, "Times New Roman", Times, Garamond, serif;
  font-size: 12px;
  font-style: italic;
  color: #404040;
  font-weight: bold;
}
.contact-column-first-detail #contact input[type=text], .contact-column-first-detail #contact textarea {
  width: 315px;
  margin: 0px 0px 6px 0px;
  border: 1px solid #BFBFBF;
}
.contact-column-first-detail #contact input[type=text] {
  height: 18px;
}
.contact-column-first-detail #contact button[type=submit] {
  width: 140px;
  background-color: #fff;
  background-image: url("img/senden.png");
  background-position: top right;
  background-repeat: no-repeat;
  border: none;
  text-align: left;
  padding: 0px;
  margin: 0px;
}
.contact-column-first-detail #contact button[type=submit] span {
  width: 80px;
  height: 20px;
  padding: 3px 0px 0px 0px;
  display: block;
  text-align: center;
  border: 1px solid #BFBFBF;
  font-family: georgia, "Times New Roman", Times, Garamond, serif;
  font-size: 13px;
  font-style: italic;
  color: #A0A0A0;
}
.contact-column-first-detail #contact button[type=submit]:hover {
  background-image: url("img/senden-aktiv.png");
}
.contact-column-first-detail #contact button[type=submit]:hover span {
  color: #585B5B;
}
.contact-column-first-detail button::-moz-focus-inner {
  border: none;
  /* overrides extra padding in Firefox */
}
.contact-column-first-detail #contact tr.pflichtfelder td {
  text-align: right;
}
.contact-column-first-detail #contact tr.nachricht td {
  padding-top: 12px;
}

.contact-column-second-detail {
  width: 200px;
  padding: 47px 0px 0px 40px;
  float: left;
}

.width4 .news-column-second-detail {
  position: absolute;
  left: 240px;
  width: 480px;
}
.width4 .news-column-second-detail img {
  width: 440px;
  height: 267px;
}

.width5 .news-column-second-detail {
  position: absolute;
  left: 240px;
  width: 720px;
}
.width5 .news-column-second-detail img {
  width: 680px;
  height: 402px;
}

.width6 .news-column-second-detail {
  position: absolute;
  left: 240px;
  width: 960px;
}
.width6 .news-column-second-detail img {
  width: 920px;
  height: 518px;
}

.anfahrt-column-second-detail {
  width: 480px;
  padding: 3px 0px 0px 40px;
  float: left;
}
.anfahrt-column-second-detail iframe {
  margin-bottom: 30px;
}

.two-column-second {
  width: 200px;
  float: left;
}
.two-column-second a {
  width: 200px;
  height: 112px;
  margin: 0px 0px 20px 40px;
  display: block;
  float: left;
}
body.noscript .two-column-second a.active .imagegray {
  display: none;
}
body.noscript .two-column-second a.active .imagecolor {
  display: block;
}
body.noscript .two-column-second a:hover .imagegray {
  display: none;
}
body.noscript .two-column-second a:hover .imagecolor {
  display: block;
}
.two-column-second a img {
  position: absolute;
  margin-top: 3px;
}
.two-column-second a .imagecolor {
  display: none;
}
.two-column-second .blank, .two-column-second .showtext {
  width: 200px;
  height: 112px;
  margin: 0px 0px 20px 40px;
  float: left;
  position: relative;
}
.two-column-second .blank .image-detail, .two-column-second .blank .image-detail-next, .two-column-second .showtext .image-detail, .two-column-second .showtext .image-detail-next {
  position: absolute;
  bottom: 0px;
}
.two-column-second .blank .image-detail-next, .two-column-second .showtext .image-detail-next {
  display: none;
}

.width4 .two-column-second {
  position: absolute;
  left: 240px;
  width: 480px;
}
.width4 .two-column-second .wide {
  width: 480px;
}
.width4 .two-column-second .wide a {
  width: 440px;
  height: 267px;
}
.width4 .two-column-second .wide img {
  width: 440px;
}
.width4 .two-column-second .wide .blank, .width4 .two-column-second .wide .showtext {
  display: none;
}

.width5 .two-column-second {
  position: absolute;
  left: 240px;
  width: 720px;
}
.width5 .two-column-second .wide {
  width: 720px;
}
.width5 .two-column-second .wide a {
  width: 680px;
  height: 402px;
}
.width5 .two-column-second .wide img {
  width: 680px;
}
.width5 .two-column-second .wide .blank, .width5 .two-column-second .wide .showtext {
  display: none;
}

.width6 .two-column-second {
  position: absolute;
  left: 240px;
  width: 960px;
}
.width6 .two-column-second .wide {
  width: 960px;
}
.width6 .two-column-second .wide a {
  width: 920px;
  height: 518px;
}
.width6 .two-column-second .wide img {
  width: 920px;
}
.width6 .two-column-second .wide .blank, .width6 .two-column-second .wide .showtext {
  display: none;
}

.three-column-third a {
  width: 200px;
  height: 112px;
  margin: 0px 0px 20px 40px;
  display: block;
  float: left;
}
body.noscript .three-column-third a.active .imagegray {
  display: none;
}
body.noscript .three-column-third a.active .imagecolor {
  display: block;
}
body.noscript .three-column-third a:hover .imagegray {
  display: none;
}
body.noscript .three-column-third a:hover .imagecolor {
  display: block;
}
.three-column-third a img {
  position: absolute;
  margin-top: 3px;
}
.three-column-third a .imagecolor {
  display: none;
}
.three-column-third .blank, .three-column-third .showtext {
  width: 200px;
  height: 112px;
  margin: 0px 0px 20px 40px;
  float: left;
}

.width4 .three-column-third {
  position: absolute;
  left: 480px;
  width: 240px;
}
.width4 .three-column-third .wide {
  width: 240px;
}
.width4 .three-column-third .wide a {
  width: 240px;
  height: 135px;
}
.width4 .three-column-third .wide img {
  width: 240px;
}
.width4 .three-column-third .wide .blank, .width4 .three-column-third .wide .showtext {
  display: none;
}

.width5 .three-column-third {
  position: absolute;
  left: 480px;
  width: 480px;
}
.width5 .three-column-third .wide {
  width: 480px;
}
.width5 .three-column-third .wide a {
  width: 440px;
  height: 247px;
}
.width5 .three-column-third .wide img {
  width: 440px;
}
.width5 .three-column-third .wide .blank, .width5 .three-column-third .wide .showtext {
  display: none;
}

.width6 .three-column-third {
  position: absolute;
  left: 480px;
  width: 720px;
}
.width6 .three-column-third .wide {
  width: 720px;
}
.width6 .three-column-third .wide a {
  width: 680px;
  height: 382px;
}
.width6 .three-column-third .wide img {
  width: 680px;
}
.width6 .three-column-third .wide .blank, .width6 .three-column-third .wide .showtext {
  display: none;
}

#thumbs {
  margin: 0 auto;
  margin-bottom: 20px;
}

.ie7 #thumbs {
  padding-bottom: 20px;
}

.javascript #thumbs {
  margin-bottom: 0px;
}

#thumbsdata {
  width: 100%;
  height: 100%;
  overflow: auto;
}

/*
 * Media queries for responsive design
 */
@media all and (orientation: portrait) {
  /* Style adjustments for portrait mode goes here */
}
@media all and (orientation: landscape) {
  /* Style adjustments for landscape mode goes here */
}
/* Grade-A Mobile Browsers (Opera Mobile, iPhone Safari, Android Chrome)
   Consider this: www.cloudfour.com/css-media-query-for-mobile-is-fools-gold/ */
@media screen and (max-device-width: 480px) {
  /* Prevent iOS, WinMobile from adjusting font size */
  html {
    -webkit-text-size-adjust: none;
    -ms-text-size-adjust: none;
  }
}
/* */
