/** Default styling **/

html { 
  -webkit-font-smoothing: antialiased;
}

a, a:hover, a:focus, a:active {
  text-decoration: none;
  outline: none;
}

small { 
  font-size: 0.85714em;
}

strong { 
  font-weight: bold;
}

sub { 
  vertical-align: sub;
  font-size: smaller;
}

sup { 
  vertical-align: super;
  font-size: smaller;
}

label, input[type=button], input[type=submit], button { 
  cursor: pointer;
}

button { 
  width: auto;
  overflow: visible;
}

pre {
  font-size: 0.92857em;
  text-align: left;
  text-shadow: none;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.2);
}

pre:hover {
  text-shadow: 0px 1px 3px #000;
}

ins { 
  background-color: transparent;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] { 
  border-bottom: 1px dotted #000;
  cursor: help;
}

hr { 
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/** Table **/
table {
  margin-bottom: 30px;
}

td {
  border: 1px solid #999;
  padding: 10px 15px;
  background: #ddd;
}

tr:nth-child(odd) td {
  background: #eee;
}

th, tfoot td {
  padding: 10px 15px;
  background: #bbb!important;
  border: 1px solid #999;
  font-weight: bold;
  text-transform: uppercase;
  white-space: nowrap;
  text-align: left;
}

/** List Style **/
ul { 
  margin-left: 0;
  list-style: none;
  margin-bottom: 30px;
}

ol { 
  margin-left: 0;
  list-style-type: decimal;
  margin-bottom: 30px;
}

/** Blockquote **/
blockquote {
  padding: 10px 7px;
  margin: 20px 0;
  font-style: italic;
  font-weight: bold;
  line-height: 1.3;
  font-size: 1.642em;
  font-family: "Playfair Display", serif;
  color: rgb(178, 31, 52);
  text-align: center;
  position: relative;
}

blockquote p {
	position: relative;
	margin-bottom: 0;
}

blockquote p:before {
  content: '“';
  margin-right: 5px;
  font-size: 2.1428em;
}

blockquote p:after {
  content: '”';
  margin-left: 5px;
  display: inline-block;
  margin-top: -5px;
  vertical-align: middle;
  font-size: 2.1428em;
}

blockquote cite {
  text-transform: uppercase;
  font-style: normal;
  font-size: 1em;
}

blockquote cite:before {
  content: '—';
}

/** Headings **/
h1, h2, h3, h4, h5, h6 { 
  font-weight: bold;
  margin-bottom: 20px;
}

h1 {
  font-size: 2.1428em;
  line-height: 36px;
}

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

h3 {
  font-size: 1.714em;
  line-height: 30px;
}

h4 {
  font-size: 1.5em;
  line-height: 27px;
}

h5 {
  font-size: 1.2857em;
  line-height: 24px;
}

h6 {
  font-size: 1.0714em;
  line-height: 21px;
}

/** Images **/
.alignleft {
  float: left;
  margin: 0 15px 30px 0;
}

.aligncenter {
  display: block;
  margin: 0 auto 30px auto;
}

.alignright {
  float: right;
  margin: 0 0 30px 15px;
}

.alignnone {
  float: none;
  display: block;
  margin: 0 0 30px 0;
}

p .alignleft {
  float: left;
  margin: 5px 15px 30px 0;
}

p .aligncenter {
  display: block;
  margin: 5px auto 30px auto;
}

p .alignright {
  float: right;
  margin: 5px 0 30px 15px;
}

p .alignnone {
  float: none;
  display: block;
  margin: 5px 0 30px 0;
}

.size-full {
  width: 100%;
  height: auto;
}
