/* #Reset & Basics (Inspired by E. Meyers)
================================================== */
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,
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;
  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;
}
/* #Basic Styles
================================================== */
body {
  background: #fff;
  font-family: "HelveticaNeue", "Helvetica Neue", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 14px;
  color: #000;
  -webkit-font-smoothing: antialiased;
  /* Fix for webkit rendering */

  -webkit-text-size-adjust: 100%;
}
/* #Typography
================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
  font-weight: bold;
}
h1 {
  font-size: 30px;
  line-height: 32px;
}
p {
  margin: 20px 0 0px 0;
}
em {
  font-style: italic;
}
strong {
  font-weight: bold;
}
hr {
  border: solid #ddd;
  border-width: 1px 0 0;
  clear: both;
  margin: 10px 0 30px;
  height: 0;
}
/* #Links
================================================== */
a {
  color: #000;
  text-decoration: underline;
  outline: 0;
}
a:hover,
a:focus {
  color: #000;
}
/*
Mixins

This is useful for defining reusable styles, such as brand colours, font stacks, etc.

e.g:
@brand-color: #efefef;

*/
/*base mobile css here*/
header {
  width: 100%;
  height: 120px;
  border-bottom: 1px solid #cccccc;
  margin-bottom: 40px;
  margin-top: 20px;
}
header .inner {
  height: 139px;
}
header .inner .logo {
  width: 69px;
  height: 100px;
  position: relative;
  float: left;
  margin-left: -2px;
  background: url("../img/logo1.png") no-repeat top left;
  overflow: hidden;
  text-indent: -9999em;
}
article {
  width: 316px;
  position: relative;
  margin: 0 auto;
  background: url("../img/icon1.png") no-repeat top left;
  padding-top: 110px;
}
article h1 {
  font-family: "HelveticaNeue", "Helvetica Neue", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 30px;
  line-height: 32px;
  color: #000;
}
article p {
  font-family: "HelveticaNeue", "Helvetica Neue", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 14px;
  line-height: 18px;
  color: #000;
}
footer {
  width: 100%;
  height: 140px;
  border-top: 1px solid #cccccc;
  margin-top: 40px;
  padding-top: 10px;
  padding-bottom: 80px;
}
footer strong {
  font-size: 12px;
  font-weight: bold;
  color: #000;
  display: block;
  line-height: 24px;
}
footer ul {
  list-style: none;
  list-style-image: none;
}
footer ul li {
  display: block;
  clear: left;
  line-height: 24px;
  font-size: 12px;
}
footer ul li a {
  text-decoration: none;
}
footer ul li a:hover,
footer ul li a:focus {
  text-decoration: none;
}
.inner {
  width: 316px;
  position: relative;
  margin: 0 auto;
}
/*
TABLET & SMALLER LAPTOPS
*/
@media only screen and (min-width: 768px) {
  article {
    background: url("../img/icon2.png") no-repeat top left;
    padding: 14px 0px 0px 168px;
    width: 484px;
  }
  footer {
    line-height: 18px;
  }
  footer strong {
    line-height: 18px;
    padding-top: 8px;
  }
  footer ul {
    display: inline;
  }
  footer ul li {
    display: inline-block;
    margin-right: 16px;
    line-height: 18px;
  }
  .inner {
    width: 652px;
  }
}
/*
DESKTOP

*/
@media only screen and (min-width: 1030px) {
  article {
    width: 652px;
    background-position: 8px 0px;
  }
  footer {
    margin-top: 60px;
  }
  footer strong {
    float: left;
  }
  footer ul {
    display: inline-block;
    float: right;
    margin-top: 7px;
  }
  .inner {
    width: 820px;
  }
}
/*
RETINA (2x RESOLUTION DEVICES)
*/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  /* High Pixel Count stuff!*/
}

.reference-code {margin-top: 0px; margin-bottom: 20px; font-weight: bold;}

h1.joined-title { margin-bottom: 0; padding-bottom: 0; }
p.joined-text { margin-top: 0; }
