/* ------------------------------------------------- Imported Styles */
@import url("layout.css");

/* =Notes
--------------------------------------------------------------
This stylesheet uses rem values with a pixel fallback. The rem
values (and line heights) are calculated using two variables:

$rembase:     14;
$line-height: 24;

---------- Examples

* Use a pixel value with a rem fallback for font-size, padding, margins, etc.
	padding: 5px 0;
	padding: 0.357142857rem 0; (5 / $rembase)

* Set a font-size and then set a line-height based on the font-size
	font-size: 16px
	font-size: 1.142857143rem; (16 / $rembase)
	line-height: 1.5; ($line-height / 16)

---------- Vertical spacing

Vertical spacing between most elements should use 24px or 48px
to maintain vertical rhythm:

.my-new-div {
	margin: 24px 0;
	margin: 1.714285714rem 0; ( 24 / $rembase )
}

---------- Further reading

http://snook.ca/archives/html_and_css/font-size-with-rem
http://blog.typekit.com/2011/11/09/type-study-sizing-the-legible-letter/


/* Reset
-------------------------------------------------------------- */

/* first for IE 4–8 */
@font-face {
  font-family: BlenderProThin;
  src: url("../fonts/BlenderPro-ThinWeb.eot");
}
@font-face {
  font-family: BlenderProBook;
  src: url("../fonts/BlenderPro-BookWeb.eot");
}
@font-face {
  font-family: BlenderProMedium;
  src: url("../fonts/BlenderPro-MediumWeb.eot");
}
@font-face {
  font-family: BlenderProBold;
  src: url("../fonts/BlenderPro-BoldWeb.eot");
}

/* then for WOFF-capable browsers */
@font-face {
  font-family: BlenderProThin;
  src: url("../fonts/BlenderPro-ThinWeb.woff") format("woff");
}
@font-face {
  font-family: BlenderProBook;
  src: url("../fonts/BlenderPro-BookWeb.woff") format("woff");
}
@font-face {
  font-family: BlenderProMedium;
  src: url("../fonts/BlenderPro-MediumWeb.woff") format("woff");
}
@font-face {
  font-family: BlenderProBold;
  src: url("../fonts/BlenderPro-BoldWeb.woff") format("woff");
}

html {
  font-size: 62.5%;
}
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;
	outline:0;
	vertical-align:baseline;
	background:transparent;
	}
body {
	font-size:14px; 
	font-size:1.4rem;
	color:#000;
	text-align:left;
	line-height:1;
	background:#fff;
	font-family:BlenderProBook, helvetica, sans-serif;
	text-rendering: optimizeLegibility;
	color:#515052;
	}
ol,
ul {
	list-style:none;
}
table {
	border-collapse:collapse;
	border-spacing:0;
}
html {
	overflow-y:scroll;
	font-size:100%;
	-webkit-text-size-adjust:100%;
	-ms-text-size-adjust:100%;
}
:focus {
	outline:none;
}
audio,
canvas,
video {
	display:inline-block;
}
audio:not([controls]) {
	display: none;
}
img {
	border: 0;
	-ms-interpolation-mode: bicubic;
}