/*
Design by Metamorphosis Design
http://www.metamorphozis.com
Released for free under a Creative Commons Attribution 2.5 License
*/



#cssmenu {
  
  height: 44px;
  background: none;
  
  padding-top: 100px;
  padding-left: 300px;
 
}
#cssmenu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 1;
 
}
#cssmenu > ul {
  position: relative;
  display: block;
  background: transparant;
  width: auto;
  z-index: 500;
}
#cssmenu:after,
#cssmenu > ul:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
#cssmenu.align-right > ul > li {
  float: right;
}
#cssmenu.align-center ul {
  text-align: center;
}
#cssmenu.align-center ul ul {
  text-align: left;
}
#cssmenu > ul > li {
  display: inline-block;
  position: relative;
  margin: 0;
  padding: 0;
}
#cssmenu > ul > #menu-button {
  display: none;
}
#cssmenu ul li a {
  display: block;
  font-family: Helvetica, sans-serif;
  text-decoration: none;
}
#cssmenu > ul > li > a {
  font-size: 14px;
  font-weight: bold;
  padding: 15px 20px;
  color: #ffff00;
  text-transform: uppercase;
  -webkit-transition: color 0.25s ease-out;
  -moz-transition: color 0.25s ease-out;
  -ms-transition: color 0.25s ease-out;
  -o-transition: color 0.25s ease-out;
  transition: color 0.25s ease-out;
}
#cssmenu > ul > li.has-sub > a {
  padding-right: 32px;
}
#cssmenu > ul > li:hover > a {
  color: #ffffff;
}
#cssmenu li.has-sub::after {
  display: block;
  content: "";
  position: absolute;
  width: 0;
  height: 0;
}
#cssmenu > ul > li.has-sub::after {
  right: 10px;
  top: 20px;
  border: 5px solid transparent;
  border-top-color: #7a8189;
}
#cssmenu > ul > li:hover::after {
  border-top-color: #ffffff;
}
#indicatorContainer {
  position: absolute;
  height: 12px;
  width: 100%;
  bottom: 0px;
  overflow: hidden;
  z-index: -1;
}
#pIndicator {
  position: absolute;
  height: 0;
  width: 100%;
  border: 12px solid transparent;
  border-top-color: #2b2f3a;
  z-index: -2;
  -webkit-transition: left .25s ease;
  -moz-transition: left .25s ease;
  -ms-transition: left .25s ease;
  -o-transition: left .25s ease;
  transition: left .25s ease;
}
#cIndicator {
  position: absolute;
  height: 0;
  width: 100%;
  border: 12px solid transparent;
  border-top-color: #2b2f3a;
  top: -12px;
  right: 100%;
  z-index: -2;
}
#cssmenu ul ul {
  position: absolute;
  left: -9999px;
  top: 70px;
  opacity: 0;
  
  -webkit-transition: opacity .3s ease, top .25s ease;
  -moz-transition: opacity .3s ease, top .25s ease;
  -ms-transition: opacity .3s ease, top .25s ease;
  -o-transition: opacity .3s ease, top .25s ease;
  transition: opacity .3s ease, top .25s ease;
  z-index: 1000;
}
#cssmenu ul ul ul {
  top: 37px;
  padding-left: 10px;
}
#cssmenu ul ul li {
  position: relative;
}
#cssmenu > ul > li:hover > ul {
  left: auto;
  top: 44px;
  opacity: 1;
}
#cssmenu.align-right > ul > li:hover > ul {
  left: auto;
  right: 0;
  opacity: 1;
}
#cssmenu ul ul li:hover > ul {
  left: 170px;
  top: 0;
  opacity: 1;
}
#cssmenu.align-right ul ul li:hover > ul {
  left: auto;
  right: 170px;
  top: 0;
  opacity: 1;
  padding-right: 5px;
}
#cssmenu ul ul li a {
  width: 130px;
  border-bottom: 1px solid #eeeeee;
  padding: 10px 20px;
  font-size: 12px;
  color: #9ea2a5;
  background: #ffffff;
  -webkit-transition: all .35s ease;
  -moz-transition: all .35s ease;
  -ms-transition: all .35s ease;
  -o-transition: all .35s ease;
  transition: all .35s ease;
}
#cssmenu.align-right ul ul li a {
  text-align: right;
}
#cssmenu ul ul li:hover > a {
  background: #f2f2f2;
  color: #8c9195;
}
#cssmenu ul ul li:last-child > a,
#cssmenu ul ul li.last > a {
  border-bottom: 0;
}
#cssmenu > ul > li > ul::after {
  content: '';
  border: 6px solid transparent;
  width: 0;
  height: 0;
  border-bottom-color: #ffffff;
  position: absolute;
  top: -12px;
  left: 30px;
}
#cssmenu.align-right > ul > li > ul::after {
  left: auto;
  right: 30px;
}
#cssmenu ul ul li.has-sub::after {
  border: 4px solid transparent;
  border-left-color: #9ea2a5;
  right: 10px;
  top: 12px;
  -moz-transition: all .2s ease;
  -ms-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
  -webkit-transition: -webkit-transform 0.2s ease, right 0.2s ease;
}
#cssmenu.align-right ul ul li.has-sub::after {
  border-left-color: transparent;
  border-right-color: #9ea2a5;
  right: auto;
  left: 10px;
}
#cssmenu ul ul li.has-sub:hover::after {
  border-left-color: #ffffff;
  right: -5px;
  -webkit-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
#cssmenu.align-right ul ul li.has-sub:hover::after {
  border-right-color: #ffffff;
  border-left-color: transparent;
  left: -5px;
  -webkit-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
@media all and (max-width: 100px), only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 100px), only screen and (min--moz-device-pixel-ratio: 2) and (max-width: 100px), only screen and (-o-min-device-pixel-ratio: 2/1) and (max-width: 100px), only screen and (min-device-pixel-ratio: 2) and (max-width: 100px), only screen and (min-resolution: 192dpi) and (max-width: 100px), only screen and (min-resolution: 2dppx) and (max-width: 100px) {
  #cssmenu {
    width: 996px;
  }
  #cssmenu.align-center ul {
    text-align: left;
  }
  #cssmenu.align-right > ul > li {
    float: none;
  }
  #cssmenu ul {
    width: auto;
  }
  #cssmenu .submenuArrow,
  #cssmenu #indicatorContainer {
    display: none;
  }
  #cssmenu > ul {
    height: auto;
    display: block;
  }
  #cssmenu > ul > li {
    float: none;
  }
  #cssmenu li,
  #cssmenu > ul > li {
    display: none;
  }
  #cssmenu ul ul,
  #cssmenu ul ul ul,
  #cssmenu ul > li:hover > ul,
  #cssmenu ul ul > li:hover > ul,
  #cssmenu.align-right ul ul,
  #cssmenu.align-right ul ul ul,
  #cssmenu.align-right ul > li:hover > ul,
  #cssmenu.align-right ul ul > li:hover > ul {
    position: relative;
    left: auto;
    top: auto;
    opacity: 1;
    padding-left: 0;
    padding-right: 0;
    right: auto;
  }
  #cssmenu ul .has-sub::after {
    display: none;
  }
  #cssmenu ul li a {
    padding: 12px 20px;
  }
  #cssmenu ul ul li a {
    border: 0;
    background: none;
    width: auto;
    padding: 8px 35px;
  }
  #cssmenu.align-right ul ul li a {
    text-align: left;
  }
  #cssmenu ul ul li:hover > a {
    background: none;
    color: #8c9195;
  }
  #cssmenu ul ul ul a {
    padding: 8px 50px;
  }
  #cssmenu ul ul ul ul a {
    padding: 8px 65px;
  }
  #cssmenu ul ul ul ul ul a {
    padding: 8px 80px;
  }
  #cssmenu ul ul ul ul ul ul a {
    padding: 8px 95px;
  }
  #cssmenu > ul > #menu-button {
    display: block;
    cursor: pointer;
  }
  #cssmenu #menu-button > a {
    padding: 14px 20px;
  }
  #cssmenu ul.open li,
  #cssmenu > ul.open > li {
    display: block;
  }
  #cssmenu > ul.open > li#menu-button > a {
    color: #fff;
    border-bottom: 1px solid rgba(150, 150, 150, 0.1);
  }
  #cssmenu ul ul::after {
    display: none;
  }
  #cssmenu #menu-button::after {
    display: block;
    content: '';
    position: absolute;
    height: 3px;
    width: 22px;
    border-top: 2px solid #7a8189;
    border-bottom: 2px solid #7a8189;
    right: 20px;
    top: 15px;
  }
  #cssmenu #menu-button::before {
    display: block;
    content: '';
    position: absolute;
    height: 3px;
    width: 22px;
    border-top: 2px solid #7a8189;
    right: 20px;
    top: 25px;
  }
  #cssmenu ul.open #menu-button::after,
  #cssmenu ul.open #menu-button::before {
    border-color: #fff;
  }
}



*{
    margin: 0px;
    
}

html,body{ 
height: 100%;
margin: 0;
padding: 0;
}

#contentwrapper {
   min-height: 100%;
   
   height: 100%;
   margin: 0 auto -280px;
   
   
}

#footer_bg, .push 
{
  	
  height: 50px;
  clear: both;
}

.foto{
padding-right: 60px;

Float: right;	
}

.box_home1 {
	width: 250px;
	height: 250px;
	float:left;
	margin-left: 60px;
	color: white ;
	
	background:url(images/Box_1.jpg) no-repeat;
	
}

#achtergrond{
background-color: white;
height: auto;	
	
}

#achtergrond, a{
padding-left: 0px;
padding-top: 0px;
color: white;	
}



.box_home2{
	width:996px;
	height: 299px;
	margin-top: 100px;
	
	
}

.tekst {

color: white;
Font-size: 13px;
padding-left: 20px;
padding-top: 20px;	
}



img, fieldset{
    padding: 0px;
    border: none;
	margin: 0px;
	line-height: 0px;
}





body{	
    font: 12px Arial, Helvetica, sans-serif;
    color: white;
    background: #29313c url(images/bg.png);
	width: 997px;
	margin: auto;
text-align: left;

	
	
	
}

h2{
	font: 14px Arial, Helvetica, sans-serif;
	font-weight: bold;
	color: #f07905;
	padding-bottom: 10px;	
}

h3{
	font: 18px Arial, Helvetica, sans-serif;
	font-weight: normal;
	color: #ffffff;
	padding-bottom: 10px;
	padding-top: 13px;	
	text-align: center;
}

h4{
	font: 18px Arial, Helvetica, sans-serif;
	font-weight: normal;
	color: #f07905;
	padding-bottom: 20px;	
}

.clear{
	clear: both;	
}



/*
	wrapper
*/

#wrap{
	
width: 997px;

	

}




#top_box{
	padding-bottom: 0px;
}

/*logo*/

#logo{
	width: 250px;
	height: 58px;
	margin-top: 50px;
	Background: url(images/Logo.png ) no-repeat top left;
	float: left;
}

#logo h1 a{
	font: 14px Arial, Helvetica, sans-serif;
	color: #000000;
	font-weight: bold;
	text-decoration: none;
	padding-left: 38px;
}

#logo a small{
	font: 12px Arial, Helvetica, sans-serif;
	color: #000000;
	font-weight: normal;
	text-decoration: none;
	padding-left: 38px;
}



/*
	content
*/

.content_top{
	background: url(images/content_top.png) no-repeat top left;
	height: 19px;
		
}

.content_bot{
	background: url(images/content_bot.png) no-repeat top left;
	height: 20px;
	position: relative;
	
	
	
	
	
}

#content{
	background: #ffffff;
	padding: 0px 15px;
		
}

/*
	prew_box
*/

#prew_button_box ul{
	padding-left: 0px;
	padding-top: 10px;
	width: 101px;
	margin: 0 auto;
    list-style: none;
}

#prew_button_box ul li{
	display: inline;
}

#prew_button_box ul li a{
    display: block;
	float: left;
    width: 24px;
    height: 22px;
	background: url(images/prew_img_button.png) no-repeat center;
	margin-right: 1px;
}

#prew_button_box ul li a:hover,  #prew_button_box ul li .active{
	background: url(images/prew_img_button_hover.png) no-repeat center;
}

/*
	column 3 box
*/

#column_box{
	background: url(images/st_repeat.jpg) repeat-x top;
	margin: 15px 19px 0px 16px;
}

#column_box p{
	font: 13px Arial, Helvetica, sans-serif;
	color: #666666;
}

#table_1{
	background:white;
	width: 997px;
	height:auto;
}

#bg_left{
	background: url(images/st_left.jpg) no-repeat top left;
	float: left;
	width: 46px;
	height: 151px;
}


#column1, #column2, #column3{
	float: left;
	width: 230px;
	height: 121px;
	padding: 20px 45px 10px 20px;
}

#column1, #column2{
	background: url(images/st_center.jpg) no-repeat top right;
}

#column3{
	background: url(images/st_right.jpg) no-repeat top right;
}

/*
	last_box
*/

#last_box{
	background: url(images/bor_vertical.gif) repeat-y  492px;
	margin-top: 33px;
}

#last_box_left{
	width: 465px;
	float: left;
	padding-left: 15px;
}



#last_box_left img{
	
	padding: 0px 10px 5px 80px;
}

#last_box_right{
	width: 445px;
	float: right;
	
	
}

#last_box_right1{
	float: left;
	width: 210px;
	
	
}

#last_box_right2{
	float: right;
	width: 200px;
}

#last_box_right2 p{
	line-height: 20px;	
}



.ls2{
    list-style: none;
    padding-left: 0px;
	

}
.ls2 a{
	color: #00000;
	font-size: 17px;	
	
}
a.extern:hover{
	
color: #000DFF;	
}



.ls2 li{
    background: url(images/ls_black.gif) no-repeat 0px 6px;
    margin-bottom: 5px;
    padding-left: 15px;
	color: black;
	
}

/*
	footer_top
*/

#footer_bg{
	background: url(images/footer_bg.png) no-repeat top left;
	height: 260px;
	margin-top:165px ;
	margin-bottom: 0px;
	
}

#footer_top{
	padding-top: 10px;
	padding-bottom: 0px;
}



#footer_top p, #footer_top p a, #footer_top a{
	color: #ffffff;

}



#footer_top_column1{
	float: left;
	width: 175px;
	padding-left: 25px;
}

#footer_top_column2{
	float: left;
	padding-left: 180px;
	width: 240px;
}

#footer_top_column2 p{
	line-height: 20px;
}

#footer_top_column3{
	float: left;
	width: 215px;
	padding-left: 160px;
	
}

#footer_top_column4{
	float: left;
	padding-left: 25px;
	width: 250px;
}

.ls{
    list-style: none;
    padding-left: 0px;
}

.ls a{
	color: #FFFFFF;	
}

.ls li{
    background: url(images/ls_white.gif) no-repeat 0px 6px;
    margin-bottom: 5px;
    padding-left: 0px;
}



.ls{
    list-style: none;
    padding-left: 0px;
}

.ls li{
    background: url(images/ls1.gif) no-repeat 0px 6px;
    margin-bottom: 8px;
    padding-left: 15px;
}

.under{
	text-decoration: underline;
}

/*
	footer_bot
*/

#footer_bot{
	background: url(images/bor_gorizontal.gif) top repeat-x;
	padding: 15px;
	margin: 0px 20px;
	text-align: center;
}

#footer_bot p a, #footer_bot p{
	color: #ffffff;
}


/*
scroll styles here
*/

.item { width: 966px; height: 304px;}
.item img {float:left;}
.item h2 { border:none; margin-bottom:15px;}

.scrollable { position:relative; overflow:hidden; width: 966px; height: 304px;} 
.scrollable .items { width:20000em; position:absolute;}
.scrollable .items div { float:left;} 
.scrollable .items .item { overflow:hidden;}
.scrollable .items .item p { line-height:16px;}
.navi { width:auto; height:20px;  margin: 15px 0; padding-left: 400px;} 
.navi a { width: 24px; cursor:pointer; height: 22px; float:left; margin:0 0 0 3px; background:url(images/prew_img_button.png) no-repeat scroll top; display:block; font-size:1px;} 
.navi a:hover, .navi a.active { background-position:left top; margin:0 0 0 3px;  background:url(images/prew_img_button_hover.png) no-repeat scroll top}

.header1
{
width: 966px; height: 304px;
}

.header2
{
width: 966px; height: 304px;
}

.header3
{
width: 966px; height: 304px;
}

.header4
{
width: 966px; height: 304px;
}

.top_logo
{
Width: 997px;
background-color: white;
	
	
}

.main
{width:967px; margin:0px auto; padding: 15px; background:white;  text-align: center;   }

.main img { width:450px;   text-align: center; padding:10px; }

.comingsoon
{width:967px; margin:0px auto; padding: 15px; background:white;  text-align: center;   }

.comingsoon img { width:967px;   text-align: center; padding-top:30px; }

/* ------------------------------------------------------------------------
DO NOT CHANGE
------------------------------------------------------------------------- */


div.pp_overlay {background: #000;display: none;left: 0;position: absolute;top: 0;width: 100%;z-index: 9500;}
div.pp_pic_holder {display: none;position: absolute;width: 100px;z-index: 10000;}

#contactgegevens
{ background:url(images/Achtergrond.jpg) no-repeat scroll top;
height: 600px;
width:997px;


	
}

#openingstijden{
padding-top:190px ;
	
}
#tijden1 {
	color: white;
	float: left;
	padding-top: 58px;
}


.contact-style
{ color: white;
padding-left: 20px;
font-size: 16px;
	
}
.contact-style a{
color: white;
font-size: 16px;	
}

#contactbox-left{
color: white;
padding-left: 15px;
padding-top: 50px;
float: left;

	
	
}

#contactbox-mid{
color: white;
float: left;
padding-left: 15px;
padding-top: 50px;
width: 150px;
	
}

#tijden{

padding-top: 0px;
padding-left:0px;
width: 120px;
color: white;
float: left;
	
}

#tijd {
padding-top: 0px;
padding-left: px;
weidth:20px;
color:black;	
}

#maps {

float: right;
height: 400px;
width:400px;
margin-right: 80px;
padding-top: 8px;

}

#tekst a{
Color: white;
padding-left: 20px;

font-size: 25px;
}

#tekst {
padding-top: 8px;
	
}
#tekst1 {
padding-top: 8px;
	
} 

#wielrenfietsen {
Float: left;
margin-left: 270px;	
background: url(images/Knop%20racefietsen.jpg);
width: 200px;
height: 50px;	
}

#wielrenfietsengeslecteerd {
Float: left;
margin-left: 270px;	
background: url(images/Knop%20racefietsen%20geselecteerd.jpg);
width: 200px;
height: 50px;	
}

#tekst1 a{
	
Color: white;
padding-left: 20px;
font-size: 25px;	
}

#mountainbike {
margin-left: 150px;
background: url(images/Occasions.jpg);
width: 200px;
height: 50px;
float: left;
	
}

#mountainbikegeselecteerd {
margin-left: 150px;
background: url(images/Knop%20mountainbikes%20geselecteerd.jpg);
width: 200px;
height: 50px;
float: left;	
	
}



	


#verzekering {
Background-color: white;
width: 997px;
height: 1200px;

	
}

#backgroundverz{
background:url(images/backverzekering.jpg) no-repeat ;
height: 1180px;
margin-left: 3.5px;	
}

#verzekering p{

color:white;
font-size: 16px;
padding-left: 20px;
padding-right: 20px;
	
}

#verzekering a{

color:white;
font-size: 16px;
padding-left: 0px;
padding-top: 0px;

	
}

#verzekering_kop {
background: white;
padding-left:360px ;
padding-bottom: 10px;	
	
}

#verzekering_kop p{
font-size: 30px;
color: black;

}