/*
	Formatting, Version 1
	Justin Allen (justy-o.tumblr.com)
*/

/* !Body */
body {
	font-family: inherit;
	font-size: 14px;
	color: inherit;
	line-height: 20px;
	word-wrap: break-word;
	vertical-align: baseline;
	text-rendering: optimizelegibility;
	-webkit-font-smoothing: antialiased;
}

/* !Heading */
h1, h2, h3, h4, h5, h6 {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	color: inherit;
	margin: 0 0 10px 0;
	font-weight: normal;
}

/* !Heading Sizing and Line Heights */
h1 {
  font-size: 38.5px;
  line-height: 40px;
}

h2 {
  font-size: 31.5px;
  line-height: 33px;
}

h3 {
  font-size: 24.5px;
  line-height: 26px;
}

h4 {
  font-size: 17.5px;
  line-height: 19px;
}

h5 {
  font-size: 14px;
  line-height: 15.5px;
}

h6 {
  font-size: 11.9px;
  line-height: 13.4px;
}

/* !Paragraph */
p {
  margin: 0 0 10px;
}

/* !Basic Formatting */
small {
  font-size: 85%;
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

cite {
  font-style: normal;
}

del, strike {
	text-decoration: line-through;
}

iframe, img, embed {
	display: block;
}

/* !List */
ul, ol {
  padding: 0;
  margin: 0 0 10px 25px;
}

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

li {
  line-height: 20px;
}

ul li {
	list-style-type: square;
	list-style-position: outside;
	display: list-item;
}

ol li {
	list-style-type: decimal;
	list-style-position: outside;
	display: list-item;
}

/* !Definition List */
dl {
  margin-bottom: 20px;
}

dt,
dd {
  line-height: 20px;
}

dt {
  font-weight: bold;
}

dd {
  margin-left: 10px;
}

/* !Blockquote */
blockquote {
  padding: 0 0 0 15px;
  border-left: 5px solid #eeeeee;
}

/* !Address */
address {
  display: block;
  margin-bottom: 20px;
  font-style: normal;
  line-height: 20px;
}

/* !Code & Pre */
code,
pre {
  padding: 0 3px 2px;
  font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
  font-size: 12px;
  color: #333333;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

code {
  padding: 2px 4px;
  color: #d14;
  background-color: #f7f7f9;
  border: 1px solid #e1e1e8;
  white-space: nowrap;
}

pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 20px;
  word-break: break-all;
  word-wrap: break-word;
  white-space: pre;
  white-space: pre-wrap;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

pre code {
  padding: 0;
  color: inherit;
  white-space: pre;
  white-space: pre-wrap;
  background-color: transparent;
  border: 0;
}