﻿* {
	box-sizing						: border-box;
	margin							: 0;
}

html {
	overflow-x						: hidden;
}

body {
	margin							: 0;
	max-width						: 100%;
	overflow-x						: hidden;
}

a {
	text-decoration					: none;
}

img {
	image-orientation				: from-image;
}




/*============== SITE ====================================================*/

.site {
	display							: -webkit-box;		/* OLD - iOS 6-, Safari 3.1-6 */
	display							: -moz-box;			/* OLD - Firefox 19- (buggy but mostly works) */
	display							: -ms-flexbox;		/* TWEENER - IE 10 */
	display							: -webkit-flex;		/* NEW - Chrome */
	display							: flex;				/* NEW, Spec - Opera 12.1, Firefox 20+ */
	
	-webkit-flex-direction			: column;
	flex-direction					: column;
	
	position						: relative;
	bottom							: 100%;
	left							: 0;
	top								: 0;
	
	height							: 100%;
	min-height						: 100%;
	min-height						: 100vh;
	min-width						: 100%;

	z-index							: 1;
}

.site-uitklap {
	box-shadow						: 0 0 5px 5px rgba(0,0,0,0.75);
	transition						: left 0.25s ease-in;
}

.body-uitklap {
	overflow						: hidden;
	position						: fixed;
	width							: 100%;
}

.site-header {
	display							: -webkit-box;		/* OLD - iOS 6-, Safari 3.1-6 */
	display							: -moz-box;		/* OLD - Firefox 19- (buggy but mostly works) */
	display							: -ms-flexbox;		/* IE 10 */
	display							: -webkit-flex;		/* NEW - Chrome */
	display							: flex;			/* NEW, Spec - Opera 12.1, Firefox 20+ */

	-webkit-flex-direction			: column;
	flex-direction					: column;

	-webkit-flex-wrap				: wrap;
	flex-wrap						: wrap;

	-webkit-justify-content			: center;
	justify-content					: center;
}

.site-submenu {
	-webkit-box-flex				: 1;	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex					: 1;	/* OLD - Firefox 19- */
	-ms-flex						: 1;	/* IE 10 */
	-webkit-flex					: 1;	/* NEW - Chrome */
	flex							: 1;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.site-submenu-items {
	-webkit-border-radius			: 15px;
	-moz-border-radius				: 15px;
	border-radius					: 15px;
	
	box-sizing						: border-box;
	min-width						: 250px;
	margin-right					: 40px;
	margin-top						: 60px;
	overflow						: hidden;
	padding							: 20px;
}

.site-submenu h2 {
	margin-bottom					: 20px;
}

.site-submenu ul {
	list-style						: none;
	margin							: 0;
	padding							: 10px 20px;
	text-align						: center;
}

.site-submenu li {
	display							: inline-block;
	font-weight						: normal;
	width							: 100%;
}

.site-submenu li hr {
	border							: 0;
	margin							: 5px 0 5px 25%;
	
	height							: 1px;
	width							: 50%;
	
	text-align						: center;
}

.site-submenu li:last-of-type hr {
	display							: none;
}

.site-submenu li a {
	display							: block;
	text-decoration					: none;
}

.site-submenu li a:hover {
	
}

.site-submenu li a.actief {
	cursor							: default;
}




/* ============== 404 ============================================== */

.error404 {
	min-height					: 300px;
	background-image			: url("../img/error-404.png");
	background-color			: rgb(29,144,201);
	background-repeat			: no-repeat;
    background-position			: left center;
    background-size				: cover;
    
    font-size					: 50px;
    font-weight					: 300;
    text-align					: center;
	color						: rgb(255,255,255);
	
	margin						: 40px;
	padding						: 50px;
}



/*============== HOMEPAGE ================================================*/

.homepage-regel-container {
	width:100%;
}

.homepage-blok-container {
	display							: -webkit-box;		/* OLD - iOS 6-, Safari 3.1-6 */
	display							: -moz-box;			/* OLD - Firefox 19- (buggy but mostly works) */
	display							: -ms-flexbox;		/* TWEENER - IE 10 */
	display							: -webkit-flex;		/* NEW - Chrome */
	display							: flex;				/* NEW, Spec - Opera 12.1, Firefox 20+ */
	
	-webkit-box-flex				: 1 0 0;	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex					: 1 0 0;	/* OLD - Firefox 19- */
	-ms-flex						: 1 0 0;	/* IE 10 */
	-webkit-flex					: 1 0 0;	/* NEW - Chrome */
	flex							: 1 0 0;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
	
	-webkit-flex-direction			: row;
	flex-direction					: row;
	
	-webkit-flex-wrap				: wrap;
	flex-wrap						: wrap;

	list-style						: none;
    margin							: 0;
    padding							: 0;
}

.homepage-blok-container .homepage-blok {
	-webkit-justify-content			: space-between;
	justify-content					: space-between;
}

.homepage-blok {
	display							: -webkit-box;		/* OLD - iOS 6-, Safari 3.1-6 */
	display							: -moz-box;			/* OLD - Firefox 19- (buggy but mostly works) */
	display							: -ms-flexbox;		/* TWEENER - IE 10 */
	display							: -webkit-flex;		/* NEW - Chrome */
	display							: flex;				/* NEW, Spec - Opera 12.1, Firefox 20+ */
	
	-webkit-flex-direction			: column;
	flex-direction					: column;
}


.homepage-blok-button-container {
	width							: 100%;
}


/*============== CONTENT =================================================*/

.site-content {
	box-sizing						: border-box;
	margin							: auto;
	width							: 100%;
	
	-webkit-box-flex				: 1 0 auto;		/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex					: 1 0 auto;		/* OLD - Firefox 19- */
	-ms-flex						: 1 0 auto;		/* IE 10 */
	-webkit-flex					: 1 0 auto;		/* NEW - Chrome */
	flex							: 1 0 auto;		/* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.content-met-submenu {
	display							: -webkit-box;		/* OLD - iOS 6-, Safari 3.1-6 */
	display							: -moz-box;			/* OLD - Firefox 19- (buggy but mostly works) */
	display							: -ms-flexbox;		/* TWEENER - IE 10 */
	display							: -webkit-flex;		/* NEW - Chrome */
	display							: flex;				/* NEW, Spec - Opera 12.1, Firefox 20+ */
	
	-webkit-flex-direction			: row;
	flex-direction					: row;

	-webkit-flex-wrap				: nowrap;
	flex-wrap						: nowrap;
}

.main-content {
	-webkit-box-flex				: 4;	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex					: 4;	/* OLD - Firefox 19- */
	-ms-flex						: 4;	/* IE 10 */
	-webkit-flex					: 4;	/* NEW - Chrome */
	flex							: 4;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.volledigbreed,
.main-content section.volledigbreed {
	max-width						: 100%;
	width							: 100%;
}

.volledigbreed section {
	margin							: auto;
	width							: 100%;
}

.maxcontentbreedte,
.main-content section,
.site-content.content-met-submenu {
	max-width						: 960px;
	width							: 100%;
    margin							: auto;
}

.submenu-infoblok {
	
}
.site-content section .submenu-infoblok ul,
.site-content section .submenu-infoblok ol {
    padding							: 10px;
    margin							: 10px 0px;
    text-align						: left;
	display							: inline-block;
}

.submenu-infoblok h2 {
	text-transform					: none;
	font-size						: 1.6em;
}

.submenu-infoblok h3 {
	font-size						: 4em;
}

.menu-infoblokken
{
	display					: flex;
	flex-flow				: row wrap;
	align-items				: stretch;
}

.menu-infoblok
{
	position				: relative;
	flex					: 1 0 350px;
	min-width				: 350px;
	height					: auto;
	text-align				: center;
	padding					: 10px 10px 80px 10px;
	margin-bottom			: 20px;
}

.menu-infoblok
{
	cursor					: pointer;
}

div .menu-infoblok-icon
{
    display					: inline-block;
    width					: 170px;
    height					: 170px;
    border					: 2px solid rgb(0,0,0);
    -webkit-border-radius	: 50%;
    border-radius			: 50%;
    margin-bottom			: 20px;
}
    
div .menu-infoblok-icon:before
{
    font-size				: 8em;
    line-height				: 1.25;
}

.menu-infoblok h2
{
	font-size				: 2.2rem;
	line-height				: 1.2;
}

.menu-infoblok .button
{
	position				: absolute;
	left					: 20%;
	right					: 20%;
	bottom					: 0;
    border					: 2px solid rgb(30,78,121);
	color					: rgb(0,0,0);
    background-color		: rgb(255,255,255);
}

.menu-infoblok:hover .button
{
	color					: rgb(255,255,255);
    background-color		: rgb(30,78,121);
}

.menu-infoblok:hover .menu-infoblok-icon
{
    color					: rgb(255,255,255);
    background-color		: rgb(30,78,121);
    border-color			: rgb(30,78,121);
}





/*============== COLLAPSABLES =============================================*/
.collapsable
{
	width							: 100%;
	float							: none;
}

.collapsable-header
{
	cursor							: pointer;
}

.collapsable-header > span
{
	margin-right					: 10px;
}

.collapsable .inputregel_label
{
    width							: 100%;
}




/*============== FOOTER ==================================================*/

.site-footer {
	height							: auto;
	margin-top						: 20px;
}

.site-footer section {
	margin							: auto;
	width							: 100%;
}

.footer-copyright div {
    margin							: 0px 10px;
}




/*============== MOBILE NAV ==============================================*/

.mobile-nav {
	display							: none;
	
	height							: 100%;
	width							: 100%;

	position						: fixed;
	bottom							: 0;

	left							: 50px;
	right							: 0;
	top								: 0;
	
	list-style						: none;
	overflow-y						: scroll;
	z-index							: 0;
}

.mobile-nav h2 {
	font-weight						: normal;
	margin							: 10px;
}

.mobile-nav ul {
	list-style						: none;
	margin							: 20px 0 0 0;
	padding							: 0px;
}

.mobile-nav li {
	font-weight						: normal;
}

.mobile-nav li:first-child {
	
}

.mobile-nav li a {
	display							: block;
	padding							: 10px;
}

.mobile-nav li a:hover {
 
}

.mobile-nav li a.actief {
	cursor							: default;
}

.mobile-nav ul li ul{
	margin							: 0 0 0 0px;
}

.mobile-nav ul li ul li a {
	padding-left					: 20px;
}




/*============== HEADER BOVENBALK ========================================*/

.bovenbalk {
	box-sizing						: border-box;
	margin							: auto;
	padding							: 0;
	
	width							: 100%;
	
	display							: -webkit-box;		/* OLD - iOS 6-, Safari 3.1-6 */
	display							: -moz-box;		/* OLD - Firefox 19- (buggy but mostly works) */
	display							: -ms-flexbox;		/* TWEENER - IE 10 */
	display							: -webkit-flex;		/* NEW - Chrome */
	display							: flex;			/* NEW, Spec - Opera 12.1, Firefox 20+ */
	
	-webkit-flex-direction			: row;
	flex-direction					: row;

	-webkit-flex-wrap				: nowrap;
	flex-wrap						: nowrap;

	-webkit-justify-content			: flex-end;
	justify-content					: flex-end;
	
	-webkit-align-items				: center;
	align-items						: center;
}


.bovenbalk span {
	font-weight						: normal;
	margin							: 0;
	padding							: 0;
}

.bovenbalk span:before {
	font-weight						: normal;
	margin-right					: 5px;
	padding							: 0;
}

.bovenbalk a {
	
}

.bovenbalk a:hover {
	
}




/*============== HEADER VISUAL ===========================================*/

.header-visual {
	position						: relative;
	
	display							: -webkit-box;		/* OLD - iOS 6-, Safari 3.1-6 */
	display							: -moz-box;		/* OLD - Firefox 19- (buggy but mostly works) */
	display							: -ms-flexbox;		/* TWEENER - IE 10 */
	display							: -webkit-flex;		/* NEW - Chrome */
	display							: flex;			/* NEW, Spec - Opera 12.1, Firefox 20+ */
	
	-webkit-flex-direction			: row;
	flex-direction					: row;

	-webkit-flex-wrap				: nowrap;
	flex-wrap						: nowrap;
}

.header-visual-home {
	position						: relative;
	
	display							: -webkit-box;		/* OLD - iOS 6-, Safari 3.1-6 */
	display							: -moz-box;		/* OLD - Firefox 19- (buggy but mostly works) */
	display							: -ms-flexbox;		/* TWEENER - IE 10 */
	display							: -webkit-flex;		/* NEW - Chrome */
	display							: flex;			/* NEW, Spec - Opera 12.1, Firefox 20+ */
	
	-webkit-flex-direction			: row;
	flex-direction					: row;

	-webkit-flex-wrap				: nowrap;
	flex-wrap						: nowrap;
}

.visual {
	-webkit-box-flex				: 2;	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex					: 2;	/* OLD - Firefox 19- */
	-ms-flex						: 2;	/* IE 10 */
	-webkit-flex					: 2;	/* NEW - Chrome */
	flex							: 2;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
	height							: inherit;
}

.site-uitklap .site-header {
	overflow						: hidden;
}




/*============== BUTTONS =================================================*/

.button {
	border							: 0;
	cursor							: pointer;
	display							: inline-block;
	font-weight						: normal;
	padding							: 0 20px;
}

.button_met_icon {
	display							: block;
 	padding							: 0;
}

.button-tekstueel {
	display							: inline-block;
	padding							: 0 20px;
}

.button_met_icon span {
	margin-right					: 10px;
}

.button_met_icon span:before {
	
}




/*============== PAYOFF HEADER ===========================================*/

.payoffheader {
	margin							: auto;

	height							: inherit;
	min-height						: inherit;
	width							: 100%;

	display							: -webkit-box;		/* OLD - iOS 6-, Safari 3.1-6 */
	display							: -moz-box;		/* OLD - Firefox 19- (buggy but mostly works) */
	display							: -ms-flexbox;		/* TWEENER - IE 10 */
	display							: -webkit-flex;		/* NEW - Chrome */
	display							: flex;			/* NEW, Spec - Opera 12.1, Firefox 20+ */
	
	-webkit-flex-direction			: column;
	flex-direction					: column;

	-webkit-justify-content			: center;
	justify-content					: center;

	padding							: 20px;
}

.payoffheader_content {
	
}

.payoffheader h2 {
	margin							: 0;
}

.payoffheader h3 {
	
}

.payoffheader span {
	
}

.payoffheader button {
	padding							: 0 20px;
}




/*============== HEADER NAVIGATIE ========================================*/

.hoofdnav {
	box-sizing						: border-box;
	margin							: auto;
	padding							: 0;
	width							: 100%;
}

.hoofdnav ul {
	list-style						: none;
	margin							: 0;
	padding							: 0 20px;
	text-align						: center;
}

.hoofdnav li {
	display							: inline-block;
	font-weight						: normal;
}

.hoofdnav li:last-child {
	border-right					: 0;
}

.hoofdnav li a {
	display							: block;
	padding							: 0 20px;
	text-decoration					: none;
}

.hoofdnav li a:hover {
	
}

.hoofdnav li a.actief {
}

.icon-menu {
	
}

.icon-menu:hover {
	
}





/*============== HEADER NAVIGATIE SUB UITKLAP ============================*/

.hoofdnav li ul {
	display							: none;
	position						: absolute;
	text-align						: left;
}

.hoofdnav li ul li {
	display							: block;
}

.hoofdnav li li {
	border-right					: 0;
	height							: auto;
}

.hoofdnav li:hover ul {
	z-index							: 99;
	display							: block;
}





/*============== CONTENT ALGEMENE INDELING ===============================*/

section {
	display							: -webkit-box;		/* OLD - iOS 6-, Safari 3.1-6 */
	display							: -moz-box;		/* OLD - Firefox 19- (buggy but mostly works) */
	display							: -ms-flexbox;		/* TWEENER - IE 10 */
	display							: -webkit-flex;		/* NEW - Chrome */
	display							: flex;			/* NEW, Spec - Opera 12.1, Firefox 20+ */

	margin-bottom					: 20px;
	padding							: 0;
	
	-webkit-flex-direction			: row;
	flex-direction					: row;

	-webkit-flex-wrap				: wrap;
	flex-wrap						: wrap;

	-webkit-justify-content			: space-between;
	justify-content					: space-between;
	
	-webkit-align-items				: stretch;
	align-items						: stretch;
}

section div {
	margin-bottom				: 0px;
}

.section-zelfde-hoogte {
	-webkit-align-items				: stretch;
	align-items						: stretch;
}

.fixed-width-250 {
	margin							: 0;
	margin-right					: 20px;
	padding							: 0;
	
	width							: 250px;
	
	-webkit-box-flex				: 0;	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex					: 0;	/* OLD - Firefox 19- */
	-ms-flex						: 0;	/* IE 10 */
	-webkit-flex					: 0;	/* NEW - Chrome */
	flex							: 0;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.div2-12 {
	margin							: 10px 1%;
	
	-webkit-box-flex				: 1 0 14%;	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex					: 1 0 14%;	/* OLD - Firefox 19- */
	-ms-flex						: 1 0 14%;	/* IE 10 */
	-webkit-flex					: 1 0 14%;	/* NEW - Chrome */
	flex							: 1 0 14%;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.div3-12 {
	margin							: 10px 1%;
	
	-webkit-box-flex				: 1 0 23%;	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex					: 1 0 23%;	/* OLD - Firefox 19- */
	-ms-flex						: 1 0 23%;	/* IE 10 */
	-webkit-flex					: 1 0 23%;	/* NEW - Chrome */
	flex							: 1 0 23%;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.div4-12 {
	margin							: 10px 1%;
	
	-webkit-box-flex				: 1 0 31%;	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex					: 1 0 31%;	/* OLD - Firefox 19- */
	-ms-flex						: 1 0 31%;	/* IE 10 */
	-webkit-flex					: 1 0 31%;	/* NEW - Chrome */
	flex							: 1 0 31%;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.div5-12 {
	margin							: 10px 1%;
	
	-webkit-box-flex				: 1 0 39%;	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex					: 1 0 39%;	/* OLD - Firefox 19- */
	-ms-flex						: 1 0 39%;	/* IE 10 */
	-webkit-flex					: 1 0 39%;	/* NEW - Chrome */
	flex							: 1 0 39%;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.div6-12 {
	margin							: 10px 1%;
	
	-webkit-box-flex				: 1 0 48%;	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex					: 1 0 48%;	/* OLD - Firefox 19- */
	-ms-flex						: 1 0 48%;	/* IE 10 */
	-webkit-flex					: 1 0 48%;	/* NEW - Chrome */
	flex							: 1 0 48%;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.div7-12 {
	margin							: 10px 1%;
	
	-webkit-box-flex				: 1 0 56%;	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex					: 1 0 56%;	/* OLD - Firefox 19- */
	-ms-flex						: 1 0 56%;	/* IE 10 */
	-webkit-flex					: 1 0 56%;	/* NEW - Chrome */
	flex							: 1 0 56%;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.div8-12 {
	margin							: 10px 1%;
	
	-webkit-box-flex				: 1 0 65%;	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex					: 1 0 65%;	/* OLD - Firefox 19- */
	-ms-flex						: 1 0 65%;	/* IE 10 */
	-webkit-flex					: 1 0 65%;	/* NEW - Chrome */
	flex							: 1 0 65%;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.div9-12 {
	margin							: 10px 1%;
	
	-webkit-box-flex				: 1 0 73%;	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex					: 1 0 73%;	/* OLD - Firefox 19- */
	-ms-flex						: 1 0 73%;	/* IE 10 */
	-webkit-flex					: 1 0 73%;	/* NEW - Chrome */
	flex							: 1 0 73%;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.div10-12 {
	margin							: 10px 1%;
	
	-webkit-box-flex				: 1 0 81%;	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex					: 1 0 81%;	/* OLD - Firefox 19- */
	-ms-flex						: 1 0 81%;	/* IE 10 */
	-webkit-flex					: 1 0 81%;	/* NEW - Chrome */
	flex							: 1 0 81%;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.div11-12 {
	margin							: 10px 1%;
	
	-webkit-box-flex				: 1 0 89%;	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex					: 1 0 89%;	/* OLD - Firefox 19- */
	-ms-flex						: 1 0 89%;	/* IE 10 */
	-webkit-flex					: 1 0 89%;	/* NEW - Chrome */
	flex							: 1 0 89%;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.div12-12 {
	margin							: 10px 1%;
	
	-webkit-box-flex				: 1 0 98%;	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex					: 1 0 98%;	/* OLD - Firefox 19- */
	-ms-flex						: 1 0 98%;	/* IE 10 */
	-webkit-flex					: 1 0 98%;	/* NEW - Chrome */
	flex							: 1 0 98%;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.standaard-padding {
	box-sizing						: border-box;
	padding							: 20px;
}

.standaard-padding-boven-groot {
	box-sizing						: border-box;
	padding							: 40px 0 0 0;
}

.standaard-padding-boven {
	box-sizing						: border-box;
	padding							: 20px 0 0 0;
}

.standaard-padding-behalve-rechts {
	box-sizing						: border-box;
	padding							: 20px 0 20px 20px;
}

.standaard-padding-verticaal {
	box-sizing						: border-box;
	padding							: 20px 0;
	
	height							: 20px;
	width							: 100%;
}





/*============== CONTENT =================================================*/

.content-naast-elkaar {
	display							: -webkit-box;		/* OLD - iOS 6-, Safari 3.1-6 */
	display							: -moz-box;		/* OLD - Firefox 19- (buggy but mostly works) */
	display							: -ms-flexbox;		/* TWEENER - IE 10 */
	display							: -webkit-flex;		/* NEW - Chrome */
	display							: flex;			/* NEW, Spec - Opera 12.1, Firefox 20+ */
	
	-webkit-flex-direction			: row;
	flex-direction					: row;

	-webkit-flex-wrap				: wrap;
	flex-wrap						: wrap;

	-webkit-justify-content			: flex-start;
	justify-content					: flex-start;
	
	-webkit-align-items				: stretch;
	align-items						: stretch;
}

.mobilenietzichtbaar {
	
}

.mobilewelzichtbaar {
	display							: none;
}

.toggle1nietzichtbaar {
	
}

.toggle1welzichtbaar {
	display							: none;
}

.toggle2nietzichtbaar {
	
}

.toggle2welzichtbaar {
	display							: none;
}

.uitlijning-links,
.uitlijning-rechts {
	width							: 50%;
}

.uitlijning-klein {
	width							: 25%;
}

.uitlijning-links {
	float							:left;

	margin							: 0;
	margin-right					: 10px;
}

.uitlijning-rechts {
	float							:right;

	margin							: 0;
	margin-left						: 10px;
}

.uitlijning-boven {
	margin-bottom					: 10px;
}

.uitlijning-onder {
	margin-top						: 10px;
}









/*============== KRUIMELPAD ==============================================*/
.kruimelpad {
	font-weight						: normal;
}

.kruimelpad a {
	
}

.kruimelpad a:hover {
	
}





/*============== OVERIGE =================================================*/

.afgerond {
	overflow						: hidden;
}

.animeer {
	transition						: 0.5s all ease;
}

.border {
	
}

.blur {
	-webkit-filter					: blur(20px) grayscale(50%);
	-moz-filter   					: blur(20px) grayscale(50%);
	-ms-filter   					: blur(20px) grayscale(50%);
	-o-filter	 					: blur(20px) grayscale(50%);
	 filter	   						: blur(20px) grayscale(50%);
}

.bg_rood {
	background-color				: red;
}

.centreren {
	text-align						: center;
}

.clearboth {
	clear							: both;
}

.display_flex_row {
	display							: -webkit-box;		/* OLD - iOS 6-, Safari 3.1-6 */
	display							: -moz-box;			/* OLD - Firefox 19- (buggy but mostly works) */
	display							: -ms-flexbox;		/* TWEENER - IE 10 */
	display							: -webkit-flex;		/* NEW - Chrome */
	display							: flex;				/* NEW, Spec - Opera 12.1, Firefox 20+ */

	-webkit-flex-direction			: row;
	flex-direction					: row;

	-webkit-flex-wrap				: nowrap;
	flex-wrap						: nowrap;
}

.display_flex_column {
	display							: -webkit-box;		/* OLD - iOS 6-, Safari 3.1-6 */
	display							: -moz-box;			/* OLD - Firefox 19- (buggy but mostly works) */
	display							: -ms-flexbox;		/* TWEENER - IE 10 */
	display							: -webkit-flex;		/* NEW - Chrome */
	display							: flex;				/* NEW, Spec - Opera 12.1, Firefox 20+ */

	-webkit-flex-direction			: column;
	flex-direction					: column;

	-webkit-flex-wrap				: nowrap;
	flex-wrap						: nowrap;
}

.downloads {
	
}

.flex_0 {
	-webkit-box-flex				: 0;	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex					: 0;	/* OLD - Firefox 19- */
	-ms-flex						: 0;	/* IE 10 */
	-webkit-flex					: 0;	/* NEW - Chrome */
	flex							: 0;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.flex_1 {
	-webkit-box-flex				: 1;	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex					: 1;	/* OLD - Firefox 19- */
	-ms-flex						: 1;	/* IE 10 */
	-webkit-flex					: 1;	/* NEW - Chrome */
	flex							: 1;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.flex_2 {
	-webkit-box-flex				: 2;	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex					: 2;	/* OLD - Firefox 19- */
	-ms-flex						: 2;	/* IE 10 */
	-webkit-flex					: 2;	/* NEW - Chrome */
	flex							: 2;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.flex_3 {
	-webkit-box-flex				: 3;	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex					: 3;	/* OLD - Firefox 19- */
	-ms-flex						: 3;	/* IE 10 */
	-webkit-flex					: 3;	/* NEW - Chrome */
	flex							: 3;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.flex_4 {
	-webkit-box-flex				: 4;	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex					: 4;	/* OLD - Firefox 19- */
	-ms-flex						: 4;	/* IE 10 */
	-webkit-flex					: 4;	/* NEW - Chrome */
	flex							: 4;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.fontsize_10 { font-size			: 10px; }
.fontsize_15 { font-size			: 15px; }
.fontsize_20 { font-size			: 20px; }
.fontsize_25 { font-size			: 25px; }
.fontsize_30 { font-size			: 30px; }
.fontsize_40 { font-size			: 40px; }
.fontsize_50 { font-size			: 50px; }
.fontsize_60 { font-size			: 60px; }
.fontsize_70 { font-size			: 70px; }
.fontsize_80 { font-size			: 80px; }
.fontsize_90 { font-size			: 90px; }
.fontsize_100 { font-size			: 100px; }

.geenmarge { margin					:  0; }

H1 {
	font-weight						: normal;
	padding							: 0;
	margin							: 0 0 10px 0;
}

H2 {
	font-weight						: normal;
	padding							: 0;
	margin							: 0 0 10px 0;
}

H3 {
	font-weight						: normal;
	padding							: 0;
	margin							: 0 0 10px 0;
}

H4 {
	padding							: 0;
	margin							: 0;
}


[class*="bg_"] h1,
[class*="bg_"] h2 {
	margin							: 10px 0 10px 0;
}


.imgbackground-stretch {
	background-position				: center;
	background-repeat				: no-repeat;
	background-size					: cover;
}

label
{
	margin							: 10px 0;
	padding							: 0;
}

.margin_0	{ margin				: 0; }
.margin_5	{ margin				: 5px; }
.margin_10	{ margin				: 10px; }
.margin_15	{ margin				: 15px; }
.margin_20	{ margin				: 20px; }
.margin_25	{ margin				: 25px; }

.margin_ver_5	{ margin			: 5px 0; }
.margin_ver_10	{ margin			: 10px 0; }
.margin_ver_15	{ margin			: 15px 0; }
.margin_ver_20	{ margin			: 20px 0; }
.margin_ver_25	{ margin			: 25px 0; }
.margin_ver_30	{ margin			: 30px 0; }
.margin_ver_35	{ margin			: 35px 0; }
.margin_ver_40	{ margin			: 40px 0; }

.margin_top_5	{ margin-top		: 5px; }
.margin_top_10	{ margin-top		: 10px; }
.margin_top_15	{ margin-top		: 15px; }
.margin_top_20	{ margin-top		: 20px; }
.margin_top_25	{ margin-top		: 25px; }
.margin_top_30	{ margin-top		: 30px; }
.margin_top_35	{ margin-top		: 35px; }
.margin_top_40	{ margin-top		: 40px; }

.margin_bot_5	{ margin-bottom		: 5px; }
.margin_bot_10	{ margin-bottom		: 10px; }
.margin_bot_15	{ margin-bottom		: 15px; }
.margin_bot_20	{ margin-bottom		: 20px; }
.margin_bot_25	{ margin-bottom		: 25px; }
.margin_bot_30	{ margin-bottom		: 30px; }
.margin_bot_35	{ margin-bottom		: 35px; }
.margin_bot_40	{ margin-bottom		: 40px; }

.margin_hor_5	{ margin			: 0 5px; }
.margin_hor_10	{ margin			: 0 10px; }
.margin_hor_15	{ margin			: 0 15px; }
.margin_hor_20	{ margin			: 0 20px; }
.margin_hor_25	{ margin			: 0 25px; }

.noblur {
	-webkit-filter					: none;
	-moz-filter						: none;
	-ms-filter						: none;
	-o-filter						: none;
	filter							: none;
}

.noscroll { overflow				:  hidden; }

.nowrap {
	-webkit-flex-wrap				: nowrap;
	flex-wrap						: nowrap;
}

.onzichtbaar { display				: none; }

.padding_0	{ padding				: 0; }
.padding_5	{ padding				: 5px; }
.padding_10	{ padding				: 10px; }
.padding_15	{ padding				: 15px; }
.padding_20	{ padding				: 20px; }
.padding_25	{ padding				: 25px; }
.padding_30	{ padding				: 30px; }
.padding_40	{ padding				: 40px; }
.padding_50	{ padding				: 50px; }

.padding_40_20	{ padding			: 40px 20px; }

.padding_ver_5	{ padding			: 5px 0; }
.padding_ver_10	{ padding			: 10px 0; }
.padding_ver_15	{ padding			: 15px 0; }
.padding_ver_20	{ padding			: 20px 0; }
.padding_ver_25	{ padding			: 25px 0; }
.padding_ver_30	{ padding			: 30px 0; }
.padding_ver_40	{ padding			: 40px 0; }
.padding_ver_50	{ padding			: 50px 0; }

.padding_hor_5	{ padding			: 0 5px; }
.padding_hor_10	{ padding			: 0 10px; }
.padding_hor_15	{ padding			: 0 15px; }
.padding_hor_20	{ padding			: 0 20px; }
.padding_hor_25	{ padding			: 0 25px; }
.padding_hor_30	{ padding			: 0 30px; }
.padding_hor_40	{ padding			: 0 40px; }
.padding_hor_50	{ padding			: 0 50px; }

P, P P {
	padding							: 0;
	margin							: 0 0 10px 0;
}

P:empty:first-of-type { display		: none; }

P:empty {
	/*display						: none;*/
}

.position_relative { position		: relative; }

.rechts, .right { text-align		: right; }

section img {
	margin							: 0 10px 10px 0;

	height							: auto;
	max-width						: inherit;
	width							: 100%;
}

section * li  {
	margin							: 5px 0px;
}

.flex_start {
	-webkit-justify-content			: flex-start;
	justify-content					: flex-start;
}

.space_between {
	-webkit-justify-content			: space-between;
	justify-content					: space-between;
}

.flex_end {
	-webkit-justify-content			: flex-end;
	justify-content					: flex-end;
}

strong { font-weight				: bold; }


.site-content section * ul,
.site-content section * ol {
	padding							: 20px 40px;
	margin							: 20px 0px;
}

.toggle-element {
	display							: none;
}

.toggle-element-button {
	cursor							: pointer;
}

table {
	border-collapse					: collapse;
	margin-bottom					: 30px;
}

th, td {
	padding							: 10px;
	margin							: 0;
}

tr {
	
}

tr:hover {
	
}

.ul_geen_opmaak,
.ol_geen_opmaak {
	list-style						: none;
	margin							: 0;
	padding							: 0;
}

.ul_geen_opmaak li,
.ol_geen_opmaak li {
	font-weight						: normal;
}

.vet {
	font-weight						: bold;
}

.wrap {
	-webkit-flex-wrap				: wrap;
	flex-wrap						: wrap;
}

.roteer-90-rechtsom {
	-webkit-transform				: rotate(90deg);    /* Firefox */
	-moz-transform					: rotate(90deg);    /* IE */
	-ms-transform					: rotate(90deg);    /* Opera */
	-o-transform					: rotate(90deg);    /* Internet Explorer */
	transform						: rotate(90deg);
	filter							: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
	
	display							: inline-block;
}



/*============== TABLE MOCK CLASSES ============================================*/
.table    { display: table }
.tr       { display: table-row }
.thead    { display: table-header-group }
.tbody    { display: table-row-group }
.tfoot    { display: table-footer-group }
.col      { display: table-column }
.colgroup { display: table-column-group }
.td, .th  { display: table-cell }
.caption  { display: table-caption }




/*============== SOCIAL MEDIA ============================================*/

.socialmedia {
	display							: -webkit-box;		/* OLD - iOS 6-, Safari 3.1-6 */
	display							: -moz-box;		/* OLD - Firefox 19- (buggy but mostly works) */
	display							: -ms-flexbox;		/* TWEENER - IE 10 */
	display							: -webkit-flex;		/* NEW - Chrome */
	display							: flex;			/* NEW, Spec - Opera 12.1, Firefox 20+ */
	
	-webkit-flex-direction			: row;
	flex-direction					: row;

	-webkit-justify-content			: center;
	justify-content					: center;
}

.socialmedia span:before{
	margin							: 0 0 0 10px;
	padding							: 0;
}body {
  color						: rgb(0,0,0);
  font-family				: 'ralewaylight','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
}

a {
	color					: rgb(0,0,0);
}




/*============== SITE ====================================================*/
.site {
	background-color		: rgb(255,255,255);
}

.site-submenu {
}

.site-submenu-items {
	border					: 1px solid rgb(29,144,201);
}

.site-submenu h2 {
	font-size				: 20px;
}

.site-submenu ul {
	background-color		: rgb(197,196,196);
	line-height				: 22px;
}
	
.site-submenu li {
	line-height				: 22px;
}

.site-submenu li hr {
	background-color		: rgb(197,196,196);
}

.site-submenu li:last-of-type hr {
	
}

.site-submenu li a {
	color					: rgb(154,0,0);
}

.site-submenu li a:hover {
	color					: rgb(0,0,0);
}

.site-submenu li a.actief {
	color					: rgb(154,0,0);
}





/*============== CONTENT =================================================*/

.site-content {
	min-height				: 40px;
	width					: 100%;
}

.main-content {
	
}

.main-content section > div {
	padding					: 20px;
	padding-top				: 20px;
}

.volledigbreed {
	
}
.volledigbreed section {
	max-width				: 960px;
}






/*============== TEAM ================================================*/
.teamleden
{
	width					: 100%;
	display					: flex;
	flex-flow				: row wrap;
	-webkit-align-items		: stretch;
	align-items				: stretch;
}

.teamlid
{
	text-align				: center;
	padding					: 10px 10px 40px 10px;
	margin-bottom			: 20px;
}

.teamlid-pasfoto
{
	display					: block;

	width					: 100%;
	margin					: 0px;

	background-position		: center center;
	background-repeat		: no-repeat;
}

.homepage-blok .teamlid
{
	display					: flex;
	flex-direction			: row;
	text-align				: left;
}




/*============== DIENSTEN ================================================*/
.diensten
{
	display					: flex;
	flex-flow				: row wrap;
	-webkit-align-items		: stretch;
	align-items				: stretch;
}

.dienst
{
	position				: relative;
	flex					: 1 0 350px;
	min-width				: 350px;
	height					: auto;
	text-align				: center;
	padding					: 10px 10px 80px 10px;
	margin-bottom			: 20px;
}

.dienst
{
	cursor					: pointer;
}

div .dienst-icon
{
    display					: inline-block;
    width					: 170px;
    height					: 170px;
    border					: 2px solid rgb(0,0,0);
    -webkit-border-radius	: 50%;
    border-radius			: 50%;
    margin-bottom			: 20px;
}
    
div .dienst-icon:before
{
    font-size				: 8em;
    line-height				: 1.25;
}

.dienst h2
{
	font-size				: 2.2rem;
	line-height				: 1.2;
}

.dienst .button
{
	position				: absolute;
	left					: 20%;
	right					: 20%;
	bottom					: 0;
    border					: 2px solid rgb(30,78,121);
	color					: rgb(0,0,0);
    background-color		: rgb(255,255,255);
}

.dienst:hover .button
{
	color					: rgb(255,255,255);
    background-color		: rgb(30,78,121);
}

.dienst:hover .dienst-icon
{
    color					: rgb(255,255,255);
    background-color		: rgb(30,78,121);
    border-color			: rgb(30,78,121);
}





/*============== FOOTER ==================================================*/

.site-footer {
	background-color		: rgb(29,144,201);
}

.site-footer section {
	max-width				: 960px;
}

.site-footer h2 {
	color					: rgb(255,255,255);
	font-family				: 'ralewayregular','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size				: 30px;
}

.site-footer p {
	color					: rgb(255,255,255);
	font-family				: 'ralewaylight','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size				: 15px;
}

.site-footer a {
	color					: rgb(255,255,255);
}

.footer-copyright {
    display					: flex;
    justify-content			: center;
	text-align				: center;
	height					: 50px;
	line-height				: 50px;
	font-size				: 15px;
}

.footer-copyright a {
	color					: rgb(29,144,201);
}




/*============== MOBILE NAV ==============================================*/
.mobile-nav {
	background-color		: rgb(29,144,201);
}

.mobile-nav h2 {
	color					: rgb(255,255,255);
	font-family				: 'ralewayregular','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size				: 30px;
}

.mobile-nav li {
	border-bottom				: 1px solid rgba(255,255,255,0.5);
	font-size				: 18px;
	line-height				: 30px;
}

.mobile-nav li:first-child {
	border-top				: 1px solid rgba(255,255,255,0.5);
}

.mobile-nav li a {
	color					: rgb(255,255,255);
}

.mobile-nav li a:hover {
	background-color		: rgba(255,255,255,0.25);
}

.mobile-nav li a.actief {
	background-color		: rgba(255,255,255,0.5);
}





/*============== HEADER BOVENBALK ========================================*/


.bovenbalk {
	font-size				: 16px;
	max-width				: 960px;
}

.bovenbalk span {
	font-family				: 'ralewaylight','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size				: 12px;
}

.bovenbalk span:before {
	font-family				: 'ralewaylight','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size				: 20px;
}

.bovenbalk a {
	color					: rgb(255,255,255);
}

.bovenbalk a:hover:before {
	color					: rgb(197,196,196);
}

.bovenbalk a.gradient {
	color					: rgb(255,255,255);
}

.bovenbalk.socialmediakanalen a {
	color					: rgb(29,144,201);
	margin					: 0px 3px;
}

.bovenbalk.socialmediakanalen a:before {
	font-size				: 20px;
}

.bovenbalk.socialmediakanalen a:hover:before {
	color					: rgb(197,196,196);
}


/*============== HEADER VISUAL ===========================================*/

.header-visual {
	height					: 412px;
}

.header-visual-home {
	height					: 412px;
}

.visual {
	position				: relative;
}




/*============== HOMEPAGE ================================================*/

.homepage-blok-container {
	display							: -webkit-box;		/* OLD - iOS 6-, Safari 3.1-6 */
	display							: -moz-box;			/* OLD - Firefox 19- (buggy but mostly works) */
	display							: -ms-flexbox;		/* TWEENER - IE 10 */
	display							: -webkit-flex;		/* NEW - Chrome */
	display							: flex;				/* NEW, Spec - Opera 12.1, Firefox 20+ */
	
	-webkit-box-flex				: 1 0 0;	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex					: 1 0 0;	/* OLD - Firefox 19- */
	-ms-flex						: 1 0 0;	/* IE 10 */
	-webkit-flex					: 1 0 0;	/* NEW - Chrome */
	flex							: 1 0 0;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
	
	-webkit-flex-direction			: row;
	flex-direction					: row;
	
	-webkit-flex-wrap				: wrap;
	flex-wrap						: wrap;

	list-style						: none;
    margin							: 0;
    padding							: 0;
}

.homepage-blok-container .homepage-blok {
	-webkit-justify-content			: space-between;
	justify-content					: space-between;
}

.homepage-blok {
	display							: -webkit-box;		/* OLD - iOS 6-, Safari 3.1-6 */
	display							: -moz-box;			/* OLD - Firefox 19- (buggy but mostly works) */
	display							: -ms-flexbox;		/* TWEENER - IE 10 */
	display							: -webkit-flex;		/* NEW - Chrome */
	display							: flex;				/* NEW, Spec - Opera 12.1, Firefox 20+ */
	
	-webkit-flex-direction			: column;
	flex-direction					: column;
}


.homepage-blok-button-container {
	width							: 100%;
}





/*============== BUTTONS =================================================*/

.bg_a .button,
.bg_c .button {
	background-color		: rgb(30,78,121);
}

.bg_b .button,
.bg_wit .button,
.bg_grijs .button,
.bg_zwart {
	background-color		: rgb(29,144,201);
}

input[type=submit],
button,
.button {
	background-color		: rgb(29,144,201);
	
	-webkit-border-radius	: 5px;
	-moz-border-radius		: 5px;
	border-radius			: 5px;

	color					: rgb(255,255,255);
	font-family				: 'ralewaylight','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size				: 18px;
	text-transform			: uppercase;
	
	padding					: 10px 26px;
}


.button_met_icon {
	color					: rgb(255,255,255);
	font-family				: 'ralewaylight','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	line-height				: 20px;
	text-transform			: uppercase;
}

.button_met_icon span:before {
	font-size				: 70%;
}

.button-tekstueel {
	color					: rgb(0,0,0);
	font-family				: 'ralewaylight','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size				: 18px;
	text-transform			: uppercase;
	padding					: 15px 26px;
}





/*============== PAYOFF HEADER ===========================================*/

.payoffheader {
	max-width				: 960px;
	width					: 960px;
    position				: relative;
    text-align				: left;
    display					: block;
    z-index					: 777;
}

.payoffheader_content {
}

.payoffheader h2 {
	font-family				: 'ralewaylight','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
    font-size				: 35px;
	font-weight				: bold;
    line-height				: 54px;
	display					: inline;
}

.payoffheader h3 {
	font-family				: 'ralewayregular','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size				: 30px;
	text-transform			: uppercase;
}

.payoffheader span {
	font-family				: 'ralewaylight','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size				: 25px;
    line-height				: 42px;
}

.payoffheader .button {
	font-size				: 23px;
	line-height				: 50px;
}





/*============== HEADER NAV ==============================================*/

.hoofdnav {
	margin					: 0;
	height					: 50px;
	font-family				: 'ralewayregular','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	margin-bottom			: 22px;
}

.hoofdnav li {
	font-family				: 'ralewayregular','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	text-transform			: uppercase;
	font-size				: 14px;
	line-height				: 22px;
    padding					: 6px 5px;
}

.hoofdnav ul {
	text-align				: left;
    padding					: 0px 20px;
}

.hoofdnav li a {
	color					: rgb(0,0,0);
    padding					: 0px 8px;
    text-align				: left;
}

.hoofdnav li a:hover {
	color					: rgb(154,0,0);
}

.hoofdnav ul ul {
	border-top				: 1px solid rgb(241,242,243);
    background-color		: rgb(255,255,255);
	padding					: 0px;
	z-index					: 999 !important;
}

.hoofdnav ul ul li {
	padding					: 0px;
    background-color		: rgb(255,255,255);
    text-transform			: none;
    font-size				: 100%;
}

.hoofdnav li a.actief {
	color					: rgb(154,0,0);
}

.hoofdnav li a.actief:hover {
	color					: rgb(29,144,201);
}

.icon-menu {
	color					: rgb(255,255,255);
}

.icon-menu:hover {
	color					: rgb(197,196,196);
}

.site-header hr {
    margin-bottom			: 1em;
    margin-top				: 5px;
}

.site-header {
}



/*============== HEADER NAV SUB UITKLAP ==================================*/

.hoofdnav li ul {

}

.hoofdnav li li {
	background-color		: rgb(241,242,243);
	border-top				: 1px solid rgb(255,255,255);
	font-size				: 0.8em;
	line-height				: 30px;
	min-height				: 30px;
}





/*============== CONTENT ALGEMENE INDELING ===============================*/


.afgerond {
	-webkit-border-radius		: 15px;
	-moz-border-radius			: 15px;
	border-radius				: 15px;
}

.border {
	-webkit-border-radius		: 15px;
	-moz-border-radius			: 15px;
	border-radius				: 15px;
	
	border					: 1px solid rgba(154,0,0,0.5);
}





/*============== KRUIMELPAD ==============================================*/
.kruimelpad {
	color					: rgb(0,0,0);
	font-family				: 'ralewaylight','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size				: 14px;
 
}
.kruimelpad a {
	color					: rgb(0,0,0);
}

.kruimelpad a:hover {
	color					: rgb(154,0,0);
}





/*============== KLEUREN =================================================*/
.kleur_tekst {
	color					: rgb(0,0,0);
}

.tekst_a {
	color					: rgb(29,144,201);
}

.tekst_b {
	color					: rgb(30,78,121);
}

.tekst_c {
	color					: rgb(241,242,243);
}

.tekst_d {
	color					: rgb(204,203,203);
}

.tekst_e {
	color					: rgb(154,0,0);
}

.tekst_grijs {
	color					: rgb(197,196,196);
}

.tekst_wit {
	color					: rgb(255,255,255);
}

.tekst_zwart {
	color					: rgb(0,0,0);
}

.bg_a {
	background-color		: rgb(29,144,201);
}

.bg_b {
	background-color		: rgb(30,78,121);
}

.bg_c {
	background-color		: rgb(241,242,243);
}

.bg_d {
	background-color		: rgb(204,203,203);
}

.bg_e {
	background-color		: rgb(154,0,0);
}

.bg_grijs {
	background-color		: rgb(197,196,196);
}

.bg_wit {
	background-color		: rgb(255,255,255);
}

.bg_zwart {
	background-color		: rgb(0,0,0);
}




/*============== KLEUREN AFHANGEND VAN ACHTERGROND ====================*/

.bg_a .tekst_a,
.bg_b .tekst_b,
.bg_e .tekst_e {
	color					: rgb(255,255,255);
}

.bg_c .tekst_c,
.bg_d .tekst_d {
	color					: rgb(154,0,0);
}

.bg_wit {
	color					: rgb(0,0,0);
}

.bg_grijs,
.bg_zwart {
	color					: rgb(154,0,0);
}

.bg_a .downloads td,
.bg_b .downloads td,
.bg_c .downloads td {
	border					: 1px solid rgb(197,196,196);
}

.bg_wit .downloads td,
.bg_grijs .downloads td,
.bg_zwart .downloads td {
	border					: 1px solid rgb(241,242,243);
}

.bg_a .downloads *,
.bg_b .downloads *,
.bg_e .downloads * {
	color					: rgb(255,255,255);
}

.bg_c .downloads *,
.bg_d .downloads * {
	color					: rgb(154,0,0);
}

.bg_wit .downloads *,
.bg_grijs .downloads *,
.bg_zwart .downloads * {
	color					: rgb(0,0,0);
}

.bg_wit .homepage-blok-content a:hover *,
.bg_grijs .homepage-blok-content a:hover *,
.bg_zwart .homepage-blok-content a:hover *,
.bg_a .homepage-blok-content a:hover *,
.bg_c .homepage-blok-content a:hover *,
.bg_d .homepage-blok-content a:hover *,
.bg_e .homepage-blok-content a:hover *
{
	color							: rgb(30,78,121);
}

.bg_b .homepage-blok-content a:hover *
{
	color							: rgb(29,144,201);
}





/*============== OVERIGE =================================================*/

.downloads {
	border					: 1px solid rgb(197,196,196);
	font-family				: 'ralewaylight','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	margin-bottom			: 30px;
	max-width				: 400px;
}

.downloads a {
	font-family				: 'ralewaylight','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
}

.font_kop {
	font-family				: 'ralewayregular','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
}

.font_tekst {
	font-family				: 'ralewaylight','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
}

H1 {
	color					: rgb(154,0,0);
	font-family				: 'ralewayregular','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size				: 100%;
    font-weight				: bold;
}

H2 {
	color					: rgb(154,0,0);
	font-family				: 'ralewayregular','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size				: 100%;
    font-weight				: bold;
}

H3 {
	color					: rgb(154,0,0);
	font-family				: 'ralewayregular','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size				: 100%;
    font-weight				: bold;
}

H4 {
	color					: rgb(154,0,0);
	font-family				: 'ralewaylight','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size				: 100%;
}

label {
	font-family				: 'ralewaylight','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size				: 13px;
	line-height				: 20px;
}

P, P P {
	font-family				: 'ralewaylight','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size				: 14px;
	line-height				: 20px;
}

section img {
	max-width				: 100%;
}

.site-content section * ul,
.site-content section * ol {
	font-family				: 'ralewaylight','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size				: 13px;
	padding					: 0px 40px;
	margin					: 20px 0px;
}




/*============== SOCIAL MEDIA ============================================*/

.socialmedia {
	color					: rgb(0,0,0);
	font-family				: 'ralewaylight','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size				: 12px;
	font-weight				: normal;
	line-height				: 25px;
	margin					: 10px;
}

.socialmedia span:before{
	color					: rgb(29,144,201);
	font-size				: 20px;
	line-height				: 20px;
}

.socialmedia span:hover:before {
	color					: rgb(197,196,196);
	font-size				: 20px;
	line-height				: 20px;
}






/*============== ASSURANTIECLUBS STANDAARD =====================================*/
/*Opera Fix thanks to Maleika (Kohoutec)*/
body:before
{
	content							: "";
	height							: 100%;
	float							: left;
	width							: 0;
	margin-top						: -32767px;/* thank you Erik J - negate effect of float*/
}

body
{
    font-family						: 'ralewaylight';
    font-size						: 14px;
	line-height						: 22px;
}

:focus
{
	outline							: 0;
}

input[type=submit]:hover,
button:hover,
.button:hover,
.smallbutton:hover
{
	color							: rgb(197,196,196);
}


a:hover
{
	color							: rgb(154,0,0);
}

a
{
	color							: rgb(29,144,201);
	cursor							: pointer;
	text-decoration					: none;
}

th
{
	text-align						: left;
}

hr
{
	background-color				: rgb(241,242,243);
	color							: rgb(241,242,243);
	border							: 0;
	height							: 1px;
}

.site-content
{
	margin-top						: 30px !important;
}

.main-content section > div
{
	margin							: 0px 1%;
	padding-top						: 0px;
}

.main-content section.submenu-infoblok
{
	line-height						: normal;
	padding							: 20px;
	padding-top						: 0px;
}

.main-content section.submenu-infoblok > div
{
	padding-top						: 20px;
}

.detail-rij
{
	display							: -webkit-box;		/* OLD - iOS 6-, Safari 3.1-6 */
	display							: -moz-box;			/* OLD - Firefox 19- (buggy but mostly works) */
	display							: -ms-flexbox;		/* TWEENER - IE 10 */
	display							: -webkit-flex;		/* NEW - Chrome */
	display							: flex;				/* NEW, Spec - Opera 12.1, Firefox 20+ */

	-webkit-flex-direction			: row;
	flex-direction					: row;

	-webkit-flex-wrap				: nowrap;
	flex-wrap						: nowrap;
}

.detail-rij *:first-child
{
	-webkit-box-flex				: 1;	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex					: 1;	/* OLD - Firefox 19- */
	-ms-flex						: 1;	/* IE 10 */
	-webkit-flex					: 1;	/* NEW - Chrome */
	flex							: 1;	/* NEW, Spec - Opera 12.1, Firefox 20+ */

	max-width						: 200px;
}

.detail-rij ul
{
	margin							: 0 !important;
}

.agendaitem .detail-rij *:first-child
{
	max-width						: 100%;
}

.detail-rij *:last-child
{
	-webkit-box-flex				: 2;	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex					: 2;	/* OLD - Firefox 19- */
	-ms-flex						: 2;	/* IE 10 */
	-webkit-flex					: 2;	/* NEW - Chrome */
	flex							: 2;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
}


/* -------- INLOG ------------------- */
form.inloggen
{
}

form.inloggen_tussenstap
{
	margin							: 20px 0px;
}

form.inloggen_tussenstap .button
{
	margin-top						: 10px;
}

.inlog,
.wwvergeten
{
	min-height						: 125px;
}

.inlog form,
.wwvergeten form {
	padding-top						: 15px;
}

.wwvergeten td
{
	padding							: 0px;
}

.uitlog
{
	min-height						: 125px;
	padding-top						: 15px;
}

.inlog table,
.inlog td,
.uitlog table,
.uitlog td,
.wwvergeten table,
.wwvergeten td
{
	border							: none;
    margin							: 0px;
    padding							: 0px;
}

.inlog td,
.uitlog td,
.wwvergeten td
{
	font-size						: small;
	vertical-align					: middle;
}

.inlog a,
.uitlog a,
.wwvergeten a
{
	font-size						: small;
	text-decoration					: none;
	padding							: 8px 10px;
}

.inlog a
{
	line-height						: 36px;
}

.inlog a.smallbutton,
.uitlog a.smallbutton
{
	padding							: 5px 20px;
}

.wwvergeten a.smallbutton
{
	float							: left;
}

.wwvergeten a:last-child
{
	float							: right;
}

.inlog a.button
{
	margin							: 2px;
	line-height						: 22px;
}

.bovenbalk-menu {
	padding							: 10px;
}

.bovenbalk-inhoud {
	display							: flex;
	flex-direction					: row;
	flex-wrap						: wrap;
	justify-content					: space-between;
}



/* -------- VISUAL ------------------ */
.header-visual,
.header-visual-home
{
	display							: inline;
	height							: 412px;
}

.header-visual .imgdiv,
.header-visual-home .imgdiv
{
	width							: 100%;
	max-width						: 1920px;
	margin							: auto;
	background						: gold;
	margin-top						: -412px;
	overflow						: hidden;
}

.header-visual .imgdiv img,
.header-visual-home .imgdiv img
{
	top								: 50%;
	left							: 50%;
	transform						: translate(-50%,-50%);
	max-width						: 1920px;
	width							: auto;
	height							: 412px;
	-webkit-transition				: all 0.5s ease;
	transition						: all 0.5s ease;
}

.header-visual
{
    margin-bottom					: 30px;
}

.visual-preload-container
{
	position						: absolute;
	overflow						: hidden;
	top								: 0px;
	left							: 0px;
	height							: 412px;
	width							: 100%;
}

.visual-preload-container img
{
	position						: absolute;
	overflow						: hidden;
	top								: 0px;
	left							: 0px;
}

.payoffheader
{
	height							: 312px;
	overflow						: hidden;

	margin							: 0 auto;
	top								: 100px;
    left							: -20px;

	padding							: 0px 20px;
	opacity							: 0.95;
}

.highlight
{
	margin							: 0 auto;
	position						: relative;
	z-index							: 2;
}

.highlight_wit
{
	background-color				: rgb(255,255,255);
	background-color				: rgba(255,255,255,1);
	
	-webkit-box-shadow				: 0 0 0 7px rgba(255,255,255, 1);
	-moz-box-shadow					: 0 0 0 7px rgba(255,255,255, 1);
	box-shadow						: 0 0 0 7px rgba(255,255,255, 1);
}

.highlight_grijs
{
	background-color				: rgb(197,196,196);
	background-color				: rgba(197,196,196,1);
	
	-webkit-box-shadow				: 0 0 0 7px rgba(197,196,196, 1);
	-moz-box-shadow					: 0 0 0 7px rgba(197,196,196, 1);
	box-shadow						: 0 0 0 7px rgba(197,196,196, 1);
}

.highlight_zwart
{
	background-color				: rgb(0,0,0);
	background-color				: rgba(0,0,0,1);
	
	-webkit-box-shadow				: 0 0 0 7px rgba(0,0,0, 1);
	-moz-box-shadow					: 0 0 0 7px rgba(0,0,0, 1);
	box-shadow						: 0 0 0 7px rgba(0,0,0, 1);
}

.highlight_a
{
	background-color				: rgb(29,144,201);
	background-color				: rgba(29,144,201,1);
	
	-webkit-box-shadow				: 0 0 0 7px rgba(29,144,201, 1);
	-moz-box-shadow					: 0 0 0 7px rgba(29,144,201, 1);
	box-shadow						: 0 0 0 7px rgba(29,144,201, 1);
}

.highlight_b
{
	background-color				: rgb(30,78,121);
	background-color				: rgba(30,78,121,1);
	
	-webkit-box-shadow				: 0 0 0 7px rgba(30,78,121, 1);
	-moz-box-shadow					: 0 0 0 7px rgba(30,78,121, 1);
	box-shadow						: 0 0 0 7px rgba(30,78,121, 1);
}

.highlight_c
{
	background-color				: rgb(241,242,243);
	background-color				: rgba(241,242,243,1);
	
	-webkit-box-shadow				: 0 0 0 7px rgba(241,242,243, 1);
	-moz-box-shadow					: 0 0 0 7px rgba(241,242,243, 1);
	box-shadow						: 0 0 0 7px rgba(241,242,243, 1);
}

.highlight_d
{
	background-color				: rgb(204,203,203);
	background-color				: rgba(204,203,203,1);
	
	-webkit-box-shadow				: 0 0 0 7px rgba(204,203,203, 1);
	-moz-box-shadow					: 0 0 0 7px rgba(204,203,203, 1);
	box-shadow						: 0 0 0 7px rgba(204,203,203, 1);
}

.highlight_e
{
	background-color				: rgb(154,0,0);
	background-color				: rgba(154,0,0,1);
	
	-webkit-box-shadow				: 0 0 0 7px rgba(154,0,0, 1);
	-moz-box-shadow					: 0 0 0 7px rgba(154,0,0, 1);
	box-shadow						: 0 0 0 7px rgba(154,0,0, 1);
}

#beeldmerk
{
	background-image				: url(../img/beeldmerk.png);
	background-repeat				: no-repeat;
	width							: 487px;
	height							: 133px;
	/*position						: relative;
	top								: 41px;*/
	left							: 50%;
	
    position						: absolute;
    bottom							: -72px;
	z-index							: 999;
	
	-webkit-transition			: all 0.5s ease;
	transition					: all 0.5s ease;
}





/* -------- KOLOMMEN ---------------- */
.main-content section > div.homepage-regel-container
{
	padding							: 0px;
	padding-top						: 20px;
}

.homepage-blok
{
	padding							: 25px;
	margin							: 0px;
}


.homepage-blok .homepage-blok-subtitel
{
	font-weight						: bold;
}

.homepage-blok h2,
.homepage-blok h3
{
	font-family						: 'ralewaylight';
	font-size						: 20px;
	text-transform					: uppercase;
	margin-bottom					: 12px;
}

.homepage-blok h3
{
	font-size						: 12px;
	margin							: 0;
	padding							: 0;
}

.homepage-blok:nth-child(2)
{
	border-left						: 1px solid rgb(255,255,255);
	border-right					: 1px solid rgb(255,255,255);
}

.teamlid-pasfoto img
{
	width							: 150px;
	height							: 150px;

	border-radius					: 100%;
	border							: 4px solid rgb(255,255,255);
	-webkit-box-shadow				: 0px 2px 5px 0px rgba(50, 50, 50, 0.5);
	-moz-box-shadow					: 0px 2px 5px 0px rgba(50, 50, 50, 0.5);
	box-shadow						: 0px 2px 5px 0px rgba(50, 50, 50, 0.5);
}

.teamleden .homepage-blok-content .teamlid-pasfoto img
{
	width							: 75px;
	height							: auto;
	max-height						: 75px;
}





/* -------- AGENDA ------------------ */
.agenda-kolom-item
{
	display							: flex;
	min-height						: 60px;
}

.agenda_dag
{
	flex							: 1 0 51px;
	max-width						: 51px;
	height							: 64px;
	background-image				: url(../img/agenda_dag.png);
	background-repeat				: no-repeat;
	display							: block;
    margin-right					: 10px;
}

.agendaitems-archief table
{
	width							: 100%;
}

.agendaitems-archief table th,
.agendaitems-archief table td
{
	padding							: 0px;
}

.agendaitem-archief-datum
{
	width							: 180px;
}

.agendaitem-archief-tijdstip
{
	width							: 85px;
}

.agendaitem-archief-titel
{
}

.agendaformulier
{
	padding							: 0px;
}

.agendaformulier
{
}

.agendaitems .agendaitem
{
	border-bottom					: 1px solid rgb(241,242,243);
	cursor							: pointer;
}

.agendaitem .agendaitem-a
{
	color							: rgb(0,0,0);
}

.agendaitem .bestand-link
{
	margin							: 20px 0px 20px 10px;
	display							: block;
}

.agendaitem .icon:before
{
	margin-right					: 10px;
	top								: 2px;
	position						: relative;
}

.agenda_locatie
{
	font-size						: 13px;
	font-weight						: normal;
	font-style						: italic;
}

.dag
{
	color							: rgb(29,144,201);
	padding-top						: 2px;
	font-size						: 35px;
	text-align						: center;
	display							: block;
	line-height						: 35px;
}

.maand
{
	color							: rgb(29,144,201);
	text-transform					: uppercase;
	font-size						: 13px;
	text-align						: center;
	display							: block;
}



/* -------- NIEUWS ----------------- */
.nieuwsitem-kolom
{
	clear							: both;
}

.nieuws_afbeelding
{
	float							: left;

	width							: 25%;
	height							: 100px;
	
	background-repeat				: no-repeat;
	background-size					: contain;
}

.nieuws_inleiding
{
	float							: right;
	width							: 70%;
}

.nieuwsitems-archief table
{
	width							: 100%;
}

.nieuwsitems-archief table th,
.nieuwsitems-archief table td
{
	padding							: 0px;
}

.nieuwsitem-archief-datum
{
	width							: 180px;
}

.nieuwsitem-archief-tijdstip
{
	width							: 45px;
}

.nieuwsitem-archief-titel
{
}

.nieuwsitems .nieuwsitem
{
	border-bottom					: 1px solid rgb(241,242,243);
	padding-top						: 20px;
}

.nieuwsitem .nieuwsitem-a
{
	color							: rgb(0,0,0);
}

.nieuwsitem .bestand-link
{
	margin							: 20px 0px 20px 10px;
	display							: block;
}

.nieuwsitem .icon:before
{
	margin-right					: 10px;
	top								: 2px;
	position						: relative;
}




/* -------------- ARCHIEF JAARKNOPPEN ------------- */

.jaartalknoppen
{
	text-align						: center;
	background-color				: rgb(241,242,243);
	border							: 1px solid rgb(204,203,203);
	-moz-border-radius				: 4px;
	-webkit-border-radius			: 4px;
	border-radius					: 4px;
	
	position						: relative;
	z-index							: 999;
}

.main-content section > div.jaartalknoppen
{
	padding							: 0px 20px;
	margin-bottom					: 20px;
}

a.jaartalknop
{
	padding							: 5px;
	display							: inline-block;
}

a.gekozenjaar
{
	padding							: 5px;
	display							: inline-block;
	font-weight						: bold;
}

span.divider
{
	border-right					: 1px solid rgb(204,203,203);
}

span.divider:last-child
{
	border-right					: none;
}




/* -------- TEAM ----------------- */

.homepage-blok-button-container .button
{
	padding							: 15px 22px;
    font-size						: 14px;
}

.homepage-blok .teamlid
{
	padding							: 0px;
}

.homepage-blok .teamlid-pasfoto
{
	width							: 90px;
}

.homepage-blok .teamlid-tekst
{
	width							: calc(100% - 75px);
	flex-direction					: column;
	display							: flex;
	justify-content					: center;
}




/* -------- SPONSOREN --------------- */
div.hoofdsponsor
{
	max-height						: 100px;
	overflow						: hidden;
}

div.overigesponsoren
{
	width							: 270px;
}

div.sponsor
{
	max-height						: 50px;
	overflow						: hidden;
	float							: left;
}

img.hoofdsponsor-afbeelding
{
	width							: 270px;
}

img.sponsor-afbeelding
{
	width 		 					: 90px;
	padding-right					: 5px;
}

div.overigesponsoren div.sponsor:last-child img.sponsor-afbeelding
{
	padding-right					: 0px;
}





/* -------- SUBNAV ------------------ */
.site-submenu div
{
	padding							: 10px 5px 0px 10px;
	background-color				: rgb(241,242,243);
	border							: 1px solid rgb(204,203,203);
	-moz-border-radius				: 4px;
	-webkit-border-radius			: 4px;
	border-radius					: 4px;
}

.site-submenu ul
{
	background						: none;
	line-height						: 22px;
	text-align						: left;
	padding							: 0px;
}

.site-submenu ul li
{
	margin							: 10px 10px 10px 0px;
	list-style-type					: none;
	font-size						: 100%;
    display							: block;
}

.site-submenu ul li a
{
	color							: rgb(0,0,0);
	text-decoration					: none;
	line-height						: 22px;
	font-size						: 100%;
}

.site-submenu ul li a:hover
{
	color							: rgb(29,144,201);
}

.site-submenu ul li.actief a
{
	color							: rgb(154,0,0);
}

.site-submenu ul li.actief:hover a
{
	color							: rgb(29,144,201);
}




/* -------- CONTACT PAGINA -------------- */
.contact-adresgegevens td
{
	padding							: 0px;
}





/* -------- FOTOALBUMS -------------- */
#fotoalbums
{
	width 							: 100%;
}


#fotoalbums td
{
	vertical-align					: top;
	padding							: 10px;
}

.album-thumbnail
{
	max-height						: auto;
	max-width						: 100%;
}

table#fotos tr td a img
{
	margin							: 12px;
}



/* -------- AFBEELDINGEN ------------ */
.nietzichtbaar
{
	display							: none;
}

.afbeeldingen-links
{
	float							: left;
	width							: 200px;
}

.afbeeldingen-rechts
{
	float							: right;
	width							: 200px;
	padding-left					: 10px;
}


.afbeelding-afgerond
{
	float							: left;
	margin							: 30px 0 30px 0;
	border-radius					: 10px;
	box-shadow						: 0px 0px 0px 8px rgb(255,255,255), 0px 0px 0px 10px rgb(241,242,243);	 /* Multiple borders! :) */
}






/* -------- PROFIEL --------- */
.profiel-tabel-header,
.profiel-tabel-content
{
	display							: -webkit-box;		/* OLD - iOS 6-, Safari 3.1-6 */
	display							: -moz-box;			/* OLD - Firefox 19- (buggy but mostly works) */
	display							: -ms-flexbox;		/* TWEENER - IE 10 */
	display							: -webkit-flex;		/* NEW - Chrome */
	display							: flex;				/* NEW, Spec - Opera 12.1, Firefox 20+ */

	-webkit-flex-direction			: row;
	flex-direction					: row;

	-webkit-flex-wrap				: nowrap;
	flex-wrap						: nowrap;
}

.profiel-tabel-header > *
{
	font-weight						: bold;
}

.profiel-tabel-header > *,
.profiel-tabel-content > *
{
	padding							: 0px 5px 5px 5px;
	display							: flex;
	
	-webkit-align-items				: center;
	align-items						: center;

	-webkit-box-flex				: 1;	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex					: 1;	/* OLD - Firefox 19- */
	-ms-flex						: 1;	/* IE 10 */
	-webkit-flex					: 1;	/* NEW - Chrome */
	flex							: 1;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.profiel-tabel-knop-cell
{
	width							: 60px;
	flex							: none;
	margin-right					: 5px;
	-webkit-justify-content			: flex-end;
	justify-content					: flex-end;
}

.profiel-tabel-knop-cell .icon:before
{
	position						: relative;
	top								: 5px;
}

.profiel-tabel-knop-cell a
{
	font-size						: 18px;
	margin-left						: 5px;
}

.profiel-tabel-knop-cell .icon-goedkeuren:before
{
	color							: green;
	content							: "\7a";
}

.profiel-tabel-knop-cell .icon-afkeuren:before
{
	color							: red;
	content							: "\74";
}

.profiel-tabel-knop-cell .icon:hover:before
{
	color							: rgb(197,196,196);
}







/* -------- DOWNLOADS TABEL --------- */
.downloads
{
	margin-top						: 20px;
	text-decoration					: none;
	letter-spacing					: -0.05em;
}

.downloads td,
.downloads tr
{
	height							: 40px;
}

.downloads a
{
	text-decoration					: none;
	letter-spacing					: -0.05em;
	color							: rgb(29,144,201);
}

.downloads a:hover
{
	color							: rgb(154,0,0);
}



/* -------- FOOTER ------------------ */
.site-footer
{
	color							: rgba(255,255,255,0.6);
	font-size						: 16px;
	text-align						: right;
    min-height						: 140px;
}

.site-footer p
{
	color							: inherit;
	font-size						: 16px;
	line-height						: 22px;
}

.site-footer a
{
	text-decoration					: none;
	color							: rgba(255,255,255,0.9);
}

.site-footer a:hover
{
	text-decoration					: none;
	color							: rgb(255,255,255);
}

.site-footer .vcard {
	width:190px;
	float:right;
}

.site-footer .vcard a {
	
}

.site-footer .vcard a img {
	float:left;
}

.site-footer .vcard a span {
	line-height:35px;
}




/* -------- TWITTER FEED STYLES ----- */
#loading-container
{
	padding							: 16px 0px 16px 0px;
	text-align						: center;
}
 
#twitter-feed
{
	width							: 448px;
	margin							: auto;
	font-family						: Arial, Helvetica, sans-serif;
	padding							: 0px 10px 0px 10px;
	border-radius					: 12px;
	color							: rgb(197,196,196);
	min-height						: 100px;
	overflow						: auto;
	float							: left;
}
 
#twitter-feed h1
{
	color							: rgb(241,242,243);
	margin							: 0px;
	padding							: 9px 0px 9px 0px;
	font-size						: 18px;
	font-weight						: lighter;
}

#twitter-header
{
	position						: relative;
	z-index							: 2;
	border-bottom					: 1px dotted rgb(241,242,243);
}

.twitter-article, #loading-container
{
	width							: 100%;
	float							: left;
	padding							: 8px 0px 0px 0px;
	position						: relative;
}

.twitter-pic
{
	position						: absolute;
}
 
.twitter-pic img
{
	float							: left;
	border-radius					: 7px;
	border							: none;
	 
}

/* -------- TEXT STYLING ------------ */
.twitter-text
{
	width							: 100%;
	float							: left;
	font-size						: 11px;
	padding-left					: 52px;
	-moz-box-sizing					: border-box;
	-webkit-box-sizing				: border-box;
	box-sizing						: border-box;
}

.twitter-text p
{
	font-size						: 11px;
	margin							: 0px;
	line-height						: 15px;
}

.twitter-text a,  h1 a
{
	color							: #00acee;
	text-decoration					: none;
}
 
.tweet-time
{
	margin-left						: 5px;
	font-size						: 10px;
	float							: right;
}



 
/* -------- FEED  ACTIONS ----------- */
#twitter-actions
{
	width							: 75px;
	display							: none;

	float							: right;
	margin-right					: 5px;
	margin-top						: 3px;
}

.intent
{
	width							: 25px;
	height							: 16px;
	float							: left;
}

.intent a
{
	width							: 25px;
	height							: 16px;
	display							: block;

	background-image				: url(../img/tweet-actions.png);
	float							: left;
}

.intent a:hover
{
	background-position				: -25px 0px;
}
 
#intent-retweet a
{
	background-position				: 0px -17px;
}

#intent-retweet a:hover
{
	background-position				: -25px -17px;
}

#intent-fave a
{
	background-position				: 0px -36px;
}

#intent-fave a:hover
{
	background-position				: -25px -36px;
}



 
/* -------- RETWEET INDICATOR ------- */
#retweet-indicator
{
	width							: 14px;
	height							: 10px;

	background-image				: url(../img/tweet-actions.png);
	background-position				: -5px -54px;

	margin-top						: 3px;
	float							: left;
}

.backlink
{
	font-size						: 11px;
	text-align						: center;
}

.backlink a
{
	color							: #aaa;
}





/* -------- SOCIALMEDIA ------------- */
div#socialmedia
{
/*	float							: right;
	top								: -165px;
	right							: -30px;
	position						: relative;
*/
}







/* -------- OVERIG ------------------ */

.introductie {
	padding							: 10px 20px;
}

.container960
{
	width							: 960px;
	margin							: 0 auto;
}

.logo
{
	margin-top						: 20px;
}

.uppercase
{
	text-transform					: uppercase;
}

span#timer
{
	font-weight						: bold;
	color							: #00605B;
}

.main-content section > div.melding
{
	padding-top						: 20px;
	margin							: 20px 0px;
}

.bovenbalk .melding,
.melding
{
	background-color				: rgba(0, 96, 91, 0.2);
	padding							: 15px;
	-moz-border-radius				: 4px;
	-webkit-border-radius			: 4px;
	border-radius					: 4px;
	
	margin							: 0px;
	margin-bottom					: 20px;
}

.melding h2
{
}

.melding p
{
	padding							: 0px;
	margin							: 0px;
}

.clearfloat
{
	clear							: both;
}

.leesverder,
.inputregel_label .button {
	/*line-height						: initial;*/
}

input[type=submit],
button
{
	width							: auto;
	padding							: 10px 20px;
	border							: none;
}

input[type=submit],
button,
.button
{
	font-size						: 14px;
	border-radius					: 7px;
	color							: rgb(255,255,255);
	text-decoration					: none;
	-webkit-box-shadow				: 0px 2px 5px 0px rgba(50, 50, 50, 0.5);
	-moz-box-shadow					: 0px 2px 5px 0px rgba(50, 50, 50, 0.5);
	box-shadow						: 0px 2px 5px 0px rgba(50, 50, 50, 0.5);
	cursor							: pointer;
	margin-top						: 30px;
	line-height						: 22px;
}

.smallbutton
{
	display							: block;
	cursor							: pointer;
	font-family						: 'ralewaylight','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size						: 12px;
	padding							: 0px 10px;
	line-height						: 14px;
	border							: 0;
	border-radius					: 7px;
	margin							: 2px;
	-webkit-box-shadow				: 0px 2px 5px 0px rgba(50, 50, 50, 0.5);
	-moz-box-shadow					: 0px 2px 5px 0px rgba(50, 50, 50, 0.5);
	box-shadow						: 0px 2px 5px 0px rgba(50, 50, 50, 0.5);
	color							: rgb(255,255,255);
}

.smallbuttonnoblock
{
	cursor							: pointer;
	text-decoration					: none;
	font-family						: 'ralewaylight','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size						: 12px;
	padding							: 8px 20px;
	border							: 0;
	border-radius					: 7px;
	margin							: 2px;
	width							: 35px;
	-webkit-box-shadow				: 0px 2px 5px 0px rgba(50, 50, 50, 0.5);
	-moz-box-shadow					: 0px 2px 5px 0px rgba(50, 50, 50, 0.5);
	box-shadow						: 0px 2px 5px 0px rgba(50, 50, 50, 0.5);
	color							: rgb(255,255,255);
}

.gradient
{
	text-decoration					: none;

  /* fallback */
  background-color: rgb(30,78,121);
  background-repeat: repeat-y;*/

  /* Safari 4-5, Chrome 1-9 */
  background: -webkit-gradient(linear, left top, right top, from(rgb(29,144,201)), to(rgb(30,78,121)));

  /* Safari 5.1, Chrome 10+ */
  background: -webkit-linear-gradient(left, rgb(30,78,121), rgb(29,144,201));

  /* Firefox 3.6+ */
  background: -moz-linear-gradient(left, rgb(30,78,121), rgb(29,144,201));

  /* IE 10 */
  background: -ms-linear-gradient(left, rgb(30,78,121), rgb(29,144,201));

  /* Opera 11.10+ */
  background: -o-linear-gradient(left, rgb(30,78,121), rgb(29,144,201));
}
/*============== STANDAARD FORM ==========================================*/

form {
	padding							: 10px 0;
}

form > div {
	margin							: 0 0 10px 0;
	overflow						: hidden;
	padding							: 1px;
}

form > div > fieldset > div > div {
	margin							: 0 0 5px 0;
}

form > div > label,
legend {
	width							: 25%;
	float							: left;
	padding-right					: 20px;
	padding-top						: 10px;
}

form > div > div,
form > div > fieldset > div {
	width							: 75%;
	float							: right;
}

form > div > fieldset label {
	
}

fieldset {
	border							: 0;
	padding							: 0;
}

input[type=text],
input[type=number],
input[type=email],
input[type=tel],
input[type=url],
input[type=file],
input[type=password],
textarea,
input[type=submit],
button,
input[type=button]
 {
	-webkit-appearance				: none;
	-moz-appearance					: none;
	appearance						: none;
	outline							: none;
}

input[type=text],
input[type=number],
input[type=email],
input[type=tel],
input[type=url],
input[type=file],
input[type=password],
textarea,
select {
	height							: 50px;
	margin-bottom					: 10px;
	outline							: none;
	padding-left					: 10px;
	padding-right					: 10px;
}

textarea,
input[type=file] {
	padding-top						: 10px;
}

textarea {
	padding-top						: 10px;
	height							: 120px;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=url],
input[type=file],
input[type=password],
textarea,
select {
	width							: 100%;
}

input[type=submit],
button,
input[type=button] {
	cursor							: pointer;
	text-decoration					: none;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=url]:focus,
input[type=password]:focus,
textarea:focus,
select:focus {
	
}

.input-geenmarge-bottom,
.input-geenmarge-bottom input[type=submit] {
	margin-bottom					: 0;
}

.input-geenvolledigebreedte input[type=text],
.input-geenvolledigebreedte input[type=number],
.input-geenvolledigebreedte input[type=email],
.input-geenvolledigebreedte input[type=tel],
.input-geenvolledigebreedte input[type=url],
.input-geenvolledigebreedte input[type=file],
.input-geenvolledigebreedte input[type=password],
.input-geenvolledigebreedte textarea,
.input-geenvolledigebreedte select,
.input-geenvolledigebreedte input[type=submit]{
	width							: auto;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
textarea:focus,
select:focus {
	outline							: 0;
}

.inputregel {
	margin-bottom					: 20px;

	display							: -webkit-box;		/* OLD - iOS 6-, Safari 3.1-6 */
	display							: -moz-box;			/* OLD - Firefox 19- (buggy but mostly works) */
	display							: -ms-flexbox;		/* TWEENER - IE 10 */
	display							: -webkit-flex;		/* NEW - Chrome */
	display							: flex;				/* NEW, Spec - Opera 12.1, Firefox 20+ */
	
	-webkit-flex-direction			: row;
	flex-direction					: row;
	
	-webkit-flex-wrap				: wrap;
	flex-wrap						: wrap;

	-webkit-justify-content			: flex-start;
	justify-content					: flex-start;

	-webkit-align-items				: stretch;
	align-items						: stretch;
}

.inputregel_eenheid {
	width							: auto;
	margin-left						: 15px;
}

.inputregel_label {
}

.inputregel_input {
	position						: relative;

	-webkit-box-flex				: 2;	/* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex					: 2;	/* OLD - Firefox 19- */
	-ms-flex						: 2;	/* IE 10 */
	-webkit-flex					: 2;	/* NEW - Chrome */
	flex							: 2;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.input-decimal .inputregel,
.input-datum .inputregel {
	display							: inline-block;
	margin-bottom					: 0px;
}

.input-decimal input[type=number],
.input-datum select {
	width							: auto;
}

input::-ms-clear {
	display							: none;
}




/*============== ICONS EN (FOUT) MELDINGEN ===============================*/

.foutmeldingen {
	
}

.foutmeldingen li {
	
}

.formulier_melding {
	display							: inline-block;
	padding							: 0 20px;
}

.icon-input-ok,
.icon-input-nok,
.icon-input-verplicht {
	position						: absolute;
	right							: 10px;
}











/*============== SOCIAL MEDIA EMAIL FORM =============================*/

	.socialmedia-emailform-melding,
	.socialmedia-emailform-container {
		position					: relative;
		margin						: 0 auto;
		max-width					: 500px;
	}
	.socialmedia-emailform-melding {
		margin						: 20px auto;
	}
	.socialmedia-emailform-container .icon-input-ok,
	.socialmedia-emailform-container .icon-input-nok,
	.socialmedia-emailform-container .icon-input-verplicht {
	}
	.socialmedia-emailform-container input,
	.socialmedia-emailform-container textarea {
		width						: calc(100% - 30px) !important;
	}







/*============== FORM SPECIFIC MEDIA QUERIES =============================*/

@media (min-width: 1200px) {

	form > div > label,
	legend {
		text-align					: right;
	}

}

@media (max-width: 900px) {

	input[type=text],
	input[type=email],
	input[type=tel],
	input[type=url],
	input[type=password],
	select {
		width						: 75%;
	}

}

@media (max-width: 600px) {

	form > div {
		margin						: 0 0 15px 0;
	}

	form > div > label,
	legend {
		float						: none;
		margin						: 0 0 5px 0;
		width						: 100%;
	}

	form > div > div,
	form > div > fieldset > div {
		float						: none;
		width						: 100%;
	}

	.inputregel {
		-webkit-flex-direction		: column;
		flex-direction				: column;
	}

	input[type=text],
	input[type=email],
	input[type=tel],
	input[type=url],
	input[type=password],
	textarea,
	select {
		width						: 100%;
	}

}/*============== STANDAARD FORM ==========================================*/

form {
	
}

form > div {
	
}

form > div > fieldset > div > div {
	
}

form > div > label,
legend {
	font-size						: 14px;
}

form > div > div,
form > div > fieldset > div {
	
}

form > div > fieldset label {
	font-size						: 12px;
}

fieldset {
	
}

input[type=text],
input[type=password],
input[type=number],
input[type=email],
input[type=tel],
input[type=url],
input[type=file],
input[type=password],
textarea,
select
{
	border							: 1px solid rgb(197,196,196);
	border-radius					: 5px;
	padding							: 5px;
	font-family						: 'ralewaylight','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size						: 14px;
	margin							: 2px;
	width							: 300px;
	height							: 30px;
	box-sizing						: border-box;
	
	-webkit-box-shadow				: inset 0px 1px 5px rgba(10,10,10,0.1);
	-moz-box-shadow					: inset 0px 1px 5px rgba(10,10,10,0.1);
	box-shadow						: inset 0px 1px 5px rgba(10,10,10,0.1);
}

input[type=submit],
button,
input[type=button]
{
	border							: 1px solid rgb(197,196,196);
	border-radius					: 5px;
	padding							: 10px 26px;
	font-family						: 'ralewaylight','HelveticaNeue-Light','Helvetica','Arial','sans-serif';
	font-size						: 14px;
	margin							: 2px;
	box-sizing						: border-box;
	
	-webkit-box-shadow				: inset 0px 1px 5px rgba(10,10,10,0.1);
	-moz-box-shadow					: inset 0px 1px 5px rgba(10,10,10,0.1);
	box-shadow						: inset 0px 1px 5px rgba(10,10,10,0.1);
}

input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=url]:focus,
input[type=password]:focus,
textarea:focus,
select:focus {
	background-color				: rgb(241,242,243);
}

input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
textarea:focus,
select:focus {
	border-color					: rgba(29,144,201,0.3);
}

input[type=text],
input[type=password],
select
{
	width							: 295px;
}

textarea {
	width							: 295px;
	height							: 150px;
}

.inputregel {
	font-size						: 15px;
	max-width						: 600px;
	margin-bottom					: 0px;
}

.inputregel_eenheid {
	font-size						: 15px;
	line-height						: 40px;
}

.inputregel_label {
	font-size						: 15px;
	line-height						: 40px;
	max-width						: 200px;
}





/*============== ICONS EN (FOUT) MELDINGEN ===============================*/

.foutmeldingen {
	
}

.foutmeldingen li {
	line-height						: 20px;
	font-size						: 15px;
	font-weight						: normal;
	color							: red;
}

.formulier_melding {
	-webkit-border-radius			: 5px;
	-moz-border-radius				: 5px;
	border-radius					: 5px;
}

.formulier_melding
{
	background-color				: rgb(29,144,201);

	-webkit-border-radius			: 5px;
	-moz-border-radius				: 5px;
	border-radius					: 5px;
	
	color							: rgb(255,255,255);

	font-family						: 'ralewaylight','HelveticaNeue-Light','Helvetica','Arial','sans-serif';

	line-height						: 40px;
}

.icon-input-ok,
.icon-input-nok,
.icon-input-verplicht {
	font-size						: 12px;
	font-weight						: normal;
	line-height						: 28px;
}

.icon-input-ok {
	color							: rgb(29,144,201);
}

.icon-input-nok {
	color							: red;
}

.icon-input-verplicht {
	color							: rgb(30,78,121);
}



/**/

option:checked, option {
	background:rgb(255,255,255);
	color:rgb(0,0,0);
}

option[value=""] {
	color:rgb(197,196,196);
}

option:hover {
	background:rgb(255,255,255);
	color:rgb(29,144,201);
}

option:focus {
	background:rgb(255,255,255);
	color:rgb(29,144,201);
}



/*============== FORM SPECIFIC MEDIA QUERIES =============================*/

@media (min-width: 1200px) {

}

@media (max-width: 900px) {

}

@media (max-width: 600px) {

}.main-content section > div {
	margin: 1%;
}

.main-content section.submenu-infoblok {
	padding: 0px;
}

.gradient h1, .gradient h2, .gradient h3 {
	color: rgb(241,242,243);
}
@media all and (max-width:1120px) and (min-width:900px) {

	.logomenubalk .button:first-child {
		margin-bottom				: 10px;
	}

	.logomenubalk .button {
		text-align					: center;
	}
}



@media all and (max-width:1000px) {

	.content-met-submenu {
		-webkit-flex-direction		: column;
		flex-direction				: column;

		-webkit-flex-wrap			: nowrap;
		flex-wrap					: nowrap;

		margin-top					: 10px;
	}

	.header-visual-home {
		position					: relative;
	}

	.hoofdnav li a {
		padding						: 0 10px;
	}

	.site-submenu {
		border						: 0;
		display						: block;
		margin						: 0;
		padding						: 0;
		width						: 100%;
	}

	.site-submenu-items {
		border						: 0;
		margin						: 0;
		padding						: 0;
	}

	.site-submenu h2 {
		display						: none;
	}

	.site-submenu ul {
		list-style					: none;
		margin						: 0;
		padding						: 0;
		text-align					: center;
	}

	.site-submenu li {
		margin-right				: 10px;
		padding						: 5px;
		width						: inherit;
	}

	.site-submenu a {
		margin						: 0;
		padding						: 0;
	}

	.site-submenu li hr {
		display						: none;
	}

	.toggle1nietzichtbaar {
		display						: none;
	}

	.toggle1welzichtbaar {
		display						: inline;
	}

}



@media all and (max-width:900px) {

	.hoofdnav {
		display						: none;
	}

	.hoofdnav-mobile {
		display						: block;
	}
	
	.mobilenietzichtbaar {
		display						: none!important;
		-webkit-transition			: all 0.5s ease-in;
		transition					: all 0.5s ease-in;
	}

	.mobilewelzichtbaar {
		display						: inherit;
		-webkit-transition			: all 0.5s ease-in;
		transition					: all 0.5s ease-in;
	}

	.bovenbalk div {
		display						: flex;
		flex						: 1;
	}

}



@media all and (max-width:800px) {

	.logomenubalk {
		-webkit-transition			: all 0.5s ease-in;
		transition					: all 0.5s ease-in;
		
		-webkit-align-items			: center;
		align-items					: center;

		margin						: auto;
		width						: 100%;
	}

	.logomenubalk_logo {
		-webkit-transition			: all 0.5s ease-in;
		transition					: all 0.5s ease-in;

		margin-left					: 20px;
	}

	.div3-12,
	.div4-12,
	.div8-12,
	.div9-12 {
		-webkit-box-flex			: 1 0 48%;	/* OLD - iOS 6-, Safari 3.1-6 */
		-moz-box-flex				: 1 0 48%;	/* OLD - Firefox 19- */
		-ms-flex					: 1 0 48%;	/* IE 10 */
		-webkit-flex				: 1 0 48%;	/* NEW - Chrome */
		flex						: 1 0 48%;	/* NEW, Spec - Opera 12.1, Firefox 20+ */
	}

	.toggle2nietzichtbaar {
		display						: none;
	}

	.toggle2welzichtbaar {
		display						: inline;
	}

}



@media all and (max-width:750px) {

	.header_buttons {
		-webkit-flex-direction		: column;
		flex-direction				: column;
	}

	.logomenubalk .button:first-child {
		margin-bottom				: 10px;
	}

	.logomenubalk .button {
		text-align					: center;
	}

}



@media all and (max-width: 600px) {

	.bovenbalk {
		-webkit-justify-content		: space-between;
		justify-content				: space-between;
	}

	.div3-12,
	.div4-12,
	.div6-12,
	.div8-12,
	.div9-12 {
		flex						: 1 0 100%;
	}

	.header_buttons {
		display						: none;
	}

	.header-visual-home {
		-webkit-transition			: height 0.5s ease-in;
		transition					: height 0.5s ease-in;
	}

	.logomenubalk_logo {
		margin-right				: 20px;
	}

	.mobilenietzichtbaar {
		display						: none;
		-webkit-transition			: all 0.5s ease-in;
		transition					: all 0.5s ease-in;
	}

	.mobilewelzichtbaar {
		display						: inherit;
		-webkit-transition			: all 0.5s ease-in;
		transition					: all 0.5s ease-in;
	}

}
@media all and (max-width:1120px) and (min-width:900px) {

	.logomenubalk .button {
		line-height					: 40px;
	}

}



@media all and (max-width:1000px) {

	.hoofdnav li a {
		font-size					: 16px;
	}

   	.payoffheader h2 {
		font-size					: 40px;
	}

	.payoffheader h3 {
		font-size					: 25px;
	}

	.payoffheader span {
		font-size					: 16px;
	}

	.site-submenu {
		text-align					: center;
	}
	
	.site-submenu-items {
		border-bottom				: 1px solid rgb(197,196,196);
		height						: 50px;
	}

	.site-submenu ul {
		line-height					: 30px;
	}

	.site-submenu li {
		font-size					: 12px;
		line-height					: 30px;
	}

	.site-submenu ul li {
		display						: inline-block;
	}
	
	.site-content.content-met-submenu .site-submenu {
		padding						: 20px;
	}
}



@media all and (max-width:900px) {

	.site-header hr {
		margin-bottom				: 0;
	}
	
	#beeldmerk {
		background-image			: url(../img/beeldmerk_mobile.png);
		width						: 365px;
		height						: 100px;
		top							: 368px;
		left						: 53%;
	}

}



@media all and (max-width:800px) {

	.header-visual .imgdiv img,
	.header-visual-home .imgdiv img {
		max-width					: 1631px;
		width						: auto;
		height						: 350px;
		top							: 42%;
		-webkit-transition			: all 0.5s ease-in;
		transition					: all 0.5s ease-in;
	}

	#beeldmerk {
		top							: 307px;
		left						: 45%;
		-webkit-transition			: all 0.5s ease-in;
		transition					: all 0.5s ease-in;
	}
	
	.logomenubalk {
		height						: 75px;
		max-width					: 960px;
	}

	.logomenubalk_logo {
		width						: 144px;
		height						: 38px;
	}

	.bovenbalk-inhoud {
		justify-content				: center;
	}
	
	.logo {
		width						: 100%;
	}


}



@media all and (max-width: 600px) {

	.site-content {
		margin-top					: -150px !important;
	}

	.header-visual .imgdiv img,
	.header-visual-home .imgdiv img {
		max-width					: 1165px;
		width						: auto;
		height						: 250px;
		top							: 30%;
	}
	
	#beeldmerk {
		-webkit-transition			: all 0.5s ease-in;
		transition					: all 0.5s ease-in;
		top							: 205px;
		left						: 27%;
	}
	
	.submenu-infoblok h3 {
		font-size					: 3em;
	}

	.footer-copyright {
		height						: auto;
		flex-direction				: column;
	}
	
	.dienst {
		flex						: 1 0 100%;
	    min-width					: 100%;
	}
}

@media all and (max-width: 500px) {

	#beeldmerk {
		background-image			: url(../img/beeldmerk_mobile_small.png);
		-webkit-transition			: bottom 0.5s ease-in;
		transition					: bottom 0.5s ease-in;
		width						: 274px;
		height						: 75px;
		top							: 217px;
		left						: 22%;
	}
