html{
	font-family: 'open sans',  arial;
	font-size: 14px;
	color: #333;
}
.centre{
	text-align: center;
}

.left{
	text-align: left;
}

.right{
	text-align: right;
}



.fullCentre{
display: flex;
align-items: center;
justify-content: center;
}

.align-top{
vertical-align: top;
}


.strikethrough{
text-decoration: line-through;
}

/*COLOURS*/

.red, a.red{
	color:red !important;
}


.text_content p{
	line-height: 1.5em;
	margin-bottom: 20px;
}

.text_content a{
	text-decoration: none;
	color: blue;
}

.text_content a:hover{
	text-decoration: underline;
}

.text_content ul,
.text_content ol{
	line-height: 1.5em;
	margin-left: 30px;
}

.text_content ul{
	list-style-type: disc;
}

.text_content ul ul{
	list-style-type: square;
	margin-top: 0px;
}

.text_content ol{
	list-style-type: decimal;
}

.text_content ol ol{
	list-style-type: lower-roman;
	margin-top: 0px;
}

.text_content li{
	margin-top: 5px;
}

h1{
	font-size: 32px;
	line-height: 40px;
	font-weight: normal;
	margin-bottom: 30px;
	padding-top:20px;
}

h2{
	margin-bottom: 20px;
	line-height: 1.3em;
	font-size: 24px;
	font-weight: normal;
}


h3{
	margin-bottom: 20px;
	line-height: 1.3em;
	font-size: 18px;
	font-weight: normal;
}

.text_content table,
.text_content img,
.text_content iframe{
	max-width: 100% !important;
}

.text_content img{
	height: auto !important;
}

.text_content table{
	width: 100% !important;
	margin-top: 25px;
	line-height: 1.4em;
}

.text_content table th,
.text_content table td{
	padding: 10px;
	border: 1px solid white;
}

.text_content table th{
	background-color: #555;
	color: white;
	text-align: center;
	vertical-align: middle;
}

.text_content table td{
	background-color: #eee;
	text-align: left;
}


.height150{
	min-height:150px;
}

.height200{
	min-height:200px;
}

.width200{
	width:200px;
	display: inline-block;
}

.width150{
	width:150px;
	display: inline-block;
}

.width100{
	width:100px;
}
.width50{
	width:50px;
}


.displayMobileDefault{
	display:none;
}

.displayDesktopDefault{
	display:block;

}

@media(max-width: 1200px) {

	.displayMobileDefault{
		display:block;
	}

	.displayDesktopDefault{
		display:none;
	}

}