@charset "UTF-8";
/* TEXT COLOURS */
.Black {
	color:#000;
}
.DarkGrey {
	color:#373A36;
}
.MediumGrey {
	color:#707271;
}
.DimGrey {
	color:#D1D1D1;
}
.LightGrey {
	color:#F0F0F0;
}
.White {
	color:#FFF;
}
.ACRed, .DarkRed {
	color:#990000;
}
.FireOrange, .Orange {
	color:#FF9900;
}

/* BACKGROUND COLOURS */
.bg_Black {
	background-color:#000;
}
.bg_DarkGrey {
	background-color:#373A36;
}
.bg_MediumGrey {
	background-color:#707271;
}
.bg_DimGrey {
	background-color:#D1D1D1;
}
.bg_LightGrey {
	background-color:#F0F0F0;
}
.bg_White {
	background-color:#FFF;
}
.bg_ACRed, .bg_DarkRed {
	background-color:#990000;
}
.bg_FireOrange, .bg_Orange {
	background-color:#FF9900;
}

/* LINK COLOURS */
a {
    color: rgb(255, 153, 0);
    text-decoration: none;
    transition: background 0s ease 0s, color 0.2s linear 0s;
}
a:focus, a:hover {
	color: rgb(255, 255, 255);
    text-decoration: none;
    transition: background 0s ease 0s, color 0.2s linear 0s;
}

/* BUTTON COLOURS */
#buttonAF {
	background-color: rgb(255, 153, 0);
    transition: background 0.2s ease 0s, color 0.2s linear 0s;
}
#buttonAF:focus, #buttonAF:hover {
	background-color: rgb(153, 5, 12);
    transition: background 0.2s ease 0s, color 0.2s linear 0s;
}



/* Mobile Layout specific typography: 480px and below. */

/* Tablet Layout specific typography: 481px to 768px. Inherits styles from: Mobile Layout. */
@media only screen and (min-width: 481px) {
}

/* Desktop Layout specific typography: 769px to a max of 1232px.  Inherits styles from: Mobile Layout and Tablet Layout. */
@media only screen and (min-width: 769px) {
}

/* Large screen layout with right column - same as (min-width: 481px). */
@media only screen and (min-width: 986px) {
}