.audioplayer {
  height: 2.5em;
  color: #fff;
  position: relative;
  z-index: 0;
  background: #333;
  font-size: 16px;
}
.audioplayer > div {
  position: absolute;
}
.audioplayer:not(.audioplayer-mini) .audioplayer-playpause {
  border-right: 1px solid #555;
  border-right-color: rgba(255, 255, 255, 0.15);
}
.audioplayer-mini {
  width: 2.5em;
  margin: 0 auto;
}
.audioplayer-mini .audioplayer-playpause {
  width: 100%;
}
.audioplayer-playpause {
  width: 2.5em;
  height: 100%;
  text-align: left;
  text-indent: -9999px;
  cursor: pointer;
  z-index: 2;
  top: 0;
  left: 0;
}
.audioplayer-mini .audioplayer-playpause:hover,
.audioplayer-playpause:focus {
  background-color: #222;
}
.audioplayer-playpause a {
  display: block;
}
.audioplayer-stopped .audioplayer-playpause a {
  width: 0;
  height: 0;
  border: 0.45em solid transparent;
  border-right: none;
  border-left-color: #fff;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -0.45em 0 0 -0.25em;
}
.audioplayer-playing .audioplayer-playpause a {
  width: 0.75em;
  height: 0.75em;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -0.375em 0 0 -0.375em;
}
.audioplayer-playing .audioplayer-playpause a:before,
.audioplayer-playing .audioplayer-playpause a:after {
  width: 40%;
  height: 100%;
  background-color: #fff;
  content: "";
  position: absolute;
  top: 0;
}
.audioplayer-playing .audioplayer-playpause a:before {
  left: 0;
}
.audioplayer-playing .audioplayer-playpause a:after {
  right: 0;
}
.audioplayer-time {
  width: 4.375em;
  height: 100%;
  line-height: 2.5em;
  text-align: center;
  z-index: 2;
  top: 0;
}
.audioplayer-time-current {
  border-left: 1px solid #111;
  border-left-color: rgba(0, 0, 0, 0.25);
  left: 2.5em;
}
.audioplayer-time-duration {
  border-right: 1px solid #555;
  border-right-color: rgba(255, 255, 255, 0.15);
  right: 2.5em;
}
.audioplayer-novolume .audioplayer-time-duration {
  border-right: 0;
  right: 0;
}
.audioplayer-bar {
  height: 0.875em;
  background-color: #000;
  cursor: pointer;
  z-index: 1;
  top: 50%;
  right: 6.875em;
  left: 6.875em;
  margin-top: -0.438em;
}
.audioplayer-novolume .audioplayer-bar {
  right: 4.375em;
}
.audioplayer-bar div {
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.audioplayer-bar-loaded {
  background-color: #555;
  background: -webkit-linear-gradient(top, #555, #444);
  background: linear-gradient(to bottom, #555, #444);
  z-index: 1;
}
.audioplayer-bar-played {
  background: #007fd1;
  z-index: 2;
}
.audioplayer-volume {
  width: 2.5em;
  height: 100%;
  text-align: left;
  text-indent: -9999px;
  cursor: pointer;
  z-index: 2;
  top: 0;
  right: 0;
}
.audioplayer-volume:hover,
.audioplayer-volume:focus {
  background-color: #222;
}
.audioplayer-volume-button {
  width: 100%;
  height: 100%;
}
.audioplayer-volume-button a {
  width: 0.313em;
  height: 0.375em;
  background-color: #fff;
  display: block;
  position: relative;
  z-index: 1;
  top: 40%;
  left: 35%;
}
.audioplayer-volume-button a:before,
.audioplayer-volume-button a:after {
  content: "";
  position: absolute;
}
.audioplayer-volume-button a:before {
  width: 0;
  height: 0;
  border: 0.5em solid transparent;
  border-left: none;
  border-right-color: #fff;
  z-index: 2;
  top: 50%;
  right: -0.25em;
  margin-top: -0.5em;
}
.audioplayer:not(.audioplayer-muted) .audioplayer-volume-button a:after {
  width: 0.313em;
  height: 0.313em;
  border: 0.25em double #fff;
  border-width: 0.25em 0.25em 0 0;
  left: 0.563em;
  top: -0.063em;
  border-radius: 0 0.938em 0 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.audioplayer-volume-adjust {
  height: 6.25em;
  cursor: default;
  position: absolute;
  left: 0;
  right: 0;
  top: -9999px;
  background: #333;
}
.audioplayer-volume:not(:hover) .audioplayer-volume-adjust {
  opacity: 0;
}
.audioplayer-volume:hover .audioplayer-volume-adjust {
  top: auto;
  bottom: 100%;
}
.audioplayer-volume-adjust > div {
  width: 40%;
  height: 80%;
  background-color: #222;
  cursor: pointer;
  position: relative;
  z-index: 1;
  margin: 30% auto 0;
}
.audioplayer-volume-adjust div div {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #007fd1;
}
.audioplayer-novolume .audioplayer-volume {
  display: none;
}
.audioplayer,
.audioplayer-volume-adjust {
  background-color: #333;
  background: -webkit-linear-gradient(top, #444, #222);
  background: linear-gradient(to bottom, #444, #222);
}
.audioplayer,
.audioplayer-bar,
.audioplayer-bar div,
.audioplayer-volume-adjust div {
  border-radius: 3px;
}
.audioplayer-volume-adjust {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.audioplayer *,
.audioplayer *:before,
.audioplayer *:after {
  -webkit-transition: color 0.25s ease, background-color 0.25s ease,
    opacity 0.5s ease;
  transition: color 0.25s ease, background-color 0.25s ease, opacity 0.5s ease;
}
section.theme h1,
section.theme h2,
section.theme h3,
section.theme h4,
section.theme h5,
section.theme h6 {
  padding-bottom: 0.3em;
  margin: 0;
  font-style: normal;
  font-weight: normal;
}
section.theme h1 {
  font-size: 1.6em;
}
section.theme h2 {
  font-size: 1.5em;
}
section.theme h3 {
  font-size: 1.3em;
}
section.theme h4 {
  font-size: 1.2em;
}
section.theme h5 {
  font-size: 1.1em;
}
section.theme h6 {
  font-size: 1em;
}
ul,
ol {
  margin: 0 0 18px 0;
  padding: 0 0 0 20px;
}
ul.disc {
  list-style-type: disc;
}
ul.circle {
  list-style-type: circle;
}
ul.square {
  list-style-type: square;
}
ol.arabic-numbers {
  list-style-type: decimal;
}
ol.upper-alpha {
  list-style-type: upper-alpha;
}
ol.lower-alpha {
  list-style-type: lower-alpha;
}
ol.upper-roman {
  list-style-type: upper-roman;
}
ol.lower-roman {
  list-style-type: lower-roman;
}
b,
strong {
  font-weight: bolder;
}
em {
  font-style: italic;
}
pre code {
  padding: 10px 15px;
  display: block;
  white-space: normal;
}
code {
  display: block;
  font-size: 1em;
  padding: 3% 4%;
  display: inline-block;
  font-size: 0.9em;
  font-family: Menlo, Monaco, "Andale Mono", "lucida console", "Courier New",
    monospace;
}
blockquote {
  font-style: italic;
  padding: 3% 4%;
  margin: 10px 0;
  border-top: 1px solid rgba(136, 136, 136, 0.2);
  border-bottom: 1px solid rgba(136, 136, 136, 0.2);
}
blockquote p {
  margin: 0;
  font-size: 1.1em;
}
blockquote p:before,
blockquote p:after {
  opacity: 0.8;
  font-family: arial;
  font-size: 24px;
  width: 20px;
  position: absolute;
  margin-top: -3px;
}
blockquote p:before {
  content: "“";
  margin-left: -11px;
}
blockquote p:after {
  content: "”";
  margin-left: 1px;
}
.cf:after {
  content: "";
  display: table;
  clear: both;
}
a {
  text-decoration: none;
  outline: none;
}
a:hover {
  text-decoration: underline;
}
img[alt~="edge"] {
  width: 100% !important;
  height: auto !important;
  line-height: 0 !important;
}
.image-left img {
  float: left;
  margin: 5px 20px 15px 5px;
}
.image-right img {
  float: right;
  margin: 5px 5px 15px 20px;
}
.image-left img[alt~="edge"] {
  max-width: 50%;
}
.image-right img[alt~="edge"] {
  max-width: 50%;
}
#config_theme {
  position: absolute;
  visibility: hidden;
}
@font-face {
  font-family: "ncdsi-201";
  src: url("https://www.ackvanrooyen.com/rw_common/themes/n_spire_deux/assets/assets/font/ncdsi-201.eot?2myvn4");
  src: url("https://www.ackvanrooyen.com/rw_common/themes/n_spire_deux/assets/assets/font/ncdsi-201.eot?2myvn4#iefix")
      format("embedded-opentype"),
    url("https://www.ackvanrooyen.com/rw_common/themes/n_spire_deux/assets/assets/font/ncdsi-201.woff2?2myvn4")
      format("woff2"),
    url("https://www.ackvanrooyen.com/rw_common/themes/n_spire_deux/assets/assets/font/ncdsi-201.ttf?2myvn4")
      format("truetype"),
    url("https://www.ackvanrooyen.com/rw_common/themes/n_spire_deux/assets/assets/font/ncdsi-201.woff?2myvn4")
      format("woff"),
    url("https://www.ackvanrooyen.com/rw_common/themes/n_spire_deux/assets/assets/font/ncdsi-201.svg?2myvn4#ncdsi-201")
      format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Rubik_300";
  src: url("https://www.ackvanrooyen.com/rw_common/themes/n_spire_deux/assets/assets/font/Rubik-Light.eot#iefix")
      format("embedded-opentype"),
    url("https://www.ackvanrooyen.com/rw_common/themes/n_spire_deux/assets/assets/font/Rubik-Light.woff")
      format("woff"),
    url("https://www.ackvanrooyen.com/rw_common/themes/n_spire_deux/assets/assets/font/Rubik-Light.ttf")
      format("truetype"),
    url("https://www.ackvanrooyen.com/rw_common/themes/n_spire_deux/assets/assets/font/Rubik-Light.svg#Rubik-Light")
      format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Rubik_400";
  src: url("https://www.ackvanrooyen.com/rw_common/themes/n_spire_deux/assets/assets/font/Rubik-Regular.eot#iefix")
      format("embedded-opentype"),
    url("https://www.ackvanrooyen.com/rw_common/themes/n_spire_deux/assets/assets/font/Rubik-Regular.woff")
      format("woff"),
    url("https://www.ackvanrooyen.com/rw_common/themes/n_spire_deux/assets/assets/font/Rubik-Regular.ttf")
      format("truetype"),
    url("https://www.ackvanrooyen.com/rw_common/themes/n_spire_deux/assets/assets/font/Rubik-Regular.svg#Rubik-Regular")
      format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Rubik_500";
  src: url("https://www.ackvanrooyen.com/rw_common/themes/n_spire_deux/assets/assets/font/Rubik-Medium.eot#iefix")
      format("embedded-opentype"),
    url("https://www.ackvanrooyen.com/rw_common/themes/n_spire_deux/assets/assets/font/Rubik-Medium.woff")
      format("woff"),
    url("https://www.ackvanrooyen.com/rw_common/themes/n_spire_deux/assets/assets/font/Rubik-Medium.ttf")
      format("truetype"),
    url("https://www.ackvanrooyen.com/rw_common/themes/n_spire_deux/assets/assets/font/Rubik-Medium.svg#Rubik-Medium")
      format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Rubik_700";
  src: url("https://www.ackvanrooyen.com/rw_common/themes/n_spire_deux/assets/assets/font/Rubik-Bold.eot#iefix")
      format("embedded-opentype"),
    url("https://www.ackvanrooyen.com/rw_common/themes/n_spire_deux/assets/assets/font/Rubik-Bold.woff")
      format("woff"),
    url("https://www.ackvanrooyen.com/rw_common/themes/n_spire_deux/assets/assets/font/Rubik-Bold.ttf")
      format("truetype"),
    url("https://www.ackvanrooyen.com/rw_common/themes/n_spire_deux/assets/assets/font/Rubik-Bold.svg#Rubik-Bold")
      format("svg");
  font-weight: normal;
  font-style: normal;
}
.cf:after {
  content: "";
  display: table;
  clear: both;
}
hr {
  height: 1px;
  width: 100%;
  font-size: 0;
  border: none;
  position: relative;
}
hr:before {
  height: 3px;
  width: 40px;
  content: "";
  display: block;
  position: absolute;
  left: 0%;
}
aside h1,
aside h2,
aside h3,
aside h4,
aside h4,
aside h5,
aside h6 {
  font-weight: normal;
}
b,
strong {
  font-family: "Rubik_700";
  font-weight: normal;
}
html,
body {
  padding: 0;
  margin: 0;
  height: 100%;
}
body {
  font: 400 14px/1.4 "Rubik_400", sans-serif;
  background: #000;
}
section.theme img {
  max-width: 100%;
  height: auto;
}
header#theme,
aside.theme nav,
aside.theme section,
aside.theme footer,
header.theme,
.breadcrumb,
section.theme,
#theme_background {
  visibility: hidden;
}
@media screen and (min-width: 400px) {
  #theme_background {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url("/rw_common/Ack\ van\ Rooyen\ 2017\ 10\ 15\ foto\ Joke\ Schot\ \(14\)-min.jpg");
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 0;
  }
}
header.theme {
  padding-top: 30px;
  left: 0;
  width: 145px;
  white-space: nowrap;
  position: absolute;
  line-height: 0;
  height: 100vh;
  z-index: 10;
}
header.theme .wrap {
  text-align: center;
}
header.theme .wrap img {
  height: auto;
  padding-bottom: 30px;
}
header.theme h1 {
  line-height: 0;
  padding: 0;
  margin: 0;
  position: relative;
  left: 72.5px;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  font-weight: normal;
}
aside.theme {
  width: 215px;
  position: fixed;
  left: 145px;
  -webkit-transition: left 300ms;
  transition: left 300ms;
  bottom: 0;
  top: 0;
  right: 0;
  overflow: hidden;
  z-index: 100;
}
aside.theme ::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 15px;
}
aside.theme * {
  box-sizing: content-box;
}
aside.theme div.scroll {
  position: absolute;
  top: 0;
  right: -30px;
  left: 0;
  bottom: 0;
  padding-right: 15px;
  overflow-y: scroll;
  overflow-x: hidden;
}
aside.theme .wrap {
  padding: 30px 20px;
  position: relative;
}
aside.theme .wrap .wrap_arrow {
  position: absolute;
  top: 100%;
  left: 19px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}
aside.theme nav,
aside.theme section,
aside.theme footer {
  width: 100%;
  float: left;
  visibility: hidden;
}
aside.theme nav {
  padding-top: 0px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: relative;
  z-index: 3;
}
aside.theme nav a {
  text-decoration: none;
}
aside.theme nav .nav,
aside.theme nav #nav_trigger {
  display: none;
}
aside.theme nav .nav {
  padding-bottom: 20px;
  text-transform: none;
  line-height: normal;
}
aside.theme nav .nav .wrap {
  padding: 0;
}
aside.theme nav .nav .wrap img {
  height: auto;
  width: 100%;
  padding-bottom: 15px;
}
aside.theme nav .nav h1 {
  margin: 0;
  display: inline-block;
  line-height: 1.1;
}
aside.theme nav .nav #site_slogan {
  display: block;
}
aside.theme nav .current > a {
  background: rgba(255, 255, 255, 0.15);
  background: -webkit-gradient(
    linear,
    left top,
    right bottom,
    color-stop(0%, rgba(255, 255, 255, 0.15)),
    color-stop(100%, rgba(0, 0, 0, 0))
  );
  background: -webkit-linear-gradient(
    left,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}
aside.theme nav .wrap > .scroll_nav > ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
aside.theme nav .wrap > .scroll_nav > ul > li {
  margin: 0 -20px;
}
aside.theme nav .wrap > .scroll_nav > ul > li span {
  padding-right: 7px;
  font-family: "Rubik_300", sans-serif;
}
aside.theme nav .wrap > .scroll_nav > ul > li a {
  display: block;
  position: relative;
  padding-right: 20px;
  padding-left: 20px;
  -webkit-transition: box-shadow 200ms;
  transition: box-shadow 200ms;
}
aside.theme nav .wrap > .scroll_nav > ul > li a:before {
  content: "";
  display: block;
  opacity: 1;
  height: 6px;
  width: 6px;
  border-radius: 6px;
  position: absolute;
  margin-left: -11px;
  margin-top: 7px;
  -webkit-transition: opacity 300ms, background-color 300ms,
    -webkit-transform 300ms;
  transition: opacity 300ms, background-color 300ms, -webkit-transform 300ms;
  transition: opacity 300ms, transform 300ms, background-color 300ms;
  transition: opacity 300ms, transform 300ms, background-color 300ms,
    -webkit-transform 300ms;
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}
aside.theme nav .wrap > .scroll_nav > ul > li ul a {
  padding-left: 45px;
}
aside.theme nav .wrap > .scroll_nav > ul > li ul ul a {
  padding-left: 55px;
}
aside.theme nav .wrap > .scroll_nav > ul li:hover > a:before,
aside.theme nav .wrap > .scroll_nav > ul li.current_dot > a:before,
aside.theme nav .wrap > .scroll_nav > ul li.current > a:before,
aside.theme nav .wrap > .scroll_nav > ul li.currentParent > a:before {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
aside.theme nav .wrap > .scroll_nav > ul ul {
  padding: 0 0 10px;
  margin: 0;
  font-size: 0.9em;
  display: none;
}
aside.theme nav .wrap > .scroll_nav > ul ul li {
  list-style: none;
}
aside.theme nav .wrap > .scroll_nav > ul ul li a {
  font-family: "Rubik_500", sans-serif;
  -webkit-transition: background 200ms;
  transition: background 200ms;
}
aside.theme nav .wrap > .scroll_nav > ul ul li a:before {
  margin-left: -11px;
  margin-top: 6px;
}
aside.theme section {
  font-family: "Rubik_400", sans-serif;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}
aside.theme section h2#aside {
  text-transform: none;
  font-weight: normal;
  padding: 0 0 20px;
  line-height: normal;
  margin: 0;
}
aside.theme section ul {
  margin-bottom: 0;
}
aside.theme section hr {
  height: 0;
}
aside.theme section hr:before {
  width: 35px;
}
aside.theme footer {
  border: none;
  letter-spacing: 0px;
  font-size: 14px;
  position: relative;
  z-index: 1;
}
section.theme {
  margin-left: 360px;
  padding: 30px;
  -webkit-transition: margin 300ms;
  transition: margin 300ms;
  position: relative;
}
section.theme > .breadcrumb {
  margin-left: -30px;
  margin-bottom: 30px;
  margin-top: 0;
  background: rgba(0, 0, 0, 0.15);
  list-style: none;
  font-size: 12px;
  letter-spacing: 0px;
  padding: 9px 12px;
  display: inline-block;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
section.theme > .breadcrumb li {
  display: inline;
}
section.theme > .breadcrumb li a {
  color: #fff;
  font-family: "Rubik_500", sans-serif;
}
section.theme > .breadcrumb li:last-child span {
  display: none;
}
section.theme ul {
  margin-bottom: 0;
}
section.theme section.above_content,
section.theme section.below_content {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom-width: 6px;
  border-bottom-style: solid;
  display: none;
}
section.theme section.above_content .wrap,
section.theme section.below_content .wrap {
  background: none;
}
section.theme footer.theme,
section.theme section.below_content {
  padding-top: 30px;
  margin-top: 30px;
  border-top-width: 6px;
  border-top-style: solid;
  border-bottom-width: 0;
  padding-bottom: 0;
}
section.theme > .wrap {
  min-height: 300px;
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 7px 20px -5px rgba(0, 0, 0, 0.2);
}
section.theme main {
  display: block;
  padding: 30px;
}
section.theme main .breadcrumb {
  padding: 0 0 15px;
  font-size: 0.95em;
  margin: 0;
  list-style: none;
}
section.theme main .breadcrumb li {
  display: inline;
}
@media screen and (max-width: 800px) {
  header.theme {
    display: none;
  }
  aside.theme {
    width: 215px;
    left: 0;
  }
  aside.theme nav .nav {
    display: block;
  }
  section.theme {
    -webkit-transition: none;
    transition: none;
    margin-left: 215px;
  }
}
@media screen and (min-width: 601px) {
  header.spacer,
  footer.theme {
    display: none;
  }
  section.theme {
    padding-top: 30px !important;
  }
  section.theme main > .breadcrumb {
    display: none;
  }
  body.ready aside.theme nav .wrap > .scroll_nav > ul,
  body.ready section.theme .wrap {
    visibility: visible !important;
    opacity: 1 !important;
    -webkit-transform: none !important;
    transform: none !important;
  }
}
@media screen and (max-width: 600px) {
  header.spacer .wrap,
  aside.theme nav .nav .wrap {
    padding: 0;
    display: inline;
  }
  header.spacer .wrap img,
  aside.theme nav .nav .wrap img {
    height: auto;
    width: auto;
    padding-bottom: 0;
    padding-right: 3px;
  }
  header.spacer {
    display: block;
    padding: 15px;
    visibility: hidden !important;
  }
  header.spacer h1 {
    margin: 0;
    display: inline-block;
  }
  .wrap_arrow {
    display: none;
  }
  aside.theme {
    width: 100%;
    left: 0;
    bottom: auto;
    height: auto;
    overflow: visible;
    z-index: 500;
  }
  aside.theme div.scroll {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    overflow: visible;
    padding-right: 0;
  }
  aside.theme nav .space_nav {
    height: 100px;
    float: left;
    width: 100%;
  }
  aside.theme nav .wrap {
    font-size: 1.05em;
    padding: 15px;
  }
  aside.theme nav .wrap > .scroll_nav {
    position: absolute;
    height: 100vh;
    left: 0;
    top: 100%;
    right: 0;
    margin-right: -15px;
    overflow-y: auto;
    display: none;
  }
  aside.theme nav .wrap > .scroll_nav.show {
    display: block;
  }
  aside.theme nav .nav {
    display: block;
    padding-bottom: 0px;
    padding-right: 50px;
    line-height: normal;
  }
  aside.theme nav .nav #site_slogan {
    display: inline;
  }
  aside.theme nav #nav_trigger {
    position: absolute;
    top: 0;
    right: 0;
    line-height: 0;
    height: 100%;
    width: 60px;
    font-family: "Rubik_300", sans-serif;
    font-size: 36px;
    text-align: center;
    display: block;
    cursor: pointer;
  }
  aside.theme nav #nav_trigger span {
    position: absolute;
    top: 50%;
    width: 100%;
    left: 0;
    display: block;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  aside.theme nav #nav_trigger .ncd-effect {
    width: 50px;
    height: 50px;
    top: -24px;
    left: 5px;
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  aside.theme nav .wrap > .scroll_nav > ul {
    visibility: hidden;
    -webkit-transform-origin: right top;
    transform-origin: right top;
    box-shadow: 0 15px 50px -5px rgba(0, 0, 0, 0.5);
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
    position: relative;
    width: 80%;
    float: right;
    right: 0;
    padding: 15px 0px;
    margin: 20px 40px 30px 0;
    top: 0;
    z-index: 100;
  }
  aside.theme nav .wrap > .scroll_nav > ul > li {
    margin: 0;
  }
  aside.theme nav .wrap > .scroll_nav > ul > li a {
    padding-left: 20px;
  }
  aside.theme nav .wrap > .scroll_nav > ul > li ul a {
    padding-left: 45px;
  }
  aside.theme nav .wrap > .scroll_nav > ul > li ul ul a {
    padding-left: 55px;
  }
  aside.theme nav .wrap > .scroll_nav > ul > li a {
    padding-top: 8px;
    padding-bottom: 8px;
    padding-right: 25px;
  }
  aside.theme nav .wrap > .scroll_nav > ul.show {
    display: block;
  }
  aside.theme nav .wrap > .scroll_nav > ul:before {
    content: "";
    position: absolute;
    top: -10px;
    right: 0;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-top: 0 solid transparent;
  }
  aside.theme section .wrap {
    font-size: 1.1em;
    display: none;
  }
  aside.theme footer {
    height: auto;
    display: none;
  }
  section.theme {
    margin-left: 0;
    padding: 25px;
  }
  section.theme > .breadcrumb {
    display: none;
  }
  section.theme section.above_content,
  section.theme section.below_content {
    display: block;
  }
}
@media screen and (max-width: 400px) {
  aside.theme {
    position: fixed;
  }
  section.theme .wrap {
    box-shadow: none;
    min-height: 0;
    -webkit-transform: none !important;
    transform: none !important;
  }
  section.theme {
    margin-top: 0;
    padding: 0;
    box-shadow: none;
  }
  section.theme main {
    padding: 15px;
  }
  .album-wrapper {
    -webkit-column-gap: 15px !important;
    column-gap: 15px !important;
  }
}
.blog-entry hr {
  margin: 0 0 40px;
}
.blog-entry h1.blog-entry-title {
  font-size: 1.6em;
  line-height: normal;
}
.blog-entry .blog-entry-date {
  padding-bottom: 30px;
  font-size: 1.1em;
}
.blog-entry .blog-entry-date a {
  padding: 0 5px;
}
.blog-entry .blog-entry-date i {
  font-size: 14px;
  padding-right: 10px;
}
.blog-entry .blog-entry-body {
  padding: 0 0 30px;
  clear: both;
}
.blog-entry .blog-entry-body .blog-read-more {
  display: block;
}
.blog-entry .blog-entry-body .blog-read-more a {
  display: inline-block;
  position: relative;
  margin: 25px 0 0;
  font-size: 1em;
  border-radius: 3px;
  padding: 8px 34px 8px 15px;
  text-align: center;
  -webkit-transition: background 100ms;
  transition: background 100ms;
  border: 1px solid rgba(136, 136, 136, 0.1);
  background: rgba(136, 136, 136, 0.08);
}
.blog-entry .blog-entry-body .blog-read-more a i {
  font-size: 19px;
  color: #000;
  position: absolute;
  font-weight: normal;
  right: 12px;
  top: 2px;
  font-family: times;
}
.blog-entry .blog-entry-body a.blog-comment-link {
  padding: 15px 0;
  display: block;
  clear: both;
  font-size: 1.1em;
}
.blog-entry .blog-entry-body .blog-entry-tags {
  clear: both;
  word-wrap: break-word;
  margin-top: 10px;
  padding-top: 10px;
}
.blog-entry .blog-entry-body .blog-entry-tags a {
  padding: 6px 7px;
  border-radius: 0;
  margin: 0 3px 6px;
  line-height: 10px;
  font-size: 0.8em;
  display: inline-block;
  border: 1px solid rgba(136, 136, 136, 0.2);
}
#blog-categories,
#blog-archives,
.blog-tag-cloud,
#blog-rss-feeds {
  list-style: none;
  padding: 40px 0 0;
  display: block;
  position: relative;
}
#blog-categories:before,
#blog-archives:before,
.blog-tag-cloud:before,
#blog-rss-feeds:before {
  font-size: 0.9em;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
#blog-categories a,
#blog-archives a,
.blog-tag-cloud a,
#blog-rss-feeds a {
  padding: 10px 0 0;
  display: inline-block;
  text-decoration: none;
  border-bottom: 1px solid rgba(136, 136, 136, 0.2);
}
#blog-categories .sub-title,
#blog-archives .sub-title,
.blog-tag-cloud .sub-title,
#blog-rss-feeds .sub-title {
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 5px;
  font-size: 15px;
}
#blog-categories .sub-title i,
#blog-archives .sub-title i,
.blog-tag-cloud .sub-title i,
#blog-rss-feeds .sub-title i {
  padding-right: 5px;
  font-size: 15px;
  vertical-align: -1px;
  margin: 0;
}
#blog-categories .sub-title:after {
  content: "Categories";
}
#blog-archives .sub-title:after {
  content: "Archives";
}
.blog-tag-cloud .sub-title:after {
  content: "Tags";
}
#blog-rss-feeds .sub-title:after {
  content: "Feeds";
}
ul.blog-tag-cloud .sub-title {
  margin-bottom: 22px;
}
ul.blog-tag-cloud:after {
  content: "";
  display: table;
  clear: both;
}
ul.blog-tag-cloud li a {
  padding: 4px 7px;
  margin: 0 8px 7px 0;
  line-height: 16px;
  font-size: 0.95em;
  display: inline-block;
  float: left;
  border: 1px solid rgba(136, 136, 136, 0.2);
}
.blog-category-link-enabled,
.blog-archive-link-enabled,
.blog-rss-link {
  display: block;
}
#blog-archives a.blog-archive-link-enabled {
  display: inline-block;
  margin-right: 20px;
}
#blog-archives br ~ br,
.blog-category-link-disabled,
.blog-archive-link-disabled,
.blog-archive-month,
.blog-archive-link {
  display: none;
}
.filesharing-item {
  margin-bottom: 20px;
}
.filesharing-item ~ .filesharing-item {
  margin-top: 20px;
}
.filesharing-item .filesharing-item-title {
  margin: 0 0 15px;
}
.filesharing-item .filesharing-item-title a {
  font-size: 0.9em;
  background: rgba(136, 136, 136, 0.1);
  letter-spacing: 1px;
  padding: 8px 12px;
  font-family: "Rubik_500";
  border: none;
  display: inline-block;
}
.filesharing-item .filesharing-item-title a:hover {
  box-shadow: none;
  text-decoration: none !important;
}
.filesharing-item .filesharing-item-title .filesharing-item-description {
  padding-bottom: 10px;
}
.album-title {
  font-size: 1.6em;
  padding: 0 0 8px;
}
.album-description {
  padding: 0 0 30px;
}
.thumbnail-caption {
  margin: 0;
  font-size: 0.9em;
}
.thumbnail-wrap {
  margin-bottom: -10px;
}
img[data-action="zoom"] {
  cursor: pointer;
  cursor: -moz-zoom-in;
}
.zoom-img,
.zoom-img-wrap {
  position: relative;
  z-index: 666;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
img.zoom-img {
  cursor: pointer;
  cursor: -moz-zoom-out;
}
.zoom-overlay {
  z-index: 420;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  filter: "alpha(opacity=0)";
  opacity: 0;
  -webkit-transition: opacity 300ms;
  transition: opacity 300ms;
}
.zoom-overlay-open .zoom-overlay {
  filter: "alpha(opacity=100)";
  opacity: 1;
}
.zoom-overlay-open,
.zoom-overlay-transitioning {
  cursor: default;
}
.album-title,
.album-description,
.thumbnail-caption,
.thumbnail-wrap.hide {
  -webkit-transition: opacity 200ms;
  transition: opacity 200ms;
}
.zoom-overlay-open .breadcrumb,
.zoom-overlay-open .album-title,
.zoom-overlay-open .album-description,
.zoom-overlay-open .thumbnail-caption,
.zoom-overlay-open .thumbnail-wrap.hide,
.zoom-overlay-open .above_content,
.zoom-overlay-open .below_content {
  opacity: 0 !important;
}
.zoom-overlay-open section.theme .wrap {
  box-shadow: none;
}
form.rw-contact-form label {
  font-family: "Rubik_500", sans-serif;
  line-height: 24px;
  font-size: 12px;
  letter-spacing: 1px;
  padding-bottom: 6px;
  text-transform: uppercase;
}
form.rw-contact-form .form-input-field + br,
form.rw-contact-form .form-input-field + br + br {
  display: none;
}
form.rw-contact-form select.form-select-field {
  font-size: 1.2em;
}
form.rw-contact-form input.form-input-field,
form.rw-contact-form textarea,
form.rw-contact-form input.form-input-button {
  padding: 9px 2%;
  display: block;
  margin: 0 0 15px;
  width: 100%;
  font-size: 15px;
  box-sizing: border-box;
  border-width: 2px;
  border-style: solid;
  -webkit-transition: background 300ms;
  transition: background 300ms;
  background: transparent;
  -webkit-appearance: none;
}
form.rw-contact-form input.form-input-button[type="reset"],
form.rw-contact-form input.form-input-button[type="submit"] {
  width: auto;
  display: inline-block;
  padding: 9px 15px;
  margin: 0px 20px 0 0;
  cursor: pointer;
  font-family: "Rubik_500", sans-serif;
  -webkit-appearance: none;
  -webkit-border-radius: 0px;
}
form.rw-contact-form .form-input-field:focus {
  box-shadow: none;
  outline: none;
}
.rw-sitemap > ul.tree {
  padding: 0;
  margin: 0 !important;
  list-style: none;
}
.rw-sitemap > ul.tree ul {
  padding: 0 0 0 15px;
  margin: 0;
  list-style: none;
}
.rw-sitemap > ul.tree ul ul {
  padding: 0;
}
.rw-sitemap > ul.tree > li > a {
  padding: 5px 0;
}
.rw-sitemap > ul.tree > li li {
  padding: 5px 0;
}
.rw-sitemap > ul.tree a {
  display: block;
}
.rw-sitemap > ul.tree a i {
  display: none;
}
#social-icon-container {
  margin: -5px;
}
#social-icon-container .social-import {
  -webkit-transition: color 300ms;
  transition: color 300ms;
}
#social-icon-container a {
  text-decoration: none;
}
#social-icon-container [class^="social-"],
#social-icon-container [class*=" social-"] {
  margin: 0 9px 20px;
}
[class^="social-"],
[class*=" social-"] {
  font-family: "ncdsi-201" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  display: inline-block;
  font-size: 25px;
}
[class^="social-"]:before,
[class*=" social-"]:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.above_content .social-import,
.below_content .social-import {
  display: none;
}
.social-forward {
  font-size: 1.1em;
  padding-top: 8px;
  font-family: "Rubik_500", sans-serif !important;
}
.social-forward:after {
  content: "\e90e";
  display: inline-block;
  padding-left: 5px;
  font-family: "ncdsi-201" !important;
}
.social-comments:before {
  content: "\e91e";
}
.social-copyright:before {
  content: "\e91c";
}
.social-layout:before {
  content: "\e919";
}
.social-basket:before {
  content: "\e917";
}
.social-eye:before {
  content: "\e918";
}
.social-forward:before {
  content: "\e90e";
}
.social-cart:before {
  content: "\e916";
}
.social-ext:before {
  content: "\e90f";
}
.social-Gab:before {
  content: "\e91f";
}
.social-snapchat:before {
  content: "\e91d";
}
.social-bag:before {
  content: "\e91b";
}
.social-viewbug:before {
  content: "\e91a";
}
.social-goodreads:before {
  content: "\e914";
}
.social-wechat:before {
  content: "\e915";
}
.social-pandora:before {
  content: "\e912";
}
.social-cartloom:before {
  content: "\e911";
}
.social-thumbtack:before {
  content: "\e910";
}
.social-home-advisor:before {
  content: "\e913";
}
.social-info-circle:before {
  content: "\e907";
}
.social-info:before {
  content: "\e908";
}
.social-question-circle:before {
  content: "\e909";
}
.social-question:before {
  content: "\e90a";
}
.social-exclamation:before {
  content: "\e90b";
}
.social-exclamation-circle:before {
  content: "\e90c";
}
.social-exclamation-triangle:before {
  content: "\e90d";
}
.social-glassdoor:before {
  content: "\e906";
}
.social-rss:before {
  content: "\e903";
}
.social-bars:before {
  content: "\e904";
}
.social-tag:before {
  content: "\e905";
}
.social-cal:before {
  content: "\e902";
}
.social-grubhub:before {
  content: "\e900";
}
.social-opentable:before {
  content: "\e901";
}
.social-typed:before {
  content: "\e646";
}
.social-flip:before {
  content: "\e645";
}
.social-link:before {
  content: "\e644";
}
.social-ustream:before {
  content: "\e643";
}
.social-pocket:before {
  content: "\e642";
}
.social-pinterest:before {
  content: "\e606";
}
.social-linkedin:before {
  content: "\e615";
}
.social-disqus:before {
  content: "\e616";
}
.social-deviant-art:before {
  content: "\e619";
}
.social-app-net:before {
  content: "\e61d";
}
.social-app-store:before {
  content: "\e622";
}
.social-500-alt:before {
  content: "\e623";
}
.social-500:before {
  content: "\e627";
}
.social-aboutme:before {
  content: "\e636";
}
.social-facebook-like:before {
  content: "\e614";
}
.social-strava:before {
  content: "\e600";
}
.social-facebook:before {
  content: "\e601";
}
.social-newsvine:before {
  content: "\e602";
}
.social-yelp:before {
  content: "\e603";
}
.social-google-plus:before {
  content: "\e604";
}
.social-google:before {
  content: "\e605";
}
.social-twitter:before {
  content: "\e607";
}
.social-yahoo:before {
  content: "\e608";
}
.social-vk:before {
  content: "\e609";
}
.social-stumble-upon:before {
  content: "\e60a";
}
.social-trip-advisor:before {
  content: "\e60b";
}
.social-soundcloud:before {
  content: "\e60c";
}
.social-reddit:before {
  content: "\e60d";
}
.social-ncd:before {
  content: "\e60e";
}
.social-mixcloud:before {
  content: "\e60f";
}
.social-lastfm:before {
  content: "\e610";
}
.social-imdb:before {
  content: "\e611";
}
.social-etsy:before {
  content: "\e612";
}
.social-fab:before {
  content: "\e613";
}
.social-flickr:before {
  content: "\e617";
}
.social-ebay:before {
  content: "\e618";
}
.social-digg:before {
  content: "\e61a";
}
.social-blip:before {
  content: "\e61b";
}
.social-bandcamp:before {
  content: "\e61c";
}
.social-aim:before {
  content: "\e61e";
}
.social-amazon:before {
  content: "\e61f";
}
.social-android:before {
  content: "\e620";
}
.social-angie:before {
  content: "\e621";
}
.social-behance:before {
  content: "\e624";
}
.social-blogger:before {
  content: "\e625";
}
.social-delicious:before {
  content: "\e626";
}
.social-disporia:before {
  content: "\e628";
}
.social-dribbble:before {
  content: "\e629";
}
.social-ello:before {
  content: "\e62a";
}
.social-email:before {
  content: "\e62b";
}
.social-four-square:before {
  content: "\e62c";
}
.social-github:before {
  content: "\e62d";
}
.social-houzz:before {
  content: "\e62e";
}
.social-instagram:before {
  content: "\e62f";
}
.social-itunes:before {
  content: "\e630";
}
.social-myspace:before {
  content: "\e631";
}
.social-path:before {
  content: "\e632";
}
.social-paypal:before {
  content: "\e633";
}
.social-phone:before {
  content: "\e634";
}
.social-picasa:before {
  content: "\e635";
}
.social-reverb-nation:before {
  content: "\e637";
}
.social-skype:before {
  content: "\e639";
}
.social-spotify:before {
  content: "\e63a";
}
.social-tumblr:before {
  content: "\e63b";
}
.social-viddler:before {
  content: "\e63c";
}
.social-vimeo:before {
  content: "\e63d";
}
.social-vine:before {
  content: "\e63e";
}
.social-wordpress:before {
  content: "\e63f";
}
.social-xing:before {
  content: "\e640";
}
.social-youtube:before {
  content: "\e641";
}
