/* -------------------------------------------------------------
 *  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
 *  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets
 *
 *  Mixins available (usage: @include border-radius(10px);:
 *    -   background-gradient     - arguments: Start Color: #3C3C3C, End Color: #999999
 *    -   background-size         - arguments: Width: 100%, Height: 100%
 *    -   border-radius           - arguments: Radius: 5px
 *    -   border-radius-separate  - arguments: Top Left: 5px, Top right: 5px, Bottom Left: 5px, Bottom Right: 5px ( @include border-radius-separate(150px, 0, 150px, 0) )
 *    -   box                     - arguments: Orientation: horizontal, Pack: center, Align: center
 *    -   box-rgba                - arguments: R: 60, G: 3, B: 12, Opacity: 0.23, Color: #3C3C3C
 *    -   box-shadow              - arguments: X: 2px, Y: 2px, Blur: 5px, Color: rgba(0,0,0,.4)
 *    -   box-sizing              - arguments: Type: border-box
 *    -   columns                 - arguments: Count: 3, Gap: 10
 *    -   double-borders          - arguments: Color One: #3C3C3C, Color Two: #999999, Radius: 0
 *    -   flex                    - arguments: Value: 1
 *    -   flip                    - arguments: ScaleX: -1
 *    -   font-face               - arguments: Font Family: myFont, Eot File Src: myFont.eot, Woff File Src: myFont.woff, Ttf File Src: myFont.ttf
 *    -   opacity                 - arguments: Opacity: 0.5
 *    -   outline radius          - arguments: Radius: 5px
 *    -   resize                  - arguments: Direction: both
 *    -   rotate                  - arguments: Degree: 0, M11: 0, M12: 0, M21: 0, M22: 0
 *    CSS Matrix Rotation Calculator http://www.boogdesign.com/examples/transforms/matrix-calculator.html
 *    -   text-shadow             - arguments: X: 2px, Y: 2px, Blur: 5px, Color: rgba(0,0,0,.4)
 *    -   transform               - arguments: Parameters: null
 *    -   transition              - arguments: What: all, Length: 1s, Easing: ease-in-out
 *    -   triple-borders          - arguments: Color One: #3C3C3C, Color Two: #999999, Color Three: #000000, Radius: 0
 *    -   vertical-align          - arguments: child selector; Use on parent with vertical aligned object as parameter
 *    -   center-align            - arguments: child selector; Use on parent with vertical aligned object as parameter
 *    -   placeholder-color       - arguments: color for placeholder
 *    -   animation               - arguments: Parameters: null    ( @include animation( come-in 0.8s ease forwards); )
 *    -   keyframes               - arguments: Animation name   ( @include keyframes(come-in){...} )
 *
 *-------------------------------------------------------------*/
/* BACKGROUND GRADIENT */
/* BACKGROUND SIZE */
/* BORDER RADIUS */
/* BOX */
/* BOX RGBA */
/* BOX SHADOW */
/* BOX SIZING */
/* COLUMNS */
/* DOUBLE BORDERS */
/* FLEX */
/* FLIP */
/* FONT FACE */
/* OPACITY */
/* OUTLINE RADIUS */
/* RESIZE */
/* ROTATE*/
/* TEXT SHADOW */
/* TRANSFORM  */
/* TRANSITION */
/* TRIPLE BORDERS */
/* VERTICAL ALIGN MIDDLE */
/* use this mixin on parent child selector as parameter */
/* center ALIGN MIDDLE */
/* use this mixin on parent child selector as parameter */
/* ANIMATION */
/* KEYFRAMES */
/* Placeholder color */
/*
 * 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.
 *
 * Detailed information about this CSS: h5bp.com/css
 *
 * ==|== normalize ==========================================================
 */
/* =============================================================================
   HTML5 display definitions
   ========================================================================== */
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {
  display: block;
}

audio, canvas, video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden] {
  display: none;
}

* {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-touch-callout: none;
}

/* =============================================================================
   Base
   ========================================================================== */
/*
 * 1. Correct text resizing oddly in IE6/7 when body font-size is set using em units
 * 2. Prevent iOS text size adjust on device orientation change, without disabling user zoom: h5bp.com/g
 * 3. facebook bug not showing canvas in ie7/ie8 positon:relative weghalen
 */
html {
  font-size: 100%;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  min-height: 100%;
  height: 100%;
  width: 100%; /*position:relative;*/
}

html, button, input, select, textarea {
  font-family: Arial, Helvetica, sans-serif;
  color: #222;
}

body {
  margin: 0;
  font-size: 1em;
  line-height: 1.4;
  height: 100%;
  width: 100%;
  background: #fff;
}

/*
 * Prevent margin bug from nested div http://stackoverflow.com/questions/4015053/top-margin-inside-a-div-do-not-work
 */
body {
  float: left;
}

/*
 * Remove text-shadow in selection highlight: h5bp.com/i
 * These selection declarations have to be separate
 * Also: hot pink! (or customize the background color to match your design)
 */
::-moz-selection {
  background: #056E82;
  color: #fff;
  text-shadow: none;
}

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

*, *:before, *:after {
  box-sizing: border-box;
}

/* =============================================================================
   Links
   ========================================================================== */
a:focus {
  outline: 0;
}

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

a:link {
  background-color: transparent;
}

a:visited {
  background-color: transparent;
}

a:hover {
  background-color: transparent;
}

a:active {
  background-color: transparent;
}

/* =============================================================================
   Typography
   ========================================================================== */
abbr[title] {
  border-bottom: 1px dotted;
}

b, strong {
  font-weight: bold;
}

blockquote {
  margin: 1em 40px;
}

dfn {
  font-style: italic;
}

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

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

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

/* Redeclare monospace font family: h5bp.com/j */
pre, code, kbd, samp {
  font-family: monospace, serif;
  _font-family: "courier new", monospace;
  font-size: 1em;
}

/* Improve readability of pre-formatted text in all browsers */
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

q {
  quotes: none;
}

q:before, q:after {
  content: "";
  content: none;
}

small {
  font-size: 85%;
}

/* Position subscript and superscript content without affecting line-height: h5bp.com/k */
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

p, h1, h2, h3, h4 {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

/* =============================================================================
   Lists
   ========================================================================== */
ul, ol {
  margin: 0;
  padding: 0;
}

dd {
  margin: 0 0 0 40px;
}

nav ul, nav ol {
  list-style: none;
  list-style-image: none;
  margin: 0;
  padding: 0;
}

/* =============================================================================
   Embedded content
   ========================================================================== */
/*
 * 1. Improve image quality when scaled in IE7: h5bp.com/d
 * 2. Remove the gap between images and borders on image containers: h5bp.com/i/440
 */
img {
  border: 0;
  -ms-interpolation-mode: bicubic;
  vertical-align: middle;
}

/*
 * Correct overflow not hidden in IE9
 */
svg:not(:root) {
  overflow: hidden;
}

/* =============================================================================
   Figures
   ========================================================================== */
figure {
  margin: 0;
}

/* =============================================================================
   Forms
   ========================================================================== */
form {
  margin: 0;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

textarea {
  resize: none;
}

/* Indicate that 'label' will shift focus to the associated form element */
label {
  cursor: pointer;
}

/*
 * 1. Correct color not inheriting in IE6/7/8/9
 * 2. Correct alignment displayed oddly in IE6/7
 */
legend {
  border: 0;
  *margin-left: -7px;
  padding: 0;
  white-space: normal;
}

/*
 * 1. Correct font-size not inheriting in all browsers
 * 2. Remove margins in FF3/4 S5 Chrome
 * 3. Define consistent vertical alignment display in all browsers
 */
button, input, select, textarea {
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
  *vertical-align: middle;
}

/*
 * 1. Define line-height as normal to match FF3/4 (set using !important in the UA stylesheet)
 */
button, input {
  line-height: normal;
}

/*
 * 1. Display hand cursor for clickable form elements
 * 2. Allow styling of clickable form elements in iOS
 * 3. Correct inner spacing displayed oddly in IE7 (doesn't effect IE6)


button, input[type="button"], input[type="reset"], input[type="submit"] { cursor: pointer; -webkit-appearance: button; *overflow: visible; }
*/
/*
 * Re-set default cursor for disabled elements
 */
button[disabled], input[disabled] {
  cursor: default;
}

/*
 * Consistent box sizing and appearance
 */
input[type=checkbox], input[type=radio] {
  box-sizing: border-box;
  padding: 0;
  *width: 13px;
  *height: 13px;
}

input[type=search] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}

input[type=search]::-webkit-search-decoration, input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

/*
 * Remove inner padding and border in FF3/4: h5bp.com/l
 */
button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/*
 * 1. Remove default vertical scrollbar in IE6/7/8/9
 * 2. Allow only vertical resizing
 */
textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical;
}

/* Colors for form validity */
input:invalid, textarea:invalid { /* background-color: #f0dddd; */ }

/* =============================================================================
   Tables
   ========================================================================== */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td {
  vertical-align: top;
  padding: 5px;
}

/* odd/even rows */
tr:nth-child(odd) {
  background: #F0F0F0;
  color: #686868;
}

tr:nth-child(even) {
  background: #F0F0F0;
  color: #686868;
}

/* first row */
tr:first-child {
  background: #D5D5D5;
  color: #686868;
}

/* border */
td {
  border-right: #ffffff solid 1px;
  border-bottom: #ffffff solid 1px;
}

td:nth-last-child(1) {
  border-right: none;
}

/* first row */
.tabel2 td:first-child {
  background: #D5D5D5;
  color: #686868;
}

/* first cell */
.tabel2 tr:first-child td:first-child {
  background: #ffffff;
  color: #686868;
}

/* first row */
.tabel3 tr {
  background: #D5D5D5;
  color: #686868;
}

/* =============================================================================
   Shorthand classes
   ========================================================================== */
.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.hide {
  display: none;
}

.show {
  display: block;
}

/* ==========================================================================
   Chrome Frame prompt
   ========================================================================== */
.chromeframe {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0;
}

/* ==|== primary styles =====================================================
   Author: Keistoer Interactieve Media (Toine)
   ========================================================================== */
/* FONTS */
@font-face {
  font-family: "OpenSansLight";
  src: url("fonts/opensans/OpenSans-Light-webfont.eot");
  src: url("fonts/opensans/OpenSans-Light-webfont.eot?#iefix") format("embedded-opentype"), url("fonts/opensans/OpenSans-Light-webfont.woff") format("woff"), url("fonts/opensans/OpenSans-Light-webfont.ttf") format("truetype"), url("fonts/opensans/OpenSans-Light-webfont.svg#OpenSansLight") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "OpenSansSemibold";
  src: url("fonts/opensans/OpenSans-Semibold-webfont.eot");
  src: url("fonts/opensans/OpenSans-Semibold-webfont.eot?#iefix") format("embedded-opentype"), url("fonts/opensans/OpenSans-Semibold-webfont.woff") format("woff"), url("fonts/opensans/OpenSans-Semibold-webfont.ttf") format("truetype"), url("fonts/opensans/OpenSans-Semibold-webfont.svg#") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* DEFAULT */
.center {
  width: 960px;
  margin: 0 auto;
}

i.customicon {
  display: inline-block;
}
i.customicon.icon-correct {
  background: url(../img/correct-icon.svg) center center no-repeat;
  height: 10px;
  width: 13px;
  background-size: 13px 10px;
}
i.customicon.icon-wrong {
  background: url(../img/wrong-icon.svg) center center no-repeat;
  height: 9px;
  width: 9px;
  background-size: 9px 9px;
}

h1, h2, h3 {
  color: #585858;
  font-family: "OpenSansSemibold";
  font-size: 22px;
  margin-bottom: 16px;
}

h2 {
  font-size: 14px;
  margin-bottom: 12px;
}

h3 {
  font-size: 14px;
  margin-bottom: 12px;
}

h4 {
  font-size: 12px;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
  color: #000;
}

input[type=submit]:focus, input[type=button]:focus, a:focus {
  outline: none !important;
}

p, ul, body {
  color: #000;
  font-size: 12px;
  line-height: 18px;
}

p, ul {
  margin-bottom: 16px;
}

p a, table a {
  color: #686868;
  text-decoration: underline;
}

p a:hover, table a:hover {
  color: #686868;
  text-decoration: none;
}

ul {
  list-style-position: inside;
}

/* not used?!
a.readmore{color:#656565; cursor:pointer; text-decoration:none; padding-right:15px; height:16px; line-height:16px; display:inline-block; font-size:12px; background:url(../img/readmore-arrow.png) top right no-repeat;}
a.readmore:hover{color:#6F0; text-decoration:underline; background-position:bottom right;}

span.readmore{ bottom:0px; color:#6F0; line-height:16px; height:16px; text-decoration:none; padding-right:15px; font-size:12px; background:url(../img/readmore-arrow.png) top right no-repeat; display:inline-block;}
span.readmore:hover{text-decoration:underline; color:#8e0009; background-position:bottom right;}
*/
/* not used?!
a.back{color:#6F0; text-decoration:none; padding-left:15px; font-size:12px; height:16px; line-height:16px; background:url(../img/back-arrow.png) top left no-repeat; display:inline-block;}
a.back:hover{color:#8e0009; text-decoration:none; background-position:bottom left;}
*/
.paddingleft {
  padding-left: 24px;
}

.paddingleft h3 {
  margin-bottom: 20px !important;
}

.arrow-up-white {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid #fff;
  vertical-align: middle;
}

.arrow-down-white {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #fff;
  vertical-align: middle;
}

button.next, a.interactionbtn {
  background: url(../img/interaction-arrow.png) right -2px no-repeat #F57323;
  display: inline-block;
  height: 32px;
  padding-left: 20px;
  padding-right: 45px;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif, "OpenSansLight";
  font-size: 12px;
  line-height: 32px;
  float: right;
  margin-bottom: 14px;
  margin-top: 50px;
  cursor: pointer;
  text-decoration: none;
  border-radius: 3px;
}

button.next:hover, a.interactionbtn:hover {
  background-position: right -38px;
  background-color: #F89D65;
}

a.interactionbtn.download {
  background: url(../img/interaction-arrow-download.png) right -2px no-repeat #A3A3A3;
}

a.interactionbtn.download:hover {
  background-position: right -38px;
  background-color: #F89D65;
}

button.prev, a.interactionbtn.back {
  background: url(../img/interaction-arrow-back.png) left -2px no-repeat #A3A3A3;
  padding-right: 20px;
  padding-left: 45px;
  float: left;
}

button.prev:hover, a.interactionbtn.back:hover {
  background-position: left -38px;
  color: #fff;
  text-decoration: none;
}

button.next.hover, a.interactionbtn.hover {
  background-color: #F89D65;
}

/* not used?!?
a.blocklink{display:block; width:458px; line-height:46px; background-color:#f8f8f8; color:#6F0; padding-left:24px; margin-left:-24px; text-decoration:none; margin-top:5px;}
a.blocklink:hover{background-color:#f2f2f2;}
a.blocklink:hover span{color:#cf2023;}
*/
a.teaserbutton, span.teaserbutton {
  display: inline-block;
  border-radius: 9px;
  background-color: #f7f7f7;
  padding: 10px;
  margin-top: 21px;
  margin-left: -10px;
  cursor: pointer;
}

a.teaserbutton span.inner, span.teaserbutton span.inner {
  display: inline-block;
  border-radius: 6px;
  padding-left: 24px;
  padding-right: 51px;
  line-height: 40px;
  color: #fff;
  font-family: "OpenSansSemibold", Arial, Helvetica, sans-serif;
  font-size: 18px;
  background: url(../img/teaserbtnarrow.png) 91% 54% no-repeat #F57323;
}

a.teaserbutton:hover span.inner, span.teaserbutton:hover span.inner {
  background: url(../img/teaserbtnarrow.png) 91% 54% no-repeat #F89D65;
}

a.teaserbuttonBottom, span.teaserbuttonBottom {
  display: inline-block;
  border-radius: 9px;
  background-color: #f7f7f7;
  padding: 10px;
  margin-top: 21px;
  margin-left: -10px;
  cursor: pointer;
}

a.teaserbuttonBottom span.inner, span.teaserbuttonBottom span.inner {
  display: inline-block;
  border-radius: 6px;
  padding-left: 24px;
  padding-right: 51px;
  line-height: 40px;
  color: #fff;
  font-family: "OpenSansSemibold", Arial, Helvetica, sans-serif;
  font-size: 18px;
  background: url(../img/teaserbtnarrow.png) 91% 54% no-repeat #F57323;
}

a.teaserbuttonBottom:hover span.inner, span.teaserbuttonBottom:hover span.inner {
  background: url(../img/teaserbtnarrow.png) 91% 54% no-repeat #F89D65;
}

/* HEADER */
header {
  width: 100%; /*background-color:#f8f8f8;*/
}

header {
  margin-top: -140px;
  transition: all 0.5s ease-in-out;
}
header.slideDown {
  margin-top: 0px;
}
header.slideDown #topbar #bottom .hoverdiv, header.slideDown #topbar #bottom .socialicons {
  opacity: 0;
  visibility: hidden;
}

header a.logo {
  background: url(../img/logo_dela.png) top left no-repeat;
  background-size: 190px 85px;
  height: 120px;
  width: 250px;
  display: inline-block;
  text-indent: -9999px;
}

.lt-ie8 header a.logo {
  float: left;
}

header #topbar {
  width: 100%;
  display: block;
  background-color: #f8f8f8;
}

header #topbar a {
  color: #939393;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  text-decoration: none;
  cursor: pointer;
}

header #topbar #top {
  line-height: 20px;
  padding-top: 40px;
  padding-bottom: 0px;
}

header #topbar #top div {
  display: inline-block;
  float: left;
  width: 293px;
  margin-right: 40px;
}

header #topbar #top div:nth-child(3n) {
  margin-right: 0;
}

header #topbar #top div a {
  display: block;
  width: 100%;
  color: #969696;
}

header #topbar #top div strong a {
  color: #565656;
}

header #topbar #top div a:hover {
  color: #525252;
}

header #topbar #bottom {
  margin-top: 20px;
  height: 24px;
  line-height: 24px;
  color: #969696;
}

header #topbar #bottom span {
  background: url(../img/headerarrow.png) right no-repeat;
  padding-right: 14px;
}

header #topbar #bottom img {
  margin-right: 8px;
}

header #topbar #bottom .hoverdiv {
  padding-top: 4px;
  display: inline-block;
  float: left;
  opacity: 1;
  visibility: visible;
  height: 30px;
  width: 200px;
  transition: all 0.3s ease-in-out;
}

header #topbar #bottom .socialicons {
  padding-top: 2px;
  display: inline-block;
  float: right;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease-in-out;
}

header #topbar #bottom .socialicons a.socialicon {
  display: inline-block;
  background: url(../img/socialiconstop.png) top left no-repeat;
  height: 17px;
  width: 16px;
  margin-left: 2px;
  vertical-align: middle;
}

header #topbar #bottom .socialicons a.socialicon.fb {
  background-position: top left;
  margin-left: 22px;
}

header #topbar #bottom .socialicons a.socialicon.fb:hover {
  background-position: bottom left;
}

header #topbar #bottom .socialicons a.socialicon.tw {
  background-position: top center;
}

header #topbar #bottom .socialicons a.socialicon.tw:hover {
  background-position: bottom center;
}

header #topbar #bottom .socialicons a.socialicon.li {
  background-position: top right;
}

header #topbar #bottom .socialicons a.socialicon.li:hover {
  background-position: bottom right;
}

/* HEADER / menubar */
header #secundairmenubar {
  border-bottom: 1px solid #efefef;
}

header #secundairmenubar #secundairmenu {
  display: inline-block;
  float: right;
  margin-top: 0px;
}

header #secundairmenubar #secundairmenu ul {
  list-style: none;
}

header #secundairmenubar #secundairmenu li {
  display: inline-block;
  float: left;
  margin-left: 28px;
  margin-right: 0px;
}

header #secundairmenubar #secundairmenu li a {
  font-size: 12px;
  line-height: 40px;
  color: #b1b1b1;
  font-family: "OpenSansLight", Arial, Helvetica, sans-serif;
  text-decoration: none;
  background-color: #fff;
  display: inline-block;
}

header #secundairmenubar #secundairmenu li:hover a {
  color: #F57323;
}

header #secundairmenubar #secundairmenu li a.active {
  color: #000000;
}

header #secundairmenubar #secundairmenu li a.active:hover {
  background-color: #fff;
}

header #secundairmenubar #secundairmenu ul.dropdownmenu {
  display: none;
  position: absolute;
  background-color: #fff;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.05);
  border: 1px solid #C4CFD6;
  margin-left: -30px;
  float: left;
  margin-top: 0px;
  z-index: 999;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 10px;
  padding-top: 10px;
}

header #secundairmenubar #secundairmenu ul.dropdownmenu .dropdown-arrow {
  margin-top: -21px;
  left: 80px;
  position: absolute;
  display: inline-block;
  background: url(../img/dropdownmenu-arrow.png) top left no-repeat;
  width: 19px;
  height: 11px;
}

header #secundairmenubar #secundairmenu ul.dropdownmenu li {
  display: block;
  clear: both;
  margin: 0px;
  text-align: left;
}

header #secundairmenubar #secundairmenu ul.dropdownmenu li a {
  background: none;
  color: #6e6e6e;
  font-size: 12px;
  height: 38px;
  line-height: 38px;
}

header #secundairmenubar #secundairmenu ul.dropdownmenu li:hover a {
  color: #F57323;
}

header #secundairmenubar #secundairmenu ul.dropdownmenu li a.active {
  color: #000000;
}

header #menubar {
  padding-top: 58px;
  padding-bottom: 38px;
}

header #menubar a.logo {
  display: inline-block;
  float: left;
}

header #menubar #mainmenu {
  display: inline-block;
  float: right;
  margin-top: 8px;
}

header #menubar #mainmenu ul {
  list-style: none;
}

header #menubar #mainmenu li {
  display: inline-block;
  float: left;
  margin-left: 36px;
}

header #menubar #mainmenu li a {
  float: left;
  font-size: 16px;
  height: 40px;
  line-height: 40px;
  vertical-align: text-top;
  color: #909090;
  font-family: "OpenSansLight", Arial, Helvetica, sans-serif;
  text-decoration: none;
  display: inline-block;
}

header #menubar #mainmenu li:hover a {
  color: #F57323;
}

header #menubar #mainmenu li a.active {
  color: #000000;
}

header #menubar #mainmenu li a.active:hover {
  background-color: #fff;
}

header #menubar #mainmenu li a img.icon {
  vertical-align: middle;
  display: inline-block;
  line-height: 40px;
}

header #menubar #mainmenu li a.newexam {
  background: url(../img/icon-toets.png) right 5px no-repeat;
  padding-right: 18px;
}

header #menubar #mainmenu ul.dropdownmenu {
  display: none;
  position: absolute;
  background-color: #fff;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.05);
  border: 1px solid #000000;
  margin-left: -30px;
  float: left;
  margin-top: 40px;
  z-index: 999;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 10px;
  padding-top: 10px;
}

header #menubar #mainmenu ul.dropdownmenu .dropdown-arrow {
  margin-top: -21px;
  left: 80px;
  position: absolute;
  display: inline-block;
  background: url(../img/dropdownmenu-arrow.png) top left no-repeat;
  width: 19px;
  height: 11px;
}

header #menubar #mainmenu ul.dropdownmenu li {
  display: block;
  clear: both;
  margin: 0px;
  text-align: left;
}

header #menubar #mainmenu ul.dropdownmenu li a {
  background: none;
  color: #6e6e6e;
  font-size: 12px;
  height: 38px;
  line-height: 38px;
}

header #menubar #mainmenu ul.dropdownmenu li:hover a {
  color: #F57323;
}

header #menubar #mainmenu ul.dropdownmenu li a.active {
  color: #000000;
}

.lt-ie8 header #mainmenu {
  clear: both;
}

.lt-ie8 header #mainmenu ul.dropdownmenu {
  clear: both;
  margin-top: 0px;
}

.lt-ie8 header #mainmenu ul.dropdownmenu li {
  width: auto !important;
  clear: both;
}

.lt-ie8 header #mainmenu ul.dropdownmenu li a {
  width: auto !important;
}

header #login {
  display: inline-block;
  float: right;
  width: 480px;
  padding-top: 7px;
}

header #login form input {
  width: 196px;
  display: inline-block;
  float: left;
  border-radius: 5px;
  margin: 0;
  vertical-align: text-top;
}

header #login form input:first-of-type {
  margin-right: 12px;
}

header #login form input[type=submit] {
  width: 80px;
  border-radius: 0px 5px 5px 0px;
  margin-left: -5px;
  margin-top: 0px;
  height: 30px;
  line-height: 30px;
  padding: 0px;
  text-align: center;
}

header #login div.links {
  color: #A3A3A3;
  font-size: 12px;
  font-family: Arial;
  float: right;
  margin-top: 5px;
}

header #login div.links a {
  color: #A3A3A3;
  text-decoration: none;
  margin: 0px 3px;
}

header #login div.links a:hover {
  color: #F57323;
}

/* MAIN */
#main { /* margin-top:50px;*/
  padding-bottom: 136px;
}

#main .row {
  display: block;
  margin-bottom: 46px;
}

#main .row.last {
  margin-top: 85px;
}

#main .column {
  display: inline-block;
  float: left;
  width: 458px;
}

#main .content img {
  margin: 0 0 16px 0;
  background: #f8f8f8;
}

#main .content h3 {
  margin: 0 0 2px 0;
}

#main .content ul {
  list-style: square outside;
}

#main .content ul li {
  margin-left: 12px;
}

/* teaser */
#main .teaser {
  display: block;
  position: relative;
  width: 100%;
  height: 372px;
  background: url(../img/teaser_background.jpg) no-repeat center;
}

#main .teaser .teaserbutton {
  background-color: rgba(255, 255, 255, 0.2);
  float: left;
}

#main .teaser .btndiv {
  display: inline-block;
  width: 100%;
  float: left;
  text-align: left;
}

#main .teaser .linkdiv {
  display: inline-block;
  width: 100%;
  float: right;
  text-align: right;
  padding-top: 10px;
}

#main .teaser .linkdiv a {
  color: #fff;
  opacity: 0.9;
  font-family: "OpenSansLight", Arial, Helvetica, sans-serif;
  font-size: 14px;
}

#main .teaser .linkdiv a:hover {
  color: #FF9B0D;
}

#main .teaser.small {
  height: 82px;
  background: url(../img/general-teaser-small.png) #056E82 top center no-repeat;
}

#main .teaser.mid {
  height: 129px;
  background: url(../img/general-teaser-mid.png) #056E82 top center no-repeat;
}

#main .teaser.big {
  height: 200px;
  background: url(../img/general-teaser-big.png) #056E82 top center no-repeat;
}

#main .teaser.home {
  display: inline-block;
  min-height: 335px;
  margin-bottom: 18px;
  background: url(../img/general-teaser-home.png) #056E82 center top no-repeat;
  height: 335px;
}

#main .teaser.home.hover {
  background-position: center bottom;
}

#main .teaser div.animation {
  height: 374px;
  width: 685px;
  display: inline-block;
  background: url(../img/animatie.gif) top left no-repeat;
  position: absolute;
  top: 0px;
  left: -66px;
}

/*
#main .teaser div.animation a.animationlink{display:inline-block; height:174px; width:232px; margin-left:246px; margin-top: 77px; background:url(../img/teaserplaybtn.png) top left no-repeat;}
#main .teaser div.animation a.animationlink:hover{background-position: bottom left; cursor:pointer;}
*/
#main .teaser div.center {
  position: relative;
}

#main .teaser div.center .teasercontent {
  display: inline-block;
  width: 445px;
  left: 0px;
  position: absolute;
  margin-top: 77px;
  text-decoration: none;
  cursor: pointer;
}

#main .teaser div.center .teasercontent h1 {
  color: #fff;
  font-family: "OpenSansSemibold";
  font-weight: normal;
  font-size: 46px;
  text-shadow: -2px 4px 1px rgba(0, 0, 0, 0.04);
}

#main .teaser div.center .teasercontent p {
  color: #fff;
  font-family: "OpenSansLight";
  font-size: 18px;
  line-height: 24px;
  margin-top: 26px;
  text-shadow: -2px 4px 1px rgba(0, 0, 0, 0.04);
}

#main .teaser div.center .teasercontent:hover .teaserbutton span.inner {
  background: url(../img/teaserbtnarrow.png) 91% 54% no-repeat #F89D65;
}

#main .teaser div.center div.teaserimage {
  display: inline-block;
  position: absolute;
  right: -95px;
  top: -15px;
  height: 390px;
  width: 579px;
  background: url(../img/home_laptop.png) top left no-repeat;
  text-align: center;
}

#main .teaser div.center div.teaserimage .animationlink {
  display: inline-block;
  width: 388px;
  height: 216px;
  margin-top: 30px;
}

#main .teaser div.center div.teaserimage .animationlink span.playbtn {
  display: inline-block;
  height: 111px;
  width: 111px;
  margin-top: 54px;
  background: url(../img/playbtn-dela.png) top left no-repeat;
}

#main .teaser div.center div.teaserimage .animationlink:hover {
  cursor: pointer;
}

#main .teaser div.center div.teaserimage .animationlink:hover span.playbtn {
  background-position: bottom left;
  cursor: pointer;
}

#main .teaser.small .contenttopnotloggedin {
  display: block;
  position: absolute;
  width: 1000px;
  background: #fff;
  height: 36px;
  border-radius: 3px 3px 0px 0px;
  bottom: 0px;
  left: 50%;
  margin-left: -500px;
  box-shadow: 0px -5px 5px 0px rgba(0, 0, 0, 0.05);
}

/* Profile bar*/
#main #profilebar {
  border: 1px solid #b5c3cc;
  display: block;
  width: 100%;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.05);
  margin-top: -40px;
  background-color: #fff;
  margin-bottom: 38px;
  position: relative;
}

#main #profilebar.midheight {
  margin-top: -87px;
}

#main #profilebar.bigheight {
  margin-top: -158px;
}

#main #profilebar div.leftcolumn {
  display: inline-block;
  float: left;
  width: 263px;
  height: 64px;
  padding: 16px;
  padding-top: 18px;
  padding-left: 24px;
  border-right: 1px solid #b5c3cc;
}

#main #profilebar div.leftcolumn span.login {
  padding: 0px;
  margin: 0px;
  margin-top: 0px;
  margin-left: 0px;
  display: inline-block;
  color: #575757;
  font-weight: bold;
}

#main #profilebar div.leftcolumn span.login span.notloggedin {
  display: inline-block;
  margin-top: 5px;
  cursor: default;
  font-weight: normal;
}

#main #profilebar div.leftcolumn span.login a {
  text-decoration: none;
  color: #575757;
  line-height: 1;
  height: 22px;
}

#main #profilebar div.leftcolumn span.login a span.loginicon {
  display: inline-block;
  width: 15px;
}

#main #profilebar div.leftcolumn span.login a span.loginicon img {
  margin-top: -2px;
}

#main #profilebar div.leftcolumn span.login a span.dropdownicon {
  display: inline-block;
  height: 18px;
  margin-left: 8px;
  background: url(../img/logindropdownicon.png) no-repeat 0px 5px;
  width: 9px;
}

#main #profilebar div.leftcolumn span.login:hover {
  cursor: pointer;
}

#main #profilebar div.leftcolumn span.login a:hover {
  color: #F57323;
}

#main #profilebar div.leftcolumn span.login a:hover span.dropdownicon {
  background: url(../img/logindropdownicon.png) no-repeat 0px -13px;
}

#main #profilebar div.leftcolumn .dropdown {
  display: none;
  z-index: 9;
  width: 264px;
  position: absolute;
  margin-left: -25px;
  padding-left: 0;
  margin-top: 0;
  padding-top: 23px;
  padding-bottom: 0px;
  background: #fff;
  border: 1px solid #b5c3cc;
  border-top: none;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.05);
}

#main #profilebar div.leftcolumn .dropdown a {
  display: inline-block;
  position: relative;
  width: 100%;
  padding-left: 25px;
  line-height: 30px;
  margin-bottom: 8px;
  font-weight: normal;
  color: #6e6e6e;
  text-decoration: none;
}

#main #profilebar div.leftcolumn .dropdown a:hover {
  color: #F57323;
}

#main #profilebar div.leftcolumn .dropdown a.active {
  color: #000000;
}

#main #profilebar div.leftcolumn .dropdown a.newmessage {
  background: url(../img/icon-message.png) left no-repeat;
  margin-left: 25px;
}

#main #profilebar div.leftcolumn .dropdown a.logoff {
  border-top: 1px solid #b5c3cc;
  margin-left: 0;
  line-height: 50px;
  margin-top: 4px;
  margin-bottom: 0px;
  padding-left: 25px;
  width: 262px;
}

#main #profilebar.login div.leftcolumn {
  width: 150px;
}

/*
not used
#main #profilebar.login input{display:inline-block; width:248px; height:30px; line-height:30px; float:left; position:relative;}
#main #profilebar.login input:first-child{margin-right:14px;}
#main #profilebar.login input[type="submit"]{width:auto; background:#CF0; height:30px; line-height:30px; float:none; margin-left:-4px; margin-top:0px; border-radius:0px 3px 3px 0px;}
#main #profilebar.login input[type="submit"]:hover{background:#6F0;}
#main #profilebar.login div.rightcolumn div.float-right{margin-left:14px;}
#main #profilebar.login div.rightcolumn div.float-right a{display:block; color:#c6c6c6; font-size:12px; font-family:Arial, Helvetica, sans-serif; text-decoration:none; margin-top:-2px;}
#main #profilebar.login div.rightcolumn div.float-right a:hover{ text-decoration:underline;}
*/
#main #profilebar div.rightcolumn {
  display: inline-block;
  float: left;
  height: 64px;
  padding: 16px;
  padding-top: 17px;
  padding-left: 26px;
}

#main #profilebar div.rightcolumn.status {
  padding-top: 21px;
}

#main #profilebar div.rightcolumn.status .bar {
  width: 523px;
  height: 12px;
  display: inline-block;
  border: 1px solid #d9d9d9;
  padding: 2px;
  vertical-align: text-top;
  margin-top: 3px;
}

#main #profilebar div.rightcolumn.status .percent {
  width: 0%;
  height: 6px;
  display: block;
}

#main #profilebar div.rightcolumn.status a.percenttext {
  color: #575757;
  display: inline-block;
  width: 125px;
  text-decoration: none;
  text-align: center;
  padding: 0px;
  margin: 0px;
  vertical-align: text-top;
}

#main #profilebar div.rightcolumn.status a.percenttext:hover {
  color: #F57323;
}

#main #profilebar div.rightcolumn.status span.icon-info {
  background: url(../img/icon-toets.png) 0px -8px no-repeat #fff;
  cursor: pointer;
  display: inline-block;
  height: 16px;
  width: 12px;
  margin-left: 8px;
  vertical-align: text-bottom;
}

#main #profilebar div.filter {
  border-top: 1px solid #b5c3cc;
  padding-left: 24px;
  padding-top: 18px;
  padding-bottom: 14px;
  padding-right: 24px;
  background-color: #f9f9f9;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.05);
}

#main #profilebar div.filter form label {
  display: inline-block;
  float: left;
  clear: none !important;
  margin-right: 20px;
}

#main #profilebar div.filter form input {
  display: inline-block;
  float: left;
  height: 24px;
  line-height: 24px;
}

#main #profilebar div.filter form input[type=text] {
  width: 200px;
  float: right;
  margin: 0px;
}

#main #profilebar div.filter form input[type=submit] {
  width: 130px;
  float: right;
  background: #a3a3a3;
  line-height: 24px;
  border: none;
  border-radius: 0px 3px 3px 0px;
}

#main #profilebar div.filter form input[type=submit]:hover {
  background: #F89D65;
}

#main #profilebar div.filter form input:focus {
  border-color: #a8a8a8;
}

#main #profilebar div.filter img.filter-arrow {
  position: absolute;
  left: 50%;
  margin-left: -10px;
  bottom: -13px;
}

#main #profilebar div.filter form label .holderWrap {
  margin-top: 5px;
  margin-right: 8px;
}

#main #profilebar div.modulefilter {
  border-top: 1px solid #b5c3cc;
  padding-left: 24px;
  padding-top: 18px;
  padding-bottom: 14px;
  padding-right: 24px;
  background-color: #fff;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.05);
}

#main #profilebar div.modulefilter .filterRow {
  display: block;
}

#main #profilebar div.modulefilter .filterRow.topRow {
  padding-bottom: 0px;
  line-height: 24px;
}

#main #profilebar div.modulefilter form label {
  display: inline-block;
  float: left;
  clear: none !important;
  margin-right: 20px;
  width: 156px;
  line-height: 16px;
  padding-left: 20px;
}

#main #profilebar div.modulefilter form input {
  display: inline-block;
  float: left;
  height: 24px;
}

#main #profilebar div.modulefilter form fieldset {
  display: inline-block;
  float: left;
  line-height: 16px;
  color: #3d3d3d;
  width: 130px;
}

#main #profilebar div.modulefilter form input[type=submit] {
  width: 130px;
  float: right;
  background: #a3a3a3;
  border-radius: 0px 3px 3px 0px;
}

#main #profilebar div.modulefilter img.filter-arrow {
  position: absolute;
  left: 50%;
  margin-left: -10px;
  bottom: -13px;
}

#main #profilebar div.modulefilter form label .holderWrap {
  margin-top: 1px;
  margin-right: 8px;
  margin-left: -20px;
}

#main #profilebar div.modulefilter form .filterRow .labelleft {
  width: 130px;
  display: inline-block;
  float: left;
}

#main #profilebar div.modulefilter form .filterRow .labelright {
  width: 780px;
  display: inline-block;
  float: left;
}

#main div.warningbar {
  display: inline-block;
  width: 100%;
  background: #F57323;
  color: #fff;
  padding: 20px;
  margin-bottom: 10px;
}

/* aanmeldblok op home */
.aanmelden {
  height: 308px;
}

.aanmelden h1 {
  margin-top: -4px;
  margin-bottom: 27px;
}

.aanmelden .bottom {
  position: relative;
  bottom: 0;
}

.lt-ie8 .aanmelden form input[type=text] {
  width: 428px;
}

/* homeblock op home */
#main .homeblocksline {
  height: 1px;
  background-color: #e5e5e5;
  display: block;
  width: 100%;
  margin-bottom: 40px;
  margin-top: 80px;
}

/*
niet gebruikt
#main .homeblock{background-color:#fff; position:relative; display:inline-block; border-radius:3px 3px 0px 0px; float:left; width:100%; padding:18px 26px 4px; padding-bottom:28px; text-decoration:none;}
#main .homeblock h3{color:#5286b8; font-size: 24px; margin-bottom: 22px;}
#main .homeblock p{color:#7e7e7e; font-size: 16px; line-height: 22px;}
#main .homeblock.hover{cursor:pointer; }
#main .homeblock p.hover{color:#686868;}
#main .homeblock span.readmore{display:inline-block; float:right; height:45px; color:#fff; background:url(../img/arrow-white.png) 210px 20px no-repeat #A3A3A3; border-radius:5px; margin-top:8px; line-height:45px; padding-left:20px;padding-right:50px; text-decoration:none; font-size: 16px;}
#main .homeblock span.readmore.hover{background-color:#6F0;}
#main .homeblock:hover span.readmore{background-color:#6F0;}
.lt-ie8 #main .homeblock{width:410px;}
*/
#main .hometoptext {
  text-align: center;
  margin-top: 65px;
}

#main .hometoptext h2 {
  color: #056E82;
  font-size: 24px;
  font-family: "OpenSansSemibold";
  padding-bottom: 15px;
}

#main .hometoptext p {
  color: #A3A3A3;
  font-size: 18px;
  font-family: Arial;
  line-height: 24px;
}

#main .homebottomtext {
  text-align: center;
  margin-top: 45px;
  color: #949494;
  font-size: 18px;
  line-height: 24px;
  height: 140px;
}

#main .homebottomtext div {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  width: 960px;
  transition: all 0.5s ease-in-out;
}

/* #main .homebottomtext div:first-of-type{visibility:visible; opacity:1;} */
#main .homebottomtext div.showDiv {
  visibility: visible;
  opacity: 1;
}

#main .homebottomtext div span {
  color: #A3A3A3;
}

#main .screens {
  margin-top: 70px;
  position: relative;
}

#main .screens .screensmenu {
  display: block;
  width: 100%;
}

#main .screens .screensmenu a {
  display: inline-block;
  float: left;
  font-family: Arial;
  font-size: 20px;
  color: #A3A3A3;
  border: 1px solid #dddddd;
  height: 55px;
  line-height: 55px;
  padding: 0px 40px;
  border-left: none;
  position: relative;
}

#main .screens .screensmenu a:first-of-type {
  border-radius: 3px 0px 0px 3px;
  border-left: 1px solid #dddddd;
}

#main .screens .screensmenu a:last-of-type {
  border-radius: 0px 3px 3px 0px;
}

#main .screens .screensmenu a:hover {
  background-color: #f7f7f7;
  cursor: pointer;
}

#main .screens .screensmenu a.active {
  color: #056E82;
  background-color: #fff;
}

#main .screens .screensmenu a span.activearrow {
  display: none;
  height: 11px;
  width: 21px;
  background: url(../img/home-screens-active-arrow.png) top left no-repeat;
  position: absolute;
  margin-top: 53px;
  right: 50%;
  margin-right: -10px;
}

#main .screens .screensmenu a.active span.activearrow {
  display: inline-block;
}

#main .screens .teaserscreens {
  display: inline-block;
  height: 488px;
  width: 100%;
  margin-top: 40px;
  overflow: hidden;
  position: relative;
}

#main .screens .teaserscreens .wrapper {
  display: inline-block;
  height: 488px;
  overflow: hidden;
  width: 100%;
  position: absolute;
}

#main .screens .teaserscreens .totalscreen {
  display: inline-block;
  height: 488px;
  width: 4800px;
  transition: all 0.5s ease-in-out;
}

#main .screens .teaserscreens .teaserscreen {
  display: inline-block;
  width: 960px;
  height: 488px;
  float: left;
}

#main .screens .teaserscreens .teaserscreen.actualiteit {
  background: url(../img/homescreens/actualiteit.jpg) center center no-repeat;
}

#main .screens .teaserscreens .teaserscreen.toepasbaarheid {
  background: url(../img/homescreens/toepasbaarheid.jpg) center center no-repeat;
}

#main .screens .teaserscreens .teaserscreen.aantoonbaarheid {
  background: url(../img/homescreens/aantoonbaarheid.jpg) center center no-repeat;
}

#main .screens .teaserscreens .teaserscreen.toetsing {
  background: url(../img/homescreens/toetsing.jpg) center center no-repeat;
}

#main .screens .teaserscreens .teaserscreen.onderweg {
  background: url(../img/homescreens/onderweg.jpg) center center no-repeat;
}

#main .screens .teaserscreens .screensshadow {
  display: inline-block;
  width: 100%;
  height: 18px;
  margin-top: -18px;
  position: absolute;
  background: url(../img/home-screens-shadow.png) center center no-repeat transparent;
  z-index: 10;
  bottom: 0px;
}

#main .btndiv {
  display: inline-block;
  width: 100%;
  text-align: center;
}

div.downloadapp {
  text-align: center;
  margin-top: 75px;
}

div.downloadapp p {
  display: inline-block;
  font-size: 18px;
  color: #979797;
  font-family: Arial;
  vertical-align: top-bottom;
}

div.downloadapp span {
  display: inline-block;
  height: 27px;
  line-height: 27px;
  vertical-align: text-top;
  margin-top: -1px;
}

div.downloadapp a {
  display: inline-block;
  margin-left: 10px;
  height: 27px;
  background: url(../img/home-app-download.png) top left no-repeat;
  cursor: pointer;
  vertical-align: text-top;
}

div.downloadapp a.ios {
  width: 87px;
  background-position: 0px 0px;
}

div.downloadapp a.ios:hover {
  background-position: 0px -27px;
}

div.downloadapp a.android {
  width: 86px;
  background-position: -87px 0px;
}

div.downloadapp a.android:hover {
  background-position: -87px -27px;
}

div.downloadapp a.windows {
  width: 96px;
  background-position: -173px 0px;
}

div.downloadapp a.windows:hover {
  background-position: -173px -27px;
}

/* submenu */
#main #submenu {
  display: inline-block;
  float: left;
  width: 224px;
  margin-top: 24px;
}

#main #submenu a {
  display: block;
  border-bottom: 1px solid #c4cfd6;
  float: left;
  height: 40px;
  width: 200px;
  line-height: 40px;
  font-size: 12px;
  color: #686868;
  text-decoration: none;
  background-color: #fff;
  padding-left: 12px;
}

#main #submenu a:last-child {
  border-bottom: none;
}

#main #submenu a:hover {
  color: #F57323;
}

#main #submenu a.active {
  color: #000000;
}

#main #submenu a.hassubitems {
  border: none;
}

#main #submenu .subitems {
  border-bottom: 1px solid #c4cfd6;
  display: inline-block;
  width: 200px;
}

#main #submenu .subitems a {
  padding-left: 30px;
  border: none;
}

/* content */
#main .content {
  display: inline-block;
  width: 736px;
}

/* nieuws */
#main .content.news {
  width: 960px;
}

/* niews overzicht */
#main .content.news .top {
  border-bottom: 2px solid #f8f8f8;
  color: #b0b0b0;
  font-size: 12px;
  margin-bottom: 20px;
}

#main .content.news .top span {
  padding-right: 0px;
  padding-left: 10px;
  height: 25px;
  line-height: 25px;
  display: inline-block;
}

#main .content.news .top span.category {
  padding-left: 2px;
  border-left: none;
  color: #4c4c4c;
  font-weight: bold;
}

#main .content.news .top span.category.basis {
  background: url(../img/icon-basis.png) left no-repeat;
  padding-left: 22px;
  color: #8c8f91;
  font-weight: bold;
}

#main .content.news .top span.category.vermogensplanner {
  background: url(../img/icon_vermogensplanner.png) left no-repeat;
  padding-left: 22px;
  color: #bbcc5d;
  font-weight: bold;
}

#main .content.news .top span.category.klantintegriteit {
  background: url(../img/icon_klantintegriteit.png) left no-repeat;
  padding-left: 22px;
  color: #BB9F61;
  font-weight: bold;
}

#main .content.news .top span.category.mifid_ii_insiger_adviseren,
#main .content.news .top span.category.mifid_ii_ing_adviseren_beleggen {
  background: url(../img/icon_mifid_ii_ing_adviseren_beleggen.png) left no-repeat;
  padding-left: 22px;
  color: #bb9b60;
  font-weight: bold;
}

#main .content.news .top span.category.mifid_ii_insiger_informeren,
#main .content.news .top span.category.mifid_ii_ing_informeren_beleggen {
  background: url(../img/icon_mifid_ii_ing_informeren_beleggen.png) left no-repeat;
  padding-left: 22px;
  color: #bb9b60;
  font-weight: bold;
}

#main .content.news .top span.category.pensioen {
  background: url(../img/icon-pensioen.png) left no-repeat;
  padding-left: 22px;
  color: #6b50a1;
  font-weight: bold;
}

#main .content.news .top span.category.bv-schade-zakelijk,
#main .content.news .top span.category.schadezakelijk {
  background: url(../img/icon-zakelijke-schade.png) left no-repeat;
  padding-left: 22px;
  color: #3e63ae;
  font-weight: bold;
}

#main .content.news .top span.category.zorgverzekeringen {
  background: url(../img/icon_zorgverzekering.png) left no-repeat;
  padding-left: 22px;
  color: #fdbd2d;
  font-weight: bold;
}

#main .content.news .top span.category.hypothecairkrediet {
  background: url(../img/icon-hypotheekcair-krediet.png) left no-repeat;
  padding-left: 22px;
  color: #43c2c7;
  font-weight: bold;
}

#main .content.news .top span.category.inkomen {
  background: url(../img/icon-inkomen.png) left no-repeat;
  padding-left: 22px;
  color: #2c9f6c;
  font-weight: bold;
}

#main .content.news .top span.category.bv-vermogen,
#main .content.news .top span.category.vermogensadvies {
  background: url(../img/icon-vermogensbeheer.png) left no-repeat;
  padding-left: 22px;
  color: #c6529f;
  font-weight: bold;
}

#main .content.news .top span.category.consumptiefkrediet {
  background: url(../img/icon-concumptief-krediet.png) left no-repeat;
  padding-left: 22px;
  color: #82cadf;
  font-weight: bold;
}

#main .content.news .top span.category.bv-schade-particulier,
#main .content.news .top span.category.schadeparticulier {
  background: url(../img/icon-persoonlijke-schade.png) left no-repeat;
  padding-left: 22px;
  color: #f5863c;
  font-weight: bold;
}

#main .content.news .newsitem {
  margin-top: 30px;
  display: inline-block;
  float: left;
  width: 460px;
  margin-bottom: 30px;
  min-height: 200px;
}

#main .content.news .newsitem span.moduletitle {
  color: #a5a5a5;
  font-weight: bold;
  font-size: 12px;
  width: 174px;
  display: inline-block;
  float: left;
  margin-bottom: 6px;
}

#main .content.news .newsitem span.moduletitle img {
  vertical-align: text-top;
  margin-right: 5px;
}

#main .content.news .newsitem .bar {
  background-color: #dddddd;
  width: 150px;
  height: 2px;
  display: inline-block;
  float: left;
}

#main .content.news .newsitem .bar .percent {
  width: 1%;
  height: 100%;
  transition: all 0.6s ease-in-out;
}

span.tooltipspan {
  color: #999;
}

#main .content.news .newsitem .leftcolumn {
  display: inline-block;
  text-decoration: none;
  max-height: 155px !important;
  margin-bottom: 26px;
}

#main .content.news .newsitem .leftcolumn .image {
  width: 155px;
  height: 155px; /*overflow:hidden;*/
  display: inline-block;
  float: left;
  position: relative;
}

#main .content.news .newsitem .leftcolumn .video-overlay {
  position: absolute;
  top: 0;
  background: url(/-sitedesign/img/video-thumb.png);
  height: 155px;
  width: 155px;
}

#main .content.news .newsitem .leftcolumn .image img { /*top:0px; left:0px;*/ }

#main .content.news .newsitem .leftcolumn .image img.hoverimg {
  display: none;
  position: absolute;
  z-index: 999 !important;
  margin-top: -151px;
}

#main .content.news .newsitem .leftcolumn .text {
  width: 300px;
  padding-left: 26px;
  display: inline-block;
  float: left;
  position: relative;
  height: 151px;
}

#main .content.news .newsitem .leftcolumn .text h2 {
  color: #181818;
  font-size: 16px;
  font-family: "OpenSansSemibold";
  margin: 0px;
  padding: 0px;
  margin-top: -3px;
  margin-bottom: 8px;
  margin-left: 0px;
  line-height: 20px;
}
#main .content.news .newsitem .leftcolumn .text h2 div.categoryblock {
  margin-top: 6px;
  margin-right: 6px;
}

#main .content.news .newsitem .leftcolumn .text.topnewsitem div.categoryblock {
  margin-left: -6px;
}
#main .content.news .newsitem .leftcolumn .text.topnewsitem h2, #main .content.news .newsitem .leftcolumn .text.topnewsitem div.introtext, #main .content.news .newsitem .leftcolumn .text.topnewsitem span.readmore {
  margin-left: 13px;
}

#main .content.news .newsitem .leftcolumn .text h2.inactive {
  color: #B0B0B0;
}

#main .content.news .newsitem .leftcolumn .text p {
  color: #000;
  text-decoration: none;
}

#main .content.news .newsitem .leftcolumn .text p.inactive {
  color: #B0B0B0;
}

#main .content.news .newsitem .leftcolumn .text .introtext {
  height: 108px;
  overflow: hidden;
}

#main .content.news .newsitem .leftcolumn .text span.readmore {
  position: absolute;
  bottom: -4px;
  color: #656565;
  line-height: 32px;
  height: 32px;
  text-decoration: none;
  padding-left: 20px;
  padding-right: 52px;
  font-size: 12px;
  background: url(../img/arrow-grey.png) 184px 13px no-repeat #f8f8f8;
  display: inline-block;
  border-radius: 3px;
}

#main .content.news .newsitem .leftcolumn .text span.readmore:hover {
  background: url(../img/arrow-white.png) 184px 13px no-repeat #f8f8f8;
}

#main .content.news .newsitem .leftcolumn.inactive {
  cursor: pointer;
}

#main .content.news .newsitem .leftcolumn.inactive .text h2 {
  color: #b0b0b0;
  background: url(../img/read-check.png) 0 6px no-repeat;
  padding: 0 0 0 17px;
}

#main .content.news .newsitem .leftcolumn.inactive .text p {
  color: #b0b0b0;
}

#main .content.news .newsitem .leftcolumn.inactive .text span.readmore {
  color: #686868;
  text-decoration: none;
  background: url(../img/news-overview-inactive-arrow.png) center right no-repeat;
}

#main .content.news .newsitem .leftcolumn.inactive .image {
  opacity: 0.6;
}

#main .content.news .newsitem .leftcolumn:hover {
  cursor: pointer;
}

#main .content.news .newsitem .leftcolumn:hover .text h2 {
  color: #181818;
}

#main .content.news .newsitem .leftcolumn:hover .text p {
  color: #181818;
}

#main .content.news .newsitem .leftcolumn:hover .image img.hoverimg {
  display: none;
}

#main .content.news .newsitem .leftcolumn:hover .text span.readmore {
  text-decoration: none;
  color: #fff;
  background: url(../img/arrow-white.png) 184px 13px no-repeat #A3A3A3;
}

#main .content.news .newsitem .newsitemlinks a { /*display:inline-block;*/
  width: auto;
  text-decoration: none;
  color: #686868;
  line-height: 24px;
}

#main .content.news .newsitem .newsitemlinks a div.categoryblock {
  margin-top: 7px;
}

#main .content.news .newsitem .newsitemlinks a.inactive {
  color: #B0B0B0;
}

#main .content.news .newsitem .newsitemlinks a:hover {
  color: #F89D65;
}

#main .content.news .newsitem .newsitemlinks p {
  color: #919191;
  margin-top: 10px;
}

#main .content.news .newsitem span.more {
  color: #919191;
  text-decoration: none;
  margin-top: 8px;
  display: inline-block;
}

#main .content.news .newsitem span.more a {
  color: #919191;
  text-decoration: underline;
}

#main .content.news .newsitem span.more a:hover {
  text-decoration: none;
}

#main .content.news h2.devider {
  color: #939393;
  font-size: 12px;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
  margin-top: 60px;
  border-bottom: 4px solid #f5f5f5;
  padding-bottom: 5px;
}

#main .content.news .rightcolumn .block.morenews {
  margin-bottom: 25px;
  padding-top: 18px;
  padding-bottom: 15px;
  height: 150px;
  background-color: #f8f8f8;
  margin-top: 1px;
}

#main .content.news .rightcolumn .block.morenews a {
  color: #000000;
}

#main .content.news .rightcolumn .block.morenews .arrow {
  background: url(../img/news-detail-arrow.png) top left no-repeat;
  height: 14px;
  width: 12px;
  position: absolute;
  margin-left: -36px;
  margin-top: 8px;
}

.lt-ie8 #main .content.news .rightcolumn .block.morenews {
  height: 121px;
}

/* nieuws detail */
#main .content.news h1.newsdetail {
  margin-top: 0px;
  margin-bottom: 8px;
  line-height: 30px;
  color: #000;
}

#main .content.news a.backto {
  float: left;
  display: block;
  background: url(../img/btn-back-arrows.png) no-repeat 20px -2px #f8f8f8;
  border-radius: 3px;
  color: #7f7f7f;
  text-decoration: none;
  line-height: 32px;
  padding-left: 40px;
  padding-right: 20px;
}

#main .content.news a.backto:hover {
  color: #fff;
  background: url(../img/btn-back-arrows.png) no-repeat 20px -38px #A3A3A3;
}

#main .content.news.detail .leftcolumn {
  width: 470px;
  display: inline-block;
  float: left;
  margin-top: 18px;
}

#main .content.news.detail .leftcolumn ol {
  margin-left: 24px;
}

#main .content.news.detail .leftcolumn ol li {
  margin-bottom: 10px;
}

#main .content.news.detail .leftcolumn h2 {
  margin-top: 24px;
  color: #000;
}

#main .content.news.detail .leftcolumn .top span.category {
  background: none;
  padding-left: 0px !important;
}

#main .content div.categoryblock {
  display: inline-block;
  height: 9px;
  width: 9px;
  margin-top: 8px;
}

#main .content.news .newsitem div.categoryblock {
  margin-top: 3px;
}

#main .content.news.detail .leftcolumn .othernewsitems {
  margin-top: 42px;
}

#main .content.news.detail .leftcolumn .othernewsitems a {
  display: inline-block;
  width: auto;
  text-decoration: none;
  color: #000000;
  line-height: 24px;
}

#main .content.news.detail .leftcolumn .othernewsitems a div.categoryblock {
  margin-top: 7px;
}

#main .content.news.detail .leftcolumn .othernewsitems a:hover {
  color: #000000;
}

#main .content.news.detail .leftcolumn .othernewsitems a.inactive {
  color: #B0B0B0;
}

#main .content.news.detail .leftcolumn div.devider {
  margin-bottom: 25px;
  margin-top: 30px;
  height: 4px;
  background-color: #f8f8f8;
}

#main .content.news.detail .leftcolumn h3 {
  color: #585858;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 18px;
}

#main .content.news.detail .leftcolumn .comments .comment {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #e9e9e9;
}

#main .content.news.detail .leftcolumn .comments .comment:first-child {
  border-top: none;
}

#main .content.news.detail .leftcolumn .comments form {
  margin-top: 40px;
}

#main .content.news.detail .leftcolumn .comments .moderator {
  background: #f8f8f8;
  color: #7e7e7e;
  padding: 30px;
  margin-top: 20px;
  position: relative;
  border-radius: 3px;
}
#main .content.news.detail .leftcolumn .comments .moderator:after {
  bottom: 100%;
  left: 30px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(248, 248, 248, 0);
  border-bottom-color: #f8f8f8;
  border-width: 11px;
}
#main .content.news.detail .leftcolumn .comments .moderator h4 {
  font-weight: bold;
  line-height: 18px;
  font-size: 1em;
  color: inherit;
}
#main .content.news.detail .leftcolumn .comments .moderator p {
  color: inherit;
}

#main .content.news.detail .leftcolumn.forgotpass {
  border-bottom: 4px solid #f5f5f5;
  padding-bottom: 44px;
}

#main .content.news.detail .leftcolumn.forgotpass h1 {
  margin-bottom: 24px;
}

#main .content.news.detail .leftcolumn.forgotpass form {
  margin-top: 20px;
}

#main .content.news.detail .leftcolumn .question {
  background: #f3f6f9;
  width: 100%;
  padding: 30px;
  margin-bottom: 80px;
  position: relative;
  display: inline-block;
  text-decoration: none;
}
#main .content.news.detail .leftcolumn .question:before {
  content: " ";
  position: absolute;
  left: 30px;
  top: -9px;
  display: inline-block;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 0 10px 9px 10px;
  border-color: transparent transparent #f3f6f9 transparent;
}
#main .content.news.detail .leftcolumn .question h3 {
  color: #F57323;
  font-size: 16px;
  line-height: 24px;
  width: 90%;
}
#main .content.news.detail .leftcolumn .question i.customicon {
  position: absolute;
  top: 37px;
  right: 30px;
}
#main .content.news.detail .leftcolumn .question i.customicon.arrow {
  top: 29px;
}
#main .content.news.detail .leftcolumn .question i.customicon.arrow:after {
  display: inline-block;
  content: "";
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 5px 0 5px 7px;
  border-color: transparent transparent transparent #000000;
}
#main .content.news.detail .leftcolumn .question div.questionText {
  margin-top: 10px;
  margin-bottom: 24px;
}
#main .content.news.detail .leftcolumn .question form button {
  margin-top: 18px;
  float: left;
}
#main .content.news.detail .leftcolumn .question.exam-online h3 {
  color: #000;
}
#main .content.news.detail .leftcolumn .question.exam-online:hover h3 {
  color: #5c5c5c;
}
#main .content.news.detail .leftcolumn .question.exam-online:hover i.customicon.arrow:after {
  border-color: transparent transparent transparent #5c5c5c;
}
#main .content.news.detail .leftcolumn .question.correct-answer h3 {
  color: #079224;
}
#main .content.news.detail .leftcolumn .question.correct-answer div.questionText .answertext {
  color: #079224;
}
#main .content.news.detail .leftcolumn .question.correct-answer div.questionText div.radiobox input[type=radio]:checked + label {
  color: #079224;
}
#main .content.news.detail .leftcolumn .question.correct-answer div.questionText div.radiobox input[type=radio]:checked + label:after {
  background: #079224;
}
#main .content.news.detail .leftcolumn .question.correct-answer div.questionText div.radiobox label {
  cursor: initial;
}
#main .content.news.detail .leftcolumn .question.wrong-answer h3 {
  color: #F89D65;
}
#main .content.news.detail .leftcolumn .question.wrong-answer div.questionText .answertext {
  color: #F89D65;
}
#main .content.news.detail .leftcolumn .question.wrong-answer div.questionText div.radiobox input[type=radio]:checked + label {
  color: #F89D65;
}
#main .content.news.detail .leftcolumn .question.wrong-answer div.questionText div.radiobox input[type=radio]:checked + label:after {
  background: #F89D65;
}
#main .content.news.detail .leftcolumn .question.wrong-answer div.questionText div.radiobox label {
  cursor: initial;
}
#main .content.news.detail .leftcolumn .question strong.green {
  color: #079224 !important;
}

#main .content .examquestion-chooseanswer {
  display: inline-block;
  float: right;
  background: #292929;
  padding: 14px 20px;
  max-width: 230px;
  color: #fff;
  border-radius: 5px;
  margin-top: -14px;
  margin-right: 20px;
  position: relative;
  animation: fadein 0.5s;
}
#main .content .examquestion-chooseanswer:after {
  content: " ";
  display: inline-block;
  position: absolute;
  top: 50%;
  margin-top: -6px;
  right: -5px;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 4.5px 0 4.5px 5px;
  border-color: transparent transparent transparent #292929;
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#main h1 span.searchString {
  color: #a7a7a7;
}

#main .content.news.archive h1 {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 20px;
  color: #535353;
  margin: 0px;
  padding: 0px;
  margin-top: 14px;
}

#main .content.news.archive .newsday {
  margin-bottom: 30px;
}

#main .content.news.archive .newsday h2 {
  margin-top: 30px;
  font-weight: normal;
  color: #4c4c4c;
  border-bottom: 2px solid #F5F5F5;
}

#main .content.news.archive .newsday .newsitemlinks {
  display: inline-block;
  float: left;
  width: 100%;
}

#main .content.news.archive .newsday .newsitemlinks a div.categoryblock {
  margin-top: 6px;
}

#main .content.news.archive .newsday .newsitemlinks a {
  display: block;
  width: 460px;
  text-decoration: none;
  line-height: 21px;
  color: #686868;
}

#main .content.news.archive .newsday .newsitemlinks a.inactive {
  color: #B0B0B0;
}

#main .content.news.archive .newsday .newsitemlinks a:hover {
  color: #F89D65;
}

#main .content.news.archive a.newsarchive {
  display: inline-block;
  color: #686868;
  font-size: 12px;
  width: 100%;
  text-align: center;
  margin-top: 50px;
  background: none;
  text-decoration: underline;
}

#main .content.news.archive a.newsarchive span.downarrow {
  display: inline-block;
  margin-left: 2px;
  margin-top: -1px;
  height: 7px;
  width: 9px;
  background: url(../img/archivereadmorearrow.png) top left no-repeat;
}

#main .content.news.archive a.newsarchive:hover {
  text-decoration: none;
  cursor: pointer;
}

#main .content.news.archive p.newsarchive {
  display: inline-block;
  color: #000;
  font-size: 12px;
  width: 100%;
  text-align: center;
  margin-top: 50px;
  background: none;
  text-decoration: none;
}

#main .content div.categoryblock {
  display: inline-block;
  float: left;
  margin-right: 10px;
  height: 9px;
  width: 9px; /*margin-top:3px;*/
}

#main .content div.categoryblock.nicetoread {
  background: url(../img/icon-nicetoread.png) center no-repeat;
}

#main .content div.categoryblock.pensioen {
  background-color: #6b50a1;
}

#main .content div.categoryblock.consumptiefkrediet {
  background-color: #82cadf;
}

#main .content div.categoryblock.hypothecairkrediet {
  background-color: #43c2c7;
}

#main .content div.categoryblock.inkomen {
  background-color: #2c9f6c;
}

#main .content div.categoryblock.bv-schade-particulier,
#main .content div.categoryblock.schadeparticulier {
  background-color: #f5863c;
}

#main .content div.categoryblock.zorgverzekeringen {
  background-color: #fdbd2d;
}

#main .content div.categoryblock.bv-schade-zakelijk,
#main .content div.categoryblock.schadezakelijk {
  background-color: #3e63ae;
}

#main .content div.categoryblock.bv-vermogen,
#main .content div.categoryblock.vermogensadvies {
  background-color: #c6529f;
}

#main .content div.categoryblock.basis {
  background-color: #8c8f91;
}

#main .content div.categoryblock.vermogensplanner {
  background-color: #bbcc5d;
}

#main .content div.categoryblock.klantintegriteit {
  background-color: #BB9F61;
}

#main .content div.categoryblock.mifid_ii_insiger_adviseren,
#main .content div.categoryblock.mifid_ii_ing_adviseren_beleggen {
  background-color: #bb9b60;
}

#main .content div.categoryblock.mifid_ii_insiger_informeren,
#main .content div.categoryblock.mifid_ii_ing_informeren_beleggen {
  background-color: #bb9b60;
}

#main .content div.categoryblock.inactive {
  background-color: #dadada;
}

#main .content.news.detail .leftcolumn .top span.category.pensioen {
  color: #6f4796;
}

#main .content.news .leftcolumn .imageslider {
  height: 210px;
  width: 210px;
}

#main .content.news .leftcolumn .imageslider img {
  height: 210px;
  width: 210px;
}

#main .content.news .leftcolumn .videoPlayer {
  margin-bottom: 16px;
}

#main .content.news .leftcolumn span.date {
  display: inline-block;
  float: left;
  color: #a5a5a5;
  font-size: 12px;
  line-height: 18px;
  margin-right: 6px;
}

#main .content.news .leftcolumn p.bron {
  margin-bottom: 60px;
}

#main .content.news .leftcolumn p.bron span {
  color: #b0b0b0;
  display: block;
  font-size: 12px;
  line-height: 18px;
}

#main .content.news .leftcolumn p.bron a {
  color: #000000;
  display: inline-block;
  font-size: 12px;
  line-height: 18px;
}

#main .content.news .leftcolumn p.bron a:hover {
  color: #000000;
}

#main .content.news .rightcolumn {
  width: 450px;
  display: inline-block;
  float: right;
  margin-top: 18px;
}

#main .content.news .rightcolumn .block {
  display: block;
  padding-left: 24px;
}

.lt-ie8 #main .content.news .rightcolumn .block {
  width: 274px;
}

#main .content.news .rightcolumn .block h4 {
  font-size: 12px;
  color: #000;
  font-weight: bold;
  padding-bottom: 6px;
  margin-bottom: 14px;
  border-bottom: 2px solid #f8f8f8;
}

#main .content.news .rightcolumn .block a {
  font-size: 12px;
  line-height: 24px;
  color: #000000;
  text-decoration: none;
  display: inline-block;
  width: auto;
}

#main .content.news .rightcolumn .block a.inactive {
  color: #b0b0b0; /*background:url(../img/read-check.png) 0 center no-repeat;*/
  padding: 0 0 0 16px;
  margin-left: -16px;
}

#main .content.news .rightcolumn .block a:hover {
  color: #000000;
}

#main .content.news .rightcolumn .block a span.date {
  line-height: 24px;
}

#main .content.news .rightcolumn .block a div.categoryblock {
  margin-top: 7px;
}

#main .content.news.detail .rightcolumn .block.morenews {
  padding-top: 18px;
  padding-bottom: 18px;
  height: auto;
  margin-top: -1px;
}

/* news comments */
#main .content.news.detail .leftcolumn #comments {
  margin-top: 40px;
}

#main .content.news.detail .leftcolumn #comments .commentItems {
  margin-top: 20px;
}

#main .content.news.detail .leftcolumn #comments .commentItems .commentItem {
  margin-bottom: 20px;
}

/* news ratings */
@font-face {
  font-family: "welten";
  src: url("fonts/welten.eot");
  src: url("fonts/welten.eot?#iefix") format("embedded-opentype"), url("fonts/welten.woff") format("woff"), url("fonts/welten.ttf") format("truetype"), url("fonts/welten.svg#welten") format("svg");
  font-weight: normal;
  font-style: normal;
}
#main .ratings {
  font-size: 12px;
  color: #686868;
  clear: both;
  width: 100%;
  float: left;
  margin-top: 10px;
  margin-bottom: 30px;
}
#main .ratings .no_result:before {
  color: #ddd;
}
#main .ratings .ratings_total {
  font-weight: bold;
  width: 44%;
  line-height: 36px;
  float: left;
  margin-top: -9px;
  /* &:before{
     line-height: 31px;
     text-align: center;
     display: inline-block;
     width: 31px;
     height: 31px;
     font-family: "welten";
     font-size: 16px;
     font-weight: normal!important;
     content:"\61";
    color:#fff;
     border-radius: 100%;
     margin-right:10px;
     background-color: #f3f6f9;
     top: 3px;
     position: relative;
   }*/
}
#main .ratings .ratings_total.rating_1:before {
  background-color: #d15635;
  transform: rotate(-180deg);
}
#main .ratings .ratings_total.rating_2:before {
  background-color: #ed973c;
  transform: rotate(-180deg);
}
#main .ratings .ratings_total.rating_3:before {
  background-color: #ffec4e;
}
#main .ratings .ratings_total.rating_4:before {
  background-color: #2dc679;
}
#main .ratings .ratings_total.rating_5:before {
  background-color: #03934b;
}
#main .ratings .ratings_choices {
  font-size: 12px;
  float: right;
  width: 56%;
  line-height: 20px;
}
#main .ratings .ratings_choices ul {
  margin: 0;
  float: right;
}
#main .ratings .ratings_choices ul.selectable li {
  cursor: pointer;
}
#main .ratings .ratings_choices ul li {
  margin: 0 0 0 10px !important;
  width: 20px;
  height: 20px;
  font-size: 14px;
  border-radius: 100%;
  text-align: center;
  display: inline-block;
  font-weight: normal;
  border: 1px solid #ccc;
  transition: all 0.3s ease;
  color: #cdc8c8;
  cursor: default;
}
#main .ratings .ratings_choices ul li.rating_1 {
  border-color: #d15635;
  color: #000;
}
#main .ratings .ratings_choices ul li.rating_2 {
  border-color: #ed973c;
  color: #000;
}
#main .ratings .ratings_choices ul li.rating_3 {
  border-color: #ffec4e;
  color: #000;
}
#main .ratings .ratings_choices ul li.rating_4 {
  border-color: #2dc679;
  color: #000;
}
#main .ratings .ratings_choices ul li.rating_5 {
  border-color: #03934b;
  color: #000;
}
#main .ratings .ratings_choices ul li.rating_1:hover, #main .ratings .ratings_choices ul li.rating_1.active {
  background-color: #d15635;
  color: #fff;
}
#main .ratings .ratings_choices ul li.rating_2:hover, #main .ratings .ratings_choices ul li.rating_2.active {
  background-color: #ed973c;
  color: #fff;
}
#main .ratings .ratings_choices ul li.rating_3:hover, #main .ratings .ratings_choices ul li.rating_3.active {
  background-color: #ffec4e;
  color: #fff;
}
#main .ratings .ratings_choices ul li.rating_4:hover, #main .ratings .ratings_choices ul li.rating_4.active {
  background-color: #2dc679;
  color: #fff;
}
#main .ratings .ratings_choices ul li.rating_5:hover, #main .ratings .ratings_choices ul li.rating_5.active {
  background-color: #03934b;
  color: #fff;
}
#main .ratings .no_result {
  color: #b0b0b0 !important;
}

/* EXAMS */
#main .content.exams a {
  color: #F57323;
}

#main .content.exams a:hover {
  color: #F89D65;
}

#main .content.exams a.interactionbtn {
  float: left;
  color: #fff;
  display: block;
  clear: both;
  margin-top: 30px;
  font-size: 12px;
  background-color: #F57323;
}

#main .content.exams a.interactionbtn:hover {
  background-color: #F89D65;
}

#main .content.exams a.interactionbtn.secundair {
  margin-top: 0px;
  background-color: #A3A3A3;
}

#main .content.exams a.interactionbtn.secundair:hover {
  background-color: #F89D65;
}

#main .content.exams .intro a.interactionbtn {
  width: 180px;
}

#main .content.exams .overviewitem {
  display: block;
  width: 100%;
  padding-top: 40px;
  padding-bottom: 38px;
  border-bottom: 2px solid #f8f8f8;
  min-height: 140px;
  clear: both;
}

#main .content.exams .overviewitem a.interactionbtn {
  margin: 0px;
  float: right;
  margin-top: 5px;
}

#main .content.exams .overviewitem a.interactionbtn.her {
  color: #656565;
  padding-left: 20px;
  padding-right: 45px;
  background: url(../img/arrow-grey.png) 160px 13px no-repeat #f8f8f8;
}

#main .content.exams .overviewitem a.interactionbtn.her:hover {
  background: url(../img/arrow-white.png) 160px 13px no-repeat #A3A3A3;
  color: #fff;
}

#main .content.exams .overviewitem span.score {
  width: 130px;
  display: inline-block;
}

#main .exams .bar {
  display: inline-block;
  height: 9px;
  width: 100%;
  background-color: #e5e5e5;
}

#main .bar .percent {
  display: inline-block;
  float: left;
  height: 9px;
  width: 0%;
  transition: all 1.3s ease-in;
}

#main .bar .percent {
  background-color: #7d7d7d;
}

#main .bar .percent.red {
  background-color: #d74d4d;
}

#main .bar .percent.yellow {
  background-color: #f2bd56;
}

#main .bar .percent.green {
  background-color: #3a9f6c;
}

#main .bar .percent.pensioen {
  background-color: #6b50a1;
}

#main .bar .percent.consumptiefkrediet {
  background-color: #82cadf;
}

#main .bar .percent.hypothecairkrediet {
  background-color: #43c2c7;
}

#main .bar .percent.inkomen {
  background-color: #2c9f6c;
}

#main .bar .percent.bv-schade-particulier,
#main .bar .percent.schadeparticulier {
  background-color: #f5863c;
}

#main .bar .percent.zorgverzekeringen {
  background-color: #fdbd2d;
}

#main .bar .percent.bv-schade-zakelijk,
#main .bar .percent.schadezakelijk {
  background-color: #3e63ae;
}

#main .bar .percent.bv-vermogen,
#main .bar .percent.vermogensadvies {
  background-color: #c6529f;
}

#main .bar .percent.basis {
  background-color: #8c8f91;
}

#main .bar .percent.vermogensplanner {
  background-color: #bbcc5d;
}

#main .bar .percent.klantintegriteit {
  background-color: #BB9F61;
}

#main .bar .percent.mifid_ii_insiger_adviseren,
#main .bar .percent.mifid_ii_ing_adviseren_beleggen {
  background-color: #bb9b60;
}

#main .bar .percent.mifid_ii_insiger_informeren,
#main .bar .percent.mifid_ii_ing_informeren_beleggen {
  background-color: #bb9b60;
}

#main .profile .exams .scoreItem {
  border: none !important;
}

#main .exams .scoreItem {
  margin-bottom: 0px;
  margin-top: 20px;
  padding-bottom: 50px;
  border-bottom: 2px solid #f8f8f8;
}

#main .exams .scoreItem h3 {
  border: none;
}

#main .exams .scoreItem h4 {
  margin-top: 28px;
}

#main .exams .scoreItem .module {
  display: block;
  width: 100%;
  height: 30px;
}

#main .exams .scoreItem .module span {
  width: 25%;
  display: inline-block;
  float: left;
  line-height: 30px;
}

#main .exams .scoreItem .module .bar {
  width: 75%;
  display: inline-block;
  float: left;
  line-height: 30px;
  margin-top: 10px;
}

#main .content.exams .wrongAnswers {
  margin-top: 60px;
  margin-bottom: 30px;
}

#main .content.exams .wrongAnswers h2 {
  line-height: 32px;
}

#main .content.exams .wrongAnswers h2 img {
  margin: 0px;
  margin-right: 4px;
}

#main .content.exams .wrongAnswers div.title {
  margin-top: 10px;
  cursor: pointer;
  display: inline-block;
  width: 100%;
  line-height: 22px;
  padding-left: 20px;
  background: url(../img/wrongquestions-arrow_down.png) 715px 16px no-repeat #f2f2f2;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  color: #474747;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-right: 40px;
}

#main .content.exams .wrongAnswers div.title.ui-state-active {
  background: url(../img/wrongquestions-arrow_up.png) 715px 16px no-repeat #f2f2f2;
}

#main .content.exams .wrongAnswers div.message {
  background-color: #f9f9f9;
  padding: 20px;
  font-size: 14px;
  color: #a3a3a3;
}

#main .content.exams .wrongAnswers div.message span {
  margin-bottom: 4px;
  width: 120px;
  display: inline-block;
}

#main .content.exams .wrongAnswers div.message a {
  color: #F57323;
  font-size: 12px;
  margin-top: 8px;
  display: inline-block;
}

#main .content.exams .wrongAnswers div.message a:hover {
  color: #F89D65;
}

#main .content.exams form.wizardForm {
  border-top: 2px solid #efefef;
  padding-top: 10px;
  margin-top: 44px;
  margin-bottom: 0px;
  position: relative;
  min-height: 200px;
}

#main .content.exams form.wizardForm .btn-next { /*visibility:hidden;*/ /*  display:none;  */
  float: right;
}

#main .content.exams form.wizardForm div.step {
  visibility: hidden;
  opacity: 0;
  position: relative;
  display: inline-block;
  width: 736px;
}
#main .content.exams form.wizardForm div.step.visible {
  visibility: visible;
  opacity: 1;
}
#main .content.exams form.wizardForm div.step div.errorwarning {
  display: none;
}
#main .content.exams form.wizardForm div.step div.question {
  margin-bottom: 30px;
  padding-top: 50px;
}
#main .content.exams form.wizardForm div.step div.question strong {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 12px;
  color: #474747;
  line-height: 22px;
}
#main .content.exams form.wizardForm div.step div.question .question-info {
  position: absolute;
  top: 0;
  right: 0;
}
#main .content.exams form.wizardForm div.step div.question .question-info .module {
  display: inline-block;
  float: right;
}
#main .content.exams form.wizardForm div.step div.question .question-info .module.pensioen {
  color: #6b50a1;
}
#main .content.exams form.wizardForm div.step div.question .question-info .module.consumptiefkrediet {
  color: #82cadf;
}
#main .content.exams form.wizardForm div.step div.question .question-info .module.hypothecairkrediet {
  color: #43c2c7;
}
#main .content.exams form.wizardForm div.step div.question .question-info .module.inkomen {
  color: #2c9f6c;
}
#main .content.exams form.wizardForm div.step div.question .question-info .module.bv-schade-particulier {
  color: #f5863c;
}
#main .content.exams form.wizardForm div.step div.question .question-info .module.schadeparticulier {
  color: #f5863c;
}
#main .content.exams form.wizardForm div.step div.question .question-info .module.zorgverzekeringen {
  color: #fdbd2d;
}
#main .content.exams form.wizardForm div.step div.question .question-info .module.bv-schade-zakelijk {
  color: #3e63ae;
}
#main .content.exams form.wizardForm div.step div.question .question-info .module.schadezakelijk {
  color: #3e63ae;
}
#main .content.exams form.wizardForm div.step div.question .question-info .module.bv-vermogen {
  color: #c6529f;
}
#main .content.exams form.wizardForm div.step div.question .question-info .module.vermogensadvies {
  color: #c6529f;
}
#main .content.exams form.wizardForm div.step div.question .question-info .module.basis {
  color: #8c8f91;
}
#main .content.exams form.wizardForm div.step div.question .question-info .module.vermogensplanner {
  color: #bbcc5d;
}
#main .content.exams form.wizardForm div.step div.question .question-info .module.klantintegriteit {
  color: #BB9F61;
}
#main .content.exams form.wizardForm div.step div.question .question-info .module.mifid_ii_ing_adviseren_beleggen {
  color: #bb9b60;
}
#main .content.exams form.wizardForm div.step div.question .question-info .module.mifid_ii_ing_informeren_beleggen {
  color: #bb9b60;
}
#main .content.exams form.wizardForm div.step div.question .question-info .module.mifid_ii_insiger_adviseren {
  color: #bb9b60;
}
#main .content.exams form.wizardForm div.step div.question .question-info .module.mifid_ii_insiger_informeren {
  color: #bb9b60;
}
#main .content.exams form.wizardForm div.step div.question .question-info .module.inactive {
  color: #dadada;
}
#main .content.exams form.wizardForm div.step div.question .question-info .module .categoryblock {
  margin-top: 4px;
  margin-right: 5px;
}
#main .content.exams form.wizardForm div.step div.question .question-info .newstitle {
  display: inline-block;
  float: right;
  color: #999;
}
#main .content.exams form.wizardForm div.step.error div.errorwarning {
  display: block;
}
#main .content.exams form.wizardForm div.step .answers input[type=text] {
  width: 30%;
}
#main .content.exams form.wizardForm div.step button {
  margin-top: 0px;
}

#main .content.exams span.icon-info {
  background: url(../img/icon-info.png) 0px -10px no-repeat #fff;
  cursor: pointer;
  display: inline-block;
  height: 16px;
  width: 12px;
  margin-left: 8px;
  vertical-align: text-bottom;
}

#main .content.profile.manager .manager a.module span i.icon-info {
  background: url(../img/icon-toets.png) 0px -8px no-repeat #fff;
  cursor: pointer;
  display: inline-block;
  height: 16px;
  width: 12px;
  margin-top: 10px;
  margin-right: -11px;
  float: right;
}

/* profiel */
#main .content.profile {
  float: right;
  position: relative;
}

#main .content.profile h1 {
  margin-bottom: 22px;
  border-bottom: 2px solid #f8f8f8;
  padding-bottom: 20px;
}

#main .content.profile h3 {
  color: #595959;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 12px;
  margin-top: 0px;
  border-top: 2px solid #f8f8f8;
  padding-top: 17px;
}

#main .content.profile h1 + h3 {
  border: none;
  padding-top: 0px;
}

#main .content.profile div.succesMsg {
  display: none;
  position: absolute;
  margin-top: -20px;
  right: 0;
  color: #3A9F6C;
}

p.error {
  color: #DA121F;
}

ul.error li {
  color: #DA121F;
}

p.infoMsg {
  color: #056E82;
}

#main .content.profile div.profiledata .leftcolumn {
  display: inline-block;
  float: left;
  width: 360px;
}

#main .content.profile div.profiledata .rightcolumn {
  display: inline-block;
  float: right;
  width: 345px;
}

#main .content.profile div.profiledata form span {
  padding-left: 6px;
}

#main .content.profile div.profiledata form label {
  color: #121212;
  display: inline-block;
  width: 100px;
  height: 22px;
  line-height: 22px;
  margin-bottom: 5px;
}

#main .content.profile div.profiledata form .rightcolumn label {
  width: 150px;
}

#main .content.profile div.profiledata form input {
  color: #727272;
  display: inline-block;
  width: 192px;
  height: 22px;
  line-height: 1;
  padding-left: 4px;
  margin-bottom: 5px;
  display: none;
}

#main .content.profile div.profiledata form a.editdata {
  display: inline-block;
  border-radius: 3px;
  background: #F8F8F8;
  color: #7F7F7F;
  line-height: 36px;
  padding-left: 20px;
  padding-right: 20px;
  cursor: pointer;
  width: auto;
  margin-top: 38px;
}

#main .content.profile div.profiledata form a.editdata:hover {
  color: #fff;
  background: #A3A3A3;
}

#main .content.profile div.profiledata form input[type=submit] {
  display: none;
  float: left;
  width: auto;
  color: #fff;
  padding-left: 20px;
  height: 36px;
  line-height: 36px;
  margin-top: 13px;
}

#main .content.profile div.profiledata form .extrafields {
  display: none;
}

#main .content.profile div.profiledata form label > span.required {
  display: none;
}

#main .content.profile .profilemodule {
  margin-top: 14px;
  margin-bottom: 12px;
}

#main .content.profile .profilemodule span {
  color: #aeaeae;
  width: 24.5%;
  display: inline-block;
}

#main .content.profile .profilemodule .bar {
  display: inline-block;
  height: 9px;
  width: 75%;
  background-color: #e5e5e5;
}

#main .content.profile .profilemodule .bar .percent {
  display: inline-block;
  float: left;
  height: 9px;
  width: 0%;
}

#main .content.profile .profileexpertise {
  margin-bottom: 10px;
  margin-top: 16px;
  display: block;
  width: 100%;
  float: left;
}

#main .content.profile .profileexpertise span {
  color: #b4b4b4;
  font-size: 12px;
  font-family: Arial, Helvetica, sans-serif;
  margin-right: 14px;
}

#main .content.profile .profileexpertise label {
  margin: 0px;
  color: #919191;
  font-weight: bold;
  height: 13px;
  line-height: 13px;
}

#main .content.profile .profileexpertise label span {
  margin-right: 6px;
}

#main .content.profile .profileexpertise div.moduleNames {
  display: block;
  width: 100%;
  float: left;
  margin-top: 4px;
  padding-left: 19px;
}

#main .content.profile .profileexpertise div.moduleNames div.moduleitem {
  display: inline-block;
  float: left;
}

#main .content.profile .profileexpertise div.moduleNames div.moduleitem div.categoryblock {
  line-height: 13px;
  margin-right: 6px;
  margin-top: 4px;
}

#main .content.profile .profileexpertise div.moduleNames div.moduleitem div.categoryblock span.category {
  line-height: 13px;
}

#main .content.profile .profileintrests {
  margin-top: 40px;
  display: block;
  margin-bottom: 40px;
}

#main .content.profile .profileintrests label {
  display: inline-block;
  margin-right: 30px;
  color: #b4b4b4;
  width: 200px;
}

#main .content.profile .profileintrests label span.holderWrap {
  margin-top: 5px;
}

#main .content.profile .profileintrests label.filterbox.list {
  clear: none;
}

#main .content.profile .profileintrests .hidecheckbox {
  display: none;
}

#main .content.profile .inbox a.title {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  color: #5e5e5e;
  cursor: pointer;
  line-height: 18px;
}

#main .content.profile .inbox a.title.inactive {
  color: #b7b7b7;
}

#main .content.profile .inbox a.title:hover {
  color: #F57323;
}

#main .content.profile .inbox a.title.ui-accordion-header-active {
  color: #000;
  margin-top: 10px;
}

#main .content.profile .inbox div.message {
  color: #515151;
  padding-left: 44px;
  line-height: 21px;
}

#main .content.profile .inbox div.message p {
  color: #515151;
}

#main .content.profile .inbox div.message ul {
  color: #515151;
}

#main .content.profile .inbox div.message ul li {
  color: #515151;
}

#main .content.profile .inbox div.rowspan {
  display: block;
  width: 100%;
  height: 20px;
}

#main div.vision {
  font-size: 12px;
  color: #686868;
  padding: 26px 24px;
  width: 100%;
  background-color: #f6f6f6;
  margin-top: 26px;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

#main div.vision span.pvisiearrow {
  display: inline-block;
  float: left;
  position: absolute;
  top: -12px;
  height: 12px;
  width: 21px;
  background: url(../img/pvisiearrow.png) top left no-repeat;
}

#main .content .accordion {
  margin-bottom: 40px;
}

#main .content .accordion li {
  margin-bottom: 0px;
}

#main .content .accordion a.title {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  color: #5e5e5e;
  cursor: pointer;
  line-height: 30px;
  text-decoration: underline;
}

#main .content .accordion a.title.inactive {
  color: #b7b7b7;
}

#main .content .accordion a.title:hover {
  color: #8cbdeb;
  text-decoration: none;
}

#main .content .accordion a.title.ui-accordion-header-active {
  color: #000;
  text-decoration: none;
}

#main .content .accordion a.title span.rownr {
  display: inline-block;
  width: 20px;
}

#main .content .accordion div.message {
  color: #515151;
  line-height: 21px;
  margin-top: 4px;
}

#main .content .accordion div.message p {
  color: #515151;
}

#main .content .accordion div.message div.vision {
  margin-top: 12px;
}

#main .content .accordion div.message ul {
  margin-left: 20px;
}

#main .content .accordion div.message ul li {
  line-height: 18px;
  color: #515151;
}

#main .content .accordion div.message p + ul {
  margin-top: -10px;
}

#main .content .accordion div.message img {
  cursor: pointer;
}

#main .content .accordion div.message img.left {
  float: left;
  margin-right: 20px;
  margin-top: 4px;
}

#main .content .accordion div.message img.right {
  float: right;
  margin-left: 20px;
  margin-top: 4px;
}

#main .content .accordion div.rowspan {
  display: block;
  width: 100%;
  height: 20px;
}

#main .content.profile div.filter .top {
  margin-bottom: 10px;
}

#main .content.profile div.filter label {
  display: inline-block;
  float: left;
  clear: none !important;
  margin-right: 40px;
}

#main .content.profile div.filter .holderWrap {
  margin-top: 2px;
}

#main .content.profile div.filter input {
  display: inline-block;
  float: left;
  height: 22px;
}

#main .content.profile div.filter form input[type=text] {
  width: 90px;
  float: right;
  margin: 0px;
  height: 18px;
}

#main .content.profile div.filter form input[type=submit] {
  width: 90px;
  float: right;
  font-size: 12px;
  background: #a3a3a3;
  line-height: 24px;
  border: none;
  border-radius: 0px 3px 3px 0px;
}

#main .content.profile div.filter form input[type=submit]:hover {
  background: #F57323;
}

#main .content.profile div.filter form input:focus {
  border-color: #a8a8a8;
}

#main .content.profile div.filter select {
  background: none;
  border: 1px solid #EBEBEB;
}

#main .content.profile.manager div.filter form input[type=text] {
  height: 22px;
  width: 272px;
}

#main .content.profile.manager form.managerssearchform {
  border-top: 2px solid #F8F8F8;
  padding-top: 26px;
  margin-top: 6px;
}

#main .content.profile .manager {
  padding-top: 30px;
  margin-top: 30px;
  border-top: 2px solid #f8f8f8;
}

#main .content.profile .manager h3 {
  margin-bottom: 14px;
}

#main .content.profile .manager .module {
  margin-bottom: 0px;
  margin-left: -16px;
  display: inline-block;
  width: 752px;
  padding-left: 16px;
  height: 36px;
  line-height: 36px;
  color: #a4a4a4;
}

#main .content.profile .manager .module:hover {
  background: #f8f8f8;
}

#main .content.profile .manager span {
  display: inline-block;
  float: left;
  width: 190px;
}

#main .content.profile .manager .module:hover span {
  text-decoration: underline;
  color: #000;
}

#main .content.profile .manager span.score {
  display: inline-block;
  float: left;
  width: 70px;
  padding-left: 24px;
}

#main .content.profile .manager .module:hover span.score {
  text-decoration: none;
  color: #a4a4a4;
}

#main .content.profile .manager div.bar {
  display: inline-block;
  height: 9px;
  width: 470px;
  background-color: #e5e5e5;
  float: left;
  margin-top: 13px;
}

#main .content.profile .manager h3 {
  border: none;
}

#main .content.profile .manager a.interactionbtn {
  display: inline-block;
  float: right;
  height: 30px;
  color: #fff;
  background: url(../img/arrow-white.png) 180px 12px no-repeat #A3A3A3;
  border-radius: 5px;
  margin-top: 28px;
  line-height: 30px;
  padding-left: 20px;
  padding-right: 50px;
  text-decoration: none;
}

#main .content.profile .manager a.interactionbtn.download {
  background: url(../img/interaction-arrow-download.png) right -3px no-repeat #A3A3A3;
}

#main .content.profile .manager a.interactionbtn.download:hover {
  background-color: #F57323;
}

#main .content.profile .manager h2 {
  color: #000;
  margin-top: 50px;
  border-bottom: 2px solid #F8F8F8;
  padding-bottom: 10px;
}

#main .content.profile .manager h2:first-child {
  margin-top: 0px;
}

#main .content.profile span.icon-info {
  background: url(../img/icon-info.png) 0px -8px no-repeat #fff;
  cursor: pointer;
  display: inline-block;
  height: 16px;
  width: 12px;
  margin-left: 8px;
  vertical-align: text-bottom;
}

#main .content.profile a.interactionbtn {
  font-size: 12px;
}

#main .content.profile a.backto {
  float: left;
  display: block;
  background: url(../img/btn-back-arrows.png) no-repeat 20px -2px #f8f8f8;
  border-radius: 3px;
  color: #7f7f7f;
  text-decoration: none;
  line-height: 32px;
  padding-left: 40px;
  padding-right: 20px;
  margin-top: 50px;
}

#main .content.profile a.backto:hover {
  color: #fff;
  background: url(../img/btn-back-arrows.png) no-repeat 20px -38px #A3A3A3;
}

a#registerLink span {
  color: #fff !important;
}

/* zoekresultaten */
#main .content .searchResults {
  padding: 0px 0 0 0;
}

#main .content .searchResults #searchVal {
  line-height: 1;
}

#main .content .searchResults .searchResult {
  margin: 0 0 20px 0;
  display: block;
}

#main .content .searchResults .searchResult .text {
  width: 100%;
  padding-left: 0;
  display: inline-block;
  float: left;
}

#main .content .searchResults .searchResult .text h3 {
  color: #000;
  font-size: 12px;
  font-family: "OpenSansSemibold";
  margin: 0px;
  padding: 0px;
  margin-top: 0px;
  margin-bottom: 6px;
}

#main .content .searchResults .searchResult .text p {
  color: #b0b0b0;
  text-decoration: none;
  margin-bottom: 0;
}

#main .content .searchResults .searchResult .text .introtext {
  height: auto;
  overflow: hidden;
}

#main .content .searchResults .searchResult .text span.readmore {
  bottom: 0px;
  color: #000000;
  line-height: 16px;
  height: 16px;
  text-decoration: none;
  padding-right: 15px;
  font-size: 12px;
  background: url(../img/readmore-arrow.png) top right no-repeat;
  display: inline-block;
}

#main .content .searchResults .searchResult:hover {
  cursor: pointer;
}

#main .content .searchResults .searchResult:hover .text h3 {
  color: #181818;
}

#main .content .searchResults .searchResult:hover .text p {
  color: #000;
}

#main .content .searchResults .searchResult:hover .text span.readmore {
  color: #000000;
  text-decoration: none;
  height: 16px;
  display: inline-block;
  line-height: 16px;
  background: url(../img/readmore-arrow.png) bottom right no-repeat;
}

#main .content .searchResults .searchResult:hover .text span.readmore {
  text-decoration: none;
  color: #8e0009;
  background-position: bottom right;
}

/* contact */
#main .content.contact .contactblock {
  display: inline-block;
  float: left;
  width: 166px;
  margin-right: 26px;
  margin-top: 25px;
  color: #b0b0b0;
  font-size: 12px;
  line-height: 20px;
}

#main .content.contact .contactblock span {
  display: inline-block;
  width: 12px;
  color: #b0b0b0;
}

#main .content.contact .contactblock a {
  color: #F57323;
  text-decoration: underline;
}

#main .content.contact .contactblock a:hover {
  color: #F89D65;
  text-decoration: underline;
}

#main .content.contact form {
  margin-top: 50px;
}

#main .content.contact form#profileForm {
  margin-top: 20px;
}

#main .content.contact form label {
  width: 25%;
  display: inline-block;
  float: left;
  color: #121212;
}

#main .content.contact form input[type=text], #main .content.contact form input[type=password] {
  width: 75%;
  display: inline-block;
  float: left;
}

#main .content.contact form textarea {
  width: 75%;
  display: inline-block;
  float: left;
}

#main .content.contact form input[type=submit] {
  margin-top: 36px;
}

#main .content.contact form select {
  top: 0;
  visibility: visible;
  width: 75%;
  display: inline-block;
  float: left;
  border: 1px solid #d9d9d9;
  margin-bottom: 10px;
  color: #686868;
  font-size: 12px;
  height: 30px;
  line-height: 30px;
  padding-left: 14px;
  padding-right: 14px;
}

/* imageslider */
#main .content .imageslider {
  display: inline-block;
  float: left;
  height: 345px;
  width: 345px;
  margin-right: 24px;
  margin-bottom: 15px;
  margin-top: 3px;
}

#main .content .imageslider ul {
  margin: 0;
}

#main .content .imageslider img {
  height: 345px;
  width: 345px;
}

#main .content .imageslider a.arrow {
  display: inline-block;
  height: 36px;
  width: 36px;
  z-index: 999;
  position: absolute;
  bottom: 36px;
}

#main .content .imageslider a.arrow.left {
  float: left;
  background: url(../img/slider/slider-arrows.png) top left no-repeat;
}

#main .content .imageslider a.arrow.right {
  float: right;
  background: url(../img/slider/slider-arrows.png) top right no-repeat;
  margin-left: 309px;
}

#main .content .imageslider a.arrow.left:hover {
  background-position: bottom left;
  cursor: pointer;
}

#main .content .imageslider a.arrow.right:hover {
  background-position: bottom right;
  cursor: pointer;
}

#main .content .images-and-text .images-and-text-text ul {
  margin-left: 371px !important;
}

/* POPUP */
#popup {
  background: none;
}

#popup #popupTop {
  background-color: #262626;
  width: 470px;
  border-radius: 3px;
  padding: 26px;
  padding-bottom: 16px;
}

#popup #popupTop h2 {
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  margin-bottom: 20px;
}

#popup #popupTop p {
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 18px;
}

#popup #popupTop a {
  color: #fff;
}

#popup #popupTop a:hover {
  text-decoration: none;
}

#popup #popupTop input[type=button], #popup #popupTop input[type=submit] {
  background: #fff;
  color: #000;
  cursor: pointer;
  border: none;
  height: 32px;
  line-height: 32px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 14px;
  float: right;
  border-radius: 3px;
  margin-left: 10px;
}

#popup #popupTop input[type=button]:hover, #popup #popupTop input[type=submit]:hover {
  background-color: #F89D65;
  color: #fff;
}

#popup #popupTop input[type=button].back {
  background-color: #A3A3A3;
  color: #fff;
}

#popup #popupTop input[type=button].back:hover {
  background: #F89D65;
  color: #fff;
}

#popup a.closeIcon {
  display: inline-block;
  height: 18px;
  width: 19px;
  background: url(../img/closecross.png) top left no-repeat;
  margin-bottom: 20px;
  float: right;
}

#popup a.closeIcon:hover {
  background-position: bottom left;
  cursor: pointer;
}

#popup .videoPlayer input[type=button].back {
  background: #A3A3A3;
  cursor: pointer;
  margin-left: 12px;
  border: none;
  height: 32px;
  line-height: 32px;
  padding-left: 20px;
  padding-right: 20px;
  color: #fff;
  font-size: 14px;
  border-radius: 3px;
  float: right;
  margin-left: 0px;
  margin-top: 12px;
}

#popup .videoPlayer input[type=button].back:hover {
  background: #262626;
  color: #7f7f7f;
}

#popup .videoPlayer .teaserbutton {
  float: right;
}

#popup .popupArrow {
  margin-top: -10px;
  margin-left: 36px;
}

#popup #popupfields {
  margin-top: 10px;
}

#popup #popupfields h3 {
  font-size: 12px;
}

#popup #popupfields p.error {
  color: #DA121F;
}

#popup #popupfields form label.filterbox span.holderWrap {
  margin-top: 5px;
}

/* FOOTER */
footer {
  width: 100%;
  background-color: #f8f8f8;
  padding-top: 40px;
  color: #b0b0b0;
  font-size: 12px;
  font-size: 12px;
  line-height: 25px;
  padding-bottom: 30px;
  height: 190px; /* Height of the footer */
}

footer .leftcolumn {
  display: inline-block;
  float: left;
}

footer .leftcolumn h4 {
  margin-bottom: 5px;
  color: #686868;
}

footer .leftcolumn .left {
  display: inline-block;
  float: left;
  margin-right: 63px;
}

footer .leftcolumn .right {
  display: inline-block;
  float: left;
}

footer .leftcolumn a {
  color: #ababab;
  text-decoration: none;
}

footer .leftcolumn a:hover {
  color: #F57323;
  text-decoration: none;
}

footer .leftcolumn a.active {
  color: #F57323;
  text-decoration: none;
}

footer .rightcolumn {
  display: inline-block;
  float: right;
}

footer .rightcolumn .socialicons {
  position: relative;
  margin-top: 79px;
}

footer .rightcolumn .socialicons a {
  display: inline-block;
  float: right;
  margin-left: 10px;
  height: 20px;
  width: 20px;
  background: url(../img/footer-social-icons.png) no-repeat;
}

footer .rightcolumn .socialicons a.facebook {
  background-position: 0px 0px;
}

footer .rightcolumn .socialicons a.twitter {
  background-position: -40px 0px;
}

footer .rightcolumn .socialicons a.linkedin {
  background-position: -20px 0px;
}

footer .rightcolumn .socialicons a.facebook:hover {
  background-position: 0px -20px;
}

footer .rightcolumn .socialicons a.twitter:hover {
  background-position: -40px -20px;
}

footer .rightcolumn .socialicons a.linkedin:hover {
  background-position: -20px -20px;
}

footer .rightcolumn div.downloadapp {
  margin-top: 37px;
}

/* FORMS */
form input[type=submit] {
  cursor: pointer !important;
}

form input, form textarea {
  -webkit-appearance: none;
  border-radius: 0;
}

form input[type=submit], form button {
  background: #F57323;
  border: none;
  height: 32px;
  line-height: 32px;
  padding-left: 20px;
  padding-right: 20px;
  color: #fff;
  font-size: 12px;
  float: right;
  border-radius: 3px;
}

form input[type=submit]:hover, form button:hover {
  background-color: #F89D65;
}

form input[type=submit].hover, form button.hover {
  background-color: #F89D65;
}

form input[type=submit].showOnChange.inactive, form button.showOnChange.inactive {
  visibility: hidden;
  opacity: 0; /* background-color:#F8F8F8; color:#7F7F7F;*/
}

form div.formRadioDiv {
  width: 75%;
  float: right;
  display: inline-block;
}

form input[type=checkbox] {
  height: 24px;
  width: 24px;
  overflow: hidden !important;
}

form input[type=text], form input[type=email], form input[type=password] {
  border: 1px solid #d9d9d9;
  display: block;
  margin-bottom: 10px;
  color: #686868;
  font-size: 12px;
  height: 30px;
  line-height: 30px;
  padding-left: 14px;
  padding-right: 14px;
  width: 100%;
  display: inline-block;
}

form input[type=text]:focus, form input[type=email]:focus, form input[type=password]:focus {
  border: 1px solid #056E82;
  outline: none;
}

form input[type=text].error, form input[type=email].error, form input[type=password].error {
  border: 1px solid #F89D65;
  outline: none;
  color: #F89D65;
  width: 96%;
  display: inline-block;
}

div#popupfields form input[type=text].error, div#popupfields form input[type=email].error, div#popupfields form input[type=password].error {
  width: 93%;
}

div#popupfields form a.icon-error {
  margin-top: 9px;
}

.lt-ie8 form input[type=text], .lt-ie8 form input[type=email], .lt-ie8 form input[type=password] {
  width: 428px;
}

.lt-ie8 form input[type=text].error, .lt-ie8 form input[type=email].error, .lt-ie8 form input[type=password].error {
  width: 398px;
}

form textarea {
  border: 1px solid #d9d9d9;
  display: block;
  margin-bottom: 10px;
  color: #686868;
  font-size: 12px;
  height: 220px;
  line-height: 20px;
  padding-left: 14px;
  padding-right: 14px;
  width: 100%;
  resize: none;
  padding-top: 8px;
  padding-bottom: 8px;
}

form textarea:focus {
  border: 1px solid #056E82;
  outline: none;
}

form textarea.error {
  border: 1px solid #F89D65;
  outline: none;
  color: #F89D65;
  width: 96%;
  display: inline-block;
}

.lt-ie8 form textarea {
  width: 452px;
}

form label {
  color: #717171;
  font-size: 12px;
  height: 24px;
  line-height: 24px;
  clear: both;
}

form p {
  float: left;
  display: inline-block;
  clear: both;
}

form a.forgotpass {
  color: #cccccc;
  font-size: 12px;
  text-decoration: none;
  float: right;
  margin-bottom: 26px;
}

form a.checkboxLink {
  font-size: 12px;
  margin: 0 0 0 4px;
  position: relative;
  top: -1px;
}

form a.checkboxLink:hover {
  text-decoration: none;
}

form#loginForm input[type=submit], form#loginForm button {
  margin-top: 4px;
}

form input.placeholder {
  color: #686868;
}

.lt-ie9 form input {
  line-height: 32px; /*vertical-align:text-bottom;*/
}

form a.icon-error {
  height: 12px;
  width: 12px;
  display: inline-block;
  text-align: right;
  cursor: pointer;
  position: relative;
  background: url(../img/icon-error.png) 0px -10px no-repeat;
  float: right;
  margin-top: -31px;
  margin-right: 9px;
  z-index: 99;
}

/*
form#profileForm a.icon-error{position:relative; background:url(../img/icon-error.png) 0px -10px no-repeat; float:right; margin-top:-22px; margin-right:70px;}
form#profileForm .rightcolumn a.icon-error{margin-right:6px;}
*/
form#loginForm a.icon-error {
  position: relative;
  background: url(../img/icon-error.png) 0px -10px no-repeat;
  float: left;
  margin-top: 9px;
  margin-left: -20px;
}

form#formOptions input[type=checkbox] {
  margin-top: 20px;
}

form#formOptions label.filterbox span.holderWrap {
  margin-top: 4px;
}

input:invalid, input:-moz-ui-invalid {
  border: 0;
  outline: 0;
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
}

span.icon-error {
  height: 12px;
  width: 12px;
  display: inline-block;
  position: relative;
  background: url(../img/icon-error.png) 0px -10px no-repeat;
  margin-top: 0px;
  margin-left: 4px;
}

::-webkit-input-placeholder {
  color: #B0B0B0 !important;
}

input:-moz-placeholder {
  color: #B0B0B0 !important;
}

::-webkit-textarea-placeholder {
  color: #B0B0B0 !important;
}

textarea:-moz-placeholder {
  color: #B0B0B0 !important;
}

input.placeholder, textarea.placeholder {
  color: #B0B0B0 !important;
}

/* search form */
.searchbar {
  float: right;
  margin-top: 20px;
}

#searchForm input[type=text] {
  width: 220px;
  height: 30px;
  line-height: 1;
  border: 1px solid #ebebeb;
  border-right: none;
  display: inline-block;
  float: left;
}

#searchForm input[type=submit] {
  width: 30px;
  height: 30px;
  padding: 0;
  display: inline-block;
  float: left;
  border: 1px solid #ebebeb;
  border-left: none;
  background: url(../img/search-form-submit.png) center left no-repeat #fff;
}

#searchForm input[type=submit]:hover {
  background: url(../img/search-form-submit.png) center right no-repeat #fff;
}

#searchVal {
  line-height: 30px !important;
  height: 30px !important;
  border: 0px solid #ebebeb;
}

/* SLIDER */
.lof-slidecontent, .lof-slidecontent a {
  color: #fff;
}

.lof-slidecontent .lof-main-item-desc a {
  color: #595959;
}

.lof-slidecontent:hover .lof-main-item-desc a {
  color: #fff;
}

.lof-slidecontent a.readmore {
  color: #58B1EA;
  font-size: 95%;
}

.lof-slidecontent {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.lof-slidecontent .preload {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 98;
  text-align: center;
}

.lof-slidecontent .preload div {
  height: 100%;
  width: 100%; /*background:transparent url(../img/slider/load-indicator.gif) no-repeat scroll 50% 50%;*/
}

.lof-main-outer {
  position: relative;
  height: 100%;
  width: 100%;
  z-index: 3px;
  overflow: hidden;
}

.lof-main-item-desc {
  z-index: 97;
  position: absolute;
  top: 0;
  left: 0;
  width: 353px;
  height: 256px;
  padding: 30px 80px 30px 30px;
}

.lof-main-item-desc a {
  width: auto;
  height: 15px;
  padding: 10px 44px 10px 15px;
  text-decoration: none;
  margin: 20px 0 0 0;
  color: #595959;
}

.lof-main-item-desc a:hover {
  color: #fff;
}

.lof-main-item-desc p {
  margin: 15px 0 30px 0;
  padding: 8px 0;
  font-size: 11px;
  color: #fff;
  line-height: 20px;
}

.lof-main-item-desc h3 {
  padding: 0;
  margin: 0;
}

.lof-main-item-desc h2 {
  padding: 0;
  margin: 15px 0 0 0px;
  font-size: 48px;
  line-height: 50px !important;
}

.fontface .lof-main-item-desc h2 {
  font-family: Arial, Arial, Helvetica, sans-serif;
}

.lof-main-item-desc h3 a {
  margin: 0;
  background: #C01F25;
  font-size: 75%;
  padding: 2px 3px;
  font-family: "Trebuchet MS", Trebuchet, Arial, Verdana, sans-serif;
  text-transform: uppercase;
  text-decoration: none;
}

.lof-main-item-desc h3 a:hover {
  text-decoration: underline;
}

.lof-main-item-desc h3 i {
  font-size: 70%;
}

ul.lof-main-wapper {
  overflow: hidden;
  background: transparent url(../img/slider/load-indicator.gif) no-repeat scroll 50% 50%;
  padding: 0px;
  margin: 0;
  position: absolute;
  overflow: hidden;
  list-style: none;
}

ul.lof-main-wapper li {
  overflow: hidden;
  padding: 0px;
  margin: 0px !important;
  float: left;
  position: relative;
}

.lof-opacity li {
  position: absolute;
  top: 0;
  left: 0;
  float: inherit;
}

ul.lof-main-wapper li img {
  padding: 0px;
}

.lof-navigator-wapper {
  position: absolute;
  bottom: 6px;
  left: 30px;
  padding: 5px 0px;
}

.lof-navigator-outer {
  position: relative;
  z-index: 97;
  height: 180px;
  width: 310px;
  overflow: hidden;
  color: #FFF;
  float: left;
}

ul.lof-navigator {
  top: 0;
  padding: 0;
  margin: 0;
  position: absolute;
  width: 100%;
}

ul.lof-navigator li {
  list-style: none;
  padding: 0;
  margin-right: 2px;
  overflow: hidden;
  float: left;
  display: block;
  width: 17px;
  height: 6px;
  text-align: center;
  background: url(../img/slider/teaserPaging.png) left top no-repeat;
}

ul.lof-navigator li img {
  border: #666 solid 3px;
}

ul.lof-navigator li.active, ul.lof-navigator li:hover {
  background: url(../img/slider/teaserPaging_vf1.png) left top no-repeat;
}

.lof-navigator-timebar {
  z-index: 98;
  height: 3px;
  width: 690px;
  background: url(../img/slider/teaserTimer.png) right top no-repeat;
  position: absolute;
  bottom: 0;
  left: -345px;
  overflow: hidden;
}

.lof-navigator-timebar.home {
  z-index: 98;
  height: 3px;
  width: 916px;
  background: url(../img/slider/teaserTimer_home.png) right top no-repeat;
  position: absolute;
  bottom: 0;
  left: -458px;
  overflow: hidden;
}

/* pretty checkboxen */
label.prettyCheckbox.checkbox span.holder {
  height: 72px;
  background: url(../img/prettyCheckboxes/checkbox.png) 0 0px no-repeat;
}

/*label.prettyCheckbox.radio span.holder{height:61px;background:url(../img/prettyCheckboxes/radio.gof) 0 0px no-repeat}*/
label.prettyCheckbox.checkbox:hover span.holder, label.prettyCheckbox.radio:hover span.holder {
  top: -24px !important;
}

label.prettyCheckbox.checked span.holder, label.checked span.holder, label.prettyCheckbox.checked:hover span.holder, label.prettyCheckbox.checked:hover span.holder {
  top: -48px !important;
}

label.prettyCheckbox.list {
  float: left;
  clear: left;
  margin: 0 0 5px 0;
}

label.inline {
  float: left;
  margin: 0 10px 0 0;
}

input.hiddenCheckbox {
  position: absolute;
  left: -10000px;
}

label.prettyCheckbox span.holderWrap {
  display: block;
  float: left;
  position: relative;
  margin-right: 5px;
  overflow: hidden;
}

label.prettyCheckbox span.holder {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

label.filterbox.checkbox span.holder {
  height: 39px;
  background: url(../img/prettyCheckboxes/checkboxen.png) 0 0px no-repeat;
}

label.filterbox.checkbox:hover span.holder, label.filterbox.radio:hover span.holder {
  top: -13px !important;
}

label.filterbox.checked span.holder, label.checked span.holder, label.filterbox.checked:hover span.holder, label.filterbox.checked:hover span.holder {
  top: -26px !important;
}

label.filterbox.list {
  float: left;
  clear: left;
  margin: 0 0 5px 0;
}

label.inline {
  float: left;
  margin: 0 10px 0 0;
}

label.filterbox span.holderWrap {
  display: block;
  float: left;
  position: relative;
  margin-right: 5px;
  overflow: hidden;
}

label.filterbox span.holder {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

label.filterbox.basis.checkbox span.holder {
  background-position: -13px 0px;
}

label.filterbox.basis.couldread.checkbox span.holder {
  background-position: -26px 0px;
}

label.filterbox.consumptiefkrediet.checkbox span.holder {
  background-position: -39px 0px;
}

label.filterbox.consumptiefkrediet.couldread.checkbox span.holder {
  background-position: -52px 0px;
}

label.filterbox.hypothecairkrediet.checkbox span.holder {
  background-position: -65px 0px;
}

label.filterbox.hypothecairkrediet.couldread.checkbox span.holder {
  background-position: -78px 0px;
}

label.filterbox.inkomen.checkbox span.holder {
  background-position: -91px 0px;
}

label.filterbox.inkomen.couldread.checkbox span.holder {
  background-position: -104px 0px;
}

label.filterbox.pensioen.checkbox span.holder {
  background-position: -117px 0px;
}

label.filterbox.pensioen.couldread.checkbox span.holder {
  background-position: -130px 0px;
}

label.filterbox.bv-schade-particulier.checkbox span.holder,
label.filterbox.schadeparticulier.checkbox span.holder {
  background-position: -143px 0px;
}

label.filterbox.bv-schade-particulier.couldread.checkbox span.holder,
label.filterbox.schadeparticulier.couldread.checkbox span.holder {
  background-position: -156px 0px;
}

label.filterbox.bv-schade-zakelijk.checkbox span.holder,
label.filterbox.schadezakelijk.checkbox span.holder {
  background-position: -169px 0px;
}

label.filterbox.bv-schade-zakelijk.couldread.checkbox span.holder,
label.filterbox.schadezakelijk.couldread.checkbox span.holder {
  background-position: -182px 0px;
}

label.filterbox.bv-vermogen.checkbox span.holder,
label.filterbox.vermogensadvies.checkbox span.holder {
  background-position: -195px 0px;
}

label.filterbox.bv-vermogen.couldread.checkbox span.holder,
label.filterbox.vermogensadvies.couldread.checkbox span.holder {
  background-position: -208px 0px;
}

label.filterbox.zorgverzekeringen.checkbox span.holder {
  background-position: -221px 0px;
}

label.filterbox.zorgverzekeringen.couldread.checkbox span.holder {
  background-position: -234px 0px;
}

label.filterbox.vermogensplanner.checkbox span.holder {
  background-position: -247px 0px;
}

label.filterbox.vermogensplanner.couldread.checkbox span.holder {
  background-position: -260px 0px;
}

label.filterbox.klantintegriteit.checkbox span.holder {
  background-position: -273px 0px;
}

label.filterbox.klantintegriteit.couldread.checkbox span.holder {
  background-position: -296px 0px;
}

label.filterbox.mifid_ii_insiger_adviseren.checkbox span.holder,
label.filterbox.mifid_ii_ing_adviseren_beleggen.checkbox span.holder {
  background-position: -273px 0px;
}

label.filterbox.mifid_ii_insiger_adviseren.couldread.checkbox span.holder,
label.filterbox.mifid_ii_ing_adviseren_beleggen.couldread.checkbox span.holder {
  background-position: -296px 0px;
}

label.filterbox.mifid_ii_insiger_informeren.checkbox span.holder,
label.filterbox.mifid_ii_ing_informeren_beleggen.checkbox span.holder {
  background-position: -273px 0px;
}

label.filterbox.mifid_ii_insiger_informeren.couldread.checkbox span.holder,
label.filterbox.mifid_ii_ing_informeren_beleggen.couldread.checkbox span.holder {
  background-position: -296px 0px;
}

label.exambox.radio span.holder {
  height: 30px;
  background: url(../img/prettyCheckboxes/examboxradio.png) 0 0px no-repeat;
}

label.exambox.radio:hover span.holder {
  top: 0px !important;
}

label.exambox.checked span.holder, label.checked span.holder, label.exambox.checked:hover span.holder, label.exambox.checked:hover span.holder {
  top: -14px !important;
}

label.exambox.list {
  float: left;
  clear: left;
  margin: 0 0 5px 0;
}

label.exambox span.holderWrap {
  display: block;
  float: left;
  position: relative;
  margin-right: 7px;
  overflow: hidden;
  margin-top: 4px;
}

label.exambox span.holder {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

label.exambox {
  height: auto;
}

div.radiobox {
  margin-bottom: 10px;
}
div.radiobox label {
  display: inline-block;
  cursor: pointer;
  position: relative;
  height: auto;
  padding-left: 25px;
  margin-bottom: 0px;
  line-height: 16px;
}
div.radiobox input[type=radio] {
  display: none;
}
div.radiobox label:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 10px;
  position: absolute;
  left: 0;
  top: 0px;
  background-color: #fff;
  border: 1px solid #b3b4b4;
  border-radius: 0px;
  border-radius: 50%;
}
div.radiobox input[type=radio]:checked + label {
  color: #F57323;
}
div.radiobox input[type=radio]:checked + label:after {
  content: " ";
  display: inline-block;
  height: 6px;
  width: 6px;
  background: #F57323;
  position: absolute;
  left: 5px;
  top: 5px;
  border-radius: 50%;
}

.lt-ie9 div.radiobox label {
  padding-left: 5px;
}
.lt-ie9 div.radiobox input[type=radio] {
  display: inline-block;
  vertical-align: text-bottom;
}
.lt-ie9 div.radiobox label:before {
  content: "";
  display: none;
}
.lt-ie9 div.radiobox input[type=radio]:checked + label:after {
  content: "";
  display: none;
}

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

.fancybox-close {
  display: none !important;
}

/**
 * Default DropKick theme
 *
 * Feel free to edit the default theme
 * or even add your own.
 *
 * See the readme for themeing help
 *
 */
/***** Begin Theme, feel free to edit in here! ******/
/* One container to bind them... */
.content.profile .filter .top *, .content.profile .filter .top *:before, .content.profile .filter .top *:after {
  box-sizing: content-box;
}

.dk_container {
  background: #fff;
  line-height: 14px;
  margin: 0 23px 18px 0;
}

.dk_container:focus {
  outline: 0;
}

.dk_container a {
  cursor: pointer;
  text-decoration: none;
}

/* Opens the dropdown and holds the menu label */
.dk_toggle {
  /**
   * Help: Arrow image not appearing
   * Try updating this property to your correct dk_arrows.png path
   */
  background: url("../img/logindropdownicon.png") 95% 1px no-repeat;
  border: 1px solid #EBEBEB;
  color: #686868;
  padding: 3px 35px 3px 15px;
  transition: border-color 0.5s;
}

.help .dk_toggle {
  border: 1px solid #D9D9D9 !important;
  margin-top: 1px;
}

.dk_toggle:hover {
  border-color: #A8A8A8;
}

.help .dk_toggle:hover {
  border-color: #056E82 !important;
}

/* Applied when the dropdown is focused */
.dk_focus .dk_toggle {
  border-color: #A8A8A8;
}

.help .dk_focus .dk_toggle {
  border-color: #056E82 !important;
}

.help .dk_options {
  left: 0 !important;
  width: 310px !important;
}

/* Applied whenever the dropdown is open */
.dk_open {
  /**
   * Help: Dropdown menu is covered by something
   * Try setting this value higher
   */
  z-index: 10;
}

/* The outer container of the options */
.dk_options ul {
  list-style: none !important;
}

.dk_options li {
  margin-left: 0 !important;
}

.dk_options a {
  color: 686868;
  background-color: #fff;
  padding: 8px 15px;
}

.dk_options li:last-child a {
  border-bottom: none;
}

.dk_options a:hover {
  color: #F57323;
}

.dk_option_current a {
  color: #000000;
}

/* Inner container for options, this is what makes the scrollbar possible. */
.dk_options_inner {
  border: 1px solid #A8A8A8;
  border-top: none;
  color: #686868;
  max-height: 250px;
}

.help .dk_options_inner {
  border: 1px solid #056E82 !important;
}

/* Set a max-height on the options inner */
.dk_options_inner,
.dk_touch .dk_options {
  max-height: 250px;
}

/******  End Theme ******/
/***** Critical to the continued enjoyment of working dropdowns ******/
.checkboxes {
  display: inline-block;
  float: right;
  padding-top: 2px;
}

.dk_container {
  display: inline-block;
  float: left;
  position: relative;
  width: 362px;
  margin: 0 !important;
  margin-bottom: 0px !important;
}

#dk_container_selectCompanyDepartment {
  margin-left: 12px !important;
}

#dk_container_selectQualification {
  float: left;
}

label.lessThan20 {
  margin-right: 0px !important;
}

.dk_container:nth-child(even) {
  margin: 0px !important;
}

.dk_container a {
  outline: 0;
}

.dk_toggle {
  display: -moz-inline-stack;
  display: inline-block;
  *display: inline;
  position: relative;
  zoom: 1;
  width: 310px !important;
}

.dk_open {
  position: relative;
}

.dk_open .dk_options {
  display: block;
}

.dk_open .dk_label {
  color: inherit;
}

.dk_options {
  display: none;
  margin-top: -1px;
  position: absolute;
  right: 0;
  width: 362px !important;
}

.dk_options a,
.dk_options a:link,
.dk_options a:visited {
  display: block;
}

.dk_options_inner {
  overflow: auto;
  position: relative;
}

.dk_touch .dk_options {
  overflow: hidden;
}

.dk_touch .dk_options_inner {
  max-height: none;
  overflow: visible;
}

.dk_fouc select {
  position: relative;
  top: -99999em;
  visibility: hidden;
}

/***** End Critical to the continued enjoyment of working dropdowns ******/
/* TipTip CSS - Version 1.2 */
#tiptip_holder {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99999;
}

#tiptip_holder.tip_top {
  padding-bottom: 5px;
}

#tiptip_holder.tip_bottom {
  padding-top: 5px;
}

#tiptip_holder.tip_right {
  padding-left: 5px;
}

#tiptip_holder.tip_left {
  padding-right: 5px;
}

#tiptip_content {
  font-size: 12px;
  color: #fff;
  padding: 11px;
  padding-bottom: 7px;
  background-color: rgb(38, 38, 38);
  background-color: rgba(38, 38, 38, 0.98);
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px; /*min-width:272px;*/
}

#tiptip_arrow, #tiptip_arrow_inner {
  position: absolute;
  border-color: transparent;
  border-style: solid;
  border-width: 6px;
  height: 0;
  width: 0;
}

#tiptip_holder.tip_top #tiptip_arrow_inner {
  margin-top: -7px;
  margin-left: -5px;
  border-top-color: rgb(38, 38, 38);
  border-top-color: rgba(38, 38, 38, 0.98);
}

#tiptip_holder.tip_bottom #tiptip_arrow_inner {
  margin-top: -5px;
  margin-left: -5px;
  border-bottom-color: rgb(38, 38, 38);
  border-bottom-color: rgba(38, 38, 38, 0.98);
}

#tiptip_holder.tip_right #tiptip_arrow_inner {
  margin-top: -6px;
  margin-left: -6px;
  border-right-color: rgb(38, 38, 38);
  border-right-color: rgba(38, 38, 38, 0.98);
}

#tiptip_holder.tip_left #tiptip_arrow_inner {
  margin-top: -6px;
  margin-left: -7px;
  border-left-color: rgb(38, 38, 38);
  border-left-color: rgba(38, 38, 38, 0.98);
}

/* Webkit Hacks  */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  #tiptip_content {
    padding: 11px;
    padding-bottom: 7px;
  }
}
/*error tooltip */
#tiptip_content.error {
  background-color: #F89D65 !important;
  min-width: 2px !important;
  border-color: #b3000c !important;
}

#tiptip_holder.tip_top #tiptip_arrow_inner.error {
  border-top-color: #F89D65 !important;
}

#tiptip_holder.tip_bottom #tiptip_arrow_inner.error {
  border-bottom-color: #F89D65 !important;
}

#tiptip_holder.tip_right #tiptip_arrow_inner.error {
  border-right-color: #F89D65 !important;
}

#tiptip_holder.tip_left #tiptip_arrow_inner.error {
  border-left-color: #F89D65 !important;
}

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

.jspPane {
  position: absolute;
}

.jspVerticalBar {
  position: absolute;
  top: 0;
  right: 0;
  width: 13px;
  height: 100%;
  background: red;
}

.jspHorizontalBar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 12px;
  background: red;
}

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

.jspCap {
  display: none;
}

.jspHorizontalBar .jspCap {
  float: left;
}

.jspTrack {
  background: #fff;
  position: relative;
}

.jspDrag {
  background: #d1d1d1;
  position: relative;
  top: 0;
  left: 0;
  cursor: pointer;
}

.jspDrag:hover {
  background-color: #b0b0b0;
}

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

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

.jspArrow.jspDisabled {
  cursor: default;
  background: #80808d;
}

.jspVerticalBar .jspArrow {
  height: 12px;
}

.jspHorizontalBar .jspArrow {
  width: 12px;
  float: left;
  height: 100%;
}

.jspVerticalBar .jspArrow:focus {
  outline: none;
}

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

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

/**
 *
 * Main container
 *
 */
#addToHomeScreen {
  z-index: 9999;
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  touch-callout: none;
  width: 240px;
  font-size: 15px;
  padding: 12px 14px;
  text-align: left;
  font-family: helvetica;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, color-stop(0, #fff), color-stop(0.02, #eee), color-stop(0.98, #ccc), color-stop(1, #a3a3a3));
  border: 1px solid #505050;
  -webkit-border-radius: 8px;
  -webkit-background-clip: padding-box;
  color: #333;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.75);
  line-height: 130%;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
}

#addToHomeScreen.addToHomeIOS7 {
  background: #f2f2f2 !important;
  -webkit-border-radius: 1px !important;
  border: 1px solid #ccc;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}

#addToHomeScreen.addToHomeIpad {
  width: 268px;
  font-size: 18px;
  padding: 14px;
}

/**
 *
 * The 'wide' class is added when the popup contains the touch icon
 *
 */
#addToHomeScreen.addToHomeWide {
  width: 296px;
}

#addToHomeScreen.addToHomeIpad.addToHomeWide {
  width: 320px;
  font-size: 18px;
  padding: 14px;
}

/**
 *
 * The balloon arrow
 *
 */
#addToHomeScreen .addToHomeArrow {
  position: absolute;
  background-image: -webkit-gradient(linear, 0 0, 100% 100%, color-stop(0, rgba(204, 204, 204, 0)), color-stop(0.4, rgba(204, 204, 204, 0)), color-stop(0.4, #ccc));
  border-width: 0 1px 1px 0;
  border-style: solid;
  border-color: #505050;
  width: 16px;
  height: 16px;
  -webkit-transform: rotateZ(45deg);
  bottom: -9px;
  left: 50%;
  margin-left: -8px;
  -webkit-box-shadow: inset -1px -1px 0 #a9a9a9;
  -webkit-border-bottom-right-radius: 2px;
}

#addToHomeScreen.addToHomeIOS7 .addToHomeArrow {
  background-image: -webkit-gradient(linear, 0 0, 100% 100%, color-stop(0, rgba(204, 204, 204, 0)), color-stop(0.4, rgba(204, 204, 204, 0)), color-stop(0.4, #f2f2f2)) !important;
  -webkit-box-shadow: inset -1px -1px 0 #fff !important;
  border-color: #ccc !important;
}

/**
 *
 * The balloon arrow for iPad
 *
 */
#addToHomeScreen.addToHomeIpad .addToHomeArrow {
  -webkit-transform: rotateZ(-135deg);
  background-image: -webkit-gradient(linear, 0 0, 100% 100%, color-stop(0, rgba(238, 238, 238, 0)), color-stop(0.4, rgba(238, 238, 238, 0)), color-stop(0.4, #eee));
  -webkit-box-shadow: inset -1px -1px 0 #fff;
  top: -9px;
  bottom: auto;
  left: 50%;
}

/**
 *
 * Close button
 *
 */
#addToHomeScreen .addToHomeClose {
  -webkit-box-sizing: border-box;
  position: absolute;
  right: 4px;
  top: 4px;
  width: 18px;
  height: 18px;
  line-height: 14px;
  text-align: center;
  text-indent: 1px;
  -webkit-border-radius: 9px;
  background: rgba(0, 0, 0, 0.12);
  color: #888;
  -webkit-box-shadow: 0 1px 0 #fff;
  font-size: 16px;
}

#addToHomeScreen.addToHomeIOS7 .addToHomeClose {
  line-height: 12px;
  padding-right: 1px;
  background: transparent;
  border: 1px solid #888;
  -webkit-box-shadow: none;
}

/**
 *
 * The '+' icon, displayed only on iOS < 4.2
 *
 */
#addToHomeScreen .addToHomePlus {
  font-weight: bold;
  font-size: 1.3em;
}

/**
 *
 * The 'share' icon, displayed only on iOS >= 4.2
 *
 */
#addToHomeScreen .addToHomeShare {
  display: inline-block;
  width: 18px;
  height: 15px;
  background-repeat: no-repeat;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAeCAQAAADu6HTYAAADPElEQVR4Xq3TX2gcRRzA8e/M7mVv2+TSNpc/TZtrY6jUGqgaSAmEChKLrYK0YH0RFC2CSCkEfCghiKU04J8qNigq6os+iQV98MHWFwVBrQQRWs21lBw5cw3NNb1/udu72RGG5Y77IzXW77D7sAwf5scyYoL6BGXSDKFZwaGpLvIUaeoCkvX1MmsM0Ny6oRSQYOLuIS+YZOpfQdqslpUxcZrzTVAz4qPwW2O3CeIwC/RSzeY6Ow1QhUrkr+YOWfEKDkEP8Rij7CHKJmrFSDHBdwGEE5wiGChPN+PnT8VdRtEIl1d4gRj/1EVe5ZSBKGh8iqQpo/Fo5+3C/gz0MYg4zgwbqday1/Q4B8BGQ45d/Hi54lakCrU5obOcidJpu1+Lg9whjabyaOYLnrIBFFaRD+xe2ybMDWY66GmP/WA9cGfGp0CWhy0wkMN8inepFiH2rV1j0NQSNQbFLRQnS8/8YSDBBpadfv4CYDub2fmeHDNAsL1MBWUel0iA+Xik6eHcyvD3vAMSU1TGuA/YRS+dD7ovCQN43GKRFCU20Kd3V/avDVVyAZ5niTEuLA5/zBGWg9EEEhfJKN200Tat8CmRAQb9+wv7soPlHt2tQorsz1uPbr0HTY4sJwrH47zJZwABBAKLMBoQXepwgTwdHCo+fXMkQ4lrxEmQ5AaXipPqDY9V2vn09tgvTPI71EEGYxM+/uMJLJ4svpgaWGKOi/xKgmqLSUGSUd5f2vIVJ/CgBaTIUsZ7ZBsn0+NzfMOXLFCXQyTcybN6ep5ZZgUOHn7jpfUpsZshdugPGf+E5zjbyHTSRyQ8xfRPPM/s63RHeuknSoT22mjmmnAOIMkUZ6D1xSfPPAfd1WFKM3sO2CMaHx8M1NjnXKHaAGGkOW0C02WeYHUz4qMtx+w5gUDS8NckYe5lHsMYwCZEPyEEmjLDZFmAS7CDviMdxyTkMNVBKEmYLvbiQQBIBBbCQG04bGQvFWz6CfsCQLWCigILFwcfkGYBiOpbYuOizTAyYyDdCtrGaRG1LCkIgMYEFhI0WqQZoSlbGRyHKe4qOx7iv2bVQW9dp4dlM/x6kmwnWQcd/Q3FCqwTEiT5s+6D5v/pb0SSHyg7uhMWAAAAAElFTkSuQmCC);
  background-size: 18px 15px;
  text-indent: -9999em;
  overflow: hidden;
}

#addToHomeScreen.addToHomeIOS7 .addToHomeShare {
  width: 11px;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACoAAAA8CAYAAAAQTCjdAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAASCQAAEgkB80sG3AAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAKjSURBVGiB7dpPiFVVHMDxz7m9NCtMyI2bEJEC25WrEkzHUXCRraIwdNE8ZxfYIlcis1ZEbGEzT1QCF4XgH1CyWhUoJKIWNRGEiCNKmkSiYTzfcfGuOokx77x3ZlS8382959zfn+/invvn3RdijHIRBrwkOINCYXEcdjpb7VyiYdBsLScwt5y6IloYdzqXo36Ro0gY9IKWo+5JwmzBt2HQnBw9ehYNazyn5TBee8Dh+Vq+CWu92GufnkTDR6ab7gDeBNHouMM/l9tXTXM0fGBmL726Fg1Dam74EsvKqR8VNowL2Yzj5f7rnnE4DHq2235diYYhhTGfC94up35T0y+6di/ITU0rKVd+sEi0P7xr2pSJOu8zvF+OzqEv7vDH/WFxt7/cshy/ticsN8sXYUht0kXDOlsF9XJ4UaEvNoz9X3zc5bKaZThbyr5jzJ4wlNY7KTgM+ES0vhz+KeiPw36fKC/ucAF9uFBOrTZm26SJCtaV27+xIo7cXdkTEhvOoh+XyxprU1qnim7CQdGK2HAyKRexYVShT3RItDElN+mkjiP2Ym+S3f01hv2EVal5WW6hU0ElmptaqJuBpXg6MbeFH2LDpU6CQ93zWIKnEvs0cayGU3glMfkOo1jQYewZzOuyz7FC95Jwo5OgUFfgeg993hh/eTqCTxOSm/iuk8DY0Ap1b2GhtHXxsfZN4j/X0fOx4auEIknEhqv4OiUn1L13Z/+xWfWVaG4q0dxUormpRHNTieamEs1NJZqbJ1Q0jHvdiJo5S2cVjSNOCHZhn3/SnuYnIvl3yomIIz7MXZMn9hydRCrR3FSiualEc1OJ5qYSzU0lmptKNDePjWgwcPePT7/g+4cp8wCW4GXaryK3tL+mLdD5x62ppllgu7bso8q/2HIbzGWdNmWnSJwAAAAASUVORK5CYII=);
  background-size: 11px 15px;
}

/**
 *
 * The touch icon (if available)
 *
 */
#addToHomeScreen .addToHomeTouchIcon {
  display: block;
  float: left;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5), inset 0 0 2px rgba(255, 255, 255, 0.9);
  background-repeat: no-repeat;
  width: 57px;
  height: 57px;
  background-size: 57px 57px;
  margin: 0 12px 0 0;
  border: 1px solid #333;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}

/* Styles for desktop and large screen ----------- */
/*styles for 800px and up!*/
@media only screen and (min-width: 800px) {
  /* Styles */
}
/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  /* Styles */
}
/* Smartphones (landscape) ----------- */
@media only screen and (min-width: 321px) {
  /* Styles */
}
/* Smartphones (portrait) ----------- */
@media only screen and (max-width: 320px) {
  /* Styles */
}
/* iPads (portrait and landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  /* Styles */
  .content p {
    line-height: 19px;
  }
  .content ul {
    margin-left: 3px;
  }
}
/* iPads (landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  /* Styles */
}
/* iPads (portrait) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  /* Styles */
}
/* Desktops and laptops ----------- */
@media only screen and (min-width: 1224px) {
  /* Styles */
}
/* Large screens ----------- */
@media only screen and (min-width: 1824px) {
  /* Styles */
}
/* iPhone 4, Opera Mobile 11 and other high pixel ratio devices ----------- */
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (-o-min-device-pixel-ratio: 3/2), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  /* Styles */
  header a.logo {
    background: url(../img/logo_dela@2x.png) top left no-repeat;
    background-size: 190px 85px;
  }
}
/* ==|== non-semantic helper classes ========================================
   Please define your styles before this section.
   ========================================================================== */
/* For image replacement */
.ir {
  background-color: transparent;
  border: 0;
  overflow: hidden;
  /* IE 6/7 fallback */
  *text-indent: -9999px;
}

.ir:before {
  content: "";
  display: block;
  width: 0;
  height: 100%;
}

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

/* Contain floats: h5bp.com/q */
.clearfix:before, .clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  *zoom: 1;
}

/* ==|== print styles =======================================================
   Print styles.
   Inlined to avoid required HTTP connection: h5bp.com/r
   ========================================================================== */
/* ==========================================================================
   Print styles.
   Inlined to avoid required HTTP connection: h5bp.com/r
   ========================================================================== */
@media print {
  * {
    background: transparent !important;
    color: #000 !important; /* Black prints faster: h5bp.com/s */
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  /*
   * Don't show links for images, or javascript/internal links
   */
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group; /* h5bp.com/t */
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  #profilebar, #mainmenu, header, footer, .teaser, .backto, .comments, .divider, .rightcolumn, #submenu {
    display: none !important;
  }
  .content.news .leftcolumn, .content {
    width: 100% !important;
  }
}
.avg_arrow {
  position: absolute;
  cursor: pointer;
  width: 0;
  top: 15px;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 9px solid #dddddd;
  margin-left: -5px;
}

.avg_text {
  position: absolute;
  top: 10px;
  left: 0;
  font-size: 10px;
  font-style: italic;
  color: #a3a3a3;
}
.avg_text .icon-info {
  top: 2px;
  position: relative;
  float: none !important;
}

.module {
  position: relative;
}
.module .bar {
  position: relative;
}
.module .avg_text {
  top: 14px;
  left: 184px;
}
.module .avg_arrow {
  top: 13px;
}

#profilebar .avg_text .icon-info {
  background: url(../img/icon-info.png) 0px -8px no-repeat #fff !important;
}

.profilemodule {
  position: relative;
}
.profilemodule .bar {
  position: relative;
}
.profilemodule .avg_text {
  top: 14px;
  left: 184px;
}
.profilemodule .avg_arrow {
  top: 14px;
}

.knowledge_box {
  position: relative;
  width: 225px;
  color: #686868;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  float: left;
  margin-left: 20px;
  border-top: 1px solid #939291;
  background-position: center 33px;
  background-repeat: no-repeat;
}
.knowledge_box img {
  margin-top: 7px;
  margin-bottom: 22px;
  width: 225px;
  height: 210px;
}
.knowledge_box a {
  text-decoration: none;
}
.knowledge_box h2 {
  font-weight: bold;
  padding: 15px 0 0 26px;
  font-family: "OpenSansLight";
  color: #939291;
  font-size: 14px;
}
.knowledge_box.first {
  margin-left: 0;
}
.knowledge_box a {
  color: #686868;
}
.knowledge_box ul {
  width: 100%;
  float: left;
  margin: 0;
  list-style: none !important;
  padding: 0;
}
.knowledge_box ul li {
  margin: 0 !important;
}
.knowledge_box ul li a {
  padding: 4px 12px;
  width: 100%;
  float: left;
}
.knowledge_box ul li a:after {
  content: "";
  float: right;
  width: 0;
  height: 0;
  margin-top: 5px;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 4px solid #686868;
}
.knowledge_box ul li:hover a {
  color: #686868 !important;
}
.knowledge_box ul li:hover a:after {
  border-left: 4px solid #686868;
}
.knowledge_box ul li:nth-child(odd) a {
  background: #f9f9f9;
}

.inkomen {
  border-color: #239a63;
}
.inkomen h2 {
  color: #239a63;
}

.pensioen {
  border-color: #6b50a1;
}
.pensioen h2 {
  color: #6b50a1;
}

.schade-particulier {
  border-color: #f5863c;
}
.schade-particulier h2 {
  color: #f5863c;
}

.consumptief-krediet {
  border-color: #82cadf;
}
.consumptief-krediet h2 {
  color: #82cadf;
}

.vermogensadvies {
  border-color: #c6529f;
}
.vermogensadvies h2 {
  color: #c6529f;
}

.hypothecair-krediet {
  border-color: #43c2c7;
}
.hypothecair-krediet h2 {
  color: #43c2c7;
}

.schade-zakelijk {
  border-color: #3e63ae;
}
.schade-zakelijk h2 {
  color: #3e63ae;
}

.zorgverzekeringen {
  border-color: #fbbe1d;
}
.zorgverzekeringen h2 {
  color: #fbbe1d;
}

.vaardigheden-gedrag {
  border-color: #ee4141;
}
.vaardigheden-gedrag h2 {
  color: #ee4141;
}

.batch_menu {
  line-height: 18px;
  padding-left: 0;
  margin-left: 0;
  border-bottom: 1px solid #b5c3cc;
  padding-bottom: 10px;
}

.batch_menu_bronze,
.batch_menu_silver,
.batch_menu_gold {
  float: left;
  width: 18px;
  height: 18px;
  text-align: center;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  margin-left: 3px;
  line-height: 18px;
  position: relative;
  top: 4px;
  background-size: cover;
}

.batch_menu_bronze {
  background-image: url("/-sitedesign/img/performance/bronze.png");
  margin-right: 10px;
}

.batch_menu_silver {
  background-image: url("/-sitedesign/img/performance/silver.png");
}

.batch_menu_gold {
  margin-left: -1px;
  background-image: url("/-sitedesign/img/performance/gold.png");
}

.batch_box {
  position: relative;
  width: 173px;
  height: 246px;
  float: left;
  margin: 0 14px 14px 0;
  border: 1px solid #ccc;
  background-position: center 33px;
  background-repeat: no-repeat;
}
.batch_box:nth-child(4n+4) {
  margin: 0 0 14px 0;
}
.batch_box .batch_box_top {
  top: 77px;
  left: 0;
  text-align: center;
  width: 100%;
  font-size: 26px;
  font-weight: 600;
  position: absolute;
}
.batch_box .batch_box_bottom {
  top: 182px;
  font-size: 12px;
  left: 29px;
  text-align: center;
  width: 113px;
  position: absolute;
}

.disable {
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  filter: grayscale(1);
  opacity: 0.8;
  border: 1px solid #000 !important;
  color: #000 !important;
}

.batch_profile {
  color: #43b4e3;
  border-color: #43b4e3;
  background-image: url("/-sitedesign/img/performance/batch_profile.png");
}

.batch_heart {
  color: #67be62;
  border-color: #67be62;
  background-image: url("/-sitedesign/img/performance/batch_heart.png");
}

.batch_review {
  color: #7553a2;
  border-color: #7553a2;
  background-image: url("/-sitedesign/img/performance/batch_review.png");
}

.batch_vlag .batch_box_top {
  top: 80px;
  left: 8px;
}

.batch_review .batch_box_top {
  top: 80px;
  left: -4px;
}

.batch_vlag {
  color: #273e99;
  border-color: #273e99;
  background-image: url("/-sitedesign/img/performance/batch_vlag.png");
}

.batch_bronze {
  color: #cd791d;
  border-color: #cd791d;
  background-image: url("/-sitedesign/img/performance/batch_bronze.png");
}

.batch_bronze .batch_box_top, .batch_silver .batch_box_top, .batch_gold .batch_box_top {
  top: 105px;
  left: -1px;
}

.batch_silver {
  color: #676767;
  border-color: #676767;
  background-image: url("/-sitedesign/img/performance/batch_silver.png");
}

.batch_gold {
  color: #fbd517;
  border-color: #fbd517;
  background-image: url("/-sitedesign/img/performance/batch_gold.png");
}

.stars {
  width: 84px;
  float: left;
  position: relative;
  top: 7px;
}

.stars span {
  width: 15px;
  height: 13px;
  background: url("/-sitedesign/img/performance/star.png");
  float: left;
}

.stars .bling {
  background: url("/-sitedesign/img/performance/star_active.png");
}

.clear {
  clear: both;
  width: 100%;
}

.breadcrumb {
  margin-bottom: 12px;
}
.breadcrumb a {
  color: #686868;
}

a.knowledge_box {
  width: 100%;
  padding: 0 12px 0 0;
  margin: 0 0 12px 0;
  min-height: 0px;
}

a.knowledge_box:hover {
  background: #f9f9f9;
}

a.knowledge_box h2 {
  float: left;
}
a.knowledge_box span.text {
  clear: both;
  float: left;
  padding: 0 12px;
  width: 100%;
}

.batch_box_horizontal {
  position: relative;
  width: 100%;
  height: 40px;
  float: left;
  margin: 0px 0 0 0;
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 25px;
}
.batch_box_horizontal.batch_vlag {
  color: #273e99;
  background-image: url("/-sitedesign/img/performance/batch_vlag.png");
}
.batch_box_horizontal:nth-child(4n+4) {
  margin: 0 0 14px 0;
}
.batch_box_horizontal .batch_box_right {
  top: 11px;
  font-size: 12px;
  left: 39px;
  text-align: left;
  width: 343px;
  position: absolute;
}

.knowledge_box .interactionbtn {
  background: url(../img/interaction-arrow.png) right -2px no-repeat #F57323;
  display: inline-block;
  height: 32px;
  padding-left: 20px;
  padding-right: 45px;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif, "OpenSansLight";
  font-size: 12px;
  line-height: 32px;
  float: right;
  margin-top: 12px;
  margin-bottom: 14px;
  float: right;
  cursor: pointer;
  text-decoration: none;
  border-radius: 3px;
}

#modules .video {
  margin-bottom: 50px;
}
#modules .column-25 {
  float: left;
  width: 25%;
  display: flex;
}
#modules .box {
  width: 100%;
  padding-bottom: 50px;
}
#modules .box.has-maxwidth {
  max-width: 225px;
}
#modules .box.has-border {
  border-top: 1px solid #939291;
}
#modules .box a:not(.interactionbtn) {
  color: #5a5a5a;
}
#modules .box h2 {
  color: #939291;
  padding: 15px 0 15px 20px;
  margin-bottom: 0;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 100%;
  font-family: "OpenSansLight";
  font-size: 18px;
  font-weight: normal;
}
#modules .box .image {
  height: 125px;
  width: 100%;
  overflow: hidden;
  background-color: #f8f8f8;
  position: relative;
  background: none;
  background-size: cover;
  background-position: center;
  display: block;
  margin-bottom: 15px;
}
#modules .box .image .title {
  position: absolute;
  width: 100%;
  height: auto;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.8);
  padding: 5px 20px;
  text-decoration: underline;
  font-size: 14px;
  line-height: 19px;
}
#modules .box .image .title span {
  position: relative;
  display: inline-block;
  padding-left: 16px;
  text-decoration: underline;
}
#modules .box .image .title span:before {
  position: absolute;
  left: 0;
  top: 5px;
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid #5a5a5a;
}
#modules .box .image:hover .title {
  color: #0e0e0e;
}
#modules .box .image:hover .title span {
  text-decoration: none;
}
#modules .box .link {
  color: #5a5a5a;
  margin-bottom: 10px;
  font-size: 14px;
  padding-left: 16px;
  line-height: 19px;
  position: relative;
  margin-left: 20px;
}
#modules .box .link:hover a {
  text-decoration: none;
  color: #0e0e0e;
}
#modules .box .link:last-child {
  margin-bottom: 0;
}
#modules .box .link:before {
  position: absolute;
  left: 0;
  top: 5px;
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid #5a5a5a;
}/*# sourceMappingURL=style-DELA.css.map */