@font-face {
  font-family: 'themeicons';
  font-style: normal;
  font-weight: normal;
  src: url('../icons/themeicons/fonts/themeicons.eot');
  src: url('../icons/themeicons/fonts/themeicons.eot?#iefix') format('embedded-opentype'),
  url('../icons/themeicons/fonts/themeicons.ttf') format('truetype'),
  url('../icons/themeicons/fonts/themeicons.woff') format('woff'),
  url('../icons/themeicons/fonts/themeicons.svg#themeicons') format('svg');
}

.google_map img, .gm-style img {
  max-width: none;
}
.one_half, .one_third, .two_third, .three_fourth, .one_fourth, .one_fifth, .two_fifth, .three_fifth, .four_fifth, .one_sixth, .five_sixth {
  position: relative;
  float: left;
  height: auto !important;
  height: 1px;
  min-height: 1px;
  margin-right: 4%;
}
.one_half {
  width: 48%;
}
.one_third {
  width: 30.6666%;
}
.two_third {
  width: 65.3332%;
}
.one_fourth {
  width: 22%;
}
.two_fourth {
  width: 48%;
}
.three_fourth {
  width: 74%;
}
.one_fifth {
  width: 16.8%;
}
.two_fifth {
  width: 37.6%;
}
.three_fifth {
  width: 58.4%;
}
.four_fifth {
  width: 79.2%;
}
.one_sixth {
  width: 13.3333%;
}
.two_sixth {
  width: 30.6666%;
}
.three_sixth {
  width: 47.9998%;
}
.four_sixth {
  width: 65.3332%;
}
.five_sixth {
  width: 82.6665%;
}
.last {
  margin-right: 0 !important;
  clear: right;
}
/* Two level columns
---------------------------------------------------------- */
.one_half .one_half {
  width: 45.8333%;
  margin-right: 8.3333%;
}
.one_half .one_third {
  width: 27.7778%;
  margin-right: 8.3333%;
}
.one_half .two_third {
  width: 63.8889%;
  margin-right: 8.3333%;
}
.two_third .one_third {
  width: 29.2517%;
  margin-right: 6.1224%;
}
.two_third .two_third {
  width: 64.6258%;
  margin-right: 6.1224%;
}
.two_third .one_fourth {
  width: 20.4082%;
  margin-right: 6.1224%;
}
.two_third .three_fourth {
  width: 73%;
  margin-right: 6.1224%;
}
/* ======================================================= */
/*                      Images Styles                      */
/* ======================================================= */
/* Basic image style
---------------------------------------------------------- */
.preloading {
  background: url("../images/loading.gif") #f9f9f9 no-repeat 50% 50%;
}
img.alignleft, .wp-caption.alignleft {
  margin: 2px 16px 2px 2px !important;
}
img.alignright, .wp-caption.alignright {
  margin: 2px 2px 2px 16px !important;
}
img.aligncenter, .wp-caption.aligncenter {
  display: block;
  margin: 2px auto !important;
  text-align: center;
}
/* wp default image
---------------------------------------------------------- */
.wp-caption {
  max-width: 100% !important;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  padding: 5px 5px 0;
  margin-bottom: 10px;
  text-align: center;
  background: #f5f5f5;
  border: 1px solid #ddd;
}
.wp-caption img {
  padding: 0;
  margin: 0;
  border: 0 none;
}
p.wp-caption-text {
  padding: 0 5px 5px;
  margin: 0;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
}
/* Image with frame
---------------------------------------------------------- */
.image_styled {
  position: relative;
  display: inline-block;
  max-width: 100%;
  margin-bottom: 20px;
  zoom: 1;

  *display: inline;
  /*overflow: hidden;*/
}
.entry_full .entry_image, .entry_below .entry_image {
  width: 100% !important;
}
.image_styled.aligncenter {
  display: block;
}
.image_frame {
  position: relative;
  display: block;
  /*margin-bottom: 20px;*/
  background: url("../images/loading.gif") #f9f9f9 no-repeat 50% 50%;
}
@media only screen and (max-width: 767px) {
  .image_fit_mobile {
    display: block;
    width: auto !important;
  }
}
.effect-grayscale img {
          filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
          filter: gray; /* IE6-9 */
  -webkit-transition: -webkit-filter 1s;
     -moz-transition:    -moz-filter 1s;
      -ms-transition:     -ms-filter 1s;
       -o-transition:      -o-filter 1s;

  -webkit-filter: gray;
  -webkit-filter: grayscale(100%); /* Chrome 19+, Safari 6+, Safari 6+ iOS */
  -webkit-backface-visibility: hidden; /* Fix for transition flickering */
     -moz-filter: grayscale(100%);
}
.effect-grayscale img:hover {
          filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/></filter></svg>#grayscale");
          filter: grayscale(0%);

  -webkit-filter: grayscale(0%);
}
.effect-tilt {
  -webkit-transition: all .5s ease;
       -o-transition: all .5s ease;
          transition: all .5s ease;

  -webkit-backface-visibility: hidden;
}
.effect-tilt:hover {
  -webkit-transform: rotate(-10deg);
      -ms-transform: rotate(-10deg);
       -o-transform: rotate(-10deg);
          transform: rotate(-10deg);
}
.effect-rotate {
  -webkit-transition: all .5s ease;
       -o-transition: all .5s ease;
          transition: all .5s ease;

  -webkit-backface-visibility: hidden;
}
.effect-rotate:hover {
  -webkit-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
       -o-transform: rotate(360deg);
          transform: rotate(360deg);
}
.effect-morph {
  -webkit-transition: all .5s ease;
       -o-transition: all .5s ease;
          transition: all .5s ease;

  -webkit-backface-visibility: hidden;
}
.effect-morph:hover {
  border-radius: 100%;
  -webkit-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
       -o-transform: rotate(360deg);
          transform: rotate(360deg);
}
.effect-morph:hover * {
  border-radius: 100%;
}
.effect-morph:hover .image_shadow_wrap:before,
.image_frame.effect-morph:hover .image_shadow_wrap:after {
  display: none;
}
.effect-morph:hover .image_shadow_wrap {
  -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, .3);
  -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, .3);
          box-shadow: 0 5px 10px 0 rgba(0, 0, 0, .3);

  -moz--box-shadow: 0 5px 10px 0 rgba(0, 0, 0, .3);
}
.effect-zoom {
  -webkit-transition: all .5s ease;
       -o-transition: all .5s ease;
          transition: all .5s ease;
}
.effect-zoom:hover {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
       -o-transform: scale(1.1);
          transform: scale(1.1);
}
.effect-blur img {
          filter: blur(2px);
  -webkit-transition: -webkit-filter 1s;
     -moz-transition:    -moz-filter 1s;
      -ms-transition:     -ms-filter 1s;
       -o-transition:      -o-filter 1s;

  -webkit-filter: blur(2px);
  -webkit-backface-visibility: hidden; /* Fix for transition flickering */
}
.effect-blur img:hover {
          filter: blur(0);

  -webkit-filter: blur(0);
}
.image_frame a {
  position: relative;
  display: block;
  height: 100%;
  overflow: hidden;
  background: url("../images/loading.gif") #f9f9f9 no-repeat 50% 50%;
}
.no-js .image_frame img {
  visibility: visible;
}
.image_frame img {
  position: relative;
  display: block;
  width: 100%;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  visibility: hidden;
  background: #f9f9f9;
  border: 1px solid #eee;

      -ms-box-sizing: border-box;
}
.image_frame .grayscale-wrapper img {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;

      -ms-box-sizing: border-box;
}
.grayscale-wrapper img {
  width: 100%;
  height: 100%;
}
.image_styled .image_caption {
  display: block;
  margin: 10px 0;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
}
.image_styled.aligncenter .image_caption {
  margin: 10px auto;
}
.image_shadow_wrap {
  position: relative;
  height: 100%;
}
.has-shadow .image_shadow_wrap:before,
.has-shadow .image_shadow_wrap:after {
  position: absolute;
  top: 50%;
  right: 15px;
  bottom: 0;
  left: 15px;
  content: "";
  border-radius: 100px / 10px;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, .35);
          box-shadow: 0 0 15px rgba(0, 0, 0, .35);
}
.has-shadow.shadow-dark .image_shadow_wrap:before,
.has-shadow.shadow-dark .image_shadow_wrap:after {
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, .5);
          box-shadow: 0 0 20px rgba(0, 0, 0, .5);
}
.has-shadow .image_shadow_wrap:after {
  right: 10px;
  left: auto;
  -webkit-transform: skew(8deg) rotate(3deg);
      -ms-transform: skew(8deg) rotate(3deg);
       -o-transform: skew(8deg) rotate(3deg);
          transform: skew(8deg) rotate(3deg);
}
#feature .image_frame img {
  visibility: visible;
}
.image_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  visibility: hidden;
}
.image_icon_zoom .image_overlay {
  background: url("../images/image_icon_zoom.png") no-repeat scroll 50% 50% transparent;
}
.image_icon_play .image_overlay {
  background: url("../images/image_icon_play.png") no-repeat scroll 50% 50% transparent;
}
.image_icon_doc .image_overlay {
  background: url("../images/image_icon_doc.png") no-repeat scroll 50% 50% transparent;
}
.image_icon_link .image_overlay {
  background: url("../images/image_icon_link.png") no-repeat scroll 50% 50% transparent;
}
.image_styled.alignleft {
  margin-right: 16px;
}
.image_styled.alignright {
  margin-left: 16px;
}
.image_no_link {
  cursor: default;
}
/* ======================================================= */
/*                   Extended Typography                   */
/* ======================================================= */
/* highlight
---------------------------------------------------------- */
.highlight {
  background: #ff9;
}
.highlight.dark {
  color: #fff;
  background: #333;
}
/* blockquote
---------------------------------------------------------- */
blockquote {
  padding: 10px 20px 10px 60px;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 16px;
  line-height: 24px;
  /*background: url("../images/quote.gif") no-repeat scroll 0 6px transparent;*/
  color: #444;
}
blockquote p {
  margin-bottom: 8px;
}
blockquote.alignleft {
  width: 220px;
  margin: 10px 20px 0 0;
}
blockquote.alignright {
  width: 220px;
  margin: 10px 0 0 20px;
}
blockquote.aligncenter {
  display: block;
  width: 300px;
}
blockquote cite {
  font-size: 12px;
  color: #666;
}
blockquote {
  position: relative;
  display: inline-block;
}

blockquote:before {
  position: absolute;
  top: 8px;
  left: 5px;
  margin-right: 10px;
  font-family: 'themeicons';
  font-size: 40px;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  content: "\e643";

  speak: none;
  /*Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ======================================================= */
/*                     Buttons Styles                      */
/* ======================================================= */
.theme_button, .theme_button span {
  display: inline-block;
  border-radius: 1px;
}
.theme_button {
  position: relative;
  overflow: visible;  /* removes extra side padding in IE */
  line-height: 1em;
  white-space: normal;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwLjA1Ii8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC4wNSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,.05)), to(rgba(0,0,0,.05)));
  background-image: -webkit-linear-gradient(top, rgba(255,255,255,.05) 0%, rgba(0,0,0,.05) 100%);
  background-image:      -o-linear-gradient(top, rgba(255,255,255,.05) 0%, rgba(0,0,0,.05) 100%);
  background-image:         linear-gradient(to bottom, rgba(255,255,255,.05) 0%,rgba(0,0,0,.05) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0dffffff', endColorstr='#0d000000',GradientType=0 ); /* IE6-8 */
  border: 1px solid rgba(0, 0, 0, .1);
  outline: none;

  -ms-filter: "progid:DXImageTransform.Microsoft.gradient( startColorstr='#0dffffff', endColorstr='#0d000000',GradientType=0 )";
  -khtml-user-select: none;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}
button.theme_button {
  padding: 0;
  margin: 0;
}
a.theme_button, a.theme_button:hover {
  text-decoration: none;
}
.theme_button.full, .theme_button.full span {
  display: block;
}
.theme_button:hover, .theme_button.hover {
  /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwLjI1Ii8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiM5OTk5OTkiIHN0b3Atb3BhY2l0eT0iMC4yNSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+); /* FF3.6+ */
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,.25)), color-stop(100%,rgba(153,153,153,.25))); /* Chrome,Safari4+ */
  background-image: -webkit-linear-gradient(top,  rgba(255,255,255,.25) 0%,rgba(153,153,153,.25) 100%); /* Chrome10+,Safari5.1+ */
  background-image:      -o-linear-gradient(top,  rgba(255,255,255,.25) 0%,rgba(153,153,153,.25) 100%); /* Opera 11.10+ */ /* IE10+ */
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,.25)), to(rgba(153,153,153,.25)));
  background-image: -webkit-linear-gradient(top, rgba(255,255,255,.25) 0%, rgba(153,153,153,.25) 100%);
  background-image:      -o-linear-gradient(top, rgba(255,255,255,.25) 0%, rgba(153,153,153,.25) 100%);
  background-image:         linear-gradient(to bottom,  rgba(255,255,255,.25) 0%,rgba(153,153,153,.25) 100%); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#40ffffff', endColorstr='#40999999',GradientType=0 ); /* IE6-8 */

  -ms-filter: "progid:DXImageTransform.Microsoft.gradient( startColorstr='#40ffffff', endColorstr='#40999999',GradientType=0 )";
}
.theme_button:active, .theme_button.active {
  top: 1px;
  /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjEiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2JiYmJiYiIgc3RvcC1vcGFjaXR5PSIwLjEiLz4KICA8L2xpbmVhckdyYWRpZW50PgogIDxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9InVybCgjZ3JhZC11Y2dnLWdlbmVyYXRlZCkiIC8+Cjwvc3ZnPg==); /* FF3.6+ */
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,.1)), color-stop(100%,rgba(187,187,187,.1))); /* Chrome,Safari4+ */
  background-image: -webkit-linear-gradient(top,  rgba(0,0,0,.1) 0%,rgba(187,187,187,.1) 100%); /* Chrome10+,Safari5.1+ */
  background-image:      -o-linear-gradient(top,  rgba(0,0,0,.1) 0%,rgba(187,187,187,.1) 100%); /* Opera 11.10+ */ /* IE10+ */
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,.1)), to(rgba(187,187,187,.1)));
  background-image: -webkit-linear-gradient(top, rgba(0,0,0,.1) 0%, rgba(187,187,187,.1) 100%);
  background-image:      -o-linear-gradient(top, rgba(0,0,0,.1) 0%, rgba(187,187,187,.1) 100%);
  background-image:         linear-gradient(to bottom,  rgba(0,0,0,.1) 0%,rgba(187,187,187,.1) 100%); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1a000000', endColorstr='#1abbbbbb',GradientType=0 ); /* IE6-8 */

  -ms-filter: "progid:DXImageTransform.Microsoft.gradient( startColorstr='#1a000000', endColorstr='#1abbbbbb',GradientType=0 )";
}
.theme_button span {
  position: relative;
  padding: .6em 1.3em;
  line-height: 1em;
  color: #fff;
  text-align: center;
  text-decoration: none;
  white-space: normal;
}
@media screen and (-webkit-min-device-pixel-ratio:0) {
  /* Safari and Google Chrome only - fix margins */
  button.theme_button span {
    margin-top: -1px;
    margin-right: -2px;
    margin-left: -2px;
  }
}
.theme_button.small span {
  font-size: 12px;
}
.theme_button.medium span {
  font-size: 14px;
}
.theme_button.large span {
  font-size: 18px;
}
/* Button Color Scheme
---------------------------------------------------------- */
.theme_button.black {
  background-color: #333;
}
.theme_button.gray {
  background-color: #666;
}
.theme_button.white {
  background-color: #fff;
}
.theme_button.white span {
  color: #666;
}
.theme_button.red {
  background-color: #e62727;
}
.theme_button.orange {
  background-color: #ff5c00;
}
.theme_button.magenta {
  background-color: #a9014b;
}
.theme_button.yellow {
  background-color: #ffb515;
}
.theme_button.blue {
  background-color: #00adee;
}
.theme_button.pink {
  background-color: #e22092;
}
.theme_button.green {
  background-color: #91bd09;
}
.theme_button.rosy {
  background-color: #f16c7c;
}
/* ======================================================= */
/*                        Fancybox                         */
/* ======================================================= */
/*! fancyBox v2.1.5 fancyapps.com | fancyapps.com/fancybox/#license */
.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp {
  padding: 0;
  margin: 0;
  vertical-align: top;
  border: 0;
  outline: none;
}
.fancybox-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8020;
}
.fancybox-skin {
  position: relative;
  color: #444;
  text-shadow: none;
  background: #f9f9f9;
  border-radius: 4px;
}
.fancybox-opened {
  z-index: 8030;
}
.fancybox-opened .fancybox-skin {
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, .5);
          box-shadow: 0 10px 25px rgba(0, 0, 0, .5);
}
.fancybox-outer, .fancybox-inner {
  position: relative;
}
.fancybox-inner {
  overflow: hidden;
}
.fancybox-type-iframe .fancybox-inner {
  -webkit-overflow-scrolling: touch;
}
.fancybox-error {
  padding: 15px;
  margin: 0;
  font: 14px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #444;
  white-space: nowrap;
}
.fancybox-image, .fancybox-iframe {
  display: block;
  width: 100%;
  height: 100%;
}
.fancybox-image {
  max-width: 100%;
  max-height: 100%;
}
#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
  background-image: url('../images/fancybox_sprite.png');
}
#fancybox-loading {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 8060;
  margin-top: -22px;
  margin-left: -22px;
  cursor: pointer;
  background-position: 0 -108px;
  opacity: .8;
}
#fancybox-loading div {
  width: 44px;
  height: 44px;
  background: url('../images/fancybox_loading.gif') center center no-repeat;
}
.fancybox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  z-index: 8040;
  width: 36px;
  height: 36px;
  cursor: pointer;
}
.fancybox-type-swf .fancybox-nav, .fancybox-type-iframe .fancybox-nav, .fancybox-type-inline .fancybox-nav, .fancybox-type-html .fancybox-nav, .fancybox-type-ajax .fancybox-nav {
  top: 50%;
  width: 54px;
  height: 34px;
  margin-top: -18px;
}
.fancybox-type-swf .fancybox-nav span,
.fancybox-type-iframe .fancybox-nav span,
.fancybox-type-inline .fancybox-nav span,
.fancybox-type-html .fancybox-nav span,
.fancybox-type-ajax .fancybox-nav span {
  top: 0;
  margin-top: 0;
}
.fancybox-nav {
  position: absolute;
  top: 0;
  z-index: 8040;
  width: 40%;
  height: 100%;
  text-decoration: none;
  cursor: pointer;
  background: transparent url('../images/blank.gif');

  -webkit-tap-highlight-color: rgba(0,0,0,0);
}
.fancybox-prev {
  left: 0;
}
.fancybox-next {
  right: 0;
}
.fancybox-nav span {
  position: absolute;
  top: 50%;
  z-index: 8040;
  width: 36px;
  height: 34px;
  margin-top: -18px;
  cursor: pointer;
  visibility: hidden;
}
.fancybox-prev span {
  left: 10px;
  background-position: 0 -36px;
}
.fancybox-next span {
  right: 10px;
  background-position: 0 -72px;
}
.fancybox-nav:hover span {
  visibility: visible;
}
.fancybox-tmp {
  position: absolute;
  top: -99999px;
  left: -99999px;
  max-width: 99999px;
  max-height: 99999px;
  overflow: visible !important;
  visibility: hidden;
}
/* Overlay helper */
.fancybox-lock {
  width: auto;
  overflow: hidden !important;
}

.fancybox-lock body {
  overflow: hidden !important;
}

.fancybox-lock-test {
  overflow-y: hidden !important;
}

.fancybox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8010;
  display: none;
  overflow: hidden;
  background: url('../images/fancybox_overlay.png');
}
.fancybox-overlay-fixed {
  position: fixed;
  right: 0;
  bottom: 0;
}
.fancybox-lock .fancybox-overlay {
  overflow: auto;
  overflow-y: scroll;
}
/* Title helper */
.fancybox-title {
  position: relative;
  z-index: 8050;
  font: normal 13px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-shadow: none;
  visibility: hidden;
}
.fancybox-opened .fancybox-title {
  visibility: visible;
}
.fancybox-title-float-wrap {
  position: absolute;
  right: 50%;
  bottom: 0;
  z-index: 8050;
  margin-bottom: -35px;
  text-align: center;
}
.fancybox-title-float-wrap .child {
  display: inline-block;
  padding: 2px 20px;
  margin-right: -100%;
  font-weight: bold;
  line-height: 24px;
  color: #fff;
  text-shadow: 0 1px 2px #222;
  white-space: nowrap;
  background: transparent;
  background: rgba(0, 0, 0, .8);
  border-radius: 15px;
}
.fancybox-title-outside-wrap {
  position: relative;
  margin-top: 10px;
  color: #fff;
}
.fancybox-title-inside-wrap {
  padding-top: 10px;
}
.fancybox-title-over-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 10px;
  color: #fff;
  background: #000;
  background: rgba(0, 0, 0, .8);
}
.skin-video .fancybox-title-over-wrap, .fancybox-type-iframe .fancybox-title-over-wrap {
  top: 0;
  bottom: auto;
}
.fancybox-inner .video_frame {
  margin-bottom: 0;
}
/*Retina graphics!*/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
     only screen and (min--moz-device-pixel-ratio: 1.5),
     only screen and (min-device-pixel-ratio: 1.5) {

  #fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
    background-image: url('../images/fancybox_sprite@2x.png');
    -webkit-background-size: 44px 152px;
            background-size: 44px 152px; /*The size of the normal image, half the size of the hi-res image*/
  }

  #fancybox-loading div {
    background-image: url('../images/fancybox_loading@2x.gif');
    -webkit-background-size: 24px 24px;
            background-size: 24px 24px; /*The size of the normal image, half the size of the hi-res image*/
  }
}
/* thumbs
---------------------------------------------------------- */
#fancybox-thumbs {
  position: fixed;
  left: 0;
  z-index: 8050;
  width: 100%;
  overflow: hidden;
}
#fancybox-thumbs.bottom {
  bottom: 2px;
}
#fancybox-thumbs.top {
  top: 2px;
}
#fancybox-thumbs ul {
  position: relative;
  padding: 0;
  margin: 0;
  list-style: none;
}
#fancybox-thumbs ul li {
  float: left;
  padding: 1px;
  opacity: .5;
}
#fancybox-thumbs ul li.active {
  padding: 0;
  border: 1px solid #fff;
  opacity: .75;
}
#fancybox-thumbs ul li:hover {
  opacity: 1;
}
#fancybox-thumbs ul li a {
  position: relative;
  display: block;
  overflow: hidden;
  background: #111;
  border: 1px solid #222;
  outline: none;
}
#fancybox-thumbs ul li img {
  position: relative;
  display: block;
  max-width: none;
  padding: 0;
  border: 0;
}
.skin-theme .fancybox-skin {
  border: 1px solid #fff;
  border-radius: 0;
}
.skin-theme.skin-audio .fancybox-close {
  top: -26px;
  background: url("../images/fancybox_close_revert.png") no-repeat scroll 0 0 transparent;
}
.skin-theme .fancybox-close {
  position: absolute;
  top: -1px;
  right: 5px;
  display: block;
  width: 45px;
  height: 26px;
  text-indent: -9999px;
  background: url("../images/fancybox_close.png") no-repeat scroll 0 0 transparent;
}
.fancybox-mobile.skin-video.skin-theme .fancybox-close, .fancybox-mobile.fancybox-type-iframe.skin-theme .fancybox-close {
  top: -26px;
  -webkit-transform: scaleY(-1);
}
.fancybox-mobile .fancybox-nav span {
  visibility: visible;
}
.skin-theme .fancybox-nav span {
  width: 32px;
  height: 68px;
  margin-top: -34px;
}
.skin-theme .fancybox-prev span {
  left: -1px;
  background: url("../images/fancybox_previous.png") left center no-repeat;
}
.skin-theme .fancybox-next span {
  right: -1px;
  background: url("../images/fancybox_next.png") right center no-repeat;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
    only screen and (-o-min-device-pixel-ratio: 3/2),
    only screen and (min--moz-device-pixel-ratio: 1.5),
    only screen and (min-device-pixel-ratio: 1.5) {
  .skin-theme .fancybox-close {
    -webkit-background-size: 45px 26px;
            background-size: 45px 26px;
  }
  .skin-theme .fancybox-nav span {
    -webkit-background-size: 32px 68px;
            background-size: 32px 68px;
  }
}
.skin-theme.fancybox-type-swf .fancybox-nav,
.skin-theme.fancybox-type-iframe .fancybox-nav,
.skin-theme.fancybox-type-inline .fancybox-nav,
.skin-theme.fancybox-type-html .fancybox-nav,
.skin-theme.fancybox-type-ajax .fancybox-nav {
  width: 32px;
  height: 68px;
  margin-top: -34px;
}
.skin-theme.fancybox-type-swf .fancybox-nav span,
.skin-theme.fancybox-type-iframe .fancybox-nav span,
.skin-theme.fancybox-type-inline .fancybox-nav span,
.skin-theme.fancybox-type-html .fancybox-nav span,
.skin-theme.fancybox-type-ajax .fancybox-nav span {
  margin-top: 0;
}
.skin-theme .fancybox-title-float-wrap .child {
  color: #333;
  text-shadow: 0 1px 2px #fff;
  background: transparent;
  background: rgba(255, 255, 255, .8);
}
.skin-theme .fancybox-title-inside-wrap {
  padding: 5px;
  color: #333;
  text-align: center;
  text-shadow: 0 1px 2px #fff;
  background: transparent;
  background: rgba(255, 255, 255, .8);
}

/* ======================================================= */
/*                  Divider Shortcodes                     */
/* ======================================================= */
.divider {
  position: relative;
  display: block;
  max-width: 100%;
  padding-top: 20px;
  margin-bottom: 40px;
  clear: both;
  border-bottom: 1px solid #eee;
}
.divider.top a {
  position: absolute;
  top: 10px;
  right: 0;
  width: 20px;
  padding: 0 2px;
  font-size: 10px;
  color: #ccc;
  text-align: right;
  text-decoration: none;
  background: none repeat scroll 0 0 #fff;
}
.divider_padding {
  position: relative;
  display: block;
  padding-top: 30px;
  clear: both;
}
.divider_line {
  position: relative;
  display: block;
  margin-bottom: 10px;
  clear: both;
  border-bottom: 1px solid #eee;
}
/* ======================================================= */
/*                  Typography Shortcodes                  */
/* ======================================================= */
/* Responsive Text
---------------------------------------------------------- */
p.responsive_text {
  margin-bottom: none;
}
/* dropcap
---------------------------------------------------------- */
.dropcap1, .dropcap2, .dropcap3, .dropcap4 {
  float: left;
  overflow: hidden;
  text-align: center;
}
.dropcap1 {
  width: 40px;
  margin: 0 8px -4px 0;
  font-size: 32px;
  line-height: 42px;
  color: #fff;
  background: url("../images/dropcap_styles_black.png") no-repeat scroll 0 -48px transparent;
}
.dropcap1.black {
  background-image: url("../images/dropcap_styles_black.png");
}
.dropcap1.gray {
  background-image: url("../images/dropcap_styles_gray.png");
}
.dropcap1.red {
  background-image: url("../images/dropcap_styles_red.png");
}
.dropcap1.orange {
  background-image: url("../images/dropcap_styles_orange.png");
}
.dropcap1.magenta {
  background-image: url("../images/dropcap_styles_magenta.png");
}
.dropcap1.yellow {
  background-image: url("../images/dropcap_styles_yellow.png");
}
.dropcap1.blue {
  background-image: url("../images/dropcap_styles_blue.png");
}
.dropcap1.pink {
  background-image: url("../images/dropcap_styles_pink.png");
}
.dropcap1.green {
  background-image: url("../images/dropcap_styles_green.png");
}
.dropcap1.rosy {
  background-image: url("../images/dropcap_styles_rosy.png");
}
.dropcap2 {
  width: 38px;
  height: 44px;
  padding: 0 2px 0 0;
  margin: 0 8px -4px 0;
  font-size: 28px;
  line-height: 44px;
  color: #fff;
  background: url("../images/dropcap_styles_black.png") no-repeat scroll -52px 2px transparent;
}
.dropcap2.black {
  background-image: url("../images/dropcap_styles_black.png");
}
.dropcap2.gray {
  background-image: url("../images/dropcap_styles_gray.png");
}
.dropcap2.red {
  background-image: url("../images/dropcap_styles_red.png");
}
.dropcap2.orange {
  background-image: url("../images/dropcap_styles_orange.png");
}
.dropcap2.magenta {
  background-image: url("../images/dropcap_styles_magenta.png");
}
.dropcap2.yellow {
  background-image: url("../images/dropcap_styles_yellow.png");
}
.dropcap2.blue {
  background-image: url("../images/dropcap_styles_blue.png");
}
.dropcap2.pink {
  background-image: url("../images/dropcap_styles_pink.png");
}
.dropcap2.green {
  background-image: url("../images/dropcap_styles_green.png");
}
.dropcap2.rosy {
  background-image: url("../images/dropcap_styles_rosy.png");
}
.dropcap3 {
  width: 44px;
  height: 44px;
  margin: 0 0 -4px 0;
  font-size: 40px;
  line-height: 40px;
}
.dropcap4 {
  width: 44px;
  height: 44px;
  margin: 0 0 -4px 0;
  font-size: 36px;
  line-height: 40px;
}
.dropcap3.black, .dropcap4.black {
  color: #333;
}
.dropcap3.gray, .dropcap4.gray {
  color: #666;
}
.dropcap3.red, .dropcap4.red {
  color: #e62727;
}
.dropcap3.orange, .dropcap4.orange {
  color: #ff5c00;
}
.dropcap3.magenta, .dropcap4.magenta {
  color: #a9014b;
}
.dropcap3.yellow, .dropcap4.yellow {
  color: #ffb515;
}
.dropcap3.blue, .dropcap4.blue {
  color: #00adee;
}
.dropcap3.pink, .dropcap4.pink {
  color: #e22092;
}
.dropcap3.green, .dropcap4.green {
  color: #91bd09;
}
.dropcap3.rosy, .dropcap4.rosy {
  color: #f16c7c;
}
/** fix cufon position **/
.dropcap1 .cufon-canvas {
  margin-top: -4px;
}
.dropcap2 .cufon-canvas {
  margin-top: -2px;
}
.dropcap3 .cufon-canvas {
  margin-top: -4px;
}
/* list style
---------------------------------------------------------- */
ul.list1,
ul.list2,
ul.list3,
ul.list4,
ul.list5,
ul.list6,
ul.list7,
ul.list8,
ul.list9,
ul.list10,
ul.list11,
ul.list12,
[class^="list_"],
[class*=" list_"] {
  margin-left: 5px;
  list-style-type: none;
}
ul.list1 li,
ul.list2 li,
ul.list3 li,
ul.list4 li,
ul.list5 li,
ul.list6 li,
ul.list7 li,
ul.list8 li,
ul.list9 li,
ul.list10 li,
ul.list11 li,
ul.list12 li,
[class^="list_"] li,
[class*=" list_"] li {
  margin: 4px 0;
}

[class^="list_"] h3, [class*=" list_"] h3,
[class^="list_"] h4, [class*=" list_"] h4,
[class^="list_"] h5, [class*=" list_"] h5,
[class^="list_"] h6, [class*=" list_"] h6 {
  display: inline;
}
ul.list1 li:before,
ul.list2 li:before,
ul.list3 li:before,
ul.list4 li:before,
ul.list5 li:before,
ul.list6 li:before,
ul.list7 li:before,
ul.list8 li:before,
ul.list9 li:before,
ul.list10 li:before,
ul.list11 li:before,
ul.list12 li:before,
[class^="list_"] li:before,
[class*=" list_"] li:before {
  margin: 0 8px;
  font-family: 'themeicons';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-decoration: none;
  text-transform: none;

  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
ul.list_outside {
  position: relative;
}
ul.list_outside li {
  padding-left: 20px;
}
ul.list_outside li:before {
  position: absolute;
  left: 0;
  margin: 0;
}
ul.list1 li:before,
ul.list_circle li:before {
  content: "\e636";
}
ul.list2 li:before,
ul.list_check li:before {
  content: "\e62c";
}
ul.list3 li:before,
ul.list_check-square-d li:before {
  content: "\e632";
}
ul.list4 li:before,
ul.list_check_circle-o li:before {
  content: "\e62f";
}
ul.list5 li:before,
ul.list_play li:before {
  content: "\e62b";
}
ul.list6 li:before,
ul.list_star li:before {
  content: "\e61b";
}
ul.list7 li:before,
ul.list_thumbs-up li:before {
  content: "\e613";
}
ul.list8 li:before,
ul.list_heart li:before {
  content: "\e611";
}
ul.list9 li:before,
ul.list_medal li:before {
  content: "\e61d";
}
ul.list10 li:before,
ul.list_flag li:before {
  content: "\e61c";
}
ul.list11 li:before,
ul.list_help li:before {
  content: "\e618";
}
ul.list12 li:before,
ul.list_comment-s li:before {
  content: "\e610";
}
ul.list_user li:before {
  content: "\e600";
}
ul.list_tag li:before {
  content: "\e601";
}
ul.list_phone li:before {
  content: "\e602";
}
ul.list_cellphone li:before {
  content: "\e648";
}
ul.list_fax li:before {
  content: "\e646";
}
ul.list_multiuser li:before {
  content: "\e603";
}
ul.list_link li:before {
  content: "\e604";
}
ul.list_id li:before {
  content: "\e605";
}
ul.list_home li:before {
  content: "\e606";
}
ul.list_globe li:before {
  content: "\e607";
}
ul.list_email li:before {
  content: "\e608";
}
ul.list_download li:before {
  content: "\e609";
}
ul.list_chain li:before {
  content: "\e60a";
}
ul.list_calendar li:before {
  content: "\e60b";
}
ul.list_addressbook li:before {
  content: "\e60c";
}
ul.list_comments li:before {
  content: "\e60d";
}
ul.list_comment li:before {
  content: "\e60e";
}
ul.list_comment-o li:before {
  content: "\e60f";
}
ul.list_heart-o li:before {
  content: "\e612";
}
ul.list_thumbs-down li:before {
  content: "\e614";
}
ul.list_key li:before {
  content: "\e615";
}
ul.list_lightbulb li:before {
  content: "\e616";
}
ul.list_eye li:before {
  content: "\e617";
}
ul.list_marker li:before {
  content: "\e619";
}
ul.list_gift li:before {
  content: "\e61a";
}
ul.list_clock li:before {
  content: "\e61e";
}
ul.list_cart li:before {
  content: "\e61f";
}
ul.list_trash li:before {
  content: "\e620";
}
ul.list_cog li:before {
  content: "\e621";
}
ul.list_ban li:before {
  content: "\e622";
}
ul.list_times li:before {
  content: "\e623";
}
ul.list_pencil li:before {
  content: "\e624";
}
ul.list_note li:before {
  content: "\e625";
}
ul.list_book li:before {
  content: "\e626";
}
ul.list_gallery li:before {
  content: "\e627";
}
ul.list_picture li:before {
  content: "\e628";
}
ul.list_movie li:before {
  content: "\e629";
}
ul.list_music li:before {
  content: "\e62a";
}
ul.list_check-b li:before {
  content: "\e62d";
}
ul.list_check-circle li:before {
  content: "\e62e";
}
ul.list_check-circle-o li:before {
  content: "\e62f";
}
ul.list_check-circle-d li:before {
  content: "\e630";
}
ul.list_check-square li:before {
  content: "\e631";
}
ul.list_arrow li:before {
  content: "\e633";
}
ul.list_arrow-circle li:before {
  content: "\e634";
}
ul.list_arrow-circle-o li:before {
  content: "\e635";
}
ul.list_info li:before {
  content: "\e637";
}
ul.list_info-o li:before {
  content: "\e638";
}
ul.list_question li:before {
  content: "\e639";
}
ul.list_question-o li:before {
  content: "\e63a";
}
ul.list_exclamation li:before {
  content: "\e63b";
}
ul.list_exclamation-triangle li:before {
  content: "\e63c";
}
ul.list_exclamation-circle li:before {
  content: "\e63d";
}
ul.list_mobile li:before {
  content: "\e63e";
}
ul.list_tablet li:before {
  content: "\e63f";
}
ul.list_desktop li:before {
  content: "\e640";
}
/* colors */
ul.list_color_black li:before {
  color: #333;
}
ul.list_color_gray li:before {
  color: #666;
}
ul.list_color_red li:before {
  color: #e62727;
}
ul.list_color_orange li:before {
  color: #ff5c00;
}
ul.list_color_magenta li:before {
  color: #a9014b;
}
ul.list_color_yellow li:before {
  color: #ffb515;
}
ul.list_color_blue li:before {
  color: #00adee;
}
ul.list_color_pink li:before {
  color: #e22092;
}
ul.list_color_green li:before {
  color: #91bd09;
}
ul.list_color_rosy li:before {
  color: #f16c7c;
}
/* Text with icons
---------------------------------------------------------- */
[class^="icon_"]:before,
[class*=" icon_"]:before {
  margin: 0 .5em;
  font-family: 'themeicons';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-decoration: none;
  text-transform: none;

  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a .icon,
a [class^="icon-"],
a [class*=" icon-"] {
  cursor: pointer;
}
.icon_user:before {
  content: "\e600";
}
.icon_tag:before {
  content: "\e601";
}
.icon_phone:before {
  content: "\e602";
}
.icon_cellphone:before {
  content: "\e648";
}
.icon_fax:before {
  content: "\e646";
}
.icon_multiuser:before {
  content: "\e603";
}
.icon_link:before {
  content: "\e604";
}
.icon_id:before {
  content: "\e605";
}
.icon_home:before {
  content: "\e606";
}
.icon_globe:before {
  content: "\e607";
}
.icon_email:before {
  content: "\e608";
}
.icon_download:before {
  content: "\e609";
}
.icon_chain:before {
  content: "\e60a";
}
.icon_calendar:before {
  content: "\e60b";
}
.icon_addressbook:before {
  content: "\e60c";
}
.icon_comments:before {
  content: "\e60d";
}
.icon_comment:before {
  content: "\e60e";
}
.icon_comment-o:before {
  content: "\e60f";
}
.icon_comment-s:before {
  content: "\e610";
}
.icon_heart:before {
  content: "\e611";
}
.icon_heart-o:before {
  content: "\e612";
}
.icon_thumbs-up:before {
  content: "\e613";
}
.icon_thumbs-down:before {
  content: "\e614";
}
.icon_key:before {
  content: "\e615";
}
.icon_lightbulb:before {
  content: "\e616";
}
.icon_eye:before {
  content: "\e617";
}
.icon_help:before {
  content: "\e618";
}
.icon_marker:before {
  content: "\e619";
}
.icon_gift:before {
  content: "\e61a";
}
.icon_star:before {
  content: "\e61b";
}
.icon_flag:before {
  content: "\e61c";
}
.icon_medal:before {
  content: "\e61d";
}
.icon_clock:before {
  content: "\e61e";
}
.icon_cart:before {
  content: "\e61f";
}
.icon_trash:before {
  content: "\e620";
}
.icon_cog:before {
  content: "\e621";
}
.icon_ban:before {
  content: "\e622";
}
.icon_times:before {
  content: "\e623";
}
.icon_pencil:before {
  content: "\e624";
}
.icon_note:before {
  content: "\e625";
}
.icon_book:before {
  content: "\e626";
}
.icon_gallery:before {
  content: "\e627";
}
.icon_picture:before {
  content: "\e628";
}
.icon_movie:before {
  content: "\e629";
}
.icon_music:before {
  content: "\e62a";
}
.icon_play:before {
  content: "\e62b";
}
.icon_check:before {
  content: "\e62c";
}
.icon_check-b:before {
  content: "\e62d";
}
.icon_check-circle:before {
  content: "\e62e";
}
.icon_check-circle-o:before {
  content: "\e62f";
}
.icon_check-circle-d:before {
  content: "\e630";
}
.icon_check-square:before {
  content: "\e631";
}
.icon_check-square-d:before {
  content: "\e632";
}
.icon_arrow:before {
  content: "\e633";
}
.icon_arrow-circle:before {
  content: "\e634";
}
.icon_arrow-circle-o:before {
  content: "\e635";
}
.icon_circle:before {
  content: "\e636";
}
.icon_info:before {
  content: "\e637";
}
.icon_info-o:before {
  content: "\e638";
}
.icon_question:before {
  content: "\e639";
}
.icon_question-o:before {
  content: "\e63a";
}
.icon_exclamation:before {
  content: "\e63b";
}
.icon_exclamation-triangle:before {
  content: "\e63c";
}
.icon_exclamation-circle:before {
  content: "\e63d";
}
.icon_mobile:before {
  content: "\e63e";
}
.icon_tablet:before {
  content: "\e63f";
}
.icon_desktop:before {
  content: "\e640";
}
/*icon color*/
.icon_text.default:before {
  color: #333;
}
.icon_text.black:before {
  color: #333;
}
.icon_text.gray:before {
  color: #666;
}
.icon_text.red:before {
  color: #e62727;
}
.icon_text.orange:before {
  color: #ff5c00;
}
.icon_text.magenta:before {
  color: #a9014b;
}
.icon_text.yellow:before {
  color: #ffb515;
}
.icon_text.blue:before {
  color: #00adee;
}
.icon_text.pink:before {
  color: #e22092;
}
.icon_text.green:before {
  color: #91bd09;
}
.icon_text.rosy:before {
  color: #f16c7c;
}
/* Table
---------------------------------------------------------- */
.table_style {
  max-width: 100%;
  margin-bottom: 20px;
  /*border: 1px solid #e5e5e5;*/
}
.table_style table {
  position: relative;
  display: table;
  width: 100%;
  padding: 0;
  margin: 0;
  text-align: left;
  border-collapse: collapse;
  border: 1px solid #e5e5e5;
}
.table_style th {
  padding: 13px 12px 12px;
  font-weight: normal;
  color: #444;
  text-align: center;
  background-color: #fafafa;
  border-bottom: 1px solid #e5e5e5;
}
.table_style tbody {
  background: #fff;
}
.table_style td {
  padding: 12px;
  color: #777;
  text-align: center;
  border-top: 1px solid #e5e5e5;
}
.table_style tbody tr:hover td {
  color: #333;
  background: rgba(225,225,225,.02);
}
.table_style tfoot {
  background-color: #fafafa;
}
.table_style tfoot td {
  padding: 8px;
}
/* code & pre
---------------------------------------------------------- */
.theme_code, .theme_pre {
  padding: 10px;
  overflow: auto;
  line-height: 21px;
  white-space:      pre-wrap;  /* CSS3 browsers */
  white-space: -moz-pre-wrap !important;  /* 1999+ Mozilla */
  white-space: -pre-wrap;  /* Opera 4 thru 6 */
  white-space:   -o-pre-wrap;  /* Opera 7 and up */
  background: #fff;
  border: 1px solid #e5e5e5;
}
.theme_code {
  padding: 20px 10px;
  margin-top: 10px;
  background: url("../images/code_bg.png") repeat scroll 0 0 transparent;
}
.toggle_content .theme_code {
  margin-top: 0;
  margin-left: -15px;
}
/* milestone
---------------------------------------------------------- */
.milestone {
  margin: 10px 0 20px;
  text-align: center;
}
.milestone_number {
  font-size: 68px;
  line-height: 72px;
}
.milestone_subject {
  font-size: 14px;
}
/* sizes */
.milestone_small .milestone_number {
  font-size: 50px;
  line-height: 54px;
}
.milestone_large .milestone_number {
  font-size: 80px;
  line-height: 84px;
}
.milestone_large .milestone_subject {
  font-size: 16px;
}
/* milestone_icon */
.milestone_icon {
  text-align: left;
}
.milestone_icon:before,
.milestone_icon:after {
  display: table;
  content: "";
}
.milestone_icon:after {
  clear: both;
}
.milestone_icon i {
  float: left;
  margin: 5px 0;
}
.milestone_icon i:before {
  margin: 0;
  font-size: 76px;
}
.milestone_icon .milestone_subject {
  font-size: 18px;
  line-height: 1.2;
}
.milestone_icon .milestone_number,
.milestone_icon .milestone_subject {
  margin-left: 92px;
}
.milestone_icon .milestone_number {
  font-size: 60px;
  line-height: 64px;
}

.milestone_icon.milestone_small i:before {
  font-size: 58px;
}
.milestone_icon.milestone_small .milestone_subject {
  font-size: 16px;
}
.milestone_icon.milestone_small .milestone_number,
.milestone_icon.milestone_small .milestone_subject {
  margin-left: 72px;
}
.milestone_icon.milestone_small .milestone_number {
  font-size: 44px;
  line-height: 48px;
}

.milestone_icon.milestone_large i:before {
  font-size: 86px;
}
.milestone_icon.milestone_large .milestone_subject {
  font-size: 18px;
}
.milestone_icon.milestone_large .milestone_number,
.milestone_icon.milestone_large .milestone_subject {
  margin-left: 108px;
}
.milestone_icon.milestone_large .milestone_number {
  font-size: 70px;
  line-height: 74px;
}
/* ======================================================= */
/*                           Icons                         */
/* ======================================================= */
.icon,
[class^="icon-"],
[class*=" icon-"] {
  display: inline-block;
  font-style: normal;
  font-weight: normal;
  line-height: 1;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* makes the font 33% larger relative to the icon container */
.icon-large {
  font-size: 1.3333333333333333em;
  line-height: .75em;
  vertical-align: -15%;
}
.icon-2x {
  font-size: 2em;
}
.icon-3x {
  font-size: 3em;
}
.icon-4x {
  font-size: 4em;
}
.icon-5x {
  font-size: 5em;
}
.icon-6x {
  font-size: 6em;
}
.icon.icon-fixed-width,
[class^="icon-"].icon-fixed-width,
[class*=" icon-"].icon-fixed-width {
  width: 1.2857142857142858em;
  text-align: center;
}
.icons-ul {
  padding-left: 0;
  margin-left: 2.142857142857143em;
  list-style-type: none;
}
.icons-ul > li {
  position: relative;
}
.icons-ul .icon-li {
  position: absolute;
  top: .14285714285714285em;
  left: -2.142857142857143em;
  width: 2.142857142857143em;
  text-align: center;
}
.icon.hide,
[class^="icon-"].hide,
[class*=" icon-"].hide {
  display: none;
}
.icon-muted {
  color: #eee;
}
.icon-light {
  color: #fff;
}
.icon-dark {
  color: #333;
}
.icon-border {
  width: 1.2857142857142858em;
  padding: .25em;
  line-height: 1.2857142857142858em;
  text-align: center;
  border: solid .1em #e5e5e5;
}
.icon-border-rounded {
  border-radius: .3em;
}
.icon-border-circle {
  border-radius: 2em;
}
.icon-hover {
  background-color: #fafafa;
}
.icon-hover:hover {
  color: #fff;
  background-color: #3cabce;
}
.icon-fw {
  width: 1.2857142857142858em;
  text-align: center;
}
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.icon.pull-left,
[class^="icon-"].pull-left,
[class*=" icon-"].pull-left {
  margin-right: .3em;
}
.icon.pull-right,
[class^="icon-"].pull-right,
[class*=" icon-"].pull-right {
  margin-left: .3em;
}
.icon-spin {
  -webkit-animation: spin 2s infinite linear;
       -o-animation: spin 2s infinite linear;
          animation: spin 2s infinite linear;
}
.icon-pulse {
  -webkit-animation: spin 1s infinite steps(8);
  animation: spin 1s infinite steps(8);
}
@-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% {
    -webkit-transform: rotate(0deg);
         -o-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
         -o-transform: rotate(359deg);
            transform: rotate(359deg);
  }
}
.icon-rotate-90 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
       -o-transform: rotate(90deg);
          transform: rotate(90deg);
}
.icon-rotate-180 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}
.icon-rotate-270 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  -webkit-transform: rotate(270deg);
      -ms-transform: rotate(270deg);
       -o-transform: rotate(270deg);
          transform: rotate(270deg);
}
.icon-flip-horizontal {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
  -webkit-transform: scale(-1, 1);
      -ms-transform: scale(-1, 1);
       -o-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
.icon-flip-vertical {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
  -webkit-transform: scale(1, -1);
      -ms-transform: scale(1, -1);
       -o-transform: scale(1, -1);
          transform: scale(1, -1);
}
.icon-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.icon-stack-1x,
.icon-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.icon-stack-1x {
  line-height: inherit;
}
.icon-stack-2x {
  font-size: 2em;
}
.icon-inverse {
  color: #fff;
}
/* ======================================================= */
/*                      Boxes Styles                       */
/* ======================================================= */
/* Messages
---------------------------------------------------------- */
.theme_info, .theme_error, .theme_notice, .theme_success {
  margin-bottom: 20px;
  border: 1px solid #bbb;
  border-radius: 1px;
}
.message_box_content h3 {
  margin-bottom: 0;
}
.message_box_content {
  padding: 10px;
  padding-bottom: 0;
  border: 1px solid #fff;
  border-color: rgba(255, 255, 255, .8);
}
.message_box_content:before,
.message_box_content:after {
  display: table;
  content: " ";
}
.message_box_content:after {
  clear: both;
}
.message_box_space {
  width: 100%;
  height: 0;
  margin-top: 10px;
  overflow: hidden;
  clear: both;
  font-size: 0;
  line-height: 0;
}
.theme_info {
  color: #5e6984;
  background: #d7e7f5;
  border-color: #aacee6;
}
.theme_error {
  color: #a14a40;
  background: #fde9ea;
  border-color: #fdced0;
}
.theme_notice {
  color: #736b4c;
  background: #fff9cc;
  border-color: #ffdb4f;
}
.theme_success {
  color: #466840;
  background: #e2f2ce;
  border-color: #bfe098;
}
.theme_info a {
  color: #5e6984 !important;
}
.theme_error a {
  color: #a14a40 !important;
}
.theme_notice a {
  color: #736b4c !important;
}
.theme_success a {
  color: #466840 !important;
}
.theme_error_msg {
  margin-top: -20px;
  margin-bottom: 20px;
  color: #684c4c;
  background: none repeat scroll 0 0 #fff3f3;
  border: 1px solid #fcbec0;
  border-top: 0 none;
}
.theme_error_msg ul, .theme_error_msg ol {
  margin-bottom: 0;
}
/* Framed box
---------------------------------------------------------- */
.framed_box {
  max-width: 100%;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 20px;
  overflow: hidden;
  border: 1px solid #ddd;
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: 1px;
}
.rounded.framed_box {
  border-radius: 6px;
}
.framed_box.center {
  text-align: center;
}
.framed_box.alignleft {
  margin-right: 1em;
}
.framed_box.alignright {
  margin-left: 1em;
}
.framed_box_content {
  padding: 20px;
  padding-bottom: 0;
  background-color: #f5f5f5;
  background-color: rgba(245,245,245,.6);
  border: 1px solid rgba(255, 255, 255, .1);
}
.framed_box_content:before,
.framed_box_content:after {
  display: table;
  content: " ";
}
.framed_box_content:after {
  clear: both;
}
.framed_box_space {
  width: 100%;
  height: 0;
  margin-top: 20px;
  overflow: hidden;
  clear: both;
  font-size: 0;
  line-height: 0;
}
.framed_box_content ul.list_outside {
  position: relative;
  padding-left: 20px;
}
.framed_box_content ul.list_outside li {
  padding-left: 0;
}
.framed_box_content ul.list_outside li:before {
  margin-left: 0;
}
/* content box
---------------------------------------------------------- */
.content_box {
  max-width: 100%;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 20px;
  overflow: hidden;
  border: 1px solid #ddd;
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: 1px;
}
.content_box.center {
  text-align: center;
}
.content_box.alignleft {
  margin-right: 1em;
}
.content_box.alignright {
  margin-right: 1em;
}
.content_box_title {
  display: block;
  padding: 10px 20px;
  font-size: 16px;
  background-color: #f5f5f5;
  background-color: rgba(245,245,245,.6);
  border-bottom: 1px solid #ddd;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
}
.content_box_title i {
  margin: 0 .4em 0 0;
}
.content_box_content {
  padding: 20px;
  padding-bottom: 0;
}
.content_box_content:before,
.content_box_content:after {
  display: table;
  content: " ";
}
.content_box_content:after {
  clear: both;
}
.content_box_space {
  width: 100%;
  height: 0;
  margin-top: 20px;
  overflow: hidden;
  clear: both;
  font-size: 0;
  line-height: 0;
}
.rounded .content_box_content {
          border-bottom-right-radius: 6px;
          border-bottom-left-radius: 6px;

  -webkit-border-bottom-right-radius: 6px;
  -webkit-border-bottom-left-radius: 6px;
  -moz-border-radius-bottomright: 6px;
  -moz-border-radius-bottomleft: 6px;
}
.rounded .content_box_title {
          border-top-left-radius: 6px;
          border-top-right-radius: 6px;

  -webkit-border-top-left-radius: 6px;
  -webkit-border-top-right-radius: 6px;
  -moz-border-radius-topleft: 6px;
  -moz-border-radius-topright: 6px;
}
.rounded {
  border-radius: 6px;
}
/* Note box
---------------------------------------------------------- */
.theme_note {
  max-width: 100%;
  margin-bottom: 20px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,0,.1)), to(rgba(238,238,0,.08)));
  background: -webkit-linear-gradient(top, rgba(255,255,0,.1) 0%, rgba(238,238,0,.08) 100%);
  background:      -o-linear-gradient(top, rgba(255,255,0,.1) 0%, rgba(238,238,0,.08) 100%);
  background:         linear-gradient(to bottom, rgba(255,255,0,.1) 0%,rgba(238,238,0,.08) 100%);
  background-color: #fefdf0;
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1affff00', endColorstr='#14eeee00',GradientType=0 ); /* IE6-8 */
  border: 1px solid #eee;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 1px;
  border-radius: 1px;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .05);
          box-shadow: 0 1px 3px rgba(0, 0, 0, .05);
}
.theme_note_title {
  padding: 15px 20px 5px 16px;
  margin: 0;
}
.theme_note.alignleft {
  margin: 2px 16px 16px 2px !important;
}
.theme_note.alignright {
  margin: 2px 2px 16px 16px !important;
}
.theme_note_content {
  padding: 15px 20px 0;
}
.theme_note_space {
  width: 100%;
  height: 0;
  margin-top: 10px;
  overflow: hidden;
  clear: both;
  font-size: 0;
  line-height: 0;
}
/* Icon Box
---------------------------------------------------------- */
.iconbox {
  display: block;
  margin-top: 20px;
  margin-bottom: 20px;
}
.iconbox_icon i {
  line-height: 1.02;
}
/* iconbox_inline */
.iconbox_inline .iconbox_icon {
  float: left;
}
.iconbox_inline.iconbox_small .iconbox_icon i {
  margin-right: .6em;
  font-size: 1.8em;
}
.iconbox_inline .iconbox_icon i {
  margin-right: .5em;
  font-size: 3em;
}
.iconbox_inline.iconbox_large .iconbox_icon i {
  margin-right: .4em;
  font-size: 4.5em;
}
/* iconbox_left */
.iconbox_left {
  overflow: hidden;
}
.iconbox_left .iconbox_icon {
  float: left;
}
.iconbox_left .iconbox_icon i {
  width: 1.2857142857142858em;
  text-align: center;
}
.iconbox_left .iconbox_content {
  overflow: hidden;
}
.iconbox_left.iconbox_small .iconbox_icon i {
  margin-right: .6em;
  font-size: 3em;
}
.iconbox_left .iconbox_icon i {
  margin-right: .5em;
  font-size: 4em;
}
.iconbox_left.iconbox_large .iconbox_icon i {
  margin-right: .4em;
  font-size: 5em;
}
/* iconbox_center */
.iconbox_center {
  text-align: center;
}
.iconbox_center.iconbox_small .iconbox_icon i {
  font-size: 4em;
}
.iconbox_center .iconbox_icon i {
  margin-top: .25em;
  margin-bottom: .25em;
  font-size: 6em;
}
.iconbox_center.iconbox_large .iconbox_icon i {
  font-size: 8em;
}
/* Process steps
---------------------------------------------------------- */
.process_steps {
  margin-top: 40px;
  margin-bottom: 40px;
}
.process_steps ul {
  position: relative;
  padding: 0;
  margin: 0;
  list-style: none;
}
.process_steps li {
  position: relative;
  padding: 0;
  margin: 0;
}
.process_steps li:before {
  position: absolute;
  display: inline-block;
  content: "";
  border-color: #e5e5e5;
  border-style: dashed;
  border-width: 0;
}
.process_steps li:last-child:before {
  display: none;
}
.process_step_icon {
  position: relative;
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  background-color: white;
  border: 3px solid #e5e5e5;
  border-radius: 100%;
}
.process_step_icon i {
  font-size: 44px;
  color: #bbb;
  vertical-align: middle;
  /*cursor: default;*/
}
.process_step_icon:hover {
  background-color: #3cabce;
}
.process_step_icon:hover i {
  color: #fff;
}
.process_step_icon .icon_image {
  display: table-cell;
  margin: auto;
  vertical-align: middle;
}
/* sizes */
.process_steps_small .process_step_icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
}
.process_steps_small .process_step_icon i {
  font-size: 40px;
}
.process_steps_large .process_step_icon {
  width: 114px;
  height: 114px;
  line-height: 114px;
}
.process_steps_large .process_step_icon i {
  font-size: 50px;
}
/* vertical */
.process_steps_vertical li {
  padding: 0 0 60px 0;
  overflow: hidden;
  clear: both;
}
.process_steps_vertical li:last-child {
  padding-bottom: 0;
}
.process_steps_vertical li:before {
  top: 0;
  left: 53px;
  width: 0;
  height: 100%;
  border-left-width: 1px;
}
.process_steps_vertical .process_step_icon {
  display: inline-block;
  float: left;
}
.process_steps_vertical .process_step_detail {
  padding-left: 30px;
  overflow: hidden;
}
.process_steps_vertical.process_steps_small li:before {
  left: 43px;
}
.process_steps_vertical.process_steps_small li ul.list_outside li:before {
  left: 0;
}
.process_steps_vertical li ul.list_outside li:before {
  border-left-width: 0;
}
.process_steps_vertical li ul.list_outside li {
  padding-bottom: 0;
}
.process_steps_vertical.process_steps_large li:before {
  left: 60px;
}
/* horizontal */
.process_steps_horizontal ul:before,
.process_steps_horizontal ul:after {
  display: table;
  content: " ";
}
.process_steps_horizontal ul:after {
  clear: both;
}
.process_steps_horizontal li:before {
  top: 50px;
  left: 50%;
  width: 100%;
  height: 0;
  border-top-width: 1px;
}
.process_steps_horizontal.process_steps_small li:before {
  top: 40px;
}
.process_steps_horizontal.process_steps_large li:before {
  top: 60px;
}
.process_steps_horizontal li {
  float: left;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: 10px;
  padding-left: 10px;
  text-align: center;

      -ms-box-sizing: border-box;
}
.process_steps_horizontal .process_step_icon {
  display: block;
  margin: 0 auto 30px;
}
.process_steps_horizontal.process_steps_2 li {
  width: 50%;
}
.process_steps_horizontal.process_steps_3 li {
  width: 33.3%;
}
.process_steps_horizontal.process_steps_4 li {
  width: 25%;
}
.process_steps_horizontal.process_steps_5 li {
  width: 20%;
}
/* slogan
---------------------------------------------------------- */
.slogan {
  margin-bottom: 20px;

  *zoom: 1;
}
.slogan:before,
.slogan:after {
  display: table;
  content: "";
}
.slogan:after {
  clear: both;
}
.slogan_with_button .slogan_text {
  float: left;
}
.slogan_text {
  font-size: 36px;
  line-height: 42px;
}
.slogan .theme_button {
  float: right;
}
.slogan .theme_button span {
  font-size: 18px;
}
/* sizes */
.slogan_small .slogan_text {
  font-size: 30px;
  line-height: 37px;
}
.slogan_small .theme_button span {
  font-size: 16px;
}
.slogan_large .slogan_text {
  font-size: 40px;
  line-height: 46px;
}
.slogan_large .theme_button span {
  font-size: 20px;
}
/* ======================================================= */
/*                           Media                         */
/* ======================================================= */
/* Video & Audio
---------------------------------------------------------- */
.video_frame {
  max-width: 100%;
  margin-bottom: 20px;
  font-size: 0;
  line-height: 100%;
}
.audio_frame {
  max-width: 100%;
}
.video_frame .mejs-container, .audio_frame .mejs-container, .video_frame object, .video_frame iframe, .video_frame video, .video_frame audio {
  max-width: 100%;
}
.video_frame > video {
  height: 100%;
}
.mejs-poster img {
  height: 100%;
}
/* Picture Frame
---------------------------------------------------------- */
.picture_frame {
  width: 148px;
  height: 166px;
  margin-bottom: 20px;
  background: url("../images/picture_frame.png") no-repeat scroll 0 0 transparent;
}
.picture_frame img {
  width: 106px;
  height: 126px;
  padding: 20px 21px 20px 21px;
}
/* Gallery
---------------------------------------------------------- */
.gallery {
  display: block;
  margin: 0 auto;
}
.gallery:before,
.gallery:after {
  display: table;
  content: "";
}
.gallery:after {
  clear: both;
}
.gallery .gallery-row {
  display: block;
  margin: 0;
}
.gallery .gallery-row:before,
.gallery .gallery-row:after {
  display: table;
  content: "";
}
.gallery .gallery-row:after {
  clear: both;
}
.gallery .gallery-image {
  visibility: hidden;
  opacity: 0;
}
.gallery .gallery-item {
  float: left;
  padding: 0;
  margin: 0;
  overflow: hidden;
  text-align: center;
  list-style: none;
}
.gallery .gallery-image-wrap {
  position: relative;
  overflow: hidden;
}
.gallery-image-wrap {
  display: block;
}
.gallery-item dt {
  padding: 0;
  margin: 5%;
}
.gallery .gallery-item img, .gallery .gallery-item img.thumbnail {
  display: block;
  /*padding: 1%;
  max-width: 89%;*/
  height: auto;
  margin: 0 auto;
}
.gallery-caption {
  margin-left: 0;
}
/* Image sizes depending on the number of columns */
.gallery .col-0 {
  width: 100%;
}
.gallery .col-1 {
  width: 100%;
}
.gallery .col-2 {
  width: 50%;
}
.gallery .col-3 {
  width: 33.33%;
}
.gallery .col-4 {
  width: 25%;
}
.gallery .col-5 {
  width: 20%;
}
.gallery .col-6 {
  width: 16.66%;
}
.gallery .col-7 {
  width: 14.28%;
}
.gallery .col-8 {
  width: 12.5%;
}
.gallery .col-9 {
  width: 11.11%;
}
.gallery .col-10 {
  width: 10%;
}
.gallery .col-11 {
  width: 9.09%;
}
.gallery .col-12 {
  width: 8.33%;
}
.gallery .col-13 {
  width: 7.69%;
}
.gallery .col-14 {
  width: 7.14%;
}
.gallery .col-15 {
  width: 6.66%;
}
.gallery .col-16 {
  width: 6.25%;
}
.gallery .col-17 {
  width: 5.88%;
}
.gallery .col-18 {
  width: 5.55%;
}
.gallery .col-19 {
  width: 5.26%;
}
.gallery .col-20 {
  width: 5%;
}
.gallery .col-21 {
  width: 4.76%;
}
.gallery .col-22 {
  width: 4.54%;
}
.gallery .col-23 {
  width: 4.34%;
}
.gallery .col-24 {
  width: 4.16%;
}
.gallery .col-25 {
  width: 4%;
}
.gallery .col-26 {
  width: 3.84%;
}
.gallery .col-27 {
  width: 3.7%;
}
.gallery .col-28 {
  width: 3.57%;
}
.gallery .col-29 {
  width: 3.44%;
}
.gallery .col-30 {
  width: 3.33%;
}
/* ======================================================= */
/*                     Advanced Shortcodes                 */
/* ======================================================= */
/* progress_bar
---------------------------------------------------------- */
.progress {
  height: 18px;
  margin-bottom: 10px;
  overflow: hidden;
  background-color: #e5e5e5;
}
.progress_small {
  height: 14px;
}
.progress_large {
  height: 22px;
}
.progress_radius, .progress_radius .progress-meter {
  border-radius: 2px;
}
.progress_round, .progress_round .progress-meter {
  border-radius: 6px;
}
.progress-meter {
  float: left;
  height: 100%;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: 3px;
  font-size: 12px;
  line-height: 1;
  line-height: 18px;
  color: #fff;
  text-align: right;
  background-color: #27acd8;

      -ms-box-sizing: border-box;
}
.progress_small .progress-meter {
  font-size: 10px;
  line-height: 14px;
}
.progress_large .progress-meter {
  font-size: 14px;
  line-height: 22px;
}
/* pie_progress
---------------------------------------------------------- */
.pie_progress_wrap {
  margin-bottom: 20px;
}
.pie_progress {
  width: 150px;
  height: 150px;
  margin: 0 auto;
  font-size: 28px;
  line-height: 150px;
}
.pie_progress_text {
  font-size: 22px;
}
.pie_progress_small .pie_progress_text {
  font-size: 18px;
}
.pie_progress_large .pie_progress_text {
  font-size: 28px;
}
.pie_progress_icon {
  font-size: 48px;
  color: #bbb;
  vertical-align: middle;
}
.pie_progress_small .pie_progress_icon {
  font-size: 38px;
}
.pie_progress_large .pie_progress_icon {
  font-size: 60px;
}
.pie_progress_small .pie_progress {
  width: 120px;
  height: 120px;
  font-size: 22px;
  line-height: 120px;
}
.pie_progress_large .pie_progress {
  width: 180px;
  height: 180px;
  font-size: 34px;
  line-height: 180px;
}
.pie_progress {
  position: relative;
  text-align: center;
}
.pie_progress canvas {
  position: absolute;
  top: 0;
  left: 0;
}
/* Tabs
---------------------------------------------------------- */
.tabs_container {
  margin-bottom: 20px;
}
ul.theme_tabs {
  padding: 0;
  margin: 0;
  list-style: none;
  border-bottom: 1px solid #e5e5e5;

  *zoom: 1;
}

ul.theme_tabs:before,
ul.theme_tabs:after {
  display: table;
  content: "";
}
ul.theme_tabs:after {
  clear: both;
}

ul.theme_tabs li {
  display: inline;
  float: left;
  margin: 0 -1px 0 0;
  border: 1px solid #e5e5e5;
  border-bottom: 0;
}
ul.theme_tabs a {
  display: block;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: bold;
  line-height: 14px;
  color: #777;
  white-space: nowrap;
  background: #fafafa;
}
ul.theme_tabs a:hover {
  text-decoration: none;
  background: #fff;
}
ul.theme_tabs li a.current {
  margin-bottom: -1px;
  color: #444;
  cursor: default;
  background: #fff;
  border-bottom: 1px solid #fff;
}
.tabs_container .theme_panes {
  padding: 10px 15px;
  margin: 0;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-top: 0;
}
.tabs_container .theme_panes > div {
  display: none;
  overflow: hidden;
}
.tabs_container .theme_panes > div:first-child {
  display: block;
}
.tabs_container.tabs_inited .theme_panes > div:first-child {
  display: none;
}
#footer ul.theme_tabs li {
  padding: 0;
  margin: 0 0 -1px 0;
}
#footer ul.theme_tabs, #footer ul.theme_tabs li, #footer .tabs_container .theme_panes {
  border-color: #999;
  border-color: rgba(255, 255, 255, .15);
}
#footer ul.theme_tabs a {
  background: transparent;
}
#footer ul.theme_tabs a:hover, #footer ul.theme_tabs li a.current {
  background-color: transparent;
}
#footer ul.theme_tabs li a.current {
  background-color: rgba(255, 255, 255, .1);
      filter: progid: DXImageTransform.Microsoft.gradient(startColorStr='#19FFFFFF',EndColorStr='#19FFFFFF');

  -ms-filter: "progid: DXImageTransform.Microsoft.gradient(startColorStr='#19FFFFFF',EndColorStr='#19FFFFFF')";
}
#footer .tabs_container .theme_panes {
  padding: 10px 15px;
  color: inherit;
  background: transparent;
}
/* Mini Tabs
---------------------------------------------------------- */
.mini_tabs_container {
  margin-bottom: 20px;
}
ul.theme_mini_tabs {
  position: relative;
  padding: 0;
  margin: 0;
  overflow: hidden;
  list-style: none;
}
ul.theme_mini_tabs li {
  display: inline;
  float: left;
  padding: 0 0 1px;
  margin: 0 6px 0 0;
  border: 1px solid #e5e5e5;
  border-bottom: 0;
  border-top-left-radius: 1px;
  border-top-right-radius: 1px;
}
ul.theme_mini_tabs a {
  display: block;
  padding: 0 10px;
  padding: 4px 10px;
  margin-bottom: 0;
  font-size: 12px;
  font-weight: bold;
  line-height: 20px;
  color: #777;
  white-space: nowrap;
  background: #f5f5f5;
}
ul.theme_mini_tabs a:hover {
  text-decoration: none;
}
ul.theme_mini_tabs li a.current {
  padding-bottom: 5px;
  margin-bottom: 0;
  color: #444;
  cursor: default;
}
.mini_tabs_container .theme_panes {
  padding: 10px 0;
  margin: 0;
  margin-top: -2px;
  border-top: 1px solid #e5e5e5;
}
.mini_tabs_container .theme_panes > div {
  display: none;
  overflow: hidden;
}
.mini_tabs_container .theme_panes > div:first-child {
  display: block;
}
.mini_tabs_container.tabs_inited .theme_panes > div:first-child {
  display: none;
}
#footer ul.theme_mini_tabs {
  padding-bottom: 1px;
  padding-left: 0;
  background: url("../images/footer_list_divider.png") repeat-x scroll left bottom transparent;
}
#footer ul.theme_mini_tabs li {
  padding: 0;
  border: none;
}
#footer ul.theme_mini_tabs a {
  padding: 3px 6px 2px;
  background: transparent;
}
#footer ul.theme_mini_tabs a:hover, #footer ul.theme_mini_tabs li a.current {
  background-color: transparent;
}
#footer ul.theme_mini_tabs li a.current {
  background-color: rgba(255, 255, 255, .1);
      filter: progid: DXImageTransform.Microsoft.gradient(startColorStr='#19FFFFFF',EndColorStr='#19FFFFFF');

  -ms-filter: "progid: DXImageTransform.Microsoft.gradient(startColorStr='#19FFFFFF',EndColorStr='#19FFFFFF')";
}
/* vertical Tabs
---------------------------------------------------------- */
.vertical_tabs_container {
  position: relative;
  margin-bottom: 20px;
  overflow: hidden;
}
ul.theme_vertical_tabs {
  position: relative;
  float: left;
  padding: 0;
  margin: 0;
  list-style: none;
}
ul.theme_vertical_tabs li {
  padding: 0;
  margin: 0;
}
ul.theme_vertical_tabs li:first-child {
  border-top: 1px solid #e5e5e5;
}
ul.theme_vertical_tabs a {
  display: block;
  padding: 0 10px;
  padding: 4px 10px;
  margin-bottom: 0;
  font-size: 12px;
  font-weight: bold;
  line-height: 20px;
  color: #777;
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid #e5e5e5;
  border-top: 0;
  border-right: 0;
}
ul.theme_vertical_tabs li a.current {
  margin-right: -1px;
  color: #444;
  cursor: default;
}
.vertical_tabs_container .theme_panes {
  padding: 10px;
  margin: 0;
  overflow: hidden;
  border: 1px solid #e5e5e5;
  border-radius: 0 2px 2px 2px;
}
.vertical_tabs_container .theme_panes > div {
  display: none;
  overflow: hidden;
}
.vertical_tabs_container .theme_panes > div:first-child {
  display: block;
}
.vertical_tabs_container.tabs_inited .theme_panes > div:first-child {
  display: none;
}
/* Accordion
---------------------------------------------------------- */
.theme_accordion {
  margin-bottom: 20px;
  border: 1px solid #e5e5e5;
}
.theme_accordion .theme_tab {
  padding: 5px 15px;
  margin: 0;
  font-size: 14px;
  font-weight: normal;
  color: #777;
  cursor: pointer;
  background-color: #fafafa;
  border: 1px solid #fff;
  border-bottom: none;
  border-bottom: 1px solid #e5e5e5;
}
/* currently active header */
.theme_accordion .theme_tab.current {
  color: #444;
  cursor: default;
  background-color: #fefefe;
  border-bottom-color: transparent;
}
/* accordion pane */
.theme_accordion .theme_pane {
  display: none;
  padding: 10px 15px;
  overflow: hidden;
  font-size: 12px;
  border-bottom: 1px solid #e5e5e5;
}
.theme_accordion .theme_tab:nth-last-child(2) {
  border-bottom: none;
}
.theme_accordion .theme_pane:last-child {
  border-bottom: none;
}
#footer .theme_accordion .theme_tab {
  background: transparent;
  border: none;
}
#footer .theme_accordion .theme_tab:nth-last-child(2) {
  border-bottom: none;
}
#footer .theme_accordion .theme_tab.current {
  background-color: rgba(255, 255, 255, .1);
      filter: progid: DXImageTransform.Microsoft.gradient(startColorStr='#19FFFFFF',EndColorStr='#19FFFFFF');
  border-bottom: none;

  -ms-filter: "progid: DXImageTransform.Microsoft.gradient(startColorStr='#19FFFFFF',EndColorStr='#19FFFFFF')";
}
#footer .theme_accordion .theme_pane:last-child {
  border-top: none;
}
#footer .theme_accordion, #footer .theme_accordion .theme_tab, #footer .theme_accordion .theme_pane {
  border-color: #999;
  border-color: rgba(255, 255, 255, .15);
}
/* Toggle
---------------------------------------------------------- */
.toggle {
  position: relative;
  margin-bottom: 10px;
}
.toggle_title {
  padding: 5px 10px;
  margin: 0;
  font-size: 14px;
  line-height: 14px;
  cursor: pointer;
}
.toggle_icon {
  font-family: 'themeicons';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-decoration: none;
  text-transform: none;
  vertical-align: top;
  opacity: .6;

  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.toggle_icon:before {
  margin: 0 .6em 0 0;
  content: "\e641";
}
.toggle_active .toggle_icon:before {
  content: "\e642";
}
.toggle_content {
  display: none;
  padding: 10px;
  padding-left: 25px;
  margin-top: 5px;
  margin-left: 5px;
}
.toggle_right {
  text-align: right;
}
.toggle_right .toggle_icon {
  float: right;
}
.toggle_right .toggle_icon:before {
  margin: 0 0 0 .6em;
}
.toggle_right .toggle_content {
  padding: 10px 25px 10px 10px;
  margin-right: 5px;
  margin-left: 0;
}
/* Carousel
---------------------------------------------------------- */
.carousel_wrap {
  margin-bottom: 20px;
}
.carousel_heading {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.8em;
  border-bottom: 1px solid #eee;
}
.carousel_heading:before,
.carousel_heading:after {
  display: table;
  content: "";
}
.carousel_heading:after {
  clear: both;
}
.carousel-wrap {
  margin: 0 auto;
}
.carousel-items {
  text-align: center;
}
.carousel {
  overflow: hidden;
}
.carousel > ul {
  position: relative;
  width: 49999px;
  padding: 0;
  margin: 0;
  overflow: hidden;
  list-style-type: none;
}
.carousel > ul > li {
  float: left;
  padding: 0;
  margin: 0;
  list-style: none;
}
.carousel a {
  display: block;
  font: 0/a;
  font-size: 0;
  color: transparent;
  background-color: transparent;
}
.carousel img {
  display: block;
  width: 100%;
}
.carousel_loading {
  background: url("../images/loading.gif") #f9f9f9 no-repeat 50% 50%;
}
.carousel_title {
  float: left;
}
.carousel_title h2 {
  margin-bottom: 10px;
}
/* nav */
.carousel_nav {
  float: right;
}
.carousel_nav_prev,
.carousel_nav_next {
  display: inline-block;
  margin-left: 10px;
  color: #b8b8b8 !important;
}
.carousel_nav_prev:hover,
.carousel_nav_next:hover {
  color: #8d8d8d !important;
}
.carousel_nav_prev,
.carousel_nav_next {
  font-family: 'themeicons';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-decoration: none;
  text-transform: none;

  speak: none;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.carousel_nav_prev:before,
.carousel_nav_next:before {
  line-height: 1;
}
.carousel_nav_prev:before {
  content: "\e64a";
}
.carousel_nav_next:after {
  content: "\e649";
}
.carousel_moving {
  pointer-events: none !important;
}
/* Masonry
---------------------------------------------------------- */
.masonry_items {
  display: block;
  padding: 0;
  margin: 0;
  margin-right: -20px;
  letter-spacing: -4px;  /* remvoe the gap */
  word-spacing: -4px;  /* remvoe the gap */
  list-style-type: none;
}
.masonry_item {
  position: relative;
  display: -moz-inline-box;  /* mozilla only */
  display: inline-block;  /* for browsers that support display: inline-block*/
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  padding: 15px;
  margin: 0 20px 20px 0;
  letter-spacing: normal;  /* remvoe the gap */
  word-spacing: normal;  /* remvoe the gap */
  vertical-align: top;
  border: 1px solid #e5e5e5;
}
.masonry_item_image {
  position: relative;
}
.masonry_item_image_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
      filter: alpha(opacity=0);
  opacity: 0;
  -webkit-transition: all .5s ease;
       -o-transition: all .5s ease;
          transition: all .5s ease;

  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}
.lt-ie9 .masonry_item_image_overlay:before {
  display: none;
}
.masonry_item_image_overlay:before {
  position: absolute;
  top: 50%;
  width: 100%;
  margin-top: -25px;
  font-family: 'themeicons';
  font-size: 50px;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1;
  color: #fff;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  content: "\e617";

  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.masonry_item_image_overlay:hover {
      filter: alpha(opacity=60);
  opacity: .6;

  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
}
.masonry_isotope .masonry_items, .masonry_isotope .masonry_item {
  margin-right: 0;
}
.masonry_item_title {
  margin-bottom: 0;
}
.masonry_with_title_desc .masonry_item_title {
  margin-bottom: 8px;
}
.masonry_item_desc p {
  margin-bottom: 0;
}
.masonry_item_image {
  margin: -16px -16px 16px;
}
.masonry_only_image .masonry_item_image {
  margin: -16px;
}
.masonry_item_image img {
  display: block;
  width: 100%;
}
.masonry_column_2 .masonry_item {
  width: 470px;
}
.masonry_column_3 .masonry_item {
  width: 306.5px;
}
.masonry_column_4 .masonry_item {
  width: 225px;
}
.masonry_column_5 .masonry_item {
  width: 176px;
}
.right_sidebar .masonry_column_2 .masonry_item, .left_sidebar .masonry_column_2 .masonry_item {
  width: 305px;
}

.right_sidebar .masonry_column_3 .masonry_item, .left_sidebar .masonry_column_3 .masonry_item {
  width: 196.5px;
}
.right_sidebar .masonry_column_4 .masonry_item, .left_sidebar .masonry_column_4 .masonry_item {
  width: 142.5px;
}
.right_sidebar .masonry_column_5 .masonry_item, .left_sidebar .masonry_column_5 .masonry_item {
  width: 110px;
}
/* Testimonials
---------------------------------------------------------- */
.testimonials {
  position: relative;
  margin-bottom: 20px;
}
.testimonial {
  overflow: hidden;
}
.testimonial_content {
  position: relative;
  padding: 20px 20px 20px;
  margin-bottom: 15px;
  color: #777;
  background-color: #fafafa;
  border: 1px solid #e5e5e5;
  border-radius: 3px;
}
.testimonial_content:after {
  position: absolute;
  bottom: -14px;
  left: 32px;
  width: 0;
  height: 0;
  content: "";
  border-color: #e5e5e5 transparent transparent;
  border-style: solid;
  border-width: 7px;
}
.testimonial_author {
  display: inline-block;
  display: inline;
  float: left;
  overflow: hidden;

  *zoom: 1;
}
img.testimonial_avatar {
  float: left;
  width: 60px;
  height: 60px;
  margin-left: 10px;
  border-radius: 60px;
}
.testimonial_name {
  display: block;
  margin: 5px 10px 5px 85px;
  font-size: 18px;
  color: #333;
}

.testimonial_meta {
  display: block;
  margin: 5px 10px 10px 85px;
  font-size: 14px;
  color: #777;
}
.testimonial_nav {
  position: absolute;
  right: 0;
  bottom: 40px;
  display: inline-block;
}
.testimonial_previous,
.testimonial_next {
  margin-left: 10px;
  font-family: 'themeicons';
  font-size: 16px;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1;
  color: #b8b8b8;
  text-decoration: none !important;
  text-transform: none;

  speak: none;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.testimonial_previous:hover,
.testimonial_next:hover {
  color: #8d8d8d;
}
.testimonial_previous:before {
  content: "\e64a";
}
.testimonial_next:before {
  content: "\e649";
}
