#main * {
    font-family: 'Open Sans', sans-serif;
}

a.bigmenu {
	display:block;padding:1.5em;
	background-color:#4CAF50;
	color:white;
	text-decoration: none;
	font-size: 150%;
}
a:hover.bigmenu {
	background-color:#3C8C40;
	color:white;
	text-decoration: none;
}

#main h1 {font-size:24pt;}
#main h2 {font-size:16pt;}
#main h3 {font-size:14pt;}

.main {font-family: 'Open Sans', sans-serif;}
label,input {font-size:125%;}
select {width: 100%;
    	padding: 16px 20px;
    	border: none;
    	border-radius: 4px;
    	background-color: #f1f1f1;
	font-size:14pt;}

input[type=checkbox] {font-size:125%;}
input[type=button], input[type=submit], input[type=reset] {
	background-color: #4CAF50;
	border: none;
	color: white;
	padding: 16px 32px;
	text-decoration: none;
	margin: 4px 2px;
	cursor: pointer;}

.rowspace { 
                border-collapse:separate; 
                border-spacing:0 15px; 
}
.container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 20px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/* Hide the browser's default radio button */
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.container input:checked ~ .checkmark {
  background-color: #2196F3;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.container .checkmark:after {
 	top: 9px;
	left: 9px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: white;
}

a.src, p.src  {font-size:125%;}

/*********CUSTOMISED CHECKBOX*************/
/* Customize the label (the container) */
.ccontainer {
  display: block;
  position: relative;
/*  margin-bottom: 12px; */
  cursor: pointer;
  font-size: 20px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.ccontainer input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.ccheckmark {
  position: absolute;
  top: 0;
/*  left: 0; */
  height: 25px;
  width: 25px;
  background-color: #eee;
  margin-left: 2em;
}

/* On mouse-over, add a grey background color */
.ccontainer:hover input ~ .ccheckmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.ccontainer input:checked ~ .ccheckmark {
  background-color: #2196F3;
}

/*testing when checkbox checked outside of .container
.cchceckmark input:checked {
  background-color: #2196F3;
}

/* When the checkbox is disabled, add a grey background */
.ccontainer input:disabled ~ .ccheckmark {
  background-color: grey;
}

/* Create the checkmark/indicator (hidden when not checked) */
.ccheckmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.ccontainer input:checked ~ .ccheckmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.ccontainer .ccheckmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.col-30 {
  float: left;
  width: 30%;
  margin-top: 6px;
  font-size: 1.3em;
}

.col-50 {
  float: left;
  width: 50%;
  margin-top: 6px;
  font-size: 1.3em;
}

.col-20 {
  float: left;
  width: 20%;
  margin-top: 6px;
  font-size: 1.3em;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}
