/* ======================================================

	BASE.CSS
	
=========================================================*/


/* Box-sizing:border-box for all*/
html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; 
}

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

body {
	background: #fff; /*tiled bg to come*/
	color: #565043;
	font-family: 'Raleway', sans-serif;
	font-size: 62.5%;
	font-weight: 400;
}


/* ----- IMAGES ---- */
img {
	width: 100%;
	height: auto;
}

img.no-stretch {
	width: auto;
}

/* ---- UTILS ----- */
.group:after {
  content: "";
  display: table;
  clear: both;
}
.nowrap {
	white-space: nowrap;
}
/* ----- ALIGNMENT ---- */

/* centre stuff horizontally */
.centre {
	position: relative;
	left: 50%;
  	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
}

/* lte ie9 (add css transforms to modernizr!)*/
.no-csstransforms .centre {
	left: auto;
	margin-left: auto;
	margin-right: auto;
}

.text-centre {
	text-align: center;
}

strong {
	color: inherit;
}

/* ---- SITE COLOURS ----:
brown-grey text, brown-grey bg: 565043 
yellow bg nad lines: f5cd2f
faint white bg: f2f2f0;
------------------------*/


/* #Links (overwrite core styles)
================================================== */
a, a:visited { color: inherit; text-decoration: none; outline: 0; }
a:hover, a:focus { color: inherit; }
p a, p a:visited { line-height: inherit; }



/* ----- TYPOGRAPHY ---- */
h1, h2 {	
	font-weight: 400;
	line-height: 1;
	letter-spacing: .2em;
}


h1 {
	font-size: 2.6em;
	line-height: 1.2;
	text-transform: uppercase;
	text-align: center;
	/*add yellow line below */
	padding-bottom: .8em;
	margin-bottom: .8em;
}
h1:after {
	content: '';
	position: absolute;
	width: 145px;
	height: 2px;
	background: #f5cd2f;
	bottom:  0;
	left:  50%;
  	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
}
.home h1 {
	padding-bottom: .4em;
	margin-bottom: .5em;
}

h2 {
	
	font-size: 2.2em;
	margin: 0.5em 0;
	font-weight: 300;
	text-transform: uppercase;	
	line-height: 1.1;
}

h3 {
	font-weight: 700;
	line-height: 1.1;
	margin-bottom: .5em;
}

.main p,
.main li,
.main dl {
	font-size: 1.4em;
	line-height: 1.4;
}
.main li p {
	font-size: 1em;
}
.main p.centered-para.lrg{
	font-size: 1.6em;
}
.main dd {
	margin-bottom: 1em;
}
.main .bg_dark dt {
	color: #f5cd2f;
}
.main ul.dash li {
	padding-left: 1em;
}
.main ul.dash li:before {
	content: '-';
	position: absolute;
	top: 0;
	left: 0;
	height: 1.4em;
	width: 1em;
	line-height: 1.4em;
}
.content a:hover,
.content a:focus {
	text-decoration: underline;
}

.head-banner .inner p {
	font-size: 1.6em;
}
/* ---- COMMON ELEMENTS STYLES (re-usable elements) ---- */

blockquote {
    margin: 0;
    padding: 0;
    border-left: 0;
}
blockquote, blockquote p {
    font-size: inherit;
    line-height: inherit;
    color: #0a2240;
    font-style: normal;
}
blockquote, q {
    quotes: none;
}

sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}

/* ---- STATES STYLES ---- */

.is-hidden {
	display: none!important;
}

.is-collapsed {
	height: 0!important;
}




/* #Media Queries
================================================== */

@media only screen and (min-width: 768px) {  


	h2 {
		font-size: 3em;
		margin-bottom: 1em;
	}
	
	h2.centered {
		text-align: center;
		margin-bottom: 2em;
	}
}















