/*
Theme Name: 	Forklift Training Hub
Description: 	A custom theme for Forklift Training Hub
Version: 		1.0
Author: 		Dave Hallett
Author URI: 	http://davehallett.net
*/

/*
===========================
CONTENTS:

01 Sensible defaults
02 Typography
03 Media queries 
===========================
*/

/* ---------------------------------------------------------------------------------------------------------- 
01 Sensible defaults ----------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------- */

@import "css/reset.css";

@import "css/layout.css";

@import "css/typo.css";

@import "css/responsive.css";

div,
article,
section,
header,
footer,
nav,
li					{ position:relative; /* For absolutely positioning elements within containers (add more to the list if need be) */ }
.group:after 		{ display:block; height:0; clear:both; content:"."; visibility:hidden; /* For clearing */ }

::-moz-selection 	{ background:#1c2b54; color:#FFF; }
::selection 		{ background:#1c2b54; color:#FFF; }

*, *:before, *:after {
  -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
 }