/* Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/) customized */
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,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  /*color: initial;*/
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
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;
}
input,
button {
  border: 0 none;
  background: none;
}
button {
  cursor: pointer;
}
button:focus,
a:focus,
ul:focus,
div:focus {
  outline: none;
}
select {
  border: none;
}
input:focus,
input:active,
label:focus,
label:active {
  background: none;
  border: 0 none;
  outline: none;
}
input[type="checkbox"]:before,
input[type="radio"]:before {
  border: medium none;
  background: none;
  border-radius: 0;
  color: #fff;
  font-size: initial;
  font-weight: normal;
  margin: 0;
  padding: 0;
  opacity: 1;
  height: auto;
  width: auto;
  -webkit-appearance: none;
  -moz-appearance: none;
}
textarea:focus{
  outline: none;
}

a {
  text-decoration: none;
}

input {
   -webkit-appearance: none;
   -moz-appearance:    none;
   appearance:         none;
}

/*Autocomplete reset for chrome*/
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px white inset;
}

/*box-sizing for ALL*/
html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}