/* CSS Resets */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
q,
small,
strong,
sub,
sup,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  border: 0;
  margin: 0;
  padding: 0;
}

article,
aside,
figure,
figure img,
figcaption,
hgroup,
footer,
header,
nav,
section,
video,
object {
  display: block;
}

a img {
  border: 0;
}

figure {
  position: relative;
}

figure img {
  width: 100%;
}

ul {
  list-style: none;
}

* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

body {
  background: #fff;
  color: #000;
  font-family: 'Gotham A', 'Gotham B', Helvetica, Arial, sans-serif;
}

select,
input,
text,
button {
  font-family: 'Gotham A', 'Gotham B', Helvetica, Arial, sans-serif;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.clear {
  clear: both;
}
/* Prevent Chrome text size boosting */
div,
p {
  max-height: 9999px;
}
/* Old browser warning bar */
div#old-browser-warning {
  background: #ffea00;
  overflow: hidden;
  padding: 10px 0;
  font-weight: 900;
  color: #000;
  display: none;
}

div#old-browser-warning p {
  display: block;
  padding: 0 10px;
}

div#old-browser-warning a:hover {
  text-decoration: none;
}

div#old-browser-warning a,
div#old-browser-warning a:active {
  text-decoration: underline;
  color: #000;
}
