/*
Harmonise v1.3
Resets styles then adds basic typographical styling.
Use as a starting point upon which to build more CSS.
By Clearleft.com
*/

/* @group Reset */

/* Based on http://meyerweb.com/eric/tools/css/reset/ */
/* v1.0 | 20080212 */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}

ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

:focus {
	outline: 0;
}

/* tables may still need 'cellspacing="0"' in the markup */
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* @end */


body {
	padding: 0 2%;
	max-width: 79em; /* 1106px */
	margin: 0 auto;
	background: #fff;
	color:#000;
    font-size:14px;
    line-height:1.5em; /* Baseline grid of 21px */
}

a:link, 
button.link span {
	color: #0063DC;
	text-decoration: underline;
}
a:visited {
	color: #1057ae;
	text-decoration: underline;
}
a:hover, 
a:focus,
button.link:hover span,
button.link:focus span {
	color: #FFFFFF; 
	text-decoration: none;
	background-color: #0063DC;
}
a:active, 
button.link:active span {
	color: #FFFFFF; 
	text-decoration: none; 
	background-color: #0259C4; 
}

/* @group Font families */

body {
	font-family: "helvetica neue", arial, helvetica, sans-serif;	
}

pre, code, kbd, tt, samp, tt {
	font-family: "andale mono", monospace;
}

/* @end */

/* @group Font sizes & margins */

p, ul, ol, dl, address, table, pre, form, fieldset {
	font-size: 1em /* 14px */;
	margin-bottom: 1.5em; /* 21px */
}

/* size headings using classic scale of 16, 18, 24, 36 */

h1 {
	font-size: 2.571em /* 36px */;
	line-height:1em /* 36px */;
	padding-top:0.1667em /* 6px */;
	margin-bottom:0.5833em /* 21px */;
}
h2 {
	font-size:1.714em /* 24px */;
	line-height:1.167em /* 28px */;
	margin-bottom:0.5833em /* 14px */;
}
h3 {
	font-size:1.286em /* 18px */;
	margin-bottom:0.778em /* 14px */;
}
h4 {
	font-size:1.143em /* 16px */;
	margin-bottom:0.4375em /* 7px */; 
}
h5, h6 {
	font-size:1em /* 14px */;
}

/* @end */

/* @group Lists */

.prose ul, ul.xoxo, ul.xoxo ul {
/* unordered lists more often DON'T require bullets except in extended bits of writing. Where bullets are required apply the .prose class to a container, or apply directly with .xoxo */
	list-style-type: disc;
	margin-left: 1.5em; /* 21px */
}

ol {	/* ordered lists usually DO require (numbered) bullets */
	list-style-type: decimal;
	margin-left: 2em; /* 28px */
}

dt {
	font-weight: bold;
	margin-top: 1.5em; /* 21px */
}

ul ul, ol ol, ol ul, ul ol {
	margin-bottom: 0;
}

/* @end */

/* @group Tables */

table {
	border-bottom: 1px solid #666;
}

caption {
	font-weight: bold;
	padding-bottom: 0.4375em; /* 7px */
	font-size:1.144em; /* 16px */
}

thead th {
	border-top: 1px solid #666;
	border-bottom: 3px solid #666;
	padding-top: 0;
	padding-bottom: 0.5em; /* 7px */
}

tbody {
	border-top: 3px solid #666;	/* not rendered in IE6/7 */
}

tbody tr th, tbody tr td {
	border-top: 1px solid #ddd;
}

th, td {
	text-align: left;
	padding: 0.286em 0.5em 0.214em 0.5em; /* 4px 7px 3px 7px */
}

/* @end */

/* @group Blockquotes */

blockquote {
	font-style: italic;
	margin:0  1.5em  1.5em 1.5em; /* 21px */
}

p+p+blockquote {
	margin-top: 1.5em /* 21px */;
}

blockquote cite, blockquote em {
	font-style: normal;
}

/* @end */



/* @group Forms */

/* @group Containers */

form .container {
	margin-bottom: 1.5em; /* 21px */
}


/* @group Fieldsets */

fieldset {
	border: 1px solid #ccc;
	padding: 0 1.5em 1em 1.5em; /* 0 21px 14px 21px */
}

legend {
	font-weight: bold;
}

form fieldset .container {
	margin-top: 1em; /* 14px */
	margin-bottom:0;
	position: relative;
}

/* @end */

/* @end */

/* @group Labels */

label {
	font-weight: bold;
	cursor: pointer;
}

.meta-label {
	font-weight: bold;
	margin-bottom: 0;
}

.multi-container label, 
.radio-container label, 
.checkbox-container label {
	font-weight: normal;
}

.radio-container label, 
.checkbox-container label {
	display: block;
}

.compact label {
	display: inline;
}

/* @end */

/* @group Meta */

form .help {
	display: block;
	color: #777;
	font-style: normal;
	font-size: 0.857em; /* 12px */
}

/* @end */

/* @group Form controls */

input, textarea, select, button {
	font-family: inherit;
	font-size: 1em;
	line-height: inherit;
}

select {
	background-color: #fff; /* fixes bug in Opera which inherits bgcolor from container */
}

textarea,
input[type='text'],
input[type='password'],
select {
	border-width: 1px;
	border-style: solid;
	border-top-color: #999;
	border-left-color: #999;
	border-bottom-color: #ccc;
	border-right-color: #ccc;
	padding: 0 1px 1px 1px;
}

textarea:focus, 
input[type='text']:focus, 
input[type='password']:focus, 
select:focus {
	border-color: #888;
	outline: 2px solid #ffffaa;
}

input.short {
	width: 4em;
}

input.medium, textarea.medium {
	width: 12em;
}

input.long, textarea.long {
	width: 30em;
}

textarea {
	width: 99%;
	display: block;
}

.button-container input {
	font-weight: bold;
}

.button-container input.cancel {
	font-weight: normal;
}

button.link {
	border: 0;
	padding: 0;
	background-color: #fff;
	font-weight: normal;
	cursor: pointer;
	width: auto;
	overflow: visible;
}

/* accessibility feature, resize check and radio inputs */
.radio-container input, 
.checkbox-container input {
	width: 1em;
	height: 1em;
}

/* @end */

/* @end */

/* @group Other styling */

address {
	font-style: normal;
}

ins {
	text-decoration: underline;
}

del {
	text-decoration: line-through;
}

/* @end */

