/*
	
 _      ______ __ 
| |    |  ____/_ |
| |    | |__   | |
| |    |  __|  | |
| |____| |____ | |
|______|______||_|
                  
	
	Customise Sheet
	
	This stylesheet contains all of the classes for easily swapping out colours and fonts.
	
	To use this sheet, simply look for the class containing the colour or font you want to use,
	and then add that class to the HTML element you want to adjust the colour/font of.
	
                   
*/


/*
	
	BACKGROUNDS - SOLID COLOURS
	
*/

.blue-solid-bg { background-color: #081f68 !important; }
.lightblue-solid-bg { background-color: #5678a2 !important; }
.darkred-solid-bg { background-color: #730424 !important; }
.green-solid-bg { background-color: #6e943f !important; }
.yellow-solid-bg { }
.black-solid-bg { background-color: black !important;}
.darkgrey-solid-bg { background-color: #1e1e1e !important; }

/*

	BACKGROUNDS - GRADIENTS
	
*/

.blue-grad-bg { background: -webkit-linear-gradient(top, #005ca1 0%, #081f68 100%) !important;background: linear-gradient(to bottom, #005ca1 0%, #081f68 100%) !important; }
.lightblue-grad-bg { background: -webkit-linear-gradient(top, #aec2df 0%, #5678a2 100%) !important; background: linear-gradient(to bottom, #aec2df 0%, #5678a2 100%) !important; }
.turq-grad-bg {background: #23676a;/* Old browsers */ background: -moz-linear-gradient(top, #23676a 0%, #47989c 100%); /* FF3.6-15 */background: -webkit-linear-gradient(top, #23676a 0%,#47989c 100%); /* Chrome10-25,Safari5.1-6 */background: linear-gradient(to bottom, #23676a 0%,#47989c 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#23676a', endColorstr='#47989c',GradientType=0 );}
.darkred-grad-bg { background: -webkit-linear-gradient(top, #a5143c 0%, #730424 100%) !important; background: linear-gradient(to bottom, #a5143c 0%, #730424 100%) !important; }
.green-grad-bg { background: -webkit-linear-gradient(top, #a0c06a 0%, #6e943f 100%) !important; background: linear-gradient(to bottom, #a0c06a 0%, #6e943f 100%) !important; }
.darkgrey-grad-bg { background: -webkit-linear-gradient(top, #4d4b46 0%, #1e1e1e 100%) !important; background: linear-gradient(to bottom, #4d4b46 0%, #1e1e1e 100%) !important; }
.deeppink-grad-bg {background: #631d5b !important; /* Old browsers */background: -moz-linear-gradient(top, #631d5b 0%, #953477 100%) !important; /* FF3.6-15 */background: -webkit-linear-gradient(top, #631d5b 0%,#953477 100%) !important; /* Chrome10-25,Safari5.1-6 */background: linear-gradient(to bottom, #631d5b 0%,#953477 100%) !important; /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#631d5b', endColorstr='#953477',GradientType=0 ) !important;}
.purp-grad-bg {background: #68519f !important; /* Old browsers */background: -moz-linear-gradient(top, #68519f 0%, #7a68be 100%) !important; /* FF3.6-15 */background: -webkit-linear-gradient(top, #68519f 0%,#7a68be 100%) !important; /* Chrome10-25,Safari5.1-6 */background: linear-gradient(to bottom, #68519f 0%,#7a68be 100%) !important; /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#68519f', endColorstr='#7a68be',GradientType=0 ) !important;}

/*
	
	FONTS - COLOURS
	
*/

.blue-font { color: #081f68 !important; }
.lightblue-font { color: #5678a2 !important; }
.darkred-font { color: #730424 !important; }
.green-font { color: #6e943f !important; }
.yellow-font { color: #f8d800 !important; }
.black-font { color: black !important; }
.darkgrey-font { color: #1e1e1e !important; }
.turq-font { color:#33646b !important; }