body {
  width: 100%;
  *zoom: 1;
}
body:before,
body:after {
  content: "";
  display: table;
}
body:after {
  clear: both;
}
/*---------------------------------------------------
    LESS Elements 0.9
  ---------------------------------------------------
    A set of useful LESS mixins
    More info at: http://lesselements.com
  ---------------------------------------------------*/
/* Lean Theme -------- */
.starting-title {
  line-height: 100%;
  padding-bottom: 1rem;
}
/* ------------------- */
html {
  font-size: 62.5%;
}
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  line-height: 150%;
  font-size: 1.6rem;
  background: url(../img/mooning.png) repeat;
  -webkit-font-smoothing: antialiased;
  color: #333;
  word-wrap: break-word;
  -ms-word-wrap: break-word;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Quattrocento', Georgia, serif;
  line-height: 170%;
  font-weight: normal;
}
h1 {
  font-size: 2.0em;
  /* 16 x 2.0   = 32 */
}
h2 {
  font-size: 1.5em;
  /* 16 x 1.5   = 24 */
}
h3 {
  font-size: 1.125em;
  /* 16 x 1.125 = 18 */
}
h4 {
  font-size: 1.0em;
  /* 16 x 1     = 16 */
}
h5 {
  font-size: 0.875em;
  /* 16 x 0.875 = 14 */
}
h6 {
  font-size: 0.75em;
  /* 16 x 0.75  = 12 */
}
a {
  text-decoration: none;
}
a:link {
  color: #a86d22;
}
a:visited {
  color: #a06d22;
}
a:hover {
  color: #eeaa66;
}
a:active {
  color: #eeaa66;
}
img {
  max-width: 100%;
  height: auto;
  border: none;
}
/* Misc Tags */
pre {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  border: 1px solid #bbb;
  background: #f5f5f5;
  padding: 1rem;
  margin-bottom: 1rem;
}
address,
code,
kbd,
tt,
var {
  font-family: monospace;
}
blockquote {
  padding-left: 2rem;
  font-size: 1.6rem;
  font-style: italic;
}
blockquote:before {
  font-family: FontAwesome;
  content: '\f10d';
  float: left;
  margin-right: 1rem;
}
strong {
  font-weight: bold;
}
small {
  font-size: 1.4rem;
}
big {
  font-size: 1.8rem;
}
acronym,
abbr {
  background: #f5f5f5;
  padding: 0 .5rem;
  border: 1px solid #bbb;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
em,
cite,
q {
  font-style: italic;
}
s,
strike,
del {
  text-decoration: line-through;
}
u,
ins {
  text-decoration: underline;
}
sub {
  vertical-align: sub;
  font-size: 75%;
}
sup {
  vertical-align: super;
  font-size: 75%;
}
/* // Misc Tags */
input {
  margin: 0;
}
input[type=text],
textarea {
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  border: none;
  line-height: 1;
  padding: 1rem;
}
textarea {
  line-height: 170%;
}
input[type=submit],
input[type=button],
input[type=reset] {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background: #333333;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #333333), color-stop(1, #414141));
  background: -ms-linear-gradient(bottom, #333333, #414141);
  background: -moz-linear-gradient(center bottom, #333333 0%, #414141 100%);
  background: -o-linear-gradient(#414141, #333333);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#414141', endColorstr='#333333', GradientType=0);
  font-size: 1.6rem;
  padding: .5em 1em;
  border: none;
  color: #fff;
  cursor: pointer;
}
input[type=submit]:hover,
input[type=button]:hover,
input[type=reset]:hover {
  background: #333333;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #414141), color-stop(1, #333333));
  background: -ms-linear-gradient(bottom, #414141, #333333);
  background: -moz-linear-gradient(center bottom, #414141 0%, #333333 100%);
  background: -o-linear-gradient(#333333, #414141);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#414141', GradientType=0);
}
hr {
  height: 0;
  border: none;
  border-bottom: 1px solid #bbb;
}
table {
  width: 100%;
  border-collapse: collapse;
}
th,
td {
  text-align: left;
  vertical-align: top;
  padding: .25rem .5rem;
  border: 1px solid #bbb;
}
th {
  font-weight: bold;
}
/* Lists */
dt {
  font-weight: bold;
}
dd {
  padding-left: 3rem;
}
ol {
  list-style: decimal outside;
  padding-left: 2rem;
}
ul {
  list-style: circle outside;
  padding-left: 2rem;
}
li ul,
li ol {
  padding-left: 2rem;
}
/* // Lists */
#wrap {
  margin: 0 auto;
  width: 960px;
  padding: 30px 0;
  *zoom: 1;
}
#wrap:before,
#wrap:after {
  content: "";
  display: table;
}
#wrap:after {
  clear: both;
}
.cnt {
  margin: 0 auto;
  width: 960px;
}
#main {
  position: relative;
  z-index: 10;
  background: #222222;
  *zoom: 1;
}
#main:before,
#main:after {
  content: "";
  display: table;
}
#main:after {
  clear: both;
}
#content {
  background: #ffffff;
  display: inline;
  float: left;
  width: 720px;
  margin: 0 0%;
}
#sidebar {
  display: inline;
  float: left;
  width: 240px;
  margin: 0 0%;
  color: #fff;
}
#sidebar .box {
  padding: 20px;
}
#sidebar .widget ul {
  list-style: none;
  padding: 0;
}
#sidebar .widget ul li:before {
  color: #ccc;
  font-family: FontAwesome;
  content: "\f105";
  font-size: 1.4rem;
  padding-right: .5rem;
}
#logo {
  display: block;
  margin: 0;
  color: #fff;
  font-size: 3rem;
  min-height: 80px;
  text-align: center;
  line-height: 100%;
}
#menu-main {
  margin: 0;
  padding: 0;
}
#menu-main li {
  display: block;
}
#menu-main li:before {
  content: '';
}
#menu-main li a {
  padding: 5px 20px;
  display: block;
  color: #fff;
}
#menu-main li a:hover {
  background: #000;
  background: rgba(255, 255, 255, 0.2);
}
#menu-main li a span {
  display: block;
}
#menu-main li a span.title {
  font-size: 1.6rem;
  font-weight: 500;
}
#menu-main li a span.sub {
  color: #aaa;
  font-size: 1.4rem;
}
#menu-main li.current-menu-item a {
  background: #000;
  background: rgba(255, 255, 255, 0.2);
}
body.blog .heading,
body.archive .heading {
  border-bottom: none;
  padding-bottom: 0;
}
.post,
.page {
  position: relative;
}
.post .heading,
.page .heading {
  padding: 0 20px 20px;
  border-bottom: 1px solid #bbb;
}
.post .icon,
.page .icon {
  float: right;
  margin-top: 10px;
}
.post.format-standard .icon:before,
.page.format-standard .icon:before {
  font-family: FontAwesome;
  content: '\f0f6';
}
.post.format-aside .icon:before,
.page.format-aside .icon:before {
  font-family: FontAwesome;
  content: '\f097';
}
.post.format-gallery .icon:before,
.page.format-gallery .icon:before {
  font-family: FontAwesome;
  content: '\f03e';
}
.post.format-link .icon:before,
.page.format-link .icon:before {
  font-family: FontAwesome;
  content: '\f0c1';
}
.post.format-image .icon:before,
.page.format-image .icon:before {
  font-family: FontAwesome;
  content: '\f083';
}
.post.format-quote .icon:before,
.page.format-quote .icon:before {
  font-family: FontAwesome;
  content: '\f10e';
}
.post.format-status .icon:before,
.page.format-status .icon:before {
  font-family: FontAwesome;
  content: '\f0a1';
}
.post.format-video .icon:before,
.page.format-video .icon:before {
  font-family: FontAwesome;
  content: '\f03d';
}
.post.format-audio .icon:before,
.page.format-audio .icon:before {
  font-family: FontAwesome;
  content: '\f130';
}
.post.format-chat .icon:before,
.page.format-chat .icon:before {
  font-family: FontAwesome;
  content: '\f0e6';
}
.post.sticky .icon:before,
.page.sticky .icon:before {
  font-family: FontAwesome;
  content: '\f13d';
}
.post h1,
.page h1 {
  margin-right: 2rem;
  padding-top: 10px;
}
.post h1 a,
.page h1 a {
  color: #474747;
}
.post h1 a:hover,
.page h1 a:hover {
  text-decoration: underline;
}
.post .meta,
.page .meta {
  color: #666;
  display: block;
  width: 101.66666666666666%;
  margin: 0 -0.8333333333333334%;
  *zoom: 1;
}
.post .meta:before,
.page .meta:before,
.post .meta:after,
.page .meta:after {
  content: "";
  display: table;
}
.post .meta:after,
.page .meta:after {
  clear: both;
}
.post .meta:before,
.page .meta:before,
.post .meta:after,
.page .meta:after {
  content: "";
  display: table;
}
.post .meta:after,
.page .meta:after {
  clear: both;
}
.post .meta .byline,
.page .meta .byline {
  display: inline;
  float: left;
  width: 81.66666666666667%;
  margin: 0 0.8333333333333334%;
}
.post .meta .comments-bubble,
.page .meta .comments-bubble {
  display: inline;
  float: left;
  width: 15%;
  margin: 0 0.8333333333333334%;
  text-align: right;
}
.post h1,
.page h1,
.post h2,
.page h2,
.post h3,
.page h3,
.post h4,
.page h4,
.post h5,
.page h5,
.post h6,
.page h6 {
  color: #474747;
}
.post .entry,
.page .entry {
  padding: 20px;
}
.post .entry p,
.page .entry p {
  margin: 0 0 1rem;
}
.post .entry p:last-child,
.page .entry p:last-child {
  margin-bottom: 0;
}
.post .entry .wp-caption,
.page .entry .wp-caption {
  *zoom: 1;
  max-width: 100%;
}
.post .entry .wp-caption:before,
.page .entry .wp-caption:before,
.post .entry .wp-caption:after,
.page .entry .wp-caption:after {
  content: "";
  display: table;
}
.post .entry .wp-caption:after,
.page .entry .wp-caption:after {
  clear: both;
}
.post .entry .wp-caption .wp-caption-text,
.page .entry .wp-caption .wp-caption-text {
  font-style: italic;
  margin-bottom: 8px;
  text-align: right;
}
.gallery {
  display: block;
  width: 101.66666666666666%;
  margin: 0 -0.8333333333333334%;
  *zoom: 1;
}
.gallery:before,
.gallery:after {
  content: "";
  display: table;
}
.gallery:after {
  clear: both;
}
.gallery .gallery-item .gallery-caption {
  font-style: italic;
  text-align: center;
}
.gallery-columns-2 .gallery-item {
  display: inline;
  float: left;
  width: 48.333333333333336%;
  margin: 0 0.8333333333333334%;
}
.gallery-columns-3 .gallery-item {
  display: inline;
  float: left;
  width: 31.666666666666664%;
  margin: 0 0.8333333333333334%;
}
.gallery-columns-4 .gallery-item {
  display: inline;
  float: left;
  width: 23.333333333333332%;
  margin: 0 0.8333333333333334%;
}
.gallery-columns-5 .gallery-item {
  display: inline;
  float: left;
  width: 18.333333333333332%;
  margin: 0 0.8333333333333334%;
}
.gallery-columns-6 .gallery-item {
  display: inline;
  float: left;
  width: 15%;
  margin: 0 0.8333333333333334%;
}
.gallery-columns-7 .gallery-item {
  display: inline;
  float: left;
  width: 12.619047619047619%;
  margin: 0 0.8333333333333334%;
}
.gallery-columns-8 .gallery-item {
  display: inline;
  float: left;
  width: 10.833333333333334%;
  margin: 0 0.8333333333333334%;
}
.gallery-columns-9 .gallery-item {
  display: inline;
  float: left;
  width: 9.444444444444443%;
  margin: 0 0.8333333333333334%;
}
.group {
  display: block;
  width: 101.66666666666666%;
  margin: 0 -0.8333333333333334%;
  *zoom: 1;
}
.group:before,
.group:after {
  content: "";
  display: table;
}
.group:after {
  clear: both;
}
.half {
  display: inline;
  float: left;
  width: 48.333333333333336%;
  margin: 0 0.8333333333333334%;
}
.third {
  display: inline;
  float: left;
  width: 31.666666666666664%;
  margin: 0 0.8333333333333334%;
}
.quarter {
  display: inline;
  float: left;
  width: 23.333333333333332%;
  margin: 0 0.8333333333333334%;
}
.sixth {
  display: inline;
  float: left;
  width: 15%;
  margin: 0 0.8333333333333334%;
}
.alignleft {
  float: left;
  margin: 0 1rem 1rem 0;
}
.alignright {
  float: right;
  margin: 0 0 1rem 1rem;
}
.aligncenter {
  margin: 0 auto;
}
.size-auto,
.size-full,
.size-large,
.size-medium,
.size-thumbnail {
  max-width: 100%;
  height: auto;
}
.pagination {
  padding: 10px 20px;
}
.pagination ul {
  list-style: none;
  padding: 0;
  *zoom: 1;
}
.pagination ul:before,
.pagination ul:after {
  content: "";
  display: table;
}
.pagination ul:after {
  clear: both;
}
.pagination ul li {
  float: left;
}
.pagination ul li a,
.pagination ul li span {
  display: block;
  padding: .5rem 1rem;
}
.pagination ul li a:hover,
.pagination ul li span:hover,
.pagination ul li a.current,
.pagination ul li span.current {
  background: #eee;
}
#comments {
  padding: 20px;
  border: 1px solid #bbb;
  border-width: 1px 0;
  background: #eee;
}
#comments h3 {
  line-height: 100%;
  padding-bottom: 1rem;
}
#comments ol,
#comments ul {
  list-style: none;
}
#comments ol.commentlist {
  padding-left: 0;
}
#comments ol li.comment {
  padding: 10px 0;
  *zoom: 1;
}
#comments ol li.comment:before,
#comments ol li.comment:after {
  content: "";
  display: table;
}
#comments ol li.comment:after {
  clear: both;
}
#comments ol li.comment .vcard {
  float: left;
  width: 48px;
}
#comments ol li.comment .vcard img {
  border-radius: 48px;
}
#comments ol li.comment .text {
  margin-left: 68px;
}
#comments ol li.comment .meta {
  color: #666;
}
#comments ol li.comment .meta .fn {
  color: #333;
  text-transform: uppercase;
  font-size: 1rem;
}
#comments ol li.comment .meta .misc {
  float: right;
  font-style: italic;
  font-size: 1.4rem;
}
#comments ol li.comment.bypostauthor .meta .fn:after {
  padding-left: 5px;
  font-size: 0.8rem;
  font-family: FontAwesome;
  vertical-align: super;
  content: '\f06c';
  color: #555;
}
#comments ol ul.children {
  padding-left: 48px;
}
#comments .comments-nav {
  *zoom: 1;
}
#comments .comments-nav:before,
#comments .comments-nav:after {
  content: "";
  display: table;
}
#comments .comments-nav:after {
  clear: both;
}
#comments .comments-nav .nav-previous {
  float: left;
}
#comments .comments-nav .nav-next {
  float: right;
}
#comment-form {
  padding: 20px;
}
#comment-form h3 {
  line-height: 100%;
  padding-bottom: 1rem;
}
#comment-form form {
  *zoom: 1;
}
#comment-form form:before,
#comment-form form:after {
  content: "";
  display: table;
}
#comment-form form:after {
  clear: both;
}
#comment-form input[type=text],
#comment-form textarea {
  width: 100%;
  border: 1px solid #bbb;
}
#comment-form input[type=text] {
  width: 30rem;
  height: 3rem;
}
#comment-form .field {
  display: block;
  width: 101.66666666666666%;
  margin: 0 -0.8333333333333334%;
  *zoom: 1;
  padding: 5px 0;
}
#comment-form .field:before,
#comment-form .field:after {
  content: "";
  display: table;
}
#comment-form .field:after {
  clear: both;
}
#comment-form .field label {
  display: inline;
  float: left;
  width: 15%;
  margin: 0 0.8333333333333334%;
  line-height: 3rem;
  position: relative;
}
#comment-form .field label .required {
  position: absolute;
  right: 0;
  color: #a86d22;
}
#comment-form .field label img {
  -webkit-border-radius: 75px;
  -moz-border-radius: 75px;
  border-radius: 75px;
}
#comment-form .field .input {
  display: inline;
  float: left;
  width: 81.66666666666667%;
  margin: 0 0.8333333333333334%;
}
#comment-form .form-submit {
  display: block;
  width: 101.66666666666666%;
  margin: 0 -0.8333333333333334%;
  *zoom: 1;
}
#comment-form .form-submit:before,
#comment-form .form-submit:after {
  content: "";
  display: table;
}
#comment-form .form-submit:after {
  clear: both;
}
#comment-form .form-submit input[type=submit] {
  display: inline;
  float: left;
  width: 31.666666666666664%;
  margin: 0 0.8333333333333334%;
  margin-left: 17.499999999999996%;
}
#comment-form .notes-after {
  display: inline;
  float: left;
  width: 81.66666666666667%;
  margin: 0 0.8333333333333334%;
  margin-left: 17.499999999999996%;
}
.widget_search {
  position: relative;
}
.widget_search .field {
  background: #fff;
  width: 100%;
}
.widget {
  padding-bottom: 1.5rem;
}
.widget h4 {
  line-height: 100%;
  padding-bottom: 1rem;
}
#footer {
  display: block;
  width: 101.66666666666666%;
  margin: 0 -0.8333333333333334%;
  *zoom: 1;
  margin: 0 0;
  width: 100%;
  position: relative;
  z-index: 9;
  background: url(../img/tweed.png) repeat;
  color: #bbb;
}
#footer:before,
#footer:after {
  content: "";
  display: table;
}
#footer:after {
  clear: both;
}
#footer a {
  color: #fff;
}
#footer a:hover {
  text-decoration: underline;
}
#footer p {
  margin-bottom: .25rem;
}
#footer .footer-column {
  display: inline;
  float: left;
  width: 31.666666666666664%;
  margin: 0 0.8333333333333334%;
}
#footer .widget {
  padding: 20px 10px;
}
#footer .widgettitle {
  color: #fff;
}
#footer .copyright {
  margin: 0;
  padding: 1rem 2rem;
  color: #999;
  clear: both;
  background: #000;
  background: rgba(0, 0, 0, 0.35);
  *zoom: 1;
}
#footer .copyright:before,
#footer .copyright:after {
  content: "";
  display: table;
}
#footer .copyright:after {
  clear: both;
}
#footer .copyright p {
  margin: 0;
  float: left;
}
#menu-footer {
  float: right;
}
#menu-footer li {
  list-style: none;
  float: left;
}
#menu-footer li a {
  display: block;
  padding: 0 0 0 1rem;
  color: #bbb;
}
#menu-footer li ul {
  display: none;
}
@media screen and (min-width: 1200px) {
  #wrap,
  .cnt {
    width: 1100px;
  }
  #content {
    width: 830px;
  }
  #sidebar {
    width: 270px;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  #wrap,
  .cnt {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  #content {
    width: 75%;
  }
  #sidebar {
    width: 25%;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 62.5%;
  }
  #wrap,
  .cnt {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  #content {
    width: 100%;
  }
  #sidebar {
    width: 100%;
  }
  #footer .footer-column {
    display: inline;
    float: left;
    width: 98.33333333333333%;
    margin: 0 0.8333333333333334%;
  }
}
@media screen and (max-width: 550px) {
  #comment-form .form-submit input[type=submit] {
    display: inline;
    float: left;
    width: 81.66666666666667%;
    margin: 0 0.8333333333333334%;
    margin-left: 17.499999999999996%;
  }
}
