
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_ed59d6af0898067151a81621.woff')format("woff");}.ff1{font-family:ff1;line-height:1.091000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_0f93d15a5d4d5e80d1166f41.woff')format("woff");}.ff2{font-family:ff2;line-height:1.022000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_969cb9571baca2e16302c591.woff')format("woff");}.ff3{font-family:ff3;line-height:0.724000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_f4b4d76d5edc682ccc6f5827.woff')format("woff");}.ff4{font-family:ff4;line-height:1.037000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_8127c9789cc1a7b473443807.woff')format("woff");}.ff5{font-family:ff5;line-height:0.678000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_ce29bbe36d323c3d4d4c2efa.woff')format("woff");}.ff6{font-family:ff6;line-height:0.746000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_329828cfb6f6718c5f4f8aed.woff')format("woff");}.ff7{font-family:ff7;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff8{font-family:sans-serif;visibility:hidden;}
.ff9{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffa;src:url('chunks/assets/font_01f4913cafa8ffa719989b5b.woff')format("woff");}.ffa{font-family:ffa;line-height:0.998000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_7369a7ee48cf77e9ed0b162e.woff')format("woff");}.ffb{font-family:ffb;line-height:0.907000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ffc{font-family:sans-serif;visibility:hidden;}
.ffd{font-family:sans-serif;visibility:hidden;}
.ffe{font-family:sans-serif;visibility:hidden;}
.fff{font-family:sans-serif;visibility:hidden;}
.ff10{font-family:sans-serif;visibility:hidden;}
.ff11{font-family:sans-serif;visibility:hidden;}
.ff12{font-family:sans-serif;visibility:hidden;}
.ff13{font-family:sans-serif;visibility:hidden;}
.ff14{font-family:sans-serif;visibility:hidden;}
.ff15{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff16;src:url('chunks/assets/font_6af9f1be428b554cef9180aa.woff')format("woff");}.ff16{font-family:ff16;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_e83cabffae19ab4a48cfc973.woff')format("woff");}.ff17{font-family:ff17;line-height:1.037000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff18{font-family:sans-serif;visibility:hidden;}
.ff19{font-family:sans-serif;visibility:hidden;}
.ff1a{font-family:sans-serif;visibility:hidden;}
.ff1b{font-family:sans-serif;visibility:hidden;}
.ff1c{font-family:sans-serif;visibility:hidden;}
.ff1d{font-family:sans-serif;visibility:hidden;}
.ff1e{font-family:sans-serif;visibility:hidden;}
.ff1f{font-family:sans-serif;visibility:hidden;}
.ff20{font-family:sans-serif;visibility:hidden;}
.ff21{font-family:sans-serif;visibility:hidden;}
.ff22{font-family:sans-serif;visibility:hidden;}
.ff23{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff24;src:url('chunks/assets/font_37b962024ca2c8418ac30945.woff')format("woff");}.ff24{font-family:ff24;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_f781e4065e6b50fb66c17cdf.woff')format("woff");}.ff25{font-family:ff25;line-height:0.907000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff26{font-family:sans-serif;visibility:hidden;}
.ff27{font-family:sans-serif;visibility:hidden;}
.ff28{font-family:sans-serif;visibility:hidden;}
.ff29{font-family:sans-serif;visibility:hidden;}
.ff2a{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff2b;src:url('chunks/assets/font_fa3d27e47b45248610ff2c47.woff')format("woff");}.ff2b{font-family:ff2b;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff2c{font-family:sans-serif;visibility:hidden;}
.ff2d{font-family:sans-serif;visibility:hidden;}
.ff2e{font-family:sans-serif;visibility:hidden;}
.ff2f{font-family:sans-serif;visibility:hidden;}
.ff30{font-family:sans-serif;visibility:hidden;}
.ff31{font-family:sans-serif;visibility:hidden;}
.ff32{font-family:sans-serif;visibility:hidden;}
.ff33{font-family:sans-serif;visibility:hidden;}
.ff34{font-family:sans-serif;visibility:hidden;}
.ff35{font-family:sans-serif;visibility:hidden;}
.ff36{font-family:sans-serif;visibility:hidden;}
.ff37{font-family:sans-serif;visibility:hidden;}
.ff38{font-family:sans-serif;visibility:hidden;}
.ff39{font-family:sans-serif;visibility:hidden;}
.ff3a{font-family:sans-serif;visibility:hidden;}
.ff3b{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff3c;src:url('chunks/assets/font_7322a6973890ab463c12667c.woff')format("woff");}.ff3c{font-family:ff3c;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff3d{font-family:sans-serif;visibility:hidden;}
.ff3e{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff3f;src:url('chunks/assets/font_efa73992ea62e93fb5c90812.woff')format("woff");}.ff3f{font-family:ff3f;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff40;src:url('chunks/assets/font_0f13cbc256fc35c89c3cb382.woff')format("woff");}.ff40{font-family:ff40;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff41;src:url('chunks/assets/font_877556e6adfcc307dd30dbd1.woff')format("woff");}.ff41{font-family:ff41;line-height:1.022000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff42;src:url('chunks/assets/font_2afa862f1994e22819bdbe7b.woff')format("woff");}.ff42{font-family:ff42;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff43;src:url('chunks/assets/font_e18e340405f03d78d1a953de.woff')format("woff");}.ff43{font-family:ff43;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff44{font-family:sans-serif;visibility:hidden;}
.ff45{font-family:sans-serif;visibility:hidden;}
.ff46{font-family:sans-serif;visibility:hidden;}
.ff47{font-family:sans-serif;visibility:hidden;}
.ff48{font-family:sans-serif;visibility:hidden;}
.ff49{font-family:sans-serif;visibility:hidden;}
.ff4a{font-family:sans-serif;visibility:hidden;}
.ff4b{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff4c;src:url('chunks/assets/font_745a25f8ec9f443d249e24f3.woff')format("woff");}.ff4c{font-family:ff4c;line-height:0.998000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4d;src:url('chunks/assets/font_a886f68e9454a46d05d8a9f9.woff')format("woff");}.ff4d{font-family:ff4d;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff4e{font-family:sans-serif;visibility:hidden;}
.ff4f{font-family:sans-serif;visibility:hidden;}
.ff50{font-family:sans-serif;visibility:hidden;}
.ff51{font-family:sans-serif;visibility:hidden;}
.ff52{font-family:sans-serif;visibility:hidden;}
.ff53{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff54;src:url('chunks/assets/font_f2c959d5b8f64f9bd70a6db7.woff')format("woff");}.ff54{font-family:ff54;line-height:1.037000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff55;src:url('chunks/assets/font_c996dcd05713f25b557f1ef9.woff')format("woff");}.ff55{font-family:ff55;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff56{font-family:sans-serif;visibility:hidden;}
.ff57{font-family:sans-serif;visibility:hidden;}
.ff58{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff59;src:url('chunks/assets/font_554ad783a4131210e9b6abf7.woff')format("woff");}.ff59{font-family:ff59;line-height:0.986816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff5a{font-family:sans-serif;visibility:hidden;}
.ff5b{font-family:sans-serif;visibility:hidden;}
.ff5c{font-family:sans-serif;visibility:hidden;}
.ff5d{font-family:sans-serif;visibility:hidden;}
.ff5e{font-family:sans-serif;visibility:hidden;}
.ff5f{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff60;src:url('chunks/assets/font_0c0a60832587c7f165703590.woff')format("woff");}.ff60{font-family:ff60;line-height:1.073000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff61;src:url('chunks/assets/font_c1d80c833e2251748ffbd843.woff')format("woff");}.ff61{font-family:ff61;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff62;src:url('chunks/assets/font_8b30db329cb3761fb3523853.woff')format("woff");}.ff62{font-family:ff62;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff63;src:url('chunks/assets/font_4afd0b35624efb5563b8033e.woff')format("woff");}.ff63{font-family:ff63;line-height:0.856000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff64;src:url('chunks/assets/font_de96ae8f91a9de0aff145132.woff')format("woff");}.ff64{font-family:ff64;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff65{font-family:sans-serif;visibility:hidden;}
.ff66{font-family:sans-serif;visibility:hidden;}
.ff67{font-family:sans-serif;visibility:hidden;}
.ff68{font-family:sans-serif;visibility:hidden;}
.ff69{font-family:sans-serif;visibility:hidden;}
.ff6a{font-family:sans-serif;visibility:hidden;}
.ff6b{font-family:sans-serif;visibility:hidden;}
.ff6c{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff6d;src:url('chunks/assets/font_982564e8e79b6fcf09ecac37.woff')format("woff");}.ff6d{font-family:ff6d;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6e;src:url('chunks/assets/font_76d31fbd47528a8c51792546.woff')format("woff");}.ff6e{font-family:ff6e;line-height:0.907000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6f;src:url('chunks/assets/font_2267f1afbddf1455d1ba7485.woff')format("woff");}.ff6f{font-family:ff6f;line-height:0.867000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff70;src:url('chunks/assets/font_1086a40430e23dfad07b6d5f.woff')format("woff");}.ff70{font-family:ff70;line-height:0.940000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-44.999998px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:49.499998px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:181.510485px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-130.184995px;}
.wsb{word-spacing:-80.351997px;}
.ws6{word-spacing:-71.423997px;}
.ws7{word-spacing:-26.999999px;}
.ws5{word-spacing:-24.732448px;}
.ws3{word-spacing:-24.120167px;}
.ws0{word-spacing:-23.399999px;}
.ws9{word-spacing:-21.743999px;}
.ws4{word-spacing:-21.599999px;}
.wsa{word-spacing:-17.999999px;}
.ws8{word-spacing:-13.710937px;}
.ws1{word-spacing:0.000000px;}
._2a{margin-left:-22.557366px;}
._28{margin-left:-13.402637px;}
._31{margin-left:-9.855071px;}
._1f{margin-left:-8.767070px;}
._4{margin-left:-7.054000px;}
._1{margin-left:-5.849919px;}
._3{margin-left:-4.411389px;}
._2{margin-left:-3.158593px;}
._0{margin-left:-1.169946px;}
._5{width:1.460203px;}
._18{width:2.546874px;}
._c{width:4.180413px;}
._9{width:5.461243px;}
._a{width:6.809417px;}
._14{width:7.953052px;}
._f{width:9.500016px;}
._16{width:10.500048px;}
._17{width:11.775188px;}
._15{width:12.976165px;}
._7{width:14.102900px;}
._6{width:15.413704px;}
._d{width:16.830997px;}
._e{width:18.055926px;}
._20{width:19.066603px;}
._27{width:20.859200px;}
._2b{width:23.399621px;}
._25{width:31.284985px;}
._26{width:32.500102px;}
._21{width:33.685088px;}
._19{width:38.248936px;}
._1a{width:40.207441px;}
._1c{width:41.908311px;}
._30{width:44.451471px;}
._2f{width:45.466454px;}
._10{width:46.928986px;}
._1b{width:51.223762px;}
._22{width:52.402473px;}
._23{width:53.738982px;}
._24{width:55.468913px;}
._29{width:64.285234px;}
._11{width:66.654733px;}
._12{width:67.939989px;}
._8{width:69.500602px;}
._1d{width:72.508986px;}
._2c{width:75.513985px;}
._2d{width:76.765814px;}
._1e{width:82.588533px;}
._32{width:85.812135px;}
._2e{width:95.624645px;}
._b{width:111.000280px;}
._13{width:216.001166px;}
.fcd{color:rgb(82,95,255);}
.fc7{color:rgb(255,255,255);}
.fcb{color:rgb(18,18,18);}
.fc1{color:rgb(48,165,232);}
.fc6{color:transparent;}
.fc2{color:rgb(0,14,51);}
.fca{color:rgb(42,20,183);}
.fc0{color:rgb(0,0,0);}
.fc5{color:rgb(183,20,20);}
.fc3{color:rgb(103,124,249);}
.fc4{color:rgb(221,60,189);}
.fc8{color:rgb(0,15,51);}
.fc9{color:rgb(192,0,0);}
.fcc{color:rgb(57,54,69);}
.fs15{font-size:53.999998px;}
.fs14{font-size:67.499997px;}
.fs18{font-size:71.999997px;}
.fs19{font-size:74.215898px;}
.fsb{font-size:80.999997px;}
.fs6{font-size:83.564997px;}
.fs16{font-size:89.999996px;}
.fs17{font-size:92.769873px;}
.fs10{font-size:98.999996px;}
.fs2{font-size:107.999996px;}
.fs1a{font-size:108.719995px;}
.fsd{font-size:111.323847px;}
.fs0{font-size:116.999995px;}
.fsf{font-size:119.969995px;}
.fs1{font-size:120.600835px;}
.fse{font-size:122.174995px;}
.fs11{font-size:123.662240px;}
.fs7{font-size:125.999995px;}
.fs8{font-size:127.574995px;}
.fs12{font-size:134.999994px;}
.fs13{font-size:139.154809px;}
.fsc{font-size:140.174994px;}
.fs9{font-size:143.999994px;}
.fs4{font-size:148.184994px;}
.fsa{font-size:161.999993px;}
.fs5{font-size:239.984999px;}
.fs3{font-size:247.499990px;}
.y0{bottom:0.000000px;}
.ye{bottom:0.000034px;}
.y1{bottom:0.630002px;}
.yb{bottom:9.000000px;}
.y72{bottom:19.124999px;}
.yad{bottom:23.624999px;}
.y5c{bottom:34.874999px;}
.y4d{bottom:38.249998px;}
.y18{bottom:44.999998px;}
.y71{bottom:49.499998px;}
.y67{bottom:50.624998px;}
.y7{bottom:52.874998px;}
.yac{bottom:55.124998px;}
.y5b{bottom:65.249997px;}
.y4c{bottom:67.499997px;}
.y8f{bottom:68.624997px;}
.yb7{bottom:71.999997px;}
.y78{bottom:73.124997px;}
.y76{bottom:74.249997px;}
.y2e{bottom:76.499997px;}
.ya8{bottom:77.624997px;}
.y17{bottom:80.999997px;}
.yab{bottom:82.124997px;}
.y6{bottom:85.499996px;}
.yb6{bottom:88.874996px;}
.y5a{bottom:95.624996px;}
.y4b{bottom:96.749996px;}
.yb8{bottom:97.874996px;}
.y77{bottom:103.499996px;}
.y75{bottom:104.624996px;}
.yb5{bottom:105.749996px;}
.y2d{bottom:106.874996px;}
.y66{bottom:111.374995px;}
.y5{bottom:118.124995px;}
.yb4{bottom:122.624995px;}
.yaa{bottom:124.874995px;}
.y4a{bottom:125.999995px;}
.y2c{bottom:137.249994px;}
.yb3{bottom:149.624994px;}
.y4{bottom:150.749994px;}
.y49{bottom:155.249994px;}
.y83{bottom:158.624993px;}
.y2b{bottom:167.624993px;}
.y3{bottom:183.374992px;}
.y48{bottom:184.499992px;}
.y82{bottom:193.499992px;}
.y2a{bottom:197.999992px;}
.y1d{bottom:199.124992px;}
.yb1{bottom:208.124991px;}
.yc0{bottom:211.499991px;}
.y47{bottom:213.749991px;}
.y2{bottom:215.999991px;}
.ycb{bottom:222.749991px;}
.y29{bottom:228.374990px;}
.yb0{bottom:233.999990px;}
.ybf{bottom:237.374990px;}
.ya7{bottom:239.624990px;}
.y46{bottom:242.999990px;}
.y28{bottom:258.749989px;}
.yaf{bottom:259.874989px;}
.y81{bottom:263.249989px;}
.y1c{bottom:264.374989px;}
.y45{bottom:272.249989px;}
.ya6{bottom:280.124988px;}
.y3c{bottom:287.999988px;}
.y27{bottom:289.124988px;}
.ya4{bottom:290.249988px;}
.y6a{bottom:295.874988px;}
.y1b{bottom:296.999988px;}
.y80{bottom:298.124988px;}
.ybd{bottom:300.374987px;}
.y44{bottom:301.499987px;}
.ya9{bottom:301.500021px;}
.y4f{bottom:302.624987px;}
.y59{bottom:303.749987px;}
.yca{bottom:312.749987px;}
.y3b{bottom:318.374987px;}
.y26{bottom:319.499987px;}
.ya3{bottom:320.624987px;}
.yb2{bottom:321.750020px;}
.y43{bottom:330.749986px;}
.y7f{bottom:332.999986px;}
.yc9{bottom:338.624986px;}
.y58{bottom:343.124986px;}
.y3a{bottom:348.749985px;}
.ya2{bottom:350.999985px;}
.ya5{bottom:361.124985px;}
.yc8{bottom:364.499985px;}
.y69{bottom:365.624985px;}
.y70{bottom:374.624984px;}
.y39{bottom:379.124984px;}
.ya1{bottom:381.374984px;}
.y57{bottom:382.499984px;}
.y14{bottom:383.624984px;}
.yba{bottom:384.749984px;}
.y11{bottom:388.124984px;}
.yc7{bottom:390.374984px;}
.y68{bottom:400.499983px;}
.yd{bottom:404.999983px;}
.yb9{bottom:408.374983px;}
.y38{bottom:409.499983px;}
.ya0{bottom:411.749983px;}
.yc6{bottom:416.249983px;}
.ybb{bottom:433.124982px;}
.y6f{bottom:435.374982px;}
.y37{bottom:439.874982px;}
.y25{bottom:442.124982px;}
.y42{bottom:456.749981px;}
.y16{bottom:457.874981px;}
.ycc{bottom:461.249981px;}
.y6e{bottom:465.749981px;}
.yc{bottom:466.874981px;}
.yc5{bottom:467.999981px;}
.y36{bottom:470.249980px;}
.y9f{bottom:472.499980px;}
.y65{bottom:478.124980px;}
.y24{bottom:484.874980px;}
.y19{bottom:489.374980px;}
.yc4{bottom:493.874979px;}
.y6d{bottom:496.124979px;}
.y41{bottom:499.499979px;}
.y7e{bottom:501.749979px;}
.y15{bottom:502.874979px;}
.y64{bottom:509.624979px;}
.y99{bottom:512.999979px;}
.yc3{bottom:519.749978px;}
.y23{bottom:527.624978px;}
.y7d{bottom:533.249978px;}
.y56{bottom:535.499978px;}
.ya{bottom:536.624978px;}
.y35{bottom:537.749978px;}
.y63{bottom:541.124977px;}
.y40{bottom:542.249977px;}
.yc2{bottom:545.624977px;}
.y55{bottom:557.999977px;}
.y9e{bottom:563.624977px;}
.y34{bottom:568.124976px;}
.y98{bottom:569.249976px;}
.y22{bottom:570.374976px;}
.yc1{bottom:571.499976px;}
.y62{bottom:572.624976px;}
.y88{bottom:574.874976px;}
.y7c{bottom:575.999976px;}
.y1a{bottom:578.249976px;}
.y54{bottom:580.499976px;}
.y12{bottom:582.749976px;}
.y3f{bottom:584.999976px;}
.y9d{bottom:593.999975px;}
.y97{bottom:597.374975px;}
.y33{bottom:598.499975px;}
.y53{bottom:602.999975px;}
.y61{bottom:604.124975px;}
.y7b{bottom:607.499975px;}
.y9a{bottom:609.749975px;}
.y21{bottom:624.374974px;}
.y52{bottom:625.499974px;}
.y8d{bottom:626.624974px;}
.y3e{bottom:627.749974px;}
.y32{bottom:628.874974px;}
.ybe{bottom:629.999974px;}
.y87{bottom:631.124974px;}
.ybc{bottom:633.374974px;}
.y60{bottom:635.624974px;}
.y7a{bottom:638.999973px;}
.y51{bottom:647.999973px;}
.y96{bottom:653.624973px;}
.y9c{bottom:654.749973px;}
.y9{bottom:655.874973px;}
.y31{bottom:659.249973px;}
.y8c{bottom:661.499972px;}
.y20{bottom:667.124972px;}
.y50{bottom:670.499972px;}
.y95{bottom:681.749972px;}
.y10{bottom:682.874972px;}
.y9b{bottom:685.124971px;}
.y86{bottom:687.374971px;}
.y13{bottom:688.499971px;}
.y30{bottom:689.624971px;}
.y8e{bottom:691.874971px;}
.y8{bottom:694.124971px;}
.y8b{bottom:696.374971px;}
.y5f{bottom:698.624971px;}
.y6c{bottom:704.249971px;}
.y1f{bottom:709.874970px;}
.y85{bottom:715.499970px;}
.y2f{bottom:719.999970px;}
.y4e{bottom:726.749970px;}
.y5e{bottom:730.124970px;}
.y8a{bottom:731.249970px;}
.y91{bottom:732.374969px;}
.y74{bottom:735.749969px;}
.y89{bottom:736.874969px;}
.y94{bottom:737.999969px;}
.y6b{bottom:739.124969px;}
.y84{bottom:743.624969px;}
.y79{bottom:751.499969px;}
.y1e{bottom:752.624969px;}
.yf{bottom:753.749969px;}
.y5d{bottom:761.624968px;}
.yae{bottom:762.749968px;}
.y92{bottom:763.874968px;}
.y93{bottom:766.124968px;}
.y90{bottom:767.249968px;}
.y73{bottom:771.749968px;}
.y3d{bottom:772.874968px;}
.h2c{height:42.372069px;}
.hb{height:55.654288px;}
.h32{height:56.231998px;}
.h2b{height:64.124997px;}
.h30{height:64.367997px;}
.h31{height:66.349013px;}
.h10{height:67.643997px;}
.h35{height:70.289997px;}
.h18{height:76.949997px;}
.h22{height:77.318997px;}
.h1c{height:78.083997px;}
.h1b{height:84.347996px;}
.h2d{height:85.499996px;}
.h1f{height:86.943925px;}
.h2e{height:88.131379px;}
.h5{height:89.207996px;}
.h14{height:91.376996px;}
.h1e{height:93.696566px;}
.h25{height:94.049996px;}
.h16{height:94.189252px;}
.h23{height:96.580210px;}
.h15{height:96.641996px;}
.h33{height:97.195676px;}
.h3{height:101.438996px;}
.h24{height:102.527996px;}
.h12{height:102.599996px;}
.h4{height:104.560924px;}
.h27{height:105.434996px;}
.h1a{height:105.757655px;}
.h7{height:105.952271px;}
.h29{height:108.679906px;}
.h28{height:111.509995px;}
.h11{height:112.463995px;}
.hd{height:112.643995px;}
.h36{height:115.343995px;}
.h1d{height:116.066245px;}
.h20{height:119.699995px;}
.he{height:121.196245px;}
.h26{height:128.249995px;}
.h19{height:133.166244px;}
.h17{height:133.811994px;}
.h34{height:136.727994px;}
.h13{height:153.899994px;}
.hf{height:162.143993px;}
.h21{height:173.509154px;}
.hc{height:181.664992px;}
.ha{height:198.227609px;}
.h6{height:204.434991px;}
.h2f{height:391.499984px;}
.h2a{height:411.749983px;}
.h2{height:758.249968px;}
.h0{height:758.879970px;}
.h1{height:759.000000px;}
.h9{height:809.999966px;}
.h8{height:810.000000px;}
.w5{width:263.249989px;}
.w4{width:276.749988px;}
.w1{width:1349.999944px;}
.w0{width:1350.000000px;}
.w3{width:1439.999940px;}
.w2{width:1440.000000px;}
.x159{left:-2.408203px;}
.x0{left:0.000000px;}
.x17e{left:17.753906px;}
.x210{left:20.865234px;}
.x168{left:24.046874px;}
.x20c{left:26.736327px;}
.x17f{left:29.085204px;}
.x164{left:33.820311px;}
.x18d{left:34.998045px;}
.x1ed{left:38.003905px;}
.x18e{left:39.793577px;}
.x213{left:41.783201px;}
.x1ee{left:42.890623px;}
.x16f{left:46.709471px;}
.x215{left:58.886716px;}
.x1f1{left:61.224607px;}
.x191{left:65.284055px;}
.x17d{left:67.166013px;}
.x180{left:69.486325px;}
.x9{left:71.999997px;}
.x181{left:74.281857px;}
.x184{left:77.681251px;}
.x1ec{left:82.845700px;}
.x1eb{left:87.257809px;}
.x195{left:90.477901px;}
.x212{left:93.374996px;}
.x188{left:99.515255px;}
.x189{left:104.310787px;}
.x192{left:105.665401px;}
.x20d{left:107.255122px;}
.x193{left:110.460933px;}
.x185{left:115.116064px;}
.x1c5{left:118.454585px;}
.x186{left:119.911596px;}
.x170{left:121.579096px;}
.x1e5{left:123.385249px;}
.x1da{left:125.283686px;}
.x171{left:131.170161px;}
.x216{left:133.628901px;}
.x194{left:135.123041px;}
.x20e{left:141.301752px;}
.x182{left:143.226557px;}
.x18a{left:144.909662px;}
.x18b{left:149.705194px;}
.x18f{left:151.853587px;}
.x1be{left:153.276849px;}
.x1e6{left:154.511712px;}
.x190{left:156.649119px;}
.x15a{left:161.015618px;}
.x1c6{left:163.085443px;}
.x1d1{left:164.768548px;}
.x183{left:166.851556px;}
.x15b{left:170.606682px;}
.x1c7{left:176.022942px;}
.x172{left:177.978508px;}
.x1{left:180.492180px;}
.x1a6{left:182.478508px;}
.x217{left:185.501945px;}
.x173{left:187.569572px;}
.x21c{left:192.008048px;}
.x187{left:195.134757px;}
.x18c{left:206.033195px;}
.x1d2{left:210.665906px;}
.x1f2{left:212.624991px;}
.x1c8{left:214.255362px;}
.x21d{left:218.902579px;}
.x1a5{left:220.429678px;}
.x20f{left:221.672235px;}
.x174{left:223.382803px;}
.x19c{left:224.899551px;}
.x1c9{left:227.192862px;}
.x1d6{left:230.541494px;}
.x175{left:232.973867px;}
.x19d{left:234.490615px;}
.x1d7{left:238.135244px;}
.x1e2{left:240.306143px;}
.x1bb{left:243.979970px;}
.x218{left:247.440663px;}
.x1bc{left:251.573720px;}
.x1db{left:254.488547px;}
.x19e{left:258.873671px;}
.x1dc{left:263.528733px;}
.x5{left:264.585926px;}
.x219{left:266.007557px;}
.x169{left:267.699452px;}
.x8{left:269.015614px;}
.x1d8{left:270.408680px;}
.x1ca{left:273.098133px;}
.x1bf{left:275.356922px;}
.x16a{left:277.290516px;}
.x21a{left:280.210681px;}
.x1c0{left:282.950672px;}
.x1cb{left:286.035632px;}
.x165{left:291.374988px;}
.x1c1{left:298.230456px;}
.x211{left:302.343737px;}
.x1e7{left:303.670886px;}
.x176{left:307.843493px;}
.x1c2{left:309.199206px;}
.x1e8{left:311.264636px;}
.x1a7{left:316.067858px;}
.x177{left:317.434557px;}
.x166{left:319.482409px;}
.x1a8{left:323.661607px;}
.x21e{left:328.236320px;}
.x7{left:329.748033px;}
.x1d9{left:340.545396px;}
.xa{left:342.896470px;}
.x1aa{left:347.444810px;}
.x16b{left:351.171372px;}
.x1d3{left:353.620877px;}
.x1ab{left:355.038559px;}
.x1f3{left:357.064438px;}
.xc9{left:358.347641px;}
.x16c{left:360.762436px;}
.x178{left:367.486069px;}
.x1e9{left:368.547349px;}
.x1ac{left:370.318344px;}
.x2a{left:372.322250px;}
.x214{left:373.675766px;}
.x1e3{left:375.213852px;}
.x179{left:377.077133px;}
.xdf{left:380.047836px;}
.x1ad{left:381.287099px;}
.xca{left:388.775374px;}
.xd{left:391.640609px;}
.x1cc{left:394.839827px;}
.xcb{left:396.529838px;}
.xc{left:399.304671px;}
.x120{left:401.800765px;}
.x1dd{left:403.617594px;}
.x1cd{left:407.777327px;}
.xf9{left:411.279768px;}
.x121{left:412.596437px;}
.xe0{left:414.441435px;}
.x102{left:415.630354px;}
.x1de{left:420.436083px;}
.xcc{left:422.409232px;}
.xfa{left:423.884879px;}
.x14a{left:427.350568px;}
.xcd{left:430.163695px;}
.x21b{left:431.947253px;}
.x2b{left:432.984357px;}
.x158{left:434.430158px;}
.x1bd{left:437.396472px;}
.xe{left:438.644513px;}
.x1ce{left:440.050763px;}
.x16d{left:444.293683px;}
.x1df{left:450.428757px;}
.x10f{left:453.665020px;}
.x1e0{left:459.468926px;}
.x1c{left:464.414043px;}
.x110{left:466.546266px;}
.x103{left:472.156331px;}
.x122{left:474.320329px;}
.x13e{left:476.575470px;}
.xfb{left:478.333119px;}
.x1ea{left:481.794415px;}
.x14f{left:483.602257px;}
.x1d4{left:486.121275px;}
.x12e{left:487.138163px;}
.x104{left:488.525084px;}
.xfc{left:490.938231px;}
.x11a{left:494.333779px;}
.x11b{left:500.727822px;}
.x1d5{left:501.815039px;}
.xf{left:503.134170px;}
.x150{left:504.392775px;}
.x1b3{left:507.924295px;}
.x1a9{left:509.484354px;}
.x93{left:511.044413px;}
.x10{left:512.102309px;}
.x151{left:514.409594px;}
.x1b4{left:516.783670px;}
.x2c{left:519.297341px;}
.x1d{left:521.741508px;}
.x21f{left:523.124978px;}
.x94{left:526.700660px;}
.x123{left:528.742202px;}
.x1e{left:530.709647px;}
.xc5{left:534.959451px;}
.x2d{left:536.450663px;}
.xb0{left:538.637673px;}
.x2{left:541.669905px;}
.x3{left:543.269509px;}
.x12f{left:544.755340px;}
.xee{left:546.204575px;}
.x7b{left:547.483864px;}
.xb1{left:548.914113px;}
.x1b5{left:550.959938px;}
.x152{left:554.419086px;}
.x7c{left:555.602614px;}
.x95{left:557.518039px;}
.x111{left:559.610126px;}
.xe1{left:566.364366px;}
.x13f{left:567.380653px;}
.x2e{left:568.592264px;}
.x130{left:570.099081px;}
.xb{left:572.414039px;}
.xc6{left:574.826637px;}
.x2f{left:577.967266px;}
.x7d{left:579.913169px;}
.x1b6{left:581.152564px;}
.xc7{left:582.420386px;}
.x46{left:584.001543px;}
.x15c{left:585.269688px;}
.x7e{left:588.031910px;}
.x14b{left:590.151826px;}
.x1e4{left:591.521461px;}
.x15d{left:594.860752px;}
.x58{left:595.915665px;}
.x69{left:601.892553px;}
.xa2{left:604.061460px;}
.x136{left:607.272095px;}
.x47{left:608.799881px;}
.x59{left:611.309707px;}
.x6a{left:612.786596px;}
.xfd{left:616.788812px;}
.x220{left:617.851293px;}
.x48{left:619.656125px;}
.xb2{left:621.344774px;}
.x11c{left:624.357482px;}
.x5a{left:626.984999px;}
.xce{left:628.410391px;}
.x1f{left:630.417918px;}
.xb3{left:631.621213px;}
.x16e{left:633.599501px;}
.x17a{left:634.671360px;}
.x30{left:637.636208px;}
.x20{left:639.386057px;}
.x5b{left:642.379042px;}
.xcf{left:643.584707px;}
.x221{left:644.745823px;}
.x6b{left:645.890598px;}
.x31{left:647.011202px;}
.x1cf{left:648.597630px;}
.xd0{left:651.339166px;}
.xb4{left:653.321408px;}
.x1b7{left:655.149875px;}
.x6c{left:656.784641px;}
.xa3{left:658.938373px;}
.x112{left:660.411880px;}
.xe2{left:661.984950px;}
.xb5{left:663.597848px;}
.xa4{left:666.736674px;}
.x7f{left:668.900071px;}
.xe3{left:670.499148px;}
.x113{left:673.293143px;}
.x80{left:677.018813px;}
.x5c{left:684.197400px;}
.x1e1{left:685.401759px;}
.x1ae{left:686.834444px;}
.x140{left:693.384184px;}
.x153{left:694.887559px;}
.x5d{left:699.591443px;}
.x105{left:701.416391px;}
.x124{left:703.078657px;}
.x154{left:704.904378px;}
.x222{left:706.203340px;}
.x1d0{left:707.255836px;}
.x11{left:708.342531px;}
.x141{left:709.639554px;}
.x32{left:712.480925px;}
.x11d{left:714.757363px;}
.x12{left:717.310671px;}
.x142{left:718.733590px;}
.x81{left:721.089230px;}
.x33{left:722.210417px;}
.x106{left:723.696663px;}
.x131{left:725.266540px;}
.x49{left:727.134939px;}
.x223{left:731.315888px;}
.x229{left:732.530976px;}
.x167{left:733.763647px;}
.x14c{left:736.183552px;}
.x34{left:737.371549px;}
.x107{left:740.065399px;}
.x125{left:745.567696px;}
.x14d{left:747.902290px;}
.x137{left:749.923603px;}
.x15e{left:752.229321px;}
.x22e{left:753.688445px;}
.x13{left:755.425280px;}
.x4a{left:758.590992px;}
.xfe{left:761.864298px;}
.x14{left:764.393419px;}
.x224{left:765.742644px;}
.x4b{left:769.447235px;}
.x138{left:772.367091px;}
.x225{left:773.758269px;}
.x6d{left:775.300749px;}
.xb6{left:776.732682px;}
.x143{left:777.740709px;}
.xff{left:782.247747px;}
.x4{left:784.335905px;}
.xef{left:785.541483px;}
.x6e{left:787.535123px;}
.x82{left:791.133661px;}
.xa5{left:792.284032px;}
.x83{left:799.252420px;}
.x226{left:800.340788px;}
.xf0{left:805.358381px;}
.xd1{left:806.591665px;}
.xb7{left:808.426040px;}
.xe4{left:811.075803px;}
.x96{left:813.484831px;}
.x21{left:817.471905px;}
.xb8{left:818.702479px;}
.x114{left:820.449303px;}
.x139{left:822.983918px;}
.x1af{left:824.400845px;}
.x4c{left:828.542245px;}
.x155{left:829.892601px;}
.x84{left:831.525856px;}
.x1b0{left:833.260220px;}
.x108{left:834.565395px;}
.x22{left:836.062110px;}
.x85{left:839.644615px;}
.x17b{left:840.928676px;}
.x1b8{left:842.473354px;}
.x126{left:843.572846px;}
.x6f{left:844.817836px;}
.x22b{left:845.819788px;}
.xc8{left:848.280723px;}
.x115{left:849.520019px;}
.x97{left:850.841264px;}
.x127{left:854.368526px;}
.x35{left:855.682591px;}
.x70{left:857.052210px;}
.x109{left:859.081591px;}
.x11e{left:862.147326px;}
.x22c{left:863.903284px;}
.x36{left:865.057602px;}
.x98{left:866.497502px;}
.xe5{left:867.828769px;}
.x22a{left:869.519496px;}
.x11f{left:871.154266px;}
.xd2{left:872.525321px;}
.x15f{left:873.986396px;}
.x227{left:875.142299px;}
.xe6{left:876.342967px;}
.x160{left:883.577460px;}
.x15{left:884.762681px;}
.x132{left:886.462335px;}
.x99{left:892.376895px;}
.x16{left:893.730820px;}
.x5e{left:894.744109px;}
.x1b9{left:901.366662px;}
.x128{left:902.607293px;}
.x4d{left:905.600347px;}
.x9a{left:908.033133px;}
.x13a{left:909.104161px;}
.x1ba{left:910.226036px;}
.xd3{left:912.421380px;}
.x4e{left:916.456590px;}
.x5f{left:919.397429px;}
.x144{left:927.420581px;}
.x17{left:929.151873px;}
.x161{left:933.233464px;}
.x207{left:935.244102px;}
.x18{left:938.120013px;}
.x37{left:940.863263px;}
.xd4{left:942.414055px;}
.xa6{left:944.574927px;}
.x71{left:947.386191px;}
.xd5{left:950.168549px;}
.x60{left:951.670865px;}
.x17c{left:953.094687px;}
.x10a{left:954.209112px;}
.x9b{left:955.830971px;}
.x38{left:958.016593px;}
.x72{left:959.620565px;}
.x100{left:962.259688px;}
.x23{left:964.605508px;}
.x61{left:968.545864px;}
.x1b1{left:972.195517px;}
.x24{left:973.573647px;}
.x4f{left:975.551600px;}
.xb9{left:977.169269px;}
.x39{left:979.716788px;}
.x1b2{left:981.054891px;}
.xa7{left:984.066587px;}
.x20b{left:986.278889px;}
.xba{left:987.445708px;}
.x3a{left:989.091799px;}
.x204{left:992.570347px;}
.x86{left:993.666200px;}
.x14e{left:996.503865px;}
.x25{left:999.886417px;}
.x87{left:1001.784959px;}
.xf1{left:1007.794376px;}
.x26{left:1008.854557px;}
.x22d{left:1010.076374px;}
.x208{left:1012.057587px;}
.x3b{left:1014.971192px;}
.x228{left:1017.252645px;}
.x10b{left:1018.816615px;}
.x145{left:1021.290908px;}
.x3c{left:1024.346169px;}
.x1fd{left:1029.059650px;}
.x9c{left:1030.410558px;}
.xe7{left:1032.671612px;}
.x88{left:1033.926594px;}
.xbb{left:1035.684476px;}
.x146{left:1039.395123px;}
.x62{left:1041.108361px;}
.xf2{left:1044.326112px;}
.x9d{left:1046.066831px;}
.x3d{left:1048.656715px;}
.x1fb{left:1050.210305px;}
.x1ff{left:1051.549761px;}
.x133{left:1053.218172px;}
.xf3{left:1054.294831px;}
.x3e{left:1058.031691px;}
.xd6{left:1064.815615px;}
.x89{left:1066.355899px;}
.x147{left:1070.060161px;}
.x27{left:1071.242341px;}
.x8a{left:1074.474657px;}
.x1ef{left:1076.062455px;}
.xbc{left:1078.102550px;}
.x28{left:1080.210480px;}
.x1f0{left:1083.269486px;}
.xf4{left:1084.287506px;}
.x134{left:1086.340233px;}
.x50{left:1088.857546px;}
.x205{left:1090.432158px;}
.xf5{left:1094.256225px;}
.xa8{left:1096.179863px;}
.x1f8{left:1097.692337px;}
.x51{left:1099.705038px;}
.x116{left:1101.011992px;}
.x1f4{left:1102.547643px;}
.xa9{left:1103.978164px;}
.x63{left:1106.222128px;}
.xd7{left:1107.796669px;}
.x73{left:1109.597123px;}
.x1c4{left:1112.339309px;}
.x117{left:1113.893255px;}
.x101{left:1115.335968px;}
.x206{left:1119.037259px;}
.xaa{left:1120.167617px;}
.x64{left:1123.083943px;}
.x8b{left:1126.958542px;}
.xab{left:1127.965918px;}
.x135{left:1130.808493px;}
.x1f5{left:1132.131626px;}
.x8c{left:1135.077301px;}
.xf6{left:1136.142423px;}
.x129{left:1140.370031px;}
.x19{left:1143.079465px;}
.x74{left:1144.823684px;}
.x1fc{left:1150.859778px;}
.x1a{left:1152.047605px;}
.x75{left:1157.058058px;}
.x9e{left:1158.562432px;}
.x13b{left:1162.779737px;}
.x8d{left:1166.770659px;}
.x200{left:1168.627587px;}
.x3f{left:1171.608346px;}
.x29{left:1173.270581px;}
.x8e{left:1174.889418px;}
.x13c{left:1175.923779px;}
.x148{left:1177.341342px;}
.x40{left:1180.983323px;}
.xbd{left:1182.562613px;}
.x6{left:1183.851513px;}
.xd8{left:1187.082799px;}
.x1f9{left:1188.885449px;}
.xf7{left:1191.462703px;}
.xbe{left:1192.839087px;}
.x201{left:1194.807216px;}
.x118{left:1197.478130px;}
.x10c{left:1199.492472px;}
.xd9{left:1202.615612px;}
.x52{left:1203.749950px;}
.x9f{left:1205.912063px;}
.x1b{left:1208.214793px;}
.x1c3{left:1210.636180px;}
.xe8{left:1211.702405px;}
.x196{left:1212.957917px;}
.x53{left:1214.718699px;}
.x1fe{left:1219.663646px;}
.x76{left:1221.393993px;}
.x202{left:1224.213529px;}
.x1a2{left:1226.974050px;}
.xe9{left:1227.994922px;}
.x1a4{left:1230.790615px;}
.xda{left:1232.608286px;}
.x77{left:1233.628367px;}
.x1a3{left:1235.561513px;}
.x199{left:1238.702523px;}
.xdb{left:1240.362780px;}
.x65{left:1242.632766px;}
.x10d{left:1246.571084px;}
.x1a1{left:1249.188079px;}
.x19b{left:1250.520944px;}
.xa0{left:1253.485814px;}
.x41{left:1256.261640px;}
.x12a{left:1257.395639px;}
.x66{left:1258.589309px;}
.x54{left:1260.452584px;}
.x10e{left:1262.939819px;}
.x42{left:1265.636616px;}
.x149{left:1268.063912px;}
.xa1{left:1269.142086px;}
.x78{left:1270.173288px;}
.x55{left:1271.421334px;}
.x119{left:1273.441994px;}
.xac{left:1275.925385px;}
.x209{left:1277.672938px;}
.xbf{left:1281.452473px;}
.xad{left:1283.723686px;}
.xea{left:1286.174120px;}
.x156{left:1289.577957px;}
.xeb{left:1294.688317px;}
.xc0{left:1296.613605px;}
.x157{left:1299.594810px;}
.x1f6{left:1303.066353px;}
.x20a{left:1304.888990px;}
.xc1{left:1306.890078px;}
.x8f{left:1312.484245px;}
.x43{left:1313.875384px;}
.x197{left:1316.791504px;}
.x90{left:1320.603004px;}
.x19a{left:1321.857366px;}
.x44{left:1323.250360px;}
.xc2{left:1328.590273px;}
.xae{left:1331.962454px;}
.x19f{left:1333.124944px;}
.x13d{left:1335.471624px;}
.x1a0{left:1338.574163px;}
.xaf{left:1339.760755px;}
.xdc{left:1341.059065px;}
.xec{left:1342.927085px;}
.x1fa{left:1344.047553px;}
.xdd{left:1348.813559px;}
.xed{left:1351.441283px;}
.x203{left:1352.998077px;}
.x79{left:1357.791449px;}
.x67{left:1360.484254px;}
.x198{left:1363.429631px;}
.xc3{left:1364.746140px;}
.x162{left:1367.204396px;}
.x7a{left:1370.025824px;}
.x12b{left:1373.266239px;}
.xc4{left:1375.022613px;}
.x68{left:1376.440796px;}
.x91{left:1377.885717px;}
.x12c{left:1384.061885px;}
.x92{left:1386.004475px;}
.xf8{left:1389.282519px;}
.x56{left:1390.838321px;}
.xde{left:1397.039004px;}
.x12d{left:1399.236275px;}
.x57{left:1401.807071px;}
.x1f7{left:1406.935494px;}
.x163{left:1408.798775px;}
.x45{left:1418.009712px;}
@media print{
.v2{vertical-align:-39.999998pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:43.999998pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:161.342653pt;}
.ws2{word-spacing:-115.719995pt;}
.wsb{word-spacing:-71.423997pt;}
.ws6{word-spacing:-63.487997pt;}
.ws7{word-spacing:-23.999999pt;}
.ws5{word-spacing:-21.984398pt;}
.ws3{word-spacing:-21.440148pt;}
.ws0{word-spacing:-20.799999pt;}
.ws9{word-spacing:-19.327999pt;}
.ws4{word-spacing:-19.199999pt;}
.wsa{word-spacing:-15.999999pt;}
.ws8{word-spacing:-12.187499pt;}
.ws1{word-spacing:0.000000pt;}
._2a{margin-left:-20.050992pt;}
._28{margin-left:-11.913455pt;}
._31{margin-left:-8.760063pt;}
._1f{margin-left:-7.792951pt;}
._4{margin-left:-6.270223pt;}
._1{margin-left:-5.199928pt;}
._3{margin-left:-3.921235pt;}
._2{margin-left:-2.807638pt;}
._0{margin-left:-1.039952pt;}
._5{width:1.297959pt;}
._18{width:2.263888pt;}
._c{width:3.715923pt;}
._9{width:4.854438pt;}
._a{width:6.052815pt;}
._14{width:7.069380pt;}
._f{width:8.444459pt;}
._16{width:9.333376pt;}
._17{width:10.466834pt;}
._15{width:11.534369pt;}
._7{width:12.535911pt;}
._6{width:13.701070pt;}
._d{width:14.960887pt;}
._e{width:16.049712pt;}
._20{width:16.948092pt;}
._27{width:18.541511pt;}
._2b{width:20.799664pt;}
._25{width:27.808875pt;}
._26{width:28.888980pt;}
._21{width:29.942301pt;}
._19{width:33.999055pt;}
._1a{width:35.739948pt;}
._1c{width:37.251832pt;}
._30{width:39.512418pt;}
._2f{width:40.414626pt;}
._10{width:41.714654pt;}
._1b{width:45.532233pt;}
._22{width:46.579976pt;}
._23{width:47.767984pt;}
._24{width:49.305701pt;}
._29{width:57.142430pt;}
._11{width:59.248652pt;}
._12{width:60.391101pt;}
._8{width:61.778313pt;}
._1d{width:64.452432pt;}
._2c{width:67.123542pt;}
._2d{width:68.236279pt;}
._1e{width:73.412030pt;}
._32{width:76.277453pt;}
._2e{width:84.999684pt;}
._b{width:98.666916pt;}
._13{width:192.001037pt;}
.fs15{font-size:47.999998pt;}
.fs14{font-size:59.999998pt;}
.fs18{font-size:63.999997pt;}
.fs19{font-size:65.969687pt;}
.fsb{font-size:71.999997pt;}
.fs6{font-size:74.279997pt;}
.fs16{font-size:79.999997pt;}
.fs17{font-size:82.462109pt;}
.fs10{font-size:87.999996pt;}
.fs2{font-size:95.999996pt;}
.fs1a{font-size:96.639996pt;}
.fsd{font-size:98.954531pt;}
.fs0{font-size:103.999996pt;}
.fsf{font-size:106.639996pt;}
.fs1{font-size:107.200742pt;}
.fse{font-size:108.599995pt;}
.fs11{font-size:109.921991pt;}
.fs7{font-size:111.999995pt;}
.fs8{font-size:113.399995pt;}
.fs12{font-size:119.999995pt;}
.fs13{font-size:123.693164pt;}
.fsc{font-size:124.599995pt;}
.fs9{font-size:127.999995pt;}
.fs4{font-size:131.719995pt;}
.fsa{font-size:143.999994pt;}
.fs5{font-size:213.319999pt;}
.fs3{font-size:219.999991pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:0.000030pt;}
.y1{bottom:0.560001pt;}
.yb{bottom:8.000000pt;}
.y72{bottom:16.999999pt;}
.yad{bottom:20.999999pt;}
.y5c{bottom:30.999999pt;}
.y4d{bottom:33.999999pt;}
.y18{bottom:39.999998pt;}
.y71{bottom:43.999998pt;}
.y67{bottom:44.999998pt;}
.y7{bottom:46.999998pt;}
.yac{bottom:48.999998pt;}
.y5b{bottom:57.999998pt;}
.y4c{bottom:59.999997pt;}
.y8f{bottom:60.999997pt;}
.yb7{bottom:63.999997pt;}
.y78{bottom:64.999997pt;}
.y76{bottom:65.999997pt;}
.y2e{bottom:67.999997pt;}
.ya8{bottom:68.999997pt;}
.y17{bottom:71.999997pt;}
.yab{bottom:72.999997pt;}
.y6{bottom:75.999997pt;}
.yb6{bottom:78.999997pt;}
.y5a{bottom:84.999996pt;}
.y4b{bottom:85.999996pt;}
.yb8{bottom:86.999996pt;}
.y77{bottom:91.999996pt;}
.y75{bottom:92.999996pt;}
.yb5{bottom:93.999996pt;}
.y2d{bottom:94.999996pt;}
.y66{bottom:98.999996pt;}
.y5{bottom:104.999996pt;}
.yb4{bottom:108.999995pt;}
.yaa{bottom:110.999995pt;}
.y4a{bottom:111.999995pt;}
.y2c{bottom:121.999995pt;}
.yb3{bottom:132.999994pt;}
.y4{bottom:133.999994pt;}
.y49{bottom:137.999994pt;}
.y83{bottom:140.999994pt;}
.y2b{bottom:148.999994pt;}
.y3{bottom:162.999993pt;}
.y48{bottom:163.999993pt;}
.y82{bottom:171.999993pt;}
.y2a{bottom:175.999993pt;}
.y1d{bottom:176.999993pt;}
.yb1{bottom:184.999992pt;}
.yc0{bottom:187.999992pt;}
.y47{bottom:189.999992pt;}
.y2{bottom:191.999992pt;}
.ycb{bottom:197.999992pt;}
.y29{bottom:202.999992pt;}
.yb0{bottom:207.999991pt;}
.ybf{bottom:210.999991pt;}
.ya7{bottom:212.999991pt;}
.y46{bottom:215.999991pt;}
.y28{bottom:229.999990pt;}
.yaf{bottom:230.999990pt;}
.y81{bottom:233.999990pt;}
.y1c{bottom:234.999990pt;}
.y45{bottom:241.999990pt;}
.ya6{bottom:248.999990pt;}
.y3c{bottom:255.999989pt;}
.y27{bottom:256.999989pt;}
.ya4{bottom:257.999989pt;}
.y6a{bottom:262.999989pt;}
.y1b{bottom:263.999989pt;}
.y80{bottom:264.999989pt;}
.ybd{bottom:266.999989pt;}
.y44{bottom:267.999989pt;}
.ya9{bottom:268.000019pt;}
.y4f{bottom:268.999989pt;}
.y59{bottom:269.999989pt;}
.yca{bottom:277.999988pt;}
.y3b{bottom:282.999988pt;}
.y26{bottom:283.999988pt;}
.ya3{bottom:284.999988pt;}
.yb2{bottom:286.000018pt;}
.y43{bottom:293.999988pt;}
.y7f{bottom:295.999988pt;}
.yc9{bottom:300.999987pt;}
.y58{bottom:304.999987pt;}
.y3a{bottom:309.999987pt;}
.ya2{bottom:311.999987pt;}
.ya5{bottom:320.999987pt;}
.yc8{bottom:323.999987pt;}
.y69{bottom:324.999986pt;}
.y70{bottom:332.999986pt;}
.y39{bottom:336.999986pt;}
.ya1{bottom:338.999986pt;}
.y57{bottom:339.999986pt;}
.y14{bottom:340.999986pt;}
.yba{bottom:341.999986pt;}
.y11{bottom:344.999986pt;}
.yc7{bottom:346.999986pt;}
.y68{bottom:355.999985pt;}
.yd{bottom:359.999985pt;}
.yb9{bottom:362.999985pt;}
.y38{bottom:363.999985pt;}
.ya0{bottom:365.999985pt;}
.yc6{bottom:369.999985pt;}
.ybb{bottom:384.999984pt;}
.y6f{bottom:386.999984pt;}
.y37{bottom:390.999984pt;}
.y25{bottom:392.999984pt;}
.y42{bottom:405.999983pt;}
.y16{bottom:406.999983pt;}
.ycc{bottom:409.999983pt;}
.y6e{bottom:413.999983pt;}
.yc{bottom:414.999983pt;}
.yc5{bottom:415.999983pt;}
.y36{bottom:417.999983pt;}
.y9f{bottom:419.999982pt;}
.y65{bottom:424.999982pt;}
.y24{bottom:430.999982pt;}
.y19{bottom:434.999982pt;}
.yc4{bottom:438.999982pt;}
.y6d{bottom:440.999982pt;}
.y41{bottom:443.999982pt;}
.y7e{bottom:445.999981pt;}
.y15{bottom:446.999981pt;}
.y64{bottom:452.999981pt;}
.y99{bottom:455.999981pt;}
.yc3{bottom:461.999981pt;}
.y23{bottom:468.999980pt;}
.y7d{bottom:473.999980pt;}
.y56{bottom:475.999980pt;}
.ya{bottom:476.999980pt;}
.y35{bottom:477.999980pt;}
.y63{bottom:480.999980pt;}
.y40{bottom:481.999980pt;}
.yc2{bottom:484.999980pt;}
.y55{bottom:495.999979pt;}
.y9e{bottom:500.999979pt;}
.y34{bottom:504.999979pt;}
.y98{bottom:505.999979pt;}
.y22{bottom:506.999979pt;}
.yc1{bottom:507.999979pt;}
.y62{bottom:508.999979pt;}
.y88{bottom:510.999979pt;}
.y7c{bottom:511.999979pt;}
.y1a{bottom:513.999979pt;}
.y54{bottom:515.999979pt;}
.y12{bottom:517.999978pt;}
.y3f{bottom:519.999978pt;}
.y9d{bottom:527.999978pt;}
.y97{bottom:530.999978pt;}
.y33{bottom:531.999978pt;}
.y53{bottom:535.999978pt;}
.y61{bottom:536.999978pt;}
.y7b{bottom:539.999978pt;}
.y9a{bottom:541.999977pt;}
.y21{bottom:554.999977pt;}
.y52{bottom:555.999977pt;}
.y8d{bottom:556.999977pt;}
.y3e{bottom:557.999977pt;}
.y32{bottom:558.999977pt;}
.ybe{bottom:559.999977pt;}
.y87{bottom:560.999977pt;}
.ybc{bottom:562.999977pt;}
.y60{bottom:564.999976pt;}
.y7a{bottom:567.999976pt;}
.y51{bottom:575.999976pt;}
.y96{bottom:580.999976pt;}
.y9c{bottom:581.999976pt;}
.y9{bottom:582.999976pt;}
.y31{bottom:585.999976pt;}
.y8c{bottom:587.999976pt;}
.y20{bottom:592.999975pt;}
.y50{bottom:595.999975pt;}
.y95{bottom:605.999975pt;}
.y10{bottom:606.999975pt;}
.y9b{bottom:608.999975pt;}
.y86{bottom:610.999975pt;}
.y13{bottom:611.999975pt;}
.y30{bottom:612.999974pt;}
.y8e{bottom:614.999974pt;}
.y8{bottom:616.999974pt;}
.y8b{bottom:618.999974pt;}
.y5f{bottom:620.999974pt;}
.y6c{bottom:625.999974pt;}
.y1f{bottom:630.999974pt;}
.y85{bottom:635.999974pt;}
.y2f{bottom:639.999973pt;}
.y4e{bottom:645.999973pt;}
.y5e{bottom:648.999973pt;}
.y8a{bottom:649.999973pt;}
.y91{bottom:650.999973pt;}
.y74{bottom:653.999973pt;}
.y89{bottom:654.999973pt;}
.y94{bottom:655.999973pt;}
.y6b{bottom:656.999973pt;}
.y84{bottom:660.999972pt;}
.y79{bottom:667.999972pt;}
.y1e{bottom:668.999972pt;}
.yf{bottom:669.999972pt;}
.y5d{bottom:676.999972pt;}
.yae{bottom:677.999972pt;}
.y92{bottom:678.999972pt;}
.y93{bottom:680.999972pt;}
.y90{bottom:681.999972pt;}
.y73{bottom:685.999971pt;}
.y3d{bottom:686.999971pt;}
.h2c{height:37.664061pt;}
.hb{height:49.470478pt;}
.h32{height:49.983998pt;}
.h2b{height:56.999998pt;}
.h30{height:57.215998pt;}
.h31{height:58.976900pt;}
.h10{height:60.127997pt;}
.h35{height:62.479997pt;}
.h18{height:68.399997pt;}
.h22{height:68.727997pt;}
.h1c{height:69.407997pt;}
.h1b{height:74.975997pt;}
.h2d{height:75.999997pt;}
.h1f{height:77.283489pt;}
.h2e{height:78.339004pt;}
.h5{height:79.295997pt;}
.h14{height:81.223997pt;}
.h1e{height:83.285837pt;}
.h25{height:83.599997pt;}
.h16{height:83.723779pt;}
.h23{height:85.849075pt;}
.h15{height:85.903996pt;}
.h33{height:86.396156pt;}
.h3{height:90.167996pt;}
.h24{height:91.135996pt;}
.h12{height:91.199996pt;}
.h4{height:92.943043pt;}
.h27{height:93.719996pt;}
.h1a{height:94.006804pt;}
.h7{height:94.179796pt;}
.h29{height:96.604361pt;}
.h28{height:99.119996pt;}
.h11{height:99.967996pt;}
.hd{height:100.127996pt;}
.h36{height:102.527996pt;}
.h1d{height:103.169996pt;}
.h20{height:106.399996pt;}
.he{height:107.729996pt;}
.h26{height:113.999995pt;}
.h19{height:118.369995pt;}
.h17{height:118.943995pt;}
.h34{height:121.535995pt;}
.h13{height:136.799994pt;}
.hf{height:144.127994pt;}
.h21{height:154.230359pt;}
.hc{height:161.479993pt;}
.ha{height:176.202319pt;}
.h6{height:181.719992pt;}
.h2f{height:347.999986pt;}
.h2a{height:365.999985pt;}
.h2{height:673.999972pt;}
.h0{height:674.559973pt;}
.h1{height:674.666667pt;}
.h9{height:719.999970pt;}
.h8{height:720.000000pt;}
.w5{width:233.999990pt;}
.w4{width:245.999990pt;}
.w1{width:1199.999950pt;}
.w0{width:1200.000000pt;}
.w3{width:1279.999947pt;}
.w2{width:1280.000000pt;}
.x159{left:-2.140625pt;}
.x0{left:0.000000pt;}
.x17e{left:15.781249pt;}
.x210{left:18.546874pt;}
.x168{left:21.374999pt;}
.x20c{left:23.765624pt;}
.x17f{left:25.853515pt;}
.x164{left:30.062499pt;}
.x18d{left:31.109374pt;}
.x1ed{left:33.781249pt;}
.x18e{left:35.372069pt;}
.x213{left:37.140623pt;}
.x1ee{left:38.124998pt;}
.x16f{left:41.519530pt;}
.x215{left:52.343748pt;}
.x1f1{left:54.421873pt;}
.x191{left:58.030271pt;}
.x17d{left:59.703123pt;}
.x180{left:61.765622pt;}
.x9{left:63.999997pt;}
.x181{left:66.028318pt;}
.x184{left:69.050001pt;}
.x1ec{left:73.640622pt;}
.x1eb{left:77.562497pt;}
.x195{left:80.424801pt;}
.x212{left:82.999997pt;}
.x188{left:88.458004pt;}
.x189{left:92.720699pt;}
.x192{left:93.924801pt;}
.x20d{left:95.337887pt;}
.x193{left:98.187496pt;}
.x185{left:102.325390pt;}
.x1c5{left:105.292965pt;}
.x186{left:106.588085pt;}
.x170{left:108.070308pt;}
.x1e5{left:109.675777pt;}
.x1da{left:111.363277pt;}
.x171{left:116.595698pt;}
.x216{left:118.781245pt;}
.x194{left:120.109370pt;}
.x20e{left:125.601557pt;}
.x182{left:127.312495pt;}
.x18a{left:128.808588pt;}
.x18b{left:133.071283pt;}
.x18f{left:134.980967pt;}
.x1be{left:136.246088pt;}
.x1e6{left:137.343744pt;}
.x190{left:139.243662pt;}
.x15a{left:143.124994pt;}
.x1c6{left:144.964838pt;}
.x1d1{left:146.460932pt;}
.x183{left:148.312494pt;}
.x15b{left:151.650384pt;}
.x1c7{left:156.464837pt;}
.x172{left:158.203118pt;}
.x1{left:160.437493pt;}
.x1a6{left:162.203118pt;}
.x217{left:164.890618pt;}
.x173{left:166.728509pt;}
.x21c{left:170.673821pt;}
.x187{left:173.453118pt;}
.x18c{left:183.140617pt;}
.x1d2{left:187.258583pt;}
.x1f2{left:188.999992pt;}
.x1c8{left:190.449211pt;}
.x21d{left:194.580070pt;}
.x1a5{left:195.937492pt;}
.x20f{left:197.041987pt;}
.x174{left:198.562492pt;}
.x19c{left:199.910712pt;}
.x1c9{left:201.949211pt;}
.x1d6{left:204.925773pt;}
.x175{left:207.087882pt;}
.x19d{left:208.436103pt;}
.x1d7{left:211.675772pt;}
.x1e2{left:213.605460pt;}
.x1bb{left:216.871084pt;}
.x218{left:219.947256pt;}
.x1bc{left:223.621084pt;}
.x1db{left:226.212042pt;}
.x19e{left:230.109930pt;}
.x1dc{left:234.247762pt;}
.x5{left:235.187490pt;}
.x219{left:236.451162pt;}
.x169{left:237.955068pt;}
.x8{left:239.124990pt;}
.x1d8{left:240.363271pt;}
.x1ca{left:242.753896pt;}
.x1bf{left:244.761709pt;}
.x16a{left:246.480458pt;}
.x21a{left:249.076161pt;}
.x1c0{left:251.511708pt;}
.x1cb{left:254.253895pt;}
.x165{left:258.999989pt;}
.x1c1{left:265.093739pt;}
.x211{left:268.749989pt;}
.x1e7{left:269.929677pt;}
.x176{left:273.638660pt;}
.x1c2{left:274.843739pt;}
.x1e8{left:276.679676pt;}
.x1a7{left:280.949207pt;}
.x177{left:282.164051pt;}
.x166{left:283.984363pt;}
.x1a8{left:287.699207pt;}
.x21e{left:291.765618pt;}
.x7{left:293.109363pt;}
.x1d9{left:302.707018pt;}
.xa{left:304.796862pt;}
.x1aa{left:308.839831pt;}
.x16b{left:312.152331pt;}
.x1d3{left:314.329668pt;}
.x1ab{left:315.589831pt;}
.x1f3{left:317.390612pt;}
.xc9{left:318.531237pt;}
.x16c{left:320.677721pt;}
.x178{left:326.654283pt;}
.x1e9{left:327.597644pt;}
.x1ac{left:329.171861pt;}
.x2a{left:330.953111pt;}
.x214{left:332.156236pt;}
.x1e3{left:333.523424pt;}
.x179{left:335.179674pt;}
.xdf{left:337.820298pt;}
.x1ad{left:338.921866pt;}
.xca{left:345.578111pt;}
.xd{left:348.124985pt;}
.x1cc{left:350.968735pt;}
.xcb{left:352.470967pt;}
.xc{left:354.937485pt;}
.x120{left:357.156235pt;}
.x1dd{left:358.771195pt;}
.x1cd{left:362.468735pt;}
.xf9{left:365.582016pt;}
.x121{left:366.752389pt;}
.xe0{left:368.392387pt;}
.x102{left:369.449203pt;}
.x1de{left:373.720962pt;}
.xcc{left:375.474873pt;}
.xfa{left:376.786559pt;}
.x14a{left:379.867172pt;}
.xcd{left:382.367729pt;}
.x21b{left:383.953114pt;}
.x2b{left:384.874984pt;}
.x158{left:386.160140pt;}
.x1bd{left:388.796864pt;}
.xe{left:389.906234pt;}
.x1ce{left:391.156234pt;}
.x16d{left:394.927718pt;}
.x1df{left:400.381118pt;}
.x10f{left:403.257796pt;}
.x1e0{left:408.416823pt;}
.x1c{left:412.812483pt;}
.x110{left:414.707792pt;}
.x103{left:419.694517pt;}
.x122{left:421.618070pt;}
.x13e{left:423.622640pt;}
.xfb{left:425.184995pt;}
.x1ea{left:428.261702pt;}
.x14f{left:429.868673pt;}
.x1d4{left:432.107800pt;}
.x12e{left:433.011700pt;}
.x104{left:434.244519pt;}
.xfc{left:436.389539pt;}
.x11a{left:439.407803pt;}
.x11b{left:445.091397pt;}
.x1d5{left:446.057812pt;}
.xf{left:447.230373pt;}
.x150{left:448.349133pt;}
.x1b3{left:451.488262pt;}
.x1a9{left:452.874981pt;}
.x93{left:454.261700pt;}
.x10{left:455.202053pt;}
.x151{left:457.252972pt;}
.x1b4{left:459.363262pt;}
.x2c{left:461.597637pt;}
.x1d{left:463.770229pt;}
.x21f{left:464.999981pt;}
.x94{left:468.178364pt;}
.x123{left:469.993068pt;}
.x1e{left:471.741908pt;}
.xc5{left:475.519512pt;}
.x2d{left:476.845034pt;}
.xb0{left:478.789043pt;}
.x2{left:481.484360pt;}
.x3{left:482.906230pt;}
.x12f{left:484.226969pt;}
.xee{left:485.515178pt;}
.x7b{left:486.652323pt;}
.xb1{left:487.923656pt;}
.x1b5{left:489.742167pt;}
.x152{left:492.816966pt;}
.x7c{left:493.868990pt;}
.x95{left:495.571590pt;}
.x111{left:497.431223pt;}
.xe1{left:503.434992pt;}
.x13f{left:504.338358pt;}
.x2e{left:505.415345pt;}
.x130{left:506.754739pt;}
.xb{left:508.812479pt;}
.xc6{left:510.957010pt;}
.x2f{left:513.748681pt;}
.x7d{left:515.478372pt;}
.x1b6{left:516.580057pt;}
.xc7{left:517.707010pt;}
.x46{left:519.112482pt;}
.x15c{left:520.239722pt;}
.x7e{left:522.695031pt;}
.x14b{left:524.579401pt;}
.x1e4{left:525.796854pt;}
.x15d{left:528.765113pt;}
.x58{left:529.702813pt;}
.x69{left:535.015603pt;}
.xa2{left:536.943520pt;}
.x136{left:539.797418pt;}
.x47{left:541.155450pt;}
.x59{left:543.386406pt;}
.x6a{left:544.699196pt;}
.xfd{left:548.256721pt;}
.x220{left:549.201149pt;}
.x48{left:550.805444pt;}
.xb2{left:552.306465pt;}
.x11c{left:554.984428pt;}
.x5a{left:557.320000pt;}
.xce{left:558.587014pt;}
.x1f{left:560.371482pt;}
.xb3{left:561.441079pt;}
.x16e{left:563.199557pt;}
.x17a{left:564.152320pt;}
.x30{left:566.787741pt;}
.x20{left:568.343162pt;}
.x5b{left:571.003593pt;}
.xcf{left:572.075295pt;}
.x221{left:573.107398pt;}
.x6b{left:574.124976pt;}
.x31{left:575.121068pt;}
.x1cf{left:576.531226pt;}
.xd0{left:578.968147pt;}
.xb4{left:580.730140pt;}
.x1b7{left:582.355444pt;}
.x6c{left:583.808569pt;}
.xa3{left:585.722998pt;}
.x112{left:587.032783pt;}
.xe2{left:588.431067pt;}
.xb5{left:589.864753pt;}
.xa4{left:592.654821pt;}
.x7f{left:594.577841pt;}
.xe3{left:595.999243pt;}
.x113{left:598.482794pt;}
.x80{left:601.794500pt;}
.x5c{left:608.175467pt;}
.x1e1{left:609.246008pt;}
.x1ae{left:610.519506pt;}
.x140{left:616.341497pt;}
.x153{left:617.677830pt;}
.x5d{left:621.859060pt;}
.x105{left:623.481236pt;}
.x124{left:624.958806pt;}
.x154{left:626.581669pt;}
.x222{left:627.736302pt;}
.x1d0{left:628.671854pt;}
.x11{left:629.637806pt;}
.x141{left:630.790715pt;}
.x32{left:633.316378pt;}
.x11d{left:635.339879pt;}
.x12{left:637.609485pt;}
.x142{left:638.874302pt;}
.x81{left:640.968205pt;}
.x33{left:641.964815pt;}
.x106{left:643.285923pt;}
.x131{left:644.681369pt;}
.x49{left:646.342168pt;}
.x223{left:650.058567pt;}
.x229{left:651.138645pt;}
.x167{left:652.234353pt;}
.x14c{left:654.385379pt;}
.x34{left:655.441377pt;}
.x107{left:657.835910pt;}
.x125{left:662.726841pt;}
.x14d{left:664.802035pt;}
.x137{left:666.598758pt;}
.x15e{left:668.648285pt;}
.x22e{left:669.945284pt;}
.x13{left:671.489137pt;}
.x4a{left:674.303104pt;}
.xfe{left:677.212710pt;}
.x14{left:679.460817pt;}
.x224{left:680.660128pt;}
.x4b{left:683.953098pt;}
.x138{left:686.548525pt;}
.x225{left:687.785128pt;}
.x6d{left:689.156221pt;}
.xb6{left:690.429050pt;}
.x143{left:691.325075pt;}
.xff{left:695.331330pt;}
.x4{left:697.187471pt;}
.xef{left:698.259096pt;}
.x6e{left:700.031221pt;}
.x82{left:703.229921pt;}
.xa5{left:704.252473pt;}
.x83{left:710.446595pt;}
.x226{left:711.414033pt;}
.xf0{left:715.874117pt;}
.xd1{left:716.970369pt;}
.xb7{left:718.600924pt;}
.xe4{left:720.956269pt;}
.x96{left:723.097628pt;}
.x21{left:726.641693pt;}
.xb8{left:727.735537pt;}
.x114{left:729.288269pt;}
.x139{left:731.541260pt;}
.x1af{left:732.800751pt;}
.x4c{left:736.481995pt;}
.x155{left:737.682312pt;}
.x84{left:739.134094pt;}
.x1b0{left:740.675751pt;}
.x108{left:741.835906pt;}
.x22{left:743.166320pt;}
.x85{left:746.350769pt;}
.x17b{left:747.492156pt;}
.x1b8{left:748.865203pt;}
.x126{left:749.842530pt;}
.x6f{left:750.949187pt;}
.x22b{left:751.839812pt;}
.xc8{left:754.027309pt;}
.x115{left:755.128905pt;}
.x97{left:756.303346pt;}
.x127{left:759.438690pt;}
.x35{left:760.606748pt;}
.x70{left:761.824187pt;}
.x109{left:763.628080pt;}
.x11e{left:766.353178pt;}
.x22c{left:767.914030pt;}
.x36{left:768.940090pt;}
.x98{left:770.220002pt;}
.xe5{left:771.403350pt;}
.x22a{left:772.906219pt;}
.x11f{left:774.359348pt;}
.xd2{left:775.578063pt;}
.x15f{left:776.876797pt;}
.x227{left:777.904266pt;}
.xe6{left:778.971526pt;}
.x160{left:785.402187pt;}
.x15{left:786.455716pt;}
.x132{left:787.966520pt;}
.x99{left:793.223907pt;}
.x16{left:794.427396pt;}
.x5e{left:795.328097pt;}
.x1b9{left:801.214810pt;}
.x128{left:802.317594pt;}
.x4d{left:804.978086pt;}
.x9a{left:807.140563pt;}
.x13a{left:808.092588pt;}
.x1ba{left:809.089810pt;}
.xd3{left:811.041227pt;}
.x4e{left:814.628080pt;}
.x5f{left:817.242159pt;}
.x144{left:824.373850pt;}
.x17{left:825.912776pt;}
.x161{left:829.540857pt;}
.x207{left:831.328090pt;}
.x18{left:833.884456pt;}
.x37{left:836.322900pt;}
.xd4{left:837.701382pt;}
.xa6{left:839.622158pt;}
.x71{left:842.121058pt;}
.xd5{left:844.594265pt;}
.x60{left:845.929658pt;}
.x17c{left:847.195277pt;}
.x10a{left:848.185877pt;}
.x9b{left:849.627530pt;}
.x38{left:851.570305pt;}
.x72{left:852.996058pt;}
.x100{left:855.341945pt;}
.x23{left:857.427118pt;}
.x61{left:860.929657pt;}
.x1b1{left:864.173793pt;}
.x24{left:865.398798pt;}
.x4f{left:867.156978pt;}
.xb9{left:868.594906pt;}
.x39{left:870.859367pt;}
.x1b2{left:872.048792pt;}
.xa7{left:874.725855pt;}
.x20b{left:876.692346pt;}
.xba{left:877.729518pt;}
.x3a{left:879.192710pt;}
.x204{left:882.284753pt;}
.x86{left:883.258844pt;}
.x14e{left:885.781214pt;}
.x25{left:888.787926pt;}
.x87{left:890.475519pt;}
.xf1{left:895.817223pt;}
.x26{left:896.759606pt;}
.x22d{left:897.845666pt;}
.x208{left:899.606744pt;}
.x3b{left:902.196615pt;}
.x228{left:904.224573pt;}
.x10b{left:905.614769pt;}
.x145{left:907.814141pt;}
.x3c{left:910.529928pt;}
.x1fd{left:914.719689pt;}
.x9c{left:915.920496pt;}
.xe7{left:917.930321pt;}
.x88{left:919.045861pt;}
.xbb{left:920.608423pt;}
.x146{left:923.906776pt;}
.x62{left:925.429654pt;}
.xf2{left:928.289878pt;}
.x9d{left:929.837183pt;}
.x3d{left:932.139302pt;}
.x1fb{left:933.520271pt;}
.x1ff{left:934.710898pt;}
.x133{left:936.193931pt;}
.xf3{left:937.150961pt;}
.x3e{left:940.472614pt;}
.xd6{left:946.502769pt;}
.x89{left:947.871910pt;}
.x147{left:951.164588pt;}
.x27{left:952.215414pt;}
.x8a{left:955.088584pt;}
.x1ef{left:956.499960pt;}
.xbc{left:958.313378pt;}
.x28{left:960.187093pt;}
.x1f0{left:962.906210pt;}
.xf4{left:963.811116pt;}
.x134{left:965.635763pt;}
.x50{left:967.873374pt;}
.x205{left:969.273029pt;}
.xf5{left:972.672200pt;}
.xa8{left:974.382101pt;}
.x1f8{left:975.726522pt;}
.x51{left:977.515589pt;}
.x116{left:978.677327pt;}
.x1f4{left:980.042349pt;}
.xa9{left:981.313924pt;}
.x63{left:983.308558pt;}
.xd7{left:984.708151pt;}
.x73{left:986.308553pt;}
.x1c4{left:988.746053pt;}
.x117{left:990.127338pt;}
.x101{left:991.409749pt;}
.x206{left:994.699786pt;}
.xaa{left:995.704548pt;}
.x64{left:998.296838pt;}
.x8b{left:1001.740926pt;}
.xab{left:1002.636372pt;}
.x135{left:1005.163105pt;}
.x1f5{left:1006.339223pt;}
.x8c{left:1008.957601pt;}
.xf6{left:1009.904376pt;}
.x129{left:1013.662250pt;}
.x19{left:1016.070636pt;}
.x74{left:1017.621052pt;}
.x1fc{left:1022.986469pt;}
.x1a{left:1024.042315pt;}
.x75{left:1028.496052pt;}
.x9e{left:1029.833273pt;}
.x13b{left:1033.581988pt;}
.x8d{left:1037.129475pt;}
.x200{left:1038.780077pt;}
.x3f{left:1041.429641pt;}
.x29{left:1042.907183pt;}
.x8e{left:1044.346149pt;}
.x13c{left:1045.265581pt;}
.x148{left:1046.525637pt;}
.x40{left:1049.762954pt;}
.xbd{left:1051.166767pt;}
.x6{left:1052.312456pt;}
.xd8{left:1055.184710pt;}
.x1f9{left:1056.787066pt;}
.xf7{left:1059.077958pt;}
.xbe{left:1060.301411pt;}
.x201{left:1062.050858pt;}
.x118{left:1064.425004pt;}
.x10c{left:1066.215531pt;}
.xd9{left:1068.991655pt;}
.x52{left:1069.999955pt;}
.x9f{left:1071.921833pt;}
.x1b{left:1073.968705pt;}
.x1c3{left:1076.121049pt;}
.xe8{left:1077.068804pt;}
.x196{left:1078.184815pt;}
.x53{left:1079.749955pt;}
.x1fe{left:1084.145463pt;}
.x76{left:1085.683549pt;}
.x202{left:1088.189803pt;}
.x1a2{left:1090.643600pt;}
.xe9{left:1091.551042pt;}
.x1a4{left:1094.036102pt;}
.xda{left:1095.651810pt;}
.x77{left:1096.558549pt;}
.x1a3{left:1098.276901pt;}
.x199{left:1101.068909pt;}
.xdb{left:1102.544694pt;}
.x65{left:1104.562459pt;}
.x10d{left:1108.063185pt;}
.x1a1{left:1110.389404pt;}
.x19b{left:1111.574172pt;}
.xa0{left:1114.209612pt;}
.x41{left:1116.677013pt;}
.x12a{left:1117.685012pt;}
.x66{left:1118.746052pt;}
.x54{left:1120.402297pt;}
.x10e{left:1122.613173pt;}
.x42{left:1125.010325pt;}
.x149{left:1127.167922pt;}
.xa1{left:1128.126299pt;}
.x78{left:1129.042923pt;}
.x55{left:1130.152297pt;}
.x119{left:1131.948439pt;}
.xac{left:1134.155898pt;}
.x209{left:1135.709278pt;}
.xbf{left:1139.068865pt;}
.xad{left:1141.087721pt;}
.xea{left:1143.265884pt;}
.x156{left:1146.291517pt;}
.xeb{left:1150.834060pt;}
.xc0{left:1152.545426pt;}
.x157{left:1155.195387pt;}
.x1f6{left:1158.281203pt;}
.x20a{left:1159.901324pt;}
.xc1{left:1161.680070pt;}
.x8f{left:1166.652663pt;}
.x43{left:1167.889230pt;}
.x197{left:1170.481337pt;}
.x90{left:1173.869337pt;}
.x19a{left:1174.984326pt;}
.x44{left:1176.222542pt;}
.xc2{left:1180.969131pt;}
.xae{left:1183.966626pt;}
.x19f{left:1184.999951pt;}
.x13d{left:1187.085888pt;}
.x1a0{left:1189.843700pt;}
.xaf{left:1190.898449pt;}
.xdc{left:1192.052502pt;}
.xec{left:1193.712964pt;}
.x1fa{left:1194.708936pt;}
.xdd{left:1198.945386pt;}
.xed{left:1201.281141pt;}
.x203{left:1202.664958pt;}
.x79{left:1206.925733pt;}
.x67{left:1209.319337pt;}
.x198{left:1211.937450pt;}
.xc3{left:1213.107680pt;}
.x162{left:1215.292796pt;}
.x7a{left:1217.800732pt;}
.x12b{left:1220.681102pt;}
.xc4{left:1222.242323pt;}
.x68{left:1223.502930pt;}
.x91{left:1224.787304pt;}
.x12c{left:1230.277232pt;}
.x92{left:1232.003978pt;}
.xf8{left:1234.917795pt;}
.x56{left:1236.300730pt;}
.xde{left:1241.812448pt;}
.x12d{left:1243.765578pt;}
.x57{left:1246.050730pt;}
.x1f7{left:1250.609328pt;}
.x163{left:1252.265578pt;}
.x45{left:1260.453077pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  