/* ------------------------------- 1. CSS 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,
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;
  vertical-align: baseline;
  font-size: 100%;
}
table {
  border-spacing: 0;
  border-collapse: collapse;
}
caption,
th,
td {
  text-align: left;
  font-weight: normal;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
}
html {
  overflow-y: scroll;
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
body {
  line-height: 1;
}
a:focus {
  outline: thin dotted;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block;
}
audio,
canvas,
video {
  display: inline-block;
}
audio:not([controls]) {
  display: none;
}
del {
  color: #333;
}
ins {
  background: #fff9c0;
  text-decoration: none;
}
hr {
  margin: 24px;
  margin-bottom: 1.714285714rem;
  height: 1px;
  border: 0;
  background-color: #b3b3b1;
}
sub,
sup {
  position: relative;
  vertical-align: baseline;
  font-size: 75%;
  line-height: 0;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
  -ms-interpolation-mode: bicubic;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: &#039;&#039;;
  content: none;
}
/* ---------- END CSS Reset ---------- */
/*------------------------------- 2. Basic Typography ------------------------------- */
body {
  color: #777777;
  font-size: 14px;
  font-family: &#039;Open Sans&#039;, Helvetica, Arial, sans-serif;
  line-height: 1.7;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
a {
  color: #359bb4;
  text-decoration: none;
}
a:focus {
  outline: none;
  outline-width: 0;
  outline-style: none;
  outline-color: transparent;
}
a:hover {
  color: #2b91aa;
}
hr {
  margin: 5px 0;
  height: 1px;
  border: 0;
  background-color: #b3b3b1;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 10px 0;
  color: #333332;
  font-weight: 100;
  font-family: Oswald, &#039;Open Sans&#039;, Helvetica, Arial, sans-serif;
  line-height: 1.7;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}
h1 {
  font-size: 30px;
}
h2 {
  font-size: 25px;
}
h3 {
  font-size: 22px;
}
h4 {
  font-size: 19px;
}
h5 {
  font-size: 17px;
}
h6 {
  font-size: 15px;
}
p {
  margin: 7px 0;
  padding: 0;
}
ol {
  margin-left: 20px;
  list-style-type: decimal;
}
ul {
  margin-left: 20px;
}
dl {
  margin-left: 20px;
}
dt {
  font-weight: bold;
}
small {
  font-size: 85%;
}
strong {
  font-weight: bold;
}
em {
  font-style: italic;
}
cite {
  font-style: normal;
  font-size: 110%;
}
q {
  font-style: italic;
  font-family: Georgia, &quot;Times New Roman&quot;, Times, serif;
}
/* Blockquote */
blockquote {
  margin: 0 0 20px;
  padding: 0 0 0 15px;
  border-left: 4px solid rgba(0, 0, 0, 0.1);
  text-align: left;
  font: italic 120%/170% Georgia, &quot;Times New Roman&quot;, Times, serif;
}
blockquote p {
  font-weight: 300;
}
blockquote small {
  display: block;
  font-style: normal;
  font-size: 12px;
  font-family: &#039;Open Sans&#039;, Helvetica, Arial, sans-serif;
  line-height: 1.8em;
}
blockquote small:before {
  content: &#039;\2014 \00A0&#039;;
}
blockquote cite {
  font-weight: bold;
}
/* ------------------------------- END Basic Typography ------------------------------- */