/**
 * Paragraph
 */
.entry p {
  margin-bottom: 1em;
  line-height: 1.5;
}
/**
 * Image
 */
.entry img {
  margin-bottom: 1em;
}
/**
 * Header
 */
.entry h1,
.entry h2,
.entry h3,
.entry h4,
.entry h5,
.entry h6 {
  margin: 2em 0 1em;
  font-weight: bold;
}

/* .entry h1:first-child,
.entry h2:first-child,
.entry h3:first-child,
.entry h4:first-child,
.entry h5:first-child,
.entry h6:first-child {
  margin-top: 0;
} */

.entry h1 {
  font-size: 2em;
  color: #a8a88b;
}

.entry h2 {
  font-size: 1.5em;
  border-left: 4px solid #a8a88b;
  padding-left: .5em;
}

.entry h3 {
  font-size: 1.25em;
  color: #a8a88b;
}

.entry h4 {
  font-size: 1.125em;
}

.entry h5 {
  font-size: 1em;
}

.entry h6 {
  font-size: .875em;
  color: #a8a88b;
}

/**
 * Define List
 */
.entry dl {
  margin-bottom: 1em;
}

.entry dl dt {
  font-weight: bold;
  margin-bottom: .5em;
}

.entry dl dd {
  padding-left: 2em;
  margin-bottom: .5em;
}

/**
 * List
 */
.entry ol, .entry ul{
  padding-left: 2em;
}

.entry ol {
  list-style-type: decimal;
}

.entry ul {
  list-style-type: disc;
}

.entry fieldset {
  border: 1px solid #a8a88b;
  padding: 10px 20px 20px;
}


/**
 * Form
 */

 .entry input[type="text"],
 .entry input[type="email"],
 .entry input[type="url"],
 .entry input[type="password"],
 .entry input[type="search"],
 .entry input[type="number"],
 .entry input[type="tel"],
 .entry input[type="range"],
 .entry input[type="date"],
 .entry input[type="month"],
 .entry input[type="week"],
 .entry input[type="time"],
 .entry input[type="datetime"],
 .entry input[type="datetime-local"],
 .entry input[type="color"],
 .entry textarea {
  color: #a8a88b;
  background: #fff;
  background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
  border: 1px solid #bbb;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  display: block;
  padding: 0.7em;
  width: 100%;
}

.entry button,
.entry input[type="button"],
.entry input[type="submit"] {
  background-color: #a8a88b;
  border: 1px solid #a8a88b;
  color: #ffffff;
  cursor: pointer;
  display: inline-block;
  font-size: .875em;
  line-height: 1;
  padding: 1em 2em;
  margin-right: .5em;
}

.entry button.secondary,
.entry input[type="reset"],
.entry input[type="button"].secondary,
.entry input[type="reset"].secondary,
.entry input[type="submit"].secondary {
  border: 1px solid #a8a88b;
  color: #a8a88b;
  cursor: pointer;
  display: inline-block;
  font-size: .875em;
  line-height: 1;
  padding: 1em 2em;
  margin-right: .5em;
}

/**
 * Table
 */
table {
  width: 100%;
  border: 1px solid #a8a88b;
}

table th {
  font-weight: bold;
  white-space: nowrap;
  padding: .75em .5em;
  border: 1px solid #a8a88b;
}

table td {
  padding: .75em .5em;
  border: 1px solid #a8a88b;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

pre {
  background: #f0f0f0;
  font-family: "Courier 10 Pitch", Courier, monospace;
  line-height: 1.5;
  margin-bottom: 1em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

blockquote {
  position: relative;
  padding: 30px 15px 8px 15px;
  box-sizing: border-box;
  font-style: italic;
  background: #efefef;
  color: #555;
}
blockquote:before{
  display: inline-block;
  position: absolute;
  top: 5px;
  left: 3px;
  vertical-align: middle;
  content: "“";
  font-family: sans-serif;
  color: #cfcfcf;
  font-size: 90px;
  line-height: 1;
}
blockquote p {
  padding: 0;
  margin: 10px 0;
  line-height: 1.7;
}

blockquote cite {
  display: block;
  text-align: right;
  color: #888888;
  font-size: 0.9em;
}

em {
  font-style: italic;
}

strong {
  font-weight: bold;
}

