@charset "UTF-8";
/* CSS Document */

/*loader css */
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}
#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #ffffff;

    -webkit-animation: spin 6s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
    animation: spin 6s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */

    z-index: 1001;
}

    #loader:before {
        content: "";
        position: absolute;
        top: 5px;
        left: 5px;
        right: 5px;
        bottom: 5px;
        border-radius: 50%;
        border: 3px solid transparent;
        border-top-color: #b9131f;

        -webkit-animation: spin 5s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
        animation: spin 5s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
    }

    #loader:after {
        content: "";
        position: absolute;
        top: 15px;
        left: 15px;
        right: 15px;
        bottom: 15px;
        border-radius: 50%;
        border: 3px solid transparent;
        border-top-color: #ffffff;

        -webkit-animation: spin 2.5s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
          animation: spin 2.5s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
    }

    @-webkit-keyframes spin {
        0%   { 
            -webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: rotate(0deg);  /* IE 9 */
            transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
        }
        100% {
            -webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: rotate(360deg);  /* IE 9 */
            transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
        }
    }
    @keyframes spin {
        0%   { 
            -webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: rotate(0deg);  /* IE 9 */
            transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
        }
        100% {
            -webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: rotate(360deg);  /* IE 9 */
            transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
        }
    }

    #loader-wrapper .loader-section {
        position: fixed;
        top: 0;
        width: 51%;
        height: 100%;
        background: #222222;
        z-index: 1000;
        -webkit-transform: translateX(0);  /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: translateX(0);  /* IE 9 */
        transform: translateX(0);  /* Firefox 16+, IE 10+, Opera */
    }

   #loader-wrapper .loader-section.section-left {
        left: 0;
    }

    #loader-wrapper .loader-section.section-right {
        right: 0;
    }

    /* Loaded */
    .loaded #loader-wrapper .loader-section.section-left {
        -webkit-transform: translateX(-100%);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: translateX(-100%);  /* IE 9 */
                transform: translateX(-100%);  /* Firefox 16+, IE 10+, Opera */

        -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);  
                transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    }

    .loaded #loader-wrapper .loader-section.section-right {
        -webkit-transform: translateX(100%);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: translateX(100%);  /* IE 9 */
                transform: translateX(100%);  /* Firefox 16+, IE 10+, Opera */

-webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);  
        transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    }
    
    .loaded #loader {
        opacity: 0;
        -webkit-transition: all 0.3s ease-out;  
                transition: all 0.3s ease-out;
    }
    .loaded #loader-wrapper {
        visibility: hidden;

        -webkit-transform: translateY(-100%);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: translateY(-100%);  /* IE 9 */
                transform: translateY(-100%);  /* Firefox 16+, IE 10+, Opera */

        -webkit-transition: all 0.3s 1s ease-out;  
                transition: all 0.3s 1s ease-out;
    }
    
    /* JavaScript Turned Off */
    .no-js #loader-wrapper {
        display: none;
    }
    

    #content {
        margin: 0 auto;
        padding-bottom: 50px;
        width: 80%;
        max-width: 978px;
    }  


/*main css */

*{
    margin:0;
    padding:0;
}

html {
  height: 100%;
  z-index: 5;
}

body{
    height: 100%;
    letter-spacing:0px;
    position:absolute;
    overflow: hidden;
}

h2 { 
	font-family: consolas;
	font-size: 140%;
	word-spacing:-4px;
	color:#C00;
}

p {
	font-family: verdana;
	font-size: 90%;
	word-spacing:1px;
}

dekeuze {
	font-family: consolas;
	font-size: 140%;
	word-spacing:-4px;
	color:#C00;
}

subtitle {
	font-family: consolas;
	font-size: 100%;
	word-spacing:-4px;
	color:#000;
}

#mobile {
	display: none;
}

/*Tooltips*/

/*download*/
a.tooltipdownload span{
z-index: 10;
display: none;
border-radius:4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
}
a.tooltipdownload:hover span{
display: inline;
position: absolute;
border: 1px solid #8c8c8c;
background: #f4f4f4;
}
a.tooltipdownload > span{
width: 140%;
overflow:hidden;
max-height: auto;
padding: 10px 12px;
opacity: 0;
visibility: hidden;
z-index: 10;
position: absolute;

font-style: normal;
-webkit-border-radius: 8px;
-moz-border-radius: 8px; -o-border-radius: 8px;
border-radius: 8px;

}
a.tooltipdownload:hover > span{
opacity: 1;
text-decoration:none;
visibility: visible;
overflow: hidden;
margin-top: 45%;
display: inline;
margin-left: 0%;
}

a.tooltipdownload > span{
color: #000000;
background: #f4f4f4;
background: -moz-linear-gradient(top, #FBF5E6 0%, #FFFFFF 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#FBF5E6), color-stop(100%,#FFFFFF));
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FBF5E6', endColorstr='#FFFFFF',GradientType=0 );
border: 1px solid #8c8c8c;
}

/*contact*/
a.tooltipcontact span{
z-index: 10;
display: none;
border-radius:4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
}
a.tooltipcontact:hover span{
display: inline;
position: absolute;
border: 1px solid #8c8c8c;
background: #f4f4f4;
}
a.tooltipcontact > span{
width: 170%;
overflow:scroll;
max-height: auto;
padding: 10px 12px;
opacity: 0;
visibility: hidden;
z-index: 10;
position: absolute;
font-size: 100%;
font-style: normal;
-webkit-border-radius: 8px;
-moz-border-radius: 8px; -o-border-radius: 8px;
border-radius: 8px;

}
a.tooltipcontact:hover > span{
opacity: 1;
text-decoration:none;
visibility: visible;
overflow: hidden;
margin-top: 60%;
display: inline;
margin-left: -30%;
}

a.tooltipcontact > span{
color: #000000;
background: #f4f4f4;
background: -moz-linear-gradient(top, #FBF5E6 0%, #FFFFFF 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#FBF5E6), color-stop(100%,#FFFFFF));
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FBF5E6', endColorstr='#FFFFFF',GradientType=0 );
border: 1px solid #8c8c8c;
}

/*overdekeuze*/
a.tooltipoverdekeuze span{
z-index: 10;
display: none;
border-radius:4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
}
a.tooltipoverdekeuze:hover span{
display: inline;
position: absolute;
border: 1px solid #8c8c8c;
background: #f4f4f4;
}
a.tooltipoverdekeuze > span{
width: 200%;
overflow:scroll;
max-height: auto;
padding: 10px 12px;
opacity: 0;
visibility: hidden;
z-index: 10;
position: absolute;
font-style: normal;
-webkit-border-radius: 8px;
-moz-border-radius: 8px; -o-border-radius: 8px;
border-radius: 8px;

}
a.tooltipoverdekeuze:hover > span{
opacity: 1;
text-decoration:none;
visibility: visible;
overflow: hidden;
margin-top: 28%;
display: inline;
margin-left: 103%;
}

a.tooltipoverdekeuze > span{
color: #000000;
background: #f4f4f4;
background: -moz-linear-gradient(top, #FBF5E6 0%, #FFFFFF 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#FBF5E6), color-stop(100%,#FFFFFF));
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FBF5E6', endColorstr='#FFFFFF',GradientType=0 );
border: 1px solid #8c8c8c;
}

/*home*/
a.tooltiphome span{
z-index: 10;
display: none;
border-radius:4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
}
a.tooltiphome:hover span{
display: inline;
position: absolute;
border: 1px solid #8c8c8c;
background: #f4f4f4;
}
a.tooltiphome > span{
width: 220%;
overflow:scroll;
max-height: auto;
padding: 10px 12px;
opacity: 0;
visibility: hidden;
z-index: 10;
position: absolute;
-webkit-border-radius: 8px;
-moz-border-radius: 8px; -o-border-radius: 8px;
border-radius: 8px;

}
a.tooltiphome:hover > span{
opacity: 1;
text-decoration:none;
visibility: visible;
overflow: hidden;
margin-top: 49%;
display: inline;
margin-left: 1%;
}

a.tooltiphome > span{
color: #000000;
background: #f4f4f4;
background: -moz-linear-gradient(top, #FBF5E6 0%, #FFFFFF 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#FBF5E6), color-stop(100%,#FFFFFF));
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FBF5E6', endColorstr='#FFFFFF',GradientType=0 );
border: 1px solid #8c8c8c;
}

a.tooltiphometrainingen span{
z-index: 10;
display: none;
border-radius:4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
}
a.tooltiphometrainingen:hover span{
display: inline;
position: absolute;
border: 1px solid #8c8c8c;
background: #f4f4f4;
}
a.tooltiphometrainingen > span{
width: 230%;
overflow:hidden;
height: auto;
padding: 10px 12px;
opacity: 0;
visibility: hidden;
z-index: 10;
position: absolute;
-webkit-border-radius: 8px;
-moz-border-radius: 8px; -o-border-radius: 8px;
border-radius: 8px;

}
a.tooltiphometrainingen:hover > span{
opacity: 1;
text-decoration:none;
visibility: visible;
overflow: hidden;
margin-top: -84%;
display: inline;
margin-left: -235%;
}

a.tooltiphometrainingen > span{
color: #000000;
background: #f4f4f4;
background: -moz-linear-gradient(top, #FBF5E6 0%, #FFFFFF 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#FBF5E6), color-stop(100%,#FFFFFF));
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FBF5E6', endColorstr='#FFFFFF',GradientType=0 );
border: 1px solid #8c8c8c;
}

a.tooltiphomeloopbaanadvies span{
z-index: 10;
display: none;
border-radius:4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
}
a.tooltiphomeloopbaanadvies:hover span{
display: inline;
position: absolute;
border: 1px solid #8c8c8c;
background: #f4f4f4;
}
a.tooltiphomeloopbaanadvies > span{
width: 190%;
overflow:hidden;
height: auto;
padding: 10px 12px;
opacity: 0;
visibility: hidden;
z-index: 10;
position: absolute;
-webkit-border-radius: 8px;
-moz-border-radius: 8px; -o-border-radius: 8px;
border-radius: 8px;

}
a.tooltiphomeloopbaanadvies:hover > span{
opacity: 1;
text-decoration:none;
visibility: visible;
overflow: hidden;
margin-top: 24%;
display: inline;
margin-left: -165%;
}

a.tooltiphomeloopbaanadvies > span{
color: #000000;
background: #f4f4f4;
background: -moz-linear-gradient(top, #FBF5E6 0%, #FFFFFF 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#FBF5E6), color-stop(100%,#FFFFFF));
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FBF5E6', endColorstr='#FFFFFF',GradientType=0 );
border: 1px solid #8c8c8c;
}


/*Loopbaancoaching*/
a.tooltiploopbaancoaching span{
z-index: 10;
display: none;
border-radius:4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
}
a.tooltiploopbaancoaching:hover span{
display: inline;
position: absolute;
border: 1px solid #8c8c8c;
background: #f4f4f4;
}
a.tooltiploopbaancoaching > span{
width: 200%;
overflow:hidden;
height: auto;
padding: 10px 12px;
opacity: 0;
visibility: hidden;
z-index: 10;
position: absolute;
-webkit-border-radius: 8px;
-moz-border-radius: 8px; -o-border-radius: 8px;
border-radius: 8px;

}
a.tooltiploopbaancoaching:hover > span{
opacity: 1;
text-decoration:none;
visibility: visible;
overflow: hidden;
margin-top: -8%;
display: inline;
margin-left: 128%;
}

a.tooltiploopbaancoaching > span{
color: #000000;
background: #f4f4f4;
background: -moz-linear-gradient(top, #FBF5E6 0%, #FFFFFF 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#FBF5E6), color-stop(100%,#FFFFFF));
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FBF5E6', endColorstr='#FFFFFF',GradientType=0 );
border: 1px solid #8c8c8c;
}

/*E-coaching*/
a.tooltipe-coaching span{
z-index: 10;
display: none;
border-radius:4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
}
a.tooltipe-coaching:hover span{
display: inline;
position: absolute;
border: 1px solid #8c8c8c;
background: #f4f4f4;
}
a.tooltipe-coaching > span{
width: 210%;
overflow:hidden;
height: auto;
padding: 10px 12px;
opacity: 0;
visibility: hidden;
z-index: 10;
position: absolute;
-webkit-border-radius: 8px;
-moz-border-radius: 8px; -o-border-radius: 8px;
border-radius: 8px;

}
a.tooltipe-coaching:hover > span{
opacity: 1;
text-decoration:none;
visibility: visible;
overflow: hidden;
margin-top: -84%;
display: inline;
margin-left: -128%;
}

a.tooltipe-coaching > span{
color: #000000;
background: #f4f4f4;
background: -moz-linear-gradient(top, #FBF5E6 0%, #FFFFFF 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#FBF5E6), color-stop(100%,#FFFFFF));
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FBF5E6', endColorstr='#FFFFFF',GradientType=0 );
border: 1px solid #8c8c8c;
}

/*mobiliteit*/
a.tooltipmobiliteit span{
z-index: 10;
display: none;
border-radius:4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
}
a.tooltipmobiliteit:hover span{
display: inline;
position: absolute;
border: 1px solid #8c8c8c;
background: #f4f4f4;
}
a.tooltipmobiliteit > span{
width: 160%;
overflow:hidden;
height: auto;
padding: 10px 12px;
opacity: 0;
visibility: hidden;
z-index: 10;
position: absolute;
-webkit-border-radius: 8px;
-moz-border-radius: 8px; -o-border-radius: 8px;
border-radius: 8px;

}
a.tooltipmobiliteit:hover > span{
opacity: 1;
text-decoration:none;
visibility: visible;
overflow: hidden;
margin-top: -85%;
display: inline;
margin-left: 73%;
}

a.tooltipmobiliteit > span{
color: #000000;
background: #f4f4f4;
background: -moz-linear-gradient(top, #FBF5E6 0%, #FFFFFF 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#FBF5E6), color-stop(100%,#FFFFFF));
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FBF5E6', endColorstr='#FFFFFF',GradientType=0 );
border: 1px solid #8c8c8c;
}

/*outplacement*/
a.tooltipoutplacement span{
z-index: 10;
display: none;
border-radius:4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
}
a.tooltipoutplacement:hover span{
display: inline;
position: absolute;
border: 1px solid #8c8c8c;
background: #f4f4f4;
}
a.tooltipoutplacement > span{
width: 165%;
overflow:hidden;
height: auto;
padding: 10px 12px;
opacity: 0;
visibility: hidden;
z-index: 10;
position: absolute;
-webkit-border-radius: 8px;
-moz-border-radius: 8px; -o-border-radius: 8px;
border-radius: 8px;

}
a.tooltipoutplacement:hover > span{
opacity: 1;
text-decoration:none;
visibility: visible;
overflow: hidden;
margin-top: -54%;
display: inline;
margin-left: -152%;
}

a.tooltipoutplacement > span{
color: #000000;
background: #f4f4f4;
background: -moz-linear-gradient(top, #FBF5E6 0%, #FFFFFF 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#FBF5E6), color-stop(100%,#FFFFFF));
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FBF5E6', endColorstr='#FFFFFF',GradientType=0 );
border: 1px solid #8c8c8c;
}

/*re-integratie*/
a.tooltipre-integratie span{
z-index: 10;
display: none;
border-radius:4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
}
a.tooltipre-integratie:hover span{
display: inline;
position: absolute;
border: 1px solid #8c8c8c;
background: #f4f4f4;
}
a.tooltipre-integratie > span{
width: 170%;
overflow:scroll;
height: auto;
padding: 10px 12px;
opacity: 0;
visibility: hidden;
z-index: 10;
position: absolute;
-webkit-border-radius: 8px;
-moz-border-radius: 8px; -o-border-radius: 8px;
border-radius: 8px;

}
a.tooltipre-integratie:hover > span{
opacity: 1;
text-decoration:none;
visibility: visible;
overflow: hidden;
margin-top: -74%;
display: inline;
margin-left: 73%;
}

a.tooltipre-integratie > span{
color: #000000;
background: #f4f4f4;
background: -moz-linear-gradient(top, #FBF5E6 0%, #FFFFFF 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#FBF5E6), color-stop(100%,#FFFFFF));
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FBF5E6', endColorstr='#FFFFFF',GradientType=0 );
border: 1px solid #8c8c8c;
}

/*trainingen*/
a.tooltiptrainingen span{
z-index: 10;
display: none;
border-radius:4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
}
a.tooltiptrainingen:hover span{
display: inline;
position: absolute;
border: 1px solid #8c8c8c;
background: #f4f4f4;
}
a.tooltiptrainingen > span{
width: 170%;
overflow:scroll;
height: auto;
padding: 10px 12px;
opacity: 0;
visibility: hidden;
z-index: 10;
position: absolute;
-webkit-border-radius: 8px;
-moz-border-radius: 8px; -o-border-radius: 8px;
border-radius: 8px;

}
a.tooltiptrainingen:hover > span{
opacity: 1;
text-decoration:none;
visibility: visible;
overflow: hidden;
margin-top: 46%;
display: inline;
margin-left: 52%;
}

a.tooltiptrainingen > span{
color: #000000;
background: #f4f4f4;
background: -moz-linear-gradient(top, #FBF5E6 0%, #FFFFFF 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#FBF5E6), color-stop(100%,#FFFFFF));
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FBF5E6', endColorstr='#FFFFFF',GradientType=0 );
border: 1px solid #8c8c8c;
}

/*bedrijfstrainingen*/
a.tooltipbedrijfstrainingen span{
z-index: 10;
display: none;
border-radius:4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
}
a.tooltipbedrijfstrainingen:hover span{
display: inline;
position: absolute;
border: 1px solid #8c8c8c;
background: #f4f4f4;
}
a.tooltipbedrijfstrainingen > span{
width: 165%;
overflow:hidden;
height: auto;
padding: 10px 12px;
opacity: 0;
visibility: hidden;
z-index: 10;
position: absolute;
-webkit-border-radius: 8px;
-moz-border-radius: 8px; -o-border-radius: 8px;
border-radius: 8px;

}
a.tooltipbedrijfstrainingen:hover > span{
opacity: 1;
text-decoration:none;
visibility: visible;
overflow: hidden;
margin-top: -65%;
display: inline;
margin-left: -147%;
}

a.tooltipbedrijfstrainingen > span{
color: #000000;
background: #f4f4f4;
background: -moz-linear-gradient(top, #FBF5E6 0%, #FFFFFF 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#FBF5E6), color-stop(100%,#FFFFFF));
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FBF5E6', endColorstr='#FFFFFF',GradientType=0 );
border: 1px solid #8c8c8c;
}

/*re-integratietrainingen*/
a.tooltipre-integratietrainingen span{
z-index: 10;
display: none;
border-radius:4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
}
a.tooltipre-integratietrainingen:hover span{
display: inline;
position: absolute;
border: 1px solid #8c8c8c;
background: #f4f4f4;
}
a.tooltipre-integratietrainingen > span{
width: 185%;
overflow:hidden;
height: auto;
padding: 10px 12px;
opacity: 0;
visibility: hidden;
z-index: 10;
position: absolute;
-webkit-border-radius: 8px;
-moz-border-radius: 8px; -o-border-radius: 8px;
border-radius: 8px;

}
a.tooltipre-integratietrainingen:hover > span{
opacity: 1;
text-decoration:none;
visibility: visible;
overflow: hidden;
margin-top: -60%;
display: inline;
margin-left: -165%;
}

a.tooltipre-integratietrainingen > span{
color: #000000;
background: #f4f4f4;
background: -moz-linear-gradient(top, #FBF5E6 0%, #FFFFFF 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#FBF5E6), color-stop(100%,#FFFFFF));
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FBF5E6', endColorstr='#FFFFFF',GradientType=0 );
border: 1px solid #8c8c8c;
}


@media screen and (max-width: 780px) {
			
   a.tooltipdownload {
	   display: none;
   }
   
   a.tooltipcontact {
	   display: none;
   }
   
   a.tooltipoverdekeuze {
	   display:none;
   }
   
   a.tooltiphome {
	   display:none;
   }
   
   a.tooltiphometrainingen:hover > span {
	   display:none;
   }
   
   a.tooltiphomeloopbaanadvies:hover > span {
	   display:none;
   }
   
   a.tooltiploopbaancoaching {
	   display:none;
   }
   
   a.tooltipe-coaching:hover > span {
	   display:none;
   }
   
   a.tooltipmobiliteit {
	   display:none;
   }
   
   a.tooltipoutplacement {
	   display:none;
   }
   
   a.tooltipre-integratie {
	   display:none;
   }
   
   a.tooltiptrainingen {
	   display:none;
   }
   
   a.tooltipbedrijfstrainingen {
	   display:none;
   }
   
   a.tooltipre-integratietrainingen {
	   display:none;
   }
}