<style>
* {
    box-sizing: border-box;
}

html, body {
  margin: 0;
  height: 100%;
  min-height: 100%;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  display: flex;
  flex-direction: column;
}

h1 {
	display: block;
    font-size: 2em;
    margin-top: 0.67em;
    margin-bottom: 0.67em;
    margin-left: 0;
    margin-right: 0;
    font-weight: bold;
}
h2 {
    display: block;
    font-size: 1.5em;
    margin-top: 0.83em;
    margin-bottom: 0.83em;
    margin-left: 0;
    margin-right: 0;
    font-weight: bold;
}
h3 {
    display: block;
    font-size: 1.17em;
    margin-top: 1em;
    margin-bottom: 1em;
    margin-left: 0;
    margin-right: 0;
    font-weight: bold;
}

p {
	font-size: 1em;
	font-style: italic;
}

/*Style the caret down icon */
.caret-down {
    float: right;
    padding-right: 4px;
}

/* **************************************** header */
.header {
	flex: none;
    padding: 0px;
    margin: 0px;
    text-align: center;
    background: white;
    color: white;
}

/*  **************************************** navigation bar bovenaan*/
#topNav ul {
	background: transparent;
    list-style-type: none;
    margin: 0px;
    padding: 0px;
    overflow: hidden;
}
#topNav li {
	float: left;
	position: relative;
	width: 150px;
	list-style: none;
    margin: 0px;
    padding: 0px;
}
#topNav li:hover {			/* hover eerste niveau */
	background: #ddd;
	z-index: 2;
}
#topNav li li:hover {		/* hover tweede niveau */
	background: #bbb;
}
#topNav ul ul {				/* sub menu onzichtbaar */
	opacity: 0;
	display: none;
}
#topNav li:hover > ul { 	/* maak submenu zichtbaar bij hovering */
	display: block;
	opacity: 1;
}

.topNavBar {
	overflow: visible;			
	background: gold;
	width: 100%;
	height: 35px;
}
.topNavBar button, .button-n1 {
    padding: 0px 3px 3px 10px;
    text-decoration: none;
    font-size: 16px;
    width: 150px;
    height: 32px;
    color: black;
    background-color: transparent;
    text-align: left;
    cursor: pointer;
    outline: none;
}
.topNavBar .button-n1 {
    padding: 0px 3px 0px 10px;
    margin: -5px 0px 0px 0px;
	border-right: 2px solid white;
    height: 43px;
}
.topNavBar .button-n2 {
	font-size: 14px;
 }

/*  **************************************** main container */
.mainframe {
  display: flex;
  flex-direction: column;
	flex: auto;
    height: 100%;
    width: 100%;
}

/*  **************************************** Footer */
.footer {
	flex: none;
   	position: fixed;
   	left: 0;
  	bottom: 0;
   	width: 100%;
	padding: 5px;
    font-size: 10px;
    text-align: right;
    background: #ddd;
}

/* **************************************** voor telefoons */
/* Responsive layout - when the screen is less than 700px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 700px) {
    .mainframe {   
        flex-direction: column;
    }
}
/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
    .topNav a {
        float: none;
        width:100%;
    }
}

/* Clear floats */
.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

/* Change styles for cancel button and signup button on extra small screens */
@media screen and (max-width: 300px) {
  .cancelbtn, .signupbtn {
    width: 100%;
  }
}

iframe {
	margins: 0;
	padding: 0;
	width: 100%;
	border-style: none;
	background-color:inherit;
	overflow:visible;
}

form {
	width: 400px;
	padding:0px 0px 30px 0px;
}
label {color: green;}

/* Full-width input fields */
input[type=text], input[type=password], input[type=email], input[type=tel], select {
  font-size: 14px;
  width: 90%;
  padding: 10px;
  margin: 5px 0 15px 0;
  display: inline-block;
  border: none;
  background: #f1f1f1;
}
input[type=radio] {
	width: 5%;
	margin-bottom:12px;
}
input[type=text]:focus, input[type=password]:focus, input[type=email]:focus, input[type=tel]:focus, select:focus {
  background-color: #ddd;
  outline: none;
}
textarea {
	padding: 0px;
	margin: 0px;
}

hr {
	width: 100%;
  border: 1px solid #0000a0;
  margin-bottom: 25px;
}

button {
  background-color: #4CAF50;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  cursor: pointer;
  width: 100%;
  opacity: 0.9;
}
button:hover {
  opacity:1;
}
.cancelbtn {
  background-color: #f44336;
}
.cancelbtn, .signupbtn, .okbtn {
  float: left;
  width: 50%;
}

/* ******************************* clubrecords */
.clubrecords {
	padding: 20px;
}
.container {
  padding: 16px;
}
table.rectabel {border: 1px;}
table.rectabel	th					{font-size: 12px; font-weight: bold; font-style: italic; background-color: #000099; color: #FFFFFF; padding:5px;}
table.rectabel	tr:nth-child(even)	{background: #f0f0f0;}
table.rectabel	tr:hover			{background: #FFEBCC;}
table.rectabel	tr.oudrec			{color: gray; display: none;}
table.rectabel	td					{font-size: 14px; vertical-align: top; padding: 0px 20px 0px 10px; margin: 0px; border-bottom: 1px solid #f0f0f0;}
.icon				{background: transparent; color: black; border: none; margin: 0px; padding: 0px; cursor: pointer; font-size: 16px;}

