@charset "utf-8";
/* CSS Document */

/* Body background colour */
body {
	background:rgba(40,88,155,0.2)   /* #EDE9E9 */
}

/* Unordered List no bullet points */
.style-cl ul {
	text-decoration: none;
	list-style-type: none;
}

/* active page */
nav .current {
	text-decoration:none
	text-decoration-color: #F70F13;
	background-color:#ADF08A;
}

/* anchor colour */
a {
  color:#28589B;
  text-decoration:none;
  background-color: transparent;
}

/* Primary Button Bar Hover */
.btn-primary:hover {
  color: #FFF;
  background-color: #transparent;
  border-color: #0062CC;
}

/* Logo Colour Red hr */
hr.lcred {
	border: none;
	height: 3px;
	color: #AE1E28;
	background-color: #AE1E28;
}

/* Thick red border */
hr.new4 {
  border: 1px solid red;
}

/* Set button width */
.custom {
    width: 200px !important;
}

/* Column background colour white */
.colbgcolwh {
	background:rgba(255,255,255,0.5)
}

/* Column background colour pale blue */
.colbgcolpb {
	background:rgba(191,238,237,1.00)
}

/* Active Page Button background colour */
.custcol {
	background:rgba(174,30,40,0.5)
}

/* Menu Bar Buttons */
.btn-outline-primary {
  color:#FFFFFF;
  border-color: #FFFFFF;
  border-width:thick;
}

	/* Anchor text colour in button 
.btn-outline-primary a {
  color:#28589B;
  text-decoration:none;
  background-color: transparent;
  font-weight: bold;
}   */

	/* Button hover colour using rgba. remove -colour from background & border tag. */
.btn-outline-primary:hover {
  color: #fff;
  background: rgba(51,138,58,0.5);   /* original colour #007bff */
  border-color: #FFFFFF;   /* original colour #007bff   rgba(51,138,58,0.3) */
  border-width: thick;
}

.btn-outline-primary:focus, .btn-outline-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-outline-primary.disabled, .btn-outline-primary:disabled {
  color: #007bff;
  background-color: transparent;
}

.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active,
.show > .btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

