/**
*
* Main Stylesheet For Visual Style Guide
*
**/
/*! normalize.css v3.0.1 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Remove margin
 */
figure {
  margin: 0;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/* Blockquote
   ========================================================================== */
blockquote {
  margin: 0;
}

/*
 * HTML5 Boilerplate
 *
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */
/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
html,
button,
input,
select,
textarea {
  color: #222;
}

body {
  font-size: 1em;
  line-height: 1.4;
}

a {
  color: #00e;
}

a:visited {
  color: #551a8b;
}

a:hover {
  color: #06e;
}

/*
 * Remove the gap between images and the bottom of their containers: h5bp.com/i/440
 */
img {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */
textarea {
  resize: vertical;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
/* ==========================================================================
   Helper classes
   ========================================================================== */
/* Prevent callout */
.nocallout {
  -webkit-touch-callout: none;
}

.pressed {
  background-color: rgba(0, 0, 0, 0.7);
}

/* A hack for HTML5 contenteditable attribute on mobile */
textarea[contenteditable] {
  -webkit-appearance: none;
}

/* A workaround for S60 3.x and 5.0 devices which do not animated gif images if
   they have been set as display: none */
.gifhidden {
  position: absolute;
  left: -100%;
}

/*
 * Image replacement
 */
.ir {
  background-color: transparent;
  background-repeat: no-repeat;
  border: 0;
  direction: ltr;
  display: block;
  overflow: hidden;
  text-align: left;
  text-indent: -999em;
}

.ir br {
  display: none;
}

/*
 * Hide from both screenreaders and browsers: h5bp.com/u
 */
.hidden {
  display: none !important;
  visibility: hidden;
}

/*
 * Hide only visually, but have it available for screenreaders: h5bp.com/v
 */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/*
 * Extends the .visuallyhidden class to allow the element to be focusable
 * when navigated to via the keyboard: h5bp.com/p
 */
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

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

/**
 * Clearfix helper
 * Used to contain floats: h5bp.com/q
 */
.clearfix::before,
.clearfix::after {
  content: "";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   Theses examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */
@media only screen and (min-width: 800px) {
  /* Style adjustments for viewports that meet the condition */
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi) {
  /* Style adjustments for viewports that meet the condition */
}
hr:before, .row:before, .content:before, nav:before, .list-small:before, .list-small article:before, .article-list-header:before, .article-list-author:before, .article-list-filters:before,
.download-list-filters:before, .article-list-pagination:before, .article-meta:before, .featured-article:before, .frontpage-latest-news li:before, .frontpage-faqman-header:before, article.faqman:before, .faqman-form:before, hr:after, .row:after, .content:after, nav:after, .list-small:after, .list-small article:after, .article-list-header:after, .article-list-author:after, .article-list-filters:after,
.download-list-filters:after, .article-list-pagination:after, .article-meta:after, .featured-article:after, .frontpage-latest-news li:after, .frontpage-faqman-header:after, article.faqman:after, .faqman-form:after, .clearfix:before, .clearfix:after {
  content: " ";
  display: table;
}
hr:after, .row:after, .content:after, nav:after, .list-small:after, .list-small article:after, .article-list-header:after, .article-list-author:after, .article-list-filters:after,
.download-list-filters:after, .article-list-pagination:after, .article-meta:after, .featured-article:after, .frontpage-latest-news li:after, .frontpage-faqman-header:after, article.faqman:after, .faqman-form:after, .clearfix:after {
  clear: both;
}

@font-face {
  font-family: 'Proxima Nova';
  src: url("../fonts/proxima/proximanova-regular-webfont.eot");
  src: url("../fonts/proxima/proximanova-regular-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/proxima/proximanova-regular-webfont.woff") format("woff"), url("../fonts/proxima/proximanova-regular-webfont.ttf") format("truetype"), url("../fonts/proxima/proximanova-regular-webfont.svg#proxima_nova_rgregular") format("svg");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Proxima Nova';
  src: url("../fonts/proxima/proximanova-bold-webfont.eot");
  src: url("../fonts/proxima/proximanova-bold-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/proxima/proximanova-bold-webfont.woff") format("woff"), url("../fonts/proxima/proximanova-bold-webfont.ttf") format("truetype"), url("../fonts/proxima/proximanova-bold-webfont.svg#proxima_nova_rgbold") format("svg");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Proxima Nova';
  src: url("../fonts/proxima/proximanova-light-webfont.eot");
  src: url("../fonts/proxima/proximanova-light-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/proxima/proximanova-light-webfont.woff") format("woff"), url("../fonts/proxima/proximanova-light-webfont.ttf") format("truetype"), url("../fonts/proxima/proximanova-light-webfont.svg#proxima_novalight") format("svg");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: 'Myriad Set Pro';
  font-style: normal;
  font-weight: 200;
  src: url("../fonts/myriad/myriad-set-pro_text.eot?") format("eot"), url("../fonts/myriad/myriad-set-pro_thin.woff") format("woff"), url("../fonts/myriad/myriad-set-pro_thin.ttf") format("truetype");
}
@font-face {
  font-family: 'Myriad Set Pro';
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/myriad/myriad-set-pro_text.eot?") format("eot"), url("../fonts/myriad/myriad-set-pro_text.woff") format("woff"), url("../fonts/myriad/myriad-set-pro_text.ttf") format("truetype");
}
@font-face {
  font-family: 'Myriad Set Pro';
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/myriad/myriad-set-pro_text.eot?") format("eot"), url("../fonts/myriad/myriad-set-pro_semibold.woff") format("woff"), url("..../fonts/myriad/myriad-set-pro_semibold.ttf") format("truetype");
}
*, *:before, *:after {
  box-sizing: border-box;
}

* {
  -webkit-tap-highlight-color: transparent;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 300;
  word-break: keep-all;
  -webkit-hyphens: none;
}

time {
  font-size: 75%;
  color: #555;
  word-break: keep-all;
  -webkit-hyphens: none;
}

img {
  border-radius: 0.125rem;
  max-width: 100%;
  height: auto;
}

a {
  color: #2980b9;
  text-decoration: none;
}
a:hover {
  color: #222;
}
a:visited {
  color: #2980b9;
}
a:visited:hover {
  color: #222;
}
a:focus {
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
}

hr {
  border: solid #eee;
  border-width: 1px 0 0;
  clear: both;
  height: 0;
}

hr.no-top {
  margin-top: 0;
}

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

p,
ul {
  font-size: 90%;
}

input[type="text"]:focus {
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
}

label {
  font-size: 1rem;
  color: #4d4d4d;
  cursor: pointer;
  display: block;
  font-weight: normal;
  margin-bottom: 0.625rem;
  font-size: 90%;
  color: #222;
}

button,
.button {
  border-radius: 0.1875rem;
  background: transparent;
  border: 0.125rem solid #2980b9;
  color: #2980b9;
  padding: 0.3125rem 0.625rem;
  font-size: 95%;
  margin-top: 0.625rem;
  display: inline-block;
  background: #2980b9;
  color: #fff;
  border: 0.125rem solid #2980b9;
}
button:hover,
.button:hover {
  background: #2980b9;
  color: #fff;
}
button:focus,
.button:focus {
  outline: none;
  outline-color: transparent;
}
button:visited,
.button:visited {
  color: #2980b9;
}
button:visited:hover,
.button:visited:hover {
  color: #fff;
}
button:hover,
.button:hover {
  background: transparent;
  color: #2980b9;
}
button:visited,
.button:visited {
  color: #fff;
}
button:visited:hover,
.button:visited:hover {
  color: #2980b9;
}

input[type="checkbox"],
input[type="radio"] {
  display: inline-block;
  vertical-align: baseline;
  margin-right: 0.625rem;
  font-size: 90%;
}

[type="search"] {
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
  appearance: textfield;
}

.type-nieuws {
  color: #3fa9f5;
  font-weight: 700;
}

.type-workshop {
  color: #00b063;
  font-weight: 700;
}

.type-download {
  color: #ff931e;
  font-weight: 700;
}

.type-video {
  color: #16a085;
  font-weight: 700;
}

.type-review {
  color: #e74c3c;
  font-weight: 700;
}

.read-more {
  display: block;
  color: #d2232a;
  font-weight: 700;
  font-size: 80%;
  margin-top: 0.3125rem;
}

svg.rss {
  width: 0.9375rem;
  height: 0.9375rem;
}
svg.rss path {
  fill: #ff9c00;
}

.ad {
  text-align: center;
}
.ad a,
.ad iframe,
.ad object,
.ad > div,
.ad img,
.ad .adform-adbox {
  display: block;
  margin: 0 auto 1.25rem !important;
}

.centered, .article-download-link {
  text-align: center;
}

.rectangle {
  background: #ccc;
  height: 250px;
  width: 300px;
  margin: 0.625rem auto;
}

.leaderboard-bottom {
  margin: 1.25rem auto;
}

.flex-video {
  text-align: center;
}
@media screen and (max-width: 64em) {
  .flex-video {
    position: relative;
    padding-top: 1.5625rem;
    padding-bottom: 67.5%;
    height: 0;
    margin-bottom: 1rem;
    overflow: hidden;
    padding-top: 0px;
    padding-bottom: 56%;
  }
  .flex-video.widescreen {
    padding-bottom: 56.34%;
  }
  .flex-video.vimeo {
    padding-top: 0;
  }
  .flex-video iframe,
  .flex-video object,
  .flex-video embed,
  .flex-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

ul.errorlist {
  list-style: none;
  padding: 0;
}
ul.errorlist li {
  font-size: 80%;
  color: #d2232a;
}

body {
  font-family: "Proxima Nova", "Helvetica Neue", "Helvetica", "Arial", "Verdana", "sans-serif";
  text-rendering: optimizeLegibility;
  -webkit-font-feature-settings: "kern", "liga";
  -moz-font-feature-settings: "kern", "liga";
  font-feature-settings: "kern", "liga";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  position: static;
  background: #f8f9fa;
  -ms-touch-action: none;
}

.disable-hover,
.disable-hover * {
  pointer-events: none !important;
}

.main {
  width: 100%;
  overflow-x: hidden;
  -webkit-transition: all 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
          transition: all 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  padding: 4.375rem 0 0 20rem;
}
@media screen and (min-width: 64.063em) {
  .main {
    padding: 4.375rem 0 0 0;
  }
}
@media screen and (min-width: 40.063em) and (max-width: 64em) {
  .main {
    padding-left: 0;
  }
}
@media screen and (max-width: 40em) {
  .main {
    padding-top: 0;
    padding-left: 0 !important;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 40em) {
  .article-detail .main {
    padding-top: 3.0625rem;
  }
}

@media screen and (max-width: 40em) {
  body.frontpage .news-stream,
  body.frontpage .news-stream-category,
  body.frontpage .news-stream-company-links {
    -webkit-transform: translateX(0) !important;
    transform: translateX(0) !important;
  }
}

body.stream-hide .news-stream,
body.stream-hide .news-stream-category,
body.stream-hide .news-stream-company-links {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.row {
  position: relative;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
  max-width: 970px;
}

.content {
  background: #fff;
  border: 1px solid #ddd;
  padding: 1.875rem;
}
@media screen and (max-width: 40em) {
  .content {
    padding: 1.25rem;
  }
}
.content a {
  color: #222;
}

body.media-awards {
  background: url("../images/ma_bg.gif") no-repeat top left;
  background-attachment: fixed;
}

footer {
  padding: 1.875rem 0 0;
}
footer img {
  padding: 0 1.25rem;
}
footer ul {
  list-style: none;
  padding: 0;
}
footer h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 700;
  font-size: 100%;
}
footer a {
  font-size: 90%;
  color: #222;
}
footer a:visited {
  color: #222;
}
footer a:hover {
  text-decoration: underline;
}
@media screen and (min-width: 40.063em) {
  footer .odd {
    margin-left: 11.875rem !important;
  }
}
@media screen and (max-width: 64em) {
  footer .clm-3 {
    text-align: center;
    float: none;
    margin-left: auto !important;
    margin-right: auto;
  }
}

.clm-3 {
  position: relative;
  padding-left: 0;
  padding-right: 0;
  width: 25%;
  left: 0%;
  right: auto;
  right: 0%;
  left: auto;
  float: left;
  margin-left: 0% !important;
  margin-bottom: rem-calc(16);
}

.clm-4 {
  position: relative;
  padding-left: 0;
  padding-right: 0;
  width: 33.3333333333%;
  left: 0%;
  right: auto;
  right: 0%;
  left: auto;
  float: left;
  margin-left: 0% !important;
  margin-bottom: rem-calc(16);
}

.clm-5 {
  position: relative;
  padding-left: 0;
  padding-right: 0;
  width: 41.6666666667%;
  left: 0%;
  right: auto;
  right: 0%;
  left: auto;
  float: left;
  margin-left: 0% !important;
  margin-bottom: rem-calc(16);
}

.clm-6, .article-detail .content section, .article-list-filters .filter,
.download-list-filters .filter {
  position: relative;
  padding-left: 0;
  padding-right: 0;
  width: 50%;
  left: 0%;
  right: auto;
  right: 0%;
  left: auto;
  float: left;
  margin-left: 0% !important;
  margin-bottom: rem-calc(16);
}
@media screen and (max-width: 40em) {
  .clm-6, .article-detail .content section, .article-list-filters .filter,
  .download-list-filters .filter {
    position: relative;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    left: 0%;
    right: auto;
    right: 0%;
    left: auto;
    float: left;
    margin-left: 0% !important;
  }
}

.clm-8 {
  position: relative;
  padding-left: 0;
  padding-right: 0;
  width: 66.6666666667%;
  left: 0%;
  right: auto;
  right: 0%;
  left: auto;
  float: left;
  margin-left: 0% !important;
  margin-bottom: rem-calc(16);
}

.clm-12, .download-list-filters .filter {
  position: relative;
  padding-left: 0;
  padding-right: 0;
  width: 100%;
  left: 0%;
  right: auto;
  right: 0%;
  left: auto;
  float: left;
  margin-left: 0% !important;
  margin-bottom: rem-calc(16);
}

nav {
  width: 100%;
  background: #f6f6f3;
  height: 3.125rem;
  line-height: 3.125rem;
  border-bottom: 2px solid #ddd;
  z-index: 200000001;
  position: fixed;
  top: 0;
  overflow: hidden;
}
nav .brand {
  float: left;
  padding-left: 3.75rem;
  margin-right: 3.75rem;
  -webkit-transition: all 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
          transition: all 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
@media screen and (min-width: 64.063em) and (max-width: 90em) {
  nav .brand {
    padding-left: 2rem;
    margin-right: 1.25rem;
  }
}
@media screen and (min-width: 40.063em) and (max-width: 64em) {
  nav .brand {
    padding-left: 0.625rem;
  }
}
@media screen and (max-width: 40em) {
  nav .brand {
    margin-left: 0.625rem;
    padding: 0;
  }
}
@media screen and (max-width: 90em) {
  nav .brand {
    margin-right: 5.5rem;
  }
}
nav .brand img.logo-big {
  width: 12.5rem;
}
@media screen and (max-width: 40em) {
  nav .brand img.logo-big {
    display: none;
  }
}
nav .brand img.logo-small {
  display: none;
  width: 3.125rem;
}
@media screen and (max-width: 40em) {
  nav .brand img.logo-small {
    display: block;
    position: relative;
  }
}
nav .menus {
  float: right;
  text-align: right;
}
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav ul.primary {
  float: left;
  border-left: 1px solid #ddd;
}
@media screen and (max-width: 64em) {
  nav ul.primary {
    border: 0;
    padding: 0;
    width: 100%;
    background: #fff;
    position: absolute;
    top: 3.125rem;
    display: none;
  }
  nav ul.primary li {
    display: block;
  }
  nav ul.primary a {
    border-bottom: 1px solid #ddd;
  }
}
nav ul.primary a {
  font-family: "Myriad Set Pro";
  font-size: 90%;
  font-weight: 700;
  display: block;
  text-align: center;
  padding: 0 0.9375rem;
  color: #222;
  border-left: 1px solid #f6f6f3;
  border-right: 1px solid #f6f6f3;
}
@media screen and (max-width: 64em) {
  nav ul.primary a {
    border-bottom: 1px solid #ddd;
  }
}
nav ul.primary a:hover {
  background: #ebebe4;
  color: #222;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
}
nav ul.primary a:visited {
  color: #222;
}
@media screen and (max-width: 64em) {
  nav ul.primary .navigation-downloads {
    display: none;
  }
}
nav ul.primary .navigation-subscribe {
  border-left: 1px dashed #ddd;
  margin-right: -0.3125rem;
}
nav ul.primary .navigation-subscribe a {
  color: #2980b9;
}
nav ul.social {
  float: right;
  margin-right: 1.25rem;
}
@media screen and (max-width: 64em) {
  nav ul.social {
    display: none;
  }
}
nav ul.social svg {
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 0.75rem;
}
nav ul.social a {
  padding: 0.3125rem;
}
nav li {
  display: inline-block;
  margin-right: -0.25rem;
}
nav li.active a {
  background: #ebebe4;
  color: #222;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
}

.stream-toggle {
  position: absolute;
  left: 17.5rem;
  padding: 0.5625rem 0.75rem 0 0;
  border-right: 1px solid #ddd;
  cursor: pointer;
}
@media screen and (max-width: 40em) {
  .stream-toggle {
    display: none;
  }
}
.stream-toggle svg {
  height: 1.75rem;
  width: 1.75rem;
  -webkit-transition: all 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
          transition: all 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transform: rotate(0);
  -ms-transform: rotate(0);
  -webkit-transform: rotate(0);
  position: relative;
  -webkit-animation: shake 6s infinite;
  animation: shake 6s infinite;
}
.stream-toggle path {
  fill: #2980b9;
}
.stream-toggle.open svg {
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}

.menu-toggle {
  display: none;
  height: 3.125rem;
  float: right;
  position: relative;
  right: 1.25rem;
  padding-left: 1.25rem;
  border-left: 1px solid #ddd;
  cursor: pointer;
}
.menu-toggle:hover path {
  fill: #2980b9;
}
@media screen and (max-width: 90em) {
  .menu-toggle {
    display: block;
  }
}
@media screen and (max-width: 64em) {
  .menu-toggle {
    right: 1.25rem;
  }
}
.menu-toggle svg {
  width: 1.375rem;
  height: 1.5rem;
  display: inline-block;
  margin-top: 0.75rem;
}

@media screen and (max-width: 40em) {
  .navigation-account {
    display: none;
  }
}

.search {
  float: right;
  border-left: 1px solid #ddd;
  padding: 0 1.25rem 0 0.3125rem;
}
@media screen and (max-width: 64em) {
  .search {
    display: none;
  }
}
@media screen and (min-width: 64.063em) and (max-width: 90em) {
  .search {
    margin-right: 1.25rem;
  }
}
.search input {
  border: 1px solid #ddd;
  font-size: 80%;
  border-radius: 0.1875rem;
  padding: 0.625rem;
  margin-right: 0.9375rem;
}
@media screen and (max-width: 40em) {
  .search input {
    position: absolute;
    left: 0;
    top: -3.125rem;
    width: 18.75rem;
    margin: 0 0.625rem;
  }
}

.search-toggle {
  padding: 0;
  background: none;
  border: none;
  position: relative;
  top: 0.3125rem;
  margin: 0;
}
.search-toggle:hover path {
  fill: #2980b9;
}
@media screen and (max-width: 64em) {
  .search-toggle {
    position: absolute;
    right: 0.9375rem;
  }
}
.search-toggle svg {
  width: 1.25rem;
  height: 1.25rem;
}

@-webkit-keyframes shake {
  0% {
    left: 0.3125rem;
  }
  10% {
    left: -0.3125rem;
  }
  20% {
    left: 0.3125rem;
  }
  30% {
    left: -0.3125rem;
  }
  40% {
    left: 0.3125rem;
  }
  50% {
    left: -0.3125rem;
  }
  60% {
    left: 0.3125rem;
  }
  70% {
    left: -0.3125rem;
  }
  80% {
    left: 0.3125rem;
  }
  90% {
    left: -0.3125rem;
  }
  100% {
    left: 0.3125rem;
  }
}
@keyframes shake {
  0% {
    left: 0;
  }
  10% {
    left: -0.3125rem;
  }
  20% {
    left: 0.3125rem;
  }
  30% {
    left: -0.3125rem;
  }
  40% {
    left: 0.3125rem;
  }
  50% {
    left: -0.3125rem;
  }
  60% {
    left: 0.3125rem;
  }
  70% {
    left: -0.3125rem;
  }
  80% {
    left: 0.3125rem;
  }
  90% {
    left: -0.3125rem;
  }
  100% {
    left: 0.3125rem;
  }
}
.ajax-account {
  float: right;
}
@media screen and (max-width: 64em) {
  .ajax-account {
    position: absolute;
    top: 0;
    right: 3.9375rem;
    border-left: 1px solid #ddd;
  }
  .ajax-account .account-functions {
    border-left: none;
  }
}
.ajax-account.shake .ajax-login {
  position: relative;
  -webkit-animation: shake 1s;
  animation: shake 1s;
}
.ajax-account.open {
  border: none !important;
}
.ajax-account.open ul.dropdown {
  display: block;
  visibility: visible;
  background: white;
  position: absolute;
  top: 3.125rem;
}
.ajax-account.open ul.dropdown a {
  border-bottom: 1px solid #ddd;
  width: 100%;
}
.ajax-account.open ul.dropdown li:last-child a {
  border: none;
}
.ajax-account.open path {
  fill: #2980b9;
}
.ajax-account svg {
  width: 1.25rem;
  margin-top: 0.5rem;
}
.ajax-account a {
  height: 3.125rem;
  font-size: 90%;
  font-weight: 700;
  text-align: center;
  display: block;
  padding: 0 0.625rem;
}
.ajax-account a.open {
  background: white;
}
@media screen and (max-width: 40em) {
  .ajax-account a.open {
    background: transparent;
  }
}
.ajax-account a:hover {
  color: #222;
}
.ajax-account a:hover path {
  fill: #2980b9;
}
.ajax-account a:visited {
  color: #222;
}
.ajax-account figure {
  position: relative;
  top: -0.0625rem;
  left: -0.3125rem;
  margin-right: 0.3125rem;
}
.ajax-account img {
  width: 2.5rem;
}

.account-functions {
  position: relative;
  float: left;
  border-left: 1px solid #ddd;
  height: 3.125rem;
  padding: 0;
}
.account-functions:hover {
  background: #ebebe4;
}
.account-functions ul.dropdown {
  display: none;
  visibility: hidden;
  top: -3.125rem;
}
.account-functions ul.dropdown.open {
  display: block;
}
.account-functions figure {
  float: left;
}
.account-functions img {
  border: 1px solid #ddd;
}

.ajax-account a.ajax-login {
  padding: 0 1.25rem;
}

.ajax-login-close {
  position: fixed;
  top: 3.125rem;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1080;
  display: none;
}
.ajax-login-close.open {
  display: block;
}

.login-content {
  line-height: 150%;
  background: white;
  position: absolute;
  width: 20rem;
  top: 3.125rem;
  right: 1.4375rem;
  border-radius: 0 0 0.1875rem 0.1875rem;
  border: 1px solid #DDD;
  border-top: 0;
  z-index: 1090;
}
@media screen and (max-width: 40em) {
  .login-content {
    width: 100%;
    right: 0;
    border: none;
  }
}
.login-content h3 {
  margin: 0;
  padding: 0.625rem 1.25rem;
  background: #529866;
  border-radius: 0.1875rem 0.1875rem 0 0;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.login-content svg {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 12px;
  right: 15px;
  display: block;
  cursor: pointer;
}
.login-content svg path {
  fill: #fff;
}
.login-content form {
  padding: 0 1.25rem 1.25rem;
}
.login-content form label {
  margin-bottom: 0;
}
.login-content form label[for="id_remember"] {
  float: left;
  margin-right: 0.625rem;
}
.login-content form input[type="text"],
.login-content form input[type="password"] {
  width: 100%;
  border: none;
  border-radius: 0.1875rem;
  border: 1px solid #ddd;
  background: #eee;
  font-size: 1rem;
  padding: 0.625rem;
}
.login-content form button {
  width: 100%;
  margin: 0 0 0.625rem;
}
.login-content form .password-reset {
  font-size: 0.75rem;
  color: #999;
}

nav.open {
  overflow: visible;
}
@media screen and (max-width: 40em) {
  nav.open .login-content {
    height: 32.5rem;
  }
}

nav.menu-open {
  overflow: visible;
}

.account-register {
  color: #2980b9;
  font-size: 80%;
  font-weight: 700;
}
.account-register:hover {
  color: #222;
}
.account-register:visited {
  color: #2980b9;
}
.account-register:visited:hover {
  color: #222;
}

.polaroid-article {
  margin: 0 0 1.875rem;
}
.polaroid-article a {
  display: block;
}
.polaroid-article a:hover h3,
.polaroid-article a:hover .read-more {
  text-decoration: underline;
}
.polaroid-article h3 {
  margin: 0.625rem 0 0 0;
  font-weight: 700;
}
.polaroid-article p {
  position: relative;
  height: 10.625rem;
  margin: 0;
  display: block;
  border: 1px solid #ddd;
  padding: 2rem 1.25rem 1.25rem;
  border-radius: 0.1875rem;
  overflow: hidden;
  background: #2980b9;
  color: #fff;
}
.polaroid-article p span {
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  padding: 0.3125rem 0.625rem;
  border-radius: 0 0 0.1875rem 0;
  color: #222;
  font-size: 80%;
}
.polaroid-article img {
  border: 1px solid #eee;
}
.polaroid-article span.difficulty {
  float: right;
  display: block;
  height: 0.625rem;
  border-radius: 0.375rem;
  width: 1.875rem;
  margin-top: 0.3125rem;
}
.polaroid-article span.difficulty.makkelijk {
  background: #00b063;
}
.polaroid-article span.difficulty.normaal {
  background: orange;
}
.polaroid-article span.difficulty.moeilijk {
  background: #d2232a;
}

.list-small {
  position: relative;
}
.list-small article {
  background: #fff;
  padding: 0.625rem;
  overflow: hidden;
  border-bottom: 1px solid #eee;
}
.list-small article a {
  height: 3.125rem;
  display: block;
  color: #222;
}
.list-small article a:hover h3 {
  text-decoration: underline;
}
.list-small article a:visited {
  color: #999;
  display: block;
}
.list-small article a:visited h3 {
  font-weight: normal;
}
.list-small article h3 {
  font-weight: 700;
}
.list-small article img {
  display: block;
  border-radius: 0.125rem;
  float: left;
  margin-right: 0.625rem;
}
.list-small article a:visited img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(1);
}
.list-small section,
.list-small .section {
  overflow: hidden;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.list-small h3 {
  font-size: 80%;
  font-weight: normal;
  line-height: 130%;
  margin: 0;
}
.list-small time {
  display: block;
}
@media screen and (max-width: 40em) {
  .list-small time {
    font-size: 60%;
  }
}
.list-small .more {
  float: right;
  font-weight: 700;
  padding: 0.3125rem 0.625rem;
}

.article-detail .news-stream,
.article-detail .news-stream-company-links {
  left: -20rem;
}
@media screen and (min-width: 90.063em) {
  .article-detail .news-stream,
  .article-detail .news-stream-company-links {
    left: 0;
  }
}
.article-detail.stream-hide .news-stream,
.article-detail.stream-hide .news-stream-company-links {
  left: 0;
}
.article-detail .content section {
  border: 1px solid #ddd;
  border-top: 0;
  margin: -1.875rem 0 1.25rem;
}
.article-detail .content section a {
  padding: 0.625rem 1.25rem 0.3125rem;
  display: block;
}
.article-detail .content section time {
  color: #d2232a;
}
.article-detail .content section h3 {
  font-size: 80%;
  font-weight: 700;
  margin-top: 0;
}
.article-detail .content section.article-previous {
  left: -1.875rem;
  border-left: 0;
  word-break: keep-all;
  white-space: nowrap;
}
@media screen and (max-width: 40em) {
  .article-detail .content section.article-previous {
    display: none;
  }
}
.article-detail .content section.article-previous h3 {
  width: 25.625rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.article-detail .content section.article-previous img {
  position: absolute;
  top: 0;
  right: 0;
}
.article-detail .content section.article-previous a:hover {
  border-color: #d2232a;
}
.article-detail .content section.article-previous a:hover h3 {
  text-decoration: underline;
}
.article-detail .content section.article-next {
  float: right;
  right: -1.875rem;
  border-right: 0;
  text-align: right;
  word-break: keep-all;
  white-space: nowrap;
}
@media screen and (max-width: 40em) {
  .article-detail .content section.article-next {
    display: none;
  }
}
.article-detail .content section.article-next h3 {
  width: 25.625rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.article-detail .content section.article-next img {
  position: absolute;
  top: 0;
  left: 0;
}
.article-detail .content section.article-next a:hover {
  border-color: #d2232a;
}
.article-detail .content section.article-next a:hover h3 {
  text-decoration: underline;
}
.article-detail .content h1 {
  font-family: "Myriad Set Pro";
  font-weight: 700;
  font-size: 2.1875rem;
  margin: 0;
  text-align: center;
}
@media screen and (max-width: 40em) {
  .article-detail .content h1 {
    font-size: 1.875rem;
  }
}
.article-detail .content h2 {
  margin: 0 0 1.25rem;
  text-align: center;
  font-weight: 300;
  color: #777;
}
.article-detail .content h3 {
  margin-bottom: 0.3125rem;
}
.article-detail .content p {
  margin-top: 0;
}
@media screen and (min-width: 64.063em) {
  .article-detail header {
    padding: 0 3.125rem;
  }
}
@media screen and (min-width: 40.063em) and (max-width: 64em) {
  .article-detail header {
    margin: 0 -1.875rem;
  }
}
@media screen and (max-width: 40em) {
  .article-detail header {
    margin-bottom: 1.25rem;
  }
}
.article-detail header img:after {
  content: "";
  display: block;
  height: 300px;
  width: 200px;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.5);
}
.article-detail header picture {
  position: relative;
  display: block;
}
.article-detail header .image-source {
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 80%;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 0.3125rem 0.625rem;
  word-break: keep-all;
  white-space: nowrap;
}
.article-detail header .image-source:hover {
  text-decoration: underline;
}
.article-detail .intro {
  font-family: "Myriad Set Pro";
  font-weight: 600;
}
.article-detail .intro p {
  font-size: 1.125rem;
}
@media screen and (min-width: 40.063em) and (max-width: 64em) {
  .article-detail .intro p {
    font-family: "Proxima Nova", "Helvetica Neue", "Helvetica", "Arial", "Verdana", "sans-serif";
    font-weight: 300;
  }
}
.article-detail .article-body {
  padding: 0 3.125rem;
  text-align: justify;
  word-break: keep-all;
}
@media screen and (max-width: 64em) {
  .article-detail .article-body {
    padding: 0;
  }
}
@media screen and (max-width: 64em) {
  .article-detail .article-body p {
    font-size: 100%;
  }
}
.article-detail .article-body img {
  margin: 0 auto;
  display: block;
}
.article-detail .article-body a {
  font-weight: 700;
  color: #2980b9;
}
.article-detail .article-body a:hover {
  color: #222;
  text-decoration: underline;
}
.article-detail .article-ending {
  margin: 1.25rem 0;
}
.article-detail .article-comments {
  margin-top: 1.875rem;
}

.article-next-floating {
  position: fixed;
  z-index: 200000000;
  -webkit-transition: all 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
          transition: all 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -webkit-transform: translateY(-20rem);
  transform: translateY(-20rem);
  -webkit-transform: translateX(20rem);
  transform: translateX(20rem);
  right: 0.625rem;
  bottom: 0.625rem;
  width: 20rem;
}
@media screen and (max-width: 90em) {
  .article-next-floating {
    display: none;
  }
}
.article-next-floating.show {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.article-next-floating article {
  border: 1px solid #ddd;
  padding-top: 0.3125rem;
}
.article-next-floating article > span {
  font-weight: 700;
  color: #d2232a;
  font-size: 80%;
}
.article-next-floating .article-image-floating {
  margin-right: 0.625rem !important;
}
.article-next-floating a {
  color: #222;
}
.article-next-floating a:hover {
  text-decoration: none !important;
}

.article-download-link a {
  border-radius: 0.1875rem;
  background: transparent;
  border: 0.125rem solid #529866;
  color: #529866;
  padding: 0.3125rem 0.625rem;
  font-size: 95%;
  margin-top: 0.625rem;
  display: inline-block;
  background: #529866;
  color: #fff;
  border: 0.125rem solid #529866;
  font-size: 1rem;
  color: #fff !important;
}
.article-download-link a:hover {
  background: #529866;
  color: #fff;
}
.article-download-link a:focus {
  outline: none;
  outline-color: transparent;
}
.article-download-link a:visited {
  color: #529866;
}
.article-download-link a:visited:hover {
  color: #fff;
}
.article-download-link a:hover {
  background: transparent;
  color: #529866;
}
.article-download-link a:visited {
  color: #fff;
}
.article-download-link a:visited:hover {
  color: #529866;
}
.article-download-link a:hover {
  color: #529866 !important;
  text-decoration: none !important;
}

.article-download-image {
  margin: 0 auto;
  display: block;
}

.article-list-header h2 {
  float: left;
  white-space: nowrap;
}
.article-list-header span {
  font-size: 70%;
  color: #888;
}
.article-list-header svg {
  float: right;
  width: 24px;
  height: 24px;
}
.article-list-header path {
  fill: #ff9c00;
}

.article-list-author img {
  float: left;
}
.article-list-author p {
  margin-left: 8.75rem;
}

.article-list .content {
  padding-top: 1.25rem;
}
.article-list h2 {
  margin: 0 0 0.625rem 0;
}
.article-list .clm-4 {
  padding: 0 0.625rem;
}
@media screen and (max-width: 40em) {
  .article-list .clm-4 {
    float: none;
    width: 100%;
  }
}
.article-list .list-group {
  margin: 0 -0.625rem;
}
.article-list .faqman-article p {
  background: #f9bd28;
  color: #222;
}
.article-list .author {
  padding: 1.875rem;
}
.article-list .author img {
  border-radius: 50%;
}
.article-list .author h3 {
  font-weight: 700;
}
.article-list .author a {
  font-weight: 700;
}
.article-list .author a:hover {
  color: #3fa9f5;
}
.article-list .author a:hover h3 {
  text-decoration: underline;
}

.article-list-workshops h3,
.download-list h3 {
  font-size: 100%;
}
.article-list-workshops section,
.download-list section {
  padding: 0 0.625rem;
}

.article-list-workshops h2 {
  margin-top: 0.3125rem;
  margin-bottom: 0;
  float: left;
}
.article-list-workshops strong {
  color: #00b063;
  font-size: 1.875rem;
}

.article-list-filters h5,
.download-list-filters h5 {
  margin: 0;
}
.article-list-filters ul,
.download-list-filters ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.article-list-filters li,
.download-list-filters li {
  display: inline-block;
}
.article-list-filters a,
.download-list-filters a {
  border-radius: 0.1875rem;
  background: transparent;
  border: 0.125rem solid #2980b9;
  color: #2980b9;
  padding: 0.3125rem 0.625rem;
  font-size: 95%;
  margin-top: 0.625rem;
  display: inline-block;
}
.article-list-filters a:hover,
.download-list-filters a:hover {
  background: #2980b9;
  color: #fff;
}
.article-list-filters a:focus,
.download-list-filters a:focus {
  outline: none;
  outline-color: transparent;
}
.article-list-filters a:visited,
.download-list-filters a:visited {
  color: #2980b9;
}
.article-list-filters a:visited:hover,
.download-list-filters a:visited:hover {
  color: #fff;
}

.download-list-filters {
  margin-bottom: 0.625rem;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid #eee;
}

.article-list-pagination {
  margin: 0 auto;
  text-align: center;
}
.article-list-pagination ul {
  list-style: none;
  margin: 0.3125rem auto;
  padding: 0;
}
@media screen and (max-width: 40em) {
  .article-list-pagination ul {
    display: none;
  }
}
.article-list-pagination li {
  display: inline-block;
}
.article-list-pagination li a {
  background: #ddd;
  padding: 0.5rem 0.625rem;
  border-radius: 0.1875rem;
  margin: 0 0.1875rem;
}
.article-list-pagination li a:hover {
  background: #ccc;
  color: #222;
}
.article-list-pagination .prev {
  border-radius: 0.1875rem;
  background: transparent;
  border: 0.125rem solid #2980b9;
  color: #2980b9;
  padding: 0.3125rem 0.625rem;
  font-size: 95%;
  margin-top: 0.625rem;
  display: inline-block;
  background: #2980b9;
  color: #fff;
  border: 0.125rem solid #2980b9;
  margin-top: 0;
  float: left;
}
.article-list-pagination .prev:hover {
  background: #2980b9;
  color: #fff;
}
.article-list-pagination .prev:focus {
  outline: none;
  outline-color: transparent;
}
.article-list-pagination .prev:visited {
  color: #2980b9;
}
.article-list-pagination .prev:visited:hover {
  color: #fff;
}
.article-list-pagination .prev:hover {
  background: transparent;
  color: #2980b9;
}
.article-list-pagination .prev:visited {
  color: #fff;
}
.article-list-pagination .prev:visited:hover {
  color: #2980b9;
}
.article-list-pagination .next {
  border-radius: 0.1875rem;
  background: transparent;
  border: 0.125rem solid #2980b9;
  color: #2980b9;
  padding: 0.3125rem 0.625rem;
  font-size: 95%;
  margin-top: 0.625rem;
  display: inline-block;
  background: #2980b9;
  color: #fff;
  border: 0.125rem solid #2980b9;
  margin-top: -2.1875rem;
  float: right;
}
.article-list-pagination .next:hover {
  background: #2980b9;
  color: #fff;
}
.article-list-pagination .next:focus {
  outline: none;
  outline-color: transparent;
}
.article-list-pagination .next:visited {
  color: #2980b9;
}
.article-list-pagination .next:visited:hover {
  color: #fff;
}
.article-list-pagination .next:hover {
  background: transparent;
  color: #2980b9;
}
.article-list-pagination .next:visited {
  color: #fff;
}
.article-list-pagination .next:visited:hover {
  color: #2980b9;
}
@media screen and (max-width: 40em) {
  .article-list-pagination .next {
    margin-top: 0;
  }
}
.article-list-pagination .current {
  font-size: 150%;
  margin-top: -0.625rem;
}
.article-list-pagination .current a {
  background: #2980b9;
  color: #fff;
}

.article-meta {
  margin: 0 0 1.875rem 0;
  padding: 0.625rem 0 0;
  min-height: 4.375rem;
}
@media screen and (max-width: 40em) {
  .article-meta {
    display: none;
  }
}
.article-meta img {
  border-radius: 0;
  margin-right: 0.625rem;
}
.article-meta .author {
  float: left;
  width: 50%;
}
.article-meta .social-media {
  float: right;
  list-style: none;
  margin: 0;
  padding: 0;
}
.article-meta .social-media img {
  margin-right: 0;
}
.article-meta .social-media li {
  font-size: 80%;
  display: inline-block;
  position: relative;
}
.article-meta .facebook {
  margin-right: 0.625rem;
  top: 0.8125rem;
}
.article-meta .twitter {
  width: 6.25rem;
  top: 1.125rem;
}
.article-meta .google-plus {
  width: 2rem;
  top: 1.125rem;
}

.flatpage {
  padding-top: 1.25rem;
  overflow-x: hidden;
  margin-bottom: 1.875rem;
}
.flatpage .content a {
  text-decoration: underline;
}
.flatpage h1 {
  font-family: "Myriad Set Pro";
  font-weight: 100;
  font-size: 2.1875rem;
  margin: 0;
}
.flatpage h3 {
  font-weight: 700;
}
.flatpage hr {
  margin: 1.25rem -1.875rem;
}

.computeridee-ad-ver-ten-ties {
  font-size: 90%;
}
.computeridee-ad-ver-ten-ties.one {
  padding-right: 0.3125rem;
}
.computeridee-ad-ver-ten-ties.two {
  padding-right: 0.3125rem;
  padding-left: 0.3125rem;
}
.computeridee-ad-ver-ten-ties.three {
  padding-left: 0.3125rem;
}
.computeridee-ad-ver-ten-ties p {
  margin: 0;
}

.news-stream {
  position: fixed;
  top: 3.125rem;
  bottom: 3.125rem;
  right: auto;
  width: 20rem;
  background: #fff;
  box-sizing: content-box;
  border-right: 1px solid #ddd;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  overflow-y: auto;
  -webkit-transition: all 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
          transition: all 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  z-index: 200000000;
  -webkit-transform: translateX(-20rem);
  transform: translateX(-20rem);
}
@media screen and (max-width: 40em) {
  .news-stream {
    bottom: 0;
  }
}
.news-stream article:hover h3 {
  color: #222;
}
@media screen and (min-width: 40.063em) {
  .news-stream article:nth-child(6) {
    margin-bottom: 16.875rem;
  }
}
.news-stream .computeridee-re-cla-me {
  position: absolute;
}
.news-stream .ad {
  position: absolute;
  margin: 0.625rem auto 0;
  border-bottom: 1px solid #eee;
  width: 100%;
  max-height: 16.25rem !important;
}
@media screen and (max-width: 40em) {
  .news-stream .ad {
    display: none;
  }
}
.news-stream .ad a {
  margin-bottom: 0;
}

body .news-stream .ad {
  top: 18.75rem;
}

body.stream-4 .news-stream .ad,
body.stream-5 .news-stream .ad,
body.stream-6 .news-stream .ad,
body.stream-7 .news-stream .ad,
body.stream-8 .news-stream .ad,
body.stream-9 .news-stream .ad,
body.stream-10 .news-stream .ad {
  top: 20.4375rem;
}

body.menu-show nav {
  overflow: inherit;
}
body.menu-show nav .primary {
  top: 3.125rem;
  display: block;
}

.news-stream-category {
  position: fixed;
  top: 3.125rem;
  width: 321px;
  height: 5rem;
  background: #fff;
  z-index: 1080;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #eee;
  box-shadow: -2px -1px 3px 1px rgba(0, 0, 0, 0.1);
  line-height: 5rem;
  text-align: center;
  -webkit-transition: all 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
          transition: all 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  z-index: 200000000;
}
@media screen and (max-width: 40em) {
  .news-stream-category {
    left: 0 !important;
  }
}
.news-stream-category select {
  opacity: 0;
}

.news-stream-company-links {
  position: fixed;
  bottom: 0;
  border-top: 1px solid #eee;
  border-right: 1px solid #ddd;
  background: #fff;
  width: 20.0625rem;
  padding: 1rem 1.25rem;
  text-align: center;
  box-shadow: -3px 1px 3px 1px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
          transition: all 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -webkit-transform: translateX(-20rem);
  transform: translateX(-20rem);
  z-index: 200000000;
}
@media screen and (max-width: 40em) {
  .news-stream-company-links {
    display: none;
  }
}
.news-stream-company-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.news-stream-company-links li {
  display: inline-block;
}
.news-stream-company-links a {
  font-size: 80%;
  font-weight: 700;
  color: #2980b9;
  padding: 0.3125rem 0.1875rem;
}

.edition-list h1 {
  margin-top: 0;
  text-align: center;
}
.edition-list h1 span {
  display: block;
  font-size: 1.25rem;
}
@media screen and (max-width: 40em) {
  .edition-list .clm-3 {
    float: none;
    width: 100%;
  }
}

.edition-latest-edition {
  text-align: center;
}
.edition-latest-edition a.edition-link {
  margin: 1.25rem 0;
  border-radius: 0.1875rem;
  background: transparent;
  border: 0.125rem solid #529866;
  color: #529866;
  padding: 0.3125rem 0.625rem;
  font-size: 95%;
  margin-top: 0.625rem;
  display: inline-block;
  background: #529866;
  color: #fff;
  border: 0.125rem solid #529866;
}
.edition-latest-edition a.edition-link:hover {
  background: #529866;
  color: #fff;
}
.edition-latest-edition a.edition-link:focus {
  outline: none;
  outline-color: transparent;
}
.edition-latest-edition a.edition-link:visited {
  color: #529866;
}
.edition-latest-edition a.edition-link:visited:hover {
  color: #fff;
}
.edition-latest-edition a.edition-link:hover {
  background: transparent;
  color: #529866;
}
.edition-latest-edition a.edition-link:visited {
  color: #fff;
}
.edition-latest-edition a.edition-link:visited:hover {
  color: #529866;
}
.edition-latest-edition p {
  text-align: justify;
}

.edition-detail h1 {
  text-align: center;
}
.edition-detail .other-edition-link {
  border-radius: 0.1875rem;
  background: transparent;
  border: 0.125rem solid #529866;
  color: #529866;
  padding: 0.3125rem 0.625rem;
  font-size: 95%;
  margin-top: 0.625rem;
  display: inline-block;
  background: #529866;
  color: #fff;
  border: 0.125rem solid #529866;
}
.edition-detail .other-edition-link:hover {
  background: #529866;
  color: #fff;
}
.edition-detail .other-edition-link:focus {
  outline: none;
  outline-color: transparent;
}
.edition-detail .other-edition-link:visited {
  color: #529866;
}
.edition-detail .other-edition-link:visited:hover {
  color: #fff;
}
.edition-detail .other-edition-link:hover {
  background: transparent;
  color: #529866;
}
.edition-detail .other-edition-link:visited {
  color: #fff;
}
.edition-detail .other-edition-link:visited:hover {
  color: #529866;
}
@media screen and (min-width: 64.063em) {
  .edition-detail .latest-edition {
    padding: 0 3.125rem;
  }
}
.edition-detail .list h3 {
  margin-bottom: 0;
}

.edition-other-editions h3 {
  margin-bottom: 0.625rem;
}
.edition-other-editions ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.edition-other-editions a.edition-link {
  border-radius: 0.1875rem;
  background: transparent;
  border: 0.125rem solid #529866;
  color: #529866;
  padding: 0.3125rem 0.625rem;
  font-size: 95%;
  margin-top: 0.625rem;
  display: inline-block;
  background: #529866;
  color: #fff;
  border: 0.125rem solid #529866;
  font-size: 70%;
}
.edition-other-editions a.edition-link:hover {
  background: #529866;
  color: #fff;
}
.edition-other-editions a.edition-link:focus {
  outline: none;
  outline-color: transparent;
}
.edition-other-editions a.edition-link:visited {
  color: #529866;
}
.edition-other-editions a.edition-link:visited:hover {
  color: #fff;
}
.edition-other-editions a.edition-link:hover {
  background: transparent;
  color: #529866;
}
.edition-other-editions a.edition-link:visited {
  color: #fff;
}
.edition-other-editions a.edition-link:visited:hover {
  color: #529866;
}
.edition-other-editions figure {
  margin-top: 0.625rem;
}
.edition-other-editions .clm-3 {
  text-align: center;
  margin-bottom: 1.875rem;
}

.edition-other-years a {
  font-weight: 700;
  padding: 0 1.875rem;
}

body.accounts h1 {
  margin-top: 0;
}
body.accounts h4 {
  margin-bottom: 0.625rem;
  font-weight: 700;
}
body.accounts h3 {
  font-weight: 700;
}
@media screen and (max-width: 40em) {
  body.accounts .content {
    margin-top: 3.125rem;
  }
}
body.accounts .content a {
  font-weight: 700;
  color: #2980b9;
}
body.accounts .content a:hover {
  color: #222;
}
body.accounts .content a.button {
  color: #fff;
}
body.accounts .content a.button:hover {
  color: #2980b9;
}
body.accounts .content ul {
  margin: 0;
}
body.accounts .content li {
  padding-bottom: 0.3125rem;
}
body.accounts .content #id_subject {
  text-align: left;
  margin: 0 0 0 40%;
}
@media screen and (max-width: 40em) {
  body.accounts .content #id_subject {
    margin-left: 20%;
  }
}
body.accounts .content hr {
  margin-left: -1.875rem;
  margin-right: -1.875rem;
}
body.accounts .content h5 {
  margin-bottom: 0.625rem;
}
body.accounts .content form input[type="text"],
body.accounts .content form input[type="email"],
body.accounts .content form textarea {
  border-radius: 0.1875rem;
  width: 50%;
  padding: 0.625rem;
  margin-bottom: 1.25rem;
  font-size: 1rem;
  background: #eee;
  border: 1px solid #ddd;
}
@media screen and (max-width: 40em) {
  body.accounts .content form input[type="text"],
  body.accounts .content form input[type="email"],
  body.accounts .content form textarea {
    width: 100%;
  }
}
body.accounts .content form input[name="dbfield23"] {
  width: 100%;
}
body.accounts .content form ul {
  list-style: none;
  padding: 0;
}
body.accounts .content form select {
  margin-bottom: 1.25rem;
}
body.accounts .content form label[for="id_remember"] {
  float: left;
  padding-left: 25%;
}
body.accounts .content form input[type="submit"] {
  border-radius: 0.1875rem;
  background: transparent;
  border: 0.125rem solid #2980b9;
  color: #2980b9;
  padding: 0.3125rem 0.625rem;
  font-size: 95%;
  margin-top: 0.625rem;
  display: inline-block;
  background: #2980b9;
  color: #fff;
  border: 0.125rem solid #2980b9;
}
body.accounts .content form input[type="submit"]:hover {
  background: #2980b9;
  color: #fff;
}
body.accounts .content form input[type="submit"]:focus {
  outline: none;
  outline-color: transparent;
}
body.accounts .content form input[type="submit"]:visited {
  color: #2980b9;
}
body.accounts .content form input[type="submit"]:visited:hover {
  color: #fff;
}
body.accounts .content form input[type="submit"]:hover {
  background: transparent;
  color: #2980b9;
}
body.accounts .content form input[type="submit"]:visited {
  color: #fff;
}
body.accounts .content form input[type="submit"]:visited:hover {
  color: #2980b9;
}
body.accounts .content form table {
  width: 100%;
}
body.accounts .content a.thumbnail {
  margin: 0 auto !important;
}
body.accounts .content #id_signature {
  height: 5rem;
}
body.accounts .content #id_avatar {
  margin-left: -4.375rem;
}
body.accounts .content #avatar-clear_id,
body.accounts .content label[for="avatar-clear_id"] {
  display: none;
}

.workshop-categories {
  padding-top: 0.9375rem;
  margin-bottom: 0.625rem;
  border-top: 1px dashed #ddd;
}
.workshop-categories a.label {
  border-radius: 0.1875rem;
  background: transparent;
  border: 0.125rem solid #00b063;
  color: #00b063;
  padding: 0.3125rem 0.625rem;
  font-size: 95%;
  margin-top: 0.625rem;
  display: inline-block;
  background: #00b063;
  color: #fff;
  border: 0.125rem solid #00b063;
  margin-top: 0;
}
.workshop-categories a.label:hover {
  background: #00b063;
  color: #fff;
}
.workshop-categories a.label:focus {
  outline: none;
  outline-color: transparent;
}
.workshop-categories a.label:visited {
  color: #00b063;
}
.workshop-categories a.label:visited:hover {
  color: #fff;
}
.workshop-categories a.label:hover {
  background: transparent;
  color: #00b063;
}
.workshop-categories a.label:visited {
  color: #fff;
}
.workshop-categories a.label:visited:hover {
  color: #00b063;
}

@media screen and (max-width: 40em) {
  .frontpage .news-stream,
  .frontpage .news-stream-company-links {
    left: 0;
  }
}
@media screen and (max-width: 40em) {
  .frontpage .main {
    display: none;
  }
}
.frontpage .content {
  padding-bottom: 0;
}
.frontpage hr {
  margin-left: -1.875rem;
  margin-right: -1.875rem;
}

.frontpage-ticker {
  margin: -1.875rem -1.875rem 0;
}
.frontpage-ticker p {
  margin-top: 0;
  margin-bottom: 1.875rem;
}

.frontpage-featured-small {
  padding-right: 1.875rem;
}

.featured-article {
  padding-right: 0.9375rem;
  margin-bottom: 1.25rem;
}
.featured-article .author {
  border-radius: 50%;
}
.featured-article a {
  display: block;
}
.featured-article a:hover h1,
.featured-article a:hover .read-more {
  text-decoration: underline;
}
.featured-article p {
  margin-top: 0.3125rem;
}
.featured-article h1 {
  margin: 0.625rem 0 0;
  font-weight: 700;
}
.featured-article .read-more {
  display: block;
  margin-top: -0.9375rem;
  float: right;
  white-space: nowrap;
  word-break: keep-all;
}

.frontpage-latest-news {
  margin-bottom: 1.25rem;
  padding-left: 0.9375rem;
}
.frontpage-latest-news ul {
  padding: 0.625rem 0 0;
  margin: 0;
  list-style: none;
  border-top: 1px dashed #ddd;
}
.frontpage-latest-news h2 {
  margin: -0.5rem 0 0;
  float: left;
}
.frontpage-latest-news h2:hover {
  cursor: pointer;
}
.frontpage-latest-news h2 strong {
  color: #3fa9f5;
  font-size: 1.875rem;
}
.frontpage-latest-news a {
  font-size: 90%;
  padding: 0.125rem 0;
  display: block;
}
.frontpage-latest-news a:hover {
  text-decoration: underline;
}
.frontpage-latest-news a.frontpage-latest-news-more {
  float: right;
  position: relative;
  top: 0.1875rem;
  font-size: 90%;
  color: #222;
  padding-left: 0.9375rem;
}
.frontpage-latest-news a.frontpage-latest-news-more:visited {
  color: #222;
}
.frontpage-latest-news a.frontpage-latest-news-more:hover {
  text-decoration: underline;
}
.frontpage-latest-news a.frontpage-latest-rss {
  position: relative;
  top: 0.1875rem;
  padding-left: 0.375rem;
  float: left;
}
.frontpage-latest-news a.frontpage-tip {
  position: absolute;
  left: 11.875rem;
  top: 0.5rem;
}
.frontpage-latest-news li div {
  float: left;
  width: 5.1875rem;
}
.frontpage-latest-news li a {
  width: 22.1875rem;
  float: left;
}
.frontpage-latest-news i {
  font-weight: 900;
  font-style: normal;
  color: #3fa9f5;
  margin-right: 0.3125rem;
  display: inline-block;
  content: ">";
  position: relative;
  top: 0.125rem;
}
.frontpage-latest-news span {
  display: block;
  float: left;
}
.frontpage-latest-news time {
  display: inline-block;
  font-weight: 700;
}

.frontpage-faqman-header h2 {
  float: left;
  margin: 0;
  position: relative;
  top: -0.625rem;
}
.frontpage-faqman-header h2:hover {
  cursor: pointer;
}
.frontpage-faqman-header h2 strong {
  color: #f9bd28;
}
.frontpage-faqman-header svg {
  margin: 0.3125rem 0 0 0.625rem;
  width: 0.9375rem;
  height: 0.9375rem;
}
.frontpage-faqman-header path {
  fill: #f9bd28;
}

.frontpage-faqman {
  padding: 1.25rem 1.875rem 1.25rem 0;
  border-right: 1px solid #eee;
}
.frontpage-faqman h2 {
  margin: 0;
}
.frontpage-faqman h2:hover {
  cursor: pointer;
}
.frontpage-faqman h2 strong {
  color: #f9bd28;
  font-size: 1.875rem;
}
.frontpage-faqman h2.frontpage-faqman-latest {
  margin-top: 0.625rem;
}
.frontpage-faqman h2.frontpage-faqman-latest:hover {
  text-decoration: none;
}
.frontpage-faqman p {
  margin-top: 0;
  float: left;
  width: 270px;
}
.frontpage-faqman img {
  margin-top: -3.75rem;
  width: 150px;
  float: right;
}
.frontpage-faqman hr {
  margin-bottom: 0;
  border: dashed #ddd;
  border-width: 1px 0 0;
}
.frontpage-faqman ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.frontpage-faqman a:not(.button) {
  font-size: 90%;
  display: block;
  padding: 0.3125rem 0 0;
}
.frontpage-faqman a:not(.button):hover {
  text-decoration: underline;
}
.frontpage-faqman a:not(.button) i {
  font-weight: 900;
  font-style: normal;
  color: #f9bd28;
  margin-right: 0.625rem;
  display: inline-block;
  content: ">";
  float: left;
}
.frontpage-faqman a:not(.button) span {
  margin-left: 1.0625rem;
  display: block;
}
.frontpage-faqman a.button {
  border-radius: 0.1875rem;
  background: transparent;
  border: 0.125rem solid #f9bd28;
  color: #f9bd28;
  padding: 0.3125rem 0.625rem;
  font-size: 95%;
  margin-top: 0.625rem;
  display: inline-block;
  background: #f9bd28;
  color: #fff;
  border: 0.125rem solid #f9bd28;
  color: #222 !important;
  display: block;
  text-align: center;
  width: 9.375rem;
  margin-top: 1.25rem;
}
.frontpage-faqman a.button:hover {
  background: #f9bd28;
  color: #fff;
}
.frontpage-faqman a.button:focus {
  outline: none;
  outline-color: transparent;
}
.frontpage-faqman a.button:visited {
  color: #f9bd28;
}
.frontpage-faqman a.button:visited:hover {
  color: #fff;
}
.frontpage-faqman a.button:hover {
  background: transparent;
  color: #f9bd28;
}
.frontpage-faqman a.button:visited {
  color: #fff;
}
.frontpage-faqman a.button:visited:hover {
  color: #f9bd28;
}

.frontpage-downloads {
  padding-left: 1.25rem;
}
.frontpage-downloads a.frontpage-downloads-more {
  float: right;
  position: relative;
  top: 1.875rem;
  font-size: 90%;
  color: #222;
}
.frontpage-downloads a.frontpage-downloads-more:visited {
  color: #222;
}
.frontpage-downloads a.frontpage-downloads-more:hover {
  text-decoration: underline;
}
.frontpage-downloads h2 {
  float: left;
  margin-top: 0.9375rem;
  margin-bottom: 0;
}
.frontpage-downloads h2:hover {
  cursor: pointer;
}
.frontpage-downloads h2 strong {
  color: #ff931e;
  font-size: 1.875rem;
}
.frontpage-downloads article {
  padding: 0 0 0.5rem;
  border-bottom: 0;
}
.frontpage-downloads .list-small {
  padding-top: 0.9375rem;
  border-top: 1px dashed #ddd;
}
.frontpage-downloads .list-small-odd {
  padding-right: 0.3125rem;
}
.frontpage-downloads .list-small-even {
  padding-left: 0.3125rem;
}

.frontpage-poll {
  padding: 1.25rem 0 1.875rem 1.875rem;
}
.frontpage-poll h2 {
  margin: 0;
}
.frontpage-poll h2 strong {
  color: #3fa9f5;
  font-size: 1.875rem;
}
.frontpage-poll h3 {
  margin: 0.3125rem 0 0 0;
}
.frontpage-poll p {
  margin-top: 0.625rem;
}
.frontpage-poll input[type="radio"] {
  float: left;
}
.frontpage-poll span {
  display: block;
  margin-left: 1.375rem;
}
.frontpage-poll button {
  border-radius: 0.1875rem;
  background: transparent;
  border: 0.125rem solid #3fa9f5;
  color: #3fa9f5;
  padding: 0.3125rem 0.625rem;
  font-size: 95%;
  margin-top: 0.625rem;
  display: inline-block;
  background: #3fa9f5;
  color: #fff;
  border: 0.125rem solid #3fa9f5;
  width: 50%;
}
.frontpage-poll button:hover {
  background: #3fa9f5;
  color: #fff;
}
.frontpage-poll button:focus {
  outline: none;
  outline-color: transparent;
}
.frontpage-poll button:visited {
  color: #3fa9f5;
}
.frontpage-poll button:visited:hover {
  color: #fff;
}
.frontpage-poll button:hover {
  background: transparent;
  color: #3fa9f5;
}
.frontpage-poll button:visited {
  color: #fff;
}
.frontpage-poll button:visited:hover {
  color: #3fa9f5;
}

.frontpage-hubbit {
  position: relative;
  border-right: 1px solid #eee;
}
.frontpage-hubbit .hubbit-body {
  padding-right: 1.25rem;
}
.frontpage-hubbit .hubbit-body img.hubbit-logo {
  padding-top: 1.25rem;
}
.frontpage-hubbit .hubbit-body img:not(.hubbit-logo) {
  margin: 0.625rem 0;
}
.frontpage-hubbit .hubbit-body h3 {
  color: #222;
  font-weight: 700;
}
.frontpage-hubbit .hubbit-body a {
  color: #2980b9;
  font-weight: 700;
}
.frontpage-hubbit .hubbit-body a:hover {
  color: #222;
}
.frontpage-hubbit .hubbit-body p {
  margin-top: 0;
}
.frontpage-hubbit h3 {
  font-size: 1.5rem;
  margin-bottom: 0;
}

a.frontpage-workshops-more {
  float: right;
  position: relative;
  top: 1.25rem;
  font-size: 90%;
  color: #222;
}
a.frontpage-workshops-more:visited {
  color: #222;
}
a.frontpage-workshops-more:hover {
  text-decoration: underline;
}
a.frontpage-workshops-more strong {
  color: #222;
  font-size: 90%;
}

.frontpage-magazine {
  border-right: 1px solid #eee;
  padding: 0.625rem 1.875rem 0.625rem 0;
}
.frontpage-magazine h2 {
  margin-top: 0;
  text-align: center;
}
.frontpage-magazine strong {
  color: #d2232a;
  font-size: 1.875rem;
}
.frontpage-magazine img {
  margin: 0 auto 1.25rem;
  display: block;
}
.frontpage-magazine .button {
  border-radius: 0.1875rem;
  background: transparent;
  border: 0.125rem solid #d2232a;
  color: #d2232a;
  padding: 0.3125rem 0.625rem;
  font-size: 95%;
  margin-top: 0.625rem;
  display: inline-block;
  background: #d2232a;
  color: #fff;
  border: 0.125rem solid #d2232a;
}
.frontpage-magazine .button:hover {
  background: #d2232a;
  color: #fff;
}
.frontpage-magazine .button:focus {
  outline: none;
  outline-color: transparent;
}
.frontpage-magazine .button:visited {
  color: #d2232a;
}
.frontpage-magazine .button:visited:hover {
  color: #fff;
}
.frontpage-magazine .button:hover {
  background: transparent;
  color: #d2232a;
}
.frontpage-magazine .button:visited {
  color: #fff;
}
.frontpage-magazine .button:visited:hover {
  color: #d2232a;
}

.frontpage-puzzle {
  padding: 0.625rem 0 0.625rem 1.875rem;
}
.frontpage-puzzle h2 {
  margin-top: 0;
  text-align: center;
}
.frontpage-puzzle strong {
  color: #ff9c00;
  font-size: 1.875rem;
}
.frontpage-puzzle img {
  margin: 0 auto 1.25rem;
  display: block;
}
.frontpage-puzzle .button {
  border-radius: 0.1875rem;
  background: transparent;
  border: 0.125rem solid #ff9c00;
  color: #ff9c00;
  padding: 0.3125rem 0.625rem;
  font-size: 95%;
  margin-top: 0.625rem;
  display: inline-block;
  background: #ff9c00;
  color: #fff;
  border: 0.125rem solid #ff9c00;
}
.frontpage-puzzle .button:hover {
  background: #ff9c00;
  color: #fff;
}
.frontpage-puzzle .button:focus {
  outline: none;
  outline-color: transparent;
}
.frontpage-puzzle .button:visited {
  color: #ff9c00;
}
.frontpage-puzzle .button:visited:hover {
  color: #fff;
}
.frontpage-puzzle .button:hover {
  background: transparent;
  color: #ff9c00;
}
.frontpage-puzzle .button:visited {
  color: #fff;
}
.frontpage-puzzle .button:visited:hover {
  color: #ff9c00;
}

#poll-content .bar {
  background: #3fa9f5;
  height: 0.625rem;
  border-radius: 0.1875rem;
}
#poll-content .answers span {
  margin-left: 0;
  display: inline-block;
  font-weight: 700;
}

@media screen and (max-width: 64em) {
  .forum.desktop-screen .news-stream-category,
  .forum.desktop-screen .news-stream,
  .forum.desktop-screen .news-stream-company-links {
    left: -20rem;
  }
}
.forum .main {
  padding-left: 0;
}
@media screen and (max-width: 40em) {
  .forum .main {
    margin-top: 0.625rem;
  }
}
.forum h1 {
  margin-top: 0;
}
@media screen and (max-width: 40em) {
  .forum h1 {
    margin-top: 0.625rem;
    font-size: 110%;
    text-align: center;
  }
}
@media screen and (min-width: 40.063em) and (max-width: 64em) {
  .forum .content {
    padding: 0 1.25rem;
  }
}
@media screen and (max-width: 40em) {
  .forum .content {
    padding: 0 0.625rem;
  }
}
.forum .you-sure-delete {
  color: red;
  cursor: pointer;
  font-size: 90%;
}
.forum .cancel-delete-topic {
  color: #555;
  cursor: pointer;
  font-size: 80%;
}

.forum-pagination a {
  border-radius: 0.1875rem;
  background: transparent;
  border: 0.125rem solid #2980b9;
  color: #2980b9;
  padding: 0.3125rem 0.625rem;
  font-size: 95%;
  margin-top: 0.625rem;
  display: inline-block;
  background: #2980b9;
  color: #fff;
  border: 0.125rem solid #2980b9;
}
.forum-pagination a:hover {
  background: #2980b9;
  color: #fff;
}
.forum-pagination a:focus {
  outline: none;
  outline-color: transparent;
}
.forum-pagination a:visited {
  color: #2980b9;
}
.forum-pagination a:visited:hover {
  color: #fff;
}
.forum-pagination a:hover {
  background: transparent;
  color: #2980b9;
}
.forum-pagination a:visited {
  color: #fff;
}
.forum-pagination a:visited:hover {
  color: #2980b9;
}

.forum-breadcrumbs {
  font-size: 70%;
}
@media screen and (max-width: 40em) {
  .forum-breadcrumbs {
    display: none;
  }
}

.forum-inline-login {
  font-weight: 700;
  cursor: pointer;
}

.forum-topic-info p {
  margin-top: 0;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 40em) {
  .forum-topic-info {
    padding-left: 0;
    text-align: center;
  }
  .forum-topic-info p {
    font-size: 80%;
  }
}

.forum-table,
.forum-post-table {
  width: 100%;
  margin-bottom: 0.625rem;
  background: #fff;
}
.forum-table th,
.forum-post-table th {
  background: #f6f6f3;
  font-size: 80%;
  white-space: nowrap;
}
@media screen and (max-width: 64em) {
  .forum-table th,
  .forum-post-table th {
    padding: 0.3125rem 0.625rem;
  }
}
.forum-table th,
.forum-table td,
.forum-post-table th,
.forum-post-table td {
  position: relative;
  font-size: 90%;
  padding: 0.625rem;
  border: 1px solid #e0e0d6;
}
@media screen and (max-width: 40em) {
  .forum-table th,
  .forum-table td,
  .forum-post-table th,
  .forum-post-table td {
    padding: 0.625rem;
  }
}
.forum-table th a:hover,
.forum-table td a:hover,
.forum-post-table th a:hover,
.forum-post-table td a:hover {
  text-decoration: underline;
}
.forum-table th:nth-child(1),
.forum-post-table th:nth-child(1) {
  text-align: left;
  font-size: 100%;
}
.forum-table th:nth-child(2),
.forum-table th:nth-child(3),
.forum-table th:nth-child(4),
.forum-post-table th:nth-child(2),
.forum-post-table th:nth-child(3),
.forum-post-table th:nth-child(4) {
  font-weight: normal;
  width: 5%;
}
@media screen and (max-width: 40em) {
  .forum-table th:nth-child(2),
  .forum-table th:nth-child(3),
  .forum-table th:nth-child(4),
  .forum-post-table th:nth-child(2),
  .forum-post-table th:nth-child(3),
  .forum-post-table th:nth-child(4) {
    display: none;
  }
}
.forum-table th:nth-child(4),
.forum-post-table th:nth-child(4) {
  width: 15%;
}
.forum-table td:nth-child(1),
.forum-post-table td:nth-child(1) {
  font-weight: 700;
  padding: 1.25rem;
}
.forum-table td:nth-child(1) p,
.forum-post-table td:nth-child(1) p {
  margin: 0;
  font-weight: normal;
}
@media screen and (max-width: 40em) {
  .forum-table td:nth-child(1),
  .forum-post-table td:nth-child(1) {
    font-size: 90%;
  }
}
.forum-table td:nth-child(2),
.forum-table td:nth-child(3),
.forum-table td:nth-child(4),
.forum-post-table td:nth-child(2),
.forum-post-table td:nth-child(3),
.forum-post-table td:nth-child(4) {
  text-align: center;
}
@media screen and (max-width: 40em) {
  .forum-table td:nth-child(2),
  .forum-table td:nth-child(3),
  .forum-table td:nth-child(4),
  .forum-post-table td:nth-child(2),
  .forum-post-table td:nth-child(3),
  .forum-post-table td:nth-child(4) {
    display: none;
  }
}

.forum-table-date {
  width: 15%;
}
.forum-table-date a {
  font-size: 90%;
  font-weight: 700;
}
.forum-table-date time {
  display: block;
}

.forum-table th.forum-delete {
  width: 10%;
}
.forum-table th.forum-delete svg {
  width: 1.125rem;
  height: 1.125rem;
  margin-top: 0.3125rem;
}
.forum-table th.forum-delete path {
  fill: red;
}

.forum-table td.forum-delete {
  width: 10%;
}
.forum-table td.forum-delete svg {
  width: 1.125rem;
  height: 1.125rem;
  margin-top: 0.3125rem;
  cursor: pointer;
}
.forum-table td.forum-delete svg:hover path {
  fill: red;
}
.forum-table td.forum-delete path {
  fill: #999;
}

.forum-create-topic input[type="text"],
.forum-create-topic textarea {
  width: 100%;
  border: none;
  background: #f6f6f3;
  padding: 0.625rem;
}
.forum-create-topic input[type="text"] {
  margin-bottom: 0.625rem;
}
.forum-create-topic textarea {
  min-height: 12.5rem;
}

.forum-create-topic-create {
  border-radius: 0.1875rem;
  background: transparent;
  border: 0.125rem solid #2980b9;
  color: #2980b9;
  padding: 0.3125rem 0.625rem;
  font-size: 95%;
  margin-top: 0.625rem;
  display: inline-block;
  background: #2980b9;
  color: #fff;
  border: 0.125rem solid #2980b9;
  float: right;
  margin-left: 0.625rem;
}
.forum-create-topic-create:hover {
  background: #2980b9;
  color: #fff;
}
.forum-create-topic-create:focus {
  outline: none;
  outline-color: transparent;
}
.forum-create-topic-create:visited {
  color: #2980b9;
}
.forum-create-topic-create:visited:hover {
  color: #fff;
}
.forum-create-topic-create:hover {
  background: transparent;
  color: #2980b9;
}
.forum-create-topic-create:visited {
  color: #fff;
}
.forum-create-topic-create:visited:hover {
  color: #2980b9;
}

.forum-create-topic-cancel {
  border-radius: 0.1875rem;
  background: transparent;
  border: 0.125rem solid #999;
  color: #999;
  padding: 0.3125rem 0.625rem;
  font-size: 95%;
  margin-top: 0.625rem;
  display: inline-block;
  background: #999;
  color: #fff;
  border: 0.125rem solid #999;
  float: right;
}
.forum-create-topic-cancel:hover {
  background: #999;
  color: #fff;
}
.forum-create-topic-cancel:focus {
  outline: none;
  outline-color: transparent;
}
.forum-create-topic-cancel:visited {
  color: #999;
}
.forum-create-topic-cancel:visited:hover {
  color: #fff;
}
.forum-create-topic-cancel:hover {
  background: transparent;
  color: #999;
}
.forum-create-topic-cancel:visited {
  color: #fff;
}
.forum-create-topic-cancel:visited:hover {
  color: #999;
}

.forum-create-topic-toggle {
  float: right;
  margin-top: -4.0625rem;
  margin-bottom: 0.625rem;
}

.forum-post-table td.post-user-info {
  width: 20%;
  text-align: center;
  vertical-align: top;
  padding: 1.25rem 0;
  border: none;
}
@media screen and (max-width: 40em) {
  .forum-post-table td.post-user-info {
    display: none;
  }
}
.forum-post-table td.post-user-info img {
  margin-bottom: 0.625rem;
  border-radius: 50%;
}
.forum-post-table td.post-user-info ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.forum-post-table td.post-user-info .username {
  margin-bottom: 0.625rem;
}
.forum-post-table td.post-user-info span {
  display: block;
  font-weight: normal;
  font-size: 80%;
}
.forum-post-table td.post-created-at {
  width: 80%;
  text-align: left;
  line-height: 1rem;
  padding: 0.3125rem 0 0.3125rem 1.25rem;
}
.forum-post-table td.post-comment {
  font-weight: normal;
  vertical-align: top;
}
.forum-post-table td.post-comment a {
  word-break: break-all;
  -webkit-hyphens: none;
}
.forum-post-table td.post-comment h3 {
  margin: 0 0 0.625rem;
}
.forum-post-table td.post-actions {
  width: 30%;
  padding: 0.3125rem 1.25rem;
}
.forum-post-table td.post-actions span {
  float: right;
  padding: 0;
  display: block;
}
.forum-post-table td.post-actions span.cancel,
.forum-post-table td.post-actions span.edit,
.forum-post-table td.post-actions span.delete {
  border-radius: 0.1875rem;
  background: transparent;
  border: 0.125rem solid #aaa;
  color: #aaa;
  padding: 0.3125rem 0.625rem;
  font-size: 95%;
  margin-top: 0.625rem;
  display: inline-block;
  background: #aaa;
  color: #fff;
  border: 0.125rem solid #aaa;
  padding: 0.125rem 0.3125rem;
  font-size: 80%;
  font-weight: normal;
  margin: 0 0 0 0.3125rem;
}
.forum-post-table td.post-actions span.cancel:hover,
.forum-post-table td.post-actions span.edit:hover,
.forum-post-table td.post-actions span.delete:hover {
  background: #aaa;
  color: #fff;
}
.forum-post-table td.post-actions span.cancel:focus,
.forum-post-table td.post-actions span.edit:focus,
.forum-post-table td.post-actions span.delete:focus {
  outline: none;
  outline-color: transparent;
}
.forum-post-table td.post-actions span.cancel:visited,
.forum-post-table td.post-actions span.edit:visited,
.forum-post-table td.post-actions span.delete:visited {
  color: #aaa;
}
.forum-post-table td.post-actions span.cancel:visited:hover,
.forum-post-table td.post-actions span.edit:visited:hover,
.forum-post-table td.post-actions span.delete:visited:hover {
  color: #fff;
}
.forum-post-table td.post-actions span.cancel:hover,
.forum-post-table td.post-actions span.edit:hover,
.forum-post-table td.post-actions span.delete:hover {
  background: transparent;
  color: #aaa;
}
.forum-post-table td.post-actions span.cancel:visited,
.forum-post-table td.post-actions span.edit:visited,
.forum-post-table td.post-actions span.delete:visited {
  color: #fff;
}
.forum-post-table td.post-actions span.cancel:visited:hover,
.forum-post-table td.post-actions span.edit:visited:hover,
.forum-post-table td.post-actions span.delete:visited:hover {
  color: #aaa;
}
.forum-post-table td.post-actions span.edit {
  border-radius: 0.1875rem;
  background: transparent;
  border: 0.125rem solid #2980b9;
  color: #2980b9;
  padding: 0.3125rem 0.625rem;
  font-size: 95%;
  margin-top: 0.625rem;
  display: inline-block;
  background: #2980b9;
  color: #fff;
  border: 0.125rem solid #2980b9;
  padding: 0.125rem 0.3125rem;
  font-size: 80%;
  font-weight: normal;
  margin: 0 0 0 0.3125rem;
}
.forum-post-table td.post-actions span.edit:hover {
  background: #2980b9;
  color: #fff;
}
.forum-post-table td.post-actions span.edit:focus {
  outline: none;
  outline-color: transparent;
}
.forum-post-table td.post-actions span.edit:visited {
  color: #2980b9;
}
.forum-post-table td.post-actions span.edit:visited:hover {
  color: #fff;
}
.forum-post-table td.post-actions span.edit:hover {
  background: transparent;
  color: #2980b9;
}
.forum-post-table td.post-actions span.edit:visited {
  color: #fff;
}
.forum-post-table td.post-actions span.edit:visited:hover {
  color: #2980b9;
}
.forum-post-table td.post-actions span.delete {
  float: left;
  border-radius: 0.1875rem;
  background: transparent;
  border: 0.125rem solid #d2232a;
  color: #d2232a;
  padding: 0.3125rem 0.625rem;
  font-size: 95%;
  margin-top: 0.625rem;
  display: inline-block;
  background: #d2232a;
  color: #fff;
  border: 0.125rem solid #d2232a;
  padding: 0.125rem 0.3125rem;
  font-size: 80%;
  font-weight: normal;
  margin: 0;
}
.forum-post-table td.post-actions span.delete:hover {
  background: #d2232a;
  color: #fff;
}
.forum-post-table td.post-actions span.delete:focus {
  outline: none;
  outline-color: transparent;
}
.forum-post-table td.post-actions span.delete:visited {
  color: #d2232a;
}
.forum-post-table td.post-actions span.delete:visited:hover {
  color: #fff;
}
.forum-post-table td.post-actions span.delete:hover {
  background: transparent;
  color: #d2232a;
}
.forum-post-table td.post-actions span.delete:visited {
  color: #fff;
}
.forum-post-table td.post-actions span.delete:visited:hover {
  color: #d2232a;
}
.forum-post-table td.post-comment-create {
  font-weight: normal;
  padding: 0;
  border: none;
}
.forum-post-table td.post-comment-create textarea {
  width: 100%;
  min-height: 15.625rem;
  border-radius: 0.1875rem;
  border: none;
  margin-bottom: -0.3125rem;
  padding: 1.25rem;
  background: #eeeeee;
  border: 1px solid #dddddd;
}

.post-votes {
  float: right;
  position: relative;
  top: -0.3125rem;
  padding-right: 1.25rem;
}
.post-votes svg {
  width: 1.25rem;
  height: 1.25rem;
  cursor: pointer;
}
.post-votes .post-score {
  font-size: 1.125rem;
  font-weight: 700;
  color: #999;
  padding: 0 0.3125rem;
}
.post-votes .post-downvote-button {
  position: relative;
  top: 0.4375rem;
}
.post-votes .post-downvote-button path {
  fill: red;
}
.post-votes .post-upvote-button path {
  fill: #529866;
}

.post-create-button {
  border-radius: 0.1875rem;
  background: transparent;
  border: 0.125rem solid #2980b9;
  color: #2980b9;
  padding: 0.3125rem 0.625rem;
  font-size: 95%;
  margin-top: 0.625rem;
  display: inline-block;
  background: #2980b9;
  color: #fff;
  border: 0.125rem solid #2980b9;
  float: right;
  cursor: pointer;
}
.post-create-button:hover {
  background: #2980b9;
  color: #fff;
}
.post-create-button:focus {
  outline: none;
  outline-color: transparent;
}
.post-create-button:visited {
  color: #2980b9;
}
.post-create-button:visited:hover {
  color: #fff;
}
.post-create-button:hover {
  background: transparent;
  color: #2980b9;
}
.post-create-button:visited {
  color: #fff;
}
.post-create-button:visited:hover {
  color: #2980b9;
}

.post-message {
  color: #d2232a;
  font-weight: 700;
}

article.faqman {
  border-bottom: 1px solid #eee;
  padding-bottom: 1.25rem;
  margin-bottom: 1.875rem;
}
article.faqman h1 {
  font-size: 2.5rem;
  margin: 0;
}
article.faqman h1 span {
  font-size: 3.75rem;
  font-weight: 900;
  color: #f8c128;
}
article.faqman h2 {
  margin: 1.25rem 0 0 0;
  font-size: 1.25rem;
}
article.faqman h2 strong {
  color: #f8c128;
  font-size: 2.5rem;
}
article.faqman ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
article.faqman ul li:last-child a {
  border-bottom: 0;
}
article.faqman .clm {
  padding-left: rem-calc(16)/2;
  padding-right: rem-calc(16)/2;
  width: 50%;
  float: left;
  padding-right: 1.25rem;
}
article.faqman .image {
  padding-right: 0;
  position: relative;
  text-align: right;
}
article.faqman .image img {
  position: relative;
  top: 0.5rem;
  width: 13.75rem;
}
article.faqman .ask-question {
  position: absolute;
  top: 5.4375rem;
  left: 1.25rem;
  text-align: left;
  padding-right: 12.3125rem;
}
article.faqman .ask-question button {
  border-radius: 0.1875rem;
  background: transparent;
  border: 0.125rem solid #f8c128;
  color: #f8c128;
  padding: 0.3125rem 0.625rem;
  font-size: 95%;
  margin-top: 0.625rem;
  display: inline-block;
  background: #f8c128;
  color: #fff;
  border: 0.125rem solid #f8c128;
  color: #222;
  display: block;
  cursor: pointer;
}
article.faqman .ask-question button:hover {
  background: #f8c128;
  color: #fff;
}
article.faqman .ask-question button:focus {
  outline: none;
  outline-color: transparent;
}
article.faqman .ask-question button:visited {
  color: #f8c128;
}
article.faqman .ask-question button:visited:hover {
  color: #fff;
}
article.faqman .ask-question button:hover {
  background: transparent;
  color: #f8c128;
}
article.faqman .ask-question button:visited {
  color: #fff;
}
article.faqman .ask-question button:visited:hover {
  color: #f8c128;
}
article.faqman .ask-question button:hover, article.faqman .ask-question button:visited {
  color: #222;
}

.topic-faqman h3 {
  cursor: pointer;
  font-weight: 700;
  font-size: 0.875rem;
  margin: 0 0.3125rem;
}
.topic-faqman a {
  padding: 0.3125rem 0.625rem;
  display: block;
}
.topic-faqman a:hover {
  text-decoration: underline;
}

.categoriesfaqman {
  border-radius: 0.125rem;
  background: #fff;
  border: 1px solid #e3e3e3;
  border-bottom: 1px solid #ccc;
  padding: 1.25rem;
  margin-top: 1.25rem;
}
.categoriesfaqman h2 {
  margin: 0;
  font-size: 1.25rem;
}
.categoriesfaqman h2 strong {
  color: #f8c128;
  font-size: 2.5rem;
  margin-right: 0.125rem;
}

.faqman-form {
  border-radius: 0.1875rem;
  width: 100%;
  background: #f9bd28;
  height: 0px;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  margin-top: -0.5625rem;
}
.faqman-form.open {
  height: 14.0625rem;
}
.faqman-form form {
  padding: 1.25rem;
}
.faqman-form select,
.faqman-form label[for="id_faqman_category"] {
  float: left;
}
.faqman-form label[for="id_faqman_category"] {
  margin-right: 1.25rem;
}
.faqman-form label[for="id_body"],
.faqman-form label[for="id_name"],
.faqman-form label[for="id_email"] {
  display: none;
}
.faqman-form textarea {
  width: 100%;
  height: 6.25rem;
  border: none;
  padding: 1.25rem;
  margin-top: 0.625rem;
}
.faqman-form input[type="text"],
.faqman-form input[type="email"] {
  border: none;
  width: 40%;
  padding: 0.625rem 1.25rem;
}
.faqman-form input[id="id_name"] {
  margin-right: 0.1875rem;
}
.faqman-form input[type="submit"] {
  border: none;
  float: right;
  padding: 0.625rem;
  color: #fff;
  background: #222;
  border-radius: 0.1875rem;
}
.faqman-form input[type="submit"]:hover {
  background: #666;
}

/* Make clicks pass-through */
#loading-bar,
#loading-bar-spinner {
  pointer-events: none;
  -webkit-pointer-events: none;
  -webkit-transition: 350ms linear all;
  transition: 350ms linear all;
}

#loading-bar.ng-enter,
#loading-bar.ng-leave.ng-leave-active,
#loading-bar-spinner.ng-enter,
#loading-bar-spinner.ng-leave.ng-leave-active {
  opacity: 0;
}

#loading-bar.ng-enter.ng-enter-active,
#loading-bar.ng-leave,
#loading-bar-spinner.ng-enter.ng-enter-active,
#loading-bar-spinner.ng-leave {
  opacity: 1;
}

#loading-bar .bar {
  -webkit-transition: width 350ms;
  transition: width 350ms;
  background: #d2232a;
  position: fixed;
  z-index: 299999999;
  top: 48px;
  left: 0;
  width: 100%;
  height: 2px;
}
@media screen and (max-width: 64em) {
  #loading-bar .bar {
    top: 50px;
  }
}

/* Fancy blur effect */
#loading-bar-spinner {
  display: block;
  position: fixed;
  z-index: 99999999;
  top: 70px;
  left: 50%;
}
@media screen and (max-width: 64em) {
  #loading-bar-spinner {
    top: 20px;
    left: 80px;
  }
}

#loading-bar-spinner .spinner-icon {
  width: 14px;
  height: 14px;
  border: solid 2px transparent;
  border-top-color: #d2232a;
  border-left-color: #d2232a;
  border-radius: 10px;
  -webkit-animation: loading-bar-spinner 400ms linear infinite;
  -ms-animation: loading-bar-spinner 400ms linear infinite;
  animation: loading-bar-spinner 400ms linear infinite;
}

@-webkit-keyframes loading-bar-spinner {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-ms-keyframes loading-bar-spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes loading-bar-spinner {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/*! fancyBox v2.1.5 fancyapps.com | fancyapps.com/fancybox/#license */
.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp {
  padding: 0;
  margin: 0;
  border: 0;
  outline: none;
  vertical-align: top;
}

.fancybox-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8020;
}

.fancybox-skin {
  position: relative;
  background: #f9f9f9;
  color: #444;
  text-shadow: none;
  border-radius: 4px;
}

.fancybox-opened {
  z-index: 200000001;
}

.fancybox-opened .fancybox-skin {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.fancybox-outer, .fancybox-inner {
  position: relative;
}

.fancybox-inner {
  overflow: hidden;
}

.fancybox-type-iframe .fancybox-inner {
  -webkit-overflow-scrolling: touch;
}

.fancybox-error {
  color: #444;
  font: 14px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
  margin: 0;
  padding: 15px;
  white-space: nowrap;
}

.fancybox-image, .fancybox-iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.fancybox-image {
  max-width: 100%;
  max-height: 100%;
}

#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
  background-image: url("../images/fancybox/fancybox_sprite.png");
}

#fancybox-loading {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -22px;
  margin-left: -22px;
  background-position: 0 -108px;
  opacity: 0.8;
  cursor: pointer;
  z-index: 8060;
}

#fancybox-loading div {
  width: 44px;
  height: 44px;
  background: url("../images/fancybox/fancybox_loading.gif") center center no-repeat;
}

.fancybox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 8040;
}

.fancybox-nav {
  position: absolute;
  top: 0;
  width: 40%;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
  background: transparent url("../images/fancybox/blank.gif");
  /* helps IE */
  -webkit-tap-highlight-color: transparent;
  z-index: 8040;
}

.fancybox-prev {
  left: 0;
}

.fancybox-next {
  right: 0;
}

.fancybox-nav span {
  position: absolute;
  top: 50%;
  width: 36px;
  height: 34px;
  margin-top: -18px;
  cursor: pointer;
  z-index: 8040;
  visibility: hidden;
}

.fancybox-prev span {
  left: 10px;
  background-position: 0 -36px;
}

.fancybox-next span {
  right: 10px;
  background-position: 0 -72px;
}

.fancybox-nav:hover span {
  visibility: visible;
}

.fancybox-tmp {
  position: absolute;
  top: -99999px;
  left: -99999px;
  visibility: hidden;
  max-width: 99999px;
  max-height: 99999px;
  overflow: visible !important;
}

/* Overlay helper */
.fancybox-lock {
  overflow: hidden !important;
  width: auto;
}

.fancybox-lock body {
  overflow: hidden !important;
}

.fancybox-lock-test {
  overflow-y: hidden !important;
}

.fancybox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  display: none;
  z-index: 8010;
  background: url("../images/fancybox/fancybox_overlay.png");
}

.fancybox-overlay-fixed {
  position: fixed;
  bottom: 0;
  right: 0;
}

.fancybox-lock .fancybox-overlay {
  overflow: auto;
  overflow-y: scroll;
}

/* Title helper */
.fancybox-title {
  visibility: hidden;
  font: normal 13px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
  position: relative;
  text-shadow: none;
  z-index: 8050;
}

.fancybox-opened .fancybox-title {
  visibility: visible;
}

.fancybox-title-float-wrap {
  position: absolute;
  bottom: 0;
  right: 50%;
  margin-bottom: -35px;
  z-index: 8050;
  text-align: center;
}

.fancybox-title-float-wrap .child {
  display: inline-block;
  margin-right: -100%;
  padding: 2px 20px;
  background: transparent;
  /* Fallback for web browsers that doesn't support RGBa */
  background: rgba(0, 0, 0, 0.8);
  border-radius: 15px;
  text-shadow: 0 1px 2px #222;
  color: #FFF;
  font-weight: bold;
  line-height: 24px;
  white-space: nowrap;
}

.fancybox-title-outside-wrap {
  position: relative;
  margin-top: 10px;
  color: #fff;
}

.fancybox-title-inside-wrap {
  padding-top: 10px;
}

.fancybox-title-over-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  padding: 10px;
  background: #000;
  background: rgba(0, 0, 0, 0.8);
}

/*Retina graphics!*/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  #fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
    background-image: url("../images/fancybox/fancybox_sprite@2x.png");
    background-size: 44px 152px;
    /*The size of the normal image, half the size of the hi-res image*/
  }

  #fancybox-loading div {
    background-image: url("../images/fancybox/fancybox_loading@2x.gif");
    background-size: 24px 24px;
    /*The size of the normal image, half the size of the hi-res image*/
  }
}
.asus-de-moderne-werkkamer h1, .asus-de-moderne-werkkamer hr {
  display: none;
}
