// Color variables (appears count calculates by raw css)
@colour15: #cccccc; // TODO not defined as a configurable colour yet

// Width variables (appears count calculates by raw css)
@width0: 100%; // Appears 3 times

// Height variables (appears count calculates by raw css)
@height0: 100%; // Appears 1 time

#printSection {
	display: none;
}
.signature {
	width: @width0;
	td {
		vertical-align: top;
	}
}
.tableModal {
	border-collapse: separate;
	width: @width0;
}
.tableModal td, .tableModal th, .tableModal thead  {
	padding-left: 10px;
	padding: 5px;
	vertical-align: top;
}
.tableCustomised {
	border-collapse: separate;
	height: @height0;
	width: @width0;
	th {
		background-color: @colour15;
		text-align: left;
	}
}
.tableCustomised td, .tableCustomised th, .tableCustomised thead  {
	padding-left: 10px;
	padding: 5px;
	vertical-align: top;
}
.signatureClass {
	text-align: center;
}