html {overflow: -moz-scrollbars-vertical;}

@viewport{
    zoom: 1.0;
    width: extend-to-zoom;
}

@-ms-viewport{
    width: extend-to-zoom;
    zoom: 1.0;
}

.row {
  display: flex;
}

.column {
  flex: 33.33%;
  padding: 5px;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 500px) {
  .column {
    width: 100%;
  }
}

img {
	display: block;
	margin-left: auto;
	margin-right: auto;
	max-width: 100%;
	height: auto;
	outline:none;
	border-style:none;
}

body {
	margin-top:0px;
	background-color: white;
	font-family: Arial,Sans-Serif;
	font-size: 11px;
	border:0px solid blue;
}

#content{
	position:relative;
	margin:0px auto;
	max-width:100%;
	width:90em;
	text-align:left;
	background-color:transparent;
	border:0px solid green;
}

#header{
	position:relative;
	max-width:100%;
	width:auto;
	margin:10px 0px 10px 0px;
	text-align:center;
	background-color:transparent;
	border:0px solid red;
}
/* START OF HEADER ELEMENTS */
div#logo{
	display:inline-block;
	margin:20px 20px 20px 20px;
	border:0;
 	max-width: 100%;
  	left: 0px;
  	top: 0px;
	max-height: 100%;
	vertical-align:middle;
 	z-index: 0;
}

div#companyDetails{
	display:inline-block;
	margin:20px 20px 20px 20px;
	font-family: Arial,Sans-Serif;
	font-size: 1.5em;
	font-weight:600;
	text-align:center;
	vertical-align:middle;
	background-color:transparent;
	border:0px solid blue;
}

div#social{
	display:inline-block;
	margin:2px 2px 2px 2px;
	border:0;
	width:4em;
 	max-width: 100%;
	height: auto;
	vertical-align:middle;
 	z-index: 0;
}

/* END OF HEADER ELEMENTS */

#detail{
	position:relative;
	margin:0 auto;
	width:auto;
	max-width:100%;
	text-align:center;
	background-color:transparent;
	border:0px solid yellow;
}

h1{
	font-size: 2.5em;
	font-weight:600;
	line-height: 1.5;
	text-align:center;
}

h2{
	font-size: 1.75em;
	font-weight:600;
	line-height: 1.5;
	text-align:center;
}

p {
	font-family: Arial,sans-serif;
	font-size: 1.5em;
	font-weight:600;
	line-height: 1.5;
	text-align:justify;
	background-color:white;
	margin:0px 90px 10px 90px;
	padding:10px 20px 10px 20px;
	border:1px solid black;
	border-radius:15px;
}

p.left{margin:0px 140px 10px 40px;}
p.middle{margin:0px 90px 10px 90px;}
p.right{margin:0px 40px 10px 140px;}

.centred{
	text-align:center;
}	

p.highlight
{
	max-width:100%;
	font-size:1.75em;
	color:blue;
	border:0px solid red;
	background-color:#ffffcc;
	margin:60px 0px 70px 0px;
	padding:10px 0px 10px 0px;
	font-weight:900;
	text-align:center;
}

.highlight
{
	font-size:1em;
	color:red;
}

.red_superscript{
	color:red;
	font-size:x-small;
	vertical-align: super;
}

#detail>a {
	background-color: transparent;
	color: #00ffff;
	font-family: Arial,sans-serif;
	font-size: 1.25em;
	text-decoration: none;
	text-align: center;
	padding: 20px 15px 20px 15px;
	display:inline;
}

#footer{
	position:relative;
	font-family: Arial,sans-serif;
	font-size: 1.2em;
	width:auto;
	max-width:100%;
	text-align:center;
}

p.footer {
	font-size: 1.2em;
	line-height: 1.5;
	font-weight: 600;
	text-align:center;
	background-color:white;
	margin:5px 0px 5px 0px;
	padding:8px 0px 6px 0px;
	border:0px solid black;
	border-radius:20px 20px 20px 20px;
}

p.footer_base {
	font-size: 1em;
	line-height: 1.5;
	font-weight: 600;
	text-align:center;
	background-color:transparent;
	margin:5px 0px 5px 0px;
	padding:0px 10px 0px 10px;
	border:0px solid red;
}

span.links img
{
	vertical-align:middle;
	margin:0px 40px 0px 10px;
}

.back-to-top {
    background-color: #000000;
    color: #FFFFFF;
    opacity: 0;
    transition: opacity .6s ease-in-out;
    z-index: 999;
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    box-sizing: border-box;
    border-radius: 50%;
  }

  a.back-to-top {
    font-weight: 1000;
    letter-spacing: 2px;
    font-size: 14px;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.6;
    padding-left: 2px;
    padding-top: 14px;
  }

  .back-to-top:hover, .back-to-top:focus, .back-to-top:visited {
    color: #FFFFFF;
  }

  .back-to-top.show {
    opacity: 1;
  }