

/* Table of contents
––––––––––––––––––––––––––––––––––––––––––––––––––
- Grid
- Base Styles
- Typography
- Links
- Buttons
- Forms
- Lists
- Code
- Tables
- Spacing
- Utilities
- Clearing
- Media Queries
*/


/* Grid
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.container-fluid, .container {
	margin: 0px auto;
}

.col-1,  .col-2,  .col-3,  .col-4,  .col-5,  .col-6,  .col-7,  .col-8,  .col-9,  .col-10,  .col-11,  .col-12 {
	width: 100%;
	margin: 0px 0px 20px 0;
	float: none;
}

.container, .container-large {
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
	box-sizing: border-box;
}


@media (min-width: 768px) {
	.grid-offset{
		margin-left: -0.83333333333333%;
		margin-right: -0.83333333333333%;
	}

	.container {
		width: 750px;
	}
	
	.col-1 {
		width: 6.6666666666667%;
	}
	.col-2 {
		width: 15%;
	}
	.col-3 {
		width: 23.333333333333%;
	}
	.col-4 {
		width: 31.666666666667%;
	}
	.col-5 {
		width: 40%;
	}
	.col-6 {
		width: 48.333333333333%;
	}
	.col-7 {
		width: 56.666666666667%;
	}
	.col-8 {
		width: 65%;
	}
	.col-9 {
		width: 73.333333333333%;
	}
	.col-10 {
		width: 81.666666666667%;
	}
	.col-11 {
		width: 90%;
	}
	.col-12 {
		width: 98.333333333333%;
	}
	.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
		margin-left: 0.83333333333333%;
		margin-right: 0.83333333333333%;
		float: left;
		display: block;
	}

	.col-1,  .col-2,  .col-3,  .col-4{
		width: 48.333333333333%;
	}
	
}

@media (min-width: 992px) {
	.container {
		width: 960px;
	}
	.col-1 {
		width: 6.6666666666667%;
	}
	.col-2 {
		width: 15%;
	}
	.col-3 {
		width: 23.333333333333%;
	}
	.col-4 {
		width: 31.666666666667%;
	}
}

@media (min-width: 1200px) {
	.container{
		width: 1160px;
	}
}

.example-grid{
	background: #ccc;
	margin-bottom: 20px;
}


/* Base Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* NOTE
html is set to 62.5% so that all the REM measurements throughout Skeleton
are based on 10px sizing. So basically 1.5rem = 15px :) */


html {
	font-size: 62.5%;
}
body {
	font-size: 1.6em; /* currently ems cause chrome bug misinterpreting rems on body element */
	line-height: 1.6;
	font-weight: 400;
	font-family: "Gotham SSm A", "Gotham SSm B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: #1a1a1a;
}
/* Typography
–––––––––––––––––––––––––––––––––––––––––––––––––– */
h1, h2, h3, h4, h5, h6 {
	font-family: "Gotham SSm A", "Gotham SSm B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
	margin-top: 0;
	margin-bottom: 2.5rem;
	font-weight: 400;
	color: #32787B;
}
h1 {
	font-size: 3.0rem;
	line-height: 1.2;
	font-weight: 700;
}
h2 {
	font-size: 2.6rem;
	line-height: 1.25;
	font-weight: 700;
}
h2.alt{
	font-weight: 400;
	color: #333;
}
h3 {
	font-size: 1.8rem;
	line-height: 1.3;
	font-weight: 700;
}
h4 {
	font-size: 1.5rem;
	line-height: 1.35;
	font-family: "Gotham SSm A", "Gotham SSm B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
h5 {
	font-size: 1.4rem;
	line-height: 1.5;
}
h6 {
	font-size: 1.3rem;
	line-height: 1.6;
	letter-spacing: 0;
}

p{
	font-size: 1.4rem;
	margin-top: 0;
}

li{
	list-style: disc;
}

.page-content p:first-child{
	font-size: 1.8rem;
	font-weight: 700;
}

.page-content li{
	list-style: none;
	padding-left: 20px;
	position: relative;
}

.page-content li:before {
	position: absolute;
	left: 0px;
	top: 0px;
	content: "• ";
	color: #1e87c1; /* or whatever color you prefer */
}

strong{
	font-weight: bold;
}

blockquote{
	font-size: 2.2rem;
}

time{
	display: block;
	margin-bottom: 2.5rem;
	font-weight: bold;
}

/* Larger than phablet */
@media (min-width: 768px) {
	h1 {
		font-size: 3.6rem;
	}
	h2 {
		font-size: 2.4rem;
	}

	h3 {
		font-size: 2.0rem;
	}
	h4 {
		font-size: 2rem;
	}
	h5 {
		font-size: 1.8rem;
	}
	h6 {
		font-size: 1.6rem;
	}
	p{
		font-size: 1.6rem;
	}
}


/* Links
–––––––––––––––––––––––––––––––––––––––––––––––––– */
a {
	color: #32787B;
	text-decoration: none;
	transition: 0.5s;
}
a:hover {
	color: #0a3b56;
}



/* Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.button, button, input[type="submit"], input[type="reset"], input[type="button"] {
	display: inline-block;
	height: 38px;
	padding: 0 20px;
	color: #32787B;
	text-align: center;
	font-size: 14px;
	text-transform: uppercase;
	font-weight: normal;
	font-family: "Gotham SSm A", "Gotham SSm B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
	line-height: 38px;
	letter-spacing: 0rem;
	text-decoration: none;
	white-space: nowrap;
	background-color: transparent;
	border-radius: 1px;
	border: 1px solid #32787B;
	cursor: pointer;
	box-sizing: border-box;
	transition: 0.5s;
}
.button:hover, button:hover, input[type="submit"]:hover, input[type="reset"]:hover, input[type="button"]:hover, .button:focus, button:focus, input[type="submit"]:focus, input[type="reset"]:focus, input[type="button"]:focus {
	color: #000;
	border-color: #000;

}
.button.button-primary, button.button-primary, input[type="submit"].button-primary, input[type="reset"].button-primary, input[type="button"].button-primary {
	color: #FFF;
	background-color: #32787B;
	border-color: #32787B;
}
.button.button-primary:hover, button.button-primary:hover, input[type="submit"].button-primary:hover, input[type="reset"].button-primary:hover, input[type="button"].button-primary:hover, .button.button-primary:focus, button.button-primary:focus, input[type="submit"].button-primary:focus, input[type="reset"].button-primary:focus, input[type="button"].button-primary:focus {
	color: #FFF;
	background-color: #000;
	border-color: #000;
}
/* Forms
–––––––––––––––––––––––––––––––––––––––––––––––––– */
input[type="email"], input[type="number"], input[type="search"], input[type="text"], input[type="tel"], input[type="url"], input[type="password"], textarea, select {
	height: 38px;
	padding: 6px 10px; /* The 6px vertically centers text on FF, ignored by Webkit */
	background-color: #fff;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-shadow: none;
	box-sizing: border-box;
	width: 100%;
	color: #333;
	font-family: "Gotham SSm A", "Gotham SSm B", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: 400;
}


:placeholder-shown { /* Standard (https://drafts.csswg.org/selectors-4/#placeholder) */
  color:    #ccc;
}
/* Removes awkward default styles on some inputs for iOS */
input[type="email"], input[type="number"], input[type="search"], input[type="text"], input[type="tel"], input[type="url"], input[type="password"], textarea, select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
textarea {
	min-height: 65px;
	padding-top: 6px;
	padding-bottom: 6px;
}
input[type="email"]:focus, input[type="number"]:focus, input[type="search"]:focus, input[type="text"]:focus, input[type="tel"]:focus, input[type="url"]:focus, input[type="password"]:focus, textarea:focus, select:focus {
	border: 1px solid #33C3F0;

}
label, legend {
	display: block;
	margin-bottom: .5rem;
	font-weight: 600;
}
fieldset {
	padding: 0;
	border-width: 0;
}
input[type="checkbox"], input[type="radio"] {
	display: inline;
}
label > .label-body {
	display: inline-block;
	margin-left: .5rem;
	font-weight: normal;
}
/* Lists
–––––––––––––––––––––––––––––––––––––––––––––––––– */
ul {
	list-style: circle inside;
}
ol {
	list-style: decimal inside;
}
ol, ul {
	padding-left: 2rem;
	margin-top: 0;
}
ul ul, ul ol, ol ol, ol ul {
	margin: 1.5rem 0 1.5rem 1.5rem;
	font-size: 90%;
}
li {
	margin-bottom: 1rem;
}
/* Code
–––––––––––––––––––––––––––––––––––––––––––––––––– */
code {
	padding: .2rem .5rem;
	margin: 0 .2rem;
	font-size: 90%;
	white-space: nowrap;
	background: #F1F1F1;
	border: 1px solid #E1E1E1;
	border-radius: 4px;
}
pre > code {
	display: block;
	padding: 1rem 1.5rem;
	white-space: pre;
}
/* Tables
–––––––––––––––––––––––––––––––––––––––––––––––––– */
table{
	width: 100%;
	border-collapse: collapse;
}
th, td {
	padding: 12px 15px;
	text-align: left;
	border-bottom: 1px solid #E1E1E1;
}
th:first-child, td:first-child {
	padding-left: 0;
}
th:last-child, td:last-child {
	padding-right: 0;
}
/* Spacing
–––––––––––––––––––––––––––––––––––––––––––––––––– */
button, .button {
	margin-bottom: 1rem;
}
input, textarea, select, fieldset {
	margin-bottom: 1.5rem;
}
pre, blockquote, dl, figure, table, p, ul, ol, form {
	margin-bottom: 2.5rem;
}
/* Utilities
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.alignright, .floatright{
	float: right;
	margin: 0px 0px 20px 20px;
	clear: both;
}

.alignleft, .floatleft{
	float: left;
	margin: 0px 20px 20px 0px;
}

.group:before,
.group:after{
    content: " ";
    display: table;
}

.group:after {
    clear: both;
}

.group {
    *zoom: 1;
}

.inline li{
	float: left;
	display: inline;
}

.not-for-mobile{
	display: none !important;
}

.respond{
	width: 100%;
	height: auto;
}

.respond-down{
	max-width: 100%;
	height: auto;
}

@media (min-width: 768px){

	.mobile-only{
		display: none;
	}
	
	.not-for-mobile{
		display: block !important;
	}

}

/* Alignment
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.centre{
	text-align: center;
}


@media (min-width: 768px){
	

	
	.right{
		text-align: right;
	}
	
	.vertical-centre{
		position: relative;
		top: 50%;
		-webkit-transform: translateY(-50%);
  		-ms-transform: translateY(-50%);
  		transform: translateY(-50%);
	}
	
	.vertical-bottom{
		position: absolute;
		bottom: 30px;
		width: 100%;
	}
	
}



/* Misc
–––––––––––––––––––––––––––––––––––––––––––––––––– */
hr {
	margin-top: 3rem;
	margin-bottom: 3.5rem;
	border-width: 0;
	border-top: 1px solid #E1E1E1;
}
/* Clearing
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/* Self Clearing Goodness */
.container:after, .row:after, .u-cf {
	content: "";
	display: table;
	clear: both;
}

/* Media Queries
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*
Note: The best way to structure the use of media queries is to create the queries
near the relevant code. For example, if you wanted to change the styles for buttons
on small devices, paste the mobile query code up in the buttons section and style it
there.
*/




/* Larger than phablet (also point when grid becomes active) */
@media (min-width: 768px) {
}

/* Larger than tablet */
@media (min-width: 992px) {
	
}

/* Larger than desktop */
@media (min-width: 1200px) {
	
}

