/*
	Base

	This stylesheet contains most of the general, site-wide visual styling that does not belong to a specific module (like FAQ) or specific place (like header or footer).

	The following is for conversion to SCSS. And it should give you a hint to what can be in here.

	c stands for colour

		$cSiteBackground: #F0F0F0;
		$cContentBackground: #FFF;
		$cForeground: #444;
		$cSupport: #43658b;
		$cCTA: #eabd01;

		$cError: #B20E00;
		$cNotice: #ffe38a;
		$cSuccess: #72aa2e;

	fs stands for fontstack

		$fsPrimary: "Helvetica Neue", Arial, sans-serif;
		$fsSecondary: Georgia, serif;


	Typographic rhythm

		$baselineRhythm: 8px;

		11 / 15 / 20 / 27 / 36 / 47 / 63 (Arial-like fonts)
		11 / 14 / 19 / 25 / 33 / 44 / 59 (Georgia-like fonts)
*/

body {
	font-family: "freight-sans-pro", sans-serif;
	font-size: 16px;
	line-height: 1.5;
	color: #333;
	background: #FFF;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

/*
	Typographic defaults
*/

p {
	padding: 0 0 24px 0;
}

		p.intro {
		font-family: "freight-sans-pro", sans-serif;
		font-weight: 300;
		color: #094d8e;
		font-size: 21px;
		line-height: 1.25;
	}

th, thead td {
	font-weight: 700;
}

h1, h2, h3 {
	font-weight: 400;
	line-height: 1;
}

		h1 a, h2 a, h3 a {
			border-bottom: none;
		}

h1 {
	font-family: "freight-sans-pro", sans-serif;
	font-weight: 900;
	color: #333333;
	font-size: 36px;
	padding: 0 0 24px 0;
}

h2 {
	color: #094d8e;
	font-size: 21px;
	padding: 0 0 6px 0;
}

h3 {
	font-family: "freight-sans-pro", sans-serif;
	font-weight: 700;
	color: #094d8e;
	font-size: 16px;
	padding: 0 0 3px ;
}

h4, h5, h6 {
	font-size: 16px;
	line-height: 1;
	padding: 14px 0 7px;
}

/* Link defaults */

a {
	color: #01b86d;
	text-decoration: none;
	border-bottom: 1px dotted #01b86d;
	outline: 0;
}

a:link,
a:visited {
	color: #01b86d;
	border-color: #01b86d;
}

a:hover,
a:focus,
a:active	{
	color: #019357;
	border-color: #019357;
}

/* Image Defaults */

img.alignLeft {
	float: left;
	padding: 0 10px 10px 0;
}

img.alignRight {
	float: right;
	padding: 0 0 10px 10px;
}

.thumbHolder {
	overflow: hidden;
}

.linkedImage {
	display: block;
	border: none !important;
}

	.linkedImage img {
		display: block;
	}

/* User .content defaults */

.content ul {
	list-style: disc;
	padding: 0 0 12px 12px;
}

.content ol {
	list-style-type: decimal;
	padding: 0 0 12px 12px;
}

.content dl {
	padding: 0 0 12px 12px;
}

.content ul ul,
.content ul ol,
.content ol ul,
.content ol ol {
	padding-bottom: 0;
}

.content code {
	font-family: Monaco, monospace;
}

.content pre {
	font-size: 12px;
	line-height: 18px;
	background: #F5F5F5;
	margin: 0 0 12px 0;
	padding: 10px;
}

.content blockquote,
.content q {
	font-style: italic;
	color: #666;
}

.content blockquote {
	padding: 0 10px;
	padding: 12px 0;
}

.content cite,
.content em {
	font-style: italic;
}

.content table {
	width: 100%;
	border-top: 1px solid #000;
	border-left: 1px solid #000;
}

.content td,
.content th {
	border-right: 1px solid #000;
	border-bottom: 1px solid #000;
	padding: 4px;
}

.content th {
	font-weight: 700;
}

/* object-oriented classes */

.hidden { display: none; }
.block { display: block; }
.noPadding { padding: 0 !important; }
.noMargin { margin: 0 !important; }
.floatLeft { float: left; }
.floatRight { float: right; }
.noBorder { border: none; }
#skip, .accessibility { position: absolute; top: -9999px; left: -9999px; }
.debug {background:#fcc !important;}

/* extra editor content classes */

.extraInfo {
	background: #ECF3F0;
	padding: 20px 20px 10px 20px;
	font-size: 14px;
	margin: 0 0 24px 0;
}

.extraPadding {
	padding-bottom: 24px;
}

p.extra {
	background: #ECF3F0;
	padding: 10px 20px;
	font-size: 14px;
	margin: 0 0 24px 0;
}

a.cta {
	font-family: "freight-sans-pro", sans-serif;
	font-weight: 300;
	color: #01b86d;
	font-size: 21px;
	line-height: 1;
	display: block;
	padding-right: 22px;
	background: url("../images/icon_arrow_big.png") no-repeat right center;
	float: left;
}

/* clearfix */

.clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
.ie6 .clearfix, .ie7 .clearfix { zoom: 1; }
