body {
  font-size: 14px;
  background-color: #fafafa;
  overflow-y: scroll;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
  font-family: "Open Sans";
}
body.active {
  overflow-y: hidden;
}
::-webkit-scrollbar {
  background: #f0f0f0;
  width: 5px;
}

::-webkit-scrollbar-thumb {
  border-width: 1px 1px 1px 2px;
  border-color: #777;
  background-color: #aaa;
}

::-webkit-scrollbar-thumb:hover {
  border-width: 1px 1px 1px 2px;
  border-color: #e3e3e3;
  background-color: #555;
}

::-webkit-scrollbar-track {
  border-width: 0;
}

.none {
  display: none !important;
}

section:nth-child(even) {
  background-color: #f5f5f5;
}

header {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  -webkit-flex: 1 0 auto;
  flex: 1 0 auto;
}

.content {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  -webkit-flex: 1 0 auto;
  flex: 1 0 auto;
}

footer {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  -webkit-flex: 0 0 auto;
  flex: 0 0 auto;
}

.btn {
  padding: 10px 18px;
  border: 1px solid #f4b936;
  color: #f4b936;
  background: none;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  text-decoration: none;
  font-size: 12px;
  cursor: pointer;
  /* display: inline-block; */
}

.btn:hover {
  -webkit-transition: 0.7s;
  -o-transition: 0.7s;
  transition: 0.7s;
  border: 1px solid #444;
  color: #444;
}

.btn-2 {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  margin-bottom: 5px;
  background: #f7b936;
  padding: 6px 12px 7px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  cursor: pointer;
}

.btn-2:hover {
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  background-color: #444;
}

/**************************** BEGIN ICONS**************************/
.icon-facebook {
  color: #cdcdcd;
  font-size: 15px;
}

.icon-facebook:hover {
  color: #f4b936;
}

.icon-instagram {
  color: #cdcdcd;
  font-size: 16px;
}

.icon-instagram:hover {
  color: #f4b936;
}

.icon-twitter {
  color: #cdcdcd;
  font-size: 16px;
}

.icon-twitter:hover {
  color: #f4b936;
}

.icon-search {
  color: #f4b936;
  font-size: 17px;
}

.icon-home {
  color: #333;
  font-size: 15px;
}

.icon-home:hover {
  color: #f4b936;
}

.icon-email {
  color: #cdcdcd;
  font-size: 15px;
}

.icon-email:hover {
  color: #f4b936;
}

.icon-clock {
  color: #f4b936;
  font-size: 16px;
}

.icon-location {
  color: #f4b936;
  font-size: 16px;
}

/**************************** END ICONS**************************/
/**************************** BEGIN HEADER**************************/
.modal {
  width: 45vw;
  max-width: 605px;
  /* max-height: 90vh; */
  position: absolute;
  top: 25vh;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 10000;
  background-color: #fff;
  color: #333;
  font-weight: 400;
  padding-bottom: 15px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  border-bottom: 1px solid #f3f3f3;
  display: none;
}

.modal .title {
  background: #e3e3e3;
  padding: 15px;
  margin-bottom: 14px;
  font-family: "Oswald", sans-serif;
  color: #333;
  text-align: center;
  font-size: 18px;
  text-transform: uppercase;
  position: relative;
}

.modal .title span {
  display: inline-block;
  width: 30px;
  height: 30px;
  position: absolute;
  top: -30px;
  right: -30px;
  cursor: pointer;
}

.modal .title span:before {
  content: "";
  display: block;
  width: 70%;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 15%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.modal .title span:after {
  content: "";
  display: block;
  width: 70%;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 15%;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.modal .text span {
  display: block;
  padding: 0 10px;
  margin: 20px 0;
  text-align: center;
  color: #e60003;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 18px;
}

.modal .text p {
  padding: 0 40px;
  line-height: 1.7;
  text-align: center;
}

.modal .text a {
  border: none;
  font-size: 14px;
  padding: 0;
  display: inline;
}

.modal-overlay {
  position: absolute;
  width: 100%;
  height: 200%;
  background: rgba(0, 0, 0, 0.7);
  top: 0;
  left: 0;
  z-index: 9999;
  display: none;
}

.header {
  width: 100%;
  height: 40px;
  position: fixed;
  top: 0;
  background-color: #292728;
  z-index: 100;
}

.header-container {
  width: 100%;
  max-width: 1060px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin: 0 auto;
  padding: 0 30px;
}

.header-social {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  text-decoration: none;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-social a {
  text-decoration: none;
  margin-right: 15px;
  width: 16px;
  height: 16px;
  -webkit-transition: all 0.15s;
  -o-transition: all 0.15s;
  transition: all 0.15s;
}
.header-social a[data-social="twitter"] {
  background: url(/public/template/img/links/twitter.svg) center no-repeat;
}
.header-social a[data-social="meyou"] {
  background: url(/public/template/img/links/emb.svg) center no-repeat;
  width: 18px;
  height: 17px;
  position: relative;
}
.header-social a[data-social="meyou"]:before {
  content: "incosai live";
  color: #cdcdcd;
  position: absolute;
  width: 100px;
  top: 2px;
  padding: 0 9px;
  right: -100px;
  text-transform: uppercase;
  font-size: 10px;
  -webkit-transition: all 0.15s;
  -o-transition: all 0.15s;
  transition: all 0.15s;
}
.header-language {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  /* width: 100%; */
}

.header-language a:nth-child(-n + 6) {
  text-decoration: none;
  font-weight: 400;
  text-transform: uppercase;
  margin-right: 15px;
  color: #cdcdcd;
  font-size: 12px;
  position: relative;
}

.header-language a:nth-child(-n + 6).active {
  color: #fff;
  position: relative;
}

.header-language a:nth-child(-n + 6).active:before {
  content: "";
  position: absolute;
  width: 100%;
  border-bottom: 2px solid #f4b936;
  bottom: -11px;
}

.header-language_search {
  text-decoration: none;
}

/**************************** END HEADER**************************/
.main {
  width: 100%;
  height: 100px;
  background-color: transparent;
  border-bottom: 1px solid rgba(51, 51, 51, 0.2);
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  z-index: 100;
  font-weight: 500;
}

.main-scroll {
  height: 60px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  background: rgba(255, 255, 255, 0.9);
}

.main-container {
  width: 100%;
  height: 100%;
  max-width: 1060px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin: 0 auto;
  padding: 0 30px;
}

.main-logo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -ms-flex-preferred-size: 224px;
  -webkit-flex-basis: 224px;
  flex-basis: 224px;
  margin-right: 30px;
  padding-right: 30px;
  width: 224px;
  height: 100%;
  border-right: 1px solid rgba(51, 51, 51, 0.2);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.main-logo img {
  width: 100%;
}

.main-logo_scroll {
  -ms-flex-preferred-size: 140px;
  -webkit-flex-basis: 140px;
  flex-basis: 140px;
  width: 140px;
  min-width: 140px;
}

.main-nav {
  margin-right: 40px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.main-nav a:nth-child(n + 1) {
  text-decoration: none;
  margin-right: 19px;
  line-height: 100px;
  font-family: "Oswald", sans-serif;
  color: #333;
  text-transform: uppercase;
  position: relative;
  display: block;
  height: 100%;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.main-nav a:nth-child(n + 1):hover:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: -1px;
  border-bottom: 1px solid #000;
}

.main-nav_scroll a:nth-child(1) {
  line-height: 60px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.main-nav_scroll a:nth-child(n + 2) {
  line-height: 60px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  color: #000;
}

.main-nav a:nth-child(n + 1).active:before {
  content: "";
  position: absolute;
  width: 100%;
  border-bottom: 1px solid #000;
  left: 0;
  bottom: -1px;
}

.main-nav_scroll a:first-child:after {
  content: "";
  bottom: 0;
}

.main-user {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-left: auto;
}

.main-user a {
  color: #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
  text-decoration: none;
  height: 100%;
}
.main-user a:last-child {
  margin-left: 15px;
}
.main-user .active {
  position: relative;
  color: #000;
}
.main-user .active:before {
  content: "";
  width: 100%;
  height: 2px;
  background: #f7b936;
  position: absolute;
  left: 0;
  bottom: 0;
}

/*.main-user_title:hover:before {
  content: '';
  position: absolute;
  width: 100%;
  border-bottom: 1px solid #000;
  bottom: -1px;
}*/

.main-user_icon {
  margin-left: 15px;
  display: inline-block;
  width: 35px;
  height: 35px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background: no-repeat;
  background-position-x: 53%;
  -webkit-background-size: cover;
  background-size: cover;
}

.main-user_account {
  margin-left: 15px;
  display: block;
  width: 35px;
  height: 35px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background: url(../img/main/logout.svg) center no-repeat;
  -webkit-background-size: 100% 100%;
  background-size: 100%;
}

/**************************** BEGIN WELCOME**************************/
.welcome {
  width: 100%;
  padding-top: 53px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding-bottom: 40px;
  background: #fff url(../img/welcome/welcome-bg.jpg) center no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  position: relative;
  z-index: 0;
  font-weight: 600;
}

.welcome-container {
  width: 100%;
  height: 100%;
  max-width: 1040px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin: 0 auto;
}

.welcome-container:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #d6e3ec url(../img/welcome/dot.png);
  opacity: 0.4;
  z-index: -3;
}

.welcome-logo {
  margin-top: 86px;
  width: 242px;
  height: 600px;
  position: relative;
}

.welcome-logo:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 55px;
  background: url(../img/welcome/logo.svg) center no-repeat;
}

.welcome-logo:after {
  content: "";
  position: absolute;
  top: -160px;
  left: -329px;
  width: 800px;
  height: 800px;
  background: url(../img/welcome/Layer.png) center no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  z-index: -2;
}

.welcome-block {
  margin-left: 20%;
}

.welcome-title {
  margin-top: 86px;
  margin-bottom: 35px;
  text-shadow: 0 0 7px rgba(255, 255, 255, 0.2);
  text-align: center;
  color: #333;
  font-size: 18px;
  font-weight: 400;
}

.welcome-timer {
  width: 500px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.welcome-timer_num {
  width: 100px;
  padding-bottom: 15px;
  margin-bottom: 11px;
  margin: auto;
  font-family: "Oswald", sans-serif;
  font-size: 64px;
  font-weight: 300;
  color: #333;
  border-bottom: 1px solid #f4b936;
  text-align: center;
}

.welcome-timer_text {
  padding-top: 15px;
  margin-bottom: 35px;
  font-size: 18px;
  text-align: center;
  color: #333;
}

.welcome-info_btn {
  position: relative;
  height: 49px;
  width: 100%;
}

.welcome-info {
  width: 66%;
  padding: 15px 25px;
  -webkit-box-shadow: 0 0 7px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 3px;
  border-radius: 3px;
  background-color: #f4b936;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  z-index: 2;
  margin: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  top: 0;
  right: 0;
  white-space: nowrap;
}

.welcome-info:hover {
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #333;
}
.welcome-day-block {
  margin-left: 25%;
  color: #711034;
  text-transform: uppercase;
  font-weight: 500;
  font-family: "Oswald";
  text-align: center;
}
.welcome-day-block .title {
  font-size: 30px;
  margin-bottom: 10px;
}

.welcome-day-block .text {
  font-size: 25px;
  letter-spacing: 1.1px;
}

.widget-block-ng {
  text-align:center;
  background:#072d4c;
  margin-bottom:-4px;
}
.widget-block-ng {
  text-align:center;
  background: #00294b;
  margin-bottom:-4px;
}
.widget-block-ng img {
  max-width:100%;
}
/**************************** END WELCOME**************************/
/**************************** BEGIN MOBILE**************************/
.mobile {
  width: 100%;
  padding: 10px 0;
  background: #292728;
  position: fixed;
  display: none;
  z-index: 5;
}

.mobile-container {
  position: relative;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.mobile-menu {
  text-align: center;
  padding: 5px 0;
  width: 35px;
  height: 35px;
}

.mobile-menu span {
  display: inline-block;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  width: 25px;
  height: 2px;
  background: #f4b936;
  position: relative;
}

.mobile-menu span:before,
.mobile-menu span:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #f4b936;
}

.mobile-menu span:before {
  top: 10px;
  left: 0;
}

.mobile-menu span:after {
  bottom: 10px;
  left: 0;
}

.mobile-menu_active span {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.mobile-submenu_item {
  display: none;
}

.mobile-submenu_item_active {
  display: block;
  padding: 10px 50px;
  text-decoration: none;
  background-color: #000;
  color: #fff;
  font-family: sans-serif;

  border-top: 1px solid #444444;
  border-bottom: 1px solid #222222;
}

.mobile-lang {
  text-align: center;
  line-height: 31px;
  width: 35px;
  height: 35px;
  border: 2px solid #444;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  font-family: "Oswald", sans-serif;
  color: #fff;
  text-transform: uppercase;
}

.language-items {
  position: absolute;
  display: none;
  width: 100%;
  right: 0;
  top: 45px;
  background-color: #333;
}

.language-menu_item {
  border-top: 1px solid #111111;
  border-bottom: 1px solid #444444;
  display: block;
  font-family: "Oswald", sans-serif;
  color: #fff;
}

.language-menu_item a {
  padding: 20px;
  display: inline-block;
  color: #fff;
  text-decoration: none;
  width: 100%;
  height: 100%;
}

.mobile-items {
  height: 100vh;
  display: none;
  position: absolute;
  width: 100%;
  overflow: auto;
  left: 0;
  top: 45px;
  background-color: #333;
  z-index: 10;
}

.mobile-items .item {
  display: block;
  color: #e3e3e3;
  border-top: 1px solid #111111;
  border-bottom: 1px solid #444444;
  position: relative;
}

.mobile-items .item > a {
  font-family: "Oswald", sans-serif;
  color: #e3e3e3;
  text-decoration: none;
}

.mobile-items .item a.menu {
  display: block;
  padding: 20px;
}

.mobile-items .menu-sub {
  padding: 5px 0;
  display: none;
  background: #292828;
}

.mobile-items .menu-sub a {
  position: relative;
}

.mobile-items .menu-sub a:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: url(../img/footer/bullet.png) center no-repeat;
  top: 15px;
  left: 15px;
}

.mobile-items .menu-sub.active {
  display: block;
}

.mobile-items .menu-sub a {
  padding: 10px 35px;
  display: block;
  color: #e3e3e3;
  text-decoration: none;
}

/**************************** END MOBILE**************************/
/**************************** BEGIN ABOUT**************************/
.about {
  padding: 40px 0;
  width: 100%;
}

.about-container {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-title {
  margin-bottom: 40px;
  text-align: center;
  font-family: "Oswald";
  font-size: 30px;
  font-weight: 500;
  color: #333;
}

.about-text {
  color: #333;
  margin: 0 -20px;
  font-weight: 400;
  text-align: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  line-height: 25px;
  background: #fff;
  padding: 15px;
  border: 1px solid #f3f3f3;
  border-bottom: 1px solid #e3e3e3;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}

.about-text .block {
  -ms-flex-preferred-size: 50%;
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}

.about-text .block:first-child {
  margin-right: 20px;
}

.about-text .about-title {
  text-align: left;
  margin-top: 40px;
  text-transform: uppercase;
  font-weight: 400;
  color: #e60003;
}

.about-text .block span {
  color: #243185;
  font-weight: 700;
}

.about-text .block ul {
  padding-left: 0;
  font-weight: 400;
  color: #243185;
  list-style-position: inside;
  list-style-type: none;
}

.about-text .block li:before {
  content: "-";
}

.about-text .block a {
  color: #30589b;
}

.about-text .block .img {
  margin: auto;
  width: 242px;
  height: 432px;
  background: url(../img/welcome/logo.svg) 50% 0% no-repeat;
}

.about .about-sign {
  margin-top: 40px;
  font-size: 16px;
  max-width: 237px;
  margin-left: auto;
  text-align: right;
  line-height: 1.7;
}

.about .about-sign span {
  display: block;
  margin-top: 5px;
  color: #333;
}

@media (max-width: 700px) {
  .about-text {
    display: block;
  }

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

/**************************** END ABOUT**************************/
/**************************** BEGIN PROGRAM**************************/
.program {
  padding: 40px 0;
  background: #f5f5f5;
}

.program-container {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}

.program-blocks {
  margin-bottom: 50px;
}

.program-block {
  display: block;
  text-decoration: none;
  margin: 0 auto;
  width: 100%;
  height: 530px;
  background-color: #fff;
  padding: 17px;
  border: 1px solid #f3f3f3;
  border-bottom: 1px solid #e3e3e3;
  position: relative;
}

.program-dates {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.program-date {
  width: 88px;
  height: 90px;
  display: inline-block;
  text-align: center;
  color: #ffffff;

  font-weight: 600;
  background: #f4b936;
}

.program-date span {
  font-size: 50px;
  font-weight: 300;
}

.program-date_chill {
  background-color: #982a51;
}

.program-date_mounth {
  font-size: 12px;
  margin-bottom: 4px;
}

.program-title {
  font-weight: 600;
  color: #444;
  line-height: 20px;
  /* height: 61px; */
  text-align: justify;
}

.program-text {
  margin-bottom: 65px;
  font-size: 13px;
  font-weight: 500;
  color: #444;
  line-height: 20px;
}

.program-button {
  position: absolute;
  right: 23px;
  bottom: 25px;
}

.program-time_business,
.program-time_chill {
  margin-bottom: 20px;
  text-align: right;
  font-style: italic;
  font-size: 13px;
  font-weight: 400;
}

.program-time_business {
  color: #f4b936;
  padding-left: 72px;
}

.program-time_chill {
  color: #982a51;
  padding-left: 49px;
}

.program-time_clock,
.program-time_geo {
  padding-left: 35px;
  margin-bottom: 7px;

  color: #444;
  position: relative;
}

.program-time_clock div {
  position: absolute;
  top: 0;
  left: 15px;
}

.program-time_geo div {
  position: absolute;
  top: 0;
  left: 14px;
}

.program-about {
  text-align: center;
  margin-bottom: 20px;
}

/**************************** END PROGRAM**************************/
.news {
  padding: 40px 0;
  background: #fff;
}

.news-container {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}

.news-blocks {
  margin-bottom: 50px;
}

.news-block {
  display: block;
  text-decoration: none;
  margin: 0 auto;
  width: 100%;
  height: 530px;
  background-color: #fff;
  padding: 17px;
  border: 1px solid #f3f3f3;
  border-bottom: 1px solid #e3e3e3;
  position: relative;
}

.news-img {
  width: 100%;
  height: 180px;
  margin-bottom: 15px;
  background: center no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
}

.news-date {
  position: absolute;
  margin-bottom: 65px;
  bottom: -35px;
  font-weight: 500;
  color: #999;
}

.news-title {
  font-weight: 600;
  color: #444;
  line-height: 20px;
}

.news-text {
  margin-top: 20px;
  font-size: 13px;
  font-weight: 500;
  color: #444;
  line-height: 20px;
  position: relative;
}

.news-text:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&0+0,1+100 */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: -o-linear-gradient(
          top,
          rgba(255, 255, 255, 0) 0%,
          rgba(255, 255, 255, 1) 100%
  );
  background: -webkit-gradient(
          linear,
          left top,
          left bottom,
          from(rgba(255, 255, 255, 0)),
          to(rgba(255, 255, 255, 1))
  );
  background: -webkit-gradient(
          linear,
          left top,
          left bottom,
          from(rgba(255, 255, 255, 0)),
          to(rgba(255, 255, 255, 1))
  );
  background: -webkit-linear-gradient(
          top,
          rgba(255, 255, 255, 0) 0%,
          rgba(255, 255, 255, 1) 100%
  );
  background: -webkit-gradient(
          linear,
          left top,
          left bottom,
          from(rgba(255, 255, 255, 0)),
          to(rgba(255, 255, 255, 1))
  );
  background: -webkit-gradient(
          linear,
          left top,
          left bottom,
          from(rgba(255, 255, 255, 0)),
          to(rgba(255, 255, 255, 1))
  );
  background: -webkit-gradient(
          linear,
          left top,
          left bottom,
          from(rgba(255, 255, 255, 0)),
          to(rgba(255, 255, 255, 1))
  );
  background: -webkit-gradient(
          linear,
          left top,
          left bottom,
          from(rgba(255, 255, 255, 0)),
          to(rgba(255, 255, 255, 1))
  );
  background: -webkit-gradient(
          linear,
          left top,
          left bottom,
          from(rgba(255, 255, 255, 0)),
          to(rgba(255, 255, 255, 1))
  );
  background: -webkit-gradient(
          linear,
          left top,
          left bottom,
          from(rgba(255, 255, 255, 0)),
          to(rgba(255, 255, 255, 1))
  );
  background: -webkit-gradient(
          linear,
          left top, left bottom,
          from(rgba(255, 255, 255, 0)),
          to(rgba(255, 255, 255, 1))
  );
  background: linear-gradient(
          to bottom,
          rgba(255, 255, 255, 0) 0%,
          rgba(255, 255, 255, 1) 100%
  );
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=0);
  /* IE6-9 */
}

.news-button {
  position: absolute;
  right: 23px;
  bottom: 25px;
}

.news-button:hover {
  -webkit-transition: 0.7s;
  -o-transition: 0.7s;
  transition: 0.7s;
  border: 1px solid #444;
  color: #444;
}

.news-about {
  text-align: center;
  margin-bottom: 20px;
}

.videos {
  /* display: none; */
  padding: 40px 0;
  background: #fff;
}

.videos-container {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}

.videos-blocks {
  margin-bottom: 50px;
}

.videos-block {
  display: block;
  text-decoration: none;
  margin: 0 auto;
  width: 100%;
  height: 270px;
  background-color: #fff;
  padding: 17px;
  border: 1px solid #f3f3f3;
  border-bottom: 1px solid #e3e3e3;
  position: relative;
}

.videos-img {
  width: 100%;
  height: 180px;
  background: center no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
}

.videos-text {
  margin: 0;

  font-weight: 500;
  color: #f4b936;
  line-height: 20px;
  text-align: justify;
}

.videos-about {
  text-align: center;
  margin-bottom: 20px;
}

.photos {
  padding: 40px 0;
  background: #fff;
}

.photos-container {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}

.photos-blocks {
  margin-bottom: 50px;
}

.photos-block {
  display: block;
  text-decoration: none;
  margin: 0 auto;
  width: 100%;
  height: 295px;
  background-color: #fff;
  padding: 17px;
  border: 1px solid #f3f3f3;
  border-bottom: 1px solid #e3e3e3;
  position: relative;
}

.photos-img {
  width: 100%;
  height: 180px;
  background: center no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
}

.photos-text {
  margin: 0;
  font-weight: 500;
  color: #333;
  line-height: 20px;
  text-align: left;
  padding-top: 20px;
}

.photos-about {
  text-align: center;
  margin-bottom: 20px;
}

.sponsor {
  padding: 40px 0;
}

.sponsor-container {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}

.sponsor-blocks {
  margin-bottom: 50px;
}

.sponsor-block {
  display: block;
  text-decoration: none;
  margin: 0 auto;
  width: 100%;
  height: 200px;
  background-color: #fff;
  padding: 17px;
  border: 1px solid #f3f3f3;
  border-bottom: 1px solid #e3e3e3;
  position: relative;
}

.sponsor-img {
  display: block;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  background: center no-repeat;
  -webkit-background-size: 100% 100%;
  background-size: 100%;
}

.sponsor-text {
  display: block;
  margin: 0 auto;

  font-weight: 500;
  color: #444;
  line-height: 20px;
  text-align: center;
  max-width: 150px;
}

.sponsor-about {
  text-align: center;
  margin-bottom: 20px;
}

.sponsor-about a {
  padding: 10px 18px;
  right: 23px;
  bottom: 25px;
  border: 1px solid #f4b936;
  color: #f4b936;
  background: none;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  text-decoration: none;
  font-size: 12px;
}

.sponsor-about a:hover {
  -webkit-transition: 0.7s;
  -o-transition: 0.7s;
  transition: 0.7s;
  border: 1px solid #444;
  color: #444;
}

.common-scroll {
  padding-top: 140px;
}

.common {
  min-height: 500px;
  padding-top: 140px;
  padding-bottom: 40px;
  z-index: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.common-container {
  margin: 0 auto;
  width: 100%;
  height: 100%;
  max-width: 1040px;
  padding: 0 20px;
}

.common-header {
  margin: 20px 0;
  padding: 20px 0;
  text-align: center;
  text-transform: uppercase;
  font-family: "Oswald", sans-serif;
  font-size: 25px;
  font-weight: 500;
  color: #333;
}

.news-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 3fr 20px 1fr;
  grid-template-columns: 3fr 1fr;
  grid-gap: 0 20px;
}

.news-list .blocks .block {
  background-color: #fff;
  border: 1px solid #f3f3f3;
  border-bottom: 1px solid #e3e3e3;
  padding: 15px;
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  text-decoration: none;
  color: #111;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.news-list .blocks .block > .img {
  margin-right: 20px;
  min-width: 250px;
  -ms-flex-preferred-size: 250px;
  -webkit-flex-basis: 250px;
  flex-basis: 250px;
  overflow-y: hidden;
  max-height: 152px;
}

.news-list .blocks .block > .img img {
  width: 250px;
}

.news-list .blocks .block > .info {
  height: 100%;
  font-size: 13px;
}

.news-list .blocks .block > .info > .title {
  line-height: 18px;
  font-weight: 600;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;

  margin-bottom: 5px;
}

.news-list .blocks .block .title:hover,
.news-list .news-sidebar .last-news .item .title:hover {
  color: #f4b936;
}

.news-list .blocks .block > .info > .text {
  margin-bottom: 5px;

  line-height: 18px;
}

.news-list .blocks .block > .info > .date {
  color: #999;
  margin-bottom: 5px;
}

.news-list .news-sidebar .last-news,
.news-subscribe {
  height: 370px;
  background-color: #fff;
  border: 1px solid #f3f3f3;
  border-bottom: 1px solid #e3e3e3;
  padding: 15px;
  margin-bottom: 15px;
  color: #111;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.news-subscribe {
  height: 150px;
}

.news-subscribe .form-item .value:nth-child(2) {
  margin-bottom: 15px;
}

.news-subscribe .form-item .value .btn-2 {
  display: block;
  text-align: center;
}

.news-list .news-sidebar .last-news .title {
  margin-bottom: 10px;
  text-align: left;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.news-list .news-sidebar .last-news .item {
  text-decoration: none;
}

.news-list .news-sidebar .last-news .item .title {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  text-align: left;
  color: #111;
  font-weight: 400;
  text-transform: none;
  margin-bottom: 5px;
}

.news-list .news-sidebar .last-news .item .date {
  margin-bottom: 10px;
  color: #999;
  font-size: 13px;
}

.news-subscribe .form-item {
  display: block;
  margin-bottom: 5px;
}

.news-subscribe .form-item .title {
  margin-right: 0;
  margin-bottom: 10px;
  text-align: left;
  font-size: 13px;
  color: #000;
  font-weight: 600;
  text-transform: uppercase;
}

.news-list > .nav a {
  text-decoration: none;
  font-family: "Open Sans", sans-serif;
  color: #f4b936;
}

.news-single {
  padding: 15px;
  background-color: #fff;
  border: 1px solid #f3f3f3;
  border-bottom: 1px solid #e3e3e3;
  margin: 0 auto;
  max-width: 800px;
}

.news-single > .block > .title {
  font-weight: 600;
  margin-bottom: 5px;
}

.news-single > .block > .date {
  margin-bottom: 20px;
  color: #999;
  font-size: 12px;
}

.news-single > .block > .img {
  margin-bottom: 20px;
}

.news-single > .block > .img img {
  width: 100%;
}

.news-single > .block > .text {
  margin-top: 20px;
  font-size: 13px;
  line-height: 22px;
  text-align: justify;
  color: #333;
}

.news-single > .block > .link {
  display: block;
  margin-top: 20px;
  text-decoration: none;
  color: #f4b936;
}

.docs-tabs {
  font-family: "Oswald", sans-serif;
  border-bottom: 1px solid #e3e3e3;
}

.docs-tabs a {
  display: inline-block;
  text-decoration: none;
  padding: 10px 0;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: normal;
  color: #555;
  margin-right: 25px;
  position: relative;
}

.docs-tabs a:last-child {
  margin-right: 0;
}

.docs-tabs a.active {
  color: #000;
  border-bottom: 2px solid #f6b936;
}

.docs-list > .docs {
  background: #fff;
  padding: 15px;
  margin: 15px 0;
  display: block;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  width: 100%;
  text-decoration: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  border: 1px solid #f3f3f3;
  border-bottom: 1px solid #e3e3e3;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  color: #333;
}

.docs-list > .docs > .title {
  font-weight: 600;
  font-size: 16px;
}

.docs-list > .docs > .date {
  margin-top: 15px;
  color: #999;
  font-size: 12px;
}

.docs-list > .docs > .text {
  margin-top: 15px;
  text-decoration: none;
  text-align: justify;
}

.docs-list > .docs > .link {
  margin-top: 15px;
  padding-bottom: 3px;
  color: #f4b936;
}

.page-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.page-nav .active {
  background: #f4b936;
  color: #fff;
}

.page-nav a {
  display: block;
  margin: 20px 0;
  text-decoration: none;
  color: #777;
  width: 28px;
  height: 28px;
  line-height: 28px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  background: #f3f3f3;
  margin-right: 5px;
  text-align: center;
}

.docs-single {
  width: 100%;
  position: relative;
  min-height: 500px;
}

.docs-single .theme {
  width: -webkit-calc(100% - 270px);
  width: calc(100% - 270px);
  border: 1px solid #f3f3f3;
  border-bottom: 1px solid #e3e3e3;
  background-color: #fff;
  padding: 15px;
}

.docs-single .theme .date {
  font-size: 12px;
  color: #999;
}

.docs-single .theme .title {
  margin-bottom: 10px;
  color: #222;
  font-weight: 600;
}

.docs-single .theme .text {
  text-align: justify;
  margin-top: 20px;
  font-size: 13px;
  color: #222;
  line-height: 22px;
}

.docs-files {
  position: absolute;
  top: 0;
  right: 0;
  width: 250px;
}

.docs-files .files {
  border: 1px solid #f3f3f3;
  border-bottom: 1px solid #e3e3e3;
  background-color: #fff;
  padding: 15px 15px 0 15px;
}

.docs-files .files .title {
  color: #222;
  font-weight: 600;
  margin-bottom: 20px;
}

.docs-files .files .file {
  font-size: 13px;
  line-height: 20px;
  display: block;
  text-decoration: none;
  font-weight: 500;
  color: #079;
  margin-bottom: 15px;
}

.votes {
  margin-top: 15px;
  color: #fff;
  background: #fff;
  padding: 15px;
  border: 1px solid #f3f3f3;
  border-bottom: 1px solid #e3e3e3;
}

.votes .title {
  color: #444;
  font-weight: 600;
  margin-bottom: 15px;
}

.votes .text {
  color: #444;
  font-weight: 600;
  margin-bottom: 15px;
}

.votes .reset {
  color: #fff;
  font-weight: 600;
  text-align: center;
  background: #444;
  border: none;
}

.votes .sum {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  font-weight: 600;
  text-align: center;
  font-size: 12px;
  text-transform: uppercase;
}

.votes .sum div {
  width: 50%;
  padding: 10px 0;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  margin-right: 5px;
  cursor: pointer;
}

.votes .sum div:last-child {
  margin-right: 0;
}

.votes .sum .yes {
  background-color: #56a760;
  border: none;
  color: #fff;
}

.votes .sum .no {
  background-color: #b31f1f;
  border: none;
  color: #fff;
}

.comments {
  width: -webkit-calc(100% - 270px);
  width: calc(100% - 270px);
  background-color: #fff;
  padding: 15px;
  border: 1px solid #f3f3f3;
  border-bottom: 1px solid #e3e3e3;
  margin-top: 15px;
}

.comments .title {
  font-weight: 600;
  color: #222;
}

.comments-form {
  margin-top: 10px;
  margin-bottom: 30px;
}

.comments-form textarea {
  resize: vertical;
  font-family: "Open Sans";
  font-size: 14px;
  width: 100%;
  padding: 10px;
  min-height: 60px;

  outline: none;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}

.comments-form textarea:focus {
  border-color: #999;
}

.comments-form .send {
  margin-top: 5px;
  cursor: pointer;
}

.comments-list {
  border-top: 1px solid #e3e3e3;
  padding: 20px 0;
  position: relative;
}

.comments-list .date {
  margin-left: 45px;
  font-size: 10px;
  color: #999;
}

.comments-list .author {
  margin-left: 45px;
  font-weight: 600;
  margin-bottom: 5px;
}

.comments-list .delete {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 10px;
  height: 10px;
  cursor: pointer;
  background: url(../img/events/cross.svg) center no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.comments-list .delete:hover {
  background: url(../img/events/red-cross.svg) center no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
}

.comments-list .job {
  margin-left: 45px;
  color: #999;
  margin-bottom: 10px;
  font-size: 13px;
}

.comments-list .text {
  margin-left: 45px;
  text-align: justify;
  margin-bottom: 10px;
}

.comments-list .user {
  width: 35px;
  height: 35px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background: center no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  position: absolute;
  top: 19px;
  left: 0;
}

.album-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

.album-list .item .photo {
  color: #333;
  height: 100%;
  display: block;
  padding: 15px;
  background: #fff;
  border: 1px solid #fefefe;
  border-bottom: 1px solid #f3f3f3;
  text-decoration: none;
  vertical-align: top;
}

.album-list .item .photo .title {
  margin-top: 10px;
  font-weight: 600;
  margin-bottom: 10px;
  text-align: left;
}

.album-list .item .photo .date {
  font-size: 12px;
  text-align: left;
}

.album-list .item .photo .img {
  width: 100%;
  height: 180px;
  background: center no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  overflow-y: hidden;
}

.photo-single {
  margin: 0 auto;
}

.photo-single .title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.photo-single .title a {
  text-decoration: none;
  color: #f4b936;
}

.photo-single .share {
  font-size: 16px;
  margin-top: 15px;
  font-weight: 600;
}

.photo-single .share a:first-child {
  font-size: 15px;
}

.photo-single .share a {
  margin-left: 15px;
  font-size: 17px;
  color: #999;
  text-decoration: none;
}

.photo-single .block {
  min-height: 150px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  grid-row-gap: 15px;
  grid-column-gap: 15px;
  background-color: #fff;
  border: 1px solid #f3f3f3;
  border-bottom: 1px solid #e3e3e3;
  padding: 15px;
}

.photo-single .block .overlay {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  z-index: 100;
  display: none;
}
.photo-single .block .overlay.active {
  display: block;
}
.photo-single .block > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.photo-single .block > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}

.photo-single .block > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}

.photo-single .block > *:nth-child(4) {
  -ms-grid-row: 1;
  -ms-grid-column: 4;
}

.photo-single .block .popup {
  padding: 5vh 10vw;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 101;
  display: none;
}
.photo-single .block .popup.active {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.photo-single .block .item {
  display: block;
  height: 150px;
  background: center no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
}

.photo-single .block .popup .item {
  width: auto;
  max-width: 100%;
  max-height: 100%;
  height: auto;
  display: block;
  line-height: 0;
  margin: auto;
}

.photo-single .block .popup .close {
  padding: 10px 15px;
  position: absolute;
  background: #000000b0;
  top: 3px;
  cursor: pointer;
  right: 3px;
  font-size: 12px;
  color: #fff;
}

.video-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.video-list .item {
  width: 25%;
}

.video-list .item .block {
  display: block;
  margin: 0 10px;
  text-decoration: none;
  vertical-align: top;
  color: #333;
}

.video-list .item .block > .title {
  margin-top: 10px;
  font-weight: 600;

  margin-bottom: 10px;
  text-align: left;
}

.video-list .item .block > .date {
  margin-bottom: 25px;
  font-size: 12px;
  text-align: left;
}

.video-list .item .block > .img {
  width: 100%;
  height: 250px;
  background: center no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  overflow-y: hidden;
}

.video-single {
  display: block;
}

.video-single > .title {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 10px;
}

.video-single > .date {
  margin-bottom: 25px;
  font-size: 12px;
}

.video-gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.video-gallery-item {
  width: 25%;
  margin-bottom: 10px;
}

.video-gallery-item a {
  display: block;
  margin: 0 10px;
}

.video-gallery-item img {
  display: block;
  width: 100%;
  height: 250px;
  background: center no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  overflow-y: hidden;
}

.event-list {
  font-family: "Open Sans", sans-serif;
}

.dates {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  position: relative;
  margin-bottom: 20px;
  background: #fff;
}

.dates:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #f3f3f3;
  top: 55px;
}

.dates .active .time {
  background-color: #fbedcd;
  border-bottom: 3px solid #999;
}

.dates .active .date {
  background-color: #f5b936 !important;
  color: #fff !important;
  -webkit-border-radius: 0 0 3px 3px;
  border-radius: 0 0 3px 3px;
}

.dates .active .time div:last-child {
  color: #777 !important;
}

.dates .passed .time {
  color: #d0d0d0;
}

.dates .passed .time div:last-child {
  color: #d0d0d0;
}

.dates .passed .date {
  background-color: #fff;
  color: #d0d0d0;
}

.date-item {
  text-align: center;
  width: 100px;
  margin-right: 4px;
  display: block;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  color: #999;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #f3f3f3;
  -webkit-border-radius: 0 0 6px 6px;
  border-radius: 0 0 6px 6px;
  border-bottom: 1px solid #e3e3e3;
  font-size: 15px;
  z-index: 1;
}

.date-item .time {
  text-transform: uppercase;
  text-align: center;
  padding: 6px 0;
  border-bottom: 3px solid #e3e3e3;
}

.date-item .time div:last-child {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  line-height: 20px;
  color: #777;
}

.date-item .date {
  font-weight: 300;
  font-size: 60px;
  text-align: center;
  padding-bottom: 10px;
  color: #f5b936;
}

.theme-item {
  margin-bottom: 10px;
  background-color: #fff;
  border: 1px solid #f3f3f3;
  border-bottom: 1px solid #e3e3e3;
  display: block;
  text-decoration: none;
  padding: 15px 15px 15px 140px;
  color: #444;
  position: relative;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}

.theme-item .img {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 100px;
  height: 100px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  background: url(../img/events/img-1.jpg) center no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
}

.theme-item .location {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
}

.theme-item .time {
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 10px;
}

.theme-item .title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.theme-item .text {
  font-family: "Open Sans", sans-serif;
  margin-bottom: 10px;
}

.theme-item .btn {
  display: inline-block;
}

.event-single {
  font-size: 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.event-single .theme {
  width: 68%;
  padding: 15px 20px;
  background: #fff;
  border: 1px solid #f3f3f3;
  border-bottom: 1px solid #e3e3e3;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  margin-right: 20px;
}

.event-single .theme .title {
  font-weight: 600;
}

.event-single .theme .title a {
  color: #444;
  font-weight: 600;
}

.event-single .theme .title a:hover {
  color: #f4b936;
  text-decoration: none;
}

.event-single .theme .img {
  margin-top: 15px;
  width: 200px;
  height: 150px;
  float: left;
  margin-right: 25px;
  background: center no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
}

.event-single .theme .text {
  line-height: 22px;
  margin-top: 15px;
  color: #333;
}

.event-single .theme .more {
  color: #333;
  line-height: 24px;
  margin-top: 15px;
}

.event-single .theme .more a {
  color: #444;
  font-weight: 600;
  margin-bottom: 5px;
}

.event-single .theme .more a:hover {
  color: #f4b936;
  text-decoration: none;
}

.place {
  padding: 15px 20px;
  background: #fff;
  border: 1px solid #f3f3f3;
  border-bottom: 1px solid #e3e3e3;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  min-width: 300px;
  margin-left: auto;
  height: 100%;
}

.place > .title {
  font-weight: 600;
  padding-left: 35px;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #f3f3f3;
  position: relative;
  color: #444;
}

.place > .title:before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background: url(../img/events/icon-title.svg) center no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  top: 2px;
  left: 6px;
}

.place .date {
  padding-left: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #f3f3f3;
}

.place .date .day {
  font-weight: 600;
  color: #444;
  position: relative;
}

.place .date .day:before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background: url(../img/events/calendar.svg) center no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  top: 0;
  left: -28px;
}

.place .date .time {
  margin-left: 15px;
  color: #444;
  font-size: 12px;
}

.place .map {
  margin-bottom: 15px;
}

.location .title {
  font-weight: 600;
  padding-left: 35px;
  margin-bottom: 5px;
  color: #444;
  position: relative;
}

.location .title:before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 9px;
  left: 8px;
  background: url(../img/events/location.svg) center no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
}

.location .address {
  padding-left: 35px;
  color: #444;
  margin-bottom: 15px;
}

.videogallery-single {
  padding: 15px 20px;
  background: #fff;
  color: #444;
  font-size: 14px;
}

.videogallery-single .title {
  font-weight: 600;
}

.videogallery-single a {
  color: #444;
}

.videogallery-single .date {
  margin-top: 10px;
  color: #999;
  font-size: 12px;
}

.videogallery-single video {
  margin-top: 20px;
  color: #999;
  font-size: 12px;
}

.videogallery-single .youtube {
  margin-top: 20px;
  font-size: 14px;
}

.help-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.help-list .block {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  display: block;
  height: 310px;
  text-decoration: none;
  text-align: center;
  padding: 20px;
  background: #fff;
  border: 1px solid #f3f3f3;
  border-bottom: 1px solid #e3e3e3;
}

.help-list .block:hover {
  background: #f7f7f7;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid #f7f7f7;
}

.help-list .img {
  width: 80px;
  height: 80px;
  background: center no-repeat;
  display: inline-block;
  margin-top: 40px;
}

.help-list .text {
  margin-top: 35px;
  color: #000;
  font-weight: 400;
  font-size: 20px;
}

.help-more {
  margin-top: 50px;
  color: #333;
  font-size: 12px;
  line-height: 18px;
}

.personal-area {
  width: 100%;
  position: relative;
}

.personal-area > .navigation,
.personal-area > .content {
  padding: 15px 20px;
  background: #fff;
  border: 1px solid #f3f3f3;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  border-bottom: 1px solid #e3e3e3;
}

.personal-area > .navigation {
  position: absolute;
  top: 0;
  left: 0;
  width: 250px;
}

.personal-area > .content {
  width: -webkit-calc(100% - 270px);
  width: calc(100% - 270px);
  margin-left: auto;
  /* padding: 15px; */
}

.personal-area > .event-content {
  border: none;
  padding: 0;
  background: #fafafa;
}

.personal-area > .content .content-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.personal-area > .content .content-tabs > a {
  padding: 0 0 12px 0;
}

.personal-area > .navigation a {
  text-decoration: none;
  display: block;
  color: #555;
  font-weight: 400;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  margin-bottom: 24px;
  text-transform: uppercase;
  font-size: 15px;
  font-family: "Oswald", sans-serif;
}

.personal-area > .navigation a:last-child {
  margin-bottom: 0;
}

.personal-area > .navigation a:hover {
  color: #000;
}

.personal-area > .navigation .active {
  color: #000;
  font-weight: 500;
}

.admin-form {
  margin-top: 45px;
}

.form-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-bottom: 25px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.form-item:last-child {
  margin-bottom: 0;
}

.form-item .title {
  color: #677766;
  text-transform: uppercase;
  margin-right: 20px;
  font-size: 12px;
  text-align: right;
  min-width: 200px;
  -ms-flex-preferred-size: 200px;
  -webkit-flex-basis: 200px;
  flex-basis: 200px;
  position: relative;
}

.form-item .text {
  color: #222;
  font-weight: 600;
  margin-bottom: -15px;
  font-size: 12px;
  text-transform: uppercase;
}

.reduction-message,
.info-message {
  text-align: center;
  margin-bottom: 10px;
  color: #222;
  display: none;
}

.form-item .title.required:before {
  content: "*";
  position: absolute;
  color: #ff3354;
  top: 0px;
  right: -8px;
}

.form-item .img {
  width: 180px;
  height: 180px;
  overflow: hidden;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  position: relative;
}

.form-item .img img {
  position: absolute;
  height: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.form-item .value {
  width: 100%;
  position: relative;
}

.form-item .value .required-message {
  position: absolute;
  font-size: 12px;
  color: #ff3354;
  bottom: -20px;
}

.form-item input,
.form-item select {
  width: 100%;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  outline: none;
  display: block;
  height: 39px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  font-size: 14px;
  padding: 0 15px;
  color: #555;
  background-color: #ffffff;
  outline: none;
  border: 1px solid #e3e3e3;
}

.form-item .img .select {
  position: absolute;
  background: #333;
  display: block;
  color: #fff;
  padding: 10px 0;
  width: 100%;
  text-align: center;
  cursor: pointer;
  opacity: 0.5;
  bottom: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.form-item .img:hover .select {
  opacity: 0.7;
}

.form-item input[type="file"] {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.enter-personal {
  width: 520px;
  margin: auto;
  padding: 15px 20px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  background: #fff;
  border: 1px solid #fefefe;
  border-bottom: 1px solid #f3f3f3;
}

.enter-personal > form .form-item .title {
  min-width: 116px;
  -ms-flex-preferred-size: 0;
  -webkit-flex-basis: 0;
  flex-basis: 0;
  text-align: right;
}

.enter-personal > form .form-item .value a {
  margin-left: 20px;
  text-decoration: none;
  color: #f5b936;
}

.password-reduction {
  width: 520px;
  margin: auto;
  padding: 15px 20px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  background: #fff;
  border: 1px solid #fefefe;
  border-bottom: 1px solid #e3e3e3;
}

.password-reduction .save {
  padding: 7px 12px;
}

.search-user {
  position: relative;
  padding: 4px;
  margin-bottom: 10px;
  border: 1px solid #e3e3e3;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}

.search-event-users {
  margin-top: 10px;
}

.search-user .user input[type="text"] {
  width: 40%;
  -webkit-border-top-left-radius: 3px;
  border-top-left-radius: 3px;
  -webkit-border-bottom-left-radius: 3px;
  border-bottom-left-radius: 3px;
  -webkit-border-top-right-radius: 0;
  border-top-right-radius: 0;
  -webkit-border-bottom-right-radius: 0;
  border-bottom-right-radius: 0;
  border: none;
}

.search-user .country select {
  width: 50%;
  -webkit-border-top-right-radius: 3px;
  border-top-right-radius: 3px;
  -webkit-border-bottom-right-radius: 3px;
  border-bottom-right-radius: 3px;
  -webkit-border-top-left-radius: 0;
  border-top-left-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  border-bottom-left-radius: 0;
  border: none;
  position: absolute;
  right: 69px;
  top: 4px;
}

.search-user .btn-2 {
  position: absolute;
  top: 4px;
  right: 4px;
  padding: 10px 12px;
  border: none;
}

.letters .user-list {
  width: 100%;
  margin-top: 5px;
}

.letters .user-list .user {
  display: block;
  text-decoration: none;
  width: 100%;
  padding: 25px;
  position: relative;
}

.letters .user-list .user .start {
  position: absolute;
  top: 32px;
  right: 25px;
}

.letters .user-list .user .new-message {
  position: absolute;
  width: 20px;
  height: 20px;
  font-size: 12px;
  font-weight: 600;
  line-height: 20px;
  color: #fff;
  top: 23px;
  right: 16px;
  background-color: #555;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  text-align: center;
}

.letters .user-list .user .name,
.letters .message .name,
.support-chat .message .name,
.support-chat .theme {
  margin-left: 55px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #000;
}

.support-chat .block,
.mailing .block {
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.support-chat .user-theme {
  color: #999;
  font-weight: 600;
}

.support-chat .theme {
  margin-left: 0;
  margin-bottom: 0;
  margin-right: 10px;
}

.support-chat .message .name {
  margin-left: 0;
}

.support-chat .message-send .btn-2:last-child {
  margin-left: 10px;
}

.letters .user-list .user .name span {
  display: inline-block;
  margin-left: 5px;
  color: #fff;
  width: 30px;
  height: 20px;
  text-align: center;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  background-color: #f7b936;
}

.mailing .block {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

.mailing .block div:last-child {
  margin-left: 40px;
}

.mailing .block div {
  font-weight: 600;
  width: 50px;
  text-align: center;
}

.mailing .item .value {
  font-weight: 600;
  text-transform: uppercase;
}

.mailing .item form .title {
  margin-right: 0;
  text-align: center;
  min-width: 50px;
  -ms-flex-preferred-size: 37px;
  -webkit-flex-basis: 50px;
  flex-basis: 50px;
}

.mailing .item form .form-item .title:nth-child(3) {
  margin-left: 43px;
}

.mailing input {
  display: none;
}

.letters .user-list .user .job {
  position: relative;
}

.letters .user-list .user .country,
.event-users .user .job {
  margin-left: 55px;
  color: #999;
  font-size: 13px;
}

.letters .user-list .user .img,
.letters .message .img {
  width: 35px;
  height: 35px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background: center no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  position: absolute;
  top: -20px;
  left: 0;
}

.letters .message-list {
  width: 100%;
  margin-top: 5px;
}

.letters .message-menu {
  padding: 15px 0;
  margin-bottom: 20px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  background-color: #e3e3e3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.letters .message-menu .user {
  position: relative;
  margin-right: 25px;
}

.letters .message-menu .user .img {
  width: 35px;
  height: 35px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background: center no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  position: absolute;
}

.letters .message-menu .user .name {
  margin-left: 45px;
  font-weight: 600;
  color: #000;
}

.letters .message-menu .user .job {
  margin-left: 45px;
  color: #999;
  font-size: 13px;
}

.letters .message-menu .menu {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  cursor: pointer;
  position: relative;
  margin-left: auto;
  margin-right: 15px;
}

.letters .message-menu .menu span {
  display: block;
  width: 4px;
  height: 4px;
  margin: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  background-color: #fff;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  position: relative;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.letters .message-menu .menu span:before,
.letters .message-menu .menu span:after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  background-color: #fff;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

.letters .message-menu .menu span:before {
  top: -13px;
}

.letters .message-menu .menu span:after {
  top: 13px;
}

.letters .message-menu .menu .delete {
  top: 54px;
  right: -15px;
  text-decoration: none;
  position: absolute;
  display: none;
  width: 159px;
  padding: 15px 20px;
  background-color: #fff;
  border: 1px solid #e3e3e3;
  -webkit-border-bottom-left-radius: 3px;
  border-bottom-left-radius: 3px;
  -webkit-border-bottom-right-radius: 3px;
  border-bottom-right-radius: 3px;
  color: #999;
  font-size: 13px;
  z-index: 20;
}

.letters .message-menu .menu .delete:hover {
  color: #000;
}

.letters .message-menu .return {
  width: 40px;
  height: 40px;
  margin-right: 25px;
  margin-left: 15px;
  background: url("../img/messages/keyboard_arrow_left.svg") center no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
}

.letters .messages {
  overflow-y: scroll;
  max-height: 500px;
  margin-bottom: 20px;
}

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

.letters .message,
.support-chat .message {
  width: 100%;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  padding: 25px;
}

.letters .message:nth-child(even),
.support-chat .message:nth-child(even),
.letters .user-list .user:nth-child(even),
.event-users .user:nth-child(even),
.support-list .item:nth-child(even),
.user-events .theme-item:nth-child(even) {
  background-color: #f5f5f5;
  border: 1px solid #f3f3f3;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  border-bottom: 1px solid #e3e3e3;
}

.letters .start-message {
  text-align: center;
  height: 50px;
}

.letters .message.unread {
  background: #f3f3f3;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}

.letters .message .img {
  width: 35px;
  height: 35px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background: center no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  position: absolute;
  top: -20px;
  left: -46px;
}

.letters .time,
.support-chat .message .status {
  margin-left: 55px;
  color: #999;
  font-size: 13px;
  position: relative;
}

.support-chat .message .status {
  margin-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  text-transform: uppercase;
}

.support-chat .message .date {
  margin-right: 10px;
}

.support-chat .message .ready {
  padding-left: 10px;
  border-left: 1px solid #999;
}

.letters .text,
.support-chat .message .text {
  margin-left: 55px;
  /* margin-bottom: 20px; */
}

.support-chat .message .text {
  margin-left: 0;
  margin-bottom: 5px;
}

.letters .date {
  font-size: 10px;
  color: #999;
  text-align: right;
  margin-right: 10px;
  float: right;
}

.letters textarea,
.support-chat textarea {
  margin-bottom: 10px;
}

.event-users .user {
  padding: 25px;
  position: relative;
}

.event-users .user .unregistered {
  width: 10px;
  height: 10px;
  background-color: rgb(255, 31, 31);
  -webkit-border-radius: 3px;
  border-radius: 3px;
  position: absolute;
  top: 41px;
  left: 0;
}

.event-users .user .country {
  color: #999;
  font-size: 13px;
  margin-left: 90px;
  max-width: 300px;
}

.event-users .user .btn-block {
  position: absolute;
  top: 28px;
  right: 25px;
}

.event-users .user .profile:first-child {
  margin-right: 20px;
}

.event-users .user .message {
  position: absolute;
  top: 28px;
  right: 25px;
}

.event-users .user .img {
  width: 64px;
  height: 64px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background: center no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  position: absolute;
  top: 15px;
  left: 25px;
}

.event-users .user .name {
  font-weight: 600;
  color: #000;
  margin-left: 90px;
  max-width: 300px;
}

.event-users .user .job {
  margin-bottom: 5px;
  margin-left: 0;
}

.event-users .user .country a {
  text-decoration: none;
  color: #f7b936;
  font-size: 13px;
}

.user-profile,
.profile-card {
  margin-top: 10px;
  width: 100%;
  position: relative;
  padding: 35px 0;
}

.user-profile .img,
.profile-card .img {
  width: 150px;
  height: 150px;
  margin-bottom: 10px;
  background: center no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  position: absolute;
  top: 35px;
  left: 0;
}

.user-profile .name,
.profile-card .name,
.profile-card .subname {
  font-size: 24px;
  width: -webkit-calc(100% - 170px);
  width: calc(100% - 170px);
  margin-left: auto;
  font-weight: 500;
  padding-bottom: 20px;
  border-bottom: 1px solid #e3e3e3;
}

.profile-card .subname {
  font-size: 18px;
  padding-bottom: 10px;
}

.user-profile .info,
.profile-card .info {
  margin-left: auto;
  margin-bottom: 15px;
  width: -webkit-calc(100% - 170px);
  width: calc(100% - 170px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.user-profile .buttons {
  width: -webkit-calc(100% - 170px);
  width: calc(100% - 170px);
  margin-left: auto;
}

.user-profile .data-item,
.profile-card .data-item {
  margin-right: 30px;
}

.user-profile .data-item .data,
.user-profile .user-item .user-data,
.profile-card .data-item .data,
.profile-card .user-item .user-data {
  padding: 10px 0;
}

.user-profile .data-item .data,
.profile-card .data-item .data {
  font-weight: 600;
  color: #000;
}

.user-profile .user-item .user-data,
.profile-card .user-item .user-data {
  color: #999;
}

.support {
  margin-top: 10px;
}

.support-list .item {
  padding: 25px;
}

.support-list .item .block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.support-list .item .block .text {
  width: 30%;
  padding: 10px 0;
  font-weight: 600;
  color: #000;
}

.support-list .item .block .user-text {
  width: 70%;
  padding: 10px 0;
  color: #999;
}

.support-list .item .question {
  margin-top: 10px;
}

.user-events .theme-item {
  margin-bottom: 15px;
}

.new-member {
  width: -webkit-calc(100% - 100px);
  width: calc(100% - 100px);
  margin: auto;
  padding: 15px 0;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}

.new-member .text {
  color: #333;
  line-height: 22px;

  text-align: center;
  margin: auto;
  margin-bottom: 50px;
}

.new-member input {
  display: none;
}

.new-member a {
  text-decoration: none;
  color: #f5b936;
}

.new-member label.checkbox-v4,
.mailing .item label.checkbox-v4 {
  width: 30px;
  height: 20px;
  position: relative;
  display: inline-block;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background: #e4e4e4;
  cursor: pointer;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.new-member label.checkbox-v4:before,
.mailing .item label.checkbox-v4:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  display: block;
  border: 2px solid #dadada;
  width: 20px;
  height: 20px;
  background: #fff;
  -webkit-border-radius: 30px;
  border-radius: 30px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.new-member input:checked ~ label.checkbox-v4:before,
.mailing .item form input:checked ~ label.checkbox-v4:before {
  content: "";
  left: 10px;
  border: 2px solid #353535;
}

.new-member input:checked ~ label.checkbox-v4,
.mailing .item form input:checked ~ label.checkbox-v4 {
  background: #353535;
}

textarea,
input[type="text"],
input[type="password"],
input[type="date"],
select {
  font-family: "Open Sans", sans-serif;
  width: 100%;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  outline: none;
  display: block;
  height: 39px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  font-size: 14px;
  padding: 0 15px;
  color: #555;
  background-color: #ffffff;
  outline: none;
  border: 1px solid #e3e3e3;
}

textarea:focus,
input[type="date"]:focus,
input[type="text"]:focus,
select:focus,
input[type="password"]:focus {
  border: 1px solid #ccc;
  color: #000;
  background-color: #fffaef;
}

textarea {
  border: 1px solid #e3e3e3;
  min-width: 100%;
  padding: 10px 15px;
  resize: none;
  min-height: 42px;
}

textarea::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 4px;
  border-radius: 4px;
  background-color: #a0a0a0;
}

textarea::-webkit-scrollbar {
  width: 5px;
  background-color: #696969;
}

textarea::-webkit-scrollbar-thumb {
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #696969;
}

textarea.required-error,
input[type="text"].required-error,
input[type="password"].required-error,
input[type="date"].required-error,
select.required-error {
  background: #fee;
}

textarea:disabled,
input[type="text"]:disabled,
select:disabled {
  color: #999;
}

.search .search-list .item {
  display: block;
  text-decoration: none;
}

.search .search-form,
.search .search-list .item {
  margin-bottom: 15px;
  position: relative;
  padding: 15px 20px;
  background: #fff;
  border: 1px solid #f3f3f3;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  border-bottom: 1px solid #e3e3e3;
}

.search .search-form .btn-2 {
  position: absolute;
  top: 20px;
  right: 25px;
  border: none;
}

.search .search-form .search-result {
  margin-top: 10px;
  color: #555;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 15px;
  font-family: "Oswald", sans-serif;
}

.search .search-list .item .title {
  color: #000;
  font-weight: 600;
  font-size: 14px;
}

.search .search-list .item .date {
  margin-top: 15px;
  color: #999;
  font-size: 12px;
}

.instruction h1 {
  text-transform: uppercase;
  padding: 50px 0 20px;
}

.instruction p span {
  font-weight: 700;
  color: #f7b936;
}

.instruction ul li span {
  font-weight: 700;
}

.instruction img {
  width: 100%;
  margin-bottom: 20px;
}

.instruction .title {
  padding: 2px 15px 5px 0;
  font-size: 1.5em;
  background: #f7b936;
  color: #fff;
}

.instruction .title span {
  margin-right: 15px;
  padding: 2px 15px 5px 15px;
  font-weight: 700;
  background: #292728;
}

.instruction .alert {
  font-weight: 700;
  color: red;
  margin-bottom: 20px;
}

.instruction .alert p {
  margin: 0;
  color: #000;
  font-weight: 400;
  font-size: 14px;
  font-style: italic;
}

.program-list {
  padding: 15px 20px;
  background: #fff;
  border: 1px solid #f3f3f3;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  border-bottom: 1px solid #e3e3e3;
}

.program-list .block-logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 150px;
  margin-bottom: 20px;
}

.program-list .block-logo .item:first-child {
  width: 20%;
  background: url(../img/sponsor/img-1.jpg) center no-repeat;
  -webkit-background-size: 80% 80%;
  background-size: 80%;
}

.program-list .block-logo .item:nth-child(2) {
  width: 60%;
  background: url(../img/welcome/logo.svg) center no-repeat;
}

.program-list .block-logo .item:last-child {
  width: 20%;
  background: url(../img/sponsor/img-2.png) center no-repeat;
  -webkit-background-size: 100% 100%;
  background-size: 100%;
}

.program-list .date {
  color: #999;
  margin-bottom: 20px;
}

.program-list .block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background: #f5f5f5;
  border-bottom: 1px solid #e3e3e3;
  position: relative;
}

.program-list .block:before,
.program-list .block:after {
  content: "";
  width: 20%;
  height: 100%;
  position: absolute;
  top: 0;
}

.program-list .block:before {
  border-right: 1px solid #e3e3e3;
  left: 0;
}

.program-list .block:after {
  border-left: 1px solid #e3e3e3;
  right: 0;
}

.program-list .block-main:after {
  border: none;
  right: 0;
}

.program-list .block-main:before {
  content: "";
  width: 20%;
  height: 100%;
  border-right: 1px solid #fff;
  position: absolute;
}

.program-list .block.border {
  margin-bottom: 10px;
  border: none;
}

.program-list .block .item:last-child,
.program-list .block .item:first-child,
.program-list .block-main .item:first-child {
  width: 20%;
}

.program-list .block .item:nth-child(2) {
  width: 60%;
  text-align: left;
  padding-left: 10px;
}

.program-list .block-main .item:last-child {
  width: 80%;
  text-align: center;
  padding-left: 0;
}

.program-list .block-main .item:last-child b:first-child {
  text-transform: uppercase;
}

.program-list .block .item {
  line-height: 1.9;
  text-align: center;
  padding: 10px 0;
}

.program-list .block-main {
  background: #f7b936;
  margin-bottom: 10px;
}

.program-list .block-main:last-child {
  margin-bottom: 0;
}

.program-list .block-main .item:first-child .sub-item {
  font-weight: 600;
}

.program-list .block-main .item:nth-child(2) .sub-item:first-child {
  text-transform: uppercase;
  font-weight: 600;
}

.about-link {
  text-decoration: none;
  display: block;
  margin-top: 40px;
  text-align: center;
  color: #f4b936;
  -webkit-transition: all 0.7s;
  -o-transition: all 0.7s;
  transition: all 0.7s;
}

.about-link:hover {
  color: #333;
}

.common.common-map {
  padding-top: 40px;
}
.common.common-online {
  padding-top: 40px;
}
.common.common-online .common-header_online {
  color: #bb2128;
}
.common-header.common-header_map {
  margin: 0 0 40px 0;
  text-align: center;
  font-family: "Oswald";
  font-size: 30px;
  padding: 0;
  text-transform: none;
}

.map-block {
  padding: 15px 20px;
  border: 1px solid #f3f3f3;
  background: #fff;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  border-bottom: 1px solid #e3e3e3;
  margin-bottom: 50px;
}
.map {
  min-height: 320px;
  background: url(/upload/venue/map.png) center no-repeat;
  overflow-x: hidden;
  -webkit-filter: grayscale(60%);
  -moz-filter: grayscale(60%);
  -ms-filter: grayscale(60%);
  -o-filter: grayscale(60%);
  filter: grayscale(60%);
  -webkit-filter: gray;
  filter: gray;
  opacity: 0.6;
  -webkit-background-size: cover;
  background-size: cover;
}
.about-page-title {
  background: #fff;
  padding: 15px;
  border: 1px solid #f3f3f3;
  border-bottom: 1px solid #e3e3e3;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
.about-page-title a {
  text-decoration: none;
  color: #333;
  font-weight: 400;
  line-height: 25px;
  text-align: justify;
}

.about-page-title .blocks {
/*  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: 1fr 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 15px;
 */
}
.about-page-title .blocks .block:nth-child(2) {
  position: relative;
}
.about-page-title .blocks .block:nth-child(2):before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&0+0,1+100 */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: -o-linear-gradient(
          top,
          rgba(255, 255, 255, 0) 0%,
          rgba(255, 255, 255, 1) 100%
  );
  background: -webkit-gradient(
          linear,
          left top,
          left bottom,
          from(rgba(255, 255, 255, 0)),
          to(rgba(255, 255, 255, 1))
  );
  background: -webkit-gradient(
          linear,
          left top,
          left bottom,
          from(rgba(255, 255, 255, 0)),
          to(rgba(255, 255, 255, 1))
  );
  background: -webkit-linear-gradient(
          top,
          rgba(255, 255, 255, 0) 0%,
          rgba(255, 255, 255, 1) 100%
  );
  background: -webkit-gradient(
          linear,
          left top,
          left bottom,
          from(rgba(255, 255, 255, 0)),
          to(rgba(255, 255, 255, 1))
  );
  background: -webkit-gradient(
          linear,
          left top,
          left bottom,
          from(rgba(255, 255, 255, 0)),
          to(rgba(255, 255, 255, 1))
  );
  background: -webkit-gradient(
          linear,
          left top,
          left bottom,
          from(rgba(255, 255, 255, 0)),
          to(rgba(255, 255, 255, 1))
  );
  background: -webkit-gradient(
          linear,
          left top,
          left bottom,
          from(rgba(255, 255, 255, 0)),
          to(rgba(255, 255, 255, 1))
  );
  background: -webkit-gradient(
          linear,
          left top,
          left bottom,
          from(rgba(255, 255, 255, 0)),
          to(rgba(255, 255, 255, 1))
  );
  background: -webkit-gradient(
          linear,
          left top,
          left bottom,
          from(rgba(255, 255, 255, 0)),
          to(rgba(255, 255, 255, 1))
  );
  background: -webkit-gradient(
          linear,
          left top, left bottom,
          from(rgba(255, 255, 255, 0)),
          to(rgba(255, 255, 255, 1))
  );
  background: linear-gradient(
          to bottom,
          rgba(255, 255, 255, 0) 0%,
          rgba(255, 255, 255, 1) 100%
  );
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=0);
  /* IE6-9 */
}
/*
.about-page-title .blocks .block:nth-child(2) {
  background: url(../img/kc.jpg) 50% 36% no-repeat;
  -webkit-background-size: 100% 100%;
  background-size: 100%;
}
.about-page-title img {
  width: 100%;
}
.about-page-title .block p:first-child {
  margin: 0 0 14px;
}
*/
.about-page-title .blocks .block:nth-child(1) {
  -webkit-background-size: 100% 100%;
  background-size: 100%;
}

.about-link {
  margin-top: 40px;
  display: block;
  text-decoration: none;
  text-align: center;
  color: #f4b936;
  -webkit-transition: 0.7s;
  -o-transition: 0.7s;
  transition: 0.7s;
}
.about-link:hover {
  color: #444;
}
@media (max-width: 991px) {
  .about-link:hover {
    color: #f4b936;
  }
  .about-page-title .blocks .block:nth-child(2) {
    /*background: url(../img/kc.jpg) 80% 50% no-repeat;*/
    -webkit-background-size: cover;
    background-size: cover;
  }
}

@media (max-width: 767px) {
  .about-page-title .title {
    text-align: center;
    margin: 40px 30px;
  }
  .about-page-title .blocks {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .about-page-title .blocks .block:first-child {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }
  .about-page-title .blocks .block:nth-child(2) {
    /*background: url(../img/kc.jpg) 50% 20% no-repeat;*/
    -webkit-background-size: 100% 100%;
    background-size: 100%;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
    height: 357px;
    margin-bottom: 14px;
    overflow: hidden;
  }

  .about-sign {
    margin-top: 40px;
  }
}
.agenda {
  padding: 15px 20px;
  background: #fff;
  border: 1px solid #f3f3f3;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  border-bottom: 1px solid #e3e3e3;
}

.agenda .block-logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 150px;
  margin-bottom: 20px;
}

.agenda .block-logo .item:first-child {
  width: 20%;
  background: url(../public/template/img/sponsor/img-1.jpg) center no-repeat;
  -webkit-background-size: 80% 80%;
  background-size: 80%;
}

.agenda .block-logo .item:nth-child(2) {
  width: 60%;
  background: url(../public/template/img/welcome/logo.svg) center no-repeat;
}

.agenda .block-logo .item:last-child {
  width: 20%;
  background: url(../public/template/img/sponsor/img-2.png) center no-repeat;
  -webkit-background-size: 100% 100%;
  background-size: 100%;
}

.agenda .date {
  color: #999;
  margin-bottom: 20px;
}
.agenda .block-main,
.agenda .block-sub {
  background: rgba(247, 185, 54, 1);
  margin-bottom: 10px;
  padding: 10px 0;
  text-align: center;
  font-weight: 700;
}
.agenda .block-sub {
  background: rgba(247, 185, 54, 0.6);
  font-weight: 600;
}
.agenda .block {
  background: #f5f5f5;
  padding: 10px 20px;
  margin-bottom: 10px;
}
.agenda .block:last-child {
  margin-bottom: 0;
}
.agenda .block ul,
.agenda .block ol {
  margin: 0;
}
.agenda .block li ol {
  padding: 0;
}
.agenda .block ul li,
.agenda .block ol li {
  margin-bottom: 10px;
}
.agenda .block ul li:last-child,
.agenda .block ol li:last-child {
  margin-bottom: 0;
}
.agenda .sub-list {
  margin: 10px 0;
  list-style-type: none;
}
.agenda .sub-list:first-child:before {
  content: "6a ";
}
.agenda .sub-list:nth-child(2):before {
  content: "6b ";
}
.agenda .sub-list:nth-child(3):before {
  content: "6c ";
}
.agenda .sub-list:nth-child(4):before {
  content: "6d ";
}
.agenda .sub-list:nth-child(5):before {
  content: "6e ";
}
.agenda .sub-list:nth-child(6):before {
  content: "6f ";
}
.agenda .sub-list:nth-child(7):before {
  content: "6g ";
}
.agenda .sub-list.num:first-child:before {
  content: "1. ";
}
.agenda .sub-list.num:nth-child(2):before {
  content: "2. ";
}
.agenda .sub-list.num:nth-child(3):before {
  content: "3. ";
}
.agenda .sub-list.num:nth-child(4):before {
  content: "4. ";
}
.agenda .sub-list.num:nth-child(5):before {
  content: "5. ";
}
.agenda .sub-list.num:nth-child(6):before {
  content: "6a ";
}
.agenda .sub-list.num:nth-child(7):before {
  content: "6b ";
}
.agenda .sub-list.num:nth-child(8):before {
  content: "7. ";
}
.agenda .sub-list.num:nth-child(9):before {
  content: "8. ";
}

.agenda .link {
  color: #f4b936;
  -webkit-transition: all 0.7s;
  -o-transition: all 0.7s;
  transition: all 0.7s;
}
.agenda .application-link {
  list-style-type: none;
  padding: 0 10px;
}
.agenda .application-link.application-link-2 {
  padding: 0 30px;
}
.agenda .application-link li {
  margin-top: 5px;
  margin-bottom: 5px !important;
}
@media (min-width: 991px) {
  .agenda .link:hover {
    color: #333;
  }
}
@media (max-width: 767px) {
  .agenda {
    padding: 15px 0;
  }
  .agenda .date {
    padding: 0 20px;
  }
}
@media (max-width: 600px) {
  .agenda .block-logo {
    display: none;
  }
}
/**************************** BEGIN FOOTER**************************/
.footer {
  background-color: #333 !important;
  padding-top: 51px;
  color: #ccc;
}

.footer-container {
  width: 100%;
  max-width: 1040px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin: 0 auto;
  margin-bottom: 51px;
  padding: 0 20px;
}

.footer-logo {
  margin-right: 50px;
  width: 254px;
  height: 252px;
  background: #333 url(../img/footer/footer-logo.png) center no-repeat;
  -webkit-background-size: 100% 100%;
  background-size: 100%;
}

.footer-title {
  margin-bottom: 25px;
  font-family: "Oswald", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
  text-transform: uppercase;
}

.footer-info {
  margin-right: 50px;
  width: 73%;
}

.footer-info_text {
  margin-left: 20px;
}

.footer-info_arrow {
  width: 10px;
  height: 10px;
  background: url(../img/footer/bullet.png) center no-repeat;
  position: absolute;
  top: 5px;
  left: -5px;
}

.footer-info_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;

  font-weight: 400;
  line-height: 20px;
  text-decoration: none;
  color: #ccc;
  position: relative;
}

.footer-info_item span {
  margin-right: 11px;
  margin-bottom: 10px;
}

.footer-link {
  height: 100%;
  margin-bottom: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none;
}
.footer-link span[data-social="twitter"] {
  width: 16px;
  height: 16px;
  margin-right: 10px;
  -webkit-transition: all 0.15s;
  -o-transition: all 0.15s;
  transition: all 0.15s;
  background: url(/public/template/img/links/twitter.svg) center no-repeat;
}
.footer-link span[data-social="meyou"] {
  width: 18px;
  height: 17px;
  margin-right: 10px;
  -webkit-transition: all 0.15s;
  -o-transition: all 0.15s;
  transition: all 0.15s;
  background: url(/public/template/img/links/emb.svg) center no-repeat;
}
.footer-link_icon {
  margin-right: 10px;
}

.footer-link_text {
  font-weight: 400;
  line-height: 30px;
  text-decoration: none;
  color: #ccc;
  -webkit-transition: all 0.15s;
  -o-transition: all 0.15s;
  transition: all 0.15s;
}

.footer-bottom_container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 12px;
  color: #777;
  padding: 10px 0;
  background-color: #292728;
}

.footer-bottom_copyright {
  margin-right: 3px;
}

.footer-bottom_icon {
  color: #777;
}

#popup {
  position: fixed;
  width: 100%;
  left: 0;
  bottom: 0;
}

#popup .message {
  display: block;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  opacity: 0.9;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  padding: 15px 20px;
}

#popup .message:hover {
  opacity: 1;
}

#popup .message.error {
  background: #cf3a3a;
}

#popup .message.good {
  background: #57b349;
}

/**************************** END MOBILE**************************/
/**************************** BEGIN MEDIA**************************/
@media (min-width: 1199px) {
  .header-social a[data-social="twitter"]:hover {
    background: url(/public/template/img/links/twitter-hover.svg) center
    no-repeat;
  }
  .header-social a[data-social="meyou"]:hover {
    background: url(/public/template/img/links/emb-hover.svg) center no-repeat;
  }
  .header-social a[data-social="meyou"]:hover:before {
    color: #f4b936;
  }
  .footer-link:hover .footer-link_text {
    color: #f4b936;
  }
  .footer-link:hover.footer-link span[data-social="twitter"] {
    background: url(/public/template/img/links/twitter-hover.svg) center
    no-repeat;
  }
  .footer-link:hover.footer-link span[data-social="meyou"] {
    background: url(/public/template/img/links/emb-hover.svg) center no-repeat;
  }
}
@media (max-width: 1199px) {
  .modal {
    width: 50vw;
  }

  .main {
    height: 60px;
  }

  .main-nav a:nth-child(n + 1) {
    line-height: 60px;
  }

  .main-nav a:first-child {
    line-height: 60px;
  }

  .common {
    padding-top: 100px;
  }

  .main-logo {
    -ms-flex-preferred-size: 140px;
    -webkit-flex-basis: 140px;
    flex-basis: 140px;
    width: 140px;
    min-width: 140px;
  }

  .welcome:before {
    width: 78%;
    left: -214px;
  }
}

@media (max-width: 991px) {
  .modal {
    width: 60vw;
  }

  /*   .main-user_title span:first-child {
       display: none;
  }
 */
  .main-user_icon {
    margin-left: 0;
  }

  .welcome-logo {
    display: none;
  }

  .welcome-info_btn {
    text-align: center;
  }
  .welcome-day-block {
    margin: 0;
  }

  .footer-logo {
    display: none;
  }

  .welcome-container {
    height: 400px;
    padding: 0 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }

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

  .welcome-info_btn {
    margin: 0 auto;
  }

  .welcome-block {
    margin-left: 0;
  }

  .welcome-timer_block {
    width: 25%;
    margin-left: 20px;
  }

  .welcome-timer_block:first-child {
    margin-left: 0;
  }

  .main-nav a:nth-child(n + 1):hover:before {
    display: none;
  }

  .main-nav a:first-child:hover:after {
    display: none;
  }

  .event-users .user .img {
    width: 35px;
    height: 35px;
    top: 25px;
  }

  .event-users .user .name,
  .event-users .user .country {
    margin-left: 55px;
    max-width: 400px;
  }

  .user-profile .buttons {
    bottom: -4px;
  }

  .event-users .user .btn-block,
  .event-users .user .message {
    position: static;
    margin-top: 10px;
  }

  .event-users .user .profile:first-child {
    margin-right: 10px;
  }

  .news-list {
    display: block;
  }

  .news-list .news-sidebar .last-news {
    display: none;
  }

  .news-subscribe {
    height: 73px;
  }

  .news-subscribe .form-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }

  .news-subscribe .form-item .title {
    text-align: left;
    -ms-flex-preferred-size: 25%;
    -webkit-flex-basis: 25%;
    flex-basis: 25%;
    margin-bottom: 0;
  }

  .news-subscribe .form-item .value {
    -ms-flex-preferred-size: 58%;
    -webkit-flex-basis: 58%;
    flex-basis: 58%;
  }

  .news-subscribe .form-item .value:nth-child(2) {
    margin-bottom: 0;
  }

  .news-subscribe .form-item .value:nth-child(3) {
    text-align: right;
    -ms-flex-preferred-size: 0;
    -webkit-flex-basis: 0;
    flex-basis: 0;
    margin-left: auto;
  }

  .news-subscribe .form-item .value .btn-2 {
    margin-bottom: 0;
    margin-left: 20px;
  }
}

@media (max-width: 810px) {
  .album-list {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item {
    width: 33.33%;
  }

  .video-gallery-item {
    width: 33.33%;
  }

  .event-single {
    display: block;
  }

  .event-single .theme {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
    border-bottom: 0;
  }

  .place {
    width: 100%;
  }

  .user-profile .img,
  .profile-card .img {
    width: 250px;
    min-height: 250px;
    background: center no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    position: static;
  }

  .user-profile .name,
  .profile-card .name,
  .profile-card .subname {
    width: 100%;
  }

  .user-profile .info,
  .profile-card .info {
    width: 100%;
  }

  .user-profile .buttons {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .modal {
    width: 82vw;
    top: 10vh;
  }

  .main-logo {
    display: none;
  }

  .main-nav:before {
    display: none;
  }

  .news-list .blocks .block .img {
    display: none;
  }

  .news-subscribe {
    height: 145px;
  }

  .news-subscribe .form-item {
    display: block;
    margin-bottom: 5px;
  }

  .news-subscribe .form-item .title {
    margin-bottom: 10px;
    margin-right: 0;
  }

  .news-subscribe .form-item .value:nth-child(2) {
    margin-bottom: 15px;
  }

  .news-subscribe .form-item .value:nth-child(3) {
    text-align: left;
    -ms-flex-preferred-size: 0;
    -webkit-flex-basis: 0;
    flex-basis: 0;
    margin-left: 0;
  }

  .news-subscribe .form-item .value .btn-2 {
    margin-left: 0;
    display: inline-block;
  }

  .news-list .blocks .block > .info > .date {
    margin-bottom: 5px;
  }

  .personal-area > .navigation {
    width: 212px;
  }

  .personal-area > .content {
    width: -webkit-calc(100% - 240px);
    width: calc(100% - 240px);
  }

  .photo-single .block {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .program-list {
    padding: 15px 0;
  }

  .program-list .item {
    font-size: 12px;
  }

  .program-list .block .item:first-child,
  .program-list .block-main .item:first-child {
    width: 25%;
  }

  .program-list .block:before {
    width: 25%;
  }

  .program-list .block .item:nth-child(2) {
    width: 55%;
  }

  .program-list .date {
    padding-left: 15px;
  }
}

@media (max-width: 792px) {
  .welcome-container {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }

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

  .welcome-info_btn {
    margin: 0 auto;
    width: 100%;
  }

  .new-member {
    width: -webkit-calc(100% - 10px);
    width: calc(100% - 10px);
  }
}

@media (max-width: 900px) {
  /* ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â·ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¼ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂµÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â½ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¸ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¹ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¹ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â½ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â° 700 */
  .album-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .header,
  .main {
    display: none;
  }

  .welcome {
    padding-top: 20px;
    padding-bottom: 50px;
  }

  .welcome-container {
    height: 350px;
  }

  .welcome-block {
    margin-left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }

  .welcome-title {
    margin-top: 45px;
    text-align: center;
  }

  .welcome-timer {
    margin-left: 0;
    margin: 0 auto;
    width: 100%;
  }

  .welcome-timer_num {
    font-size: 40px;
    width: 100%;
  }

  .welcome-timer_text {
    margin-bottom: 30px;
  }

  .welcome-timer_block {
    margin-left: 30px;
  }

  .welcome-info {
    display: block;
    width: 100%;
    font-size: 12px;
  }
  .welcome-day-block {
    padding-top: 75px;
  }
  .mobile {
    display: block;
  }

  .footer {
    padding-top: 0;
  }

  .footer-container {
    display: none;
  }

  .welcome-timer_text {
    margin-left: 0;
    padding-top: 10px;
  }

  .welcome-timer_num {
    padding-bottom: 10px;
  }

  .common {
    padding-top: 60px;
  }

  .news-list > .block > .info > .text {
    text-align: justify;
  }

  .docs-tabs {
    display: none;
  }

  .docs-single .theme {
    width: 100%;
  }

  .docs-files {
    margin-top: 30px;
    position: static;
    width: 100%;
  }

  .comments {
    width: 100%;
  }

  .album-list .item .photo {
    max-width: 100%;
  }

  .gallery-item {
    width: 100%;
  }

  .video-gallery-item {
    width: 100%;
  }

  .date-item:last-child {
    margin-right: 0;
  }

  .date-item .time span {
    display: none;
  }

  .date-item .date {
    font-size: 32px;
    padding-bottom: 2px;
  }

  .dates:before {
    display: none;
  }

  .theme-item {
    padding: 20px;
  }

  .theme-item .title {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .theme-item .text {
    display: none;
  }

  .theme-item .img {
    position: static;
    width: 100%;
    margin-bottom: 5px;
  }

  .theme-item .location {
    margin-bottom: 5px;
  }

  .theme-item .time {
    margin-bottom: 5px;
  }

  .event-single .theme .img {
    width: 100%;
    float: none;
    margin-right: 0;
  }

  .personal-area > .navigation {
    display: none;
  }

  .personal-area > .content {
    width: 100%;
    margin: 0;
  }

  .form-item {
    display: block;
  }

  .mailing .form-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }

  .new-member {
    width: 100%;
  }

  .new-member .title {
    text-align: left;
    display: inline-block;
    min-width: 0;
    margin-bottom: 5px;
  }

  .new-member_mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }

  .new-member_mobile .title {
    text-align: left;
    min-width: 40px;
    -ms-flex-preferred-size: 40px;
    -webkit-flex-basis: 40px;
    flex-basis: 40px;

    padding-top: 3px;
  }

  .enter-personal > form .form-item .title,
  .admin-form > form .form-item .title,
  .password-reduction > form .form-item .title,
  .support > form .form-item .title {
    text-align: left;
    display: inline-block;
    min-width: 0;
    margin-bottom: 5px;
  }

  .enter-personal {
    width: 100%;
  }

  .password-reduction {
    width: 100%;
  }

  .user-events .theme-item {
    padding: 25px;
  }

  .search .search-form .btn-2 {
    position: static;
    margin-top: 15px;
    margin-bottom: 0;
  }
}

.login-token-content {
  margin: auto;
  margin-bottom: 20px;
  text-align: center;
}

.login-token-content a {
  color: #f4b936;
}

@media (max-width: 600px) {
  .program-list .block-logo {
    display: none;
  }
  .program-list .block-main .item:last-child {
    width: 55%;
    display: block !important;
  }

  .program-list .block .item:last-child {
    display: none;
  }

  .program-list .block:after {
    display: none;
  }

  .program-list .block .item:nth-child(2) {
    width: 70%;
  }

  .program-list .block:before {
    width: 30%;
  }

  .program-list .block .item:first-child,
  .program-list .block-main .item:first-child {
    width: 30%;
  }
}

@media (max-width: 575px) {
  .news-subscribe .form-item .value .btn-2 {
    display: block;
  }

  .news-subscribe .form-item .value:nth-child(2) {
    margin-bottom: 15px;
  }

  .photo-single .block {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
  .sponsor-img {
    width: 70%;
  }
  .welcome-day-block .text {
    font-size: 22px;
    text-align: center;
  }
}

@media (max-width: 500px) {
  .welcome-timer_num {
    font-size: 35px;
  }

  .welcome-timer_text {
    font-size: 15px;
    font-weight: 600;
  }

  .welcome-timer_block {
    margin-left: 12px;
  }

  .search-user {
    border: none;
    padding: 0;
  }

  .search-user .user input[type="text"] {
    width: 100%;
    border: 1px solid #e3e3e3;
    margin-bottom: 5px;
  }

  .search-user .country select {
    position: static;
    width: 100%;
    border: 1px solid #e3e3e3;
    -webkit-border-radius: 3px;
    border-radius: 3px;
  }

  .search-user .btn-2 {
    position: static;
    margin-top: 5px;
  }

  .user-profile .img,
  .profile-card .img {
    width: 100%;
  }

  .letters .text {
    margin-left: 0;
  }

  .support-list .item .block {
    display: block;
  }

  .support-list .item .block .text,
  .support-list .item .block .user-text {
    width: 100%;
    padding: 0;
    margin-bottom: 10px;
  }

  .support-list .item .question {
    margin-top: 0;
  }
}

@media (max-width: 435px) {
  .letters .user-list .user .start {
    position: static;
    margin-top: 10px;
  }

  .letters .user-list .user .new-message {
    top: 96px;
    left: 117px;
  }

  .user-profile .edit,
  .user-profile .message {
    position: static;
    width: 80%;
    display: block;
    margin: 0 auto;
    text-align: center;
  }

  .user-profile .edit {
    margin-bottom: 10px;
  }

  .letters .date {
    text-align: left;
    float: none;
    margin-left: 55px;
  }

  .letters .message .img {
    top: -32px;
    left: -55px;
  }

  .support-chat .block {
    display: block;
  }

  .support-chat .message-send {
    text-align: center;
  }

  .support-chat .send .btn-2 {
    width: 80%;
  }

  .support-chat .message-send .btn-2:last-child {
    margin-left: 0;
  }

  .photo-single .title a {
    display: block;
  }

  .photo-single .share a {
    display: block;
    margin-left: 0;
    margin-top: 5px;
  }

  .photo-single .block {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 350px) {
  .event-users .user .profile,
  .event-users .user .message {
    width: 100%;
    text-align: center;
  }

  .letters .user-list .user {
    width: 238px;
  }

  .letters .user-list .user .start {
    display: block;
    margin: 10px auto 0 auto;
    width: 170px;
    text-align: center;
  }

  .letters .user-list .user .new-message {
    top: 97px;
    left: 192px;
  }

  .user-events .theme-item .more {
    width: 100%;
    text-align: center;
    margin-bottom: 5px;
  }

  .user-events .theme-item .delete {
    width: 100%;
    text-align: center;
  }
}

.width-100 {
  width: 100%;
}

.img-responsive {
  max-width: 100%;
}

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

/**************************** END MEDIA**************************/
