/*
 Table Of Contents
 1.) Eric Meyer's Reset
 2.) Global Typography
 2.0.1) Font Face
 2.0.2) Global Headings
 2.0.3) Form Elements
 2.0.4) List styles
 2.0.5) General Text Formatting
 2.0.6) Link elements
 2.0.7) Table Elements
 2.0.8) Button Styles
 2.0.9) Sprite Icons
 2.1.0) Grid Style
 3.) Site Wide Content
 4.) Header Style
 5.) Footer Style
 ===============================================*/

/*
 1.) Eric Meyer's Reset
 ----------------------------------------*/
/**
 * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/)
 * http://cssreset.com
 */
 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, 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;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}


ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

strong{
	font-weight: bold;
}
/*
 1.) Global Typography
 ----------------------------------------*/
html {
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	font-size: 100%;
	height:100%;
}
body {
	font-size: 62.5%;
	font-family: 'Quicksand', sans-serif;
	line-height: 1;
	position:relative;
	height:100%;
	left:inherit;
}
/*
 2.0.1) Font Face
 -----------------------------*/
/*Put Your font face Styles here*/

/*
 2.0.2) Global Headings
 -----------------------------*/
h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
	font-family: 'Roboto Slab', serif;
	color:#000;
}
h1 {
	/* font-size: 48px; */
	font-size: 2.2em;
	font-weight: bold;
	text-transform: uppercase;
	background: url(../images/header.png) bottom left repeat-x;
	line-height: 1.2;
	padding-bottom: 15px;
	margin-bottom: 23px;
}
h2 {
	/* font-size: 32px; */
	font-size: 228.57143%;
	line-height: 1.3125;
	margin: 0 0 0.65625em 0;
}

h3 {
  font-size: 1.5em;
  font-weight: 600;
  line-height: 0.875;
  margin: 0 0 0.875em;
  text-transform: uppercase;
}

h4 {
	/* font-size: 21px; */
	font-size: 150%;
	line-height: 1;
	margin: 0 0 1em 0;
}
h5 {
	/* font-size: 18px; */
	font-size: 128.57143%;
	line-height: 1.16667;
	margin: 0 0 1.16667em 0;
}
h6 {
	/* font-size: 14px; */
	font-size: 100%;
	font-weight: bold;
	line-height: 1.5;
	margin: 0 0 1.5em 0;
}

li{
	display: inline-block;
}

a{
	display: inline-block;
	text-decoration: none;
}
a:hover{
	color:#000;
}
