footer {
	width: 100%;
	margin: 0px auto 0px;
	text-align: center;
	padding: 1px;
}

body {
	margin: 0;
	font-size: 120%;
	background: white;
}

section {
	width: 100%;
	margin: 0px auto;
	background: white;
	border-radius: 0px 0px 0px 0px;
	padding: 1px;
}

#centre {
	float: center;
	width: 45%;
	margin: 0px auto 0px;
	background-color: grey;
	color: white;
	padding: 10px;
}

#centre-wide {
	float: center;
	width: 95%;
	margin: 0px auto 0px;
	background-color: grey;
	color: white;
	padding: 10px;
}

#left-col {
	float: left;
	margin-left: 10px;
	margin-top: 0px;
	margin-bottom: 10px;
	background-color: grey;
	color: white;
	padding: 15px;
}

h3, h4 {
	margin-top: 0px;
	margin-bottom: 5px;
	text-align: center;
}

.label { 
	float: left; 
	width: 250px; 
	text-align: right; 
	clear: left; 
	margin-left: 0px;
	margin-right: 5px;
	margin-top: 0px;
	margin-bottom: 0px;
}

input[type=text], input[type=password] {
	margin-left: 10px;
	font-size: 16px;
}

textarea {
	margin-left: 10px;
	margin-top: 0px;
	margin-bottom: 0px;
	resize: none;
	font-size: 16px;
	width: 371px;
}

.cancel-btn {
	width: 20%; 
	margin-top: 10px;
	margin-bottom: 10px;
	color: white; 
	font-family: arial;
	font-size: 16px; 
	font-weight: bold; 
	text-align: center;
	text-decoration: none;
	background: #56c1ff; 
	border:1px solid #56c1ff;
	border-radius: 20px;
	padding: 10px;
}

.cancel-btn:hover {
	background-color: #008ee0;
	color: white;
}

.save-btn {
	margin: 5px;
	font-size: 100%;
	background-color: #14b1bb;
	border: 1px solid #14b1bb;
	border-radius: 20px;
	color: white;
	padding: 8px 16px;
}

#town_table, #doc_types_table  {
	background-color: white;
	color: black;
	float: left;
	width: auto;
	display: block;
    overflow-y: auto;    /* Trigger vertical scroll    */
    overflow-x: hidden;  /* Hide the horizontal scroll */
	padding: 5px 5px 5px 5px;
}

#town_table td {
	padding: 0px;
}

#town_table tr:hover {
	background-color: LightCyan;
}

#postcode_table  {
	background-color: white;
	color: black;
	float: left;
	width: auto;
	height: 300px; 
	display: block;
    overflow-y: auto;    /* Trigger vertical scroll    */
    overflow-x: hidden;  /* Hide the horizontal scroll */
	padding-right: 20px;
}

legend {
	font-size: 16px;
}

figure {
	/*border: 3px black solid;*/
	padding: 4px;
	margin: auto;
}

figcaption {
	text-align: center;
}

img.photo {
	display: block;
	margin-left: auto;
	margin-right: auto;
	height: 130px;
	width: auto;
	border: 5px solid #555;
	padding: 5px;
}

/* Create three equal columns that floats next to each other */
.column {
	float: left;
	width: 33%;
	padding: 10px;
	word-wrap: break-word;
}

/* Clear floats after the columns */
.row:after {
	content: "";
	display: table;
	clear: both;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
	.column {
		width: 100%;
	}

