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

/* paginaverdeling in 2 kolommen naast elkaar voor elk item activiteiten*/
.column {
  float: left;
  font-size:90%;
}
.column a:link {
	color:#669999;
	font-weight:bold;
	font-size:110%;
}
.column a:hover {
	color:#999966;
	font-weight:bold;
	font-size:110%;
}
/* kolom 1 links */
.column.c1 {
	width: 50%;
	line-height: 1.5;
	padding-top:0px;
	padding-left: 0px;
	padding-right:10px;
	padding-bottom:10px;
}

/* kolom 2 rechts */
.column.c2 {
	width: 50%;
	line-height: 1.5;
	padding-top:0px;
	padding-left: 10px;
	padding-right:10px;
	padding-bottom:10px;
}

/* lijn leegmaken na kolommen */
.row:after {
  content: "";
  display: table;
  clear: both;
}
/* Responsive layout - 2 columns stack on top of each other instead of next to each other */
@media screen and (max-width: 768px) {
  .column.c1 {
    width: 100%;
	line-height: 1.5;
	padding-left: 10px;
	padding-right:10px;
	padding-top:0px;
	padding-bottom:10px;
  }
  .column.c2 {
    width: 100%;
	line-height: 1.5;
	padding-left: 10px;
	padding-right:10px;
	padding-top:0px;
	padding-bottom:10px;
  }
}


