/*
Collection of colors that are used
though out the site. Contains both
font color and background color
*/

.white {
	color: white;
}

.black {
	color: black;
}

.off-black{
    color: #1c1c1c;
}

.dark-blue {
	color: #1677cc;
}

.blue {
	color: #026CD0;
}
.red{
    color: #da0e0e;
}
.green {
	color: #008900;
}

.purple {
	color: #9048c4;
}

.grey {
	color: #545454;
}

.light-grey {
	color: #9a9a9a;
}

.gold{
    color: #ebff00;
}

.orange{
    color: #da370a;
}

.bg-body {
	background-color: #f6f6f6;
}

.bg-blue {
/*	background-color: #026CD0;*/
    background-color: #026CD0;
}
.bg-red{
    background-color: #da0e0e;
}
.bg-purple {
	background-color: #9048c4;
}
.bg-green {
	background-color: #008900;
}
.bg-grey{
    background-color: #c3c3c3;
}
.bg-light-grey {
	background-color: #9a9a9a;
}

.bg-faint-grey{
    background-color: #e5e5e5;
}
