
    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_ff0a627c2927de48c9312f57.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.007324;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_98dfafb27bd6ff71977f5352.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.859863;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_d5568c1fa0b0b94c46d6b220.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.929688;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_1476cb547a09ed5cf59397dc.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.172852;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_f38c653c6add26b9939ab897.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.172852;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_3fa5fd15f8385a3394fdf737.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.012207;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_ed471dfac5b78a6374876981.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.005371;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:ff8;src:url('chunks/assets/font_ceda1f9240b14712d27202eb.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.298340;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:ff9;src:url('chunks/assets/font_4fa8131d581360fac936ab8a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.941406;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:ffa;src:url('chunks/assets/font_f86ebe014db05223fb06fc4d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.941406;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_d08d82f437612c425e1b2fab.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.993000;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:ffc;src:url('chunks/assets/font_d84bb29fce464ceb702965c9.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.944000;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:ffd;src:url('chunks/assets/font_569bff1c0e038cadc2a08466.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.935000;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:ffe;src:url('chunks/assets/font_6d0d2a38bb4481b24487940c.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.005371;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:fff;src:url('chunks/assets/font_806ae5fca780809354d83bb6.woff2')format("woff");}.fff{font-family:fff;line-height:1.003000;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:ff10;src:url('chunks/assets/font_13e5a87cc847c5046b50d767.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.981934;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:ff11;src:url('chunks/assets/font_dac6c1c5b60ba1017b3abbd0.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.000000;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:ff12;src:url('chunks/assets/font_e79d74bcd55fd5814af7fbe7.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.966797;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:ff13;src:url('chunks/assets/font_b21d8b80bb91e2479aaaa0b4.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.966797;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:ff14;src:url('chunks/assets/font_0bcd26902dc706add923fff4.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.959961;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:ff15;src:url('chunks/assets/font_f3b678e1e212ead142f7c946.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.005371;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:ff16;src:url('chunks/assets/font_8a2b50431c2e749f06e24468.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.005371;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_27cf53c774e027212b00b103.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.000000;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:ff18;src:url('chunks/assets/font_4e8ba5baf3f50d707428f0ed.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.772949;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:ff19;src:url('chunks/assets/font_9c85c5a3c11839791e5336a2.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.007324;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:ff1a;src:url('chunks/assets/font_440f46e3964a70c5c26e5bfb.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.005371;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:ff1b;src:url('chunks/assets/font_19447f4c42e21d564ed04ad8.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.933105;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:ff1c;src:url('chunks/assets/font_b1c3ea6e1456ad2b93f66ffc.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.005371;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:ff1d;src:url('chunks/assets/font_848bdcfc13264cbb25234f9e.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.958008;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:ff1e;src:url('chunks/assets/font_ce6b0a330e2cab71e691bc5b.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.958008;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:ff1f;src:url('chunks/assets/font_c9a6427d9e6f63cc1ee2bd0b.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.005371;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:ff20;src:url('chunks/assets/font_f4ffc982765b04acf6e2f5a8.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.962402;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:ff21;src:url('chunks/assets/font_1f687fce550a7c4629d0732c.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.772949;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:ff22;src:url('chunks/assets/font_0591af38bf5f1e4d38f0e7f9.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.005371;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:ff23;src:url('chunks/assets/font_b34b682d05bffe3ec6d81ece.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.773926;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:ff24;src:url('chunks/assets/font_4b7331fe446716f857aff9ae.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.773926;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_5eb7be19351f2f11bb74daec.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.001465;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:ff26;src:url('chunks/assets/font_7e4f1752789dfa6ab65d4430.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.012207;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:ff27;src:url('chunks/assets/font_6fdd434313ad22aebd69e9cb.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.962402;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:ff28;src:url('chunks/assets/font_705dd6f595fcf25210d4c97f.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.936523;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:ff29;src:url('chunks/assets/font_c53bc9fadf252dc40116efb5.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.961914;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:ff2a;src:url('chunks/assets/font_a4f664112aafdf6edb4eace3.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.958008;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:ff2b;src:url('chunks/assets/font_95043c06cec1e8571fc344ef.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.819336;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:ff2c;src:url('chunks/assets/font_c50ccc8e3676789f89873017.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.941895;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;}
.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);}
.m1{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);}
.v1{vertical-align:-10.500000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:33.720000px;}
.v4{vertical-align:58.500000px;}
.v2{vertical-align:188.580000px;}
.lsd{letter-spacing:-2.010000px;}
.lsb{letter-spacing:-0.708000px;}
.lsa{letter-spacing:-0.630000px;}
.ls19{letter-spacing:-0.190200px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.134700px;}
.ls20{letter-spacing:0.163200px;}
.ls24{letter-spacing:0.209100px;}
.ls22{letter-spacing:0.223200px;}
.ls4{letter-spacing:0.254700px;}
.ls26{letter-spacing:0.269100px;}
.ls5{letter-spacing:0.472200px;}
.ls17{letter-spacing:0.589950px;}
.ls10{letter-spacing:0.600000px;}
.ls3{letter-spacing:0.624000px;}
.ls1f{letter-spacing:0.678000px;}
.lsf{letter-spacing:0.720000px;}
.ls23{letter-spacing:0.756000px;}
.ls21{letter-spacing:0.828000px;}
.ls25{letter-spacing:0.906000px;}
.lsc{letter-spacing:1.164000px;}
.ls16{letter-spacing:1.314000px;}
.ls18{letter-spacing:1.818000px;}
.ls15{letter-spacing:2.004000px;}
.ls14{letter-spacing:28.409400px;}
.ls13{letter-spacing:63.563400px;}
.ls8{letter-spacing:75.472500px;}
.ls2{letter-spacing:75.532500px;}
.ls1c{letter-spacing:92.422500px;}
.ls1b{letter-spacing:92.475000px;}
.ls1e{letter-spacing:92.572500px;}
.ls1a{letter-spacing:92.602500px;}
.ls1d{letter-spacing:92.625000px;}
.ls7{letter-spacing:122.625000px;}
.ls6{letter-spacing:122.677500px;}
.ls12{letter-spacing:123.120000px;}
.ls11{letter-spacing:123.150000px;}
.ls1{letter-spacing:154.822500px;}
.lse{letter-spacing:191.820000px;}
.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;}
}
.ws3{word-spacing:-149.916000px;}
.ws35{word-spacing:-121.650000px;}
.ws9{word-spacing:-101.907000px;}
.ws26{word-spacing:-94.887000px;}
.ws25{word-spacing:-94.848000px;}
.ws2a{word-spacing:-93.678000px;}
.ws3e{word-spacing:-90.207000px;}
.ws28{word-spacing:-84.318000px;}
.ws6{word-spacing:-84.096000px;}
.ws21{word-spacing:-69.108000px;}
.ws1e{word-spacing:-69.069000px;}
.ws10{word-spacing:-68.124000px;}
.ws31{word-spacing:-62.049000px;}
.ws1f{word-spacing:-56.175600px;}
.ws20{word-spacing:-52.728000px;}
.ws17{word-spacing:-50.349000px;}
.ws1b{word-spacing:-49.179000px;}
.ws2e{word-spacing:-48.849900px;}
.ws22{word-spacing:-48.166050px;}
.ws0{word-spacing:-46.839000px;}
.ws44{word-spacing:-46.704900px;}
.ws42{word-spacing:-46.660800px;}
.ws43{word-spacing:-46.554900px;}
.ws41{word-spacing:-46.510800px;}
.ws23{word-spacing:-46.162050px;}
.ws40{word-spacing:-45.832800px;}
.ws3f{word-spacing:-45.798900px;}
.ws13{word-spacing:-44.499000px;}
.ws2d{word-spacing:-43.764900px;}
.ws4{word-spacing:-41.662500px;}
.ws5{word-spacing:-40.073700px;}
.wsd{word-spacing:-39.273000px;}
.ws3c{word-spacing:-38.683050px;}
.wsb{word-spacing:-37.571700px;}
.ws3b{word-spacing:-36.582000px;}
.ws8{word-spacing:-36.320700px;}
.ws29{word-spacing:-33.969000px;}
.ws12{word-spacing:-32.799000px;}
.wse{word-spacing:-32.760000px;}
.ws1c{word-spacing:-31.629000px;}
.ws1d{word-spacing:-31.590000px;}
.ws1a{word-spacing:-30.543900px;}
.ws7{word-spacing:-29.957550px;}
.ws24{word-spacing:-26.218050px;}
.ws2b{word-spacing:-23.769000px;}
.ws2c{word-spacing:-22.230000px;}
.ws14{word-spacing:-21.099000px;}
.wsf{word-spacing:-21.060000px;}
.ws16{word-spacing:-20.373900px;}
.ws15{word-spacing:-20.340000px;}
.ws3d{word-spacing:-20.057700px;}
.ws11{word-spacing:-17.589000px;}
.ws38{word-spacing:-17.550000px;}
.wsc{word-spacing:-15.249000px;}
.ws36{word-spacing:-15.210000px;}
.ws34{word-spacing:-14.079000px;}
.ws33{word-spacing:-14.040000px;}
.ws2f{word-spacing:-10.569000px;}
.ws19{word-spacing:-10.530000px;}
.ws27{word-spacing:-0.324300px;}
.ws32{word-spacing:-0.238650px;}
.ws18{word-spacing:-0.193650px;}
.ws3a{word-spacing:-0.139650px;}
.ws37{word-spacing:-0.135150px;}
.ws39{word-spacing:-0.130650px;}
.ws1{word-spacing:-0.058500px;}
.ws2{word-spacing:0.000000px;}
.wsa{word-spacing:480.433500px;}
.ws30{word-spacing:2277.504150px;}
._9{margin-left:-28.015200px;}
._4{margin-left:-26.863650px;}
._19{margin-left:-23.929200px;}
._c{margin-left:-16.735950px;}
._11{margin-left:-15.252600px;}
._8{margin-left:-14.051700px;}
._14{margin-left:-12.714150px;}
._e{margin-left:-11.371800px;}
._f{margin-left:-9.668100px;}
._d{margin-left:-8.236350px;}
._7{margin-left:-7.051350px;}
._0{margin-left:-5.613300px;}
._a{margin-left:-4.374450px;}
._6{margin-left:-3.224700px;}
._2{margin-left:-2.004750px;}
._17{margin-left:-1.002000px;}
._1{width:1.603800px;}
._3{width:3.207600px;}
._5{width:4.410450px;}
._13{width:6.013650px;}
._12{width:9.970350px;}
._b{width:11.313900px;}
._16{width:527.020650px;}
._18{width:661.154700px;}
._10{width:842.513400px;}
._15{width:2369.002800px;}
.fc12{color:rgb(255,0,255);}
.fcf{color:rgb(240,83,43);}
.fce{color:rgb(215,228,189);}
.fc0{color:rgb(0,0,0);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,255);}
.fc2{color:transparent;}
.fcd{color:rgb(254,254,254);}
.fc4{color:rgb(0,176,240);}
.fc10{color:rgb(193,255,114);}
.fca{color:rgb(86,88,98);}
.fc11{color:rgb(89,89,89);}
.fc5{color:rgb(238,255,65);}
.fc6{color:rgb(255,255,0);}
.fc7{color:rgb(251,255,255);}
.fc8{color:rgb(255,0,0);}
.fcb{color:rgb(146,208,80);}
.fc9{color:rgb(69,69,69);}
.fcc{color:rgb(243,235,0);}
.fs2b{font-size:40.500000px;}
.fs3a{font-size:40.650000px;}
.fs44{font-size:45.000000px;}
.fs45{font-size:49.500000px;}
.fs40{font-size:54.000000px;}
.fs41{font-size:54.150000px;}
.fs6{font-size:58.500000px;}
.fs1e{font-size:58.650000px;}
.fs46{font-size:63.000000px;}
.fs25{font-size:67.500000px;}
.fs26{font-size:67.650000px;}
.fs49{font-size:72.150000px;}
.fs21{font-size:81.000000px;}
.fs20{font-size:81.150000px;}
.fs37{font-size:85.500000px;}
.fs36{font-size:85.650000px;}
.fs19{font-size:90.000000px;}
.fs18{font-size:90.150000px;}
.fs32{font-size:94.650000px;}
.fs3d{font-size:99.000000px;}
.fs5{font-size:108.150000px;}
.fs1a{font-size:112.650000px;}
.fs2e{font-size:121.500000px;}
.fs14{font-size:121.650000px;}
.fs1c{font-size:126.000000px;}
.fs1b{font-size:126.150000px;}
.fs48{font-size:130.500000px;}
.fsd{font-size:130.650000px;}
.fs17{font-size:135.150000px;}
.fs47{font-size:139.500000px;}
.fs16{font-size:139.650000px;}
.fsf{font-size:144.000000px;}
.fse{font-size:144.150000px;}
.fs1f{font-size:148.650000px;}
.fs2c{font-size:153.000000px;}
.fs1d{font-size:153.150000px;}
.fsc{font-size:166.650000px;}
.fs39{font-size:166.800000px;}
.fs29{font-size:171.150000px;}
.fs9{font-size:175.650000px;}
.fs3{font-size:180.150000px;}
.fs4{font-size:180.300000px;}
.fs22{font-size:189.150000px;}
.fs28{font-size:189.300000px;}
.fs10{font-size:193.650000px;}
.fs11{font-size:193.800000px;}
.fs30{font-size:202.650000px;}
.fs2f{font-size:202.800000px;}
.fs2d{font-size:216.150000px;}
.fs12{font-size:216.300000px;}
.fs13{font-size:229.650000px;}
.fs43{font-size:229.800000px;}
.fs3b{font-size:238.650000px;}
.fs23{font-size:243.150000px;}
.fs24{font-size:243.300000px;}
.fs8{font-size:265.650000px;}
.fs7{font-size:265.800000px;}
.fs1{font-size:270.150000px;}
.fs2{font-size:270.300000px;}
.fs31{font-size:288.300000px;}
.fs42{font-size:292.800000px;}
.fsb{font-size:301.800000px;}
.fs34{font-size:324.300000px;}
.fs3c{font-size:328.800000px;}
.fs3f{font-size:346.800000px;}
.fs3e{font-size:346.950000px;}
.fs35{font-size:360.300000px;}
.fs38{font-size:360.450000px;}
.fs33{font-size:364.800000px;}
.fs2a{font-size:364.950000px;}
.fs15{font-size:391.950000px;}
.fs0{font-size:400.950000px;}
.fs4a{font-size:409.950000px;}
.fs27{font-size:427.950000px;}
.fsa{font-size:576.600000px;}
.fs4b{font-size:671.220000px;}
.y0{bottom:0.000000px;}
.y2f{bottom:15.600000px;}
.yca{bottom:20.062500px;}
.y103{bottom:21.412500px;}
.y163{bottom:24.300000px;}
.y76{bottom:26.400000px;}
.y14e{bottom:27.637500px;}
.y90{bottom:36.787500px;}
.y37{bottom:37.687500px;}
.ybd{bottom:42.900000px;}
.y50{bottom:47.325000px;}
.y22{bottom:51.937500px;}
.y12e{bottom:57.637500px;}
.y46{bottom:59.325000px;}
.y4e{bottom:61.987500px;}
.yf7{bottom:66.000000px;}
.y10{bottom:67.687500px;}
.y14d{bottom:69.300000px;}
.y1a{bottom:70.912500px;}
.y28{bottom:71.962500px;}
.y165{bottom:72.412500px;}
.y10d{bottom:73.425000px;}
.y11d{bottom:73.687500px;}
.y3d{bottom:76.837500px;}
.y41{bottom:76.875000px;}
.y9b{bottom:77.325000px;}
.y17c{bottom:78.975000px;}
.y75{bottom:79.312500px;}
.y4f{bottom:84.487500px;}
.y27{bottom:85.612500px;}
.yc8{bottom:90.300000px;}
.y84{bottom:92.175000px;}
.yc2{bottom:95.700000px;}
.y124{bottom:100.500000px;}
.y10c{bottom:103.837500px;}
.y164{bottom:108.450000px;}
.y1b{bottom:114.375000px;}
.y8f{bottom:114.487500px;}
.y12d{bottom:116.212500px;}
.y83{bottom:119.212500px;}
.y6b{bottom:121.237500px;}
.yf6{bottom:127.912500px;}
.y3c{bottom:129.787500px;}
.y10b{bottom:134.250000px;}
.y9a{bottom:135.862500px;}
.y140{bottom:137.400000px;}
.yc7{bottom:141.562500px;}
.y190{bottom:144.825000px;}
.y82{bottom:146.212500px;}
.yf{bottom:146.512500px;}
.y133{bottom:152.295000px;}
.y123{bottom:158.100000px;}
.y10a{bottom:164.655000px;}
.y4d{bottom:170.250000px;}
.y81{bottom:173.250000px;}
.y6a{bottom:174.180000px;}
.yc1{bottom:175.650000px;}
.y2d{bottom:178.155000px;}
.y3b{bottom:181.575000px;}
.yec{bottom:185.400000px;}
.yf5{bottom:189.870000px;}
.y109{bottom:195.030000px;}
.y4c{bottom:197.250000px;}
.y2b{bottom:203.100000px;}
.y18f{bottom:214.650000px;}
.y4b{bottom:224.295000px;}
.y69{bottom:227.100000px;}
.yc6{bottom:227.130000px;}
.y8e{bottom:229.545000px;}
.y3a{bottom:234.495000px;}
.y40{bottom:234.525000px;}
.y150{bottom:240.345000px;}
.y25{bottom:241.125000px;}
.y4a{bottom:251.325000px;}
.yeb{bottom:251.850000px;}
.yf4{bottom:252.900000px;}
.yb{bottom:253.620000px;}
.y2a{bottom:253.800000px;}
.yc0{bottom:254.475000px;}
.yad{bottom:257.595000px;}
.y13f{bottom:259.005000px;}
.yb8{bottom:261.375000px;}
.y14c{bottom:261.705000px;}
.y19{bottom:277.950000px;}
.y49{bottom:278.325000px;}
.y14b{bottom:278.580000px;}
.y68{bottom:278.880000px;}
.ya3{bottom:279.900000px;}
.y8d{bottom:281.370000px;}
.y170{bottom:282.405000px;}
.y26{bottom:283.920000px;}
.ya6{bottom:286.800000px;}
.y2e{bottom:288.975000px;}
.y11a{bottom:289.245000px;}
.y114{bottom:290.025000px;}
.y24{bottom:295.575000px;}
.y48{bottom:305.370000px;}
.y14f{bottom:306.780000px;}
.y29{bottom:310.080000px;}
.y187{bottom:310.605000px;}
.y72{bottom:313.050000px;}
.y3f{bottom:313.425000px;}
.ya{bottom:316.695000px;}
.y16f{bottom:317.325000px;}
.yea{bottom:318.255000px;}
.ye0{bottom:323.205000px;}
.yac{bottom:324.045000px;}
.yb7{bottom:326.700000px;}
.ya5{bottom:327.330000px;}
.y47{bottom:332.400000px;}
.ye4{bottom:333.075000px;}
.ybf{bottom:334.425000px;}
.y1c{bottom:341.520000px;}
.ya2{bottom:345.195000px;}
.y186{bottom:346.650000px;}
.y16d{bottom:347.895000px;}
.y11e{bottom:349.545000px;}
.y80{bottom:349.725000px;}
.y113{bottom:350.850000px;}
.y102{bottom:351.705000px;}
.y16e{bottom:353.370000px;}
.y18e{bottom:356.550000px;}
.y138{bottom:357.255000px;}
.ydf{bottom:360.375000px;}
.yd1{bottom:360.630000px;}
.ya4{bottom:367.875000px;}
.y3e{bottom:372.000000px;}
.y71{bottom:379.500000px;}
.y9{bottom:379.725000px;}
.y13e{bottom:380.625000px;}
.y18{bottom:382.695000px;}
.ye9{bottom:383.580000px;}
.y16c{bottom:383.925000px;}
.y67{bottom:384.750000px;}
.y8c{bottom:387.195000px;}
.y14a{bottom:388.320000px;}
.y12c{bottom:389.400000px;}
.ye3{bottom:399.495000px;}
.y149{bottom:405.195000px;}
.y16{bottom:408.150000px;}
.ya1{bottom:411.630000px;}
.y119{bottom:415.350000px;}
.ya8{bottom:417.330000px;}
.y185{bottom:418.725000px;}
.yb2{bottom:419.775000px;}
.y137{bottom:420.255000px;}
.y18d{bottom:426.330000px;}
.y12b{bottom:426.570000px;}
.y106{bottom:428.325000px;}
.yee{bottom:431.700000px;}
.y66{bottom:436.545000px;}
.y7a{bottom:437.550000px;}
.y8b{bottom:438.975000px;}
.yd0{bottom:440.595000px;}
.y8{bottom:442.800000px;}
.y70{bottom:444.795000px;}
.y74{bottom:445.200000px;}
.y101{bottom:449.700000px;}
.ye8{bottom:450.045000px;}
.y184{bottom:454.755000px;}
.y178{bottom:457.320000px;}
.yb6{bottom:459.570000px;}
.ye2{bottom:464.820000px;}
.y15{bottom:472.320000px;}
.y156{bottom:474.975000px;}
.y105{bottom:475.620000px;}
.yed{bottom:477.855000px;}
.yb0{bottom:479.625000px;}
.y73{bottom:482.370000px;}
.ya7{bottom:483.795000px;}
.y121{bottom:484.875000px;}
.yb1{bottom:486.225000px;}
.yf3{bottom:486.600000px;}
.y108{bottom:486.900000px;}
.y65{bottom:489.495000px;}
.y79{bottom:490.500000px;}
.y183{bottom:490.770000px;}
.y177{bottom:494.475000px;}
.y13d{bottom:502.245000px;}
.y18c{bottom:504.945000px;}
.ye{bottom:505.845000px;}
.y6f{bottom:511.245000px;}
.y7f{bottom:516.300000px;}
.ycf{bottom:519.405000px;}
.yf1{bottom:523.200000px;}
.y107{bottom:524.325000px;}
.yb5{bottom:526.020000px;}
.ye1{bottom:531.270000px;}
.y176{bottom:531.630000px;}
.yaf{bottom:533.700000px;}
.y17b{bottom:534.270000px;}
.ya0{bottom:534.570000px;}
.y136{bottom:536.250000px;}
.y14{bottom:536.505000px;}
.y144{bottom:541.950000px;}
.y64{bottom:542.400000px;}
.y7e{bottom:543.345000px;}
.y100{bottom:546.525000px;}
.y155{bottom:553.800000px;}
.y143{bottom:558.825000px;}
.y16b{bottom:561.945000px;}
.y175{bottom:568.800000px;}
.y7{bottom:568.905000px;}
.y7d{bottom:570.375000px;}
.yde{bottom:572.580000px;}
.y36{bottom:575.250000px;}
.y51{bottom:575.505000px;}
.y142{bottom:578.880000px;}
.ye6{bottom:582.150000px;}
.yae{bottom:587.730000px;}
.y141{bottom:595.800000px;}
.y7c{bottom:597.375000px;}
.yce{bottom:598.245000px;}
.y16a{bottom:601.350000px;}
.y9d{bottom:604.875000px;}
.y23{bottom:607.245000px;}
.y52{bottom:607.500000px;}
.ye5{bottom:610.275000px;}
.y13c{bottom:623.850000px;}
.y6{bottom:631.950000px;}
.y174{bottom:636.345000px;}
.y169{bottom:640.770000px;}
.y5d{bottom:641.370000px;}
.y9c{bottom:642.045000px;}
.y130{bottom:643.320000px;}
.yff{bottom:644.505000px;}
.y63{bottom:647.130000px;}
.y17d{bottom:650.130000px;}
.y135{bottom:651.120000px;}
.yb4{bottom:657.750000px;}
.y35{bottom:664.200000px;}
.y13{bottom:666.000000px;}
.y95{bottom:667.080000px;}
.y154{bottom:668.655000px;}
.y12f{bottom:671.445000px;}
.y173{bottom:672.375000px;}
.ycd{bottom:678.195000px;}
.y18b{bottom:682.380000px;}
.ydd{bottom:685.155000px;}
.y10f{bottom:686.700000px;}
.yf0{bottom:687.825000px;}
.yc9{bottom:689.370000px;}
.y5{bottom:695.025000px;}
.y78{bottom:699.105000px;}
.y62{bottom:700.050000px;}
.y34{bottom:700.245000px;}
.y5c{bottom:706.695000px;}
.y172{bottom:707.280000px;}
.y128{bottom:715.470000px;}
.y148{bottom:717.000000px;}
.y10e{bottom:721.620000px;}
.yef{bottom:722.730000px;}
.yb3{bottom:724.200000px;}
.y77{bottom:727.245000px;}
.y94{bottom:732.405000px;}
.y147{bottom:733.905000px;}
.y17a{bottom:734.700000px;}
.y33{bottom:736.275000px;}
.ydc{bottom:736.950000px;}
.y168{bottom:737.100000px;}
.yfe{bottom:741.330000px;}
.y171{bottom:743.325000px;}
.y127{bottom:744.195000px;}
.y13b{bottom:745.500000px;}
.y193{bottom:746.505000px;}
.y61{bottom:751.830000px;}
.ycc{bottom:757.020000px;}
.y4{bottom:758.100000px;}
.y118{bottom:766.155000px;}
.y42{bottom:766.725000px;}
.y134{bottom:767.100000px;}
.y32{bottom:772.320000px;}
.y5b{bottom:773.100000px;}
.y39{bottom:773.130000px;}
.y167{bottom:774.270000px;}
.y153{bottom:783.525000px;}
.ydb{bottom:787.620000px;}
.yf8{bottom:789.900000px;}
.y162{bottom:795.300000px;}
.y12{bottom:795.480000px;}
.y93{bottom:798.855000px;}
.y126{bottom:801.825000px;}
.y18a{bottom:804.000000px;}
.y31{bottom:808.350000px;}
.ye7{bottom:810.750000px;}
.y166{bottom:811.425000px;}
.y45{bottom:815.850000px;}
.y192{bottom:816.330000px;}
.y54{bottom:816.495000px;}
.yf2{bottom:818.205000px;}
.y115{bottom:819.330000px;}
.y146{bottom:821.325000px;}
.y161{bottom:830.205000px;}
.y7b{bottom:832.830000px;}
.ycb{bottom:836.955000px;}
.y145{bottom:838.245000px;}
.yda{bottom:839.445000px;}
.y3{bottom:841.170000px;}
.y15a{bottom:841.830000px;}
.y30{bottom:844.380000px;}
.ybe{bottom:851.025000px;}
.y60{bottom:857.700000px;}
.y9f{bottom:858.750000px;}
.yd4{bottom:859.650000px;}
.y11{bottom:859.695000px;}
.yab{bottom:859.995000px;}
.y58{bottom:861.675000px;}
.y43{bottom:861.825000px;}
.y152{bottom:862.350000px;}
.y160{bottom:866.250000px;}
.y13a{bottom:867.120000px;}
.yc5{bottom:869.100000px;}
.y159{bottom:879.000000px;}
.y11c{bottom:879.795000px;}
.yba{bottom:881.850000px;}
.y6d{bottom:881.925000px;}
.y117{bottom:886.650000px;}
.y9e{bottom:886.920000px;}
.yd9{bottom:890.100000px;}
.y38{bottom:890.250000px;}
.ybc{bottom:894.075000px;}
.y17f{bottom:896.400000px;}
.y57{bottom:898.830000px;}
.y104{bottom:901.125000px;}
.y6c{bottom:905.550000px;}
.y5f{bottom:909.495000px;}
.y2{bottom:916.575000px;}
.y191{bottom:916.920000px;}
.yd3{bottom:924.945000px;}
.yaa{bottom:925.320000px;}
.y189{bottom:925.620000px;}
.y8a{bottom:932.130000px;}
.y158{bottom:938.400000px;}
.y111{bottom:940.050000px;}
.yfa{bottom:945.750000px;}
.y120{bottom:948.000000px;}
.y56{bottom:950.625000px;}
.y132{bottom:953.400000px;}
.yc4{bottom:954.675000px;}
.y122{bottom:955.380000px;}
.y1d{bottom:956.100000px;}
.yd8{bottom:956.505000px;}
.y99{bottom:959.205000px;}
.y44{bottom:959.625000px;}
.y15e{bottom:960.675000px;}
.y5e{bottom:962.400000px;}
.yb9{bottom:967.425000px;}
.y182{bottom:973.875000px;}
.ybb{bottom:980.775000px;}
.y89{bottom:983.955000px;}
.y139{bottom:988.725000px;}
.yd2{bottom:991.380000px;}
.ya9{bottom:991.725000px;}
.y15d{bottom:993.675000px;}
.y15f{bottom:995.025000px;}
.y179{bottom:997.995000px;}
.y1{bottom:999.945000px;}
.y17{bottom:1000.005000px;}
.y55{bottom:1003.575000px;}
.yd7{bottom:1003.830000px;}
.y181{bottom:1009.920000px;}
.y98{bottom:1011.750000px;}
.y151{bottom:1016.100000px;}
.y131{bottom:1035.600000px;}
.y88{bottom:1036.875000px;}
.y116{bottom:1037.025000px;}
.yc3{bottom:1040.250000px;}
.y180{bottom:1045.950000px;}
.y188{bottom:1047.225000px;}
.yd6{bottom:1052.250000px;}
.y21{bottom:1059.450000px;}
.yfd{bottom:1065.675000px;}
.y97{bottom:1065.795000px;}
.y15b{bottom:1068.870000px;}
.y110{bottom:1070.700000px;}
.y125{bottom:1072.575000px;}
.yf9{bottom:1077.495000px;}
.y11f{bottom:1078.620000px;}
.yfb{bottom:1079.745000px;}
.y112{bottom:1080.870000px;}
.y87{bottom:1081.455000px;}
.y6e{bottom:1083.975000px;}
.y85{bottom:1085.955000px;}
.y92{bottom:1095.705000px;}
.y20{bottom:1097.745000px;}
.yd5{bottom:1099.545000px;}
.y91{bottom:1110.375000px;}
.y5a{bottom:1115.580000px;}
.y53{bottom:1116.675000px;}
.y96{bottom:1119.870000px;}
.y17e{bottom:1126.050000px;}
.yfc{bottom:1128.750000px;}
.y11b{bottom:1129.875000px;}
.y15c{bottom:1131.150000px;}
.y157{bottom:1133.880000px;}
.y86{bottom:1134.375000px;}
.y1f{bottom:1137.150000px;}
.y1e{bottom:1138.170000px;}
.y59{bottom:1143.750000px;}
.y2c{bottom:1151.820000px;}
.y12a{bottom:1156.005000px;}
.y129{bottom:1170.630000px;}
.yd{bottom:1233.675000px;}
.yc{bottom:1413.120000px;}
.h3e{height:30.988037px;}
.h60{height:31.102808px;}
.h70{height:34.431152px;}
.h71{height:37.874268px;}
.h68{height:41.317383px;}
.h69{height:41.432153px;}
.h7{height:42.618164px;}
.h6e{height:44.760498px;}
.h29{height:44.875269px;}
.h73{height:46.050293px;}
.h33{height:51.646729px;}
.h34{height:51.761499px;}
.h79{height:52.738550px;}
.h2d{height:61.976074px;}
.h2c{height:62.090845px;}
.h58{height:64.291992px;}
.h57{height:64.404785px;}
.h59{height:65.419189px;}
.h5e{height:65.533960px;}
.h53{height:67.675781px;}
.h51{height:70.987500px;}
.h23{height:72.333984px;}
.h22{height:72.454541px;}
.h65{height:75.748535px;}
.h78{height:79.053003px;}
.h4d{height:81.112500px;}
.h6{height:82.010229px;}
.hd{height:82.749536px;}
.h19{height:85.005900px;}
.h1c{height:88.920923px;}
.h24{height:89.331450px;}
.h45{height:92.964111px;}
.h44{height:93.078882px;}
.h10{height:95.499536px;}
.h2b{height:96.407227px;}
.h38{height:96.521997px;}
.h21{height:96.673950px;}
.h76{height:97.875000px;}
.h72{height:97.987500px;}
.h26{height:99.918000px;}
.h55{height:99.965112px;}
.h25{height:100.036950px;}
.h6f{height:101.362500px;}
.h43{height:102.154395px;}
.h75{height:104.625000px;}
.h74{height:104.737500px;}
.h13{height:105.257812px;}
.h12{height:105.367456px;}
.h1e{height:106.851343px;}
.h14{height:107.569116px;}
.h2a{height:113.737573px;}
.h40{height:117.065918px;}
.h3f{height:117.180688px;}
.h61{height:120.590845px;}
.h7b{height:120.847412px;}
.h7a{height:120.996606px;}
.h27{height:121.447950px;}
.h18{height:123.487650px;}
.h4e{height:124.987500px;}
.he{height:127.510034px;}
.h5d{height:127.624805px;}
.h5f{height:130.241997px;}
.h39{height:130.953149px;}
.h11{height:131.681909px;}
.ha{height:134.396265px;}
.h4f{height:135.112500px;}
.h50{height:135.225000px;}
.h4{height:137.839380px;}
.h5{height:137.954150px;}
.h2e{height:143.709668px;}
.h36{height:144.725610px;}
.h37{height:144.840381px;}
.h16{height:145.237500px;}
.h17{height:145.350000px;}
.h3c{height:148.168726px;}
.h3d{height:148.283496px;}
.hf{height:151.352051px;}
.h49{height:151.987500px;}
.h48{height:152.100000px;}
.h15{height:152.208900px;}
.h1f{height:153.564450px;}
.h20{height:153.683400px;}
.h7d{height:154.758105px;}
.h7e{height:154.872656px;}
.h4a{height:155.054956px;}
.h4b{height:155.169727px;}
.h77{height:158.106006px;}
.h41{height:165.384302px;}
.h42{height:165.499072px;}
.h6c{height:167.973926px;}
.h1a{height:170.011800px;}
.h6d{height:172.686621px;}
.h6b{height:172.798828px;}
.h32{height:179.631812px;}
.h31{height:179.742627px;}
.h1b{height:180.504900px;}
.h62{height:182.599878px;}
.h2f{height:182.837402px;}
.h30{height:182.950195px;}
.h5b{height:192.609888px;}
.h28{height:201.945703px;}
.h47{height:203.258569px;}
.h46{height:203.373340px;}
.h2{height:206.701685px;}
.h3{height:206.816455px;}
.h6a{height:214.024219px;}
.h5c{height:214.989038px;}
.h4c{height:220.588916px;}
.hc{height:230.918262px;}
.h54{height:248.133838px;}
.h64{height:250.292578px;}
.h63{height:251.576953px;}
.h3a{height:260.913984px;}
.h9{height:264.223169px;}
.h8{height:264.372363px;}
.h67{height:265.349414px;}
.h66{height:265.464185px;}
.h56{height:275.678760px;}
.h5a{height:275.793530px;}
.h52{height:279.121875px;}
.h3b{height:279.236646px;}
.h1d{height:299.895337px;}
.h1{height:306.781567px;}
.h7c{height:313.067285px;}
.h35{height:321.798340px;}
.hb{height:441.177832px;}
.h7f{height:512.591836px;}
.h0{height:1215.000000px;}
.w1{width:2159.999968px;}
.w0{width:2160.000000px;}
.xc{left:-937.050032px;}
.x0{left:0.000000px;}
.xd{left:10.799968px;}
.x3b{left:25.499968px;}
.xa9{left:27.787468px;}
.xf1{left:39.487468px;}
.x90{left:43.462468px;}
.x22{left:48.599968px;}
.x102{left:51.787468px;}
.x23{left:53.399968px;}
.x1d{left:60.037468px;}
.xa8{left:61.687468px;}
.xf{left:63.224968px;}
.x21{left:64.837468px;}
.x1e{left:68.662468px;}
.x100{left:72.037468px;}
.x101{left:73.274968px;}
.x16{left:74.324968px;}
.x4c{left:80.999968px;}
.x8a{left:82.199968px;}
.xda{left:88.199968px;}
.x9b{left:91.537468px;}
.xeb{left:95.287468px;}
.x91{left:97.499968px;}
.x63{left:104.474968px;}
.x62{left:108.299968px;}
.x1c{left:109.874968px;}
.x85{left:111.862468px;}
.xcf{left:116.887468px;}
.x9a{left:120.149968px;}
.xd9{left:123.862468px;}
.xfc{left:125.624968px;}
.x98{left:128.287468px;}
.x77{left:129.449968px;}
.x99{left:133.162468px;}
.x1{left:135.974968px;}
.xf5{left:161.144968px;}
.x75{left:172.724968px;}
.x66{left:173.804968px;}
.x68{left:181.874968px;}
.xbf{left:183.554968px;}
.xff{left:185.804968px;}
.x76{left:188.474968px;}
.xb2{left:190.904968px;}
.xfe{left:195.944968px;}
.x61{left:208.124968px;}
.x88{left:211.154968px;}
.xfd{left:216.599968px;}
.x54{left:227.324968px;}
.xa5{left:230.819968px;}
.xbe{left:233.444968px;}
.x49{left:236.579968px;}
.xa6{left:247.154968px;}
.x4a{left:252.149968px;}
.x67{left:261.029968px;}
.xd7{left:262.199968px;}
.x89{left:265.199968px;}
.xd0{left:269.969968px;}
.xd8{left:285.374968px;}
.xdb{left:289.694968px;}
.x83{left:290.699968px;}
.xb3{left:303.644968px;}
.xa4{left:306.794968px;}
.x95{left:309.344968px;}
.xa7{left:314.024968px;}
.xf7{left:322.349968px;}
.x10{left:325.469968px;}
.xc0{left:337.499968px;}
.x84{left:356.399968px;}
.x2{left:372.194968px;}
.xb6{left:376.019968px;}
.xc7{left:380.099968px;}
.xf8{left:383.999968px;}
.x34{left:396.719968px;}
.x3d{left:404.849968px;}
.x39{left:406.604968px;}
.x8e{left:413.654968px;}
.xc2{left:415.124968px;}
.xab{left:438.569968px;}
.xac{left:469.694968px;}
.x6d{left:477.119968px;}
.x46{left:519.074968px;}
.xa{left:531.074968px;}
.x38{left:551.774968px;}
.xaa{left:559.574968px;}
.x47{left:571.004968px;}
.x4b{left:572.699968px;}
.x96{left:589.124968px;}
.x6{left:597.374968px;}
.x35{left:599.819968px;}
.x5e{left:608.819968px;}
.x97{left:618.749968px;}
.x48{left:622.949968px;}
.xb{left:627.044968px;}
.xec{left:631.379968px;}
.xb4{left:632.969968px;}
.x4d{left:636.704968px;}
.x6e{left:640.379968px;}
.xe9{left:659.774968px;}
.xcd{left:662.819968px;}
.xb5{left:663.899968px;}
.x24{left:666.269968px;}
.x26{left:671.399968px;}
.x7c{left:680.624968px;}
.xe4{left:688.649968px;}
.x25{left:693.674968px;}
.xe2{left:698.474968px;}
.xe5{left:701.024968px;}
.xe3{left:710.849968px;}
.xea{left:715.124968px;}
.x7d{left:717.119968px;}
.x3{left:720.824968px;}
.x27{left:731.969968px;}
.x29{left:738.419968px;}
.x7{left:750.374968px;}
.x5{left:752.594968px;}
.x28{left:758.894968px;}
.x6f{left:773.849968px;}
.x9c{left:776.324968px;}
.x70{left:793.169968px;}
.x9d{left:795.674968px;}
.x69{left:797.174968px;}
.xce{left:799.649968px;}
.x8b{left:811.079968px;}
.x50{left:813.029968px;}
.xc1{left:814.829968px;}
.x36{left:818.879968px;}
.x6a{left:826.454968px;}
.x51{left:832.379968px;}
.xbc{left:839.174968px;}
.xbd{left:844.724968px;}
.xf6{left:849.569968px;}
.xe8{left:850.919968px;}
.x8{left:859.919968px;}
.x9{left:864.944968px;}
.x93{left:867.449968px;}
.x5c{left:876.569968px;}
.xe7{left:880.004968px;}
.xee{left:882.704968px;}
.x5a{left:884.249968px;}
.x7b{left:889.799968px;}
.xba{left:892.454968px;}
.xb7{left:900.149968px;}
.xb8{left:903.899968px;}
.x1f{left:914.729968px;}
.xe6{left:919.379968px;}
.x92{left:926.174968px;}
.x7a{left:929.174968px;}
.x4{left:934.724968px;}
.x6b{left:942.599968px;}
.x3a{left:962.819968px;}
.x6c{left:966.254968px;}
.xdc{left:968.969968px;}
.x17{left:971.279968px;}
.xe0{left:980.099968px;}
.xdd{left:981.329968px;}
.xed{left:985.124968px;}
.xf0{left:989.879968px;}
.xe1{left:992.474968px;}
.x7f{left:996.794968px;}
.x7e{left:1003.349968px;}
.xf9{left:1007.129968px;}
.x5b{left:1009.769968px;}
.x80{left:1013.144968px;}
.xb9{left:1017.419968px;}
.x5d{left:1020.629968px;}
.xbb{left:1035.404968px;}
.x37{left:1037.999968px;}
.xef{left:1114.754968px;}
.xaf{left:1137.644968px;}
.x2a{left:1147.454968px;}
.xc5{left:1155.374968px;}
.x14{left:1156.904968px;}
.x59{left:1158.269968px;}
.x94{left:1159.349968px;}
.x20{left:1162.244968px;}
.x13{left:1174.154968px;}
.xe{left:1192.649968px;}
.x8c{left:1197.254968px;}
.x2b{left:1198.799968px;}
.x57{left:1203.374968px;}
.x2c{left:1206.824968px;}
.xcb{left:1210.574968px;}
.xae{left:1218.569968px;}
.xc6{left:1219.874968px;}
.x19{left:1220.879968px;}
.x5f{left:1223.024968px;}
.xcc{left:1229.504968px;}
.xb0{left:1240.049968px;}
.x55{left:1250.819968px;}
.x60{left:1254.194968px;}
.x2d{left:1256.369968px;}
.xde{left:1261.499968px;}
.x81{left:1268.174968px;}
.xdf{left:1273.919968px;}
.x82{left:1306.049968px;}
.x3c{left:1309.229968px;}
.x56{left:1315.124968px;}
.x1a{left:1317.599968px;}
.x78{left:1320.899968px;}
.xfb{left:1327.499968px;}
.x9e{left:1333.919968px;}
.xc3{left:1340.774968px;}
.x79{left:1344.524968px;}
.x58{left:1347.449968px;}
.x1b{left:1371.674968px;}
.xf4{left:1383.899968px;}
.x8d{left:1396.124968px;}
.xa3{left:1429.649968px;}
.xb1{left:1469.954968px;}
.xa1{left:1483.694968px;}
.x71{left:1485.194968px;}
.x3e{left:1486.574968px;}
.x40{left:1490.654968px;}
.xad{left:1493.204968px;}
.x12{left:1510.829968px;}
.xfa{left:1516.574968px;}
.xa2{left:1531.424968px;}
.x9f{left:1542.044968px;}
.xd3{left:1549.799968px;}
.xa0{left:1554.044968px;}
.xd5{left:1556.729968px;}
.xd2{left:1579.874968px;}
.x45{left:1589.729968px;}
.xd6{left:1601.204968px;}
.x2f{left:1610.999968px;}
.xf3{left:1613.399968px;}
.x74{left:1619.819968px;}
.x15{left:1622.519968px;}
.x30{left:1630.874968px;}
.xd4{left:1646.519968px;}
.xc4{left:1652.519968px;}
.x44{left:1653.794968px;}
.xf2{left:1663.274968px;}
.x72{left:1664.954968px;}
.x2e{left:1669.454968px;}
.x73{left:1682.099968px;}
.x87{left:1692.749968px;}
.x31{left:1701.569968px;}
.x32{left:1709.999968px;}
.x4e{left:1712.624968px;}
.x33{left:1723.694968px;}
.x18{left:1728.299968px;}
.x64{left:1746.269968px;}
.x52{left:1748.249968px;}
.x8f{left:1754.249968px;}
.x86{left:1756.349968px;}
.xc9{left:1758.674968px;}
.x65{left:1765.199968px;}
.x53{left:1773.749968px;}
.x41{left:1788.599968px;}
.x11{left:1794.344968px;}
.x4f{left:1796.924968px;}
.xd1{left:1801.049968px;}
.xc8{left:1823.144968px;}
.xca{left:1931.174968px;}
.x42{left:1969.799968px;}
.x3f{left:1983.494968px;}
.x43{left:1989.149968px;}
@media print{
.v1{vertical-align:-9.333333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:29.973333pt;}
.v4{vertical-align:52.000000pt;}
.v2{vertical-align:167.626667pt;}
.lsd{letter-spacing:-1.786667pt;}
.lsb{letter-spacing:-0.629333pt;}
.lsa{letter-spacing:-0.560000pt;}
.ls19{letter-spacing:-0.169067pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.119733pt;}
.ls20{letter-spacing:0.145067pt;}
.ls24{letter-spacing:0.185867pt;}
.ls22{letter-spacing:0.198400pt;}
.ls4{letter-spacing:0.226400pt;}
.ls26{letter-spacing:0.239200pt;}
.ls5{letter-spacing:0.419733pt;}
.ls17{letter-spacing:0.524400pt;}
.ls10{letter-spacing:0.533333pt;}
.ls3{letter-spacing:0.554667pt;}
.ls1f{letter-spacing:0.602667pt;}
.lsf{letter-spacing:0.640000pt;}
.ls23{letter-spacing:0.672000pt;}
.ls21{letter-spacing:0.736000pt;}
.ls25{letter-spacing:0.805333pt;}
.lsc{letter-spacing:1.034667pt;}
.ls16{letter-spacing:1.168000pt;}
.ls18{letter-spacing:1.616000pt;}
.ls15{letter-spacing:1.781333pt;}
.ls14{letter-spacing:25.252800pt;}
.ls13{letter-spacing:56.500800pt;}
.ls8{letter-spacing:67.086667pt;}
.ls2{letter-spacing:67.140000pt;}
.ls1c{letter-spacing:82.153333pt;}
.ls1b{letter-spacing:82.200000pt;}
.ls1e{letter-spacing:82.286667pt;}
.ls1a{letter-spacing:82.313333pt;}
.ls1d{letter-spacing:82.333333pt;}
.ls7{letter-spacing:109.000000pt;}
.ls6{letter-spacing:109.046667pt;}
.ls12{letter-spacing:109.440000pt;}
.ls11{letter-spacing:109.466667pt;}
.ls1{letter-spacing:137.620000pt;}
.lse{letter-spacing:170.506667pt;}
.ws3{word-spacing:-133.258667pt;}
.ws35{word-spacing:-108.133333pt;}
.ws9{word-spacing:-90.584000pt;}
.ws26{word-spacing:-84.344000pt;}
.ws25{word-spacing:-84.309333pt;}
.ws2a{word-spacing:-83.269333pt;}
.ws3e{word-spacing:-80.184000pt;}
.ws28{word-spacing:-74.949333pt;}
.ws6{word-spacing:-74.752000pt;}
.ws21{word-spacing:-61.429333pt;}
.ws1e{word-spacing:-61.394667pt;}
.ws10{word-spacing:-60.554667pt;}
.ws31{word-spacing:-55.154667pt;}
.ws1f{word-spacing:-49.933867pt;}
.ws20{word-spacing:-46.869333pt;}
.ws17{word-spacing:-44.754667pt;}
.ws1b{word-spacing:-43.714667pt;}
.ws2e{word-spacing:-43.422133pt;}
.ws22{word-spacing:-42.814267pt;}
.ws0{word-spacing:-41.634667pt;}
.ws44{word-spacing:-41.515467pt;}
.ws42{word-spacing:-41.476267pt;}
.ws43{word-spacing:-41.382133pt;}
.ws41{word-spacing:-41.342933pt;}
.ws23{word-spacing:-41.032933pt;}
.ws40{word-spacing:-40.740267pt;}
.ws3f{word-spacing:-40.710133pt;}
.ws13{word-spacing:-39.554667pt;}
.ws2d{word-spacing:-38.902133pt;}
.ws4{word-spacing:-37.033333pt;}
.ws5{word-spacing:-35.621067pt;}
.wsd{word-spacing:-34.909333pt;}
.ws3c{word-spacing:-34.384933pt;}
.wsb{word-spacing:-33.397067pt;}
.ws3b{word-spacing:-32.517333pt;}
.ws8{word-spacing:-32.285067pt;}
.ws29{word-spacing:-30.194667pt;}
.ws12{word-spacing:-29.154667pt;}
.wse{word-spacing:-29.120000pt;}
.ws1c{word-spacing:-28.114667pt;}
.ws1d{word-spacing:-28.080000pt;}
.ws1a{word-spacing:-27.150133pt;}
.ws7{word-spacing:-26.628933pt;}
.ws24{word-spacing:-23.304933pt;}
.ws2b{word-spacing:-21.128000pt;}
.ws2c{word-spacing:-19.760000pt;}
.ws14{word-spacing:-18.754667pt;}
.wsf{word-spacing:-18.720000pt;}
.ws16{word-spacing:-18.110133pt;}
.ws15{word-spacing:-18.080000pt;}
.ws3d{word-spacing:-17.829067pt;}
.ws11{word-spacing:-15.634667pt;}
.ws38{word-spacing:-15.600000pt;}
.wsc{word-spacing:-13.554667pt;}
.ws36{word-spacing:-13.520000pt;}
.ws34{word-spacing:-12.514667pt;}
.ws33{word-spacing:-12.480000pt;}
.ws2f{word-spacing:-9.394667pt;}
.ws19{word-spacing:-9.360000pt;}
.ws27{word-spacing:-0.288267pt;}
.ws32{word-spacing:-0.212133pt;}
.ws18{word-spacing:-0.172133pt;}
.ws3a{word-spacing:-0.124133pt;}
.ws37{word-spacing:-0.120133pt;}
.ws39{word-spacing:-0.116133pt;}
.ws1{word-spacing:-0.052000pt;}
.ws2{word-spacing:0.000000pt;}
.wsa{word-spacing:427.052000pt;}
.ws30{word-spacing:2024.448133pt;}
._9{margin-left:-24.902400pt;}
._4{margin-left:-23.878800pt;}
._19{margin-left:-21.270400pt;}
._c{margin-left:-14.876400pt;}
._11{margin-left:-13.557867pt;}
._8{margin-left:-12.490400pt;}
._14{margin-left:-11.301467pt;}
._e{margin-left:-10.108267pt;}
._f{margin-left:-8.593867pt;}
._d{margin-left:-7.321200pt;}
._7{margin-left:-6.267867pt;}
._0{margin-left:-4.989600pt;}
._a{margin-left:-3.888400pt;}
._6{margin-left:-2.866400pt;}
._2{margin-left:-1.782000pt;}
._17{margin-left:-0.890667pt;}
._1{width:1.425600pt;}
._3{width:2.851200pt;}
._5{width:3.920400pt;}
._13{width:5.345467pt;}
._12{width:8.862533pt;}
._b{width:10.056800pt;}
._16{width:468.462800pt;}
._18{width:587.693067pt;}
._10{width:748.900800pt;}
._15{width:2105.780267pt;}
.fs2b{font-size:36.000000pt;}
.fs3a{font-size:36.133333pt;}
.fs44{font-size:40.000000pt;}
.fs45{font-size:44.000000pt;}
.fs40{font-size:48.000000pt;}
.fs41{font-size:48.133333pt;}
.fs6{font-size:52.000000pt;}
.fs1e{font-size:52.133333pt;}
.fs46{font-size:56.000000pt;}
.fs25{font-size:60.000000pt;}
.fs26{font-size:60.133333pt;}
.fs49{font-size:64.133333pt;}
.fs21{font-size:72.000000pt;}
.fs20{font-size:72.133333pt;}
.fs37{font-size:76.000000pt;}
.fs36{font-size:76.133333pt;}
.fs19{font-size:80.000000pt;}
.fs18{font-size:80.133333pt;}
.fs32{font-size:84.133333pt;}
.fs3d{font-size:88.000000pt;}
.fs5{font-size:96.133333pt;}
.fs1a{font-size:100.133333pt;}
.fs2e{font-size:108.000000pt;}
.fs14{font-size:108.133333pt;}
.fs1c{font-size:112.000000pt;}
.fs1b{font-size:112.133333pt;}
.fs48{font-size:116.000000pt;}
.fsd{font-size:116.133333pt;}
.fs17{font-size:120.133333pt;}
.fs47{font-size:124.000000pt;}
.fs16{font-size:124.133333pt;}
.fsf{font-size:128.000000pt;}
.fse{font-size:128.133333pt;}
.fs1f{font-size:132.133333pt;}
.fs2c{font-size:136.000000pt;}
.fs1d{font-size:136.133333pt;}
.fsc{font-size:148.133333pt;}
.fs39{font-size:148.266667pt;}
.fs29{font-size:152.133333pt;}
.fs9{font-size:156.133333pt;}
.fs3{font-size:160.133333pt;}
.fs4{font-size:160.266667pt;}
.fs22{font-size:168.133333pt;}
.fs28{font-size:168.266667pt;}
.fs10{font-size:172.133333pt;}
.fs11{font-size:172.266667pt;}
.fs30{font-size:180.133333pt;}
.fs2f{font-size:180.266667pt;}
.fs2d{font-size:192.133333pt;}
.fs12{font-size:192.266667pt;}
.fs13{font-size:204.133333pt;}
.fs43{font-size:204.266667pt;}
.fs3b{font-size:212.133333pt;}
.fs23{font-size:216.133333pt;}
.fs24{font-size:216.266667pt;}
.fs8{font-size:236.133333pt;}
.fs7{font-size:236.266667pt;}
.fs1{font-size:240.133333pt;}
.fs2{font-size:240.266667pt;}
.fs31{font-size:256.266667pt;}
.fs42{font-size:260.266667pt;}
.fsb{font-size:268.266667pt;}
.fs34{font-size:288.266667pt;}
.fs3c{font-size:292.266667pt;}
.fs3f{font-size:308.266667pt;}
.fs3e{font-size:308.400000pt;}
.fs35{font-size:320.266667pt;}
.fs38{font-size:320.400000pt;}
.fs33{font-size:324.266667pt;}
.fs2a{font-size:324.400000pt;}
.fs15{font-size:348.400000pt;}
.fs0{font-size:356.400000pt;}
.fs4a{font-size:364.400000pt;}
.fs27{font-size:380.400000pt;}
.fsa{font-size:512.533333pt;}
.fs4b{font-size:596.640000pt;}
.y0{bottom:0.000000pt;}
.y2f{bottom:13.866667pt;}
.yca{bottom:17.833333pt;}
.y103{bottom:19.033333pt;}
.y163{bottom:21.600000pt;}
.y76{bottom:23.466667pt;}
.y14e{bottom:24.566667pt;}
.y90{bottom:32.700000pt;}
.y37{bottom:33.500000pt;}
.ybd{bottom:38.133333pt;}
.y50{bottom:42.066667pt;}
.y22{bottom:46.166667pt;}
.y12e{bottom:51.233333pt;}
.y46{bottom:52.733333pt;}
.y4e{bottom:55.100000pt;}
.yf7{bottom:58.666667pt;}
.y10{bottom:60.166667pt;}
.y14d{bottom:61.600000pt;}
.y1a{bottom:63.033333pt;}
.y28{bottom:63.966667pt;}
.y165{bottom:64.366667pt;}
.y10d{bottom:65.266667pt;}
.y11d{bottom:65.500000pt;}
.y3d{bottom:68.300000pt;}
.y41{bottom:68.333333pt;}
.y9b{bottom:68.733333pt;}
.y17c{bottom:70.200000pt;}
.y75{bottom:70.500000pt;}
.y4f{bottom:75.100000pt;}
.y27{bottom:76.100000pt;}
.yc8{bottom:80.266667pt;}
.y84{bottom:81.933333pt;}
.yc2{bottom:85.066667pt;}
.y124{bottom:89.333333pt;}
.y10c{bottom:92.300000pt;}
.y164{bottom:96.400000pt;}
.y1b{bottom:101.666667pt;}
.y8f{bottom:101.766667pt;}
.y12d{bottom:103.300000pt;}
.y83{bottom:105.966667pt;}
.y6b{bottom:107.766667pt;}
.yf6{bottom:113.700000pt;}
.y3c{bottom:115.366667pt;}
.y10b{bottom:119.333333pt;}
.y9a{bottom:120.766667pt;}
.y140{bottom:122.133333pt;}
.yc7{bottom:125.833333pt;}
.y190{bottom:128.733333pt;}
.y82{bottom:129.966667pt;}
.yf{bottom:130.233333pt;}
.y133{bottom:135.373333pt;}
.y123{bottom:140.533333pt;}
.y10a{bottom:146.360000pt;}
.y4d{bottom:151.333333pt;}
.y81{bottom:154.000000pt;}
.y6a{bottom:154.826667pt;}
.yc1{bottom:156.133333pt;}
.y2d{bottom:158.360000pt;}
.y3b{bottom:161.400000pt;}
.yec{bottom:164.800000pt;}
.yf5{bottom:168.773333pt;}
.y109{bottom:173.360000pt;}
.y4c{bottom:175.333333pt;}
.y2b{bottom:180.533333pt;}
.y18f{bottom:190.800000pt;}
.y4b{bottom:199.373333pt;}
.y69{bottom:201.866667pt;}
.yc6{bottom:201.893333pt;}
.y8e{bottom:204.040000pt;}
.y3a{bottom:208.440000pt;}
.y40{bottom:208.466667pt;}
.y150{bottom:213.640000pt;}
.y25{bottom:214.333333pt;}
.y4a{bottom:223.400000pt;}
.yeb{bottom:223.866667pt;}
.yf4{bottom:224.800000pt;}
.yb{bottom:225.440000pt;}
.y2a{bottom:225.600000pt;}
.yc0{bottom:226.200000pt;}
.yad{bottom:228.973333pt;}
.y13f{bottom:230.226667pt;}
.yb8{bottom:232.333333pt;}
.y14c{bottom:232.626667pt;}
.y19{bottom:247.066667pt;}
.y49{bottom:247.400000pt;}
.y14b{bottom:247.626667pt;}
.y68{bottom:247.893333pt;}
.ya3{bottom:248.800000pt;}
.y8d{bottom:250.106667pt;}
.y170{bottom:251.026667pt;}
.y26{bottom:252.373333pt;}
.ya6{bottom:254.933333pt;}
.y2e{bottom:256.866667pt;}
.y11a{bottom:257.106667pt;}
.y114{bottom:257.800000pt;}
.y24{bottom:262.733333pt;}
.y48{bottom:271.440000pt;}
.y14f{bottom:272.693333pt;}
.y29{bottom:275.626667pt;}
.y187{bottom:276.093333pt;}
.y72{bottom:278.266667pt;}
.y3f{bottom:278.600000pt;}
.ya{bottom:281.506667pt;}
.y16f{bottom:282.066667pt;}
.yea{bottom:282.893333pt;}
.ye0{bottom:287.293333pt;}
.yac{bottom:288.040000pt;}
.yb7{bottom:290.400000pt;}
.ya5{bottom:290.960000pt;}
.y47{bottom:295.466667pt;}
.ye4{bottom:296.066667pt;}
.ybf{bottom:297.266667pt;}
.y1c{bottom:303.573333pt;}
.ya2{bottom:306.840000pt;}
.y186{bottom:308.133333pt;}
.y16d{bottom:309.240000pt;}
.y11e{bottom:310.706667pt;}
.y80{bottom:310.866667pt;}
.y113{bottom:311.866667pt;}
.y102{bottom:312.626667pt;}
.y16e{bottom:314.106667pt;}
.y18e{bottom:316.933333pt;}
.y138{bottom:317.560000pt;}
.ydf{bottom:320.333333pt;}
.yd1{bottom:320.560000pt;}
.ya4{bottom:327.000000pt;}
.y3e{bottom:330.666667pt;}
.y71{bottom:337.333333pt;}
.y9{bottom:337.533333pt;}
.y13e{bottom:338.333333pt;}
.y18{bottom:340.173333pt;}
.ye9{bottom:340.960000pt;}
.y16c{bottom:341.266667pt;}
.y67{bottom:342.000000pt;}
.y8c{bottom:344.173333pt;}
.y14a{bottom:345.173333pt;}
.y12c{bottom:346.133333pt;}
.ye3{bottom:355.106667pt;}
.y149{bottom:360.173333pt;}
.y16{bottom:362.800000pt;}
.ya1{bottom:365.893333pt;}
.y119{bottom:369.200000pt;}
.ya8{bottom:370.960000pt;}
.y185{bottom:372.200000pt;}
.yb2{bottom:373.133333pt;}
.y137{bottom:373.560000pt;}
.y18d{bottom:378.960000pt;}
.y12b{bottom:379.173333pt;}
.y106{bottom:380.733333pt;}
.yee{bottom:383.733333pt;}
.y66{bottom:388.040000pt;}
.y7a{bottom:388.933333pt;}
.y8b{bottom:390.200000pt;}
.yd0{bottom:391.640000pt;}
.y8{bottom:393.600000pt;}
.y70{bottom:395.373333pt;}
.y74{bottom:395.733333pt;}
.y101{bottom:399.733333pt;}
.ye8{bottom:400.040000pt;}
.y184{bottom:404.226667pt;}
.y178{bottom:406.506667pt;}
.yb6{bottom:408.506667pt;}
.ye2{bottom:413.173333pt;}
.y15{bottom:419.840000pt;}
.y156{bottom:422.200000pt;}
.y105{bottom:422.773333pt;}
.yed{bottom:424.760000pt;}
.yb0{bottom:426.333333pt;}
.y73{bottom:428.773333pt;}
.ya7{bottom:430.040000pt;}
.y121{bottom:431.000000pt;}
.yb1{bottom:432.200000pt;}
.yf3{bottom:432.533333pt;}
.y108{bottom:432.800000pt;}
.y65{bottom:435.106667pt;}
.y79{bottom:436.000000pt;}
.y183{bottom:436.240000pt;}
.y177{bottom:439.533333pt;}
.y13d{bottom:446.440000pt;}
.y18c{bottom:448.840000pt;}
.ye{bottom:449.640000pt;}
.y6f{bottom:454.440000pt;}
.y7f{bottom:458.933333pt;}
.ycf{bottom:461.693333pt;}
.yf1{bottom:465.066667pt;}
.y107{bottom:466.066667pt;}
.yb5{bottom:467.573333pt;}
.ye1{bottom:472.240000pt;}
.y176{bottom:472.560000pt;}
.yaf{bottom:474.400000pt;}
.y17b{bottom:474.906667pt;}
.ya0{bottom:475.173333pt;}
.y136{bottom:476.666667pt;}
.y14{bottom:476.893333pt;}
.y144{bottom:481.733333pt;}
.y64{bottom:482.133333pt;}
.y7e{bottom:482.973333pt;}
.y100{bottom:485.800000pt;}
.y155{bottom:492.266667pt;}
.y143{bottom:496.733333pt;}
.y16b{bottom:499.506667pt;}
.y175{bottom:505.600000pt;}
.y7{bottom:505.693333pt;}
.y7d{bottom:507.000000pt;}
.yde{bottom:508.960000pt;}
.y36{bottom:511.333333pt;}
.y51{bottom:511.560000pt;}
.y142{bottom:514.560000pt;}
.ye6{bottom:517.466667pt;}
.yae{bottom:522.426667pt;}
.y141{bottom:529.600000pt;}
.y7c{bottom:531.000000pt;}
.yce{bottom:531.773333pt;}
.y16a{bottom:534.533333pt;}
.y9d{bottom:537.666667pt;}
.y23{bottom:539.773333pt;}
.y52{bottom:540.000000pt;}
.ye5{bottom:542.466667pt;}
.y13c{bottom:554.533333pt;}
.y6{bottom:561.733333pt;}
.y174{bottom:565.640000pt;}
.y169{bottom:569.573333pt;}
.y5d{bottom:570.106667pt;}
.y9c{bottom:570.706667pt;}
.y130{bottom:571.840000pt;}
.yff{bottom:572.893333pt;}
.y63{bottom:575.226667pt;}
.y17d{bottom:577.893333pt;}
.y135{bottom:578.773333pt;}
.yb4{bottom:584.666667pt;}
.y35{bottom:590.400000pt;}
.y13{bottom:592.000000pt;}
.y95{bottom:592.960000pt;}
.y154{bottom:594.360000pt;}
.y12f{bottom:596.840000pt;}
.y173{bottom:597.666667pt;}
.ycd{bottom:602.840000pt;}
.y18b{bottom:606.560000pt;}
.ydd{bottom:609.026667pt;}
.y10f{bottom:610.400000pt;}
.yf0{bottom:611.400000pt;}
.yc9{bottom:612.773333pt;}
.y5{bottom:617.800000pt;}
.y78{bottom:621.426667pt;}
.y62{bottom:622.266667pt;}
.y34{bottom:622.440000pt;}
.y5c{bottom:628.173333pt;}
.y172{bottom:628.693333pt;}
.y128{bottom:635.973333pt;}
.y148{bottom:637.333333pt;}
.y10e{bottom:641.440000pt;}
.yef{bottom:642.426667pt;}
.yb3{bottom:643.733333pt;}
.y77{bottom:646.440000pt;}
.y94{bottom:651.026667pt;}
.y147{bottom:652.360000pt;}
.y17a{bottom:653.066667pt;}
.y33{bottom:654.466667pt;}
.ydc{bottom:655.066667pt;}
.y168{bottom:655.200000pt;}
.yfe{bottom:658.960000pt;}
.y171{bottom:660.733333pt;}
.y127{bottom:661.506667pt;}
.y13b{bottom:662.666667pt;}
.y193{bottom:663.560000pt;}
.y61{bottom:668.293333pt;}
.ycc{bottom:672.906667pt;}
.y4{bottom:673.866667pt;}
.y118{bottom:681.026667pt;}
.y42{bottom:681.533333pt;}
.y134{bottom:681.866667pt;}
.y32{bottom:686.506667pt;}
.y5b{bottom:687.200000pt;}
.y39{bottom:687.226667pt;}
.y167{bottom:688.240000pt;}
.y153{bottom:696.466667pt;}
.ydb{bottom:700.106667pt;}
.yf8{bottom:702.133333pt;}
.y162{bottom:706.933333pt;}
.y12{bottom:707.093333pt;}
.y93{bottom:710.093333pt;}
.y126{bottom:712.733333pt;}
.y18a{bottom:714.666667pt;}
.y31{bottom:718.533333pt;}
.ye7{bottom:720.666667pt;}
.y166{bottom:721.266667pt;}
.y45{bottom:725.200000pt;}
.y192{bottom:725.626667pt;}
.y54{bottom:725.773333pt;}
.yf2{bottom:727.293333pt;}
.y115{bottom:728.293333pt;}
.y146{bottom:730.066667pt;}
.y161{bottom:737.960000pt;}
.y7b{bottom:740.293333pt;}
.ycb{bottom:743.960000pt;}
.y145{bottom:745.106667pt;}
.yda{bottom:746.173333pt;}
.y3{bottom:747.706667pt;}
.y15a{bottom:748.293333pt;}
.y30{bottom:750.560000pt;}
.ybe{bottom:756.466667pt;}
.y60{bottom:762.400000pt;}
.y9f{bottom:763.333333pt;}
.yd4{bottom:764.133333pt;}
.y11{bottom:764.173333pt;}
.yab{bottom:764.440000pt;}
.y58{bottom:765.933333pt;}
.y43{bottom:766.066667pt;}
.y152{bottom:766.533333pt;}
.y160{bottom:770.000000pt;}
.y13a{bottom:770.773333pt;}
.yc5{bottom:772.533333pt;}
.y159{bottom:781.333333pt;}
.y11c{bottom:782.040000pt;}
.yba{bottom:783.866667pt;}
.y6d{bottom:783.933333pt;}
.y117{bottom:788.133333pt;}
.y9e{bottom:788.373333pt;}
.yd9{bottom:791.200000pt;}
.y38{bottom:791.333333pt;}
.ybc{bottom:794.733333pt;}
.y17f{bottom:796.800000pt;}
.y57{bottom:798.960000pt;}
.y104{bottom:801.000000pt;}
.y6c{bottom:804.933333pt;}
.y5f{bottom:808.440000pt;}
.y2{bottom:814.733333pt;}
.y191{bottom:815.040000pt;}
.yd3{bottom:822.173333pt;}
.yaa{bottom:822.506667pt;}
.y189{bottom:822.773333pt;}
.y8a{bottom:828.560000pt;}
.y158{bottom:834.133333pt;}
.y111{bottom:835.600000pt;}
.yfa{bottom:840.666667pt;}
.y120{bottom:842.666667pt;}
.y56{bottom:845.000000pt;}
.y132{bottom:847.466667pt;}
.yc4{bottom:848.600000pt;}
.y122{bottom:849.226667pt;}
.y1d{bottom:849.866667pt;}
.yd8{bottom:850.226667pt;}
.y99{bottom:852.626667pt;}
.y44{bottom:853.000000pt;}
.y15e{bottom:853.933333pt;}
.y5e{bottom:855.466667pt;}
.yb9{bottom:859.933333pt;}
.y182{bottom:865.666667pt;}
.ybb{bottom:871.800000pt;}
.y89{bottom:874.626667pt;}
.y139{bottom:878.866667pt;}
.yd2{bottom:881.226667pt;}
.ya9{bottom:881.533333pt;}
.y15d{bottom:883.266667pt;}
.y15f{bottom:884.466667pt;}
.y179{bottom:887.106667pt;}
.y1{bottom:888.840000pt;}
.y17{bottom:888.893333pt;}
.y55{bottom:892.066667pt;}
.yd7{bottom:892.293333pt;}
.y181{bottom:897.706667pt;}
.y98{bottom:899.333333pt;}
.y151{bottom:903.200000pt;}
.y131{bottom:920.533333pt;}
.y88{bottom:921.666667pt;}
.y116{bottom:921.800000pt;}
.yc3{bottom:924.666667pt;}
.y180{bottom:929.733333pt;}
.y188{bottom:930.866667pt;}
.yd6{bottom:935.333333pt;}
.y21{bottom:941.733333pt;}
.yfd{bottom:947.266667pt;}
.y97{bottom:947.373333pt;}
.y15b{bottom:950.106667pt;}
.y110{bottom:951.733333pt;}
.y125{bottom:953.400000pt;}
.yf9{bottom:957.773333pt;}
.y11f{bottom:958.773333pt;}
.yfb{bottom:959.773333pt;}
.y112{bottom:960.773333pt;}
.y87{bottom:961.293333pt;}
.y6e{bottom:963.533333pt;}
.y85{bottom:965.293333pt;}
.y92{bottom:973.960000pt;}
.y20{bottom:975.773333pt;}
.yd5{bottom:977.373333pt;}
.y91{bottom:987.000000pt;}
.y5a{bottom:991.626667pt;}
.y53{bottom:992.600000pt;}
.y96{bottom:995.440000pt;}
.y17e{bottom:1000.933333pt;}
.yfc{bottom:1003.333333pt;}
.y11b{bottom:1004.333333pt;}
.y15c{bottom:1005.466667pt;}
.y157{bottom:1007.893333pt;}
.y86{bottom:1008.333333pt;}
.y1f{bottom:1010.800000pt;}
.y1e{bottom:1011.706667pt;}
.y59{bottom:1016.666667pt;}
.y2c{bottom:1023.840000pt;}
.y12a{bottom:1027.560000pt;}
.y129{bottom:1040.560000pt;}
.yd{bottom:1096.600000pt;}
.yc{bottom:1256.106667pt;}
.h3e{height:27.544922pt;}
.h60{height:27.646940pt;}
.h70{height:30.605469pt;}
.h71{height:33.666016pt;}
.h68{height:36.726562pt;}
.h69{height:36.828581pt;}
.h7{height:37.882812pt;}
.h6e{height:39.787109pt;}
.h29{height:39.889128pt;}
.h73{height:40.933594pt;}
.h33{height:45.908203pt;}
.h34{height:46.010221pt;}
.h79{height:46.878711pt;}
.h2d{height:55.089844pt;}
.h2c{height:55.191862pt;}
.h58{height:57.148438pt;}
.h57{height:57.248698pt;}
.h59{height:58.150391pt;}
.h5e{height:58.252409pt;}
.h53{height:60.156250pt;}
.h51{height:63.100000pt;}
.h23{height:64.296875pt;}
.h22{height:64.404036pt;}
.h65{height:67.332031pt;}
.h78{height:70.269336pt;}
.h4d{height:72.100000pt;}
.h6{height:72.897982pt;}
.hd{height:73.555143pt;}
.h19{height:75.560800pt;}
.h1c{height:79.040820pt;}
.h24{height:79.405733pt;}
.h45{height:82.634766pt;}
.h44{height:82.736784pt;}
.h10{height:84.888477pt;}
.h2b{height:85.695312pt;}
.h38{height:85.797331pt;}
.h21{height:85.932400pt;}
.h76{height:87.000000pt;}
.h72{height:87.100000pt;}
.h26{height:88.816000pt;}
.h55{height:88.857878pt;}
.h25{height:88.921733pt;}
.h6f{height:90.100000pt;}
.h43{height:90.803906pt;}
.h75{height:93.000000pt;}
.h74{height:93.100000pt;}
.h13{height:93.562500pt;}
.h12{height:93.659961pt;}
.h1e{height:94.978971pt;}
.h14{height:95.616992pt;}
.h2a{height:101.100065pt;}
.h40{height:104.058594pt;}
.h3f{height:104.160612pt;}
.h61{height:107.191862pt;}
.h7b{height:107.419922pt;}
.h7a{height:107.552539pt;}
.h27{height:107.953733pt;}
.h18{height:109.766800pt;}
.h4e{height:111.100000pt;}
.he{height:113.342253pt;}
.h5d{height:113.444271pt;}
.h5f{height:115.770664pt;}
.h39{height:116.402799pt;}
.h11{height:117.050586pt;}
.ha{height:119.463346pt;}
.h4f{height:120.100000pt;}
.h50{height:120.200000pt;}
.h4{height:122.523893pt;}
.h5{height:122.625911pt;}
.h2e{height:127.741927pt;}
.h36{height:128.644987pt;}
.h37{height:128.747005pt;}
.h16{height:129.100000pt;}
.h17{height:129.200000pt;}
.h3c{height:131.705534pt;}
.h3d{height:131.807552pt;}
.hf{height:134.535156pt;}
.h49{height:135.100000pt;}
.h48{height:135.200000pt;}
.h15{height:135.296800pt;}
.h1f{height:136.501733pt;}
.h20{height:136.607467pt;}
.h7d{height:137.562760pt;}
.h7e{height:137.664583pt;}
.h4a{height:137.826628pt;}
.h4b{height:137.928646pt;}
.h77{height:140.538672pt;}
.h41{height:147.008268pt;}
.h42{height:147.110286pt;}
.h6c{height:149.310156pt;}
.h1a{height:151.121600pt;}
.h6d{height:153.499219pt;}
.h6b{height:153.598958pt;}
.h32{height:159.672721pt;}
.h31{height:159.771224pt;}
.h1b{height:160.448800pt;}
.h62{height:162.311003pt;}
.h2f{height:162.522135pt;}
.h30{height:162.622396pt;}
.h5b{height:171.208789pt;}
.h28{height:179.507292pt;}
.h47{height:180.674284pt;}
.h46{height:180.776302pt;}
.h2{height:183.734831pt;}
.h3{height:183.836849pt;}
.h6a{height:190.243750pt;}
.h5c{height:191.101367pt;}
.h4c{height:196.079036pt;}
.hc{height:205.260677pt;}
.h54{height:220.563411pt;}
.h64{height:222.482292pt;}
.h63{height:223.623958pt;}
.h3a{height:231.923542pt;}
.h9{height:234.865039pt;}
.h8{height:234.997656pt;}
.h67{height:235.866146pt;}
.h66{height:235.968164pt;}
.h56{height:245.047786pt;}
.h5a{height:245.149805pt;}
.h52{height:248.108333pt;}
.h3b{height:248.210352pt;}
.h1d{height:266.573633pt;}
.h1{height:272.694727pt;}
.h7c{height:278.282031pt;}
.h35{height:286.042969pt;}
.hb{height:392.158073pt;}
.h7f{height:455.637187pt;}
.h0{height:1080.000000pt;}
.w1{width:1919.999971pt;}
.w0{width:1920.000000pt;}
.xc{left:-832.933362pt;}
.x0{left:0.000000pt;}
.xd{left:9.599971pt;}
.x3b{left:22.666638pt;}
.xa9{left:24.699971pt;}
.xf1{left:35.099971pt;}
.x90{left:38.633305pt;}
.x22{left:43.199971pt;}
.x102{left:46.033305pt;}
.x23{left:47.466638pt;}
.x1d{left:53.366638pt;}
.xa8{left:54.833305pt;}
.xf{left:56.199971pt;}
.x21{left:57.633305pt;}
.x1e{left:61.033305pt;}
.x100{left:64.033305pt;}
.x101{left:65.133305pt;}
.x16{left:66.066638pt;}
.x4c{left:71.999971pt;}
.x8a{left:73.066638pt;}
.xda{left:78.399971pt;}
.x9b{left:81.366638pt;}
.xeb{left:84.699971pt;}
.x91{left:86.666638pt;}
.x63{left:92.866638pt;}
.x62{left:96.266638pt;}
.x1c{left:97.666638pt;}
.x85{left:99.433305pt;}
.xcf{left:103.899971pt;}
.x9a{left:106.799971pt;}
.xd9{left:110.099971pt;}
.xfc{left:111.666638pt;}
.x98{left:114.033305pt;}
.x77{left:115.066638pt;}
.x99{left:118.366638pt;}
.x1{left:120.866638pt;}
.xf5{left:143.239971pt;}
.x75{left:153.533305pt;}
.x66{left:154.493305pt;}
.x68{left:161.666638pt;}
.xbf{left:163.159971pt;}
.xff{left:165.159971pt;}
.x76{left:167.533305pt;}
.xb2{left:169.693305pt;}
.xfe{left:174.173305pt;}
.x61{left:184.999971pt;}
.x88{left:187.693305pt;}
.xfd{left:192.533305pt;}
.x54{left:202.066638pt;}
.xa5{left:205.173305pt;}
.xbe{left:207.506638pt;}
.x49{left:210.293305pt;}
.xa6{left:219.693305pt;}
.x4a{left:224.133305pt;}
.x67{left:232.026638pt;}
.xd7{left:233.066638pt;}
.x89{left:235.733305pt;}
.xd0{left:239.973305pt;}
.xd8{left:253.666638pt;}
.xdb{left:257.506638pt;}
.x83{left:258.399971pt;}
.xb3{left:269.906638pt;}
.xa4{left:272.706638pt;}
.x95{left:274.973305pt;}
.xa7{left:279.133305pt;}
.xf7{left:286.533305pt;}
.x10{left:289.306638pt;}
.xc0{left:299.999971pt;}
.x84{left:316.799971pt;}
.x2{left:330.839971pt;}
.xb6{left:334.239971pt;}
.xc7{left:337.866638pt;}
.xf8{left:341.333305pt;}
.x34{left:352.639971pt;}
.x3d{left:359.866638pt;}
.x39{left:361.426638pt;}
.x8e{left:367.693305pt;}
.xc2{left:368.999971pt;}
.xab{left:389.839971pt;}
.xac{left:417.506638pt;}
.x6d{left:424.106638pt;}
.x46{left:461.399971pt;}
.xa{left:472.066638pt;}
.x38{left:490.466638pt;}
.xaa{left:497.399971pt;}
.x47{left:507.559971pt;}
.x4b{left:509.066638pt;}
.x96{left:523.666638pt;}
.x6{left:530.999971pt;}
.x35{left:533.173305pt;}
.x5e{left:541.173305pt;}
.x97{left:549.999971pt;}
.x48{left:553.733305pt;}
.xb{left:557.373305pt;}
.xec{left:561.226638pt;}
.xb4{left:562.639971pt;}
.x4d{left:565.959971pt;}
.x6e{left:569.226638pt;}
.xe9{left:586.466638pt;}
.xcd{left:589.173305pt;}
.xb5{left:590.133305pt;}
.x24{left:592.239971pt;}
.x26{left:596.799971pt;}
.x7c{left:604.999971pt;}
.xe4{left:612.133305pt;}
.x25{left:616.599971pt;}
.xe2{left:620.866638pt;}
.xe5{left:623.133305pt;}
.xe3{left:631.866638pt;}
.xea{left:635.666638pt;}
.x7d{left:637.439971pt;}
.x3{left:640.733305pt;}
.x27{left:650.639971pt;}
.x29{left:656.373305pt;}
.x7{left:666.999971pt;}
.x5{left:668.973305pt;}
.x28{left:674.573305pt;}
.x6f{left:687.866638pt;}
.x9c{left:690.066638pt;}
.x70{left:705.039971pt;}
.x9d{left:707.266638pt;}
.x69{left:708.599971pt;}
.xce{left:710.799971pt;}
.x8b{left:720.959971pt;}
.x50{left:722.693305pt;}
.xc1{left:724.293305pt;}
.x36{left:727.893305pt;}
.x6a{left:734.626638pt;}
.x51{left:739.893305pt;}
.xbc{left:745.933305pt;}
.xbd{left:750.866638pt;}
.xf6{left:755.173305pt;}
.xe8{left:756.373305pt;}
.x8{left:764.373305pt;}
.x9{left:768.839971pt;}
.x93{left:771.066638pt;}
.x5c{left:779.173305pt;}
.xe7{left:782.226638pt;}
.xee{left:784.626638pt;}
.x5a{left:785.999971pt;}
.x7b{left:790.933305pt;}
.xba{left:793.293305pt;}
.xb7{left:800.133305pt;}
.xb8{left:803.466638pt;}
.x1f{left:813.093305pt;}
.xe6{left:817.226638pt;}
.x92{left:823.266638pt;}
.x7a{left:825.933305pt;}
.x4{left:830.866638pt;}
.x6b{left:837.866638pt;}
.x3a{left:855.839971pt;}
.x6c{left:858.893305pt;}
.xdc{left:861.306638pt;}
.x17{left:863.359971pt;}
.xe0{left:871.199971pt;}
.xdd{left:872.293305pt;}
.xed{left:875.666638pt;}
.xf0{left:879.893305pt;}
.xe1{left:882.199971pt;}
.x7f{left:886.039971pt;}
.x7e{left:891.866638pt;}
.xf9{left:895.226638pt;}
.x5b{left:897.573305pt;}
.x80{left:900.573305pt;}
.xb9{left:904.373305pt;}
.x5d{left:907.226638pt;}
.xbb{left:920.359971pt;}
.x37{left:922.666638pt;}
.xef{left:990.893305pt;}
.xaf{left:1011.239971pt;}
.x2a{left:1019.959971pt;}
.xc5{left:1026.999971pt;}
.x14{left:1028.359971pt;}
.x59{left:1029.573305pt;}
.x94{left:1030.533305pt;}
.x20{left:1033.106638pt;}
.x13{left:1043.693305pt;}
.xe{left:1060.133305pt;}
.x8c{left:1064.226638pt;}
.x2b{left:1065.599971pt;}
.x57{left:1069.666638pt;}
.x2c{left:1072.733305pt;}
.xcb{left:1076.066638pt;}
.xae{left:1083.173305pt;}
.xc6{left:1084.333305pt;}
.x19{left:1085.226638pt;}
.x5f{left:1087.133305pt;}
.xcc{left:1092.893305pt;}
.xb0{left:1102.266638pt;}
.x55{left:1111.839971pt;}
.x60{left:1114.839971pt;}
.x2d{left:1116.773305pt;}
.xde{left:1121.333305pt;}
.x81{left:1127.266638pt;}
.xdf{left:1132.373305pt;}
.x82{left:1160.933305pt;}
.x3c{left:1163.759971pt;}
.x56{left:1168.999971pt;}
.x1a{left:1171.199971pt;}
.x78{left:1174.133305pt;}
.xfb{left:1179.999971pt;}
.x9e{left:1185.706638pt;}
.xc3{left:1191.799971pt;}
.x79{left:1195.133305pt;}
.x58{left:1197.733305pt;}
.x1b{left:1219.266638pt;}
.xf4{left:1230.133305pt;}
.x8d{left:1240.999971pt;}
.xa3{left:1270.799971pt;}
.xb1{left:1306.626638pt;}
.xa1{left:1318.839971pt;}
.x71{left:1320.173305pt;}
.x3e{left:1321.399971pt;}
.x40{left:1325.026638pt;}
.xad{left:1327.293305pt;}
.x12{left:1342.959971pt;}
.xfa{left:1348.066638pt;}
.xa2{left:1361.266638pt;}
.x9f{left:1370.706638pt;}
.xd3{left:1377.599971pt;}
.xa0{left:1381.373305pt;}
.xd5{left:1383.759971pt;}
.xd2{left:1404.333305pt;}
.x45{left:1413.093305pt;}
.xd6{left:1423.293305pt;}
.x2f{left:1431.999971pt;}
.xf3{left:1434.133305pt;}
.x74{left:1439.839971pt;}
.x15{left:1442.239971pt;}
.x30{left:1449.666638pt;}
.xd4{left:1463.573305pt;}
.xc4{left:1468.906638pt;}
.x44{left:1470.039971pt;}
.xf2{left:1478.466638pt;}
.x72{left:1479.959971pt;}
.x2e{left:1483.959971pt;}
.x73{left:1495.199971pt;}
.x87{left:1504.666638pt;}
.x31{left:1512.506638pt;}
.x32{left:1519.999971pt;}
.x4e{left:1522.333305pt;}
.x33{left:1532.173305pt;}
.x18{left:1536.266638pt;}
.x64{left:1552.239971pt;}
.x52{left:1553.999971pt;}
.x8f{left:1559.333305pt;}
.x86{left:1561.199971pt;}
.xc9{left:1563.266638pt;}
.x65{left:1569.066638pt;}
.x53{left:1576.666638pt;}
.x41{left:1589.866638pt;}
.x11{left:1594.973305pt;}
.x4f{left:1597.266638pt;}
.xd1{left:1600.933305pt;}
.xc8{left:1620.573305pt;}
.xca{left:1716.599971pt;}
.x42{left:1750.933305pt;}
.x3f{left:1763.106638pt;}
.x43{left:1768.133305pt;}
}




    .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; }
  