.site {
  padding: 20px 0;
}
.site__top {
  margin-bottom: 20px!important;
  padding-bottom: 10px!important;
  padding-top: 20px!important;
}
.site__main {
  margin: 0 auto;
  width: 100%;
}
.subpage.component__top {
  padding: 50px 47px;
  position: relative;
}
.subpage.component__top:before {
  background: #ffffff;
  bottom: -10px;
  content: "";
  height: 20px;
  left: 0;
  position: absolute;
  width: 100%;
}
.subpage.component__bottom {
  padding: 50px 47px;
  position: relative;
}
.subpage.component__bottom:before {
  background: #ffffff;
  content: "";
  height: 20px;
  left: 0;
  position: absolute;
  top: -10px;
  width: 100%;
}
.clearfix:after {
  clear: both;
  content: "";
  display: table;
}
.logo {
  display: block;
  margin: 0 auto;
  text-decoration: none;
  width: 100%;
}
.logo__image {
  display: block;
  margin: 0 auto;
  max-height: 64px;
  width: auto;
}
.logo__title {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 64px;
  margin: 0;
  text-transform: uppercase;
}
.logo__description {
  color: #aaaaaa;
  font-size: 1.1rem;
  font-weight: 300;
  margin: -23px 0 0 0;
  min-height: 19px;
  opacity: 1;
  text-transform: uppercase;
}

/*
	Content
 */
.content__items {
  padding-bottom: 0px;
}
.content__header_title {
   text-align: center;
 
}
.content__desc {
  margin: 20px auto;
  max-width: 720px;
}
.content__desc > p {
  margin: 0;
}
.content__desc_img {
  float: left;
  margin: 8px 20px 0 0;
  max-width: 20%;
}
.content__info {
  margin: 0 auto 30px auto;
  max-width: 720px;
  text-align: center;
}
.content__info_label {
  display: inline-block;
  font-weight: bold;
  list-style-type: none;
  padding: 0 10px 0 0;
}
.content__info_item {
  display: inline-block;
  list-style-type: none;
}
.content__empty_msg {
  text-align: center;
}
.subpage {
  background: #ffffff;
  -webkit-box-shadow: 0 0 13px rgba(0, 0, 0, .07);
  -moz-box-shadow: 0 0 13px rgba(0, 0, 0, .07);
  box-shadow: 0 0 13px rgba(0, 0, 0, .07);
  margin: 0 auto;
  padding: 0 0 30px 0;
  width: 100%;
}
.subpage.component {
  padding: 48px 72px;
}
.subpage.narrow {
  max-width: 400px;
  padding: 48px;
}
.item {
  display: block;
  float: left;
  overflow: hidden;
  padding: 18px 10px;
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  -ms-perspective: 500px;
  perspective: 500px;
  position: relative;
}
.item[data-cols="1"] {
  width: 100%;
}
.item[data-cols="2"] {
  width: 50%;
}
.item[data-cols="3"] {
  width: 31%;
}
.item[data-cols="4"] {
  width: 23%;
}
.item[data-cols="5"] {
  width: 20%;
}
.item[data-cols="6"] {
  width: 16.666666%;
}
.item[data-cols="7"] {
  width: 14.285714%;
}
.item[data-cols="8"] {
  width: 12.5%;
}
.item__helper {
  background: #f5f5f5 url('../images/loader.gif') no-repeat center center;
  -webkit-box-shadow: 0 0 13px rgba(0, 0, 0, .07);
  -moz-box-shadow: 0 0 13px rgba(0, 0, 0, .07);
  box-shadow: 0 0 13px rgba(0, 0, 0, .07);
  overflow: hidden;
  opacity: 0;
  position: relative;
  -webkit-transition: all .5s ease-out;
  -moz-transition: all .5s ease-out;
  -ms-transition: all .5s ease-out;
  -o-transition: all .5s ease-out;
  transition: all .5s ease-out;
  /* Animation types */
}
.item__helper--animated {
  opacity: 1;
  -webkit-transform: rotateY(0) scale(1) !important;
  -moz-transform: rotateY(0) scale(1) !important;
  -ms-transform: rotateY(0) scale(1) !important;
  -o-transform: rotateY(0) scale(1) !important;
  transform: rotateY(0) scale(1) !important;
}
.item__helper:hover {
  -webkit-box-shadow: 0 0 13px rgba(0, 0, 0, .2);
  -moz-box-shadow: 0 0 13px rgba(0, 0, 0, .2);
  box-shadow: 0 0 13px rgba(0, 0, 0, .2);
}
.item__helper--scale,
.item__helper--scale-top-,
.item__helper--scale-center {
  -webkit-transform: scale(.5);
  -moz-transform: scale(.5);
  -ms-transform: scale(.5);
  -o-transform: scale(.5);
  transform: scale(.5);
  -webkit-transform-origin: 50% 100%;
  -moz-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -o-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
}
.item__helper--scale-top {
  -webkit-transform-origin: 50% 0%;
  -moz-transform-origin: 50% 0%;
  -ms-transform-origin: 50% 0%;
  -o-transform-origin: 50% 0%;
  transform-origin: 50% 0%;
}
.item__helper--scale-center {
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}
.item__helper--flip {
  -webkit-transform-origin: 0 50%;
  -moz-transform-origin: 0 50%;
  -ms-transform-origin: 0 50%;
  -o-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transform: rotateY(89deg);
  -moz-transform: rotateY(89deg);
  -ms-transform: rotateY(89deg);
  -o-transform: rotateY(89deg);
  transform: rotateY(89deg);
}
.item__helper--flip-center {
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transform: rotateY(89deg);
  -moz-transform: rotateY(89deg);
  -ms-transform: rotateY(89deg);
  -o-transform: rotateY(89deg);
  transform: rotateY(89deg);
}
.item__helper--opacity {
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.item__image {
  /*border-radius: 10px;*/
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  display: block;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
}
.item__preview {
  background: #ffffff;
  height: 100%;
  line-height: 1.8;
  position: absolute;
  /*width: 100%;*/
  z-index: 1;
}
.item__preview[data-url] {
  cursor: pointer;
}
.item__preview--slide-up {
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%);
}
.item__preview--slide-down {
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
}
.item__preview--slide-left {
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
}
.item__preview--slide-right {
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
}
.item__preview--opacity {
  opacity: 0;
}
.item__preview--scale {
  opacity: 0;
  -webkit-transform: scale(0.5);
  -moz-transform: scale(0.5);
  -ms-transform: scale(0.5);
  -o-transform: scale(0.5);
  transform: scale(0.5);
}
.item__preview--show {
  opacity: 1;
  -webkit-transform: translateY(0) translateX(0) scale(1) !important;
  -moz-transform: translateY(0) translateX(0) scale(1) !important;
  -ms-transform: translateY(0) translateX(0) scale(1) !important;
  -o-transform: translateY(0) translateX(0) scale(1) !important;
  transform: translateY(0) translateX(0) scale(1) !important;
}
.item__preview--featured {
  overflow: hidden;
  position: relative;
}
/*.item__preview--featured:before {
  color: #ffffff;
  content: "\f005";
  font-family: FontAwesome;
  font-size: 1.2rem;
  position: absolute;
  right: 5px;
  top: 2px;
  z-index: 3;
  
}
.item__preview--featured:after {
  content: "";
  height: 50px;
  position: absolute;
  right: -50px;
  top: -25px;
  -webkit-transform: rotateZ(45deg);
  -moz-transform: rotateZ(45deg);
  -ms-transform: rotateZ(45deg);
  -o-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
  width: 100px;
  z-index: 2;
}*/
.item__hidden {
  opacity: 0;
}
.item--loaded {
  opacity: 1;
}
.item--transition-fast {
  -webkit-transition: all .25s ease-out;
  -moz-transition: all .25s ease-out;
  -ms-transition: all .25s ease-out;
  -o-transition: all .25s ease-out;
  transition: all .25s ease-out;
}
.item--transition-normal {
  -webkit-transition: all .5s ease-out;
  -moz-transition: all .5s ease-out;
  -ms-transition: all .5s ease-out;
  -o-transition: all .5s ease-out;
  transition: all .5s ease-out;
}
.item--transition-slow {
  -webkit-transition: all .75s ease-out;
  -moz-transition: all .75s ease-out;
  -ms-transition: all .75s ease-out;
  -o-transition: all .75s ease-out;
  transition: all .75s ease-out;
}
.item__title {
  color: #363636;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
  padding: 0 0 24px 0;
}
.item__title_link {
  color: #363636;
}
.item__summary {
  padding: 0;
}
.item__summary_link {
  color: #777777;
}
.item__summary_link:active,
.item__summary_link:focus,
.item__summary_link:hover {
  color: #aaaaaa;
}
.item__info {
  background: #ffffff;
  border-top: 0;
  bottom: 0;
  color: #cccccc;
  font-size: 1.1rem;
  height: 68px;
  margin: 0;
  overflow: visible;
  padding: 0 30px 0 76px;
  position: absolute;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  -ms-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
  width: 100%;
  z-index: 2;
}
.item__info:after {
  border-top: 1px solid #e5e5e5;
  content: "";
  display: block;
  margin: 0 -100px;
}
/*.item__info:before {
  bottom: 0;
  color: #cccccc;
  content: "\f02b";
  display: block;
  font-size: 2rem;
  font-family: FontAwesome;
  height: 70px;
  left: 25px;
  line-height: 80px;
  position: absolute;
  text-align: right;
  width: 40px;
}*/
.item__info--categories:before {
  content: "\f07b";
  top: -5px;
}
.item__info--date:before {
  content: "\f073";
  top: -5px;
}
.item__info--title {
  padding: 0 30px;
}
.item__info--title:before {
  content: "";
}
.item__info_item {
  color: #cccccc;
  font-weight: 500;
  float: left;
  height: 68px;
  list-style-type: none;
  line-height: 69px;
  overflow: hidden;
  padding-right: 4px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.item__info_item:after {
  color: #777777;
  content: ",";
}
.item__info_item:last-child:after {
  content: "";
}
.item__info_item--date,
.item__info_item--title,
.item__info_item--categories {
  color: #777777;
  width: 100%;
}
.item__info_item--date:after,
.item__info_item--title:after {
  content: "";
}
.item__info_link {
  color: #777777;
}

/*
	Newsfeeds & Contacts & Tags
 */
.contact__fieldset,
.tag_category__fieldset,
.newsfeed__fieldset {
  border: none;
  margin: 0;
  padding: 20px 0;
}
.contact__form_left,
.tag_category__form_left,
.newsfeed__form_left {
  float: left;
  width: 200px;
}
.contact__form_right,
.tag_category__form_right,
.newsfeed__form_right {
  float: right;
}
.contact__list,
.tag_category__list,
.newsfeed__list {
  padding: 0;
}
.contact__item,
.tag_category__item,
.newsfeed__item {
  border-top: 1px solid #e5e5e5;
  list-style-type: none;
  padding: 10px 0;
}
.contact__items,
.tag_category__items,
.newsfeed__items {
  padding: 0;
}
.contact__header,
.tag_category__header,
.newsfeed__header {
  display: block;
  font-size: 2rem;
}
.contact__header_title,
.tag_category__header_title,
.newsfeed__header_title {
  font-size: 1.4rem;
  margin: 0;
}
.contact__url,
.tag_category__url,
.newsfeed__url {
  font-size: 1.2rem;
}
.contact__count,
.tag_category__count,
.newsfeed__count {
  background: #e5e5e5;
  border-radius: 50%;
  display: inline-block;
  font-size: 1rem;
  height: 20px;
  line-height: 2;
  margin-left: 10px;
  position: relative;
  text-align: center;
  top: -2px;
  width: 20px;
}
.contacts__categories,
.newsfeeds__categories {
  margin: 20px 0 0 20px;
}
.contacts__item,
.newsfeeds__item {
  margin: 0 0 20px 0;
}
.contacts__desc,
.newsfeeds__desc {
  font-size: 1.3rem;
}
.contacts__desc p,
.newsfeeds__desc p {
  margin: 0;
}
.contacts__header_title,
.newsfeeds__header_title {
  font-size: 1.6rem;
  margin: 0;
}
.contacts__header_count,
.newsfeeds__header_count {
  background: #e5e5e5;
  border-radius: 50%;
  display: inline-block;
  font-size: 1rem;
  height: 20px;
  line-height: 2;
  margin-left: 10px;
  position: relative;
  text-align: center;
  top: -2px;
  width: 20px;
}

/*
	Modalbox fix
*/
#sbox-content {
  height: 100%;
}
#sbox-content > iframe {
  max-height: 100%;
}
/*
	Item editor
*/
.item-page.edit .nav-tabs {
  display: none;
}
.item-page.edit #jform_title,
.item-page.edit #jform_alias {
  width: 100%;
}
.item-page.edit #editor-xtd-buttons {
  overflow: hidden;
  padding: 20px 0 0 0;
}
.item-page.edit #editor-xtd-buttons .btn {
  padding: 0 5px;
}
.item-page.edit .toggle-editor.btn-toolbar {
  margin-top: 20px;
  padding: 0 5px;
}
.item-page.edit .tab-pane {
  clear: both;
  padding: 0 0 30px 0;
  overflow: hidden;
}
#jform_publish_up_img,
#jform_publish_down_img {
  padding: 0 10px;
}
.icon-calendar:before {
  content: "\f073";
  font-family: FontAwesome;
}
/*
	Module edition
*/
.btn.jmodedit {
  border: none;
}
.btn.jmodedit:before {
  color: #363636;
  content: "\f044";
  font-family: FontAwesome;
  font-size: 3.2rem;
}
#modules-form .span12 > legend {
  font-size: 2.4rem;
  padding: 20px 0;
}
#modules-form hr {
  display: none;
}
#modules-form .label-default {
  background: #e5e5e5;
  border-radius: 5px;
  padding: 3px 5px;
}
#modules-form ul {
  list-style-type: none;
  padding-left: 0;
}
#modules-form input[type="text"],
#modules-form textarea {
  width: 80%;
}
/*
	Pagination
 */
.pagination__list {
  clear: both;
  margin: 0;
  padding: 0;
  text-align: center;
}
.pagination__next > a,
.pagination__prev > a,
.pagination__counter {
  color: #999;
  display: inline-block;
  font-size: 1.4rem;
  font-style: italic;
}
.pagination__counter {
  padding: 0 20px;
}
.pagination__next > a {
  padding: 0 0 0 25px;
}
.pagination__next > a:before {
  border-left: 1px solid #d5d5d5;
  content: "";
  display: inline-block;
  left: -20px;
  height: 18px;
  position: relative;
  top: 4px;
  width: 1px;
}
.pagination__prev > a {
  padding: 0 25px 0 0;
}
.pagination__prev > a:after {
  border-left: 1px solid #d5d5d5;
  content: "";
  display: inline-block;
  height: 18px;
  position: relative;
  right: -20px;
  top: 4px;
  width: 1px;
}
/*
	Pager
 */
.pager {
  margin: 0;
  padding: 0;
}
.pager > .previous,
.pager > .next {
  height: 54px;
  left: 0;
  list-style-type: none;
  margin: 0;
  padding: 0;
  position: fixed;
  top: 50%;
  width: 54px;
}
.pager > .previous > a,
.pager > .next > a {
  background: #363636;
  display: block;
  height: 54px;
  margin-left: -12px;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  -ms-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
  width: 54px;
}
.pager > .previous > a:hover,
.pager > .next > a:hover {
  margin-left: 0;
}
.pager > .previous i,
.pager > .next i {
  color: #fff;
  font-size: 1.2rem;
  line-height: 54px;
  text-align: center;
  text-indent: 6px;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  -ms-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
  width: 54px;
}
.pager > .next {
  left: auto;
  right: 0;
}
.pager > .next > a {
  margin-left: auto;
  margin-right: -12px;
}
.pager > .next > a:hover {
  margin-left: auto;
  margin-right: 0;
}
.pager > .next i {
  text-indent: -6px;
}
.pager > .next:hover i {
  text-indent: 10px;
}
.pager > .previous:hover i {
  text-indent: -10px;
}
/*
	Article index
 */
.article-index {
  border-left: 1px solid #e5e5e5;
  float: right;
  margin: 0 0 20px 40px;
  width: 160px;
}
.article-index > h3 {
  font-size: 1.5rem;
  margin: 0;
  padding: 10px 20px 0 20px;
}
.article-index > .nav {
  padding: 0 20px;
}
.article-index > .nav > li {
  display: block;
  font-size: 1.3rem;
  height: auto;
  padding: 0;
}
.article-index > .nav > li > a {
  line-height: 1.2;
  height: auto;
  padding: 10px 0;
}
.article-index > .nav > li > a.active {
  font-weight: bold;
}
.pagenavcounter {
  color: #999999;
  font-size: 1.2rem;
  font-style: italic;
}
.pane-sliders .panel > h3 {
  border-bottom: 1px solid #e5e5e5;
  font-size: 1.8rem;
  margin: 0;
  padding: 5px 0;
}
.tabs {
  margin: 0;
  overflow: hidden;
}
.tabs dt {
  float: left;
}
.tabs dt.open h3 {
  font-weight: bold;
}
.tabs h3 {
  font-size: 1.6rem;
  margin: 0 20px 0 0;
}
.tabs + .current {
  display: block;
}
.post__content .pager ul {
  text-align: center;
}
.post__content .pager ul li {
  display: inline-block;
  list-style-type: none;
  padding: 0 10px;
}
.post__content figure {
  margin: 2em 0;
}
.post__content figure.pull-left {
  margin: 2em 2em 2em 0;
}
.post__content figure.pull-right {
  margin: 2em 0 2em 2em;
}
.post__content figure.pull-center {
  text-align: center;
}
.post__content figure figcaption {
  font-size: 1.2rem;
  font-style: italic;
  text-align: center;
}
/*
	Gallery
 */
.gk-photo {
  clear: both;
  padding: 35px 0;
}
.gk-photo:after {
  clear: both;
  content: "";
  display: table;
}
.gk-photo > a {
  display: block;
  float: left;
  max-width: 45%;
}
.gk-photo img {
  float: left;
  max-width: 100%;
}
.gk-photo figcaption {
  float: right;
  width: 45%;
}
.gk-photo h3 {
  font-style: normal;
  font-size: 1.8rem;
  margin: 0 0 20px 0;
  padding: 0;
  text-align: left;
}
.gk-photo p {
  font-size: 1.6rem;
  font-style: normal;
  margin: 0;
  text-align: left;
}
.gk-photo-right > a,
.gk-photo-right img {
  float: right;
}
.gk-photo-right figcaption {
  float: left;
}
.gk-photo-center > a,
.gk-photo-center img {
  display: block;
  max-width: 100%;
  width: 100%;
}
.gk-photo-center figcaption {
  clear: both;
  float: none;
  margin: 0 auto;
  padding: 20px 0 0 0;
  width: 70%;
}
.gk-photo-center p,
.gk-photo-center h3 {
  text-align: center;
}
.gk-photo-overlay {
  background: rgba(0, 0, 0, 0.9) url('../images/gallery_preloader.gif') no-repeat center center;
  display: none;
  height: 100%;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  -webkit-transform: scale(.5);
  -moz-transform: scale(.5);
  -ms-transform: scale(.5);
  -o-transform: scale(.5);
  transform: scale(.5);
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  -ms-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
  width: 100%;
  z-index: 10000000;
}
.gk-photo-overlay.active {
  display: block;
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.gk-photo-overlay img {
  display: block;
  height: auto;
  left: 50%;
  max-height: 95%;
  max-width: 95%;
  opacity: 1;
  position: fixed;
  top: 50%;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  -ms-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
  -webkit-transform: translateX(-50%) translateY(-50%) scale(1);
  -moz-transform: translateX(-50%) translateY(-50%) scale(1);
  -ms-transform: translateX(-50%) translateY(-50%) scale(1);
  -o-transform: translateX(-50%) translateY(-50%) scale(1);
  transform: translateX(-50%) translateY(-50%) scale(1);
  width: auto;
}
.gk-photo-overlay img.loading {
  opacity: 0;
  -webkit-transform: translateX(-50%) translateY(-50%) scale(.8);
  -moz-transform: translateX(-50%) translateY(-50%) scale(.8);
  -ms-transform: translateX(-50%) translateY(-50%) scale(.8);
  -o-transform: translateX(-50%) translateY(-50%) scale(.8);
  transform: translateX(-50%) translateY(-50%) scale(.8);
}
.gk-photo-overlay-prev,
.gk-photo-overlay-next {
  border: 2px solid #ffffff;
  border-right: none;
  border-bottom: none;
  cursor: pointer;
  display: block;
  left: 100px;
  height: 60px;
  margin-top: -30px;
  opacity: 0;
  position: fixed;
  top: 50%;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  -ms-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  width: 60px;
}
.gk-photo-overlay-prev:active,
.gk-photo-overlay-next:active,
.gk-photo-overlay-prev:focus,
.gk-photo-overlay-next:focus,
.gk-photo-overlay-prev:hover,
.gk-photo-overlay-next:hover {
  border-color: #d27244;
}
.gk-photo-overlay-prev.active {
  left: 50px;
  opacity: 1;
}
.gk-photo-overlay-next.active {
  opacity: 1;
  right: 50px;
}
.gk-photo-overlay-next {
  left: auto;
  right: 100px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}
.gk-photo-overlay::selection,
.gk-photo-overlay img::selection {
  background: transparent;
}
.gk-photo-overlay::-moz-selection,
.gk-photo-overlay img::-moz-selection {
  background: transparent;
}
/*
	Modules
 */
.moduletable,
.moduletable_menu {
  float: left;
  margin: 0 0 20px 0;
  padding: 0 25px;
  text-align: left;
  width: 100%;
}
div[data-mod-num="2"] .moduletable,
div[data-mod-num="2"] .moduletable_menu {
  width: 50%;
}
div[data-mod-num="2"] .moduletable:nth-child(2n+1),
div[data-mod-num="2"] .moduletable_menu:nth-child(2n+1) {
  clear: both;
}
div[data-mod-num="3"] .moduletable,
div[data-mod-num="3"] .moduletable_menu {
  width: 33.333333%;
}
div[data-mod-num="3"] .moduletable:nth-child(3n+1),
div[data-mod-num="3"] .moduletable_menu:nth-child(3n+1) {
  clear: both;
}
.moduletable > h3,
.moduletable_menu > h3 {
  margin: 0;
  text-align: left;
}
.moduletable > ul,
.moduletable_menu > ul,
.moduletable .tagssimilar > ul,
.moduletable_menu .tagssimilar > ul {
  font-size: 1.4rem;
  padding: 0;
  text-align: left;
}
.moduletable > ul li,
.moduletable_menu > ul li,
.moduletable .tagssimilar > ul li,
.moduletable_menu .tagssimilar > ul li {
  border-top: 1px solid #e5e5e5;
  list-style-type: none;
  padding: 5px 0;
}
.moduletable > ul li:first-child,
.moduletable_menu > ul li:first-child,
.moduletable .tagssimilar > ul li:first-child,
.moduletable_menu .tagssimilar > ul li:first-child {
  border-top: none;
}
/*
	Login
 */
.moduletable #login-form label {
  display: block;
  width: 100%;
}
.moduletable #login-form label[for="modlgn-remember"] {
  float: right;
  position: relative;
  top: -3px;
  width: auto;
}
.moduletable #login-form input {
  width: 100%;
}
.moduletable #login-form .controls > div {
  padding: 0 0 10px 0;
}
.moduletable #login-form #modlgn-remember {
  float: right;
  margin-top: 3px;
  width: auto;
}
.moduletable #login-form #form-login-remember {
  margin-top: 20px;
}
.moduletable #login-form #form-login-submit {
  top: -20px;
  position: relative;
}
.moduletable #login-form .userdata > ul {
  margin: 20px 0 0 0;
  padding: 0;
  text-align: center;
}
.moduletable #login-form .userdata > ul li {
  display: inline-block;
  list-style-type: none;
  padding: 0 5px;
}
/*
	Menu
 */
.moduletable .nav > li,
.moduletable_menu .nav > li {
  display: block;
}
.moduletable .nav > li ul,
.moduletable_menu .nav > li ul {
  border-top: 1px solid #e5e5e5;
  margin: 10px 0 0 20px;
  padding: 0;
}
.moduletable .nav li > a,
.moduletable_menu .nav li > a {
  display: block;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  -ms-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}
.moduletable .nav li:hover > a,
.moduletable_menu .nav li:hover > a {
  text-indent: 10px;
}
/*
	Smart search
 */
#mod-finder-searchform label {
  display: none;
}
#mod-finder-searchform #mod-finder-searchword {
  border: none;
  border-bottom: 1px solid #e5e5e5;
  text-indent: 5px;
  line-height: 42px;
  width: 170px;
}
/*
	Stats module
 */
.stats-module dt {
  clear: both;
  float: left;
  margin: 0;
  padding: 0 5px 0 0;
}
/*
	Tags - popular
 */
.moduletable .tagspopular ul {
  margin: 20px 0 10px 0;
  padding: 0;
}
.moduletable .tagspopular ul li {
  background: #f5f5f5;
  border: 1px solid #e5e5e5;
  border-radius: 2px;
  display: inline-block;
  font-size: 1.4rem;
  list-style-type: none;
  margin: 5px 3px;
  padding: 0 5px;
}
.moduletable .tagspopular ul li .tag-count {
  font-size: 1.2rem;
  padding: 0 2px;
}
/*
	Breadcrumb
 */
.breadcrumb {
  background: #f5f5f5;
  border-bottom: 1px solid #e5e5e5;
  border-top: 1px solid #e5e5e5;
  margin: 0;
  padding: 10px 0;
}
.breadcrumb > ul {
  border: none;
  margin: 0 auto;
  padding: 0;
  text-align: center;
  width: 100%;
}
.breadcrumb > ul > li {
  display: inline-block;
}
.breadcrumb > ul > li:after {
  content: "/";
  padding: 0 5px;
}
.breadcrumb > ul > li:first-child:after,
.breadcrumb > ul > li:last-child:after {
  content: "";
  padding: 0;
}
/*
	Who's online & Latest users
*/
.moduletable .whosonline li,
.moduletable .latestusers li {
  border: none!important;
  display: inline-block;
  padding: 0 5px 0 0!important;
}
.moduletable .whosonline li:after,
.moduletable .latestusers li:after {
  content: ", ";
}
/*
	Other
*/
.moduletable .random-image {
  margin: 12px 0;
}
.moduletable .syndicate-module {
  display: block;
  margin-top: 12px;
}
.moduletable .syndicate-module > img {
  position: relative;
  top: 2px;
}
.moduletable .newsfeed {
  list-style-type: none;
  padding-left: 0;
}
.moduletable .newsfeed > li {
  border-top: 1px solid #e5e5e5;
  margin: 0;
  padding: 20px 0;
}
.moduletable .newsfeed .feed-link {
  font-size: 1.8rem;
}
.moduletable .bannergroup {
  margin: 12px 0;
}
.moduletable .mod-siteground-map {
  margin-bottom: 0!important;
}
.moduletable .mod-siteground-social.inline {
  text-align: center;
}
.moduletable .mod-siteground-social.inline li {
  border: none!important;
  display: inline-block;
}
.moduletable .mod-siteground-social.inline li .hidden {
  display: block;
  text-indent: -9999px;
}
@media (max-width: 1599px) {
  .site {
    padding: 20px 10px;
  }
}
@media (max-width: 1040px) {
  .item__info {
    padding: 0 30px 0 48px;
  }
  .item__info:before {
    left: -5px;
  }
}
@media (max-width: 960px) {
  .item[data-cols="1"] {
    /*width: 100%;*/
  }
  .item[data-cols="2"],
  .item[data-cols="3"],
  .item[data-cols="4"],
  .item[data-cols="5"],
  .item[data-cols="6"],
  .item[data-cols="7"],
  .item[data-cols="8"] {
   /* width: 50%;*/
  }
}
@media (max-width: 720px) {
  .navigation {
    padding: 0 0 30px 0;
    position: relative;
    text-align: center;
  }
  .navigation.opened .nav {
    float: none;
    margin: 20px auto;
    position: static;
  }
  .navigation:before {
    border: 1px solid #777777;
    border-radius: 2px;
    content: "≡ Menu";
    cursor: pointer;
    font-family: Arial, sans-serif;
    font-size: 1.6rem;
    font-weight: bold;
    padding: 8px 16px;
  }
  body .navigation .nav {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    left: -9999px;
    position: absolute;
    width: 300px;
  }
  body .navigation .nav li {
    border-top: 1px solid #e5e5e5;
    display: block!important;
    height: auto;
    min-height: 40px;
    line-height: 41px;
    text-align: center;
    width: 100%;
  }
  body .navigation .nav li.active > a {
    border-radius: 0;
    color: #ffffff !important;
  }
  body .navigation .nav li a {
    display: block!important;
    line-height: 39px!important;
    min-height: 40px;
    text-align: center;
    width: 100%;
  }
  body .navigation .nav-child,
  body .navigation .nav-child .nav-child {
    background: #f5f5f5;
    border: none;
    border-radius: 0;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    box-shadow: none !important;
    display: block;
    left: auto;
    margin: 0!important;
    padding: 0!important;
    opacity: 1!important;
    position: static!important;
    -webkit-transform: translateY(0px) scale(1) !important;
    -moz-transform: translateY(0px) scale(1) !important;
    -ms-transform: translateY(0px) scale(1) !important;
    -o-transform: translateY(0px) scale(1) !important;
    transform: translateY(0px) scale(1) !important;
    width: 100%!important;
  }
  body .navigation .nav-child > li,
  body .navigation .nav-child .nav-child > li {
    display: block;
    margin: 0;
  }
  body .navigation .nav-child > li > a,
  body .navigation .nav-child .nav-child > li > a {
    display: block;
    margin: 0;
    width: 100%!important;
  }
}
@media (max-width: 480px) {
  .navigation:before {
    font-size: 1.6rem;
  }
}
/* Fix for the mobile menu animation */
@media (min-width: 721px) {
  .navigation > .nav {
    height: auto!important;
  }
}
@media (max-width: 600px) {
  h1 {
    font-size: 2.4rem;
  }
  h2 {
    font-size: 2.0rem;
  }
  h3 {
    font-size: 1.8rem;
  }
  h4 {
    font-size: 1.6rem;
  }
  h5 {
    font-size: 1.4rem;
  }
  h6 {
    font-size: 1.3rem;
  }
  pre {
    font-size: 1.1rem;
    padding: 10px;
  }
  .item[data-cols="1"],
  .item[data-cols="2"],
  .item[data-cols="3"],
  .item[data-cols="4"],
  .item[data-cols="5"],
  .item[data-cols="6"],
  .item[data-cols="7"],
  .item[data-cols="8"] {
    width: 100%;
  }
  .header__search,
  .header__topmenu {
    display: none;
  }
  .pager > .previous,
  .pager > .next {
    position: absolute;
    top: 90px;
  }
  .post__header {
    font-size: 2.4rem;
    padding: 30px 20px 0 20px;
  }
  .post__info {
    padding: 0 10px 12px 10px;
  }
  .subpage.component,
  .subpage.archive,
  .subpage.login,
  .subpage.logout,
  .subpage.newsfeed,
  .subpage.newsfeeds,
  .subpage.search,
  .subpage.wrapper {
    padding: 20px 20px;
  }
  .post__content {
    padding: 0 20px;
  }
  .post__content blockquote {
    margin: 15px 0;
    padding: 10px 20px;
  }
  .social__buttons {
    margin: 20px 0;
  }
  .article-index {
    margin: 20px 0;
    width: 100%;
  }
  .contact__form_right,
  .tag_category__form_right,
  .newsfeed__form_right,
  .contact__form_left,
  .tag_category__form_left,
  .newsfeed__form_left,
  .search__input,
  .search__btn,
  .search__fieldset label,
  .filter-date > div > button,
  .contact_single__select_form,
  .contact_single__category,
  .contact_single__thumbnail {
    width: 100%;
  }
  .contact_single__thumbnail {
    margin: 0 0 20px 0;
    text-align: center;
  }
  .contact_single__thumbnail > img {
    float: none;
  }
  .search__fieldset label {
    display: block;
  }
  .search__btn,
  .filter-date > div > button {
    margin-top: 10px;
  }
  .contact__header_title,
  .tag_category__header_title,
  .newsfeed__header_title {
    font-size: 1.6rem;
  }
  .component.blog-featured table,
  .component.blog-featured table td,
  .component.blog-featured table th,
  .component.blog-featured table tr,
  .component.blog-featured table thead,
  .component.blog-featured table tbody {
    display: block;
    width: 100%;
  }
}



* {
margin: 0;
padding: 0;
}
html, body{
  height: 100%;
  width: 100%;
     
}


@media (0) { body {
  margin-top: -20px;
} }
td, tr, p, div {
  font-family: 'Roboto Condensed', Tahoma, sans-serif;
  color: #343434;
  font-weight: 300;
  font-size: 17px;
  line-height:28px;
}

a:link, a:visited {
  font-family: 'Roboto Condensed', Tahoma, sans-serif;
 color: #008298;
  font-weight: bold;
    font-size: 21px;
    line-height: 28px;
    text-decoration: underline;
    text-transform: uppercase;
    
}
a:hover {
 font-family: 'Roboto Condensed', Tahoma, sans-serif;
  color: #000;
  text-decoration:underline;
}
p { 
   text-indent: 0px;
} 

ul, ol {
list-style-position: outside;
margin-left: 10px;
}
ul li{
list-style-type: square;
}
#prodv ul {
list-style-position: outside;
margin-left: 20px;
}
h1 {
  font-size : 43px;
  text-align: center;
  font-family: 'Roboto Condensed', Tahoma, sans-serif;
  color: #fff;
  line-height: 48px;
  font-weight: bold;
  padding-top: 0px;
  margin-bottom: 0px;
  text-decoration: none;
  padding-left: 0px;
  /*text-shadow: 1px 1px 1px rgba(0,0,0,1);*/
  text-transform: uppercase;
  
}
h1  span{
  font-size : 80px;
  text-align: center;
  font-family: 'Roboto Condensed', Tahoma, sans-serif;
  color: #89e9b8;
  line-height: 100px;
  font-weight: bold;
  padding-top: 0px;
  margin-bottom: 0px;
  text-decoration: none;
  padding-left: 0px;  
  
}
h2 {
 font-size : 30px;
  text-align: center;
  font-family: 'Roboto Condensed', Tahoma, sans-serif;
  color: #141414;
  line-height: 40px;
  font-weight: bold;
  padding-top: 0px;
 margin: 20px;
  text-decoration: none;
  padding-left: 0px;
  /*text-shadow: 1px 1px 1px rgba(0,0,0,1);*/
  text-transform: uppercase;
}
h3 {
  font-size : 25px;
  text-align: right;
  font-family: 'Roboto Condensed', Tahoma, sans-serif;
  color: #01688a;
  line-height: 32px;
  font-weight: bold;
  padding-top: 0px;
  margin-bottom: 10px;
  text-decoration: none;
  padding-left: 0px;
  text-transform: uppercase;
}
h4 {
 font-size : 25px;
  text-align: right;
  font-family: 'Roboto Condensed', Tahoma, sans-serif;
  color: #ff0000;
  line-height: 32px;
  font-weight: bold;
  padding-top: 0px;
  margin-bottom: 10px;
  text-decoration: none;
  padding-left: 0px;
  
}
h5 {
 font-size : 18px;
  text-align: left;
  font-family: 'Roboto Condensed', Tahoma, sans-serif;
  color: #141414;
  line-height: 24px;
  font-weight: bold;
  padding-top: 0px;
  margin: 5px 0px;
  text-decoration: none;
  padding-left: 0px;
  text-transform: uppercase;
}
h6 {
  font-size : 20px;
  text-align: left;
   font-family: 'Roboto Condensed', Tahoma, sans-serif;
  color: #008298;
  line-height: 40px;
  font-weight: 300;
  padding-top: 0px;
  margin-bottom: 0px;
  text-decoration: none;
  padding-left: 0px;
  border-bottom: 1px solid #22BBD6;

}
p.mid {
  font-size : 48px;
  text-align: center;
   font-family: 'Roboto Condensed', Tahoma, sans-serif;
  color: #fff;
  line-height: 48px;
  font-weight: bold;
  padding-top: 0px;
  margin-bottom: 0px;
  text-decoration: none;
  padding-left: 0px;
  text-shadow: 1px 1px 1px rgba(0,0,0,1);
text-transform: uppercase;
}
#bodypage {
  min-height: 100%;
  min-width: 1220px;
  height:auto !important;
  height:100%;
  text-align: left;
   min-height: 100%;
    max-width: 1920px;
    box-shadow: 0 0 10px #000;
    margin: 0 auto;
    position: relative;
}

#shapkawrap {
  width: 100%;
  height: 75px;  
  background: #f7f7f7;  
}


#shapka {
  width: 1220px;
  height: 75px;  
  margin:0 auto;
}

#sitelogo{
  float: left;
  width: 270px;
  padding: 6px 10px 0px 0px;
}
#sitelogo p{
	padding-left:8px;
	font-size: 16px;
    line-height: 19px;
}
#sitelogo a{
	text-decoration: none;
    font-size: 15px;
    color:#acacac;
	line-height: 19px;
	font-weight: 300;
    text-transform: none;
}
#teltop{
  float: left;
    width: 390px;
    padding: 15px 0px 0px 170px;
}
#teltop p{
	font-family: 'Roboto Condensed', Tahoma, sans-serif;
    color: #424242;
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
      text-align: right;
    padding-right: 15px;
}
#zvonok {
 float: left;
 width: 180px;
 padding: 15px 0px 0px 0px;
}

#zvonok p{
font: 300 16px/22px 'Roboto Condensed', Tahoma, sans-serif;
color: #424242; 
}

#city{
  float: left;
  padding: 15px 0px 0px;
  position: relative;
  z-index: 1000;
  width: 200px;
}
a.z2{
   display: inline-block;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    font: 300 17px/24px 'Roboto Condensed', Tahoma, sans-serif;
   padding: 8px 12px;
    color: #fff;
    background: #067da5;
    border-bottom: 3px solid #005c7a;
    text-shadow: none;
    border-radius: 6px;
  text-transform: uppercase;
}
a.z2:hover{
    background: #016f93;  
  
}
a.more{
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    font: bold 22px/40px 'Roboto Condensed', Tahoma, sans-serif;
   padding: 8px 12px;
    color: #fff;
    background: #67bb91;
    border-bottom: 3px solid #1d613f;
    text-shadow: none;
    border-radius: 6px;
  text-transform: uppercase;
      width: 220px;
    height: 40px;
    text-align: center;
}
a.more:hover{
    background: #2a8e5c;  
  
}
a.more2{
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    font: bold 18px/40px 'Roboto Condensed', Tahoma, sans-serif;
   padding: 8px 12px;
    color: #fff;
    background: #67bb91;
    border-bottom: 3px solid #1d613f;
    text-shadow: none;
    border-radius: 6px;
  text-transform: uppercase;
      width: 500px;
    height: 40px;
    text-align: center;
	margin: 20px 20px 10px 20px;
}
a.more2:hover{
    background: #2a8e5c;  
  
}

#plav{
      background: #fff;
      height: 55px;
      position: relative;
      top: 0px;
  }
#plav.fixed{
      position: fixed;
      top: 80px;
      width: 100%;
	  height: 42px;
      background: rgba(255, 255, 255, 0.85);
    z-index: 1000;
  }
#plav.fixed #gormenuwrap{
	height: 42px;
	background: rgba(0, 0, 0, 0.6);
	 transition: 0.5s;
}
#plav.fixed .gmenu ul{
	 padding: 8px 0px 0px 0px;
}
#plav.fixed #gormenuwrap ul li a{
	color: #fff; 
	border-bottom: 1px dotted #fff;
}
#plav.fixed #gormenuwrap ul li a:hover{
	border-bottom: 1px solid #fff;
}
#gormenuwrap{
  width: 100%;
  height: 55px;  
  background: #fff; 
}
.gmenu {
  width: 1220px;
  height: 55px;  
  margin:0 auto;
}

.gmenu ul{
  padding: 15px 0px 0px 0px;
  margin:0;
  line-height:0;
  font-size:0;
  text-align: center;
}

.gmenu ul li{
  padding: 0px 40px;
    margin: 0;
    list-style: none;
    display: inline-block;
}

.gmenu ul li a{
  display:inline-block;
  text-decoration:none;
  cursor:pointer;
  position: relative;
 font: 300 17px/20px 'Roboto Condensed', Tahoma, sans-serif;
 color: #a7a7a7; 
 padding: 0px 0px;
   text-transform: uppercase;
   border-bottom: 1px dotted #a7a7a7;
}
.gmenu ul li a:hover{
 border-bottom: 1px solid #ccc;
}


/* ============================================================
  parallax
============================================================ */
.container {
  max-width: 1090px;
  margin: 0 auto;
}
section{
    margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  display:block;
  }

section.module.parallax {
  height: 650px;
  background-position: 50% 70%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

section.module.parallax1 {
  background-image: url(../images/paralax1.jpg);
  box-shadow: 1px 0px 18px -5px #000000 inset;
}


main {
  display: block;
  }


#maintelo {
    width: 100%;
    display: block;
    clear: both;
    overflow: hidden;
    margin: 0px auto;
    padding: 0px;
    
}
#block1wrap{
 width: 100%; 
  margin:0 auto;
  padding: 0px 0px 0px 0px;
   background-repeat: no-repeat;
  background-image: url(../images/bg.jpg);
  background-position: center top;  
  height: 580px;
}
#block1_text{
  width: 1220px;
  margin:0 auto;
  padding: 40px 0px 0px 0px;
}
#block1_forma{
	width: 1220px;
  margin:0 auto;
  padding: 15px 0px 0px 0px;
}
#process {
  width: 1220px;
  margin:0 auto;
  overflow: hidden;
  padding: 25px 0px;
}

#pr1, #pr2, #pr3, #pr4, #pr5, #pr6, #pr7, #pr8, #pr9{
    width: 29%;
    margin: 1%;
	padding: 1%;
    float: left;
    background: #f7f7f7;
}
span.big{
	color:#01688a;
	font: bold 50px/50px 'Roboto Condensed', Tahoma, sans-serif;
    padding: 0px 5px;
}

span.lit{
	color:#323232;
	font: 300 18px/18px 'Roboto Condensed', Tahoma, sans-serif;
    margin-top: 18px;
    position: absolute;
}

#question1wrap, #question2wrap, #question3wrap, #question4wrap, #question5wrap{
 width: 100%; 
  margin:0 auto;
  padding: 0px 0px 0px 0px;
   background-repeat: no-repeat;
  background-image: url(../images/bg1.jpg);
  background-position: center top;  
  height: 210px;
  overflow: hidden;
}
#question1, #question2, #question3, #question4, #question5{
  width: 1200px;
  margin:0 auto;
  padding: 20px 0px 0px 0px;
}
#question1 p, #question2 p, #question3 p, #question4 p, #question5 p{
	font: 300 22px/28px 'Roboto Condensed', Tahoma, sans-serif;
color: #fff;
}

#question1 p.bigqwest, #question2 p.bigqwest, #question3 p.bigqwest, #question4 p.bigqwest, #question5 p.bigqwest{
	font: bold 25px/50px 'Roboto Condensed', Tahoma, sans-serif;
color: #fff;
text-transform: uppercase;
}
#cenainfo {
  width: 1200px;
  margin:0 auto;
  overflow: hidden;
  padding: 25px 0px 5px 0px;
}
#cena {
  width: 1220px;
  margin:0 auto;
  overflow: hidden;
  padding: 5px 0px 25px 0px;
}
#cena p{
font-family: 'Roboto Condensed', Tahoma, sans-serif;
    color: #141414;
    font-weight: 300;
    font-size: 16px;
    line-height: 20px;
}

#prodv {
  width: 1220px;
  margin:0 auto;
  overflow: hidden;
  padding: 25px 0px;
}
#otzyv {
  width: 1220px;
  margin:0 auto;
  overflow: hidden;
  padding: 25px 0px;
}
#columncenter{
  width: 100%;
  margin: 0px auto 0px auto;
  
}

#kartawrap {
  width: 100%;
  margin:0 auto;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url(../images/karta1.jpg);
  background-position: center top;  
  background-size: cover;
}
#karta {
  width: 1220px;
  margin:0 auto;
  overflow: hidden;
  padding: 25px 0px 50px 0px;
  
}
#kont0{
  width: 100%;
  margin:0 auto;
}
#kont1{
	width: 31%;
	padding:1%;
	margin-right:1%;
	float:left;
  background-color:#fff;
  min-height:160px;
}
#kont2{
	width: 30%;
	padding:1%;
	margin-right:1%;
	float:left;
  background-color:#fff;
  min-height:160px;
}
#kont3{
	width: 31%;
	padding:1%;
	float:left;
  background-color:#fff;
  min-height:160px;
}

#kont1 p, #kont3 p{
font-family: 'Roboto Condensed', Tahoma, sans-serif;
    color: #2a8e5c;
    font-weight: bold;
    font-size: 30px;
    line-height: 40px;
	text-align:center;
	padding:40px 0px;
}
#bottomwrap {
  width: 100%;
  height: 150px;  
  background: #2a2a2a;  
}


#bottom {
  width: 1220px;
  height: 100px;  
  margin:0 auto;
}

#sitelogobot{
  float: left;
  width: 270px;
  padding: 6px 10px 0px 0px;
}
#sitelogobot p{
	padding-left:8px;
	font-size: 16px;
    line-height: 19px;
}
#sitelogobot a{
	text-decoration: none;
    font-size: 15px;
    color:#acacac;
	line-height: 19px;
	font-weight: 300;
    text-transform: none;
}

#telbot{
  float: left;
  width: 390px;
  padding: 15px 0px 0px 370px; 
}
#telbot p{
	font-family: 'Roboto Condensed', Tahoma, sans-serif;
    color: #bbbbbb;
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
  text-align: right;
    padding-right: 15px;
}
#zvonokbot {
 float: right;
 width: 180px;
 padding: 15px 0px 0px 0px;
}

#zvonokbot p{
font: 300 16px/22px 'Roboto Condensed', Tahoma, sans-serif;
color: #424242; 
}

#dru {
  width: 1220px;
  height: 50px;  
  margin:0 auto;
  overflow: hidden;
}
#dru p{
	text-align:center;
font: 300 14px/22px 'Roboto Condensed', Tahoma, sans-serif;
color: #d24a43; 
}
input:focus::-webkit-input-placeholder { color:transparent; }
input:focus::-moz-placeholder {color:transparent; }


.site{background:none!important;}
.item__preview {
	
}

.item__title {
  font-size: 18px;
  text-align: center;
  line-height: 24px;
  font-family: 'Roboto Condensed', Tahoma, sans-serif;
  color: #fff;
   background-image: url(../images/zag.png);
  background-repeat: no-repeat;
  background-position: center bottom;
     margin: -16px -16px 7px -16px;
    padding: 16px 16px 20px 16px;
}

.item__summary p{font-size: 20px;
    line-height: 27px;}

.item__preview {
    padding: 10px 16px 50px 15px!important;
	/*border-radius: 8px;*/
}
.item {
    height: 386px!important;
   
 }
.item__helper {
    height: 386px!important;
	/*border-radius: 10px;*/
}
.item__info {
    background: #ffffff;
    border-top: 0;
    bottom: 0;
    color: #cccccc;
    font-size: 1.1rem;
    height: 40px;
    margin: 0;
    overflow: visible;
    padding: 0 0px 0 0px;
    position: absolute;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
    width: 284px;
    z-index: 2;
}
.item__info_item {
    color: #cccccc;
    font-weight: 500;
    float: left;
    height: 68px;
    list-style-type: none;
    line-height: 69px;
    overflow: hidden;
    padding-right: 4px;
    text-overflow: ellipsis;
    white-space: nowrap;
      width: 284px;
    text-align: center;
}

li.item__info_item.tags__item a, li.item__info_item.tags__item a:hover{
  font-size: 14px;
    line-height: 18px;
    color: #C1272D !important;
    font-weight: 400;
    text-align: left;
    font-family: 'Roboto Condensed', Tahoma, sans-serif;
    text-decoration: none;
  cursor:default!important;
  display: block;
    text-align: center;
  padding:10px 0px;
}

p.f1{
	color: #fff;
    padding-left: 0px;
    font-size: 21px;
}
input.foxtext{
	border-radius: 5px;
    border: none;
    height: 50px;
    padding-left: 17px;
    font-size: 20px;
    color: #acacac;
}

.foxfield {
    margin: 10px 0px 20px 0px;
}
button.foxbutton {
    cursor: pointer;
    padding: 3px 5px 3px 5px;
	width: 365px;
    height: 50px;
    font: bold 24px/24px 'Roboto Condensed', Tahoma, sans-serif;
   padding: 8px 12px;
    color: #fff;
    background: #67bb91;
	border:none;
    border-bottom: 3px solid #1d613f;
    text-shadow: none;
    border-radius: 6px;
  text-transform: uppercase;
}
button.foxbutton:hover{
	background: #2a8e5c;
}

.fox-copyright{display:none;}

p.tim{
	color: #25b8ea;
    padding-left: 35px;
    font-size: 21px;
}
#time{
	width: 365px;
    height: 25px;
	background-image: url(../images/clock.png);
  background-repeat: no-repeat;
  background-position: left center;
}

ul.fox_messages {
    list-style: none;
    color: #fff;
    font-size: 25px;
    padding-top: 150px;
}

p.readmore-js-toggle{text-align: right;}
p.readmore-js-toggle a, p.readmore-js-toggle a:hover{
	font: 300 17px/24px 'Roboto Condensed', Tahoma, sans-serif; 
	text-transform: none;
	text-decoration: none;
    border-bottom: 1px dotted #008298;
	}
	
p.readmore-js-toggle a.pl{	
    padding: 0px 4px;
    margin: 0px 12px 0px 3px;
    background: #008298;
    color: #fff;
    font-size: 12px;
}
input:focus{border:none !important;}

.fancybox-skin {border-radius: 45px 4px 45px 3px !important;}
.fancybox-title-float-wrap .child{display:none !important;}

#akk {
  width: 100%;
  height: 100px; 
  background-color: #2196f3;
  background-image: url(../images/bg-shap.jpg);
  background-position: center top; 
  background-repeat: no-repeat;
background-size:cover;  
}

#akk a.gogo{
	display: inline-block;
	color: #fff;
    background-color: transparent;
    border:1px solid #fff;
	padding: 13px 44px 13px 55px;
    font-size: 22px;
    line-height: 20px;
	font-weight: 300 !important;
    border-radius: 30px;
	background-image: url(../images/raketa1.png);
  background-position: 15px center;
  background-repeat:no-repeat;
  text-decoration: none;
  text-transform: none;

}
#akk a.gogo:hover{
		background-image: url(../images/raketa2.png);
color: #000;
	background-color: #fff;
	border-color: #fff;
	text-decoration: none;
	
}


#plav1{
      background: #fff;
      height: 100px;
      position: relative;
      top: 0px;
  }

#plav1 table.ak2{display:none;}

#plav1.fixed{
      position: fixed;
      top: 0;
      width: 100%;
	  height: 80px;
      background: rgba(255, 255, 255, 0.85);
    z-index: 1000;
  }
#plav1.fixed #akk{
  width: 100%;
	  height: 80px;
}
#plav1.fixed table.ak1{display:none;}
#plav1.fixed table.ak2{display:block;}

.anch2 {
    display: block;
    width: 100%;
    height: 0px;
    line-height: 0;
    top: 600px;
    left: 0;
    position: absolute;
}
.anch3 {
    display: block;
    width: 100%;
    height: 0px;
    line-height: 0;
    top: 1310px;
    left: 0;
    position: absolute;
}

.anch4 {
    display: block;
    width: 100%;
    height: 0px;
    line-height: 0;
    top: 3100px;
    left: 0;
    position: absolute;
}

.anch5 {
    display: block;
    width: 100%;
    height: 0px;
    line-height: 0;
    top: 4530px;
    left: 0;
    position: absolute;
}

.anch6 {
    display: block;
    width: 100%;
    height: 0px;
    line-height: 0;
    top: 5730px;
    left: 0;
    position: absolute;
}


#dru p a.pol, a.pol{
    font: 300 14px/22px 'Roboto Condensed', Tahoma, sans-serif;
    text-transform: none;
}

#gorod a {
    font-size: 15px;
}