/* =Reset default browser CSS. Based on work by Eric Meyer: http://meyerweb.com/eric/tools/css/reset/index.html
-------------------------------------------------------------- */
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 {
	background: transparent;
	border: 0;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
}
body {
	line-height: 1;
}
h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
}
ol, ul {
	list-style: none;
}
blockquote {
	quotes: none;
}
blockquote:before, blockquote:after {
	content: '';
	content: none;
}
del {
	text-decoration: line-through;
}
/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: collapse;
	border-spacing: 0;
}
a img {
	border: none;
}


/* HTML 5
-------------------------------------------------------------- */
section, article, aside, hgroup, header, footer, nav, figure, figcaption, video, audio, mark, progress, meter, time, canvas, command, details, datalist, keygen, output {
	display: block;
}


/* Global
-------------------------------------------------------------- */
html {
	font-size: 100.1%;
}

body {
	color: #000;
	font-size: 75%;
	font-weight: 200;
	line-height: 1.4em;
	text-align: left;
}

body,
input,
textarea {
	font-family: Helvetica, Arial, "Nimbus Sans L", sans-serif;
}

a:link {
	color: #06c;
}

a:visited {
	color: #743399;
}

a:active,
a:hover,
a:focus {
	color: #ff4b33;
	outline: none;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
	font-weight: 200;
	height: auto;
	line-height: 1.25em;
	margin: 0;
}

h1, .h1 {
	font-size: 2.25em;
	margin: 0.88em 0 0.44em;
}

h2, .h2 {
	font-size: 2em;
	margin: 1em 0 0.5em;
}

h3, .h3 {
	font-size: 1.75em;
	margin: 1.14em 0 0.57em;
}

h4, .h4 {
	font-size: 1.5em;
	margin: 1.32em 0 0.66em;
}

h5, .h5 {
	font-size: 1.25em;
	margin: 1.6em 0 0.8em;
}

h6, .h6 {
	font-size: 1em;
	margin: 2em 0 1em;
}

h1:first-child, .h1:first-child,
h2:first-child, .h2:first-child,
h3:first-child, .h3:first-child,
h4:first-child, .h4:first-child,
h5:first-child, .h5:first-child,
h6:first-child, .h6:first-child {
	margin-top: 0;
}

p {
	margin: 0 0 1em;
}

p:last-child {
	margin-bottom: 0;
}

ul, ol {
	margin: 0.5em 0 1em 1.5em;
	padding: 0;
}

ol {
	list-style: decimal;
}
ol ol {
	list-style: upper-alpha;
}
ol ol ol {
	list-style: lower-roman;
}
ol ol ol ol {
	list-style: lower-alpha;
}
ul ul,
ol ol,
ul ol,
ol ul {
	margin-bottom: 0;
}

blockquote {
	border-left: 0.25em solid #ccc;
	margin: 0.5em 0 1em;
	padding-left: 2em;
}

hr {
	background-color: #cfcfcf;
	border: 0;
	clear: both;
	height: 1px;
	margin-bottom: 1em;
}

dl {
	margin: 0 0 1.5em 0;
}

dt {
	font-weight: bold;
}

dd {
	margin-bottom: 1em;
}

strong {
	font-weight: bold;
}

cite,
em,
i {
	font-style: italic;
}

big {
	font-size: 1.25em;
}

ins {
	background: #ffc;
	text-decoration: none;
}

blockquote {
	font-style: italic;
	padding: 0 3em;
}

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

pre {
	background: #f7f7f7;
	color: #222;
	line-height: 1.5em
	margin-bottom: 1.5em;
	padding: 1.5em;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

sup,
sub {
	height: 0;
	line-height: 1;
	position: relative;
	vertical-align: baseline;
}

sup {
	bottom: 1ex;
}

sub {
	top: .5ex;
}

button {
	cursor: pointer;
}

input:not([type="file"]):not([type="hidden"]):not([type="submit"]),
textarea {
	background: #f9f9f9;
	border: 1px solid #ccc;
	box-shadow: inset 1px 1px 1px rgba(0,0,0,0.1);
	-moz-box-shadow: inset 1px 1px 1px rgba(0,0,0,0.1);
	-webkit-box-shadow: inset 1px 1px 1px rgba(0,0,0,0.1);
	padding: 2px;
}

pre {
	font-family: "Courier 10 Pitch", Courier, monospace;
}

code {
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}


/* Tables
-------------------------------------------------------------- 
table {
	border: 1px solid #e7e7e7;
	margin: 0 -1px 24px 0;
	text-align: left;
	width: 100%;
}

tr th,
thead th {
	color: #888;
	font-size: 12px;
	font-weight: bold;
	line-height: 18px;
	padding: 9px 24px;
}

tr td {
	border-top: 1px solid #e7e7e7;
	padding: 6px 24px;
}

tr.odd td {
	background: #f2f7fc;
}


/* Clearing
-------------------------------------------------------------- */
.left {
	float: left;
}

.right {
	float: right;
}

.clear {
	clear: both;
}

/* new clearfix */
.clearfix:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}

* html .clearfix             { zoom: 1; } /* IE6 */
*:first-child+html .clearfix { zoom: 1; } /* IE7 */