/*---------------------------------------------------------------------------*/
/*	General Styles
/*---------------------------------------------------------------------------*/

html, body {
    height: 100%;
    text-align: left;
}

*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  font-size: 100%;
}

body {
  background: white;
  color: #222222;
  padding: 0;
  margin: 0;
  font-family: "Helvetica", Arial, sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  line-height: normal;
  position: relative;
  cursor: default;
}

a:hover {
  cursor: pointer;
}

img {
  max-width: 100%;
  height: auto;
}

img {
  -ms-interpolation-mode: bicubic;
}

.post-content img, .page-content img {
    max-width: 100%;
}

.left, .alignleft {
    float: left;
    margin: 0 10px 10px 0;
    margin: 0 0.625rem 0.625rem 0;
}

.right, .alignright {
    float: right;
    margin: 0 0 10px 10px;
    margin: 0 0 0.625rem 0.625rem;
}

.overflow-hide {
    overflow: hidden;
}

.clear-left {
    clear: left;
}

.clear-right {
    clear: right;
}

.clear {
    clear: both;
}

.hide {
  display: none;
}

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: inline-block;
  vertical-align: middle;
}

textarea {
  height: auto;
  min-height: 50px;
}

select {
  width: 100%;
}

.v-top, .vertical-align-top {
    vertical-align: top;
}

.v-middle, .vertical-align-middle {
    vertical-align: middle;
}

.v-bottom, .vertical-align-bottom {
    vertical-align: bottom;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.text-justify {
  text-align: justify;
}

input {
    width: auto;
}

.inline-block {
    display: -moz-inline-stack;
    display: -webkit-inline-block;
    display: -ms-inline-block;
    display: inline-block;
    /* IE < 8: */
    *zoom: 1;
    *display: inline;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

ul li {
    margin: 0;
    padding: 0;
}

.relative {
    position: relative;
}

/*---------------------------------------------------------------------------*/
/*	Table Layout
/*---------------------------------------------------------------------------*/

.table {
    display: table;
    table-layout: fixed;
    width: 100%;
}

.table .table-row {
    display: table-row;
}

.table .table-row .table-cell {
    display: table-cell;
}

/*---------------------------------------------------------------------------*/
/*	Small Displays: Below 641px (DEFAULT)
/*---------------------------------------------------------------------------*/

@media only screen and (min-width: 0) and (max-width: 40.063em) {
  .hide-for-small,
  .hide-for-small-down,
  .hide-for-medium-down,
  .hide-for-large-down,
  .hide-for-xlarge-down,
  .hide-for-xxlarge-down {
    display: none !important;
  }
}


/*---------------------------------------------------------------------------*/
/*	Medium Displays: 641px and up
/*---------------------------------------------------------------------------*/

@media only screen and (min-width: 40.063em) {
    .hide-for-small-up,
    .hide-for-medium-up {
        display: none !important;
    }
}

@media only screen and (min-width: 40.063em) and (max-width: 64.063em) {
  .hide-for-medium-down,
  .hide-for-large-down,
  .hide-for-xlarge-down,
  .hide-for-xxlarge-down,
  .hide-for-medium {
      display: none !important;
  }
}

/*---------------------------------------------------------------------------*/
/*	Large Displays: 1024px and up
/*---------------------------------------------------------------------------*/

@media only screen and (min-width: 64.063em) {
  .hide-for-small-up,
  .hide-for-medium-up,
  .hide-for-large,
  .hide-for-large-up,
  .hide-for-large-only {
    display: none !important;
  }
}

@media only screen and (min-width: 64.063em) and (max-width: 90.063em) {
  .hide-for-large-down,
  .hide-for-xlarge-down,
  .hide-for-xxlarge-down {
    display: none !important;
  }
}

/*---------------------------------------------------------------------------*/
/*	X-Large Displays: 1441 and up
/*---------------------------------------------------------------------------*/

@media only screen and (min-width: 90.063em) {
  .hide-for-small-up,
  .hide-for-medium-up,
  .hide-for-large-up,
  .hide-for-xlarge,
  .hide-for-xlarge-up,
  .hide-for-xlarge-only,
  .hide-for-xxlarge-up {
    display: none !important;
  }
}

@media only screen and (min-width: 90.063em) and (max-width: 120.063em) {
  .hide-for-xlarge-down,
  .hide-for-xxlarge-down {
    display: none !important;
  }
}

/*---------------------------------------------------------------------------*/
/*	XX-Large Displays: 1920 and up
/*---------------------------------------------------------------------------*/

@media only screen and (min-width: 120.063em) {
  .hide-for-small-up,
  .hide-for-medium-up,
  .hide-for-large-up,
  .hide-for-xlarge-up,
  .hide-for-xxlarge-up,
  .hide-for-xxlarge-only,
  .hide-for-xxlarge-down {
    display: none !important;
  }
}