/* Table of Contents
==================================================
	#General
	#Header
	#Content
	#Comments
	#Widgets
	#Shortcodes
	#Footer
	#Misc */
/* #General
================================================== */
body {
  position: relative;
}
.ie8 body {
  min-width: 980px;
}
a {
  outline: none;
}
a:focus {
  outline: none;
}
.main-holder {
  position: relative;
  z-index: 1;
}
/* #Header
================================================== */
.header {
  position: relative;
  z-index: 99;
  padding: 30px 0;
  border-bottom: 1px solid #dbdbdb;
  background: #eee;
}
/* Logo
---------------------------------------- */
.logo {
  position: relative;
  z-index: 99;
}
@media (min-width: 768px) and (max-width: 979px) {
  .logo {
    width: 60%;
  }
}
.logo_h__txt {
  margin: 0;
}
.logo_link {
  color: #049cdb;
  text-decoration: none;
}
.logo_link:hover {
  text-decoration: none;
}
.logo_tagline {
  text-transform: uppercase;
  font-size: 10px;
}
/* /Logo */

/* Search Form
---------------------------------------- */
.search-form form {
  position: relative;
}
.search-form_it {
  vertical-align: top;
}
.search-form_is {
  vertical-align: top;
}
@media (min-width: 768px) and (max-width: 979px) {
  .sidebar .search-form_it {
    width: 130px;
  }
}
/* /Search Form */
/* #Navigation
---------------------------------------- */
.nav__primary {
  position: relative;
  z-index: 2;
}
/* Essential styles for dropdown menu */
.sf-menu,
.sf-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}
.sf-menu {
  line-height: 1.0;
}
.sf-menu ul {
  display: none;
  position: absolute;
  top: -999em;
  width: 10em;
  /* left offset of submenus need to match (see below) */

}
.sf-menu ul li {
  width: 100%;
}
.sf-menu li:hover {
  visibility: inherit;
  /* fixes IE7 'sticky bug' */

}
.sf-menu li {
  position: relative;
  float: left;
}
.sf-menu a {
  position: relative;
  display: block;
}
.sf-menu li:hover ul,
.sf-menu li.sfHover ul {
  top: 100%;
  /* match top ul list item height */

  left: 0;
  z-index: 99;
}
ul.sf-menu li:hover li ul,
ul.sf-menu li.sfHover li ul {
  top: -999em;
}
ul.sf-menu li li:hover ul,
ul.sf-menu li li.sfHover ul {
  top: 0;
  left: 100%;
  /* match ul width */

}
ul.sf-menu li li:hover li ul,
ul.sf-menu li li.sfHover li ul {
  top: -999em;
}
ul.sf-menu li li li:hover ul,
ul.sf-menu li li li.sfHover ul {
  top: 0;
  left: 10em;
  /* match ul width */

}
/* Our skin for dropdown menu */
.sf-menu {
  float: right;
}
.sf-menu > li {
  background: #ddd;
  text-align: center;
}
.sf-menu > li > a {
  padding: 10px 12px;
  border-top: 1px solid #eee;
  border-left: 1px solid #fff;
  color: #13a;
  text-decoration: none;
}
.sf-menu li .desc {
  display: block;
  font-size: 0.9em;
}
.sf-menu li li {
  background: #AABDE6;
}
.sf-menu li li a {
  padding: 10px 12px;
  border-top: 1px solid #eee;
  border-left: 1px solid #fff;
  color: #13a;
  text-decoration: none;
}
.sf-menu > li > a:hover,
.sf-menu > li.sfHover > a,
.sf-menu > li.current-menu-item > a {
  background: #CFDEFF;
}
.sf-menu li li > a:hover,
.sf-menu li li.sfHover > a,
.sf-menu li li.current-menu-item > a {
  background: #CFDEFF;
}
/*** arrows **/
.sf-menu a.sf-with-ul {
  padding-right: 2.25em;
  min-width: 1px;
  /* trigger IE7 hasLayout so spans position accurately */

}
.sf-sub-indicator {
  position: absolute;
  top: 1.05em;
  /* IE6 only */

  right: .75em;
  display: block;
  overflow: hidden;
  width: 10px;
  height: 10px;
  background: url(../images/arrows-ffffff.png) no-repeat -10px -100px;
  /* 8-bit indexed alpha png. IE6 gets solid image only */

  text-indent: -999em;
}
a > .sf-sub-indicator {
  background-position: 0 -100px;
  /* use translucent arrow for modern browsers*/
  /* give all except IE6 the correct values */

  top: .8em;
}
/* apply hovers to modern browsers */
a:focus > .sf-sub-indicator,
a:hover > .sf-sub-indicator,
a:active > .sf-sub-indicator,
li:hover > a > .sf-sub-indicator,
li.sfHover > a > .sf-sub-indicator {
  background-position: -10px -100px;
  /* arrow hovers for modern browsers*/

}
/* point right for anchors in subs */
.sf-menu ul .sf-sub-indicator {
  background-position: -10px 0;
}
.sf-menu ul a > .sf-sub-indicator {
  background-position: 0 0;
}
/* apply hovers to modern browsers */
.sf-menu ul a:focus > .sf-sub-indicator,
.sf-menu ul a:hover > .sf-sub-indicator,
.sf-menu ul a:active > .sf-sub-indicator,
.sf-menu ul li:hover > a > .sf-sub-indicator,
.sf-menu ul li.sfHover > a > .sf-sub-indicator {
  background-position: -10px 0;
  /* arrow hovers for modern browsers*/

}
/* Landscape phone to portrait tablet */
@media (max-width: 767px) {
  .sf-menu {
    display: none;
  }
}
/* Navigation select styling */
.select-menu {
  display: none;
  border: 1px solid #c8c8c8;
  background-color: #e4e4e4;
  width: 100%;
  height: 30px;
  padding: 5px;
  margin: 0;
  cursor: pointer;
  outline: none;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.select-menu:focus {
  border-color: #999;
}
.select-menu option {
  padding: 5px;
  cursor: pointer;
}
.select-menu option.main_item {
  font-weight: bold;
}
/* Slider
================================================== */
.slider {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin: 0;
  padding: 0;
  min-height: 147px;
}
/* #Content
================================================== */
.content-holder {
  position: relative;
  z-index: 1;
  padding-bottom: 50px;
}
#content {
  padding-top: 40px;
}
#content.left {
  position: relative;
  z-index: 9;
  float: right !important;
  margin-bottom: 40px;
}
/* Title
---------------------------------------- */
.title-section {
  padding: 20px 0 0;
}
.title-header {
  overflow: hidden;
  margin-bottom: 1em;
}
.title-desc {
  display: block;
  color: #999;
  font-size: 11px;
}

/* #Pages
================================================== */

}
/* 404 Error Page
---------------------------------------- */
.error404-holder {
  padding: 30px 0 100px 0;
}
.error404-holder_num {
  color: #0088cc;
  text-align: center;
  font-size: 250px;
  line-height: 1.2em;
  /* Landscape phones and down */

}
@media (max-width: 480px) {
  .error404-holder_num {
    font-size: 120px;
  }
}
.error404-holder hgroup {
  margin: 0 0 2em 0;
  padding-top: 50px;
}
.error404-holder hgroup h1 {
  margin-bottom: .2em;
  font-size: 3em;
}

/*/ #Footer
================================================== */
.footer {
  position: relative;
  z-index: 100;
  padding: 20px 0;
  border-top: 1px solid #dbdbdb;
  background: #fafafa;
}
/* Footer widget */
/* Footer navigation */
nav.footer-nav {
  float: right;
  overflow: hidden;
}
@media (min-width: 768px) and (max-width: 979px) {
  nav.footer-nav {
    float: none;
  }
}
@media (max-width: 767px) {
  nav.footer-nav {
    float: none;
  }
}
nav.footer-nav ul {
  margin: 0;
  padding: 0;
  float: right;
}
@media (min-width: 768px) and (max-width: 979px) {
  nav.footer-nav ul {
    float: none;
    text-align: center;
  }
}
@media (max-width: 767px) {
  nav.footer-nav ul {
    float: none;
    text-align: center;
  }
}
nav.footer-nav ul .sub-menu {
  display: none;
}
nav.footer-nav ul li {
  float: left;
  margin: 0;
  padding-left: 15px;
  list-style-type: none;
}
@media (min-width: 768px) and (max-width: 979px) {
  nav.footer-nav ul li {
    float: none;
    display: inline;
    padding: 0 10px;
  }
}
@media (max-width: 767px) {
  nav.footer-nav ul li {
    float: none;
    display: inline;
    padding: 0 5px;
  }
}
nav.footer-nav ul li a {
  text-decoration: none;
}
nav.footer-nav ul li a:hover {
  color: #00334d;
  text-decoration: none;
}
nav.footer-nav ul li.current-menu-item a {
  text-decoration: underline;
}
/* Copyright */
.copyright {
  padding: 10px 0;
}
/* Footer text */
.footer-text {
  float: left;
}
@media (max-width: 767px) {
  .footer-text {
    float: none;
    text-align: center;
    margin-bottom: 20px;
  }
}


/* #General
================================================== */
html,
body {
  min-height: 100%;
}
body {
  background: url(../images/bg.jpg) 50% 0 repeat;
}
a {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a:hover {
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}
h1 {
  border-bottom: 1px solid #ebf2f7;
  padding-bottom: 17px;
  margin-bottom: 15px;
}
h3 {
  margin: 0 0 12px;
}
h4,
h5 {
  margin-bottom: 3px;
}
/* #Header
================================================== */
.header {
  padding: 52px 0 0 0;
  border: none;
  background: url(../images/header_top.jpg) 0 0 repeat-x;
}
.hidden-phone {
  position: absolute;
  width: 300px;
  top: -20px;
  right: 0;
  z-index: 5;
}
#facebook_h {
  margin-top: 8px;
  padding: 10px 0 0 95px;
  float: right;
  width: 200px;
  font-size: 17px;
  line-height: 17px;
  color: #9a9e9f;
}
/*/ Header */
/* Logo
---------------------------------------- */
.logo {
  margin-bottom: 27px;
}
.logo_h__txt a {
  font: 62px/62px 'Salsa', cursive;
  color: #528cba;
}
.logo_tagline {
  display: none;
}
@media (max-width: 767px) {
  .logo {
    float: none;
    text-align: center;
  }
  #twitter_h {
    display: none;
  }
  #facebook_h {
    display: none;
  }
}
/*/ Logo */
/* Navigation (Menu) 
================================================== */
.nav__primary {
  margin: 0;
  padding: 2px 2px 20px 2px;
  background: #fff;
  -webkit-border-top-left-radius: 8px;
  -moz-border-radius-topleft: 8px;
  border-top-left-radius: 8px;
  -webkit-border-top-right-radius: 8px;
  -moz-border-radius-topright: 8px;
  border-top-right-radius: 8px;
}
#topnav {
  width: 100%;
  border-bottom: 1px solid #e5eef4;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  background-color: #f6fafd;
  background-image: -moz-linear-gradient(top, #fafdff, #f1f6f9);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fafdff), to(#f1f6f9));
  background-image: -webkit-linear-gradient(top, #fafdff, #f1f6f9);
  background-image: -o-linear-gradient(top, #fafdff, #f1f6f9);
  background-image: linear-gradient(to bottom, #fafdff, #f1f6f9);
  background-repeat: repeat-x;
}
#topnav li {
  display: block;
  height: 100%;
  background: none;
  border-right: 1px solid #d1e2ed;
}
#topnav li a {
  padding: 24px 18px;
  font-size: 19px;
  border: none;
}
#topnav li .sub-menu {
  margin-top: 2px;
  text-align: left;
  background: #7edbfd;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  z-index: 5;
}
#topnav li .sub-menu li {
  border: none;
  border-top: 1px dashed #e5edf4;
  background: none;
}
#topnav li .sub-menu li a {
  display: block;
  padding: 5px 12px !important;
  font-size: 13px;
  white-space: nowrap;
  color: #fff;
  padding: 0;
}
#topnav li .sub-menu li a:hover {
  color: #50a1bf;
  background: none;
}
#topnav li .sub-menu li.sfHover > a,
#topnav li .sub-menu li.current-menu-item > a {
  color: #fc8a58;
  background: none;
}
#topnav li .sub-menu li:first-child {
  border: none;
}
#topnav li .sub-menu .sub-menu {
  margin-top: 0px;
}
#topnav li.current-menu-item > a,
#topnav li.sfHover > a,
#topnav li a:hover {
  color: #fff;
  background: #76d6f9;
}
#topnav .sf-sub-indicator {
  top: 45%;
  right: 5px;
  background: url(../images/arrows-ffffff.png) no-repeat scroll -10px -100px transparent;
}
#topnav > li:first-child.current-menu-item > a,
#topnav > li:first-child.sfHover > a,
#topnav > li:first-child a:hover {
  -webkit-border-top-left-radius: 8px;
  -moz-border-radius-topleft: 8px;
  border-top-left-radius: 8px;
  -webkit-border-bottom-left-radius: 8px;
  -moz-border-radius-bottomleft: 8px;
  border-bottom-left-radius: 8px;
}
/*/ Navigation (Menu) */
/* Slider 
================================================== */
.slider {
  padding: 0 0 20px;
  background: #FFF;
}
.slider > .container {
  overflow: hidden;
  width: auto;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
}
.slider h1 {
  font-size: 30px;
  line-height: 30px;
  letter-spacing: -1px;
  color: #fc8a58;
  border: none;
  padding: 0;
  margin-bottom: 15px;
}
.slider time {
  display: block;
  color: #fff;
  margin-bottom: 10px;
  padding-top: 28px;
  width: 122px;
  height: 38px;
  text-align: center;
  font-size: 17px;
  line-height: 17px;
  background: url(../images/slider_date_plane.png) 0 0 no-repeat;
}
.slider .camera_wrap {
  margin: 0 !important;
}
.slider .camera .camera_next {
  left: 80px;
}
.slider .camera .camera_commands {
  left: 40px;
}

.with_sliderplane {
  background: url(../images/slider_plane.png) 100% 0 no-repeat;
}

.slider .camera .camera_target_content .camera_caption {
  margin-bottom: 70px;
  right: 15px;
  width: 305px;
  font-size: 12px;
  line-height: 18px;
  color: #86b4d9;
}
.slider .camera .camera_target_content .camera_caption > div {
  background: none;
}
.slider .camera .camera_pag {
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 305px;
}
.slider .camera .camera_pag li {
  width: 29px;
  height: 28px;
  margin: 0 2px 0;
  border-radius: 0px;
  background: url(images/camera_pag_item.png) 0 0 no-repeat;
}
.slider .camera .camera_pag li span {
  top: 0;
  left: 0;
  width: 29px;
  height: 28px;
  border-radius: 0px;
  background: url(../images/camera_pag_item_point.png) 0 0 no-repeat;
}
.slider .camera .camera_pag li.cameracurrent span,
.slider .camera .camera_pag li:hover span {
  background: none;
}
@media (min-width: 1200px) {
  .slider h1 {
    font-size: 37px;
    line-height: 37px;
    margin-bottom: 17px;
  }
  .slider .camera .camera_target_content .camera_caption {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (min-width: 768px) and (max-width: 979px) {
  .slider h1 {
    font-size: 22px;
    line-height: 22px;
    margin-bottom: 10px;
  }
  .slider time {
    display: none;
  }
  .slider .camera .camera_target_content .camera_caption {
    font-size: 12px;
    line-height: 15px;
  }
}
@media (max-width: 767px) {
  .slider .camera .camera_target_content {
    display: none;
  }
  .slider .camera .camera_pag {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .slider {
    display: none;
  }
}
/* Slider */
/* #Content
================================================== */
.content-holder {
  background: #fff;
  width: 980px;
  margin: 0 auto;
  padding-bottom: 20px !important;
}
.footer {
  width: 980px;
}
#nav_h {
  margin: 0 auto 0 -20px;
  width: 980px;
}
@media (min-width: 1230px) {
  #nav_h,
  .content-holder,
  .footer {
    width: 1210px;
  }
  #topnav > li > a {
    font-size: 25px;
  }
}
@media (min-width: 1200px) and (max-width: 1230px) {
  #nav_h,
  .content-holder,
  .footer {
    width: 100%;
  }
  #nav_h {
    margin: 0 auto;
  }
  #topnav > li > a {
    font-size: 22px;
  }
}
@media (min-width: 979px) and (max-width: 997px) {
  #nav_h,
  .content-holder,
  .footer {
    width: 100%;
  }
  #nav_h {
    margin: 0 auto;
  }
  #topnav > li > a {
    font-size: 17px;
  }
}
@media (min-width: 768px) and (max-width: 979px) {
  #nav_h,
  .content-holder,
  .footer {
    width: 764px;
  }
  #nav_h {
    margin: 0 auto 0 -20px;
  }
  #topnav > li > a {
    font-size: 14px;
  }
}
@media (max-width: 781px) {
  #nav_h,
  .content-holder,
  .footer {
    width: 100%;
  }
  #nav_h {
    margin: 0 auto;
  }
  #topnav > li > a {
    font-size: 12px;
  }
}
#content {
  margin-top: 0;
  padding-top: 0;
  margin-bottom: 10px;
  z-index: 3;
}
#back-top-wrapper a span {
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  width: 45px;
  height: 35px;
  opacity: .5;
  background: url(images/back-top-icon.jpg) 0 0 no-repeat;
}
#back-top-wrapper a:hover span {
  opacity: 1;
}
.content-holder {
  padding-bottom: 0px;
}
.btn,
.slider .btn,
.previous a,
.next a,
.last a,
.first a,
.prev a {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  color: #ffffff;
  text-shadow: none;
  background-color: #becc06;
  background-image: -moz-linear-gradient(top, #c4d208, #b5c302);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#c4d208), to(#b5c302));
  background-image: -webkit-linear-gradient(top, #c4d208, #b5c302);
  background-image: -o-linear-gradient(top, #c4d208, #b5c302);
  background-image: linear-gradient(to bottom, #c4d208, #b5c302);
  background-repeat: repeat-x;
  border-color: #b5c302 #b5c302 #6f7701;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  *background-color: #b5c302;
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */

  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  border: none;
  padding: 8px 10px;
  font: 12px Arial, Helvetica, sans-serif;
  border-style: none;
  border-bottom: 1px solid #a5b102;
}
.btn:hover,
.slider .btn:hover,
.previous a:hover,
.next a:hover,
.last a:hover,
.first a:hover,
.prev a:hover,
.btn:active,
.slider .btn:active,
.previous a:active,
.next a:active,
.last a:active,
.first a:active,
.prev a:active,
.btn.active,
.slider .btn.active,
.previous a.active,
.next a.active,
.last a.active,
.first a.active,
.prev a.active,
.btn.disabled,
.slider .btn.disabled,
.previous a.disabled,
.next a.disabled,
.last a.disabled,
.first a.disabled,
.prev a.disabled,
.btn[disabled],
.slider .btn[disabled],
.previous a[disabled],
.next a[disabled],
.last a[disabled],
.first a[disabled],
.prev a[disabled] {
  color: #ffffff;
  background-color: #b5c302;
  *background-color: #9eaa02;
}
.btn:active,
.slider .btn:active,
.previous a:active,
.next a:active,
.last a:active,
.first a:active,
.prev a:active,
.btn.active,
.slider .btn.active,
.previous a.active,
.next a.active,
.last a.active,
.first a.active,
.prev a.active {
  background-color: #869101 \9;
}
.btn:hover,
.slider .btn:hover,
.previous:hover a,
.next a:hover,
.last a:hover,
.first a:hover,
.prev a:hover {
  text-decoration: none;
  color: #ffffff;
  text-shadow: none;
  background-color: #daea06;
  background-image: -moz-linear-gradient(top, #e0ef09, #d1e102);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#e0ef09), to(#d1e102));
  background-image: -webkit-linear-gradient(top, #e0ef09, #d1e102);
  background-image: -o-linear-gradient(top, #e0ef09, #d1e102);
  background-image: linear-gradient(to bottom, #e0ef09, #d1e102);
  background-repeat: repeat-x;
  border-color: #d1e102 #d1e102 #8b9602;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  *background-color: #d1e102;
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */

  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.btn:hover:hover,
.slider .btn:hover:hover,
.previous:hover a:hover,
.next a:hover:hover,
.last a:hover:hover,
.first a:hover:hover,
.prev a:hover:hover,
.btn:hover:active,
.slider .btn:hover:active,
.previous:hover a:active,
.next a:hover:active,
.last a:hover:active,
.first a:hover:active,
.prev a:hover:active,
.btn:hover.active,
.slider .btn:hover.active,
.previous:hover a.active,
.next a:hover.active,
.last a:hover.active,
.first a:hover.active,
.prev a:hover.active,
.btn:hover.disabled,
.slider .btn:hover.disabled,
.previous:hover a.disabled,
.next a:hover.disabled,
.last a:hover.disabled,
.first a:hover.disabled,
.prev a:hover.disabled,
.btn:hover[disabled],
.slider .btn:hover[disabled],
.previous:hover a[disabled],
.next a:hover[disabled],
.last a:hover[disabled],
.first a:hover[disabled],
.prev a:hover[disabled] {
  color: #ffffff;
  background-color: #d1e102;
  *background-color: #bac802;
}
.btn:hover:active,
.slider .btn:hover:active,
.previous:hover a:active,
.next a:hover:active,
.last a:hover:active,
.first a:hover:active,
.prev a:hover:active,
.btn:hover.active,
.slider .btn:hover.active,
.previous:hover a.active,
.next a:hover.active,
.last a:hover.active,
.first a:hover.active,
.prev a:hover.active {
  background-color: #a2af02 \9;
}
.next a,
.last a,
.first a,
.prev a {
  color: #fff !important;
  padding: 4px 8px !important;
  margin: 0 4px;
}
.btn.type2 {
  color: #ffffff;
  text-shadow: none;
  background-color: #78d7fa;
  background-image: -moz-linear-gradient(top, #7fdbfd, #6ed1f6);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#7fdbfd), to(#6ed1f6));
  background-image: -webkit-linear-gradient(top, #7fdbfd, #6ed1f6);
  background-image: -o-linear-gradient(top, #7fdbfd, #6ed1f6);
  background-image: linear-gradient(to bottom, #7fdbfd, #6ed1f6);
  background-repeat: repeat-x;
  border-color: #6ed1f6 #6ed1f6 #26baf2;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  *background-color: #6ed1f6;
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */

  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  border-bottom: 1px solid #63bee0;
}
.btn.type2:hover,
.btn.type2:active,
.btn.type2.active,
.btn.type2.disabled,
.btn.type2[disabled] {
  color: #ffffff;
  background-color: #6ed1f6;
  *background-color: #56c9f5;
}
.btn.type2:active,
.btn.type2.active {
  background-color: #3ec2f3 \9;
}
.btn.type2:hover {
  color: #ffffff;
  text-shadow: none;
  background-color: #96e0fb;
  background-image: -moz-linear-gradient(top, #9de3fd, #8bdaf8);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#9de3fd), to(#8bdaf8));
  background-image: -webkit-linear-gradient(top, #9de3fd, #8bdaf8);
  background-image: -o-linear-gradient(top, #9de3fd, #8bdaf8);
  background-image: linear-gradient(to bottom, #9de3fd, #8bdaf8);
  background-repeat: repeat-x;
  border-color: #8bdaf8 #8bdaf8 #43c3f3;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  *background-color: #8bdaf8;
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */

  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.btn.type2:hover:hover,
.btn.type2:hover:active,
.btn.type2:hover.active,
.btn.type2:hover.disabled,
.btn.type2:hover[disabled] {
  color: #ffffff;
  background-color: #8bdaf8;
  *background-color: #73d3f6;
}
.btn.type2:hover:active,
.btn.type2:hover.active {
  background-color: #5bcbf5 \9;
}
.btn.type3 {
  color: #ffffff;
  text-shadow: none;
  background-color: #f98451;
  background-image: -moz-linear-gradient(top, #fc8a58, #f57c47);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fc8a58), to(#f57c47));
  background-image: -webkit-linear-gradient(top, #fc8a58, #f57c47);
  background-image: -o-linear-gradient(top, #fc8a58, #f57c47);
  background-image: linear-gradient(to bottom, #fc8a58, #f57c47);
  background-repeat: repeat-x;
  border-color: #f57c47 #f57c47 #e34e0c;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  *background-color: #f57c47;
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */

  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  border-bottom: 1px solid #df7140;
}
.btn.type3:hover,
.btn.type3:active,
.btn.type3.active,
.btn.type3.disabled,
.btn.type3[disabled] {
  color: #ffffff;
  background-color: #f57c47;
  *background-color: #f46b2f;
}
.btn.type3:active,
.btn.type3.active {
  background-color: #f25a17 \9;
}
.btn.type3:hover {
  color: #ffffff;
  text-shadow: none;
  background-color: #fa996f;
  background-image: -moz-linear-gradient(top, #fd9f76, #f79164);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fd9f76), to(#f79164));
  background-image: -webkit-linear-gradient(top, #fd9f76, #f79164);
  background-image: -o-linear-gradient(top, #fd9f76, #f79164);
  background-image: linear-gradient(to bottom, #fd9f76, #f79164);
  background-repeat: repeat-x;
  border-color: #f79164 #f79164 #f35d1b;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  *background-color: #f79164;
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */

  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.btn.type3:hover:hover,
.btn.type3:hover:active,
.btn.type3:hover.active,
.btn.type3:hover.disabled,
.btn.type3:hover[disabled] {
  color: #ffffff;
  background-color: #f79164;
  *background-color: #f57f4c;
}
.btn.type3:hover:active,
.btn.type3:hover.active {
  background-color: #f46e34 \9;
}
.slider .btn {
  font: 17px Arial, Helvetica, sans-serif;
  margin-top: 22px;
  color: #ffffff;
  text-shadow: none;
  background-color: #78d7fa;
  background-image: -moz-linear-gradient(top, #7fdbfd, #6ed1f6);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#7fdbfd), to(#6ed1f6));
  background-image: -webkit-linear-gradient(top, #7fdbfd, #6ed1f6);
  background-image: -o-linear-gradient(top, #7fdbfd, #6ed1f6);
  background-image: linear-gradient(to bottom, #7fdbfd, #6ed1f6);
  background-repeat: repeat-x;
  border-color: #6ed1f6 #6ed1f6 #26baf2;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  *background-color: #6ed1f6;
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */

  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.slider .btn:hover,
.slider .btn:active,
.slider .btn.active,
.slider .btn.disabled,
.slider .btn[disabled] {
  color: #ffffff;
  background-color: #6ed1f6;
  *background-color: #56c9f5;
}
.slider .btn:active,
.slider .btn.active {
  background-color: #3ec2f3 \9;
}
.slider .btn:hover {
  color: #ffffff;
  text-shadow: none;
  background-color: #96e0fb;
  background-image: -moz-linear-gradient(top, #9de3fd, #8bdaf8);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#9de3fd), to(#8bdaf8));
  background-image: -webkit-linear-gradient(top, #9de3fd, #8bdaf8);
  background-image: -o-linear-gradient(top, #9de3fd, #8bdaf8);
  background-image: linear-gradient(to bottom, #9de3fd, #8bdaf8);
  background-repeat: repeat-x;
  border-color: #8bdaf8 #8bdaf8 #43c3f3;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  *background-color: #8bdaf8;
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */

  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.slider .btn:hover:hover,
.slider .btn:hover:active,
.slider .btn:hover.active,
.slider .btn:hover.disabled,
.slider .btn:hover[disabled] {
  color: #ffffff;
  background-color: #8bdaf8;
  *background-color: #73d3f6;
}
.slider .btn:hover:active,
.slider .btn:hover.active {
  background-color: #5bcbf5 \9;
}
.thumbnail {
  border: 1px solid #ebf1f7;
  box-shadow: none;
  padding: 7px;
  background: #fafdfd;
}
.breadcrumb {
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  background-color: #f6fafd;
  background-image: -moz-linear-gradient(top, #fafdff, #f1f6f9);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fafdff), to(#f1f6f9));
  background-image: -webkit-linear-gradient(top, #fafdff, #f1f6f9);
  background-image: -o-linear-gradient(top, #fafdff, #f1f6f9);
  background-image: linear-gradient(to bottom, #fafdff, #f1f6f9);
  background-repeat: repeat-x;
  border: 1px solid #e5eef4;
  margin-bottom: 30px;
  color: #7edafd;
}
.breadcrumb .divider {
  color: #1abdfb;
}
.breadcrumb .active {
  color: #c3d108;
}
/*/ Content */
/* #Blog 
================================================== */
article.type-post .featured-thumbnail {
  float: left;
}
article.type-post .featured-thumbnail.large {
  float: none;
}
.post__holder {
  margin-bottom: 5px;
}
.post-header {
  overflow: hidden;
}
.post_date {
  font-size: 18px;
  color: #fff;
  text-align: center;
  text-transform: lowercase;
  float: left;
  padding-top: 9px;
  margin-right: 20px;
  width: 59px;
  height: 50px;
  background: url(../images/blog_date_plane.png) 0 0 no-repeat;
}
.post_meta {
  width: auto;
  border: none;
  font-size: 12px;
  line-height: 18px;
  padding-top: 10px !important;
}
.post_author a {
  color: #86b4d9;
}
.post_author a:hover {
  color: #c3d108;
}
.post-author {
  border: 1px dashed #e5edf4;
}
.post_comment {
  float: right;
  padding: 0 !important;
}
.reply a {
  color: #86b4d9;
  text-decoration: underline !important;
}
.reply a:hover {
  color: #c3d108;
}
.related-posts_h,
.comments-h,
#respond > h3 {
  font: 28px/28px 'Salsa', cursive;
  color: #86b4d9;
}

/* #Sidebar
================================================== */
#sidebar {
  padding-top: 10px;
}

#sidebar ul {
  margin: 0;
}
#sidebar ul li {
  margin-bottom: 13px;
  padding-left: 20px;
  list-style: none;
  background: url(../images/list_arr1.png) 0 3px no-repeat;
}
#sidebar ul li a {
  color: #86b4d9;
}
#sidebar ul li a:hover {
  text-decoration: none;
  color: #fc8a57;
}
/*/ Sidebar */

/* #Footer
================================================== */
.footer {
  border: none;
  padding: 0 0 40px 0;
  margin: 0 auto;
  text-align: center;
  background: none;
}
.footer .container {
  width: 100%;
  background: #fff;
  padding-bottom: 18px;
  -webkit-border-bottom-left-radius: 8px;
  -moz-border-radius-bottomleft: 8px;
  border-bottom-left-radius: 8px;
  -webkit-border-bottom-right-radius: 8px;
  -moz-border-radius-bottomright: 8px;
  border-bottom-right-radius: 8px;
}
.footer nav.footer-nav {
  float: none;
  margin-bottom: 4px;
  display: inline-block;
}
.footer nav.footer-nav ul {
  float: none;
}
.footer nav.footer-nav ul li {
  padding: 0 13px;
  border-left: 1px solid #e5edf4;
}
.footer nav.footer-nav ul li a {
  text-decoration: none;
}
.footer nav.footer-nav ul li:first-child {
  border: none;
  padding-left: 0;
}
.footer nav.footer-nav ul li.current-menu-item a,
.footer nav.footer-nav ul li:hover a {
  color: #c3d108;
}
.footer .footer-text {
  float: none;
  text-align: center;
  color: #7edafd;
}
.footer .footer-text a {
  color: #7edafd;
}
.footer .footer-text a:hover {
  color: #c3d108;
}
.footer .footer-widgets {
  text-align: left;
}
#footer_holder {
  width: 100%;
  margin-left: 20px;
  border-top: 2px solid #ebf2f7;
  padding-top: 10px;
}
/*/ Footer */
/* #Misc
================================================== */
form .search-form_it {
  height: 22px;
}
.pp_hoverContainer a {
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none;
}
input[type="submit"],
input[type="reset"] {
  height: 31px;
}
.faq-list .faq-list_h {
  color: #7edafd;
}
.faq-list .marker {
  color: #c3d108;
}
.archive_lists {
  margin-top: 30px;
}
.page-header {
  margin: 0;
  border: none;
}
/*/ Misc */
/* RESPONSIVE
==================================================*/
@media (max-width: 767px) {
  body {
    padding-left: 0px;
    padding-right: 0px;
  }
  .content-holder > div.container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .recent-posts.team {
    margin-left: 0;
  }
  .recent-posts.team li {
    width: 100%;
    float: none;
  }
  .recent-posts.team li .thumbnail {
    max-width: 120px;
    float: left;
  }
  #footer_holder {
    width: auto;
  }
}
@media (min-width: 768px) and (max-width: 979px) {
  .slider .camera .camera_target_content {
    display: none;
  }
  .service-box .title {
    font-size: 23px;
  }
}
@media (max-width: 480px) {
  .filter-wrapper > div {
    float: none;
  }
}
.clearfix {
  *zoom: 1;
}
.clearfix:before,
.clearfix:after {
  display: table;
  content: "";
  line-height: 0;
}
.clearfix:after {
  clear: both;
}
.hide-text {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.input-block-level {
  display: block;
  width: 100%;
  min-height: 28px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.moduletable-sidebar {
	margin: 25px 0 0px 0;
}

div[itemprop="blogPost"] {
   padding-top:20px;
}

#sidebar {
	margin: 25px 0 0 0;
	padding: 0 0 0 5px;
}

.block-headline {
	background-color: #c1d5ea;
	padding:5px;
	color:#ffffff;
}