/* COLOURS */
.white {
	color: #ffffff;
}

.black {
	color: #000000;
}

.blue {
	color: #00aeef;
}

.grey {
	color: #888888;
}

.dark-grey {
	color: #58595b;
}
.dark-blue-grey {
	color:#323e48
}

/* BACKGROUND COLOURS */
.bg-white {
	background: #ffffff;
}

.bg-black {
	background: #000000;
}

.bg-blue {
	background: #00aeef;
}

.bg-light-blue-grey {
	background: #f7f8fc;
}

.bg-blue-grey {
	background: #eef0f4;
}

.bg-light-grey {
	background: #f1f2f2;
}

.bg-light-light-grey {
	background: #f9f9fa;
}

.bg-dark-blue {
	background: #323e48;
}

.bg-dark-blue-grey {
	background:#323e48;
}

.bg-green {
	background: #95c945;
}

/* BACKGROUND GRADIENTS */
.bg-blue-grad {
	background: -moz-linear-gradient(17deg, rgba(0,174,239,1) 0%, rgba(68,200,245,1) 100%); /* ff3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(0,174,239,1)), color-stop(100%, rgba(68,200,245,1))); /* safari4+,chrome */
    background: -webkit-linear-gradient(17deg, rgba(0,174,239,1) 0%, rgba(68,200,245,1) 100%); /* safari5.1+,chrome10+ */
    background: -o-linear-gradient(17deg, rgba(0,174,239,1) 0%, rgba(68,200,245,1) 100%); /* opera 11.10+ */
    background: -ms-linear-gradient(17deg, rgba(0,174,239,1) 0%, rgba(68,200,245,1) 100%); /* ie10+ */
    background: linear-gradient(73deg, rgba(0,174,239,1) 0%, rgba(68,200,245,1) 100%); /* w3c */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00aeef', endColorstr='#44c8f5',GradientType=1 ); /* ie6-9 */ 
}