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

/* 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;
}

/* LINK COLOURS */
a {
    color: #000000;
    font-weight: 400;
    text-decoration: none;
    -webkit-transition: color 250ms linear;
    -moz-transition: color 250ms linear;
    -o-transition: color 250ms linear;
    -ms-transition: color 250ms linear;
    transition: color 250ms linear;
    border-bottom: 1px solid #ff6600;
    box-shadow: 0px -4px 0px #ff6600 inset;
}
a:hover {
    color: #ff6600;
    text-decoration: none;
    -webkit-transition: color 250ms linear;
    -moz-transition: color 250ms linear;
    -o-transition: color 250ms linear;
    -ms-transition: color 250ms linear;
    transition: color 250ms linear;
    border-bottom: 12px solid #ff6600;
}

/* 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) {
}
