/*********************************************************************************/
/* Basic                                                                         */
/*********************************************************************************/

	body
	{
		background: #fff;
		padding: 0;
		margin: 0;
	}

	body,input,textarea,select
	{
		font-family: 'Open Sans', sans-serif;
		font-size: 10pt;
		line-height: 2em;
	}

	h1,h2,h3,h4,h5,h6
	{
		font-weight: bold;
	}
	
		h1 a, h2 a, h3 a, h4 a, h5 a, h6 a
		{
			color: inherit;
			text-decoration: none;
		}
		
	/* Change this to whatever font weight/color pairing is most suitable */
	strong, b
	{
		font-weight: bold;
		color: #000000;
	}
	
	em, i
	{
		font-style: italic;
	}

	/* Don't forget to set this to something that matches the design */
	a
	{
		color: #1d1730;
		text-decoration: none;
	}
	
	a:hover
	{
		color: #29abe2;
	}
	
	a.active {
	color: #29abe2;
}

    a.inactive {
	color: #aeaeae;
}

	sub
	{
		position: relative;
		top: 0.5em;
		font-size: 0.8em;
	}
	
	sup
	{
		position: relative;
		top: -0.5em;
		font-size: 0.8em;
	}
	
	hr
	{
		border: 0;
		border-top: solid 1px #ddd;
	}
	
	blockquote
	{
		border-left: solid 0.5em #ddd;
		padding: 1em 0 1em 2em;
		font-style: italic;
	}
	
	p, ul, ol, dl, table
	{
		margin-bottom: 1em;
		margin-right: 1em;
		font-size: 0.9em;
		line-height: 1.8em;
	}

	p
	{
		margin-right: 1em;
	}
        ul {
        list_style-type: none;
        }

	header
	{
	}
	
		header h2
		{
			letter-spacing: -1px;
			font-weight: 700;
		}
	
		header .byline
		{
			display: block;
			text-transform: uppercase;
		}
		
	footer
	{
		margin-top: 1em;
	}

	br.clear
	{
		clear: both;
	}
	
	/* Buttons */
		
		.button
		{
			position: relative;
			display: inline-block;
			margin-top: 2em;
			padding: 0.8em 1.5em;
			background: #1d1d1d;
			border-radius: 6px;
			text-decoration: none;
			text-transform: uppercase;
			font-size: 1em;
			color: #FFF;
			-moz-transition: color 0.35s ease-in-out, background-color 0.35s ease-in-out;
			-webkit-transition: color 0.35s ease-in-out, background-color 0.35s ease-in-out;
			-o-transition: color 0.35s ease-in-out, background-color 0.35s ease-in-out;
			-ms-transition: color 0.35s ease-in-out, background-color 0.35s ease-in-out;
			transition: color 0.35s ease-in-out, background-color 0.35s ease-in-out;
			cursor: pointer;
		}

			.button:hover
			{
				background: #141414;
				color: #FFF !important;
			}
	

	/* Sections/Articles */
	
		section,
		article
		{
			margin-bottom: 3em;
		}
		
		section > :last-child,
		article > :last-child
		{
			margin-bottom: 0;
		}

		section:last-child,
		article:last-child
		{
			margin-bottom: 0;
		}

		.row > section,
		.row > article
		{
			margin-bottom: 0;
		}

	/* Images */

		.image
		{
			display: inline-block;
		}
		
			.image img
			{
				display: block;
				width: 100%;
				border-radius: 6px;
			}

			.image.featured
			{
				display: block;
				width: 100%;
				margin: 0 0 2em 0;
			}
			
			.image.full
			{
				display: block;
				width: 100%;
				margin: 0 0 2em 0;
			}
			
			.image.left
			{
				float: left;
				margin: 0 2em 2em 0;
			}
			
			.image.centered
			{
				display: block;
				margin: 0 0 2em 0;
			}

				.image.centered img
				{
					margin: 0 auto;
					width: auto;
				}

	/* Lists */

		ul.default
		{
			list-style: none;
			margin: 0;
			padding: 0;
		}
		
			ul.default li
			{
				padding: 0.50em 0em;
			}	
		
		ul.style1
		{
			font-size: 0.90em;
		}	

			ul.style1 li
			{
				padding: 0.80em 0em;
				line-height: 1.8em;
			}	

			ul.style1 li img
			{
				float: left;
				margin-right: 1.50em;
				border-radius: 6px;
			}
			
			ul.style1 .posted
			{
				display: block;
				margin-top: 1em;
				padding: 0.50em 0em;
			}

/*********************************************************************************/
/* Container                                                                     */
/*********************************************************************************/
.container {
	width: 1000px;
	background-color: #FFFFFF;
	margin: 0 auto; /* de lay-out wordt gecentreerd via de combinatie van de automatische waarde voor de zijkanten en de breedte */
padding: 0 20px;
}
/*********************************************************************************/
/* Header                                                                        */
/*********************************************************************************/

	#header
	{
		display: block;
                position: relative;
		width: 1000px;
                height: 565px;
		background-color: #fff;
		background-image: none;
	}
		

/*********************************************************************************/
/* Logo                                                                          */
/*********************************************************************************/

	#logo
	{
		display: block;
		width: 180px;
		height: 90px;
		margin: 10px;
		position: absolute;
		top: 0;
		left: 0;
	}
	
		#logo h1
		{
			color: #FFF;
margin: 0;
		}
	
		#logo h1 a
		{
			display: block;
			height:90px;
			width: 180px;
			letter-spacing: 1px;
			text-decoration: none;
			text-transform: uppercase;
			font-size: 4em;
			font-weight: 900;
			color: #323338;
			text-indent: -9999px;
			background:  url(/images/logo_header.png) no-repeat left center;
		}

		#logo span
		{
			display: block;
			padding-top: 1em;
			letter-spacing: 1px;
			text-transform: uppercase;
			font-size: 1.2em;
			color: #8e8588;
		}	
		
		
/*********************************************************************************/
/* Bestellen                                                                        */
/*********************************************************************************/	
		
		div.bestellen {
		display: block;
		width: 180px;
		height: 30px;
		padding: 0 5px;
		background-color: #29abe2;
		/*border: 1px solid #1d1730;*/
		color: #fff;
		-moz-border-radius: 20px;
		border-radius: 20px;
		position: absolute;
		top: 30px;
		left: 460px;
		}
		
		div.bestellen p {
			font-weight: 400;
			margin: 0;
		line-height: 30px;
		text-align: center;
		}

		div.bestellen p a {
                  color: #fff;
                  text-decoration: none;
}

                div.bestellen p a:hover {
                  color: #fff;
                  text-decoration: underline;
}

/*********************************************************************************/
/* Bellen                                                                        */
/*********************************************************************************/			
		
		div.bellen {
		display: block;
		width: 180px;
		height: 30px;
		padding: 0 5px;
		background-color: #e3e3e3;
		/*border: 1px solid #1d1730;*/
		color: #1d1730;
		-moz-border-radius: 20px;
		border-radius: 20px;
		position: absolute;
		top: 30px;
		left: 670px;
		}
		
		div.bellen p {
			font-weight: 400;
			margin: 0;
		line-height: 30px;
		text-align: center;
		}	
		
/*********************************************************************************/
/* Social_header                                                                 */
/*********************************************************************************/			
		
		div.social_header {
		display: block;
		width: 200px;
		height: 40px;
		padding: 0 5px;
		position: absolute;
		top: 30px;
		right: 0;
                text-align: right;
		}
		
		div.social_header img {
		margin-left: 10px;
		}	
		
		
/*********************************************************************************/
/* Slide_header                                                                  */
/*********************************************************************************/			

		#slide_header {
			display: block;
			width: 1000px;
			height: 400px;
			position: absolute;
			top: 120px;
                        overflow: hidden;
					}

.gmap3{
        margin: 20px auto;
        border: 1px dashed #C0C0C0;
        width: 1000px;
        height: 400px;
      }

/*********************************************************************************/
/* Nav                                                                           */
/*********************************************************************************/

	#nav
	{
		display: block;
		position: absolute;
		bottom: 5px;
		left: 0;
		width: 100%;
		background-color: #1d1730;
                z-index: 999;
	}
	
		#nav ul
		{
			display: inline-block;
			padding: 0em 0.5em;
			border-radius: 3px;
			background: #1d1730;
		}

		#nav > ul > li
		{
			display: inline-block;
		}
		
			#nav > ul > li:last-child
			{
				padding-right: 0;
			}

			#nav > ul > li > a,
			#nav > ul > li > span
			{
				display: block;
				padding: 1.3em 0.5em;
				letter-spacing: 1px;
				text-decoration: none;
				text-transform: uppercase;
				font-weight: 200;
				font-size: 1.1em;
				outline: 0;
				color: #fff;
			}


			#nav > ul > li > a:hover
			{
				color: #29abe2;
			}

			#nav li.active a
			{
				color: #29abe2;
			}

			#nav li.menuactive a
			{
				text-decoration: none;
				color: #29abe2;
			}

			#nav > ul > li > ul
			{
				display: none;
			}

/*********************************************************************************/
/* Main                                                                          */
/*********************************************************************************/

	#main
	{
                display: block;
                width: 1000px;
                margin-bottom: 13px;
                height: auto;
                clear: both;
	}

       #main h3 {
             padding: 0;
             margin: 0;
             font-size: 150%;
}

       #main h4 {
             padding: 0;
             margin: 0;
}

       #main h5 {
             padding: 0;
             margin: 0 0 10px 0;
             color: #666;
             font-weight: bolder;
}
	
	#mainContent
	{
		display: block;
                width: 600px;
                float: left;
                clear: none;
	}
	
       #sidebarRight {
              display: block;
              width: 360px;
                height: auto;
              padding: 5px 10px 10px 10px;
              margin-top: 10px;
                float: right;
                clear: right;
              background-color: #e3e3e3;

}

       #sidebarRight h3 {
             padding: 0;
             margin: 0;
             font-size: 100%;
}

       #sidebarRight h5 {
             padding: 0;
             margin: 0;
             font-weight: 500;
}
       #sidebarRight p.download a {
             text-decoration: underline;
             background-color: red;
             color: white;
             padding: 5px;
}

       #sidebarRight p.download a:hover {
             text-decoration: none;
}
/*********************************************************************************/
/* Wagenpark                                                                     */
/*********************************************************************************/
	
	#wagenpark
	{
		display: block;
		margin: 0;
		padding: 10px;
		width: 978px;
		height: auto;
		background-color: #29abe2;
                border: 1px solid #e3e3e3;
                color: #fff;
                clear: both;
	}

	#wagenpark h3
	{
         margin: 0;
         color: #fff;
         size: 90%;
}
	
	div.wagen {
          display: block;
          min-width: 195px;
          max-width: 196px;
          float: left;
          clear: none;
}
       div.foto {
           display: block;
           width: auto;
           height: auto;
           text-align: center;
}

       div.omschrijving {
           display: block;
           width: auto;
           height: auto;
           text-align: left;
           padding-left: 10px;
}

.type {
         font-weight: 700;
         font-variant:small-caps;
}
.omschrijving a {
         padding: 5px 10px;
         background-color: #1d1730;
         font-weight: 300;
         font-variant: normal;
         font-size: 0.8em;
         -moz-border-radius: 3px;
         border-radius: 3px;
         color: #fff;
}

.omschrijving a:hover {
        color: #e3e3e3;
}
/*********************************************************************************/
/* Tweede Content Blok                                                           */
/*********************************************************************************/
	
	#subcontent_container
	{
		display: block;
		width: 980px;
		background-color: #c3c3c3;
                margin-top: 20px;
		clear: both;
                padding: 10px;
	}

	#subcontent_container h3
	{
		margin: 0;
	}

	#subcontent_container a
	{
		text-decoration: underline;
	}

	#subcontent_container a:hover
	{
		text-decoration: none;
                color: #1d1730;
	}

	#subcontent_container ul
	{
		margin: 0;
                padding: 0 15px;
                list-style-type: square;
	}

	#subcontent_container li
	{
		margin: 0;
                padding: 0;
	}
	
	#waarom-gmd
	{
		display: block;
		margin: 0;
		width: 450px;
                float: left;
                clear: none;
	}
	#specialisaties
	{
		display: block;
		margin: 0;
		width: 260px;
                float: left;
                clear: none;
	}
	#nieuws
	{
		display: block;
		margin: 0;
		width: 260px;
                float: left;
                clear: none;
	}
	
/*********************************************************************************/
/* Footer                                                                        */
/*********************************************************************************/
	
	#footerLeft
	{
		display: block;
                width: 670px;
                height: 120px;
                margin: 0 20px 20px 0;
                padding: 10px;
                color: #e3e3e3;
                float: left;
                clear: none;
                background-color: #1d1730;
	}

	#footerLeft h4
	{
              padding: 0;
              margin: 0;
}

	#footerLeft p
	{
              font-size: 0.7em;
              padding: 0;
              margin: 0;
}

	#footerLeft p a
	{
              color: #e3e3e3;
}

/*********************************************************************************/
/* Copyright                                                                     */
/*********************************************************************************/
	
	#copyright
	{
		font-size: 80%;
		position: relative;
		padding: 1em 0em;
		text-align: center;
		background: #1d1730;
		color: rgba(255,255,255,.4);
	}
	
	#copyright .container
	{
	}
	
	#copyright a
	{
		text-decoration: none;
		color: rgba(255,255,255,.3);
	}	
	
/*********************************************************************************/
/* Form                                                                       */
/*********************************************************************************/
form {
	margin: 0px;
}
.contactform {
	font-size: 12px;
}
form, td, th, li {
	font-size: 100%
}
form div {
	margin-bottom: 0
}
fieldset div {
	margin: 0 0 15px 0;
	margin-left: 0;
}
fieldset div div {
	margin-top: 0;
	margin-left: 0;
}
fieldset {
	margin-bottom: 0;
	border: none;
	padding: 0;
}
fieldset label {
	width: auto;
}
legend {
        display: none;
}
textarea {
	margin: 0;
}
/* Apply this class to text/select input fields with shorter labelsto help alignment */
.short-label label {
	float: left;
	width: 10em
}
.short-label fieldset div input, .short-label fieldset div select {
	width: 16em
}
/* Pretty up your Captcha image output */
.captcha {
	margin: 0.5em 0;
	width: 200px;
	text-align: center
}
.captcha img {
	border: 1px solid #F60;
	margin-bottom: 0.5em
}
.captcha input {
	width: 196px;
	margin-top: 0.5em
}
.contactform input {
	border: none;
        padding: 3px;
        width: 400px;
        height: 35px;
	font-family: 'Open Sans', sans-serif;
		font-size: 10pt;
        font-weight: lighter;
        color: #6b7071;
		background-color: #ECECEC;
}
.contactform input:focus {
        -moz-box-shadow: 0 0 5px #888;
-webkit-box-shadow: 0 0 5px#888;
box-shadow: 0 0 5px #888;
}
.contactform input.checkbox {
	border: none;
}
.contactform label {
	display: block;
	float: left;
	font-family: 'Open Sans', sans-serif;
		font-size: 10pt;
	width: 150px;
        background-color: #1d1730;
        padding: 3px 3px 3px 10px;
        color: #fff;
}
.contactform label.label {
	display: inline;
	float: none;
	width: 50px;
	font-size: 10px;
}
.contactform textarea {
font-family: 'Open Sans', sans-serif;
		font-size: 10pt;
        font-weight: lighter;
        color: #6b7071;
	background-color: #ECECEC;
	border: none;
        padding: 3px;
        width: 400px;
		min-height: 100px;
}
.contactform textarea:focus {
        -moz-box-shadow: 0 0 5px #888;
-webkit-box-shadow: 0 0 5px#888;
box-shadow: 0 0 5px #888;
}
.contactform select.cms_dropdown {
        padding: 3px;
        margin: 0;
        width: 550px;
        height: 31px;
	font-family: 'Open Sans', sans-serif;
		font-size: 10pt;
        font-weight: lighter;
        color: #000;
        border-top: none;
        border-right: none;
        border-bottom: none;
        border-left: none;
		background-color: #ECECEC;
}
.contactform select.cms_dropdown:focus {
        -moz-box-shadow: 0 0 5px #888;
-webkit-box-shadow: 0 0 5px#888;
box-shadow: 0 0 5px #888;
}
.contactform textarea:hover {

}
.formbuilderform .message {
	line-height: 16px;
	padding: 0 0 8px 0;
}
/* Just a bit more room for the Submit button */
div.submit input {
	margin: 0 0 10px 0;
        padding: 0px 5px 5px 5px;
        display: block;
        width: auto;
        height: 30px;
        color: #fff;
        background-color: green;
        cursor: pointer;
}
div.submit input:hover {
	margin: 0;
        display: block;
        width: auto;
        height: 30px;
        color: #000;
}
.error_message {
       color: red;
}

/* Stylesheet: style-css Modified On 2016-12-20 08:36:28 */
