/*
 * Breakpoint mixin. See: http://css-tricks.com/conditional-media-query-mixins/
 *
 * Use:
 * .row {
 *  @include bp(mobile, min) {
 *    //mobile styles
 *  };
 * }
 *
 * Breakpoints are set in _config.scss e.g. $bp1
 */
.mobile-only {
  display: none;
}
@media (max-width: 37.625em) {
  .mobile-only {
    display: block;
  }
}

@media (max-width: 37.625em) {
  .hidden-on-mobile {
    display: none !important;
  }
}

/**
 * Mixins for doing CSS3 cross-browser stuff:
 */
/**
 * Special grayscale mixin to support IE rather than using
 *	@include filter(grayscale(100%)) 
 * which IE does not support
*/
@CHARSET "ISO-8859-1";
/* reset.css */
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;
}

/* DM: Overrides so that newsletter previews aren't borked: */
body.newsletter-content td[valign=middle] {
  vertical-align: middle !important;
}

body.newsletter-content td[valign=top] {
  vertical-align: top !important;
}

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;
}

/*
 * Provides standard text and content styling.
 */
abbr, acronym {
  border-bottom: 1px dotted #000;
  cursor: help;
}

em {
  font-style: italic;
}

blockquote, ul, ol, dl {
  margin: 0.5em 0 1.5em;
}

ol, ul, dl {
  margin-left: 1em;
  padding-left: 0;
}

ol li {
  list-style: decimal inside;
}

ul li {
  list-style: disc inside none;
}

ul li,
ol li {
  margin: 0.2em 1em;
}

ol ol, ul ul, ol ul, ul ol {
  margin-top: 0;
  margin-bottom: 0;
}

dl dd {
  margin-left: 1em;
}

th {
  font-weight: bold;
  text-align: center;
}

caption {
  margin-bottom: .5em;
  text-align: center;
}

pre {
  margin-bottom: 1em;
}

a img {
  border: 0;
}

p {
  line-height: 1.2em;
  margin-bottom: 1em;
}

li p {
  margin-top: 0.2em;
}

pre, code, .code {
  font-family: monospace;
  font-size: 92%;
  text-align: left;
}

strong, b {
  font-weight: bold;
}

th {
  font-weight: bold;
}

input, textarea, select {
  font-size: 92%;
}

sup {
  vertical-align: super;
}

h1 a,
h2 a,
h3 a,
h1 a:hover,
h2 a:hover,
h3 a:hover,
h1 a:visited,
h2 a:visited,
h3 a:visited {
  color: inherit;
  text-decoration: none;
}

h1 a:hover,
h2 a:hover,
h3 a:hover {
  text-decoration: underline;
}

.floatLeft {
  float: left;
  margin-right: 10px;
}

.floatRight {
  float: right;
  margin-left: 10px;
}

.clearing {
  clear: both;
  height: 0;
  margin: 0;
  padding: 0;
}

.clearBoth {
  clear: both;
}
