@import url('https://fonts.googleapis.com/css?family=Roboto%3A700%2C400%2C300 '); 

/* Body - general */
  body {
    width: 100%;
    font-family: 'Roboto', sans-serif; 
    font-weight: 300;
    color: #333;
    font-size: 15px;
    text-align: center;
  }

  * {
    margin: 0;
    padding: 0;
  }

  .cleaner {
    clear: both;
  }

  .wrapper {
    position: relative;
    margin: 0 auto;
  }

  /* Fonts */
  h1 {
    font-size: 30px;
    font-weight: 700;
  }

  h2, .widget-title {
    font-size: 20px;
    font-weight: 400;
  }

  h3 {
    font-size: 18px;
    font-weight: 400;
    color: #333;
  }

  h4 {
    font-size: 16px;
    font-weight: 400;
    color: #333;
  }

  p {
    line-height: 25px;
  }

  a {
    text-decoration: none;
  }

  /* Dynamic styles */
  .height-full {
    height: 100%;
  }
  .width-full {
    width: 100%;
  }
  .not-visible {
    zoom: 1;
    filter: alpha(opacity=0);
    opacity: 0;
  }
  .visible {
    zoom: 1;
    filter: alpha(opacity=100);
    opacity: 1;
  }
  .alignright {
    text-align: right;
  }
  .alignleft {
    text-align: left;
  }
  .aligncenter {
    text-align: center;
  }
  .size-auto, 
  .size-full,
  .size-large,
  .size-medium,
  .size-thumbnail {
    max-width: 100%;
    height: auto;
  }

  .wp-caption, .wp-caption-text, .gallery-caption {
    font-size: 15px;
  }
  .sticky {
    background-color: #f0f0f0;
  }

  /* Image wrapper */
  .img-wrapper {
    overflow: hidden;
  }

  /* Buttons */
  .button, .comments #submit, #searchsubmit {
    position: relative;
    color: #fff;
    text-align: center;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    font-size: 18px;
    border: 0px;
    cursor: pointer;
  }
    .button:hover, .comments #submit:hover, #searchsubmit:hover {
      color: #fff !important;
    }

  /* Form */
  input, textarea, select {
    font-family: 'Roboto', sans-serif; 
    font-size: 15px;
    font-weight: 300;
  }

  input[type='text'], input[type='email'], input[type='password'], textarea, select {
    background-color: #fff;
    border: 0px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
  }

  select {
    -webkit-appearance: none;
  }

  .input-wrapper {
    position: relative;
    float: left;
  }

  /******************/
  /* Switch styles */
  .grey { color: #888; }

  /*****************/
  /*****************/  

.header, .welcome, .middle, .footer, .content, .detail, .with-sidebar, .sidebar, .booking, .button, .menu-wrapper, input, textarea, select, .comments {
  box-sizing: border-box; /* Opera/IE 8+ */ 
  -webkit-box-sizing: border-box; /* Safari, Chrome */ 
  -moz-box-sizing: border-box; /* Firefox */ 
}

/* Header */
  .header {
    position: relative;
    background-color: #fff;
  }
    .logo {
      position: relative;
      float: left;
      overflow: hidden;
      text-align: left;
      zoom: 1;
      filter: alpha(opacity=100);
      opacity: 1;

      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
    }
      .logo:hover {
        zoom: 1;
        filter: alpha(opacity=70);
        opacity: 0.7;
      }
    .language-switch {
      position: relative;
      color: #fff;
      cursor: pointer;
      
      margin: 0 auto;
      padding: 10px 30px 10px 30px;
      top: -5px;
    }
    /* Menu */
    .menu-wrapper {
      position: relative;
      float: left;
    }
      .menu {
        position: absolute;
        list-style: none;
        text-align: right;
      }
        ul.menu li, .menu-trigger {
          float: left;
          text-align: left;
          text-transform: uppercase;
        }
          ul.menu li a, .menu-trigger {
            color: #333;
            font-weight: 400;

            -webkit-transition: all 0.3s ease-out;
            -moz-transition: all 0.3s ease-out;
            -o-transition: all 0.3s ease-out;
            transition: all 0.3s ease-out;
          }
          ul.menu li a span {
            text-transform: none;
            font-style: italic;
            font-size: 13px;
            font-weight: 300;
          }
          ul.menu li.reservation-btn {
            -webkit-border-radius: 4px;
            -moz-border-radius: 4px;
            border-radius: 4px;
          }
            ul.menu li.reservation-btn a {
              color: #fff;
            }
              ul.menu li.reservation-btn a:hover {
                color: #fff !important;
              }
            ul.menu li.reservation-btn a span {
              color: rgba(255,255,255,0.7);
            }

/* Slider */
  .slider {
    position: relative;
    background-color: gray;
  }
    .slider img {
      position: absolute;
      display: none;
    }
    .slider img.active {
      display: block;
    }

/* Video Slider */
  .video-slider {
    position: relative;
    background-color: gray;
    overflow: hidden;
  }
    .video-slider video {
      position: absolute;
    }

/* Welcome */
  .welcome {
    position: relative;
    background-color: #fff;
    text-align: left;
  }
    .welcome-wrapper {
      position: relative;
      float: left;
    }
    .welcome p {
      position: relative;
      font-style: italic;
      color: #888;
    }
  .facilities {
    position: relative;
  }
  .facilities ul {
    list-style: none;
    font-weight: 400;
  }
    .facilities ul li {
      line-height: 35px;
    }
    .facilities ul li img {
      position: relative;
      float: left;

      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
    }

/* Middle */
  .middle {
    position: relative;
    background-color: #f4f4f4;
    text-align: left;
  }
    .testemonials {
      position: relative;
      float: left;
    }
      .testemonial {
        position: relative;
        float: left;
      }
        .testemonial .img-wrapper {
          position: relative;
          background-color: #ccc;
          -webkit-border-radius: 50%;
          -moz-border-radius: 50%;
          border-radius: 50%;
          float: left;
        }
        .testemonial .img-wrapper img {
        }
        .testemonial:hover .img-wrapper img {
          -moz-transform: scale(1.2);
          -o-transform: scale(1.2);
          -webkit-transform: scale(1.2);
          -ms-transform: scale(1.2);
          transform: scale(1.2);
        }
        .testemonial span {
          font-weight: 400;
          position: relative;
          float: left;
        }
        .testemonial p {
          font-style: italic;
          position: relative;
          clear: both;
          color: #888;
        }
    .middle .gallery a {
      position: relative;
      float: left;
      overflow: hidden;
    }
      .middle .gallery a {
      }
        .middle .gallery a:nth-child(3n) {
        }
      .middle .gallery a img {
        -webkit-transition: all 0.3s ease-out;
        -moz-transition: all 0.3s ease-out;
        -o-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
      }
        .middle .gallery a:hover img {
          -moz-transform: scale(1.2);
          -o-transform: scale(1.2);
          -webkit-transform: scale(1.2);
          -ms-transform: scale(1.2);
          transform: scale(1.2);
        }

/* Footer */
  .footer {
    position: relative;
    text-align: left;
  }
    .footer a {
      color: #fff;
    }
      .footer a:hover {
          color: #fff !important;
          text-decoration: underline;
        }
    .footer .directions {
      position: relative;
      float: left;
    }
      .footer .directions .map {
        position: relative;
        background-color: gray;
        float: left;
      }
      .footer .directions p {
        position: relative;
        float: left;
        color: #fff;
      }
    .footer .wheater {
      display: none;
      position: relative;
      float: left;
    }
      .wheater .day {
        position: relative;
        text-align: center;
        float: left;
        color: #fff;
      }
        .wheater .day {
          zoom: 1;
          filter: alpha(opacity=70);
          opacity: 0.7;
        }
          .wheater .day:first-child {
            zoom: 1;
            filter: alpha(opacity=100);
            opacity: 1;
          }
        .wheater .day .img-wrapper {
          position: relative;
          margin: 0 auto;
        }
          .wheater .day .img-wrapper img {
            position: absolute;
          }
          .wheater .day .temperature {
            position: relative;
            font-size: 30px;
            font-weight: 400;
          }
    .footer .news {
      position: relative;
      float: left;
      text-align: right;
      color: #fff;
    }
      .footer .news ul {
        list-style: none;
      }
      .footer .news ul li a, .footer .news a {
        color: #fff;
      }
        .footer .news a:hover {
          color: #fff !important;
          text-decoration: underline;
        }
    .footer .copyright {
      position: relative;
      float: left;
      color: #fff;
    }
    .footer .socials-wrapper {
      position: relative;
      float: left;  
    }
    .footer ul.socials {
      position: absolute;
      list-style: none;
    }
      .footer ul.socials li {
        float: left;
      }
        .footer ul.socials li a {
          color: #fff !important;
        }
          .footer ul.socials li a img {
            -webkit-transition: all 0.3s ease-out;
            -moz-transition: all 0.3s ease-out;
            -o-transition: all 0.3s ease-out;
            transition: all 0.3s ease-out;
          }
          .footer ul.socials li a img:hover {
            zoom: 1;
            filter: alpha(opacity=70);
            opacity: 0.7;
          }

/* Content */
  .container {
  }
    .no-sidebar {
    }
    .with-sidebar {
      display: table;
    }
      .with-sidebar .content {
        display: table-cell; 
      }
  .content {
    float: none;  
    background-color: #f7f7f7;  
    vertical-align: top; 
    text-align: left;
  }

  .list {
    position: relative;
  }

/* Gallery */
  .gallery a {
    position: relative;
    float: left;
    overflow: hidden;
  }
    .gallery a img {
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
    }
    .gallery a:hover img {
      -moz-transform: scale(1.1);
      -o-transform: scale(1.1);
      -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
      transform: scale(1.1);
    }

/* Sidebar */
  .sidebar {
    float: none;    
    vertical-align: top;
    display: table-cell;  
    background-color: #f0f0f0;  
  }
    .sidebar .widget {
      position: relative;
      text-align: left;
      float: left;
    }
      .widget h2, .widget-title {
        position: relative;
      }
      .widget ul {
        list-style: none;
      }
        .widget ul li {
          line-height: 30px;
        }
          .widget ul li a {
            color: #333;
          }
            .widget ul li a:hover {
              text-decoration: underline;
            }
      .widget .gallery a {
        float: left;
      }


/* Directions */
  .directions {
    position: relative;
    float: left;
  }
  .directions .map {
    position: relative;
    float: left;
    background-color: gray;
  }
    .directions p {
      float: left;
    }
    .directions a:hover {
      text-decoration: underline;
    }

/* Message */
  .message {
    position: relative;
    color: #fff;
    overflow: auto;
  }
    .message img {
      position: relative;
      float: left;
    }
    .message p {
      text-align: left;
      float: left;
    }

/* Datepicker */
  .ll-skin-melon {
    font-size: 100%;
  }

  .ui-widget-content {
    font-family: "Roboto", Helvetica, Arial, Verdana, sans-serif !important;
    background: #1a1a1a !important;
    border: none !important;
    border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
  }

  .ui-datepicker {
    padding: 0 !important;
  }

  .ui-corner-all {
    border-radius: 0 !important;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
  }

  .ui-datepicker-header {
    border: none !important;
    background: transparent !important;
    font-weight: normal !important;
    font-size: 15px !important;
  }

  .ui-datepicker-header .ui-state-hover {
    background: transparent;
    border-color: transparent;
    cursor: pointer;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
  }

  .ui-datepicker .ui-datepicker-title {
    margin-top: .4em;
    margin-bottom: .3em;
    color: #e9f0f4;
  }

  .ui-datepicker .ui-datepicker-prev-hover,
  .ui-datepicker .ui-datepicker-next-hover,
  .ui-datepicker .ui-datepicker-next,
  .ui-datepicker .ui-datepicker-prev {

  }

  .ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover {
    padding: 0px !important;
  }

  .ui-datepicker .ui-datepicker-next span,
  .ui-datepicker .ui-datepicker-prev span {
    position: absolute;
    top: 5px;
    font-weight: normal;
    color: #888 !important;
  }

  .ui-datepicker .ui-datepicker-prev span {
    left: 10px;
  }
  .ui-datepicker .ui-datepicker-next span {
    right: 10px;
  }

  .ui-datepicker table {
    margin: 0 !important;
    border-collapse: collapse;
  }

  .ui-datepicker th {
    padding: 1em 0;
    color: #ccc;
    font-size: 13px;
    font-weight: normal;
    border: none;
    border-top: 1px solid #3a414d;
  }

  .ui-datepicker td {
    background: #d8d8d8;
    border: none;
  }

  .ui-datepicker td .ui-state-default {
    background: transparent;
    border: none;
    text-align: center;
    font-weight: 300;
    color: #888;
    font-size: 15px;
    padding: 0px 10px 0px 10px;
    line-height: 40px;
  }

  .ui-state-disabled  {
    opacity: 1 !important;
  }

  .ui-state-disabled .ui-state-default {
    color: #fff;
  }

  .ui-state-hover {
    border: 0px !important;
    background: #333 !important;
    padding: 10px 10px 10px 10px !important;
  }

  .ui-datepicker td .ui-state-active,
  .ui-datepicker td .ui-state-hover {
    background: #333 !important;
    padding: 10px 10px 10px 10px !important;
  }

/* Desktops, Tablets landscape ----------- */
@media only screen and (min-width : 769px) {

/* Body - general */
  body {
  }

  * {
  }

  .cleaner {
  }

  .wrapper {
  }

  /* Fonts */
  h1 {
  }

  h2 {
  }

  h3 {
  }

  h4 {
  }

  p {
  }

  a {
  }
    a:hover {
    }

  .img-wrapper {
  }

  /* Buttons */
  .button, .comments #submit {
    padding: 10px 40px 10px 40px;
  }
    .button:hover {
    }

  /* Form */
  input, textarea, select {
  }

  input[type='text'], input[type='email'], input[type='password'], textarea, select {
    padding: 15px 20px 15px 20px;
  }

  select {
  }

  .input-wrapper {
  }

/* Header */
  .header {
    width: 100%;
    padding: 30px 40px 30px 40px;
  }
    .logo {
      width: 180px;
      height: 70px;
    }
      .logo img {
        width: 100%;
      }
    .menu-wrapper {
      width: 720px;
      margin: 10px 0px 0px 0px;
    }
      .menu-trigger {
        display: none;
      }
      .menu {
        right: 0px;
      }
        ul.menu li {
          margin: 0px 0px 0px 25px;
        }
          ul.menu li a {
          }
          ul.menu li a span {
          }
          ul.menu li.reservation-btn {
            margin: -10px 0px 0px 25px;
            padding: 10px 10px 10px 10px;
          }
            ul.menu li.reservation-btn a {
            }
              ul.menu li.reservation-btn a:hover {
              }
            ul.menu li.reservation-btn a span {
            }

/* Slider */
  .slider {
    width: 100%;
    height: 422px;
  }
    .video-slider {
      width: 100%;
      height: 422px;
    }
      .video-slider video {
        width: 1040px !important;
        height: 600px !important;
        top: -90px;
        left: -30px;
      }
    .slider img {
      width: 100%;
      top: 0px;
      left: 0px;
    }
    .slider img.active {
    }

/* Welcome */
  .welcome {
    width: 100%;
    padding: 50px 40px 50px 40px;
  }
    .welcome-wrapper {
      width: 600px;
    }
    .welcome p {
      margin: 30px 0px 0px 0px;
      width: 90%;
    }
  .facilities {
    float: left;
    margin: 10px 0px 0px 0px;
  }
  .facilities ul {
    margin: 30px 0px 0px 0px;
  }
    .facilities ul li {
      height: 55px;
    }
    .facilities ul li img {
      width: 35px;
      height: 35px;
      margin: 0px 20px 0px 0px;
    }
      .facilities ul li:hover img {
        width: 35px;
        height: 35px;
        margin: 0px 30px 0px 0px;
      }

/* Middle */
  .middle {
    width: 100%;
    padding: 50px 40px 20px 40px;
  }
    .testemonials {
      width: 50%;
    }
      .testemonial {
        width: 85%;
        margin: 0px 0px 30px 0px;
      }
        .testemonial .img-wrapper {
          width: 60px;
          height: 60px;
        }
        .testemonial .img-wrapper img {
          width: 60px;
        }
          .testemonial:hover .img-wrapper img {
          }
        .testemonial span {
          margin: 18px 0px 0px 15px;
        }
        .testemonial p {          
          margin: 0px 0px 0px 75px;
          top: -10px;
        }
    .middle .gallery a {
      width: 140px;
      height: 100px;
    }
      .middle .gallery a {
        margin: 0px 15px 15px 0px;
      }
        .middle .gallery a:nth-child(3n) {
          margin: 0px 0px 15px 0px;
        }
      .middle .gallery a img {
        width: 140px;
        height: 100px;
      }

/* Footer */
  .footer {
    width: 100%;
    padding: 50px 40px 30px 40px;
  }
    .footer .directions {
      width: 55%;
    }
      .footer .directions .map {
        width: 245px;
        height: 150px;
      }
      .footer .directions p {
        margin: 20px 0px 0px 20px;
      }
        .footer .directions a {
        }
          .footer .directions a:hover {
          }
    .footer .wheater {
      width: 45%;
      margin: 20px 0px 0px 0px;
    }
      .wheater .day {
        width: 75px;
      }
        .wheater .day {
        }
          .wheater .day:first-child {
          }
        .wheater .day .img-wrapper {
          width: 40px;
          height: 40px;
        }
          .wheater .day .img-wrapper img {
            top: 0px;
            height: 40px;
            width: 200px;
          }
          .wheater .day .temperature {
            margin: 10px 0px 0px 10px;
          }
    .footer .news {
      width: 45%;
      margin: 20px 0px 0px 0px;
    }
      .footer .news ul {
        line-height: 25px;
      }
    .footer .copyright {
      width: 40%;
      margin: 40px 0px 0px 0px;
    }
    .footer .socials-wrapper {
      width: 60%;
      margin: 40px 0px 0px 0px;
    }
    .footer ul.socials {
      right: 0px;
    }
      .footer ul.socials li {
        margin: 0px 0px 0px 8px;
      }
        .footer ul.socials li a {
        }
        .footer ul.socials li a img {
          width: 30px;
          height: 30px;
        }
          .footer ul.socials li a:hover {
          }

/* Content */
  .container {
  }
    .no-sidebar {
      width: 100%;
    }
    .with-sidebar {
    }
      .with-sidebar .content {
      }
  .content {
    padding: 50px 50px 50px 50px;  
  }

  .list {
    margin: 50px 0px 0px 0px;
  }

/* Gallery */
  .gallery a {
      width: 200px;
      height: 150px;
      margin: 0px 10px 10px 0px;
  }
    .gallery a img {
    }

/* Sidebar */
  .sidebar { 
    padding: 50px 30px 50px 30px;  
  }
    .sidebar .widget {
      width: 100%;
      margin: 0px 0px 50px 0px;
    }
      .widget h2, .widget-title {
        margin: 0px 0px 20px 0px;
      }
      .widget ul {
      }
        .widget ul li {
        }
          .widget ul li a {
          }
            .widget ul li a:hover {
            }
      .widget .gallery a {
        width: 75px;
        height: 75px;
      }


  /* Directions */
    .directions {
    }
    .directions .map {
      width: 400px;
      height: 300px;
    }
      .directions .directions-content {
        width: 200px;
        margin: 10px 0px 20px 20px;
      }
        .directions .directions-content p {
          width: 100%;
          margin: 10px 0px 10px 0px;
        }
      .directions a {
      }

  /* Message */
    .message {
      height: 60px;
      margin-bottom: 30px;
    }
      .message .wrapper {
        margin-bottom: 0px;
        margin-top: 0px;
      }
      .message img {
        width: 40px;
        height: 40px;
        margin: 10px 0px 0px 0px;
      }
      .message p {
        margin: 18px 0px 0px 20px;
      }
    /* Message for mobile devices */
    .message-mobile {
      display: none;
    }

}

/* Desktops ----------- */
@media (min-width : 1025px) {
  /* Wrapper */
  .wrapper {
    width: 980px;
    margin-top: 80px;
    margin-bottom: 80px;
  }

  /* Content */
    .with-sidebar .content {
      width: 730px;
    }  

  /* Sidebar */
    .sidebar {
      width: 250px;
    }
}

/* Ipad / Kindle landscape ------------- */
@media only screen and (min-width : 768px) and (max-width : 1024px) {
  /* Wrapper */
  .wrapper {
    width: 100%;
    margin-top: 0px;
    margin-bottom: 0px;
  }

  /* Content */
    .with-sidebar .content {
      width: 730px;
    }  

  /* Sidebar */
    .sidebar {
      width: 279px;
    }
}

/* Tablets portrait ----------- */
@media only screen and (min-width : 385px) and (max-width : 768px) {

/* Body - general */
  body {
  }

  * {
  }

  .cleaner {
  }

  .wrapper {
  }

  /* Fonts */
  h1 {
  }

  h2 {
  }

  h3 {
  }

  h4 {
  }

  p {
  }

  a {
  }
    a:hover {
    }

  .img-wrapper {
  }

  /* Buttons */
  .button, .comments #submit {
    padding: 10px 40px 10px 40px;
  }
    .button:hover {
    }

  /* Form */
  input, textarea, select {
  }

  input[type='text'], input[type='email'], input[type='password'], textarea, select {
    padding: 15px 20px 15px 20px;
  }

  select {
  }

  .input-wrapper {
  }

/* Header */
  .header {
    width: 100%;
    padding: 25px 40px 25px 40px;
  }
    .logo {
      float: none;

      width: 200px;
      height: 70px;
      margin: 0 auto;
    }
      .logo img {
        width: 200px;
      }
    .menu-wrapper {
      width: 100%;
      height: 60px;
      margin: 40px 0px 0px 0px;
    }
      .menu-trigger {
        display: none;
      }
      .menu {
        position: relative;
        
        margin: 0 auto;
        width: 660px;
      }
        ul.menu li {
          margin: 0px 25px 0px 0px;
        }
          ul.menu li a {
          }
          ul.menu li a span {
          }
          ul.menu li.reservation-btn {
            margin: -10px 0px 0px 0px;
            padding: 10px 10px 10px 10px;
          }
            ul.menu li.reservation-btn a {
            }
              ul.menu li.reservation-btn a:hover {
              }
            ul.menu li.reservation-btn a span {
            }

/* Slider */
  .slider {
    width: 100%;
    height: 422px;
  }
    .slider img {
      width: 100%;
      top: 0px;
      left: 0px;
    }
    .slider img.active {
    }
    .video-slider {
      width: 100%;
      height: 422px;
    }
      .video-slider video {
        width: 900px !important;
        height: 600px !important;
        top: -90px;
        left: -30px;
      }

/* Welcome */
  .welcome {
    width: 100%;
    padding: 50px 40px 50px 40px;
  }
    .welcome-wrapper {
      width: 100%;
      margin-bottom: 50px;
    }
    .welcome p {
      margin: 30px 0px 0px 0px;
      width: 100%;
    }
  .facilities {
    margin: 0px 0px 0px 0px;
  }
  .facilities ul {
    margin: 30px 0px 0px 0px;
  }
    .facilities ul li {
      height: 55px;
    }
    .facilities ul li img {
      width: 35px;
      height: 35px;
      margin: 0px 20px 0px 0px;
    }

/* Middle */
  .middle {
    width: 100%;
    padding: 50px 40px 50px 40px;
  }
    .testemonials {
      width: 50%;
    }
      .testemonial {
        width: 85%;
        margin: 0px 0px 30px 0px;
      }
        .testemonial .img-wrapper {
          width: 60px;
          height: 60px;
        }
        .testemonial .img-wrapper img {
          width: 60px;
        }
        .testemonial span {
          margin: 18px 0px 0px 15px;
        }
        .testemonial p {          
          margin: 0px 0px 0px 75px;
          top: -10px;
        }
    .middle .gallery a {
      width: 140px;
      height: 100px;
    }
      .middle .gallery a {
        margin: 0px 15px 15px 0px;
      }
        .middle .gallery a:nth-child(2n) {
          margin: 0px 0px 15px 0px;
        }
      .middle .gallery a img {
        width: 140px;
        height: 100px;
      }

/* Footer */
  .footer {
    width: 100%;
    padding: 50px 40px 30px 40px;
  }
    .footer .directions {
      width: 60%;
    }
      .footer .directions .map {
        width: 245px;
        height: 150px;
      }
      .footer .directions p {
        margin: 20px 0px 0px 20px;
      }
        .footer .directions a {
        }
          .footer .directions a:hover {
          }
    .footer .news {
      width: 40%;
      margin: 20px 0px 0px 0px;
    }
      .footer .news ul {
        line-height: 25px;
      }
    .footer .wheater {
      width: 40%;
      margin: 0px 0px 20px 0px;
    }
      .wheater .day {
        width: 75px;
        margin: 0px 0px 20px 0px;
      }
        .wheater .day {
        }
          .wheater .day:first-child {
          }
        .wheater .day .img-wrapper {
          width: 40px;
          height: 40px;
        }
          .wheater .day .img-wrapper img {
            top: 0px;
            height: 40px;
            width: 200px;
          }
          .wheater .day .temperature {
            margin: 10px 0px 0px 10px;
          }
    .footer .copyright {
      width: 35%;
      margin: 40px 0px 0px 0px;
    }
    .footer .socials-wrapper {
      width: 65%;
      margin: 40px 0px 0px 0px;
    }
    .footer ul.socials {
      right: 0px;
    }
      .footer ul.socials li {
        margin: 0px 0px 0px 8px;
      }
        .footer ul.socials li a {
        }
        .footer ul.socials li a img {
          width: 30px;
          height: 30px;
        }
          .footer ul.socials li a:hover {
          }

/* Content */
  .container {
  }
    .no-sidebar {
      width: 100%;
    }
    .with-sidebar {
    }
      .with-sidebar .content {
        width: 70%;
      }
  .content {
    padding: 50px 50px 50px 50px;  
  }

  .list {
    margin: 50px 0px 0px 0px;
  }

/* Gallery */
  .gallery a {
      width: 200px;
      height: 150px;
      margin: 0px 10px 10px 0px;
  }
    .gallery a img {
    }

/* Sidebar */
  .sidebar { 
    width: 30%;
    padding: 50px 30px 50px 30px;  
  }
    .sidebar .widget {
      width: 100%;
      margin: 0px 0px 50px 0px;
    }
      .widget h2, .widget-title {
        margin: 0px 0px 20px 0px;
      }
      .widget ul {
      }
        .widget ul li {
        }
          .widget ul li a {
          }
            .widget ul li a:hover {
            }
      .widget .gallery a {
        width: 60px;
        height: 60px;
      }


  /* Directions */
    .directions {
    }
    .directions .map {
      width: 400px;
      height: 300px;
    }
      .directions .directions-content {
        width: 200px;
        margin: 30px 0px 20px 0px;
      }
        .directions .directions-content p {
          margin: 30px 0px 0px 0px;
        }
      .directions a {
      }

  /* Message */
    .message {
      height: 60px;
      margin-bottom: 30px;
    }
      .message .wrapper {
        margin-bottom: 0px;
        margin-top: 0px;
      }
      .message img {
        width: 40px;
        height: 40px;
        margin: 10px 0px 0px 0px;
      }
      .message p {
        margin: 18px 0px 0px 20px;
      }
    /* Message for mobile devices */
    .message-mobile {
      display: none;
    }

}

/* Mobile ----------- */
@media only screen and (max-width : 384px) {

/* Body - general */
  body {
  }

  * {
  }

  .cleaner {
  }

  .wrapper {
    width: 100%;
    margin-top: 0px;
    margin-bottom: 0px;
  }

  /* Fonts */
  h1 {
  }

  h2 {
  }

  h3 {
  }

  h4 {
  }

  p {
  }

  a {
  }
    a:hover {
    }

  .img-wrapper {
  }

  /* Buttons */
  .button, .comments #submit {
    padding: 10px 40px 10px 40px;
  }
    .button:hover {
    }

  /* Form */
  input, textarea, select {
  }

  input[type='text'], input[type='email'], input[type='password'], textarea, select {
    padding: 15px 20px 15px 20px;
  }

  select {
  }

  .input-wrapper {
  }

/* Header */
  .header {
    width: 100%;
    padding: 25px 30px 25px 30px;
  }
    .logo {
      float: left;

      width: 120px;
      height: 40px;
      margin: 0 auto;
    }
      .logo img {
          height: 100%;
        }
    .menu-wrapper {
      display: none;
      position: absolute;
      background-color: #fff;
      z-index: 999;

      top: 0px;
      left: 0px;
      width: 100%;
      margin: 0px 0px 0px 0px;
      padding: 30px 20px 140px 20px;
    }
      #menu-wrapper:target {
        display: block;
      }
      .menu-trigger {
        display: block;

        margin: 10px 0px 0px 50px;
      }
      .menu {
        position: relative;
        
        margin: 0 auto;
        width: 100%;
      }
        ul.menu li {
          float: none;
          text-align: center;

          margin: 0px 0px 20px 0px;
        }
          ul.menu li a {
          }
          ul.menu li a span {
          }
          ul.menu li.reservation-btn {
            margin: -10px 0px 0px 0px;
            padding: 10px 10px 10px 10px;
          }
            ul.menu li.reservation-btn a {
            }
              ul.menu li.reservation-btn a:hover {
              }
            ul.menu li.reservation-btn a span {
            }

/* Slider */
  .slider {
    width: 100%;
    height: 200px;
  }
    .slider img {
      width: 100%;
      top: 0px;
      left: 0px;
    }
    .slider img.active {
    }
    .video-slider {
      width: 100%;
      height: 422px;
    }
      .video-slider video {
        width: 900px !important;
        height: 600px !important;
        top: -90px;
        left: -300px;
      }


/* Welcome */
  .welcome {
    width: 100%;
    padding: 50px 40px 50px 40px;
  }
    .welcome-wrapper {
      width: 100%;
      margin-bottom: 50px;
    }
    .welcome p {
      margin: 30px 0px 0px 0px;
      width: 100%;
    }
  .facilities {
    margin: 0px 0px 0px 0px;
  }
  .facilities ul {
    margin: 30px 0px 0px 0px;
  }
    .facilities ul li {
      height: 55px;
    }
    .facilities ul li img {
      width: 35px;
      height: 35px;
      margin: 0px 20px 0px 0px;
    }

/* Middle */
  .middle {
    width: 100%;
    padding: 50px 40px 50px 40px;
  }
    .testemonials {
      width: 100%;
    }
      .testemonial {
        width: 100%;
        margin: 0px 0px 30px 0px;
      }
        .testemonial .img-wrapper {
          width: 60px;
          height: 60px;
        }
        .testemonial .img-wrapper img {
          width: 60px;
        }
        .testemonial span {
          margin: 18px 0px 0px 15px;
        }
        .testemonial p {          
          margin: 0px 0px 0px 75px;
          top: -10px;
        }
    .middle .gallery {
      margin: 30px 0px 0px 0px;
    }
    .middle .gallery a {
      width: 100%;
    }
      .middle .gallery a {
        margin: 10px 0px 0px 0px;
      }
      .middle .gallery a img {
        width: 100%;
      }

/* Footer */
  .footer {
    width: 100%;
    padding: 50px 40px 30px 40px;
  }
    .footer .directions {
      width: 100%;
    }
      .footer .directions .map {
        width: 100%;
        height: 150px;
      }
      .footer .directions p {
        margin: 20px 0px 0px 0px;
      }
        .footer .directions a {
        }
          .footer .directions a:hover {
          }
    .footer .news {
      text-align: left;
      width: 100%;
      margin: 50px 0px 20px 0px;
    }
      .footer .news ul {
        line-height: 25px;
      }
    .footer .wheater {
      width: 100%;
      margin: 50px 0px 20px 0px;
    }
      .wheater .day {
        width: 75px;
        margin: 0px 0px 20px 0px;
      }
        .wheater .day {
        }
          .wheater .day:first-child {
          }
        .wheater .day .img-wrapper {
          width: 40px;
          height: 40px;
        }
          .wheater .day .img-wrapper img {
            top: 0px;
            height: 40px;
            width: 200px;
          }
          .wheater .day .temperature {
            margin: 10px 0px 0px 10px;
          }
    .footer .copyright {
      width: 100%;
      margin: 40px 0px 0px 0px;
    }
    .footer .socials-wrapper {
      width: 100%;
      margin: 40px 0px 100px 0px;
    }
    .footer ul.socials {
      right: 0px;
    }
      .footer ul.socials li {
        margin: 0px 0px 0px 8px;
      }
        .footer ul.socials li a {
        }
        .footer ul.socials li a img {
          width: 30px;
          height: 30px;
        }
          .footer ul.socials li a:hover {
          }

/* Content */
  .container {
  }
    .no-sidebar {
      width: 100%;
    }
    .with-sidebar {
      width: 100%;
    }
      .with-sidebar .content {
      }
  .content {
    display: block !important;
    padding: 50px 30px 50px 30px;  
  }
    .content h1 {
      float: none;
      width: 80%;
      padding: 20px 0px 20px 0px; 
      margin: 0px 0px 0px 30px;   
    }

  .list {
    margin: 0px 0px 0px 0px;
  }

/* Gallery */
  .gallery a {
    float: none;
    margin: 0px 0px 10px 0px;
  }
    .gallery a img {
        width: 100%;
    }

/* Sidebar */
  .sidebar { 
    display: block !important;
    width: 100%;
    padding: 50px 30px 50px 30px;  
  }
    .sidebar .widget {
      width: 100%;
      margin: 0px 0px 50px 0px;
    }
      .widget h2, .widget-title {
        margin: 0px 0px 20px 0px;
      }
      .widget ul {
      }
        .widget ul li {
        }
          .widget ul li a {
          }
            .widget ul li a:hover {
            }
      .widget .gallery a {
        width: 100%;
      }


  /* Directions */
    .directions {
    }
    .directions .map {
      width: 100%;
      height: 300px;
    }
      .directions .directions-content {
        width: 200px;
        margin: 30px 0px 20px 30px;
      }
        .directions .directions-content p {
          width: 200px;
          margin: 30px 0px 0px 0px;
        }
      .directions a {
      }

  /* Message */
    .message {
      height: 60px;
      margin-bottom: 30px;
    }
      .message .wrapper {
        margin-bottom: 0px;
        margin-top: 0px;
      }
      .message img {
        width: 40px;
        height: 40px;
        margin: 10px 0px 0px 0px;
      }
      .message p {
        margin: 18px 0px 0px 20px;
      }
    /* Message for mobile devices */
    .message-mobile {
      display: none;
    }

}




/* Category */
	.list .item {
		position: relative;
		background-color: #fff;
	}
		.list .item .img-wrapper {
			position: relative;
			float: left;
		}
			.list .item .img-wrapper img {
				-webkit-transition: all 0.3s ease-out;
		        -moz-transition: all 0.3s ease-out;
		        -o-transition: all 0.3s ease-out;
		        transition: all 0.3s ease-out;
			}
		.list .item .info {
			position: relative;
			float: left;
		}
			.list .item .info h2 {
				position: relative;
				float: left;
			}
			.list .item .info .item-content {
				position: relative;
				float: left;
				color: #333 !important;
			}
			.list .item .info .button {
				position: relative;
				float: left;
			}
			.list .item .info .beds-wrapper {
				position: relative;
				float: left;
			}
				.beds {
					position: absolute;
					text-align: right;
				}
				.bed {
					position: relative;
					float: left;
					-webkit-border-radius: 50%;
					-moz-border-radius: 50%;
					border-radius: 50%;
				}
			.list .item .info .distance-wrapper {
				position: relative;
				float: left;
			}
				.distance {
					position: absolute;
					text-align: right;
					font-size: 20px;
					font-weight: 300;
				}
			.list .item .info span.tags {
				position: relative;
				float: left;
				font-style: italic;
				font-size: 13px;
				color: #888;
			}

/* Desktops, Tablets landscape ----------- */
@media only screen and (min-width : 769px) {

	/* DEFAULT LAYOUT */
	.list-default .item {
		width: 100%;
		height: 260px;
		margin: 0px 0px 30px 0px;
	}
		.list-default .item .img-wrapper {
			width: 350px;
			height: 100%;
		}
			.list-default .item .img-wrapper img {
				width: 350px;
				height: 100%;
			}
			.list-default .item .img-wrapper img:hover {
				-moz-transform: scale(1.2);
	            -o-transform: scale(1.2);
	            -webkit-transform: scale(1.2);
	            -ms-transform: scale(1.2);
	            transform: scale(1.2);
			}
		.list-default .item .info {
			margin: 30px 0px 0px 30px;
			width: 490px;
		}
			.list-default .item .info h2 {
				width: 380px;
			}
			.list-default .item .info .item-content {
				margin: 15px 0px 0px 0px;
				width: 380px;
				height: 80px;
			}
			.list-default .item .info .button {
				margin: 30px 0px 0px 0px;
			}
			.list-default .item .info .beds-wrapper {
				width: 90px;
				margin: 10px 0px 0px 0px;
			}
				.beds {
					right: 0px;
				}
				.bed {
					width: 12px;
					height: 12px;
					margin: 0px 0px 0px 5px;
				}
					.exceeted {
						font-size: 12px;
						color: #fff;
						text-align: center;

						width: 25px !important;
						height: 25px !important;
						margin-top: -5px !important;
						line-height: 25px;
					}
					.bed img {
						width: 12px;
					}
			.list-default .item .info .distance-wrapper {
				width: 90px;
			}
				.distance {
					right: 0px;
				}
			.list-default .item .info span.tags {
				margin: 30px 0px 0px 40px;
			}

	/* SQUARE LAYOUT */
	.list-square {
		clear: both;
	}
	.list-square .item {
		float: left;

		width: 420px;
		height: 600px;
		margin: 0px 0px 30px 0px;
	}
		.list-square .item:nth-child(odd){
			margin-right: 40px;
		}
		.list-square .item .img-wrapper {
			width: 420px;
			height: 270px;
		}
			.list-square .item .img-wrapper img {
				width: 100%;
			}
			.list-square .item .img-wrapper img:hover {
				-moz-transform: scale(1.1);
	            -o-transform: scale(1.1);
	            -webkit-transform: scale(1.1);
	            -ms-transform: scale(1.1);
	            transform: scale(1.1);
			}
		.list-square .item .info {
			text-align: center !important;

			margin: 30px 0px 0px 30px;
			width: 340px;
		}
			.list-square .item .info h2 {
				width: 340px;
			}
			.list-square .item .info .item-content {
				margin: 15px 0px 0px 0px;
				width: 100%;
				height: 100px;
			}
			.list-square .item .info .button {
				display: inline-block;
				float: none !important;

				margin: 0 auto !important;
			}
			.list-square .item .info .beds-wrapper {

				width: 100%;
				margin: 10px 0px 0px 0px;
			}
				.list-square .item .info .beds-wrapper .beds {
					position: relative !important;
					display: inline-block;
				}
				.bed {
					width: 12px;
					height: 12px;
					margin: 0px 0px 0px 5px;
				}
			.list-square .item .info .distance-wrapper {
				width: 100%;
			}
				.list-square .item .info .distance-wrapper .distance {
					position: relative !important;
					text-align: center;
					
					margin-top: 10px;
				}
			.list-square .item .info span.tags {
				display: none;

				margin: 30px 0px 0px 40px;
			}

}

/* Tablets portrait ----------- */
@media only screen and (min-width : 385px) and (max-width : 768px) {

	/* Category */
	.list .item {
		width: 100%;
		height: 260px;
		margin: 0px 0px 30px 0px;
	}
		.list .item .img-wrapper {
			width: 300px;
			height: 100%;
		}
			.list .item .img-wrapper img {
				height: 100%;
			}
		.list .item .info {
			margin: 30px 0px 0px 30px;
			width: 300px;
		}
			.list .item .info h2 {
				width: 200px;
			}
			.list .item .info .item-content {
				margin: 15px 0px 0px 0px;
				height: 80px;
				width: 290px;
				overflow: hidden;
			}
			.list .item .info .button {
				margin: 30px 0px 0px 0px;
			}
			.list .item .info .beds-wrapper {
				width: 70px;
				margin: 0px 0px 0px 0px;
			}
				.beds {
					right: 0px;
				}
				.bed {
					width: 12px;
					height: 12px;
					margin: 0px 0px 0px 3px;
				}
					.exceeted {
						font-size: 12px;
						color: #fff;
						text-align: center;

						width: 25px !important;
						height: 25px !important;
						margin-top: -5px !important;
						line-height: 25px;
					}
			.list .item .info .distance-wrapper {
				width: 90px;
			}
				.distance {
					right: 0px;
				}
			.list .item .info span.tags {
				display: none;
				margin: 30px 0px 0px 40px;
			}

}

/* Mobile ----------- */
@media only screen and (max-width : 384px) {

	.content {
		padding: 0px 0px 0px 0px;
	}

	/* Category */
	.list .item {
		float: left;
		width: 100%;
		margin: 0px 0px 30px 0px;
		padding-bottom: 30px;
	}
		.list .item .img-wrapper {
			float: none;

			width: 100%;
			height: 200px;
		}
			.list .item .img-wrapper img {
				width: 100%;
			}
		.list .item .info {
			float: none;
			box-sizing: border-box; /* Opera/IE 8+ */ 
			-webkit-box-sizing: border-box; /* Safari, Chrome */ 
			-moz-box-sizing: border-box; /* Firefox */ 

			margin: 30px 0px 0px 0px;
			padding-left: 30px;
			width: 100%;
		}
			.list .item .info h2 {
				float: none;

				width: 100%;
			}
			.list .item .info .item-content {
				width: 80%;
				margin: 15px 0px 0px 0px;
			}
			.list .item .info .button {
				margin: 20px 0px 0px 0px;
			}
			.list .item .info .beds-wrapper {
				display: none;

				width: 70px;
				margin: 10px 0px 0px 0px;
			}
				.beds {
					right: 0px;
				}
				.bed {
					width: 12px;
					height: 12px;
					margin: 0px 0px 0px 3px;
				}
					.exceeted {
						font-size: 12px;
						color: #fff;
						text-align: center;

						width: 25px !important;
						height: 25px !important;
						margin-top: -5px !important;
						line-height: 25px;
					}
			.list .item .info .distance-wrapper {
				display: none;
			}
				.list .item .info .distance-wrapper .distance {
					right: 0px;
				}
			.list .item .info span.tags {
				display: none;
				margin: 30px 0px 0px 40px;
			}

}




/* Detail */
	.detail h1 {	
	}
	.detail p {
		clear: both;
	}
	.detail .beds-wrapper {
		position: relative;
		float: left;
	}
	.detail .distance-wrapper {
		position: relative;
		float: left;
	}
	.detail .img-wrapper {
		position: relative;
		float: left;
		background-color: gray;
	}
		.detail .img-wrapper img {
			position: absolute;
		}
			.detail .img-wrapper a:first-child {
				z-index: 999;
			}
			.detail .img-wrapper a .open-gallery-trigger {
				color: #fff;
				font-size: 18px;
				text-align: center;
				display: none;
				position: absolute;
				zoom: 1;
		        filter: alpha(opacity=50);
		        opacity: 0.5;
			}
			.detail .img-wrapper a:hover > .open-gallery-trigger {
				display: block;
			}
	.detail .amenities {
		position: relative;
		clear: both;
	}
		.amenities p {
			font-style: italic;
			color: #888;
		}
		.amenities span {
			font-weight: 400;
			font-style: normal;
		}
	.detail .booking {
		position: relative;
		float: left;
		-webkit-border-radius: 4px;
		-moz-border-radius: 4px;
		border-radius: 4px;
		background-color: #f0f0f0;
	}
		.booking .price {
			position: relative;
			font-size: 50px;
			font-weight: 700;
			text-align: center;
			float: left;
			line-height: 30px;
		}
			.price span {
				font-size: 20px;
				font-weight: 400;
			}
		.booking form {
			position: relative;
			float: left;
		}
			.booking form .booking-checkin {
				position: relative;
			}
			.booking form .booking-checkout {
				position: relative;
			}
				.input-wrapper .datepicker-icon {
					position: absolute;
					background-image: url('assets/img/datepicker.png');
					background-size: 15px 15px;
				}
			.booking form input[type='submit'] {
			}
	.detail .extended-info {
		position: relative;
		float: left;
		font-style: italic;
		color: #888;
	}

	.detail .directions .directions-content {
		float: left;
	}

	/* Formating */
	.detail h1 {
		font-size: 30px;
		font-weight: 700;
	}
	.detail h2 {
		font-size: 20px;
		font-weight: 700;
	}
	.detail h3 {
		font-size: 18px;
	}
	.detail h4 {
		font-size: 16px;
	}
	.detail h1, .detail h2, .detail h3, .detail h4, .detail p, .detail ul, .detail ol, .detail blockquote {
	}
	.detail a:hover {
		text-decoration: underline;
	}
	.detail ul, .detail ol {
		line-height: 32px;
	}
	.detail blockquote {
		background: #f1f1f1;
		font-style: italic;
	    border-left: 10px solid #ccc;
	    quotes: "\201C""\201D""\2018""\2019";
	}
		.detail blockquote:before {
			color: #ccc;
		    content: open-quote;
		    font-size: 4em;
		    line-height: 0.1em;
		}
		.detail blockquote p {
			display: inline;
		}
		.detail img {
			border: 0px !important;
		}
	.detail .bypostauthor {
		font-size: #f0f0f0;
	}

/* Desktops, Tablets landscape ----------- */
@media only screen and (min-width : 769px) {

	/* Detail */
	.detail h1 {
		float: left;

		width: 80%;
	}
	.detail p {
	}
	.detail .beds-wrapper {
		width: 20%;
		margin: 13px 0px 0px 0px;
	}
	.detail .distance-wrapper {
		width: 20%;
		margin: 10px 0px 0px 0px;
	}
	.detail .img-wrapper {
		margin: 20px 0px 30px 0px;
		width: 100%;
		height: 400px;
	}
		.detail .img-wrapper img {
			width: 100%;	
			top: 0px;
			left: 0px;
		}
			.detail .img-wrapper a:first-child {
			}
			.detail .img-wrapper a .open-gallery-trigger {
				height: 100%;
				width: 100%;
				padding: 180px 0px 0px 0px;
				top: 0px;
				left: 0px;
			}
			.detail .img-wrapper a:hover > .open-gallery-trigger {
			}
	.detail .amenities {
		margin: 30px 0px 30px 0px;
	}
		.amenities p {
		}
		.amenities span {
		}
	.detail .booking {
		padding: 10px 10px 10px 10px;
		width: 100%;
		margin: 40px 0px 40px 0px;
	}
		.booking .price {
			width: 50%;
			margin: 20px 0px 0px 0px;
		}
			.price span {
			}
		.booking form {
			width: 50%;
		}
			.booking form .booking-checkin {
				width: 145px;
			}
			.booking form .booking-checkout {
				width: 145px;
				margin-left: 10px;
			}
				.input-wrapper .datepicker-icon {
					top: 16px;
					right: 16px;
					width: 15px;
					height: 15px;
				}
			.booking form input[type='submit'] {
				width: 100%;
				margin: 10px 0px 0px 0px;
			}
	.detail .extended-info {
		width: 100%;
	}

	.detail .directions {
		margin: 30px 0px 30px 0px;
	}

	/* Formating */
	.detail h1 {
	}
	.detail h2 {
	}
	.detail h3 {
	}
	.detail h4 {
	}
	.detail h1, .detail h2, .detail h3, .detail h4, .detail p, .detail ul, .detail ol, .detail blockquote {
		margin: 0px 0px 25px 0px;
	}
	.detail a:hover {
	}
	.detail ul, .detail ol {
		margin-left: 20px;
	}
	.detail blockquote {
	    padding: 8px 10px;
	}
		.detail blockquote:before {
		    margin-right: 0.25em;
		    vertical-align: -30px;
		}
		.detail blockquote p {
		}
		.detail img {
		}


}

/* Tablets portrait ----------- */
@media only screen and (min-width : 385px) and (max-width : 768px) {

	/* Detail */
	.detail h1 {
		float: left;

		width: 80%;
	}
	.detail p {
	}
	.detail .beds-wrapper {
		width: 20%;
		margin: 20px 0px 0px 0px;
	}
	.detail .distance-wrapper {
		width: 20%;
		margin: 10px 0px 0px 0px;
	}
	.detail .img-wrapper {
		margin: 20px 0px 30px 0px;
		width: 100%;
		height: 400px;
	}
		.detail .img-wrapper img {
			width: 100%;
			top: 0px;
			left: 0px;
		}
			.detail .img-wrapper a:first-child {
			}
			.detail .img-wrapper a .open-gallery-trigger {
				top: 45%;
				left: 150px;
			}
			.detail .img-wrapper a:hover > .open-gallery-trigger {
			}
	.detail .amenities {
		margin: 30px 0px 30px 0px;
	}
		.amenities p {
		}
		.amenities span {
		}
	.detail .booking {
		padding: 10px 10px 10px 10px;
		width: 100%;
		margin: 40px 0px 40px 0px;
	}
		.booking .price {
			width: 50%;
			margin: 50px 0px 0px 0px;
		}
			.price span {
			}
		.booking form {
			width: 50%;
		}
			.booking form .booking-checkin {
				width: 100%;
				margin: 0px 0px 10px 0px;
			}
			.booking form .booking-checkout {
				width: 100%;
			}
				.input-wrapper .datepicker-icon {
					top: 16px;
					right: 16px;
					width: 15px;
					height: 15px;
				}
			.booking form input[type='submit'] {
				width: 100%;
				margin: 10px 0px 0px 0px;
			}
	.detail .extended-info {
		width: 100%;
	}

	.detail .directions {
		margin: 30px 0px 30px 0px;
	}

}

/* Mobile ----------- */
@media only screen and (max-width : 384px) {

	/* Detail */
	.detail p {
		width: 80%;
	}
	.detail .beds-wrapper {
		float: none;
		width: 100%;
	}
		.detail .beds-wrapper .beds {
			left: 30px;
		}
		.detail .beds-wrapper .bed {
			width: 15px;
			height: 15px;
			margin: 0px 5px 40px 0px;
		}
			.detail .beds-wrapper .bed img {
				width: 15px;
			}
	.detail .distance-wrapper {
		float: none;
		width: 100%;
		height: 20px;
	}
		.detail .distance {
			left: 25px !important;
		}
	.detail .img-wrapper {
		float: none;
		margin: 40px 0px 30px 0px;
		width: 100%;
		height: 250px;
	}
		.detail .img-wrapper img {
			height: 100%;	
			top: 0px;
			left: 0px;
		}
			.detail .img-wrapper a:first-child {
			}
			.detail .img-wrapper a .open-gallery-trigger {
				top: 45%;
				left: 50px;
			}
			.detail .img-wrapper a:hover > .open-gallery-trigger {
			}
	.detail .amenities {
		margin: 30px 0px 30px 0px;
		width: 80%;
	}
		.amenities p {
		}
		.amenities span {
		}
	.detail .booking {
		padding: 10px 10px 10px 10px;
		width: 100%;
		margin: 40px 0px 40px 0px;
	}
		.booking .price {
			width: 100%;
			float: none;
			padding: 20px 0px 20px 0px;
		}
			.price span {
			}
		.booking form {
			width: 100%;
		}
			.booking form .booking-checkin {
				width: 280px;
				margin: 0px 0px 10px 0px;
			}
			.booking form .booking-checkout {
				width: 280px;
			}
				.input-wrapper .datepicker-icon {
					top: 16px;
					right: 16px;
					width: 15px;
					height: 15px;
				}
			.booking form input[type='submit'] {
				width: 100%;
				margin: 10px 0px 0px 0px;
			}
	.detail .extended-info {
		width: 80%;
	}

	.detail .directions {
		margin: 30px 0px 30px 0px;
	}
		.detail .directions .map {
			margin: 0px 0px 0px 0px;
			width: 305px;
		}

	/* Formating */
	.detail h1 {
		margin: 0px 0px 0px 25px;
	}
	.detail h2 {
	}
	.detail h3 {
	}
	.detail h4 {
	}
	.detail h2, .detail h3, .detail h4, .detail p, .detail ul, .detail ol, .detail blockquote {
		margin: 0px 0px 25px 25px;
	}
	.detail a:hover {
	}
	.detail ul, .detail ol {
		margin-left: 40px !important;
	}
	.detail blockquote {
	    padding: 8px 10px;
	}
		.detail blockquote:before {
		    margin-right: 0.25em;
		    vertical-align: -30px;
		}
		.detail blockquote p {
		}
		.detail img {
		}


}




/* Contact */
		.contact h1 {
			position: relative;
			clear: both;
		}
		.contact form {
			position: relative;
			float: left;
		}
			.contact input[type='text'], .contact input[type='email'] {
				position: relative;
				clear: both;
			}
			.contact input[type='email'] {
			}
			.contact textarea {
				position: relative;
				clear: both;
			}
			.contact input[type='submit'] {
				position: relative;
			}
		.contact .exact-directions {
			position: relative;
			float: left;
			clear: both;
		}
		.contact .directions .directions-content {
			float: left;
		}

/* Desktops, Tablets landscape ----------- */
@media only screen and (min-width : 769px) {

	/* Contact */
		.contact h1 {
			margin: 0px 0px 50px 0px;
		}
		.contact form {
			margin: 0px 0px 50px 0px;
		}
			.contact input[type='text'], .contact input[type='email'] {
				width: 310px;
				margin: 0px 0px 10px 0px;
			}
			.contact input[type='email'] {
				margin-left: 10px;
			}
			.contact textarea {
				width: 630px;
				height: 200px;
				margin: 0px 0px 10px 0px;
			}
			.contact input[type='submit'] {
			}
		.contact .exact-directions {
			margin: 30px 0px 30px 0px;
		}

}

/* Tablets portrait ----------- */
@media only screen and (min-width : 385px) and (max-width : 768px) {

	/* Contact */
		.contact h1 {
			margin: 0px 0px 50px 0px;
		}
		.contact form {
			margin: 0px 0px 50px 0px;
		}
			.contact input[type='text'], .contact input[type='email'] {
				width: 400px;
				margin: 0px 0px 10px 0px;
			}
			.contact input[type='email'] {
				margin-left: 0px;
			}
			.contact textarea {
				width: 400px;
				height: 200px;
				margin: 0px 0px 10px 0px;
			}
			.contact input[type='submit'] {
			}
		.contact .exact-directions {
			margin: 30px 0px 30px 0px;
		}

}

/* Mobile ----------- */
@media only screen and (max-width : 384px) {

	/* Contact */
		.contact form {
			margin: 20px 0px 50px 30px;
		}
			.contact input[type='text'], .contact input[type='email'] {
				width: 250px;
				margin: 0px 0px 10px 0px;
			}
			.contact input[type='email'] {
				margin-left: 0px;
			}
			.contact textarea {
				width: 250px;
				height: 200px;
				margin: 0px 0px 10px 0px;
			}
			.contact input[type='submit'] {
			}
		.contact .exact-directions {
			width: 80%;
			margin: 30px 0px 30px 30px;
		}
		.contact .directions .map {
			margin: 0px 0px 0px 0px;
			width: 305px;
		}

}





/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
  filter: alpha(opacity=80); }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

.mfp-inline-holder .mfp-content, .mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close, .mfp-arrow, .mfp-preloader, .mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  color: #cccccc;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }
  .mfp-preloader a {
    color: #cccccc; }
    .mfp-preloader a:hover {
      color: white; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close, button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
  box-shadow: none; }
button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  filter: alpha(opacity=65);
  padding: 0 0 18px 10px;
  color: white;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }
  .mfp-close:hover, .mfp-close:focus {
    opacity: 1;
    filter: alpha(opacity=100); }
  .mfp-close:active {
    top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333333; }

.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
  color: white;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #cccccc;
  font-size: 12px;
  line-height: 18px; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  filter: alpha(opacity=65);
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
  .mfp-arrow:active {
    margin-top: -54px; }
  .mfp-arrow:hover, .mfp-arrow:focus {
    opacity: 1;
    filter: alpha(opacity=100); }
  .mfp-arrow:before, .mfp-arrow:after, .mfp-arrow .mfp-b, .mfp-arrow .mfp-a {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent; }
  .mfp-arrow:after, .mfp-arrow .mfp-a {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px; }
  .mfp-arrow:before, .mfp-arrow .mfp-b {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }
  .mfp-arrow-left:after, .mfp-arrow-left .mfp-a {
    border-right: 17px solid white;
    margin-left: 31px; }
  .mfp-arrow-left:before, .mfp-arrow-left .mfp-b {
    margin-left: 25px;
    border-right: 27px solid #3f3f3f; }

.mfp-arrow-right {
  right: 0; }
  .mfp-arrow-right:after, .mfp-arrow-right .mfp-a {
    border-left: 17px solid white;
    margin-left: 39px; }
  .mfp-arrow-right:before, .mfp-arrow-right .mfp-b {
    border-left: 27px solid #3f3f3f; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }
  .mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px; }
  .mfp-iframe-holder .mfp-close {
    top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }
  .mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: black; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }
  .mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444444; }
  .mfp-figure small {
    color: #bdbdbd;
    display: block;
    font-size: 12px;
    line-height: 14px; }
  .mfp-figure figure {
    margin: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #f3f3f3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }
  .mfp-img-mobile img.mfp-img {
    padding: 0; }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
    .mfp-img-mobile .mfp-bottom-bar:empty {
      padding: 0; }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }

.mfp-ie7 .mfp-img {
  padding: 0; }
.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px; }
.mfp-ie7 .mfp-container {
  padding: 0; }
.mfp-ie7 .mfp-content {
  padding-top: 44px; }
.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0; }




/* Reservation */
		.reservation h1 {
			position: relative;
			clear: both;
			color: #fff;
		}
		.reservation select, .reservation-name, .reservation textarea {
		}
		.reservation-checkin, .reservation-checkout, .reservation-people, .reservation select, .reservation-phone, .reservation-email, .reservation-name, .reservation textarea {
			position: relative;
			float: left;
		}
			.reservation-checkin, .reservation-checkout {
			}
			.reservation-checkout {
			}
			.reservation-people, .reservation-phone {
			}
			.reservation-email {
			}
			.reservation textarea {
			}
			.reservation-name {	
			}
			.reservation input[type='submit'] {
				position: relative;
				float: left;
			}
			.reservation p {
				position: relative;
				float: left;
				color: #fff;
			} 
	  /* Check status */
	    .input-wrapper .status {
	      position: absolute;
	      overflow: hidden;
	    }
	      .input-wrapper .status img {
	        position: relative;
	      }
	    .ipt-error {
	      background-color: #fddfdf !important;
	    }
	    .ipt-correct {
	      background-color: #fff !important;
	    }

/* Desktops, Tablets landscape ----------- */
@media only screen and (min-width : 769px) {

		.reservation h1 {
			margin: 0px 0px 50px 0px;
		}
		.reservation select, .reservation-name, .reservation textarea {
			width: 630px;
		}
			.no-sidebar .reservation select, .no-sidebar .reservation-name, .no-sidebar .reservation textarea {
				width: 880px;
			}
		.reservation-checkin, .reservation-checkout, .reservation-people, .reservation select, .reservation-phone, .reservation-email, .reservation-name, .reservation textarea {
			margin-bottom: 10px;
		}
			.reservation-checkin, .reservation-checkout {
				width: 160px;
				margin-bottom: 30px;
			}
			.reservation-checkout {
				margin-left: 10px;
			}
			.reservation-people, .reservation-phone {
				width: 290px;
				margin-left: 10px;
			}
				.no-sidebar .reservation-people, .no-sidebar .reservation-phone {
					width: 540px;
					margin-left: 10px;
				}
			.reservation-email {
				width: 330px;
			}
			.reservation textarea {
				height: 200px;
			}
			.reservation-name {	
			}
			.reservation input[type='submit'] {
			}
			.reservation p {
				margin: 10px 0px 0px 20px;
			} 
	  /* Check status */
	    .input-wrapper .status {
	      top: 15px;
	      right: 13px;
	      width: 20px;
	      height: 20px;
	    }
	      .input-wrapper .status img {
	        height: 20px;
	      }
	    .ipt-error {
	    }
	    .ipt-correct {
	    }

}

/* Tablets portrait ----------- */
@media only screen and (min-width : 385px) and (max-width : 768px) {

		.reservation h1 {
			margin: 0px 0px 50px 0px;
		}
		.reservation select, .reservation-name, .reservation textarea, .reservation-people {
			width: 400px;
		}
			.no-sidebar select, .no-sidebar .reservation-name, .no-sidebar textarea {
				width: 600px;
			}
			.no-sidebar .reservation-people {
				margin-left: 10px;
				width: 240px;
			}
		.reservation-checkin, .reservation-checkout, .reservation-people, .reservation select, .reservation-phone, .reservation-email, .reservation-name, .reservation textarea {
			margin-bottom: 10px;
		}
			.reservation-checkin, .reservation-checkout {
				width: 195px;
			}
			.reservation-checkout {
				margin-left: 10px;
			}
			.reservation-people {
				margin-bottom: 30px;
			}
			.reservation-phone {
				width: 190px;
				margin-left: 10px;
			}
				.no-sidebar .reservation-phone {
					width: 240px;
				}
			.reservation-email {
				width: 200px;
			}
				.no-sidebar .reservation-email {
					width: 400px;
				}
			.reservation textarea {
				height: 200px;
			}
			.reservation-name {	
			}
			.reservation input[type='submit'] {
			}
			.reservation p {
				margin: 10px 0px 0px 20px;
			} 
	  /* Check status */
	    .input-wrapper .status {
	      top: 15px;
	      right: 13px;
	      width: 20px;
	      height: 20px;
	    }
	      .input-wrapper .status img {
	        height: 20px;
	      }
	    .ipt-error {
	    }
	    .ipt-correct {
	    }

}

/* Mobile ----------- */
@media only screen and (max-width : 384px) {
	
		.reservation form {
			margin: 0px 0px 0px 20px;
		}
		.reservation select, .reservation-name, .reservation textarea, .reservation-people {
			width: 260px;
		}
		.reservation-checkin, .reservation-checkout, .reservation-people, .reservation select, .reservation-phone, .reservation-email, .reservation-name, .reservation textarea {
			margin-bottom: 10px;
		}
			.reservation-checkin, .reservation-checkout {
				width: 125px;
			}
			.reservation-checkout {
				margin-left: 10px;
			}
			.reservation-people {
				margin-bottom: 30px;
			}
			.reservation-phone {
				width: 125px;
				margin-left: 10px;
			}
			.reservation-email {
				width: 125px;
			}
			.reservation textarea {
				height: 200px;
			}
			.reservation-name {	
			}
			.reservation input[type='submit'] {
			}
			.reservation p {
				margin: 10px 0px 40px 20px;
			} 
	  /* Check status */
	    .input-wrapper .status {
	      top: 15px;
	      right: 13px;
	      width: 20px;
	      height: 20px;
	    }
	      .input-wrapper .status img {
	        height: 20px;
	      }
	    .ipt-error {
	    }
	    .ipt-correct {
	    }

}




.archive .item {
	position: relative;
	background-color: #fff;
	clear: both;
}
	.archive h1 {
	}
	.archive .item .info {
		float: left;
		color: #333;
	}
	.archive .item .img-wrapper {
		float: left;
	}
		.archive .item .img-wrapper img {
		}
	.archive .item p {
	}
	.archive .item a:hover {
		text-decoration: underline;
	}
	.archive .item span {
		position: absolute;
		font-size: 11px;
		-webkit-border-radius: 4px;
		-moz-border-radius: 4px;
		border-radius: 4px;
		background-color: #f7f7f7;
		color: #333;
	}

/* Desktops, Tablets landscape ----------- */
@media only screen and (min-width : 769px) {

	.archive .item {
		width: 100%;
		height: 120px;
		margin: 0px 0px 20px 0px;
	}
	.archive h1 {
		margin: 0px 0px 50px 0px;
	}
	.archive .item .info {
		width: 72%;
		margin: 15px 0px 0px 20px;
	}
	.archive .item .img-wrapper {
	}
		.archive .item .img-wrapper img {
			width: 120px;
			height: 120px;
		}
	.archive .item p {
		margin: 10px 0px 0px 0px;
	}
	.archive .item a:hover {
	}
	.archive .item span {
		padding: 3px 5px 3px 5px;
		top: 15px;
		right: 20px;
	}

}

/* Tablets portrait ----------- */
@media only screen and (min-width : 385px) and (max-width : 768px) {

	.archive .item {
		width: 100%;
		height: 140px;
		margin: 0px 0px 20px 0px;
	}
	.archive h1 {
		margin: 0px 0px 50px 0px;
	}
	.archive .item .info {
		width: 74%;
		margin: 15px 0px 0px 20px;
	}
	.archive .item .img-wrapper {
		width: 90px;
		height: 140px;
	}
		.archive .item .img-wrapper img {
			width: 140px;
			height: 140px;
		}
	.archive .item p {
		margin: 10px 0px 0px 0px;
	}
	.archive .item a:hover {
	}
	.archive .item span {
		padding: 3px 5px 3px 5px;
		top: 15px;
		right: 20px;
	}

}

/* Mobile ----------- */
@media only screen and (max-width : 384px) {

	.archive .item {
		width: 100%;
		height: 160px;
		margin: 0px 0px 20px 0px;
	}
	.archive h1 {
		margin: 0px 0px 50px 25px;
	}
	.archive .item .info {
		width: 80%;
		margin: 15px 0px 0px 20px;
	}
	.archive .item .img-wrapper {
		display: none;
	}
	.archive .item p {
		margin: 10px 0px 0px 0px;
	}
	.archive .item a:hover {
	}
	.archive .item span {
		padding: 3px 5px 3px 5px;
		top: 15px;
		right: 20px;
	}

}




.comments {
	float: left;
}
.comments #respond {
	background-color: #f0f0f0;
}
	.comments #respond input[type='text'], .comments #respond textarea {
	}

.comments .comment {
	background-color: #fff;
	border-top: 1px solid #f7f7f7;
}
	.comments .comment .comment-header {
		float: left;
	}
	.comments .comment img  {
		-webkit-border-radius: 50%;
	    -moz-border-radius: 50%;
	    border-radius: 50%;
		float: left; 
	}
	.comments .comment .meta {
		float: left;
	}
	.comments .comment .meta h4 {
		float: left;
		font-style: normal;
	}
	.comments .comment .meta p {
		float: left;
	}
		.comments .comment .meta .label {
			background-color: #f0f0f0;
			-webkit-border-radius: 4px;
		    -moz-border-radius: 4px;
		    border-radius: 4px;
		    font-size: 12px;
		}

.comments ul {
	list-style: none;
}

.comments #submit {
	position: relative;
}

/* Desktops, Tablets landscape ----------- */
@media only screen and (min-width : 769px) {

	.comments {
		width: 100%;
	}
	.comments #respond {
		padding: 20px 20px 20px 20px;
	}
		.comments #respond input[type='text'], .comments #respond textarea {
			width: 100%;
		}

	.comments .comment {
		padding: 20px 20px 20px 20px;
	}
		.comments .comment .comment-header {
			margin: 0px 0px 20px 0px;
		}
		.comments .comment img  {
			margin: 0px 20px 0px 0px;
		}
		.comments .comment .meta {
		}
		.comments .comment .meta h4 {
			margin: 0;
		}
		.comments .comment .meta p {
			margin: 0;
		}
			.comments .comment .meta .label {
			    margin: 0px 0px 0px 10px;
			    padding: 5px 5px 5px 5px;
			}

	.comments ul {
		margin: 0px;
	}

	.comments #submit {
	}

}

/* Tablets portrait ----------- */
@media only screen and (min-width : 385px) and (max-width : 768px) {

	.comments {
		width: 100%;
	}
	.comments #respond {
		padding: 20px 20px 20px 20px;
	}
		.comments #respond input[type='text'], .comments #respond textarea {
			width: 100%;
		}

	.comments .comment {
		padding: 20px 20px 20px 20px;
	}
		.comments .comment .comment-header {
			margin: 0px 0px 20px 0px;
		}
		.comments .comment img  {
			margin: 0px 20px 0px 0px;
		}
		.comments .comment .meta {
		}
		.comments .comment .meta h4 {
			margin: 0;
		}
		.comments .comment .meta p {
			margin: 0;
		}
			.comments .comment .meta .label {
			    margin: 0px 0px 0px 10px;
			    padding: 5px 5px 5px 5px;
			}

	.comments ul {
		margin: 0px;
	}

	.comments #submit {
	}

}

/* Mobile ----------- */
@media only screen and (max-width : 384px) {

	.comments {
		width: 300px;
	}
	.comments #respond {
		padding: 20px 20px 20px 20px;
	}
		.comments #respond input[type='text'], .comments #respond textarea {
			width: 100%;
		}

	.comments .comment {
		padding: 20px 20px 20px 20px;
	}
		.comments .comment .comment-header {
			margin: 0px 0px 20px 0px;
		}
		.comments .comment img  {
			margin: 0px 20px 0px 0px;
		}
		.comments .comment .meta {
		}
		.comments .comment .meta h4 {
			margin: 0;
		}
		.comments .comment .meta p {
			margin: 0;
		}
			.comments .comment .meta .label {
			    margin: 0px 0px 0px 10px;
			    padding: 5px 5px 5px 5px;
			}

	.comments ul {
		margin: 0px;
	}

	.comments #submit {
	}

}




/*!
Video.js Default Styles (http://videojs.com)
Version 4.6.1
Create your own skin at http://designer.videojs.com
*/
/* SKIN
================================================================================
The main class name for all skin-specific styles. To make your own skin,
replace all occurances of 'vjs-default-skin' with a new name. Then add your new
skin name to your video tag instead of the default skin.
e.g. <video class="video-js my-skin-name">
*/
.vjs-default-skin {
  color: #cccccc;
}
/* Custom Icon Font
--------------------------------------------------------------------------------
The control icons are from a custom font. Each icon corresponds to a character
(e.g. "\e001"). Font icons allow for easy scaling and coloring of icons.
*/

/* Base UI Component Classes
--------------------------------------------------------------------------------
*/
/* Slider - used for Volume bar and Seek bar */
.vjs-default-skin .vjs-slider {
  /* Replace browser focus hightlight with handle highlight */
  outline: 0;
  position: relative;
  cursor: pointer;
  padding: 0;
  /* background-color-with-alpha */
  background-color: #333333;
  background-color: rgba(51, 51, 51, 0.9);
}
.vjs-default-skin .vjs-slider:focus {
  /* box-shadow */
  -webkit-box-shadow: 0 0 2em #ffffff;
  -moz-box-shadow: 0 0 2em #ffffff;
  box-shadow: 0 0 2em #ffffff;
}
.vjs-default-skin .vjs-slider-handle {
  position: absolute;
  /* Needed for IE6 */
  left: 0;
  top: 0;
}
.vjs-default-skin .vjs-slider-handle:before {
  content: "\e009";
  font-family: VideoJS;
  font-size: 1em;
  line-height: 1;
  text-align: center;
  text-shadow: 0em 0em 1em #fff;
  position: absolute;
  top: 0;
  left: 0;
  /* Rotate the square icon to make a diamond */
  /* transform */
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
/* Control Bar
--------------------------------------------------------------------------------
The default control bar that is a container for most of the controls.
*/
.vjs-default-skin .vjs-control-bar {
  /* Start hidden */
  display: none;
  position: absolute;
  /* Place control bar at the bottom of the player box/video.
     If you want more margin below the control bar, add more height. */
  bottom: 0;
  /* Use left/right to stretch to 100% width of player div */
  left: 0;
  right: 0;
  /* Height includes any margin you want above or below control items */
  height: 3.0em;
  /* background-color-with-alpha */
  background-color: #07141e;
  background-color: rgba(7, 20, 30, 0.7);
}
/* Show the control bar only once the video has started playing */
.vjs-default-skin.vjs-has-started .vjs-control-bar {
  display: block;
  /* Visibility needed to make sure things hide in older browsers too. */

  visibility: visible;
  opacity: 1;
  /* transition */
  -webkit-transition: visibility 0.1s, opacity 0.1s;
  -moz-transition: visibility 0.1s, opacity 0.1s;
  -o-transition: visibility 0.1s, opacity 0.1s;
  transition: visibility 0.1s, opacity 0.1s;
}
/* Hide the control bar when the video is playing and the user is inactive  */
.vjs-default-skin.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar {
  display: block;
  visibility: hidden;
  opacity: 0;
  /* transition */
  -webkit-transition: visibility 1s, opacity 1s;
  -moz-transition: visibility 1s, opacity 1s;
  -o-transition: visibility 1s, opacity 1s;
  transition: visibility 1s, opacity 1s;
}
.vjs-default-skin.vjs-controls-disabled .vjs-control-bar {
  display: none;
}
.vjs-default-skin.vjs-using-native-controls .vjs-control-bar {
  display: none;
}
/* The control bar shouldn't show after an error */
.vjs-default-skin.vjs-error .vjs-control-bar {
  display: none;
}
/* IE8 is flakey with fonts, and you have to change the actual content to force
fonts to show/hide properly.
  - "\9" IE8 hack didn't work for this
  - Found in XP IE8 from http://modern.ie. Does not show up in "IE8 mode" in IE9
*/
@media \0screen {
  .vjs-default-skin.vjs-user-inactive.vjs-playing .vjs-control-bar :before {
    content: "";
  }
}
/* General styles for individual controls. */
.vjs-default-skin .vjs-control {
  outline: none;
  position: relative;
  float: left;
  text-align: center;
  margin: 0;
  padding: 0;
  height: 3.0em;
  width: 4em;
}
/* FontAwsome button icons */
.vjs-default-skin .vjs-control:before {
  font-family: VideoJS;
  font-size: 1.5em;
  line-height: 2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}
/* Replacement for focus outline */
.vjs-default-skin .vjs-control:focus:before,
.vjs-default-skin .vjs-control:hover:before {
  text-shadow: 0em 0em 1em #ffffff;
}
.vjs-default-skin .vjs-control:focus {
  /*  outline: 0; */
  /* keyboard-only users cannot see the focus on several of the UI elements when
  this is set to 0 */

}
/* Hide control text visually, but have it available for screenreaders */
.vjs-default-skin .vjs-control-text {
  /* hide-visually */
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
/* Play/Pause
--------------------------------------------------------------------------------
*/
.vjs-default-skin .vjs-play-control {
  width: 5em;
  cursor: pointer;
}
.vjs-default-skin .vjs-play-control:before {
  content: "\e001";
}
.vjs-default-skin.vjs-playing .vjs-play-control:before {
  content: "\e002";
}
/* Playback toggle
--------------------------------------------------------------------------------
*/
.vjs-default-skin .vjs-playback-rate .vjs-playback-rate-value {
  font-size: 1.5em;
  line-height: 2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}
.vjs-default-skin .vjs-playback-rate.vjs-menu-button .vjs-menu .vjs-menu-content {
  width: 4em;
  left: -2em;
  list-style: none;
}
/* Volume/Mute
-------------------------------------------------------------------------------- */
.vjs-default-skin .vjs-mute-control,
.vjs-default-skin .vjs-volume-menu-button {
  cursor: pointer;
  float: right;
}
.vjs-default-skin .vjs-mute-control:before,
.vjs-default-skin .vjs-volume-menu-button:before {
  content: "\e006";
}
.vjs-default-skin .vjs-mute-control.vjs-vol-0:before,
.vjs-default-skin .vjs-volume-menu-button.vjs-vol-0:before {
  content: "\e003";
}
.vjs-default-skin .vjs-mute-control.vjs-vol-1:before,
.vjs-default-skin .vjs-volume-menu-button.vjs-vol-1:before {
  content: "\e004";
}
.vjs-default-skin .vjs-mute-control.vjs-vol-2:before,
.vjs-default-skin .vjs-volume-menu-button.vjs-vol-2:before {
  content: "\e005";
}
.vjs-default-skin .vjs-volume-control {
  width: 5em;
  float: right;
}
.vjs-default-skin .vjs-volume-bar {
  width: 5em;
  height: 0.6em;
  margin: 1.1em auto 0;
}
.vjs-default-skin .vjs-volume-menu-button .vjs-menu-content {
  height: 2.9em;
}
.vjs-default-skin .vjs-volume-level {
  position: absolute;
  top: 0;
  left: 0;
  height: 0.5em;
  /* assuming volume starts at 1.0 */

  width: 100%;
  background: #66a8cc url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAGCAYAAADgzO9IAAAAP0lEQVQIHWWMAQoAIAgDR/QJ/Ub//04+w7ZICBwcOg5FZi5iBB82AGzixEglJrd4TVK5XUJpskSTEvpdFzX9AB2pGziSQcvAAAAAAElFTkSuQmCC) -50% 0 repeat;
}
.vjs-default-skin .vjs-volume-bar .vjs-volume-handle {
  width: 0.5em;
  height: 0.5em;
  /* Assumes volume starts at 1.0. If you change the size of the
     handle relative to the volume bar, you'll need to update this value
     too. */

  left: 4.5em;
}
.vjs-default-skin .vjs-volume-handle:before {
  font-size: 0.9em;
  top: -0.2em;
  left: -0.2em;
  width: 1em;
  height: 1em;
}
.vjs-default-skin .vjs-volume-menu-button .vjs-menu .vjs-menu-content {
  width: 6em;
  left: -4em;
}
/* Progress
--------------------------------------------------------------------------------
*/
.vjs-default-skin .vjs-progress-control {
  position: absolute;
  left: 0;
  right: 0;
  width: auto;
  font-size: 0.3em;
  height: 1em;
  /* Set above the rest of the controls. */
  top: -1em;
  /* Shrink the bar slower than it grows. */
  /* transition */
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
/* On hover, make the progress bar grow to something that's more clickable.
    This simply changes the overall font for the progress bar, and this
    updates both the em-based widths and heights, as wells as the icon font */
.vjs-default-skin:hover .vjs-progress-control {
  font-size: .9em;
  /* Even though we're not changing the top/height, we need to include them in
      the transition so they're handled correctly. */

  /* transition */
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
/* Box containing play and load progresses. Also acts as seek scrubber. */
.vjs-default-skin .vjs-progress-holder {
  height: 100%;
}
/* Progress Bars */
.vjs-default-skin .vjs-progress-holder .vjs-play-progress,
.vjs-default-skin .vjs-progress-holder .vjs-load-progress {
  position: absolute;
  display: block;
  height: 100%;
  margin: 0;
  padding: 0;
  /* updated by javascript during playback */

  width: 0;
  /* Needed for IE6 */
  left: 0;
  top: 0;
}
.vjs-default-skin .vjs-play-progress {
  /*
    Using a data URI to create the white diagonal lines with a transparent
      background. Surprisingly works in IE8.
      Created using http://www.patternify.com
    Changing the first color value will change the bar color.
    Also using a paralax effect to make the lines move backwards.
      The -50% left position makes that happen.
  */

  background: #66a8cc url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAGCAYAAADgzO9IAAAAP0lEQVQIHWWMAQoAIAgDR/QJ/Ub//04+w7ZICBwcOg5FZi5iBB82AGzixEglJrd4TVK5XUJpskSTEvpdFzX9AB2pGziSQcvAAAAAAElFTkSuQmCC) -50% 0 repeat;
}
.vjs-default-skin .vjs-load-progress {
  background: #646464 /* IE8- Fallback */;
  background: rgba(255, 255, 255, 0.4);
}
.vjs-default-skin .vjs-seek-handle {
  width: 1.5em;
  height: 100%;
}
.vjs-default-skin .vjs-seek-handle:before {
  padding-top: 0.1em /* Minor adjustment */;
}
/* Live Mode
--------------------------------------------------------------------------------
*/
.vjs-default-skin.vjs-live .vjs-time-controls,
.vjs-default-skin.vjs-live .vjs-time-divider,
.vjs-default-skin.vjs-live .vjs-progress-control {
  display: none;
}
.vjs-default-skin.vjs-live .vjs-live-display {
  display: block;
}
/* Live Display
--------------------------------------------------------------------------------
*/
.vjs-default-skin .vjs-live-display {
  display: none;
  font-size: 1em;
  line-height: 3em;
}
/* Time Display
--------------------------------------------------------------------------------
*/
.vjs-default-skin .vjs-time-controls {
  font-size: 1em;
  /* Align vertically by making the line height the same as the control bar */
  line-height: 3em;
}
.vjs-default-skin .vjs-current-time {
  float: left;
}
.vjs-default-skin .vjs-duration {
  float: left;
}
/* Remaining time is in the HTML, but not included in default design */
.vjs-default-skin .vjs-remaining-time {
  display: none;
  float: left;
}
.vjs-time-divider {
  float: left;
  line-height: 3em;
}
/* Fullscreen
--------------------------------------------------------------------------------
*/
.vjs-default-skin .vjs-fullscreen-control {
  width: 3.8em;
  cursor: pointer;
  float: right;
}
.vjs-default-skin .vjs-fullscreen-control:before {
  content: "\e000";
}
/* Switch to the exit icon when the player is in fullscreen */
.vjs-default-skin.vjs-fullscreen .vjs-fullscreen-control:before {
  content: "\e00b";
}
/* Big Play Button (play button at start)
--------------------------------------------------------------------------------
Positioning of the play button in the center or other corners can be done more
easily in the skin designer. http://designer.videojs.com/
*/
.vjs-default-skin .vjs-big-play-button {
  left: 0.5em;
  top: 0.5em;
  font-size: 3em;
  display: block;
  z-index: 2;
  position: absolute;
  width: 4em;
  height: 2.6em;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  opacity: 1;
  /* Need a slightly gray bg so it can be seen on black backgrounds */
  /* background-color-with-alpha */
  background-color: #07141e;
  background-color: rgba(7, 20, 30, 0.7);
  border: 0.1em solid #3b4249;
  /* border-radius */
  -webkit-border-radius: 0.8em;
  -moz-border-radius: 0.8em;
  border-radius: 0.8em;
  /* box-shadow */
  -webkit-box-shadow: 0px 0px 1em rgba(255, 255, 255, 0.25);
  -moz-box-shadow: 0px 0px 1em rgba(255, 255, 255, 0.25);
  box-shadow: 0px 0px 1em rgba(255, 255, 255, 0.25);
  /* transition */
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
/* Optionally center */
.vjs-default-skin.vjs-big-play-centered .vjs-big-play-button {
  /* Center it horizontally */
  left: 50%;
  margin-left: -2.1em;
  /* Center it vertically */
  top: 50%;
  margin-top: -1.4000000000000001em;
}
/* Hide if controls are disabled */
.vjs-default-skin.vjs-controls-disabled .vjs-big-play-button {
  display: none;
}
/* Hide when video starts playing */
.vjs-default-skin.vjs-has-started .vjs-big-play-button {
  display: none;
}
/* Hide on mobile devices. Remove when we stop using native controls
    by default on mobile  */
.vjs-default-skin.vjs-using-native-controls .vjs-big-play-button {
  display: none;
}
.vjs-default-skin:hover .vjs-big-play-button,
.vjs-default-skin .vjs-big-play-button:focus {
  outline: 0;
  border-color: #fff;
  /* IE8 needs a non-glow hover state */
  background-color: #505050;
  background-color: rgba(50, 50, 50, 0.75);
  /* box-shadow */
  -webkit-box-shadow: 0 0 3em #ffffff;
  -moz-box-shadow: 0 0 3em #ffffff;
  box-shadow: 0 0 3em #ffffff;
  /* transition */
  -webkit-transition: all 0s;
  -moz-transition: all 0s;
  -o-transition: all 0s;
  transition: all 0s;
}
.vjs-default-skin .vjs-big-play-button:before {
  content: "\e001";
  font-family: VideoJS;
  /* In order to center the play icon vertically we need to set the line height
     to the same as the button height */

  line-height: 2.6em;
  text-shadow: 0.05em 0.05em 0.1em #000;
  text-align: center /* Needed for IE8 */;
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
}
.vjs-error .vjs-big-play-button {
  display: none;
}
/* Error Display
--------------------------------------------------------------------------------
*/
.vjs-error-display {
  display: none;
}
.vjs-error .vjs-error-display {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.vjs-error .vjs-error-display:before {
  content: 'X';
  font-family: Arial;
  font-size: 4em;
  color: #666666;
  /* In order to center the play icon vertically we need to set the line height
     to the same as the button height */

  line-height: 1;
  text-shadow: 0.05em 0.05em 0.1em #000;
  text-align: center /* Needed for IE8 */;
  vertical-align: middle;
  position: absolute;
  top: 50%;
  margin-top: -0.5em;
  width: 100%;
}
.vjs-error-display div {
  position: absolute;
  font-size: 1.4em;
  text-align: center;
  bottom: 1em;
  right: 1em;
  left: 1em;
}
.vjs-error-display a,
.vjs-error-display a:visited {
  color: #F4A460;
}
/* Loading Spinner
--------------------------------------------------------------------------------
*/
.vjs-loading-spinner {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 4em;
  line-height: 1;
  width: 1em;
  height: 1em;
  margin-left: -0.5em;
  margin-top: -0.5em;
  opacity: 0.75;
  /* animation */
  -webkit-animation: spin 1.5s infinite linear;
  -moz-animation: spin 1.5s infinite linear;
  -o-animation: spin 1.5s infinite linear;
  animation: spin 1.5s infinite linear;
}
/* Errors are unrecoverable without user interaction,
   so hide the spinner in the case of an error */
.video-js.vjs-error .vjs-loading-spinner {
  /* using !important flag because currently the loading spinner
     uses hide()/show() instead of classes. The !important can be
     removed when that's updated */

  display: none !important;
  /* ensure animation doesn't continue while hidden */

  /* animation */
  -webkit-animation: none;
  -moz-animation: none;
  -o-animation: none;
  animation: none;
}
.vjs-default-skin .vjs-loading-spinner:before {
  content: "\e01e";
  font-family: VideoJS;
  position: absolute;
  top: 0;
  left: 0;
  width: 1em;
  height: 1em;
  text-align: center;
  text-shadow: 0em 0em 0.1em #000;
}
@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(359deg);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
  }
}
@-o-keyframes spin {
  0% {
    -o-transform: rotate(0deg);
  }
  100% {
    -o-transform: rotate(359deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
/* Menu Buttons (Captions/Subtitles/etc.)
--------------------------------------------------------------------------------
*/
.vjs-default-skin .vjs-menu-button {
  float: right;
  cursor: pointer;
}
.vjs-default-skin .vjs-menu {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0em;
  /* (Width of vjs-menu - width of button) / 2 */

  width: 0em;
  height: 0em;
  margin-bottom: 3em;
  border-left: 2em solid transparent;
  border-right: 2em solid transparent;
  border-top: 1.55em solid #000000;
  /* Same width top as ul bottom */

  border-top-color: rgba(7, 40, 50, 0.5);
  /* Same as ul background */

}
/* Button Pop-up Menu */
.vjs-default-skin .vjs-menu-button .vjs-menu .vjs-menu-content {
  display: block;
  padding: 0;
  margin: 0;
  position: absolute;
  width: 10em;
  bottom: 1.5em;
  /* Same bottom as vjs-menu border-top */

  max-height: 15em;
  overflow: auto;
  left: -5em;
  /* Width of menu - width of button / 2 */

  /* background-color-with-alpha */
  background-color: #07141e;
  background-color: rgba(7, 20, 30, 0.7);
  /* box-shadow */
  -webkit-box-shadow: -0.2em -0.2em 0.3em rgba(255, 255, 255, 0.2);
  -moz-box-shadow: -0.2em -0.2em 0.3em rgba(255, 255, 255, 0.2);
  box-shadow: -0.2em -0.2em 0.3em rgba(255, 255, 255, 0.2);
}
.vjs-default-skin .vjs-menu-button:hover .vjs-menu {
  display: block;
}
.vjs-default-skin .vjs-menu-button ul li {
  list-style: none;
  margin: 0;
  padding: 0.3em 0 0.3em 0;
  line-height: 1.4em;
  font-size: 1.2em;
  text-align: center;
  text-transform: lowercase;
}
.vjs-default-skin .vjs-menu-button ul li.vjs-selected {
  background-color: #000;
}
.vjs-default-skin .vjs-menu-button ul li:focus,
.vjs-default-skin .vjs-menu-button ul li:hover,
.vjs-default-skin .vjs-menu-button ul li.vjs-selected:focus,
.vjs-default-skin .vjs-menu-button ul li.vjs-selected:hover {
  outline: 0;
  color: #111;
  /* background-color-with-alpha */
  background-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.75);
  /* box-shadow */
  -webkit-box-shadow: 0 0 1em #ffffff;
  -moz-box-shadow: 0 0 1em #ffffff;
  box-shadow: 0 0 1em #ffffff;
}
.vjs-default-skin .vjs-menu-button ul li.vjs-menu-title {
  text-align: center;
  text-transform: uppercase;
  font-size: 1em;
  line-height: 2em;
  padding: 0;
  margin: 0 0 0.3em 0;
  font-weight: bold;
  cursor: default;
}
/* Subtitles Button */
.vjs-default-skin .vjs-subtitles-button:before {
  content: "\e00c";
}
/* Captions Button */
.vjs-default-skin .vjs-captions-button:before {
  content: "\e008";
}
/* Replacement for focus outline */
.vjs-default-skin .vjs-captions-button:focus .vjs-control-content:before,
.vjs-default-skin .vjs-captions-button:hover .vjs-control-content:before {
  /* box-shadow */
  -webkit-box-shadow: 0 0 1em #ffffff;
  -moz-box-shadow: 0 0 1em #ffffff;
  box-shadow: 0 0 1em #ffffff;
}
/*
REQUIRED STYLES (be careful overriding)
================================================================================
When loading the player, the video tag is replaced with a DIV,
that will hold the video tag or object tag for other playback methods.
The div contains the video playback element (Flash or HTML5) and controls,
and sets the width and height of the video.

** If you want to add some kind of border/padding (e.g. a frame), or special
positioning, use another containing element. Otherwise you risk messing up
control positioning and full window mode. **
*/
.video-js {
  background-color: #000;
  position: relative;
  padding: 0;
  /* Start with 10px for base font size so other dimensions can be em based and
     easily calculable. */

  font-size: 10px;
  /* Allow poster to be vertially aligned. */

  vertical-align: middle;
  /*  display: table-cell; */
  /*This works in Safari but not Firefox.*/

  /* Provide some basic defaults for fonts */

  font-weight: normal;
  font-style: normal;
  /* Avoiding helvetica: issue #376 */

  font-family: Arial, sans-serif;
  /* Turn off user selection (text highlighting) by default.
     The majority of player components will not be text blocks.
     Text areas will need to turn user selection back on. */

  /* user-select */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/* Playback technology elements expand to the width/height of the containing div
    <video> or <object> */
/* Fix for Firefox 9 fullscreen (only if it is enabled). Not needed when
   checking fullScreenEnabled. */
.video-js:-moz-full-screen {
  position: absolute;
}
/* Fullscreen Styles */
body.vjs-full-window {
  padding: 0;
  margin: 0;
  height: 100%;
  /* Fix for IE6 full-window. http://www.cssplay.co.uk/layouts/fixed.html */
  overflow-y: auto;
}
.video-js.vjs-fullscreen {
  position: fixed;
  overflow: hidden;
  z-index: 1000;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
  /* IE6 full-window (underscore hack) */
  _position: absolute;
}
.video-js:-webkit-full-screen {
  width: 100% !important;
  height: 100% !important;
}
.video-js.vjs-fullscreen.vjs-user-inactive {
  cursor: none;
}
/* Poster Styles */
.vjs-poster {
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  cursor: pointer;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
}
.vjs-poster img {
  display: block;
  margin: 0 auto;
  max-height: 100%;
  padding: 0;
  width: 100%;
}
/* Hide the poster when native controls are used otherwise it covers them */
.video-js.vjs-using-native-controls .vjs-poster {
  display: none;
}
/* Text Track Styles */
/* Overall track holder for both captions and subtitles */
.video-js .vjs-text-track-display {
  text-align: center;
  position: absolute;
  bottom: 4em;
  /* Leave padding on left and right */
  left: 1em;
  right: 1em;
}
/* Move captions down when controls aren't being shown */
.video-js.vjs-user-inactive.vjs-playing .vjs-text-track-display {
  bottom: 1em;
}
/* Individual tracks */
.video-js .vjs-text-track {
  display: none;
  font-size: 1.4em;
  text-align: center;
  margin-bottom: 0.1em;
  /* Transparent black background, or fallback to all black (oldIE) */
  /* background-color-with-alpha */
  background-color: #000000;
  background-color: rgba(0, 0, 0, 0.5);
}
.video-js .vjs-subtitles {
  color: #ffffff /* Subtitles are white */;
}
.video-js .vjs-captions {
  color: #ffcc66 /* Captions are yellow */;
}
.vjs-tt-cue {
  display: block;
}
/* Hide disabled or unsupported controls */
.vjs-default-skin .vjs-hidden {
  display: none;
}
.vjs-lock-showing {
  display: block !important;
  opacity: 1;
  visibility: visible;
}
/*  In IE8 w/ no JavaScript (no HTML5 shim), the video tag doesn't register.
    The .video-js classname on the video tag also isn't considered.
    This optional paragraph inside the video tag can provide a message to users
    about what's required to play video. */
.vjs-no-js {
  padding: 20px;
  color: #ccc;
  background-color: #333;
  font-size: 18px;
  font-family: Arial, sans-serif;
  text-align: center;
  width: 960px !important;
  height: 420px !important;
  margin: 0px auto;
}
.vjs-no-js a,
.vjs-no-js a:visited {
  color: #F4A460;
}
/* -----------------------------------------------------------------------------
The original source of this file lives at
https://github.com/videojs/video.js/blob/master/src/css/video-js.less */


	body {
		background-color: #ccc;
		background: url(assets/img/bg.jpg) no-repeat center center fixed;		-webkit-background-size: cover;
	    -moz-background-size: cover;
	    -o-background-size: cover;
	    background-size: cover;
	}
    
    .custom-color, .widget-title { color: orange; }

    .custom-color-back { background-color: #000000 !important; }
    .custom-color-btn-back, .comments #submit, #searchsubmit { background-color: orange !important; 
              -webkit-transition: background-color 0.3s ease-out;
              -moz-transition: background-color 0.3s ease-out;
              -o-transition: background-color 0.3s ease-out;
              transition: background-color 0.3s ease-out; 
        }
      .custom-color-btn-back:hover, .comments #submit:hover, #searchsubmit:hover { background-color: #000000 !important; }

    .detail a {
      color: orange !important;
    }
    a:hover {
      color: orange !important;
    }




.entry-content img {
	max-width: 100%;
}

.wp-pagenavi ul {
	display: inline-block;
	padding-left: 0;
	margin: 20px 0;
	border-radius: 4px;
}

.wp-pagenavi ul>li {
	display: inline;
}

.wp-pagenavi ul>li>a,
.wp-pagenavi ul>li>span {
	position: relative;
	float: left;
	padding: 6px 12px;
	margin-left: -1px;
	line-height: 1.42857143;
	color: #337ab7;
	text-decoration: none;
	background-color: #fff;
	border: 1px solid #ddd;
}

.wp-pagenavi ul>li:first-child>a,
.wp-pagenavi ul>li:first-child>span {
	margin-left: 0;
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
}

.wp-pagenavi ul>li:last-child>a,
.wp-pagenavi ul>li:last-child>span {
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
}

.wp-pagenavi ul>li>a:hover,
.wp-pagenavi ul>li>a:focus {
	z-index: 2;
	color: #23527c;
	background-color: #eee;
	border-color: #ddd;
}

.wp-pagenavi .current {
	z-index: 3;
	color: #fff;
	cursor: default;
	background-color: #337ab7;
	border-color: #337ab7;
}

.wp-pagenavi .dots {
	color: #777;
	cursor: not-allowed;
	background-color: #fff;
	border-color: #ddd;
}

/* WP */
.widget {

}

.widget-title {

}

.widget ul {

}

.widget li {

}

.widget a {

}

.alignnone {
    margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

.alignright {
    float:right;
    margin: 5px 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

a img.alignnone {
    margin: 5px 20px 20px 0;
}

a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto
}

.wp-caption {
    background: #fff;
    border: 1px solid #f0f0f0;
    max-width: 96%;
    padding: 5px 3px 10px;
    text-align: center;
}

.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}

.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}

.wp-caption p.wp-caption-text {
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px;
}


.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}