/* 1. RESET
----------------------------------------------------------------------------------------*/
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, 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,
article, aside, canvas, details, embed,
figure, figcaption, footer, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size:100%;
  font: inherit;
  vertical-align: top;
  }

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
  }


/* 2. ROOT
----------------------------------------------------------------------------------------*/
html {
  overflow-y:scroll;
  background: #fff;
  height:100%;
  }

img, embed, object, video { border:0; max-width: 100%; }
.ie6 img.full, .ie6 object.full, .ie6 embed, .ie6 video { width: 100%; }


/* 3. CORE TYPOGRAPHY
----------------------------------------------------------------------------------------*/
body {
  font-family: 'Signika', sans-serif;
  font-size: 14px;
  color: #474747;
  min-width: 1020px;
  min-height:100%;
  -webkit-font-smoothing: antialiased;
  }


h1, h2, h3, h4, h5, h6 {
  }

p, ul, ol, dl, blockquote {
  }

ul { list-style-type: disc; }
ol { list-style-type: decimal; }
nav ul, nav ol { list-style: none; margin: 0; padding: 0;}

b, strong { font-weight:700; }
i, em { font-style: italic; }
small { font-size: 80%; }


/* 4. LINKS
----------------------------------------------------------------------------------------*/
a, a:visited {
	outline: none;
	color: #fd0019;
	text-decoration: underline;
	-webkit-transition: color .1s ease-out;
	-moz-transition: color .1s ease-out;
	-ms-transition: color .1s ease-out;
	-o-transition: color .1s ease-out;
	transition: color .1s ease-out;
	cursor: pointer;
}
a:hover {
	outline: none;
	color: #FF9900;
	text-decoration: underline;
}
a:active, a:focus { outline: none; }
