
    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_1c04d796f9ea82076ba79d68.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_0d6b6d3cb4e9be1ee7a1dfaa.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.926000;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_6a797eb948b34ff91ce65968.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.742676;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_f95eb564858298252e21e8c2.woff2')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_ffac7f18f3b3d7ee414e9bc6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.881836;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_215ad0c6a5e3c2f4dfbb60fe.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666992;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_897bf66db4ae5fd234a9ddbd.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.999000;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_3f4439c22c1ee4c2d070fd39.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.001000;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_7d541668e3e0e6b6a0bed788.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.008000;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_11f54f26c1b2b639033b6b0a.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_e765ae5f578229b3288fc157.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.735000;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_d464e6088b47c8f14ee5a1fc.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_09d633315ade0395abd89788.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.009000;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_0a8cd2c3b0437b48f201d842.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.904000;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_076827116a66def893a19e42.woff2')format("woff");}.fff{font-family:fff;line-height:0.999000;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_b7c6a77bff81122ff84daba6.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_c68c7de0aeb15f944b8c542a.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.008000;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_410de5ff6b598d9db1579fb4.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.001000;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_c9ff28be2cf0959dcde8b78c.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.001000;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_e43b4d55fab27478151ba8a9.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.735000;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_e407504d639063090f6cc3d8.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.009000;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_45c64cdf68fbf4a2232e7bbb.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.008000;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_5c2135f1c69eecff7be51924.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.133000;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_87094e24a8d2f7f67e2ea527.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.897000;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_b24c47685e16b6a0db50a1ec.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.893000;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_11a1a1d1b118f47e1ee36106.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.885000;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_87e3bb70d033c55e2b6bbc67.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.885000;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_f0381ffbcabba3856aaf3363.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.840000;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_8ad3fa74dc9d67eb005d379a.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.844000;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_cf84ed1933a53969abf76f59.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.844000;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_95e1b1a3dc6d56f8db14be43.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.840000;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_58b4f163a5335e65d62e4780.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.923000;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_79386300d3ffb488db70b474.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.920000;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_dfd114c9edd36c74679e9d41.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.848145;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_d1981a5161937a27d2297cc2.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.915000;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_28abba91984be449fc07457a.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.897000;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_c3c6e60dfac8c2f80e72d9f2.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.021000;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_00e519b98d59274fcd0193b0.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.888000;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_2494c6920f35f9650c82af8c.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.149000;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_b3fa1d01e588a3f228a7512b.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.149000;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_8c09b839cb6c0d8bffd15d82.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.666504;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.232772,-0.091200,0.091200,0.232772,0,0);-ms-transform:matrix(0.232772,-0.091200,0.091200,0.232772,0,0);-webkit-transform:matrix(0.232772,-0.091200,0.091200,0.232772,0,0);}
.m3{transform:matrix(0.242769,-0.059692,0.059692,0.242769,0,0);-ms-transform:matrix(0.242769,-0.059692,0.059692,0.242769,0,0);-webkit-transform:matrix(0.242769,-0.059692,0.059692,0.242769,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);}
.vf{vertical-align:-50.661453px;}
.ve{vertical-align:-45.591105px;}
.v3{vertical-align:-24.614116px;}
.vc{vertical-align:-20.925687px;}
.v1{vertical-align:-19.000002px;}
.v10{vertical-align:-17.039796px;}
.v8{vertical-align:-13.000002px;}
.v6{vertical-align:-11.958984px;}
.v12{vertical-align:-4.812000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:11.958984px;}
.v11{vertical-align:13.887696px;}
.v4{vertical-align:41.327096px;}
.vd{vertical-align:45.591105px;}
.vb{vertical-align:48.140286px;}
.v2{vertical-align:49.603770px;}
.v9{vertical-align:50.647446px;}
.v13{vertical-align:52.608600px;}
.va{vertical-align:54.975450px;}
.v5{vertical-align:58.975887px;}
.ls29{letter-spacing:-42.120000px;}
.ls1{letter-spacing:-9.000000px;}
.ls68{letter-spacing:-7.830000px;}
.ls5d{letter-spacing:-0.050452px;}
.ls60{letter-spacing:-0.047298px;}
.ls62{letter-spacing:-0.031532px;}
.ls5e{letter-spacing:-0.025226px;}
.ls5f{letter-spacing:-0.015766px;}
.ls0{letter-spacing:0.000000px;}
.ls39{letter-spacing:0.000059px;}
.ls1f{letter-spacing:0.000229px;}
.ls16{letter-spacing:0.000241px;}
.ls2d{letter-spacing:0.001401px;}
.ls41{letter-spacing:0.002160px;}
.ls48{letter-spacing:0.002801px;}
.ls2f{letter-spacing:0.004902px;}
.ls33{letter-spacing:0.005563px;}
.ls36{letter-spacing:0.006163px;}
.ls47{letter-spacing:0.006432px;}
.ls3c{letter-spacing:0.009289px;}
.ls34{letter-spacing:0.009805px;}
.ls43{letter-spacing:0.010149px;}
.ls5a{letter-spacing:0.012613px;}
.ls28{letter-spacing:0.020800px;}
.ls23{letter-spacing:0.021340px;}
.ls2{letter-spacing:0.022574px;}
.ls54{letter-spacing:0.030000px;}
.ls27{letter-spacing:0.031200px;}
.ls1c{letter-spacing:0.031539px;}
.ls1b{letter-spacing:0.032038px;}
.ls8{letter-spacing:0.045350px;}
.ls5c{letter-spacing:0.047298px;}
.lsc{letter-spacing:0.047942px;}
.ls5b{letter-spacing:0.063064px;}
.lsa{letter-spacing:0.074939px;}
.ls1e{letter-spacing:0.083616px;}
.ls19{letter-spacing:0.083684px;}
.ls12{letter-spacing:0.084091px;}
.ls6{letter-spacing:0.084496px;}
.ls25{letter-spacing:0.088541px;}
.ls22{letter-spacing:0.103423px;}
.ls18{letter-spacing:0.105557px;}
.ls24{letter-spacing:0.128783px;}
.ls13{letter-spacing:0.133281px;}
.ls1a{letter-spacing:0.133688px;}
.ls14{letter-spacing:0.133960px;}
.ls7{letter-spacing:0.134987px;}
.ls15{letter-spacing:0.145285px;}
.ls4b{letter-spacing:2.271852px;}
.ls45{letter-spacing:2.634620px;}
.ls26{letter-spacing:3.451665px;}
.lsd{letter-spacing:3.474231px;}
.ls1d{letter-spacing:3.474761px;}
.ls9{letter-spacing:3.507818px;}
.ls61{letter-spacing:4.477573px;}
.ls3d{letter-spacing:5.725772px;}
.ls49{letter-spacing:6.967654px;}
.ls40{letter-spacing:6.970512px;}
.ls2c{letter-spacing:6.976630px;}
.ls4a{letter-spacing:6.981661px;}
.ls42{letter-spacing:6.985378px;}
.ls17{letter-spacing:11.358188px;}
.ls2b{letter-spacing:14.380457px;}
.ls32{letter-spacing:20.935492px;}
.ls31{letter-spacing:23.261778px;}
.ls52{letter-spacing:23.303347px;}
.lsb{letter-spacing:26.255674px;}
.ls35{letter-spacing:28.990822px;}
.ls2e{letter-spacing:29.101675px;}
.lse{letter-spacing:31.697970px;}
.ls3e{letter-spacing:35.124340px;}
.ls37{letter-spacing:35.293348px;}
.ls21{letter-spacing:36.241561px;}
.ls38{letter-spacing:41.722755px;}
.ls4c{letter-spacing:43.043326px;}
.ls30{letter-spacing:44.201472px;}
.ls20{letter-spacing:53.569260px;}
.ls63{letter-spacing:64.136501px;}
.ls53{letter-spacing:112.560000px;}
.ls67{letter-spacing:136.800000px;}
.ls57{letter-spacing:192.168000px;}
.ls56{letter-spacing:197.304000px;}
.ls64{letter-spacing:234.338340px;}
.ls51{letter-spacing:246.429402px;}
.ls59{letter-spacing:266.264580px;}
.ls58{letter-spacing:274.499820px;}
.ls66{letter-spacing:279.745440px;}
.ls65{letter-spacing:281.399940px;}
.ls55{letter-spacing:285.457680px;}
.ls3f{letter-spacing:313.965488px;}
.lsf{letter-spacing:371.503295px;}
.ls46{letter-spacing:383.745791px;}
.ls2a{letter-spacing:402.918502px;}
.ls44{letter-spacing:453.512088px;}
.ls3b{letter-spacing:462.447880px;}
.ls3a{letter-spacing:532.214177px;}
.ls4e{letter-spacing:684.448593px;}
.ls4d{letter-spacing:688.216200px;}
.ls5{letter-spacing:926.125762px;}
.ls3{letter-spacing:926.127821px;}
.ls4{letter-spacing:926.128507px;}
.ls10{letter-spacing:926.249294px;}
.ls11{letter-spacing:926.252040px;}
.ls50{letter-spacing:1023.951840px;}
.ls4f{letter-spacing:1352.849971px;}
.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;}
}
.ws52{word-spacing:-1352.989512px;}
.ws54{word-spacing:-1024.091381px;}
.ws20{word-spacing:-688.355741px;}
.ws50{word-spacing:-684.588134px;}
.ws55{word-spacing:-246.568943px;}
.ws0{word-spacing:-150.120000px;}
.ws4{word-spacing:-125.100000px;}
.ws1{word-spacing:-120.096000px;}
.ws3{word-spacing:-116.760000px;}
.ws9c{word-spacing:-108.837000px;}
.wsd{word-spacing:-91.740000px;}
.ws5{word-spacing:-91.080000px;}
.ws9d{word-spacing:-79.239600px;}
.ws18{word-spacing:-73.392000px;}
.ws7a{word-spacing:-66.720000px;}
.ws99{word-spacing:-64.294162px;}
.ws1b{word-spacing:-57.960000px;}
.ws7c{word-spacing:-53.376000px;}
.ws17{word-spacing:-50.040000px;}
.ws7b{word-spacing:-44.480006px;}
.ws7d{word-spacing:-35.583994px;}
.ws1a{word-spacing:-28.932794px;}
.ws6f{word-spacing:-23.442888px;}
.wse{word-spacing:-0.330000px;}
.ws9e{word-spacing:-0.288000px;}
.ws19{word-spacing:-0.264000px;}
.ws79{word-spacing:-0.240000px;}
.ws9b{word-spacing:-0.192000px;}
.ws10{word-spacing:-0.162516px;}
.ws8e{word-spacing:-0.157661px;}
.ws21{word-spacing:-0.139541px;}
.ws84{word-spacing:-0.138742px;}
.ws6{word-spacing:-0.136691px;}
.wsf{word-spacing:-0.135376px;}
.ws2d{word-spacing:-0.125588px;}
.wsb{word-spacing:-0.113882px;}
.ws22{word-spacing:-0.097678px;}
.ws5a{word-spacing:-0.083725px;}
.ws2{word-spacing:0.000000px;}
.ws9{word-spacing:24.426643px;}
.ws2c{word-spacing:24.489609px;}
.ws34{word-spacing:25.368723px;}
.ws5b{word-spacing:25.871074px;}
.ws59{word-spacing:25.913710px;}
.ws57{word-spacing:25.947561px;}
.ws58{word-spacing:25.996662px;}
.ws4a{word-spacing:26.875776px;}
.ws2b{word-spacing:28.885180px;}
.ws2a{word-spacing:28.890760px;}
.ws5c{word-spacing:29.136355px;}
.ws5d{word-spacing:29.180022px;}
.ws1d{word-spacing:29.613315px;}
.ws1e{word-spacing:29.638706px;}
.ws4b{word-spacing:29.764294px;}
.ws6c{word-spacing:30.001314px;}
.ws1c{word-spacing:31.271347px;}
.ws4c{word-spacing:31.648110px;}
.ws35{word-spacing:32.652812px;}
.ws93{word-spacing:33.991715px;}
.ws2f{word-spacing:34.159865px;}
.ws74{word-spacing:34.187544px;}
.ws51{word-spacing:34.734758px;}
.ws4f{word-spacing:34.745708px;}
.ws3c{word-spacing:35.160732px;}
.ws61{word-spacing:35.163880px;}
.ws62{word-spacing:35.164331px;}
.ws72{word-spacing:35.820073px;}
.ws71{word-spacing:35.849596px;}
.ws6e{word-spacing:35.861325px;}
.ws6d{word-spacing:35.862036px;}
.ws81{word-spacing:35.934189px;}
.ws6b{word-spacing:36.141118px;}
.ws2e{word-spacing:36.922795px;}
.ws73{word-spacing:37.257446px;}
.ws6a{word-spacing:37.815610px;}
.ws5f{word-spacing:38.234233px;}
.ws38{word-spacing:38.932199px;}
.ws67{word-spacing:39.071479px;}
.ws47{word-spacing:39.210950px;}
.ws46{word-spacing:39.211020px;}
.ws48{word-spacing:39.211676px;}
.ws45{word-spacing:40.187807px;}
.ws44{word-spacing:40.212498px;}
.ws4d{word-spacing:40.313664px;}
.ws3d{word-spacing:40.466889px;}
.ws5e{word-spacing:41.025053px;}
.ws40{word-spacing:41.583217px;}
.ws3f{word-spacing:41.722817px;}
.ws11{word-spacing:42.305039px;}
.ws8{word-spacing:42.715871px;}
.ws95{word-spacing:43.246416px;}
.ws3e{word-spacing:43.815873px;}
.ws4e{word-spacing:44.458059px;}
.ws82{word-spacing:44.510969px;}
.ws83{word-spacing:44.536195px;}
.ws36{word-spacing:45.337173px;}
.ws41{word-spacing:45.629906px;}
.ws49{word-spacing:45.713937px;}
.ws88{word-spacing:45.737460px;}
.ws85{word-spacing:45.895121px;}
.ws32{word-spacing:46.341875px;}
.ws31{word-spacing:46.445972px;}
.ws8a{word-spacing:47.014514px;}
.ws37{word-spacing:47.346577px;}
.ws42{word-spacing:47.443939px;}
.ws43{word-spacing:47.723021px;}
.ws68{word-spacing:48.141644px;}
.ws91{word-spacing:48.669955px;}
.ws75{word-spacing:48.699808px;}
.ws92{word-spacing:48.764552px;}
.ws7f{word-spacing:49.303876px;}
.ws77{word-spacing:49.397513px;}
.ws14{word-spacing:50.786369px;}
.ws3b{word-spacing:50.792923px;}
.ws60{word-spacing:50.932464px;}
.ws7{word-spacing:51.279565px;}
.ws33{word-spacing:51.365385px;}
.ws70{word-spacing:52.048792px;}
.ws96{word-spacing:52.516884px;}
.ws8b{word-spacing:52.532650px;}
.ws3a{word-spacing:52.606956px;}
.ws15{word-spacing:52.995760px;}
.ws94{word-spacing:53.825470px;}
.ws86{word-spacing:55.070992px;}
.ws87{word-spacing:56.221918px;}
.ws7e{word-spacing:57.060817px;}
.ws78{word-spacing:57.351350px;}
.ws30{word-spacing:57.770360px;}
.ws16{word-spacing:57.825607px;}
.ws76{word-spacing:58.188596px;}
.ws69{word-spacing:58.746760px;}
.ws9a{word-spacing:59.012518px;}
.ws90{word-spacing:60.636426px;}
.ws63{word-spacing:60.979153px;}
.ws65{word-spacing:60.979416px;}
.ws64{word-spacing:60.979912px;}
.ws89{word-spacing:61.377433px;}
.ws39{word-spacing:62.793449px;}
.ws80{word-spacing:62.929089px;}
.ws98{word-spacing:63.789646px;}
.ws8d{word-spacing:68.992460px;}
.ws8f{word-spacing:69.418145px;}
.ws97{word-spacing:70.206450px;}
.ws8c{word-spacing:76.907043px;}
.ws66{word-spacing:80.515156px;}
.ws12{word-spacing:105.569567px;}
.ws25{word-spacing:167.309656px;}
.ws26{word-spacing:237.080155px;}
.ws29{word-spacing:306.850653px;}
.ws28{word-spacing:321.100528px;}
.ws23{word-spacing:332.526197px;}
.wsa{word-spacing:371.520345px;}
.ws13{word-spacing:371.783710px;}
.ws53{word-spacing:376.621152px;}
.wsc{word-spacing:423.321555px;}
.ws56{word-spacing:446.391651px;}
.ws27{word-spacing:460.661135px;}
.ws1f{word-spacing:491.190468px;}
.ws24{word-spacing:764.126502px;}
._8{margin-left:-10491.966000px;}
._2b{margin-left:-1352.900013px;}
._14{margin-left:-1105.529511px;}
._2d{margin-left:-1023.891956px;}
._2a{margin-left:-976.089958px;}
._26{margin-left:-684.402890px;}
._2c{margin-left:-647.183404px;}
._2f{margin-left:-246.454577px;}
._18{margin-left:-91.950296px;}
._3c{margin-left:-68.582541px;}
._3d{margin-left:-64.820343px;}
._3b{margin-left:-63.515723px;}
._4{margin-left:-49.680000px;}
._3{margin-left:-40.326000px;}
._d{margin-left:-39.205200px;}
._34{margin-left:-36.630000px;}
._42{margin-left:-35.272800px;}
._c{margin-left:-33.120000px;}
._3e{margin-left:-30.360000px;}
._41{margin-left:-27.972000px;}
._33{margin-left:-26.640000px;}
._32{margin-left:-23.353875px;}
._5{margin-left:-20.454000px;}
._3f{margin-left:-17.732925px;}
._6{margin-left:-14.986800px;}
._3a{margin-left:-13.290749px;}
._7{margin-left:-12.262800px;}
._21{margin-left:-11.024439px;}
._0{margin-left:-9.754800px;}
._f{margin-left:-8.580000px;}
._2{margin-left:-7.194000px;}
._b{margin-left:-5.725200px;}
._e{margin-left:-4.104000px;}
._1{margin-left:-2.257200px;}
._1c{margin-left:-1.045114px;}
._10{width:1.013132px;}
._12{width:2.026260px;}
._13{width:3.158514px;}
._36{width:4.729830px;}
._2e{width:6.985812px;}
._1a{width:16.686459px;}
._1b{width:23.257688px;}
._17{width:33.874800px;}
._31{width:37.339301px;}
._1f{width:40.147681px;}
._20{width:41.204721px;}
._22{width:42.724089px;}
._11{width:44.029339px;}
._1e{width:46.552655px;}
._39{width:53.762406px;}
._37{width:56.490040px;}
._1d{width:58.985571px;}
._38{width:61.892754px;}
._35{width:94.048016px;}
._24{width:190.916629px;}
._25{width:198.427298px;}
._16{width:308.292308px;}
._40{width:333.971940px;}
._15{width:340.092565px;}
._19{width:387.502792px;}
._28{width:532.144125px;}
._29{width:612.440295px;}
._23{width:667.588676px;}
._30{width:969.670392px;}
._27{width:1000.229870px;}
._9{width:3043.722600px;}
._a{width:7681.870800px;}
.fc15{color:rgb(0,163,215);}
.fc10{color:rgb(0,150,255);}
.fc12{color:rgb(1,25,147);}
.fcf{color:rgb(121,121,121);}
.fce{color:rgb(148,17,0);}
.fcd{color:rgb(255,147,0);}
.fc2{color:rgb(0,0,0);}
.fcb{color:rgb(0,143,0);}
.fc1{color:rgb(0,52,98);}
.fc6{color:rgb(255,38,0);}
.fc11{color:rgb(0,144,81);}
.fc9{color:rgb(83,27,147);}
.fc13{color:rgb(255,64,255);}
.fc5{color:rgb(0,84,147);}
.fc0{color:rgb(66,66,66);}
.fc4{color:transparent;}
.fc7{color:rgb(0,0,255);}
.fca{color:rgb(255,251,0);}
.fc14{color:rgb(94,94,94);}
.fc8{color:rgb(0,145,147);}
.fc3{color:rgb(192,192,192);}
.fcc{color:rgb(146,144,0);}
.fs13{font-size:79.716795px;}
.fs21{font-size:83.725159px;}
.fsf{font-size:95.683159px;}
.fs20{font-size:97.678418px;}
.fsa{font-size:99.745296px;}
.fs1b{font-size:103.999980px;}
.fs9{font-size:108.000000px;}
.fs18{font-size:112.786396px;}
.fs17{font-size:113.760937px;}
.fs12{font-size:113.881685px;}
.fs11{font-size:114.865690px;}
.fs1e{font-size:125.587738px;}
.fs28{font-size:126.129128px;}
.fs25{font-size:127.999980px;}
.fs0{font-size:132.000000px;}
.fs15{font-size:135.376124px;}
.fse{font-size:136.690786px;}
.fs1f{font-size:139.540997px;}
.fsc{font-size:151.999980px;}
.fsd{font-size:156.000000px;}
.fs29{font-size:157.661014px;}
.fs23{font-size:160.000020px;}
.fs16{font-size:162.516381px;}
.fs10{font-size:164.094607px;}
.fs2a{font-size:168.000000px;}
.fs19{font-size:180.000000px;}
.fs1d{font-size:191.999997px;}
.fs1c{font-size:192.000000px;}
.fs24{font-size:204.000000px;}
.fs14{font-size:216.000000px;}
.fsb{font-size:228.000000px;}
.fs22{font-size:240.000000px;}
.fs27{font-size:252.000000px;}
.fs1a{font-size:264.000000px;}
.fs4{font-size:276.000000px;}
.fs2e{font-size:288.000000px;}
.fs3{font-size:300.000000px;}
.fs2d{font-size:313.200000px;}
.fs8{font-size:330.000000px;}
.fs7{font-size:360.000000px;}
.fs2c{font-size:391.500000px;}
.fs2b{font-size:396.000000px;}
.fs5{font-size:420.000000px;}
.fs2{font-size:432.000000px;}
.fs6{font-size:450.000000px;}
.fs1{font-size:540.000000px;}
.fs26{font-size:599.999989px;}
.y104{bottom:-1332.190095px;}
.y103{bottom:-1160.552978px;}
.y102{bottom:-1113.077114px;}
.y101{bottom:-1065.601250px;}
.y100{bottom:-1018.125386px;}
.yff{bottom:-970.649522px;}
.ybf{bottom:-939.796742px;}
.yfe{bottom:-923.173658px;}
.yfd{bottom:-875.697794px;}
.y95{bottom:-870.026943px;}
.y94{bottom:-831.652679px;}
.yfc{bottom:-828.221930px;}
.y93{bottom:-793.278414px;}
.yfb{bottom:-780.746066px;}
.y92{bottom:-754.904150px;}
.yfa{bottom:-733.270202px;}
.y91{bottom:-716.529885px;}
.yf9{bottom:-685.794338px;}
.y90{bottom:-678.155621px;}
.ybe{bottom:-674.668006px;}
.y8f{bottom:-639.781356px;}
.yf8{bottom:-638.318474px;}
.ybd{bottom:-636.293742px;}
.y8e{bottom:-601.407092px;}
.ybc{bottom:-594.431863px;}
.yf7{bottom:-590.842610px;}
.y8d{bottom:-563.032827px;}
.ybb{bottom:-556.057598px;}
.yf6{bottom:-543.366746px;}
.y8c{bottom:-524.662064px;}
.yba{bottom:-514.195719px;}
.yf5{bottom:-495.890882px;}
.y8b{bottom:-486.287800px;}
.yb9{bottom:-472.330338px;}
.yf4{bottom:-448.415018px;}
.y8a{bottom:-447.913535px;}
.yb8{bottom:-433.959575px;}
.yf3{bottom:-400.939154px;}
.yb7{bottom:-392.094195px;}
.yb6{bottom:-353.719930px;}
.yf2{bottom:-353.463290px;}
.y89{bottom:-325.759486px;}
.yb5{bottom:-315.349167px;}
.y88{bottom:-290.872836px;}
.yb4{bottom:-273.483787px;}
.y87{bottom:-255.989688px;}
.yf1{bottom:-247.046141px;}
.yb3{bottom:-235.113024px;}
.y86{bottom:-221.103038px;}
.yf0{bottom:-209.599553px;}
.yb2{bottom:-193.247643px;}
.y85{bottom:-186.219890px;}
.yef{bottom:-172.156922px;}
.yb1{bottom:-154.873378px;}
.y84{bottom:-151.333240px;}
.y83{bottom:-116.446590px;}
.yb0{bottom:-113.011499px;}
.y82{bottom:-81.563441px;}
.yaf{bottom:-74.637235px;}
.y81{bottom:-46.676791px;}
.yae{bottom:-32.775356px;}
.y0{bottom:0.000000px;}
.y11c{bottom:2.786250px;}
.yec{bottom:2.973450px;}
.y11a{bottom:4.795050px;}
.y118{bottom:5.303850px;}
.yad{bottom:5.598909px;}
.y5e{bottom:13.077900px;}
.yea{bottom:15.340200px;}
.y116{bottom:15.964950px;}
.ye6{bottom:17.281200px;}
.y5c{bottom:18.719235px;}
.y60{bottom:18.719400px;}
.ye4{bottom:18.781200px;}
.yd5{bottom:23.950950px;}
.y52{bottom:24.480150px;}
.y6f{bottom:25.547850px;}
.yde{bottom:26.112150px;}
.y8{bottom:26.597055px;}
.y36{bottom:28.741350px;}
.y12{bottom:36.465600px;}
.yc{bottom:42.506970px;}
.y69{bottom:51.059100px;}
.y4c{bottom:51.946511px;}
.y1{bottom:52.288515px;}
.y25{bottom:54.693273px;}
.y61{bottom:72.759360px;}
.y115{bottom:81.321600px;}
.y6e{bottom:82.788000px;}
.ye1{bottom:91.898550px;}
.y4b{bottom:93.541022px;}
.y70{bottom:94.761885px;}
.y24{bottom:98.933864px;}
.y55{bottom:100.757130px;}
.y5b{bottom:105.634680px;}
.y111{bottom:107.599500px;}
.y16{bottom:115.309290px;}
.y26{bottom:116.804429px;}
.y106{bottom:119.417400px;}
.y2d{bottom:129.978165px;}
.yac{bottom:131.849854px;}
.yda{bottom:140.438775px;}
.y68{bottom:147.059100px;}
.yab{bottom:155.338728px;}
.y14{bottom:161.388300px;}
.y2b{bottom:164.569572px;}
.y110{bottom:176.053200px;}
.ye0{bottom:177.233250px;}
.y6a{bottom:181.790100px;}
.y37{bottom:191.786550px;}
.y105{bottom:204.198000px;}
.y50{bottom:205.040984px;}
.y54{bottom:206.093400px;}
.y27{bottom:208.295445px;}
.y6{bottom:208.684800px;}
.yd9{bottom:213.938850px;}
.yc5{bottom:214.483950px;}
.y109{bottom:216.544350px;}
.yd{bottom:217.339650px;}
.yaa{bottom:223.945988px;}
.y4d{bottom:226.102903px;}
.yed{bottom:258.000000px;}
.y11b{bottom:264.000000px;}
.ya9{bottom:264.606811px;}
.yd0{bottom:276.202350px;}
.yee{bottom:276.346650px;}
.y10f{bottom:287.053200px;}
.yd8{bottom:287.438850px;}
.y28{bottom:299.786667px;}
.y6d{bottom:302.963850px;}
.ya8{bottom:305.264132px;}
.y5{bottom:307.564650px;}
.y62{bottom:307.719750px;}
.y67{bottom:339.059100px;}
.yd3{bottom:339.796650px;}
.yc4{bottom:342.421650px;}
.ya7{bottom:343.638397px;}
.ycf{bottom:349.702350px;}
.yf{bottom:363.527250px;}
.y4e{bottom:363.701208px;}
.yeb{bottom:372.000000px;}
.y33{bottom:373.500600px;}
.y2f{bottom:374.813100px;}
.ya6{bottom:382.012661px;}
.y29{bottom:391.277718px;}
.y13{bottom:392.872650px;}
.y10e{bottom:398.053200px;}
.yd7{bottom:399.483600px;}
.ydf{bottom:410.560200px;}
.yce{bottom:411.712050px;}
.y119{bottom:415.500000px;}
.ya5{bottom:422.526416px;}
.y66{bottom:435.059100px;}
.y6b{bottom:443.112000px;}
.yc3{bottom:444.421650px;}
.y4f{bottom:449.669010px;}
.yd6{bottom:453.483600px;}
.ya4{bottom:460.900681px;}
.y5a{bottom:467.192700px;}
.y2a{bottom:482.768769px;}
.ye9{bottom:484.500000px;}
.y10{bottom:492.333300px;}
.y2c{bottom:500.848086px;}
.ya3{bottom:501.410934px;}
.ycd{bottom:509.902200px;}
.yc2{bottom:518.197950px;}
.y10d{bottom:519.860400px;}
.y65{bottom:531.059100px;}
.ya2{bottom:539.785199px;}
.y59{bottom:545.523000px;}
.y47{bottom:564.903618px;}
.y117{bottom:568.500000px;}
.ycc{bottom:570.712050px;}
.ya1{bottom:580.298954px;}
.ye8{bottom:582.000000px;}
.y4{bottom:582.728550px;}
.y18{bottom:585.924028px;}
.y53{bottom:594.837900px;}
.y10c{bottom:609.860400px;}
.ya0{bottom:618.673218px;}
.y58{bottom:626.523000px;}
.y64{bottom:627.059100px;}
.y17{bottom:630.164602px;}
.y19{bottom:648.035115px;}
.y48{bottom:654.782361px;}
.ydc{bottom:663.584700px;}
.ycb{bottom:668.902200px;}
.y9f{bottom:676.418450px;}
.ye7{bottom:678.000000px;}
.y1e{bottom:695.800310px;}
.y10b{bottom:699.860400px;}
.y6c{bottom:703.597650px;}
.y108{bottom:704.454000px;}
.y57{bottom:707.523000px;}
.ydb{bottom:720.584700px;}
.y63{bottom:723.059100px;}
.y114{bottom:724.500000px;}
.yca{bottom:729.712050px;}
.y1a{bottom:739.526166px;}
.y49{bottom:744.661104px;}
.y5d{bottom:745.291500px;}
.y3{bottom:749.228550px;}
.y9{bottom:770.557350px;}
.y9e{bottom:772.173778px;}
.ye5{bottom:775.500000px;}
.y10a{bottom:786.808950px;}
.y56{bottom:788.523000px;}
.ydd{bottom:792.749850px;}
.y9d{bottom:807.056927px;}
.yc9{bottom:827.902200px;}
.y1b{bottom:831.017388px;}
.y4a{bottom:834.539847px;}
.ye3{bottom:870.000000px;}
.yc8{bottom:888.712050px;}
.y9c{bottom:897.493292px;}
.y2{bottom:915.728550px;}
.y31{bottom:916.913100px;}
.y1c{bottom:922.508439px;}
.y9b{bottom:932.379942px;}
.y39{bottom:947.949656px;}
.y113{bottom:959.330400px;}
.y9a{bottom:967.263091px;}
.y80{bottom:971.465036px;}
.y51{bottom:977.374500px;}
.ye2{bottom:979.473450px;}
.y30{bottom:985.913100px;}
.y2e{bottom:989.958000px;}
.y38{bottom:991.764903px;}
.y99{bottom:1002.149741px;}
.y7f{bottom:1006.348184px;}
.yd2{bottom:1007.997000px;}
.y1d{bottom:1013.999490px;}
.y1f{bottom:1032.078807px;}
.y98{bottom:1037.032889px;}
.y7e{bottom:1041.234834px;}
.yc7{bottom:1043.902200px;}
.yc1{bottom:1051.282650px;}
.y46{bottom:1052.169705px;}
.y7{bottom:1065.572250px;}
.y97{bottom:1071.919539px;}
.yd4{bottom:1071.993750px;}
.y11{bottom:1074.186600px;}
.y7d{bottom:1076.121484px;}
.y3a{bottom:1080.382650px;}
.y32{bottom:1083.545400px;}
.y23{bottom:1089.404042px;}
.y45{bottom:1092.074691px;}
.y21{bottom:1092.355609px;}
.y96{bottom:1106.806189px;}
.y35{bottom:1110.463050px;}
.y7c{bottom:1111.004633px;}
.yc6{bottom:1117.678500px;}
.y44{bottom:1133.094881px;}
.y15{bottom:1133.133000px;}
.y34{bottom:1135.712700px;}
.yc0{bottom:1141.504950px;}
.y22{bottom:1145.111172px;}
.y20{bottom:1149.821705px;}
.y7b{bottom:1175.500990px;}
.y3b{bottom:1177.771297px;}
.y7a{bottom:1213.875254px;}
.yd1{bottom:1232.842950px;}
.y79{bottom:1252.249519px;}
.yb{bottom:1254.723600px;}
.y3c{bottom:1275.159943px;}
.y78{bottom:1290.623783px;}
.y42{bottom:1319.581306px;}
.y77{bottom:1328.998048px;}
.y107{bottom:1330.777050px;}
.ya{bottom:1362.675300px;}
.y3d{bottom:1372.548590px;}
.y76{bottom:1373.398602px;}
.y112{bottom:1375.577400px;}
.y75{bottom:1385.433674px;}
.y74{bottom:1427.358582px;}
.y3e{bottom:1469.937237px;}
.y5f{bottom:1499.685600px;}
.y73{bottom:1523.110408px;}
.y72{bottom:1557.997058px;}
.y3f{bottom:1567.325883px;}
.y71{bottom:1641.720816px;}
.y40{bottom:1664.714530px;}
.y43{bottom:1727.072083px;}
.y41{bottom:1762.103347px;}
.ye{bottom:1787.281165px;}
.h40{height:63.000000px;}
.h3f{height:66.000000px;}
.h25{height:66.187500px;}
.h3e{height:67.500000px;}
.hb{height:70.328226px;}
.h42{height:72.000000px;}
.h43{height:73.500000px;}
.h34{height:76.608520px;}
.h9{height:78.948000px;}
.h39{height:80.212350px;}
.h22{height:82.320030px;}
.h1f{height:85.492088px;}
.h16{height:86.322317px;}
.h3a{height:87.108030px;}
.h19{height:95.954820px;}
.h5{height:96.492000px;}
.h1{height:97.259766px;}
.h45{height:97.371687px;}
.h14{height:101.114692px;}
.h1b{height:101.532093px;}
.h12{height:102.518089px;}
.h1e{height:102.615102px;}
.h15{height:103.611616px;}
.h1d{height:104.916496px;}
.hd{height:108.899820px;}
.he{height:114.036000px;}
.h2d{height:114.912780px;}
.h26{height:114.943359px;}
.h10{height:121.366139px;}
.h17{height:121.366276px;}
.h33{height:122.199626px;}
.h47{height:122.808000px;}
.h1c{height:123.187417px;}
.h20{height:123.516387px;}
.h13{height:123.758218px;}
.h11{height:124.383712px;}
.h2e{height:127.680013px;}
.h23{height:131.580000px;}
.h32{height:140.023199px;}
.h31{height:140.037205px;}
.h2a{height:140.351998px;}
.h29{height:140.352000px;}
.h46{height:141.894913px;}
.h2b{height:143.783940px;}
.h2f{height:144.351202px;}
.h21{height:147.140613px;}
.h38{height:149.124000px;}
.h4c{height:150.000000px;}
.h18{height:157.896000px;}
.h27{height:161.506800px;}
.hc{height:166.668000px;}
.h35{height:171.360000px;}
.h36{height:175.440000px;}
.h30{height:175.820298px;}
.h41{height:184.212000px;}
.h24{height:192.984000px;}
.h4{height:203.361328px;}
.h4d{height:210.528000px;}
.h3{height:217.236328px;}
.h8{height:241.230000px;}
.h37{height:259.920000px;}
.h49{height:285.912000px;}
.h4a{height:286.186500px;}
.h6{height:307.020000px;}
.h4b{height:311.904000px;}
.h3d{height:324.900000px;}
.h7{height:328.950000px;}
.h2{height:394.740000px;}
.h3c{height:431.999992px;}
.h28{height:823.042950px;}
.h44{height:830.324550px;}
.h2c{height:919.866150px;}
.h1a{height:922.848450px;}
.h3b{height:933.929100px;}
.h48{height:967.065750px;}
.ha{height:1004.572200px;}
.hf{height:1235.324700px;}
.h0{height:1620.000000px;}
.wa{width:70.427400px;}
.w8{width:158.325000px;}
.w7{width:186.675000px;}
.w9{width:199.918350px;}
.wb{width:256.246200px;}
.w2{width:283.741350px;}
.w11{width:338.764050px;}
.w10{width:364.172100px;}
.wd{width:451.831500px;}
.w5{width:532.022850px;}
.w4{width:554.054850px;}
.w16{width:712.500000px;}
.w14{width:789.000000px;}
.we{width:910.645650px;}
.w15{width:1006.500000px;}
.w13{width:1042.500000px;}
.wf{width:1074.107550px;}
.w17{width:1086.000000px;}
.w19{width:1159.500000px;}
.w1b{width:1174.929750px;}
.w18{width:1201.500000px;}
.wc{width:1281.757950px;}
.w1{width:1285.226250px;}
.w1a{width:1541.220000px;}
.w6{width:1835.164500px;}
.w3{width:1852.987500px;}
.w1d{width:1869.000000px;}
.w1f{width:1894.500000px;}
.w1c{width:2362.500000px;}
.w1e{width:2415.000000px;}
.w12{width:2781.966180px;}
.w0{width:2880.000000px;}
.xe{left:-194.585997px;}
.x76{left:-13.517250px;}
.x77{left:-6.017205px;}
.x75{left:-1.517250px;}
.x0{left:0.000000px;}
.x3b{left:14.160000px;}
.x28{left:16.476000px;}
.x11{left:18.206250px;}
.x52{left:20.524500px;}
.x53{left:24.089820px;}
.x80{left:31.617480px;}
.x5e{left:43.935000px;}
.x45{left:47.475900px;}
.x39{left:51.423775px;}
.x5c{left:54.396000px;}
.x48{left:56.746320px;}
.x7f{left:58.502685px;}
.x57{left:65.775058px;}
.x19{left:75.202491px;}
.x71{left:78.214320px;}
.x41{left:87.794595px;}
.x73{left:90.652380px;}
.x18{left:92.286977px;}
.x2f{left:94.077720px;}
.x72{left:97.396830px;}
.x1{left:103.065000px;}
.x36{left:106.278170px;}
.x24{left:108.589590px;}
.x2d{left:110.997909px;}
.x79{left:112.925352px;}
.x5f{left:115.753500px;}
.x16{left:117.403252px;}
.x81{left:124.668015px;}
.x62{left:134.902515px;}
.x2e{left:137.321110px;}
.xb{left:148.500000px;}
.x63{left:152.722500px;}
.x13{left:153.949650px;}
.x25{left:155.688150px;}
.x1a{left:159.567795px;}
.x74{left:165.000000px;}
.x40{left:166.664550px;}
.x49{left:189.042930px;}
.x14{left:193.546650px;}
.x30{left:203.932728px;}
.x5d{left:207.945000px;}
.x60{left:209.131350px;}
.x42{left:213.656550px;}
.x12{left:217.563150px;}
.x22{left:219.984150px;}
.x5b{left:221.046450px;}
.x3{left:223.069500px;}
.x82{left:224.702100px;}
.x3f{left:228.242550px;}
.x37{left:230.003119px;}
.x61{left:248.149350px;}
.x32{left:288.235118px;}
.x4d{left:290.814930px;}
.x55{left:309.053679px;}
.x1c{left:311.496343px;}
.xa{left:315.030000px;}
.x23{left:339.627150px;}
.x4c{left:347.013930px;}
.x1b{left:348.142245px;}
.x31{left:405.258673px;}
.x64{left:426.975150px;}
.x4b{left:433.770930px;}
.x33{left:437.890628px;}
.x4a{left:438.918930px;}
.x67{left:441.666300px;}
.x66{left:458.739600px;}
.x6{left:508.112550px;}
.x26{left:576.602250px;}
.x2{left:599.112000px;}
.x34{left:601.350658px;}
.x56{left:688.580372px;}
.x35{left:764.810688px;}
.x7a{left:767.225593px;}
.x54{left:783.614366px;}
.x65{left:838.005450px;}
.x4{left:846.688500px;}
.x17{left:864.009303px;}
.x38{left:891.500295px;}
.x3e{left:927.543000px;}
.x2c{left:934.296687px;}
.x2a{left:944.742150px;}
.x58{left:946.478261px;}
.x3d{left:959.000550px;}
.x5a{left:998.806485px;}
.x59{left:1000.011042px;}
.x15{left:1014.781650px;}
.x1f{left:1038.378000px;}
.x10{left:1121.089650px;}
.x5{left:1123.337400px;}
.x3c{left:1139.349750px;}
.x3a{left:1140.737250px;}
.x1e{left:1149.827882px;}
.x21{left:1215.927000px;}
.x4e{left:1220.123250px;}
.x1d{left:1284.911476px;}
.x78{left:1338.779550px;}
.x4f{left:1405.962300px;}
.x44{left:1409.566050px;}
.x50{left:1424.250000px;}
.xc{left:1431.756000px;}
.x20{left:1436.933850px;}
.xd{left:1545.661500px;}
.x47{left:1559.226000px;}
.x51{left:1584.049500px;}
.x2b{left:1589.606128px;}
.x70{left:1653.558000px;}
.x27{left:1689.507000px;}
.xf{left:1695.273000px;}
.x7c{left:1797.822000px;}
.x7e{left:1957.605000px;}
.x7d{left:1958.874000px;}
.x46{left:2011.027500px;}
.x6f{left:2012.257500px;}
.x43{left:2039.191500px;}
.x6e{left:2115.817500px;}
.x6d{left:2117.593500px;}
.x8{left:2227.147500px;}
.x29{left:2270.953500px;}
.x7b{left:2307.037500px;}
.x7{left:2335.569000px;}
.x69{left:2570.016000px;}
.x68{left:2583.786000px;}
.x9{left:2590.360500px;}
.x6b{left:2601.141000px;}
.x6a{left:2606.268000px;}
.x6c{left:2643.321000px;}
@media print{
.vf{vertical-align:-45.032402pt;}
.ve{vertical-align:-40.525427pt;}
.v3{vertical-align:-21.879214pt;}
.vc{vertical-align:-18.600611pt;}
.v1{vertical-align:-16.888891pt;}
.v10{vertical-align:-15.146485pt;}
.v8{vertical-align:-11.555557pt;}
.v6{vertical-align:-10.630208pt;}
.v12{vertical-align:-4.277333pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:10.630208pt;}
.v11{vertical-align:12.344619pt;}
.v4{vertical-align:36.735196pt;}
.vd{vertical-align:40.525427pt;}
.vb{vertical-align:42.791365pt;}
.v2{vertical-align:44.092240pt;}
.v9{vertical-align:45.019952pt;}
.v13{vertical-align:46.763200pt;}
.va{vertical-align:48.867066pt;}
.v5{vertical-align:52.423011pt;}
.ls29{letter-spacing:-37.440000pt;}
.ls1{letter-spacing:-8.000000pt;}
.ls68{letter-spacing:-6.960000pt;}
.ls5d{letter-spacing:-0.044846pt;}
.ls60{letter-spacing:-0.042043pt;}
.ls62{letter-spacing:-0.028029pt;}
.ls5e{letter-spacing:-0.022423pt;}
.ls5f{letter-spacing:-0.014014pt;}
.ls0{letter-spacing:0.000000pt;}
.ls39{letter-spacing:0.000052pt;}
.ls1f{letter-spacing:0.000203pt;}
.ls16{letter-spacing:0.000214pt;}
.ls2d{letter-spacing:0.001245pt;}
.ls41{letter-spacing:0.001920pt;}
.ls48{letter-spacing:0.002490pt;}
.ls2f{letter-spacing:0.004358pt;}
.ls33{letter-spacing:0.004945pt;}
.ls36{letter-spacing:0.005478pt;}
.ls47{letter-spacing:0.005717pt;}
.ls3c{letter-spacing:0.008257pt;}
.ls34{letter-spacing:0.008715pt;}
.ls43{letter-spacing:0.009021pt;}
.ls5a{letter-spacing:0.011211pt;}
.ls28{letter-spacing:0.018489pt;}
.ls23{letter-spacing:0.018969pt;}
.ls2{letter-spacing:0.020066pt;}
.ls54{letter-spacing:0.026667pt;}
.ls27{letter-spacing:0.027733pt;}
.ls1c{letter-spacing:0.028035pt;}
.ls1b{letter-spacing:0.028478pt;}
.ls8{letter-spacing:0.040311pt;}
.ls5c{letter-spacing:0.042043pt;}
.lsc{letter-spacing:0.042615pt;}
.ls5b{letter-spacing:0.056057pt;}
.lsa{letter-spacing:0.066612pt;}
.ls1e{letter-spacing:0.074325pt;}
.ls19{letter-spacing:0.074385pt;}
.ls12{letter-spacing:0.074748pt;}
.ls6{letter-spacing:0.075108pt;}
.ls25{letter-spacing:0.078703pt;}
.ls22{letter-spacing:0.091931pt;}
.ls18{letter-spacing:0.093828pt;}
.ls24{letter-spacing:0.114474pt;}
.ls13{letter-spacing:0.118472pt;}
.ls1a{letter-spacing:0.118834pt;}
.ls14{letter-spacing:0.119076pt;}
.ls7{letter-spacing:0.119988pt;}
.ls15{letter-spacing:0.129142pt;}
.ls4b{letter-spacing:2.019424pt;}
.ls45{letter-spacing:2.341884pt;}
.ls26{letter-spacing:3.068147pt;}
.lsd{letter-spacing:3.088206pt;}
.ls1d{letter-spacing:3.088676pt;}
.ls9{letter-spacing:3.118061pt;}
.ls61{letter-spacing:3.980065pt;}
.ls3d{letter-spacing:5.089575pt;}
.ls49{letter-spacing:6.193471pt;}
.ls40{letter-spacing:6.196010pt;}
.ls2c{letter-spacing:6.201449pt;}
.ls4a{letter-spacing:6.205921pt;}
.ls42{letter-spacing:6.209225pt;}
.ls17{letter-spacing:10.096167pt;}
.ls2b{letter-spacing:12.782629pt;}
.ls32{letter-spacing:18.609326pt;}
.ls31{letter-spacing:20.677136pt;}
.ls52{letter-spacing:20.714086pt;}
.lsb{letter-spacing:23.338377pt;}
.ls35{letter-spacing:25.769620pt;}
.ls2e{letter-spacing:25.868156pt;}
.lse{letter-spacing:28.175974pt;}
.ls3e{letter-spacing:31.221636pt;}
.ls37{letter-spacing:31.371865pt;}
.ls21{letter-spacing:32.214721pt;}
.ls38{letter-spacing:37.086894pt;}
.ls4c{letter-spacing:38.260734pt;}
.ls30{letter-spacing:39.290197pt;}
.ls20{letter-spacing:47.617120pt;}
.ls63{letter-spacing:57.010223pt;}
.ls53{letter-spacing:100.053333pt;}
.ls67{letter-spacing:121.600000pt;}
.ls57{letter-spacing:170.816000pt;}
.ls56{letter-spacing:175.381333pt;}
.ls64{letter-spacing:208.300747pt;}
.ls51{letter-spacing:219.048357pt;}
.ls59{letter-spacing:236.679627pt;}
.ls58{letter-spacing:243.999840pt;}
.ls66{letter-spacing:248.662613pt;}
.ls65{letter-spacing:250.133280pt;}
.ls55{letter-spacing:253.740160pt;}
.ls3f{letter-spacing:279.080434pt;}
.lsf{letter-spacing:330.225151pt;}
.ls46{letter-spacing:341.107370pt;}
.ls2a{letter-spacing:358.149780pt;}
.ls44{letter-spacing:403.121856pt;}
.ls3b{letter-spacing:411.064782pt;}
.ls3a{letter-spacing:473.079269pt;}
.ls4e{letter-spacing:608.398749pt;}
.ls4d{letter-spacing:611.747733pt;}
.ls5{letter-spacing:823.222900pt;}
.ls3{letter-spacing:823.224730pt;}
.ls4{letter-spacing:823.225340pt;}
.ls10{letter-spacing:823.332706pt;}
.ls11{letter-spacing:823.335146pt;}
.ls50{letter-spacing:910.179413pt;}
.ls4f{letter-spacing:1202.533307pt;}
.ws52{word-spacing:-1202.657344pt;}
.ws54{word-spacing:-910.303449pt;}
.ws20{word-spacing:-611.871769pt;}
.ws50{word-spacing:-608.522786pt;}
.ws55{word-spacing:-219.172393pt;}
.ws0{word-spacing:-133.440000pt;}
.ws4{word-spacing:-111.200000pt;}
.ws1{word-spacing:-106.752000pt;}
.ws3{word-spacing:-103.786667pt;}
.ws9c{word-spacing:-96.744000pt;}
.wsd{word-spacing:-81.546667pt;}
.ws5{word-spacing:-80.960000pt;}
.ws9d{word-spacing:-70.435200pt;}
.ws18{word-spacing:-65.237333pt;}
.ws7a{word-spacing:-59.306667pt;}
.ws99{word-spacing:-57.150366pt;}
.ws1b{word-spacing:-51.520000pt;}
.ws7c{word-spacing:-47.445333pt;}
.ws17{word-spacing:-44.480000pt;}
.ws7b{word-spacing:-39.537783pt;}
.ws7d{word-spacing:-31.630217pt;}
.ws1a{word-spacing:-25.718039pt;}
.ws6f{word-spacing:-20.838122pt;}
.wse{word-spacing:-0.293333pt;}
.ws9e{word-spacing:-0.256000pt;}
.ws19{word-spacing:-0.234667pt;}
.ws79{word-spacing:-0.213333pt;}
.ws9b{word-spacing:-0.170667pt;}
.ws10{word-spacing:-0.144459pt;}
.ws8e{word-spacing:-0.140143pt;}
.ws21{word-spacing:-0.124036pt;}
.ws84{word-spacing:-0.123326pt;}
.ws6{word-spacing:-0.121503pt;}
.wsf{word-spacing:-0.120334pt;}
.ws2d{word-spacing:-0.111634pt;}
.wsb{word-spacing:-0.101228pt;}
.ws22{word-spacing:-0.086825pt;}
.ws5a{word-spacing:-0.074422pt;}
.ws2{word-spacing:0.000000pt;}
.ws9{word-spacing:21.712572pt;}
.ws2c{word-spacing:21.768541pt;}
.ws34{word-spacing:22.549976pt;}
.ws5b{word-spacing:22.996510pt;}
.ws59{word-spacing:23.034409pt;}
.ws57{word-spacing:23.064498pt;}
.ws58{word-spacing:23.108144pt;}
.ws4a{word-spacing:23.889579pt;}
.ws2b{word-spacing:25.675715pt;}
.ws2a{word-spacing:25.680676pt;}
.ws5c{word-spacing:25.898982pt;}
.ws5d{word-spacing:25.937797pt;}
.ws1d{word-spacing:26.322947pt;}
.ws1e{word-spacing:26.345517pt;}
.ws4b{word-spacing:26.457150pt;}
.ws6c{word-spacing:26.667835pt;}
.ws1c{word-spacing:27.796753pt;}
.ws4c{word-spacing:28.131653pt;}
.ws35{word-spacing:29.024722pt;}
.ws93{word-spacing:30.214857pt;}
.ws2f{word-spacing:30.364324pt;}
.ws74{word-spacing:30.388928pt;}
.ws51{word-spacing:30.875341pt;}
.ws4f{word-spacing:30.885074pt;}
.ws3c{word-spacing:31.253984pt;}
.ws61{word-spacing:31.256783pt;}
.ws62{word-spacing:31.257183pt;}
.ws72{word-spacing:31.840065pt;}
.ws71{word-spacing:31.866307pt;}
.ws6e{word-spacing:31.876733pt;}
.ws6d{word-spacing:31.877366pt;}
.ws81{word-spacing:31.941501pt;}
.ws6b{word-spacing:32.125439pt;}
.ws2e{word-spacing:32.820262pt;}
.ws73{word-spacing:33.117730pt;}
.ws6a{word-spacing:33.613876pt;}
.ws5f{word-spacing:33.985985pt;}
.ws38{word-spacing:34.606399pt;}
.ws67{word-spacing:34.730204pt;}
.ws47{word-spacing:34.854178pt;}
.ws46{word-spacing:34.854240pt;}
.ws48{word-spacing:34.854823pt;}
.ws45{word-spacing:35.722495pt;}
.ws44{word-spacing:35.744443pt;}
.ws4d{word-spacing:35.834368pt;}
.ws3d{word-spacing:35.970568pt;}
.ws5e{word-spacing:36.466714pt;}
.ws40{word-spacing:36.962860pt;}
.ws3f{word-spacing:37.086949pt;}
.ws11{word-spacing:37.604479pt;}
.ws8{word-spacing:37.969663pt;}
.ws95{word-spacing:38.441259pt;}
.ws3e{word-spacing:38.947443pt;}
.ws4e{word-spacing:39.518275pt;}
.ws82{word-spacing:39.565306pt;}
.ws83{word-spacing:39.587729pt;}
.ws36{word-spacing:40.299710pt;}
.ws41{word-spacing:40.559917pt;}
.ws49{word-spacing:40.634610pt;}
.ws88{word-spacing:40.655520pt;}
.ws85{word-spacing:40.795663pt;}
.ws32{word-spacing:41.192778pt;}
.ws31{word-spacing:41.285308pt;}
.ws8a{word-spacing:41.790680pt;}
.ws37{word-spacing:42.085846pt;}
.ws42{word-spacing:42.172390pt;}
.ws43{word-spacing:42.420463pt;}
.ws68{word-spacing:42.792573pt;}
.ws91{word-spacing:43.262182pt;}
.ws75{word-spacing:43.288718pt;}
.ws92{word-spacing:43.346268pt;}
.ws7f{word-spacing:43.825668pt;}
.ws77{word-spacing:43.908901pt;}
.ws14{word-spacing:45.143439pt;}
.ws3b{word-spacing:45.149265pt;}
.ws60{word-spacing:45.273301pt;}
.ws7{word-spacing:45.581835pt;}
.ws33{word-spacing:45.658120pt;}
.ws70{word-spacing:46.265593pt;}
.ws96{word-spacing:46.681675pt;}
.ws8b{word-spacing:46.695689pt;}
.ws3a{word-spacing:46.761739pt;}
.ws15{word-spacing:47.107342pt;}
.ws94{word-spacing:47.844862pt;}
.ws86{word-spacing:48.951993pt;}
.ws87{word-spacing:49.975038pt;}
.ws7e{word-spacing:50.720727pt;}
.ws78{word-spacing:50.978978pt;}
.ws30{word-spacing:51.351431pt;}
.ws16{word-spacing:51.400539pt;}
.ws76{word-spacing:51.723196pt;}
.ws69{word-spacing:52.219342pt;}
.ws9a{word-spacing:52.455571pt;}
.ws90{word-spacing:53.899045pt;}
.ws63{word-spacing:54.203691pt;}
.ws65{word-spacing:54.203925pt;}
.ws64{word-spacing:54.204366pt;}
.ws89{word-spacing:54.557718pt;}
.ws39{word-spacing:55.816399pt;}
.ws80{word-spacing:55.936968pt;}
.ws98{word-spacing:56.701908pt;}
.ws8d{word-spacing:61.326631pt;}
.ws8f{word-spacing:61.705017pt;}
.ws97{word-spacing:62.405733pt;}
.ws8c{word-spacing:68.361816pt;}
.ws66{word-spacing:71.569027pt;}
.ws12{word-spacing:93.839615pt;}
.ws25{word-spacing:148.719694pt;}
.ws26{word-spacing:210.737915pt;}
.ws29{word-spacing:272.756136pt;}
.ws28{word-spacing:285.422692pt;}
.ws23{word-spacing:295.578842pt;}
.wsa{word-spacing:330.240307pt;}
.ws13{word-spacing:330.474409pt;}
.ws53{word-spacing:334.774358pt;}
.wsc{word-spacing:376.285827pt;}
.ws56{word-spacing:396.792579pt;}
.ws27{word-spacing:409.476564pt;}
.ws1f{word-spacing:436.613750pt;}
.ws24{word-spacing:679.223558pt;}
._8{margin-left:-9326.192000pt;}
._2b{margin-left:-1202.577789pt;}
._14{margin-left:-982.692898pt;}
._2d{margin-left:-910.126183pt;}
._2a{margin-left:-867.635518pt;}
._26{margin-left:-608.358124pt;}
._2c{margin-left:-575.274137pt;}
._2f{margin-left:-219.070735pt;}
._18{margin-left:-81.733596pt;}
._3c{margin-left:-60.962259pt;}
._3d{margin-left:-57.618083pt;}
._3b{margin-left:-56.458420pt;}
._4{margin-left:-44.160000pt;}
._3{margin-left:-35.845333pt;}
._d{margin-left:-34.849067pt;}
._34{margin-left:-32.560000pt;}
._42{margin-left:-31.353600pt;}
._c{margin-left:-29.440000pt;}
._3e{margin-left:-26.986667pt;}
._41{margin-left:-24.864000pt;}
._33{margin-left:-23.680000pt;}
._32{margin-left:-20.759000pt;}
._5{margin-left:-18.181333pt;}
._3f{margin-left:-15.762600pt;}
._6{margin-left:-13.321600pt;}
._3a{margin-left:-11.813999pt;}
._7{margin-left:-10.900267pt;}
._21{margin-left:-9.799501pt;}
._0{margin-left:-8.670933pt;}
._f{margin-left:-7.626667pt;}
._2{margin-left:-6.394667pt;}
._b{margin-left:-5.089067pt;}
._e{margin-left:-3.648000pt;}
._1{margin-left:-2.006400pt;}
._1c{margin-left:-0.928990pt;}
._10{width:0.900562pt;}
._12{width:1.801120pt;}
._13{width:2.807568pt;}
._36{width:4.204294pt;}
._2e{width:6.209611pt;}
._1a{width:14.832408pt;}
._1b{width:20.673501pt;}
._17{width:30.110933pt;}
._31{width:33.190490pt;}
._1f{width:35.686827pt;}
._20{width:36.626418pt;}
._22{width:37.976968pt;}
._11{width:39.137190pt;}
._1e{width:41.380138pt;}
._39{width:47.788805pt;}
._37{width:50.213368pt;}
._1d{width:52.431619pt;}
._38{width:55.015781pt;}
._35{width:83.598237pt;}
._24{width:169.703670pt;}
._25{width:176.379821pt;}
._16{width:274.037607pt;}
._40{width:296.863947pt;}
._15{width:302.304502pt;}
._19{width:344.446927pt;}
._28{width:473.017000pt;}
._29{width:544.391373pt;}
._23{width:593.412157pt;}
._30{width:861.929237pt;}
._27{width:889.093218pt;}
._9{width:2705.531200pt;}
._a{width:6828.329600pt;}
.fs13{font-size:70.859374pt;}
.fs21{font-size:74.422363pt;}
.fsf{font-size:85.051697pt;}
.fs20{font-size:86.825261pt;}
.fsa{font-size:88.662485pt;}
.fs1b{font-size:92.444427pt;}
.fs9{font-size:96.000000pt;}
.fs18{font-size:100.254574pt;}
.fs17{font-size:101.120833pt;}
.fs12{font-size:101.228165pt;}
.fs11{font-size:102.102835pt;}
.fs1e{font-size:111.633545pt;}
.fs28{font-size:112.114780pt;}
.fs25{font-size:113.777760pt;}
.fs0{font-size:117.333333pt;}
.fs15{font-size:120.334332pt;}
.fse{font-size:121.502921pt;}
.fs1f{font-size:124.036442pt;}
.fsc{font-size:135.111093pt;}
.fsd{font-size:138.666667pt;}
.fs29{font-size:140.143124pt;}
.fs23{font-size:142.222240pt;}
.fs16{font-size:144.459006pt;}
.fs10{font-size:145.861873pt;}
.fs2a{font-size:149.333333pt;}
.fs19{font-size:160.000000pt;}
.fs1d{font-size:170.666664pt;}
.fs1c{font-size:170.666667pt;}
.fs24{font-size:181.333333pt;}
.fs14{font-size:192.000000pt;}
.fsb{font-size:202.666667pt;}
.fs22{font-size:213.333333pt;}
.fs27{font-size:224.000000pt;}
.fs1a{font-size:234.666667pt;}
.fs4{font-size:245.333333pt;}
.fs2e{font-size:256.000000pt;}
.fs3{font-size:266.666667pt;}
.fs2d{font-size:278.400000pt;}
.fs8{font-size:293.333333pt;}
.fs7{font-size:320.000000pt;}
.fs2c{font-size:348.000000pt;}
.fs2b{font-size:352.000000pt;}
.fs5{font-size:373.333333pt;}
.fs2{font-size:384.000000pt;}
.fs6{font-size:400.000000pt;}
.fs1{font-size:480.000000pt;}
.fs26{font-size:533.333323pt;}
.y104{bottom:-1184.168974pt;}
.y103{bottom:-1031.602647pt;}
.y102{bottom:-989.401879pt;}
.y101{bottom:-947.201111pt;}
.y100{bottom:-905.000343pt;}
.yff{bottom:-862.799575pt;}
.ybf{bottom:-835.374882pt;}
.yfe{bottom:-820.598807pt;}
.yfd{bottom:-778.398039pt;}
.y95{bottom:-773.357283pt;}
.y94{bottom:-739.246826pt;}
.yfc{bottom:-736.197271pt;}
.y93{bottom:-705.136368pt;}
.yfb{bottom:-693.996503pt;}
.y92{bottom:-671.025911pt;}
.yfa{bottom:-651.795735pt;}
.y91{bottom:-636.915453pt;}
.yf9{bottom:-609.594967pt;}
.y90{bottom:-602.804996pt;}
.ybe{bottom:-599.704894pt;}
.y8f{bottom:-568.694539pt;}
.yf8{bottom:-567.394199pt;}
.ybd{bottom:-565.594437pt;}
.y8e{bottom:-534.584081pt;}
.ybc{bottom:-528.383878pt;}
.yf7{bottom:-525.193431pt;}
.y8d{bottom:-500.473624pt;}
.ybb{bottom:-494.273420pt;}
.yf6{bottom:-482.992663pt;}
.y8c{bottom:-466.366279pt;}
.yba{bottom:-457.062861pt;}
.yf5{bottom:-440.791895pt;}
.y8b{bottom:-432.255822pt;}
.yb9{bottom:-419.849190pt;}
.yf4{bottom:-398.591127pt;}
.y8a{bottom:-398.145364pt;}
.yb8{bottom:-385.741845pt;}
.yf3{bottom:-356.390359pt;}
.yb7{bottom:-348.528173pt;}
.yb6{bottom:-314.417716pt;}
.yf2{bottom:-314.189591pt;}
.y89{bottom:-289.563988pt;}
.yb5{bottom:-280.310371pt;}
.y88{bottom:-258.553632pt;}
.yb4{bottom:-243.096699pt;}
.y87{bottom:-227.546389pt;}
.yf1{bottom:-219.596570pt;}
.yb3{bottom:-208.989354pt;}
.y86{bottom:-196.536034pt;}
.yf0{bottom:-186.310714pt;}
.yb2{bottom:-171.775683pt;}
.y85{bottom:-165.528791pt;}
.yef{bottom:-153.028375pt;}
.yb1{bottom:-137.665225pt;}
.y84{bottom:-134.518435pt;}
.y83{bottom:-103.508080pt;}
.yb0{bottom:-100.454666pt;}
.y82{bottom:-72.500837pt;}
.yaf{bottom:-66.344209pt;}
.y81{bottom:-41.490481pt;}
.yae{bottom:-29.133650pt;}
.y0{bottom:0.000000pt;}
.y11c{bottom:2.476667pt;}
.yec{bottom:2.643067pt;}
.y11a{bottom:4.262267pt;}
.y118{bottom:4.714533pt;}
.yad{bottom:4.976808pt;}
.y5e{bottom:11.624800pt;}
.yea{bottom:13.635733pt;}
.y116{bottom:14.191067pt;}
.ye6{bottom:15.361067pt;}
.y5c{bottom:16.639320pt;}
.y60{bottom:16.639467pt;}
.ye4{bottom:16.694400pt;}
.yd5{bottom:21.289733pt;}
.y52{bottom:21.760133pt;}
.y6f{bottom:22.709200pt;}
.yde{bottom:23.210800pt;}
.y8{bottom:23.641827pt;}
.y36{bottom:25.547867pt;}
.y12{bottom:32.413867pt;}
.yc{bottom:37.783973pt;}
.y69{bottom:45.385867pt;}
.y4c{bottom:46.174676pt;}
.y1{bottom:46.478680pt;}
.y25{bottom:48.616242pt;}
.y61{bottom:64.674987pt;}
.y115{bottom:72.285867pt;}
.y6e{bottom:73.589333pt;}
.ye1{bottom:81.687600pt;}
.y4b{bottom:83.147575pt;}
.y70{bottom:84.232787pt;}
.y24{bottom:87.941212pt;}
.y55{bottom:89.561893pt;}
.y5b{bottom:93.897493pt;}
.y111{bottom:95.644000pt;}
.y16{bottom:102.497147pt;}
.y26{bottom:103.826159pt;}
.y106{bottom:106.148800pt;}
.y2d{bottom:115.536147pt;}
.yac{bottom:117.199870pt;}
.yda{bottom:124.834467pt;}
.y68{bottom:130.719200pt;}
.yab{bottom:138.078869pt;}
.y14{bottom:143.456267pt;}
.y2b{bottom:146.284064pt;}
.y110{bottom:156.491733pt;}
.ye0{bottom:157.540667pt;}
.y6a{bottom:161.591200pt;}
.y37{bottom:170.476933pt;}
.y105{bottom:181.509333pt;}
.y50{bottom:182.258653pt;}
.y54{bottom:183.194133pt;}
.y27{bottom:185.151507pt;}
.y6{bottom:185.497600pt;}
.yd9{bottom:190.167867pt;}
.yc5{bottom:190.652400pt;}
.y109{bottom:192.483867pt;}
.yd{bottom:193.190800pt;}
.yaa{bottom:199.063100pt;}
.y4d{bottom:200.980358pt;}
.yed{bottom:229.333333pt;}
.y11b{bottom:234.666667pt;}
.ya9{bottom:235.206054pt;}
.yd0{bottom:245.513200pt;}
.yee{bottom:245.641467pt;}
.y10f{bottom:255.158400pt;}
.yd8{bottom:255.501200pt;}
.y28{bottom:266.477038pt;}
.y6d{bottom:269.301200pt;}
.ya8{bottom:271.345895pt;}
.y5{bottom:273.390800pt;}
.y62{bottom:273.528667pt;}
.y67{bottom:301.385867pt;}
.yd3{bottom:302.041467pt;}
.yc4{bottom:304.374800pt;}
.ya7{bottom:305.456353pt;}
.ycf{bottom:310.846533pt;}
.yf{bottom:323.135333pt;}
.y4e{bottom:323.289962pt;}
.yeb{bottom:330.666667pt;}
.y33{bottom:332.000533pt;}
.y2f{bottom:333.167200pt;}
.ya6{bottom:339.566810pt;}
.y29{bottom:347.802416pt;}
.y13{bottom:349.220133pt;}
.y10e{bottom:353.825067pt;}
.yd7{bottom:355.096533pt;}
.ydf{bottom:364.942400pt;}
.yce{bottom:365.966267pt;}
.y119{bottom:369.333333pt;}
.ya5{bottom:375.579037pt;}
.y66{bottom:386.719200pt;}
.y6b{bottom:393.877333pt;}
.yc3{bottom:395.041467pt;}
.y4f{bottom:399.705786pt;}
.yd6{bottom:403.096533pt;}
.ya4{bottom:409.689494pt;}
.y5a{bottom:415.282400pt;}
.y2a{bottom:429.127794pt;}
.ye9{bottom:430.666667pt;}
.y10{bottom:437.629600pt;}
.y2c{bottom:445.198299pt;}
.ya3{bottom:445.698608pt;}
.ycd{bottom:453.246400pt;}
.yc2{bottom:460.620400pt;}
.y10d{bottom:462.098133pt;}
.y65{bottom:472.052533pt;}
.ya2{bottom:479.809066pt;}
.y59{bottom:484.909333pt;}
.y47{bottom:502.136549pt;}
.y117{bottom:505.333333pt;}
.ycc{bottom:507.299600pt;}
.ya1{bottom:515.821292pt;}
.ye8{bottom:517.333333pt;}
.y4{bottom:517.980933pt;}
.y18{bottom:520.821358pt;}
.y53{bottom:528.744800pt;}
.y10c{bottom:542.098133pt;}
.ya0{bottom:549.931750pt;}
.y58{bottom:556.909333pt;}
.y64{bottom:557.385867pt;}
.y17{bottom:560.146313pt;}
.y19{bottom:576.031214pt;}
.y48{bottom:582.028765pt;}
.ydc{bottom:589.853067pt;}
.ycb{bottom:594.579733pt;}
.y9f{bottom:601.260845pt;}
.ye7{bottom:602.666667pt;}
.y1e{bottom:618.489165pt;}
.y10b{bottom:622.098133pt;}
.y6c{bottom:625.420133pt;}
.y108{bottom:626.181333pt;}
.y57{bottom:628.909333pt;}
.ydb{bottom:640.519733pt;}
.y63{bottom:642.719200pt;}
.y114{bottom:644.000000pt;}
.yca{bottom:648.632933pt;}
.y1a{bottom:657.356592pt;}
.y49{bottom:661.920981pt;}
.y5d{bottom:662.481333pt;}
.y3{bottom:665.980933pt;}
.y9{bottom:684.939867pt;}
.y9e{bottom:686.376692pt;}
.ye5{bottom:689.333333pt;}
.y10a{bottom:699.385733pt;}
.y56{bottom:700.909333pt;}
.ydd{bottom:704.666533pt;}
.y9d{bottom:717.383935pt;}
.yc9{bottom:735.913067pt;}
.y1b{bottom:738.682123pt;}
.y4a{bottom:741.813197pt;}
.ye3{bottom:773.333333pt;}
.yc8{bottom:789.966267pt;}
.y9c{bottom:797.771815pt;}
.y2{bottom:813.980933pt;}
.y31{bottom:815.033867pt;}
.y1c{bottom:820.007501pt;}
.y9b{bottom:828.782171pt;}
.y39{bottom:842.621916pt;}
.y113{bottom:852.738133pt;}
.y9a{bottom:859.789414pt;}
.y80{bottom:863.524476pt;}
.y51{bottom:868.777333pt;}
.ye2{bottom:870.643067pt;}
.y30{bottom:876.367200pt;}
.y2e{bottom:879.962667pt;}
.y38{bottom:881.568803pt;}
.y99{bottom:890.799769pt;}
.y7f{bottom:894.531719pt;}
.yd2{bottom:895.997333pt;}
.y1d{bottom:901.332880pt;}
.y1f{bottom:917.403384pt;}
.y98{bottom:921.807012pt;}
.y7e{bottom:925.542075pt;}
.yc7{bottom:927.913067pt;}
.yc1{bottom:934.473467pt;}
.y46{bottom:935.261960pt;}
.y7{bottom:947.175333pt;}
.y97{bottom:952.817368pt;}
.yd4{bottom:952.883333pt;}
.y11{bottom:954.832533pt;}
.y7d{bottom:956.552430pt;}
.y3a{bottom:960.340133pt;}
.y32{bottom:963.151467pt;}
.y23{bottom:968.359148pt;}
.y45{bottom:970.733059pt;}
.y21{bottom:970.982764pt;}
.y96{bottom:983.827724pt;}
.y35{bottom:987.078267pt;}
.y7c{bottom:987.559673pt;}
.yc6{bottom:993.492000pt;}
.y44{bottom:1007.195449pt;}
.y15{bottom:1007.229333pt;}
.y34{bottom:1009.522400pt;}
.yc0{bottom:1014.671067pt;}
.y22{bottom:1017.876598pt;}
.y20{bottom:1022.063738pt;}
.y7b{bottom:1044.889769pt;}
.y3b{bottom:1046.907819pt;}
.y7a{bottom:1079.000226pt;}
.yd1{bottom:1095.860400pt;}
.y79{bottom:1113.110683pt;}
.yb{bottom:1115.309867pt;}
.y3c{bottom:1133.475505pt;}
.y78{bottom:1147.221141pt;}
.y42{bottom:1172.961161pt;}
.y77{bottom:1181.331598pt;}
.y107{bottom:1182.912933pt;}
.ya{bottom:1211.266933pt;}
.y3d{bottom:1220.043191pt;}
.y76{bottom:1220.798758pt;}
.y112{bottom:1222.735467pt;}
.y75{bottom:1231.496599pt;}
.y74{bottom:1268.763184pt;}
.y3e{bottom:1306.610877pt;}
.y5f{bottom:1333.053867pt;}
.y73{bottom:1353.875918pt;}
.y72{bottom:1384.886274pt;}
.y3f{bottom:1393.178563pt;}
.y71{bottom:1459.307392pt;}
.y40{bottom:1479.746249pt;}
.y43{bottom:1535.175185pt;}
.y41{bottom:1566.314086pt;}
.ye{bottom:1588.694369pt;}
.h40{height:56.000000pt;}
.h3f{height:58.666667pt;}
.h25{height:58.833333pt;}
.h3e{height:60.000000pt;}
.hb{height:62.513979pt;}
.h42{height:64.000000pt;}
.h43{height:65.333333pt;}
.h34{height:68.096462pt;}
.h9{height:70.176000pt;}
.h39{height:71.299867pt;}
.h22{height:73.173360pt;}
.h1f{height:75.992967pt;}
.h16{height:76.730949pt;}
.h3a{height:77.429360pt;}
.h19{height:85.293173pt;}
.h5{height:85.770667pt;}
.h1{height:86.453125pt;}
.h45{height:86.552610pt;}
.h14{height:89.879726pt;}
.h1b{height:90.250749pt;}
.h12{height:91.127190pt;}
.h1e{height:91.213424pt;}
.h15{height:92.099214pt;}
.h1d{height:93.259107pt;}
.hd{height:96.799840pt;}
.he{height:101.365333pt;}
.h2d{height:102.144694pt;}
.h26{height:102.171875pt;}
.h10{height:107.881012pt;}
.h17{height:107.881134pt;}
.h33{height:108.621889pt;}
.h47{height:109.162667pt;}
.h1c{height:109.499926pt;}
.h20{height:109.792344pt;}
.h13{height:110.007305pt;}
.h11{height:110.563300pt;}
.h2e{height:113.493345pt;}
.h23{height:116.960000pt;}
.h32{height:124.465066pt;}
.h31{height:124.477516pt;}
.h2a{height:124.757331pt;}
.h29{height:124.757333pt;}
.h46{height:126.128811pt;}
.h2b{height:127.807947pt;}
.h2f{height:128.312180pt;}
.h21{height:130.791656pt;}
.h38{height:132.554667pt;}
.h4c{height:133.333333pt;}
.h18{height:140.352000pt;}
.h27{height:143.561600pt;}
.hc{height:148.149333pt;}
.h35{height:152.320000pt;}
.h36{height:155.946667pt;}
.h30{height:156.284710pt;}
.h41{height:163.744000pt;}
.h24{height:171.541333pt;}
.h4{height:180.765625pt;}
.h4d{height:187.136000pt;}
.h3{height:193.098958pt;}
.h8{height:214.426667pt;}
.h37{height:231.040000pt;}
.h49{height:254.144000pt;}
.h4a{height:254.388000pt;}
.h6{height:272.906667pt;}
.h4b{height:277.248000pt;}
.h3d{height:288.800000pt;}
.h7{height:292.400000pt;}
.h2{height:350.880000pt;}
.h3c{height:383.999993pt;}
.h28{height:731.593733pt;}
.h44{height:738.066267pt;}
.h2c{height:817.658800pt;}
.h1a{height:820.309733pt;}
.h3b{height:830.159200pt;}
.h48{height:859.614000pt;}
.ha{height:892.953067pt;}
.hf{height:1098.066400pt;}
.h0{height:1440.000000pt;}
.wa{width:62.602133pt;}
.w8{width:140.733333pt;}
.w7{width:165.933333pt;}
.w9{width:177.705200pt;}
.wb{width:227.774400pt;}
.w2{width:252.214533pt;}
.w11{width:301.123600pt;}
.w10{width:323.708533pt;}
.wd{width:401.628000pt;}
.w5{width:472.909200pt;}
.w4{width:492.493200pt;}
.w16{width:633.333333pt;}
.w14{width:701.333333pt;}
.we{width:809.462800pt;}
.w15{width:894.666667pt;}
.w13{width:926.666667pt;}
.wf{width:954.762267pt;}
.w17{width:965.333333pt;}
.w19{width:1030.666667pt;}
.w1b{width:1044.382000pt;}
.w18{width:1068.000000pt;}
.wc{width:1139.340400pt;}
.w1{width:1142.423333pt;}
.w1a{width:1369.973333pt;}
.w6{width:1631.257333pt;}
.w3{width:1647.100000pt;}
.w1d{width:1661.333333pt;}
.w1f{width:1684.000000pt;}
.w1c{width:2100.000000pt;}
.w1e{width:2146.666667pt;}
.w12{width:2472.858827pt;}
.w0{width:2560.000000pt;}
.xe{left:-172.965331pt;}
.x76{left:-12.015333pt;}
.x77{left:-5.348627pt;}
.x75{left:-1.348667pt;}
.x0{left:0.000000pt;}
.x3b{left:12.586667pt;}
.x28{left:14.645333pt;}
.x11{left:16.183333pt;}
.x52{left:18.244000pt;}
.x53{left:21.413173pt;}
.x80{left:28.104427pt;}
.x5e{left:39.053333pt;}
.x45{left:42.200800pt;}
.x39{left:45.710022pt;}
.x5c{left:48.352000pt;}
.x48{left:50.441173pt;}
.x7f{left:52.002387pt;}
.x57{left:58.466718pt;}
.x19{left:66.846658pt;}
.x71{left:69.523840pt;}
.x41{left:78.039640pt;}
.x73{left:80.579893pt;}
.x18{left:82.032869pt;}
.x2f{left:83.624640pt;}
.x72{left:86.574960pt;}
.x1{left:91.613333pt;}
.x36{left:94.469484pt;}
.x24{left:96.524080pt;}
.x2d{left:98.664808pt;}
.x79{left:100.378091pt;}
.x5f{left:102.892000pt;}
.x16{left:104.358446pt;}
.x81{left:110.816013pt;}
.x62{left:119.913347pt;}
.x2e{left:122.063209pt;}
.xb{left:132.000000pt;}
.x63{left:135.753333pt;}
.x13{left:136.844133pt;}
.x25{left:138.389467pt;}
.x1a{left:141.838040pt;}
.x74{left:146.666667pt;}
.x40{left:148.146267pt;}
.x49{left:168.038160pt;}
.x14{left:172.041467pt;}
.x30{left:181.273536pt;}
.x5d{left:184.840000pt;}
.x60{left:185.894533pt;}
.x42{left:189.916933pt;}
.x12{left:193.389467pt;}
.x22{left:195.541467pt;}
.x5b{left:196.485733pt;}
.x3{left:198.284000pt;}
.x82{left:199.735200pt;}
.x3f{left:202.882267pt;}
.x37{left:204.447217pt;}
.x61{left:220.577200pt;}
.x32{left:256.208994pt;}
.x4d{left:258.502160pt;}
.x55{left:274.714381pt;}
.x1c{left:276.885638pt;}
.xa{left:280.026667pt;}
.x23{left:301.890800pt;}
.x4c{left:308.456827pt;}
.x1b{left:309.459773pt;}
.x31{left:360.229931pt;}
.x64{left:379.533467pt;}
.x4b{left:385.574160pt;}
.x33{left:389.236114pt;}
.x4a{left:390.150160pt;}
.x67{left:392.592267pt;}
.x66{left:407.768533pt;}
.x6{left:451.655600pt;}
.x26{left:512.535333pt;}
.x2{left:532.544000pt;}
.x34{left:534.533918pt;}
.x56{left:612.071442pt;}
.x35{left:679.831723pt;}
.x7a{left:681.978305pt;}
.x54{left:696.546103pt;}
.x65{left:744.893733pt;}
.x4{left:752.612000pt;}
.x17{left:768.008270pt;}
.x38{left:792.444707pt;}
.x3e{left:824.482667pt;}
.x2c{left:830.485944pt;}
.x2a{left:839.770800pt;}
.x58{left:841.314009pt;}
.x3d{left:852.444933pt;}
.x5a{left:887.827987pt;}
.x59{left:888.898704pt;}
.x15{left:902.028133pt;}
.x1f{left:923.002667pt;}
.x10{left:996.524133pt;}
.x5{left:998.522133pt;}
.x3c{left:1012.755333pt;}
.x3a{left:1013.988667pt;}
.x1e{left:1022.069228pt;}
.x21{left:1080.824000pt;}
.x4e{left:1084.554000pt;}
.x1d{left:1142.143534pt;}
.x78{left:1190.026267pt;}
.x4f{left:1249.744267pt;}
.x44{left:1252.947600pt;}
.x50{left:1266.000000pt;}
.xc{left:1272.672000pt;}
.x20{left:1277.274533pt;}
.xd{left:1373.921333pt;}
.x47{left:1385.978667pt;}
.x51{left:1408.044000pt;}
.x2b{left:1412.983225pt;}
.x70{left:1469.829333pt;}
.x27{left:1501.784000pt;}
.xf{left:1506.909333pt;}
.x7c{left:1598.064000pt;}
.x7e{left:1740.093333pt;}
.x7d{left:1741.221333pt;}
.x46{left:1787.580000pt;}
.x6f{left:1788.673333pt;}
.x43{left:1812.614667pt;}
.x6e{left:1880.726667pt;}
.x6d{left:1882.305333pt;}
.x8{left:1979.686667pt;}
.x29{left:2018.625333pt;}
.x7b{left:2050.700000pt;}
.x7{left:2076.061333pt;}
.x69{left:2284.458667pt;}
.x68{left:2296.698667pt;}
.x9{left:2302.542667pt;}
.x6b{left:2312.125333pt;}
.x6a{left:2316.682667pt;}
.x6c{left:2349.618667pt;}
}




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