/*
 * NOTE:
 * - The use of browser-specific styles (-moz-, -webkit-) should be avoided.
 *   If used, they may not render correctly for people reading the email in
 *   a different browser than the one from which the email was sent.
 * - The use of state-dependent styles (like a:hover) don't work because they
 *   don't match at the time the styles are made explicit. (In email, styles
 *   must be explicitly applied to all elements -- stylesheets get stripped.)
 */
/* This is the overall wrapper, it should be treated as the `body` section. */
.markdown-here-wrapper pre,
.markdown-here-wrapper code {
  font-size: 0.85em;
  font-family: Consolas, Inconsolata, Courier, monospace;
}
.markdown-here-wrapper code {
  margin: 0 0.15em;
  padding: 0 0.3em; 
  white-space: pre-wrap;
  border: 1px solid #EAEAEA;
  background-color: #F8F8F8;
  border-radius: 3px;
  display: inline;
  /* added to fix Yahoo block display of inline code */
}
.markdown-here-wrapper pre {
  font-size: 1em;
  line-height: 1.2em;
}
.markdown-here-wrapper pre code {
  white-space: pre;
  overflow: auto;
  /* fixes issue #70: Firefox/Thunderbird: Code blocks with horizontal scroll would have bad background colour */
  border-radius: 3px;
  border: 1px solid #CCC;
  padding: 0.5em 0.7em;
  display: block !important;
  /* added to counteract the Yahoo-specific `code` rule; without this, code blocks in Blogger are broken */
}
.markdown-here-wrapper p {
  /* !important is needed here because Hotmail/Outlook.com uses !important to
     kill the margin in <p>. We need this to win. */
  margin: 0 0 1.2em 0 !important;
}
.markdown-here-wrapper table,
.markdown-here-wrapper pre,
.markdown-here-wrapper dl,
.markdown-here-wrapper blockquote,
.markdown-here-wrapper q,
.markdown-here-wrapper ul,
.markdown-here-wrapper ol {
  margin: 1.2em 0;
}
.markdown-here-wrapper ul,
.markdown-here-wrapper ol {
  padding-left: 2em;
}
.markdown-here-wrapper li {
  margin: 0.5em 0;
}
.markdown-here-wrapper li p {
  /* Needs !important to override rule above. */
  margin: 0.5em 0 !important;
}
.markdown-here-wrapper ul ul,
.markdown-here-wrapper ul ol,
.markdown-here-wrapper ol ul,
.markdown-here-wrapper ol ol {
  margin: 0;
  padding-left: 1em;
}
.markdown-here-wrapper ol ol,
.markdown-here-wrapper ul ol {
  list-style-type: lower-roman;
}
.markdown-here-wrapper ul ul ol,
.markdown-here-wrapper ul ol ol,
.markdown-here-wrapper ol ul ol,
.markdown-here-wrapper ol ol ol {
  list-style-type: lower-alpha;
}
.markdown-here-wrapper dl {
  padding: 0;
}
.markdown-here-wrapper dl dt {
  font-size: 1em;
  font-weight: bold;
  font-style: italic;
}
.markdown-here-wrapper dl dd {
  margin: 0 0 1em;
  padding: 0 1em;
}
.markdown-here-wrapper blockquote,
.markdown-here-wrapper q {
  border-left: 4px solid #DDD;
  padding: 0 1em;
  color: #777;
  quotes: none;
}
.markdown-here-wrapper blockquote::before,
.markdown-here-wrapper blockquote::after,
.markdown-here-wrapper q::before,
.markdown-here-wrapper q::after {
  content: none;
}
.markdown-here-wrapper h1,
.markdown-here-wrapper h2,
.markdown-here-wrapper h3,
.markdown-here-wrapper h4,
.markdown-here-wrapper h5,
.markdown-here-wrapper h6 {
  margin: 1.3em 0 1em;
  padding: 0;
  font-weight: bold;
}
.markdown-here-wrapper h1 {
  font-size: 1.6em;
  border-bottom: 1px solid #ddd;
}
.markdown-here-wrapper h2 {
  font-size: 1.4em;
  border-bottom: 1px solid #eee;
}
.markdown-here-wrapper h3 {
  font-size: 1.3em;
}
.markdown-here-wrapper h4 {
  font-size: 1.2em;
}
.markdown-here-wrapper h5 {
  font-size: 1em;
}
.markdown-here-wrapper h6 {
  font-size: 1em;
  color: #777;
}
.markdown-here-wrapper table {
  padding: 0;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 1em;
  font: inherit;
  border: 0;
}
.markdown-here-wrapper tbody {
  margin: 0;
  padding: 0;
  border: 0;
}
.markdown-here-wrapper table tr {
  border: 0;
  border-top: 1px solid #CCC;
  background-color: white;
  margin: 0;
  padding: 0;
}
.markdown-here-wrapper table tr:nth-child(2n) {
  background-color: #F8F8F8;
}
.markdown-here-wrapper table tr th,
.markdown-here-wrapper table tr td {
  font-size: 1em;
  border: 1px solid #CCC;
  margin: 0;
  padding: 0.5em 1em;
}
.markdown-here-wrapper table tr th {
  font-weight: bold;
  background-color: #F0F0F0;
}
