
    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_d5c084be5d7461d20d527799.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.087000;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_5588773170b618fbf157eabc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.173340;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_55b0810edf05322f48c331b9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112000;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_efe14de5778c7c1751f01ef5.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b37e71520b9d4ca54a67767e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.133301;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_37c5ed4438049e50c2c88e5a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.955127;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_21dd9c33a4aff3729865e68d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.076660;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_7de64e41605dd7085f34a832.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_effc2923b86659106aa05c37.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.071777;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_b3b6718100015b5373ed7098.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.112000;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_ce14c2476a8d02bde2d425be.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.173340;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_5312a56ff91a33ed7fb7f1c0.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.083000;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_d69063f7d4f2ce1f3e43efb1.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.112000;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_0cf1a19a3eb80ab1a03e3668.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.112000;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_826d4c7f56b8b4d4b9987292.woff2')format("woff");}.fff{font-family:fff;line-height:1.173340;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_b196b991db018353f1daee16.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.083000;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_5312a56ff91a33ed7fb7f1c0.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.083000;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_296559a0b4b3274c710b0dcd.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.112000;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_a7b72d46f0e697d590192f8b.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.112000;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_f0cd02614cb0ddf4c74c986e.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.083000;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_724231cf4920d873b4132235.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.173340;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_ca528dd09e999ca67801b74c.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.026855;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_8a4e762099c9d535c90e7968.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.083000;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_f6f48d7e9d739fc0ef59fc5b.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.112000;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_a352f8253022d179fe56f9c9.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.112000;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_576a64e2bf69182540acc5a0.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.173340;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_5312a56ff91a33ed7fb7f1c0.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.083000;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_c2b384fc19ba74292fd2ab8e.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.112000;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_04f3397e82ec8d284abe8cca.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.112000;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_b196b991db018353f1daee16.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.083000;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_3006d6c75d7cf4b46dca0745.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.087000;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_9a075c0800009beabf25849e.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.173340;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_5312a56ff91a33ed7fb7f1c0.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.083000;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_fa81bb5ae384319d76cc8a96.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.112000;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_ea27a9e94faa6d4b87479850.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.112000;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_7e904b8cdd2c9bb1a701c547.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.083000;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_5312a56ff91a33ed7fb7f1c0.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.083000;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_67f5f399ad3d2d59ff7629d8.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.112000;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_a67e2b8dbc91d512c3f02677.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.112000;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_5924375233814b28660c23c4.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.173340;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_5312a56ff91a33ed7fb7f1c0.woff2')format("woff");}.ff29{font-family:ff29;line-height:1.083000;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_95f8f0af2f14c3c53893e1c4.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:1.112000;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_bbe255c6a65dc5a84fd1d387.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:1.173340;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_82d9266455734182b3d7edc6.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.930664;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:ff2d;src:url('chunks/assets/font_514f8ee7411440debd3770a7.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:1.112000;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:ff2e;src:url('chunks/assets/font_a4e0e8d4cffd46393a0367f4.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:1.083000;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:ff2f;src:url('chunks/assets/font_5312a56ff91a33ed7fb7f1c0.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:1.083000;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:ff30;src:url('chunks/assets/font_e1f4603243251686226fa0aa.woff2')format("woff");}.ff30{font-family:ff30;line-height:1.112000;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:ff31;src:url('chunks/assets/font_9c0d1851a5900aa8fdb17d9d.woff2')format("woff");}.ff31{font-family:ff31;line-height:1.173340;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:ff32;src:url('chunks/assets/font_c3b24625b6c409615f910ad4.woff2')format("woff");}.ff32{font-family:ff32;line-height:1.112000;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:ff33;src:url('chunks/assets/font_f0cd02614cb0ddf4c74c986e.woff2')format("woff");}.ff33{font-family:ff33;line-height:1.083000;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:ff34;src:url('chunks/assets/font_5312a56ff91a33ed7fb7f1c0.woff2')format("woff");}.ff34{font-family:ff34;line-height:1.083000;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:ff35;src:url('chunks/assets/font_296559a0b4b3274c710b0dcd.woff2')format("woff");}.ff35{font-family:ff35;line-height:1.112000;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:ff36;src:url('chunks/assets/font_c79bb82b233bef9472778be8.woff2')format("woff");}.ff36{font-family:ff36;line-height:1.112000;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:ff37;src:url('chunks/assets/font_fa5997497911fb6175ad7705.woff2')format("woff");}.ff37{font-family:ff37;line-height:1.173340;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:ff38;src:url('chunks/assets/font_82d9266455734182b3d7edc6.woff2')format("woff");}.ff38{font-family:ff38;line-height:0.930664;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:ff39;src:url('chunks/assets/font_713a3c5a383e3df71ebc3beb.woff2')format("woff");}.ff39{font-family:ff39;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:ff3a;src:url('chunks/assets/font_f0cd02614cb0ddf4c74c986e.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:1.083000;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:ff3b;src:url('chunks/assets/font_94420803700a58600e794656.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:1.083000;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:ff3c;src:url('chunks/assets/font_33b9d61bf0c2f48cba519e47.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:1.112000;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:ff3d;src:url('chunks/assets/font_908814b1d5b7e5821eb0fc10.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:1.112000;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:ff3e;src:url('chunks/assets/font_ba73b444fddd9a3baff8b02f.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:1.083000;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:ff3f;src:url('chunks/assets/font_8a4e762099c9d535c90e7968.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:1.083000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff40;src:url('chunks/assets/font_f12ff35d94508489e08b4fb6.woff2')format("woff");}.ff40{font-family:ff40;line-height:1.112000;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.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.978000px;}
.ls23{letter-spacing:-4.536000px;}
.ls26{letter-spacing:-3.348000px;}
.ls22{letter-spacing:-2.214000px;}
.ls18{letter-spacing:-1.980000px;}
.ls4{letter-spacing:-1.782000px;}
.ls17{letter-spacing:-1.728000px;}
.ls13{letter-spacing:-1.320000px;}
.lsc{letter-spacing:-1.254000px;}
.ls12{letter-spacing:-1.242000px;}
.ls14{letter-spacing:-1.122000px;}
.lsf{letter-spacing:-1.056000px;}
.ls27{letter-spacing:-1.026000px;}
.ls1a{letter-spacing:-0.864000px;}
.ls5{letter-spacing:-0.858000px;}
.ls21{letter-spacing:-0.810000px;}
.ls1d{letter-spacing:-0.756000px;}
.lse{letter-spacing:-0.702000px;}
.ls7{letter-spacing:-0.660000px;}
.ls1c{letter-spacing:-0.648000px;}
.ls6{letter-spacing:-0.594000px;}
.ls1b{letter-spacing:-0.540000px;}
.lsd{letter-spacing:-0.528000px;}
.ls3{letter-spacing:-0.510000px;}
.ls1e{letter-spacing:-0.486000px;}
.lsb{letter-spacing:-0.462000px;}
.ls15{letter-spacing:-0.384780px;}
.ls16{letter-spacing:-0.378000px;}
.ls8{letter-spacing:-0.264000px;}
.ls24{letter-spacing:-0.216000px;}
.ls1{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.000240px;}
.ls9{letter-spacing:0.000360px;}
.ls25{letter-spacing:0.270000px;}
.ls19{letter-spacing:0.330000px;}
.ls0{letter-spacing:0.510000px;}
.ls1f{letter-spacing:0.540000px;}
.ls11{letter-spacing:0.660000px;}
.ls20{letter-spacing:2.592000px;}
.ls10{letter-spacing:6.912000px;}
.ls2{letter-spacing:7.680000px;}
.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;}
}
.wsa8{word-spacing:-15.642000px;}
.wsf8{word-spacing:-15.312000px;}
.wsc3{word-spacing:-15.114000px;}
.ws9a{word-spacing:-14.850000px;}
.ws55{word-spacing:-14.652000px;}
.ws6e{word-spacing:-14.586000px;}
.ws56{word-spacing:-14.454000px;}
.ws3f{word-spacing:-14.256000px;}
.ws9b{word-spacing:-14.058000px;}
.ws6d{word-spacing:-13.860000px;}
.ws28{word-spacing:-13.200000px;}
.wseb{word-spacing:-13.134000px;}
.ws116{word-spacing:-12.366000px;}
.ws103{word-spacing:-12.258000px;}
.ws115{word-spacing:-11.826000px;}
.ws105{word-spacing:-11.610000px;}
.ws102{word-spacing:-11.556000px;}
.wsf9{word-spacing:-11.502000px;}
.ws12a{word-spacing:-11.340000px;}
.wsa7{word-spacing:-11.124000px;}
.ws104{word-spacing:-10.638000px;}
.ws114{word-spacing:-10.044000px;}
.ws118{word-spacing:-9.018000px;}
.wsb{word-spacing:-8.734506px;}
.wsb2{word-spacing:-8.349726px;}
.ws117{word-spacing:-7.830000px;}
.ws6{word-spacing:-7.680000px;}
.wsc{word-spacing:-7.146414px;}
.wsd0{word-spacing:-3.234000px;}
.wsd1{word-spacing:-3.168000px;}
.ws5c{word-spacing:-2.970000px;}
.wscb{word-spacing:-2.904000px;}
.ws9d{word-spacing:-2.838000px;}
.wsb4{word-spacing:-2.772000px;}
.ws47{word-spacing:-2.706000px;}
.ws4b{word-spacing:-2.640000px;}
.ws2f{word-spacing:-2.574000px;}
.wsda{word-spacing:-2.508000px;}
.ws49{word-spacing:-2.442000px;}
.ws61{word-spacing:-2.376000px;}
.wsbf{word-spacing:-2.322000px;}
.ws44{word-spacing:-2.310000px;}
.wsa5{word-spacing:-2.244000px;}
.ws79{word-spacing:-2.178000px;}
.ws29{word-spacing:-2.112000px;}
.ws39{word-spacing:-2.046000px;}
.ws123{word-spacing:-1.998000px;}
.ws6f{word-spacing:-1.980000px;}
.wse4{word-spacing:-1.914000px;}
.ws9e{word-spacing:-1.848000px;}
.ws130{word-spacing:-1.836000px;}
.wsb9{word-spacing:-1.782000px;}
.ws126{word-spacing:-1.728000px;}
.ws2c{word-spacing:-1.716000px;}
.wsbd{word-spacing:-1.674000px;}
.ws7c{word-spacing:-1.650000px;}
.ws131{word-spacing:-1.620000px;}
.ws45{word-spacing:-1.584000px;}
.ws12b{word-spacing:-1.566000px;}
.ws7f{word-spacing:-1.518000px;}
.wsdb{word-spacing:-1.452000px;}
.wse1{word-spacing:-1.404000px;}
.wscc{word-spacing:-1.386000px;}
.ws65{word-spacing:-1.320000px;}
.ws4c{word-spacing:-1.254000px;}
.ws110{word-spacing:-1.242000px;}
.ws7d{word-spacing:-1.188000px;}
.wsfe{word-spacing:-1.134000px;}
.ws50{word-spacing:-1.122000px;}
.wsdf{word-spacing:-1.080000px;}
.ws58{word-spacing:-1.056000px;}
.ws10f{word-spacing:-1.026000px;}
.ws1{word-spacing:-0.990000px;}
.wsbe{word-spacing:-0.972000px;}
.ws8a{word-spacing:-0.924000px;}
.ws128{word-spacing:-0.864000px;}
.wse{word-spacing:-0.858000px;}
.ws41{word-spacing:-0.792000px;}
.ws63{word-spacing:-0.726000px;}
.wsbc{word-spacing:-0.702000px;}
.ws27{word-spacing:-0.594000px;}
.ws2a{word-spacing:-0.528000px;}
.wsa{word-spacing:-0.510000px;}
.ws122{word-spacing:-0.486000px;}
.wsca{word-spacing:-0.462000px;}
.wsfa{word-spacing:-0.432000px;}
.ws70{word-spacing:-0.396000px;}
.wsf4{word-spacing:-0.330000px;}
.wsc8{word-spacing:-0.324000px;}
.ws5a{word-spacing:-0.270000px;}
.wsb1{word-spacing:-0.264000px;}
.ws132{word-spacing:-0.216000px;}
.ws4{word-spacing:-0.198000px;}
.ws8c{word-spacing:-0.132000px;}
.wsad{word-spacing:-0.108000px;}
.ws7a{word-spacing:-0.066000px;}
.ws0{word-spacing:0.000000px;}
.ws6b{word-spacing:0.054000px;}
.wscd{word-spacing:0.066000px;}
.ws92{word-spacing:0.132000px;}
.ws119{word-spacing:0.162000px;}
.ws3c{word-spacing:0.198000px;}
.wse3{word-spacing:0.216000px;}
.ws60{word-spacing:0.264000px;}
.ws12c{word-spacing:0.270000px;}
.wsc2{word-spacing:0.324000px;}
.ws23{word-spacing:0.330000px;}
.wse2{word-spacing:0.378000px;}
.ws20{word-spacing:0.396000px;}
.ws21{word-spacing:0.462000px;}
.ws113{word-spacing:0.486000px;}
.ws8{word-spacing:0.510000px;}
.ws5d{word-spacing:0.528000px;}
.ws10c{word-spacing:0.540000px;}
.ws40{word-spacing:0.594000px;}
.wse8{word-spacing:0.648000px;}
.ws3a{word-spacing:0.660000px;}
.wsfb{word-spacing:0.702000px;}
.ws90{word-spacing:0.726000px;}
.ws4f{word-spacing:0.792000px;}
.ws10{word-spacing:0.858000px;}
.ws11b{word-spacing:0.918000px;}
.ws1a{word-spacing:0.924000px;}
.wsec{word-spacing:0.972000px;}
.ws34{word-spacing:0.990000px;}
.wsd9{word-spacing:1.026000px;}
.ws86{word-spacing:1.056000px;}
.ws10b{word-spacing:1.080000px;}
.ws18{word-spacing:1.122000px;}
.ws75{word-spacing:1.188000px;}
.ws2e{word-spacing:1.254000px;}
.ws5b{word-spacing:1.296000px;}
.ws2b{word-spacing:1.320000px;}
.wsd{word-spacing:1.386000px;}
.ws112{word-spacing:1.404000px;}
.wsb5{word-spacing:1.452000px;}
.ws10e{word-spacing:1.512000px;}
.ws5{word-spacing:1.518000px;}
.wsce{word-spacing:1.584000px;}
.ws38{word-spacing:1.650000px;}
.wsf6{word-spacing:1.674000px;}
.ws22{word-spacing:1.716000px;}
.wsac{word-spacing:1.728000px;}
.ws94{word-spacing:1.782000px;}
.wsdd{word-spacing:1.848000px;}
.ws11c{word-spacing:1.890000px;}
.ws26{word-spacing:1.914000px;}
.wsab{word-spacing:1.944000px;}
.ws36{word-spacing:1.980000px;}
.ws1f{word-spacing:2.046000px;}
.wse0{word-spacing:2.106000px;}
.ws62{word-spacing:2.112000px;}
.wsd5{word-spacing:2.178000px;}
.wsae{word-spacing:2.244000px;}
.ws1e{word-spacing:2.310000px;}
.ws10d{word-spacing:2.322000px;}
.ws4d{word-spacing:2.376000px;}
.wsa3{word-spacing:2.442000px;}
.ws12e{word-spacing:2.484000px;}
.ws64{word-spacing:2.508000px;}
.ws12f{word-spacing:2.538000px;}
.ws5f{word-spacing:2.574000px;}
.ws129{word-spacing:2.592000px;}
.wsa1{word-spacing:2.640000px;}
.wse7{word-spacing:2.646000px;}
.ws96{word-spacing:2.706000px;}
.ws8d{word-spacing:2.754000px;}
.wsc9{word-spacing:2.772000px;}
.ws54{word-spacing:2.808000px;}
.ws53{word-spacing:2.838000px;}
.wsb3{word-spacing:2.904000px;}
.ws6a{word-spacing:2.970000px;}
.wsde{word-spacing:3.024000px;}
.ws46{word-spacing:3.036000px;}
.ws4a{word-spacing:3.102000px;}
.wsf2{word-spacing:3.168000px;}
.ws12d{word-spacing:3.186000px;}
.ws91{word-spacing:3.234000px;}
.wsff{word-spacing:3.240000px;}
.wsbb{word-spacing:3.294000px;}
.ws35{word-spacing:3.300000px;}
.ws3d{word-spacing:3.348000px;}
.ws76{word-spacing:3.366000px;}
.ws11a{word-spacing:3.402000px;}
.ws84{word-spacing:3.432000px;}
.ws125{word-spacing:3.456000px;}
.ws42{word-spacing:3.498000px;}
.ws8e{word-spacing:3.510000px;}
.ws19{word-spacing:3.564000px;}
.ws11f{word-spacing:3.618000px;}
.ws89{word-spacing:3.630000px;}
.wsea{word-spacing:3.672000px;}
.wsd3{word-spacing:3.696000px;}
.wsc1{word-spacing:3.726000px;}
.wsdc{word-spacing:3.762000px;}
.wsc5{word-spacing:3.828000px;}
.ws11d{word-spacing:3.888000px;}
.ws59{word-spacing:3.894000px;}
.ws11e{word-spacing:3.942000px;}
.ws67{word-spacing:3.960000px;}
.ws95{word-spacing:4.026000px;}
.ws1c{word-spacing:4.092000px;}
.wsc7{word-spacing:4.104000px;}
.ws3b{word-spacing:4.158000px;}
.ws48{word-spacing:4.224000px;}
.ws127{word-spacing:4.266000px;}
.ws3{word-spacing:4.290000px;}
.wsb6{word-spacing:4.356000px;}
.ws15{word-spacing:4.422000px;}
.ws108{word-spacing:4.428000px;}
.ws7{word-spacing:4.437000px;}
.wsc0{word-spacing:4.482000px;}
.ws83{word-spacing:4.488000px;}
.wsa6{word-spacing:4.590000px;}
.ws37{word-spacing:4.620000px;}
.ws97{word-spacing:4.686000px;}
.wsed{word-spacing:4.698000px;}
.ws43{word-spacing:4.752000px;}
.wsf5{word-spacing:4.818000px;}
.ws77{word-spacing:4.884000px;}
.wsd8{word-spacing:4.914000px;}
.ws8b{word-spacing:4.950000px;}
.ws3e{word-spacing:4.968000px;}
.ws51{word-spacing:5.016000px;}
.ws124{word-spacing:5.022000px;}
.wse5{word-spacing:5.076000px;}
.ws2d{word-spacing:5.082000px;}
.ws32{word-spacing:5.148000px;}
.ws14{word-spacing:5.214000px;}
.wsa2{word-spacing:5.280000px;}
.ws2{word-spacing:5.346000px;}
.ws111{word-spacing:5.400000px;}
.ws57{word-spacing:5.412000px;}
.wse9{word-spacing:5.454000px;}
.ws5e{word-spacing:5.478000px;}
.wse6{word-spacing:5.508000px;}
.ws1d{word-spacing:5.544000px;}
.ws7e{word-spacing:5.610000px;}
.ws8f{word-spacing:5.676000px;}
.ws30{word-spacing:5.742000px;}
.ws4e{word-spacing:5.874000px;}
.ws24{word-spacing:5.940000px;}
.ws85{word-spacing:6.006000px;}
.ws6c{word-spacing:6.048000px;}
.wsf{word-spacing:6.072000px;}
.ws16{word-spacing:6.138000px;}
.ws25{word-spacing:6.204000px;}
.wsf7{word-spacing:6.270000px;}
.ws13{word-spacing:6.336000px;}
.ws73{word-spacing:6.402000px;}
.ws31{word-spacing:6.468000px;}
.wsf0{word-spacing:6.534000px;}
.wsc6{word-spacing:6.600000px;}
.ws93{word-spacing:6.666000px;}
.wsfc{word-spacing:6.696000px;}
.wsee{word-spacing:6.732000px;}
.wsfd{word-spacing:6.750000px;}
.ws12{word-spacing:6.798000px;}
.ws17{word-spacing:6.864000px;}
.wsa9{word-spacing:6.912000px;}
.ws98{word-spacing:6.930000px;}
.wsaa{word-spacing:6.966000px;}
.wsb7{word-spacing:6.996000px;}
.wsa0{word-spacing:7.062000px;}
.wsd4{word-spacing:7.128000px;}
.ws9c{word-spacing:7.194000px;}
.ws106{word-spacing:7.236000px;}
.ws74{word-spacing:7.260000px;}
.ws107{word-spacing:7.290000px;}
.wsf1{word-spacing:7.326000px;}
.wsd6{word-spacing:7.392000px;}
.ws82{word-spacing:7.458000px;}
.ws9f{word-spacing:7.524000px;}
.ws11{word-spacing:7.656000px;}
.ws66{word-spacing:7.722000px;}
.ws78{word-spacing:7.788000px;}
.ws1b{word-spacing:7.854000px;}
.ws52{word-spacing:7.920000px;}
.wsc4{word-spacing:7.986000px;}
.ws100{word-spacing:8.046000px;}
.ws72{word-spacing:8.052000px;}
.ws101{word-spacing:8.100000px;}
.wsa4{word-spacing:8.118000px;}
.ws71{word-spacing:8.184000px;}
.wsf3{word-spacing:8.316000px;}
.ws7b{word-spacing:8.514000px;}
.ws109{word-spacing:8.532000px;}
.wsba{word-spacing:8.594586px;}
.ws10a{word-spacing:8.640000px;}
.ws33{word-spacing:8.646000px;}
.wsaf{word-spacing:8.712000px;}
.wsb0{word-spacing:9.042000px;}
.wsef{word-spacing:9.174000px;}
.ws80{word-spacing:9.240000px;}
.ws99{word-spacing:9.570000px;}
.wsd2{word-spacing:9.900000px;}
.ws81{word-spacing:9.966000px;}
.ws9{word-spacing:10.506000px;}
.wscf{word-spacing:10.626000px;}
.ws87{word-spacing:10.758000px;}
.ws88{word-spacing:10.890000px;}
.ws68{word-spacing:12.366000px;}
.ws69{word-spacing:12.474000px;}
.wsb8{word-spacing:13.002000px;}
.wsd7{word-spacing:15.378000px;}
.ws120{word-spacing:21.708000px;}
.ws121{word-spacing:21.924000px;}
._b{margin-left:-2143.534800px;}
._14{margin-left:-16.182000px;}
._d{margin-left:-11.388600px;}
._0{margin-left:-10.368000px;}
._13{margin-left:-8.983200px;}
._11{margin-left:-7.356600px;}
._e{margin-left:-6.287400px;}
._c{margin-left:-4.472400px;}
._3{margin-left:-2.700000px;}
._1{margin-left:-1.296000px;}
._2{width:1.177200px;}
._4{width:2.419200px;}
._5{width:3.947400px;}
._a{width:4.972500px;}
._9{width:6.176100px;}
._7{width:7.389900px;}
._8{width:8.506800px;}
._6{width:9.996000px;}
._12{width:11.393640px;}
._f{width:14.741640px;}
._15{width:22.701600px;}
._10{width:477.461400px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:31.482000px;}
.fs6{font-size:38.478000px;}
.fs3{font-size:48.000000px;}
.fs5{font-size:51.000000px;}
.fs4{font-size:54.000000px;}
.fs2{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1af{bottom:123.030900px;}
.y6f{bottom:123.310200px;}
.y56{bottom:123.313200px;}
.yd5{bottom:123.316200px;}
.yd1{bottom:123.322050px;}
.y11a{bottom:123.322200px;}
.y139{bottom:124.635750px;}
.y13c{bottom:125.535750px;}
.yd8{bottom:125.535900px;}
.y9{bottom:125.738400px;}
.y92{bottom:125.835900px;}
.y159{bottom:126.180900px;}
.y46{bottom:127.802700px;}
.yfb{bottom:127.866750px;}
.yc4{bottom:128.916900px;}
.y183{bottom:129.564750px;}
.yb2{bottom:130.335900px;}
.y55{bottom:139.810200px;}
.yd4{bottom:139.813200px;}
.yd0{bottom:139.819050px;}
.y119{bottom:139.819200px;}
.y1ae{bottom:141.174900px;}
.y158{bottom:144.176400px;}
.y6e{bottom:144.302700px;}
.y138{bottom:146.085750px;}
.y13b{bottom:146.985750px;}
.yd7{bottom:146.985900px;}
.y8{bottom:147.188400px;}
.y91{bottom:147.285900px;}
.y182{bottom:147.560250px;}
.yfa{bottom:149.316750px;}
.yc3{bottom:150.366900px;}
.yb1{bottom:151.785900px;}
.yd3{bottom:156.310200px;}
.y8f{bottom:156.313350px;}
.ycf{bottom:156.316050px;}
.y118{bottom:156.316200px;}
.y1ad{bottom:159.318900px;}
.y54{bottom:160.802700px;}
.y157{bottom:162.171900px;}
.y181{bottom:165.555750px;}
.y137{bottom:167.535750px;}
.y13a{bottom:168.435750px;}
.yd6{bottom:168.435900px;}
.y7{bottom:168.638400px;}
.y45{bottom:168.735900px;}
.yf9{bottom:170.766750px;}
.yc2{bottom:171.816900px;}
.yd2{bottom:172.807200px;}
.y8e{bottom:172.810350px;}
.yce{bottom:172.813050px;}
.y117{bottom:172.813200px;}
.yb0{bottom:173.235900px;}
.y1ac{bottom:177.462900px;}
.y156{bottom:180.167400px;}
.y180{bottom:183.551250px;}
.y136{bottom:188.985750px;}
.ycd{bottom:189.310050px;}
.y116{bottom:189.310200px;}
.yae{bottom:189.885750px;}
.y53{bottom:189.885900px;}
.y6{bottom:190.088400px;}
.y44{bottom:190.185900px;}
.yf8{bottom:192.216750px;}
.yc1{bottom:193.266900px;}
.y8d{bottom:193.802850px;}
.y1ab{bottom:195.606900px;}
.y155{bottom:198.162900px;}
.y17f{bottom:201.546750px;}
.y8c{bottom:205.810500px;}
.ycc{bottom:210.302550px;}
.y115{bottom:210.302700px;}
.y135{bottom:210.435750px;}
.yad{bottom:211.335750px;}
.y52{bottom:211.335900px;}
.y5{bottom:211.538400px;}
.y43{bottom:211.635900px;}
.yf7{bottom:213.666750px;}
.y1aa{bottom:213.750900px;}
.yc0{bottom:214.716900px;}
.yaf{bottom:215.685900px;}
.y154{bottom:216.158400px;}
.y17e{bottom:219.542250px;}
.ycb{bottom:222.310050px;}
.y8b{bottom:226.803000px;}
.y134{bottom:231.885750px;}
.y1a9{bottom:231.894900px;}
.yac{bottom:232.785750px;}
.y51{bottom:232.785900px;}
.y42{bottom:233.085900px;}
.y153{bottom:234.153900px;}
.yf6{bottom:235.116750px;}
.y17d{bottom:237.537750px;}
.yca{bottom:243.302550px;}
.y1a8{bottom:250.038900px;}
.y152{bottom:252.149400px;}
.y133{bottom:253.335750px;}
.yab{bottom:254.235750px;}
.y50{bottom:254.235900px;}
.y41{bottom:254.535900px;}
.yc9{bottom:255.313200px;}
.y4{bottom:255.488400px;}
.y17c{bottom:255.533250px;}
.yf5{bottom:256.566750px;}
.y114{bottom:256.935900px;}
.ybf{bottom:263.166900px;}
.y8a{bottom:264.585750px;}
.y1a7{bottom:268.182900px;}
.y151{bottom:270.144900px;}
.yc8{bottom:271.810200px;}
.y17b{bottom:273.528750px;}
.y132{bottom:274.785750px;}
.yaa{bottom:275.685750px;}
.y4f{bottom:275.685900px;}
.y40{bottom:275.985900px;}
.yf4{bottom:278.016750px;}
.y113{bottom:278.385900px;}
.ybe{bottom:285.666900px;}
.y89{bottom:286.035750px;}
.y1a6{bottom:286.326900px;}
.y150{bottom:288.140400px;}
.y17a{bottom:291.524250px;}
.yc7{bottom:292.802700px;}
.ya9{bottom:297.135750px;}
.y4e{bottom:297.135900px;}
.y3f{bottom:297.435900px;}
.yf3{bottom:299.466750px;}
.y112{bottom:299.835900px;}
.y1a5{bottom:304.470900px;}
.yc6{bottom:304.810200px;}
.y14f{bottom:306.135900px;}
.y88{bottom:307.485750px;}
.y179{bottom:309.519750px;}
.y131{bottom:317.235750px;}
.ya8{bottom:318.585750px;}
.y4d{bottom:318.585900px;}
.y6d{bottom:318.885900px;}
.yf2{bottom:320.916750px;}
.y111{bottom:321.285900px;}
.y1a4{bottom:322.614900px;}
.yc5{bottom:325.802700px;}
.y178{bottom:327.515250px;}
.y87{bottom:328.935750px;}
.y1f{bottom:332.841300px;}
.ya7{bottom:340.035750px;}
.y4c{bottom:340.035900px;}
.y6c{bottom:340.335900px;}
.y1a3{bottom:340.758900px;}
.y3e{bottom:341.385900px;}
.yf1{bottom:342.366750px;}
.y110{bottom:342.735900px;}
.y14e{bottom:343.635900px;}
.y177{bottom:345.510750px;}
.ybd{bottom:348.666900px;}
.y1e{bottom:349.339800px;}
.y86{bottom:350.385750px;}
.y1a2{bottom:358.902900px;}
.ya6{bottom:361.485750px;}
.y4b{bottom:361.485900px;}
.y6b{bottom:361.785900px;}
.y176{bottom:363.506250px;}
.yf0{bottom:363.816750px;}
.y10f{bottom:364.185900px;}
.y1d{bottom:365.838300px;}
.ybc{bottom:370.116900px;}
.y85{bottom:371.835750px;}
.y1a1{bottom:377.046900px;}
.y130{bottom:378.735750px;}
.y175{bottom:381.501750px;}
.y1c{bottom:382.336800px;}
.ya5{bottom:382.935750px;}
.y4a{bottom:382.935900px;}
.y6a{bottom:383.235900px;}
.yef{bottom:385.266750px;}
.y10e{bottom:385.635900px;}
.ybb{bottom:391.566900px;}
.y84{bottom:393.285750px;}
.y1a0{bottom:395.190900px;}
.y1b{bottom:398.835300px;}
.y174{bottom:399.497250px;}
.y12f{bottom:400.185750px;}
.y14d{bottom:403.635900px;}
.ya4{bottom:404.385750px;}
.y3d{bottom:404.385900px;}
.y69{bottom:404.685900px;}
.y10d{bottom:407.085900px;}
.yba{bottom:413.016900px;}
.y19f{bottom:413.334900px;}
.y83{bottom:414.735750px;}
.y1a{bottom:415.333800px;}
.y173{bottom:417.492750px;}
.y12e{bottom:421.635750px;}
.y14c{bottom:425.085900px;}
.ya3{bottom:425.835750px;}
.y3c{bottom:425.835900px;}
.y68{bottom:426.135900px;}
.y10c{bottom:428.535900px;}
.y19e{bottom:431.478900px;}
.y19{bottom:431.832300px;}
.yb9{bottom:434.466900px;}
.yee{bottom:435.216750px;}
.y172{bottom:435.488250px;}
.y82{bottom:436.185750px;}
.y12d{bottom:443.085750px;}
.y14b{bottom:446.535900px;}
.ya2{bottom:447.285750px;}
.y3b{bottom:447.285900px;}
.y67{bottom:447.585900px;}
.y18{bottom:448.330800px;}
.y19d{bottom:449.622900px;}
.y10b{bottom:449.985900px;}
.y171{bottom:453.483750px;}
.yb8{bottom:455.916900px;}
.y81{bottom:457.635750px;}
.yed{bottom:457.716750px;}
.y12c{bottom:464.535750px;}
.y17{bottom:464.829300px;}
.y19c{bottom:467.766900px;}
.y14a{bottom:467.985900px;}
.ya1{bottom:468.735750px;}
.y3a{bottom:468.735900px;}
.y66{bottom:469.035900px;}
.y10a{bottom:471.435900px;}
.y170{bottom:471.479250px;}
.y80{bottom:479.085750px;}
.y16{bottom:481.327800px;}
.y19b{bottom:485.910900px;}
.y12b{bottom:485.985750px;}
.y149{bottom:489.435900px;}
.y16f{bottom:489.474750px;}
.ya0{bottom:490.185750px;}
.y39{bottom:490.185900px;}
.y65{bottom:490.485900px;}
.y109{bottom:492.885900px;}
.y15{bottom:497.826300px;}
.y7f{bottom:500.535750px;}
.y19a{bottom:504.054900px;}
.yb7{bottom:504.378900px;}
.y12a{bottom:507.435750px;}
.y16e{bottom:507.470250px;}
.y148{bottom:510.885900px;}
.y9f{bottom:511.635750px;}
.y38{bottom:511.635900px;}
.y64{bottom:511.935900px;}
.y14{bottom:514.324800px;}
.y108{bottom:514.335900px;}
.yec{bottom:520.716750px;}
.y7e{bottom:521.985750px;}
.y199{bottom:522.198900px;}
.y16d{bottom:525.465750px;}
.y129{bottom:528.885750px;}
.y13{bottom:530.823300px;}
.y147{bottom:532.335900px;}
.y9e{bottom:533.085750px;}
.y37{bottom:533.085900px;}
.y63{bottom:533.385900px;}
.y107{bottom:535.785900px;}
.y198{bottom:540.342900px;}
.yeb{bottom:542.166750px;}
.y7d{bottom:543.435750px;}
.y16c{bottom:543.461250px;}
.y128{bottom:550.335750px;}
.y146{bottom:553.785900px;}
.y9d{bottom:554.535750px;}
.y36{bottom:554.535900px;}
.y62{bottom:554.835900px;}
.y106{bottom:557.235900px;}
.y197{bottom:558.486900px;}
.y16b{bottom:561.456750px;}
.yea{bottom:563.616750px;}
.y12{bottom:563.827800px;}
.y7c{bottom:564.885750px;}
.y127{bottom:571.785750px;}
.y145{bottom:575.235900px;}
.y9c{bottom:575.985750px;}
.y35{bottom:575.985900px;}
.y61{bottom:576.285900px;}
.y196{bottom:576.630900px;}
.y105{bottom:578.685900px;}
.y16a{bottom:579.452250px;}
.y23{bottom:580.324050px;}
.y11{bottom:580.326300px;}
.ye9{bottom:585.066750px;}
.y7b{bottom:586.335750px;}
.y126{bottom:593.235750px;}
.y195{bottom:594.774900px;}
.y144{bottom:596.685900px;}
.y22{bottom:596.822550px;}
.y10{bottom:596.824800px;}
.y9b{bottom:597.435750px;}
.y34{bottom:597.435900px;}
.y169{bottom:597.447750px;}
.y60{bottom:597.735900px;}
.y104{bottom:600.135900px;}
.ye8{bottom:606.516750px;}
.y7a{bottom:607.785750px;}
.y194{bottom:612.918900px;}
.y21{bottom:613.321050px;}
.yf{bottom:613.323300px;}
.y125{bottom:614.685750px;}
.y168{bottom:615.443250px;}
.y143{bottom:618.135900px;}
.y9a{bottom:618.885750px;}
.y33{bottom:618.885900px;}
.y5f{bottom:619.185900px;}
.y103{bottom:621.585900px;}
.ye7{bottom:627.966750px;}
.y79{bottom:629.235750px;}
.y20{bottom:629.819550px;}
.ye{bottom:629.823300px;}
.y193{bottom:631.062900px;}
.y167{bottom:633.438750px;}
.y124{bottom:636.135750px;}
.y142{bottom:639.585900px;}
.y99{bottom:640.335750px;}
.y32{bottom:640.335900px;}
.y5e{bottom:640.635900px;}
.y192{bottom:649.206900px;}
.ye6{bottom:649.416750px;}
.y78{bottom:650.685750px;}
.y166{bottom:651.434250px;}
.yd{bottom:652.323300px;}
.y123{bottom:657.585750px;}
.y141{bottom:661.035900px;}
.y98{bottom:661.785750px;}
.y31{bottom:661.785900px;}
.y5d{bottom:662.085900px;}
.y102{bottom:664.512900px;}
.y191{bottom:667.350900px;}
.y165{bottom:669.429750px;}
.ye5{bottom:670.866750px;}
.y77{bottom:672.135750px;}
.y122{bottom:679.035750px;}
.y140{bottom:682.485900px;}
.y101{bottom:682.508400px;}
.y97{bottom:683.235750px;}
.y30{bottom:683.235900px;}
.y5c{bottom:683.535900px;}
.y190{bottom:685.494900px;}
.y164{bottom:687.425250px;}
.ye4{bottom:692.316750px;}
.y121{bottom:700.485750px;}
.y100{bottom:700.503900px;}
.y18f{bottom:703.638900px;}
.y13f{bottom:703.935900px;}
.y96{bottom:704.685750px;}
.y2f{bottom:704.685900px;}
.y5b{bottom:704.985900px;}
.y163{bottom:705.420750px;}
.y3{bottom:706.970400px;}
.ye3{bottom:713.766750px;}
.y76{bottom:715.044750px;}
.yff{bottom:718.499400px;}
.y18e{bottom:721.782900px;}
.y120{bottom:721.935750px;}
.y162{bottom:723.416250px;}
.y13e{bottom:725.385900px;}
.y95{bottom:726.135750px;}
.y2e{bottom:726.135900px;}
.y5a{bottom:726.435900px;}
.yd9{bottom:727.485900px;}
.y75{bottom:733.040250px;}
.ye2{bottom:735.216750px;}
.yfe{bottom:736.494900px;}
.y2{bottom:738.479400px;}
.y18d{bottom:739.926900px;}
.y161{bottom:741.411750px;}
.y94{bottom:747.585750px;}
.y2d{bottom:747.585900px;}
.y59{bottom:747.885900px;}
.y90{bottom:748.935900px;}
.y74{bottom:751.035750px;}
.yfd{bottom:754.490400px;}
.ye1{bottom:756.666750px;}
.y18c{bottom:758.070900px;}
.y160{bottom:759.407250px;}
.y11f{bottom:764.853750px;}
.y93{bottom:769.035750px;}
.y2c{bottom:769.035900px;}
.y58{bottom:769.335900px;}
.y1{bottom:769.988400px;}
.yfc{bottom:772.485900px;}
.y18b{bottom:776.214900px;}
.y15f{bottom:777.402750px;}
.ye0{bottom:778.116750px;}
.y11e{bottom:782.849250px;}
.y73{bottom:790.485750px;}
.y2b{bottom:790.485900px;}
.y13d{bottom:791.835900px;}
.y18a{bottom:794.358900px;}
.y15e{bottom:795.398250px;}
.ydf{bottom:799.566750px;}
.y11d{bottom:800.844750px;}
.y72{bottom:811.935750px;}
.y2a{bottom:811.935900px;}
.y189{bottom:812.502900px;}
.y57{bottom:813.285900px;}
.y15d{bottom:813.393750px;}
.y11c{bottom:818.840250px;}
.yde{bottom:821.016750px;}
.y188{bottom:830.646900px;}
.y15c{bottom:831.389250px;}
.y71{bottom:833.385750px;}
.y29{bottom:833.385900px;}
.y11b{bottom:836.835750px;}
.ydd{bottom:842.466750px;}
.y187{bottom:848.790900px;}
.y15b{bottom:849.384750px;}
.y70{bottom:854.835750px;}
.y28{bottom:854.835900px;}
.yc{bottom:856.047900px;}
.y186{bottom:866.934900px;}
.y15a{bottom:867.380250px;}
.yb6{bottom:867.380400px;}
.y49{bottom:876.285750px;}
.y27{bottom:876.285900px;}
.yb{bottom:880.047900px;}
.y185{bottom:885.078900px;}
.ydc{bottom:885.375750px;}
.yb5{bottom:885.375900px;}
.y48{bottom:897.735750px;}
.y26{bottom:897.735900px;}
.y184{bottom:903.222900px;}
.ydb{bottom:903.371250px;}
.yb4{bottom:903.371400px;}
.y47{bottom:919.185750px;}
.y25{bottom:919.185900px;}
.yda{bottom:921.366750px;}
.yb3{bottom:921.366900px;}
.ya{bottom:922.181100px;}
.y24{bottom:954.838500px;}
.ha{height:28.188000px;}
.h7{height:38.127979px;}
.h9{height:44.077148px;}
.h8{height:44.226562px;}
.h5{height:44.414062px;}
.hc{height:46.170000px;}
.h6{height:52.127930px;}
.hd{height:54.000000px;}
.h4{height:56.430000px;}
.hb{height:56.430600px;}
.h3{height:69.503906px;}
.h2{height:91.044000px;}
.h0{height:1045.984500px;}
.h1{height:1046.250000px;}
.w0{width:748.347000px;}
.w1{width:748.500000px;}
.x0{left:0.000000px;}
.x1{left:106.299150px;}
.x5{left:131.808150px;}
.x6{left:233.128500px;}
.x2{left:238.110300px;}
.x3{left:313.228350px;}
.x4{left:571.146000px;}
@media print{
.v2{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.536000pt;}
.ls23{letter-spacing:-4.032000pt;}
.ls26{letter-spacing:-2.976000pt;}
.ls22{letter-spacing:-1.968000pt;}
.ls18{letter-spacing:-1.760000pt;}
.ls4{letter-spacing:-1.584000pt;}
.ls17{letter-spacing:-1.536000pt;}
.ls13{letter-spacing:-1.173333pt;}
.lsc{letter-spacing:-1.114667pt;}
.ls12{letter-spacing:-1.104000pt;}
.ls14{letter-spacing:-0.997333pt;}
.lsf{letter-spacing:-0.938667pt;}
.ls27{letter-spacing:-0.912000pt;}
.ls1a{letter-spacing:-0.768000pt;}
.ls5{letter-spacing:-0.762667pt;}
.ls21{letter-spacing:-0.720000pt;}
.ls1d{letter-spacing:-0.672000pt;}
.lse{letter-spacing:-0.624000pt;}
.ls7{letter-spacing:-0.586667pt;}
.ls1c{letter-spacing:-0.576000pt;}
.ls6{letter-spacing:-0.528000pt;}
.ls1b{letter-spacing:-0.480000pt;}
.lsd{letter-spacing:-0.469333pt;}
.ls3{letter-spacing:-0.453333pt;}
.ls1e{letter-spacing:-0.432000pt;}
.lsb{letter-spacing:-0.410667pt;}
.ls15{letter-spacing:-0.342027pt;}
.ls16{letter-spacing:-0.336000pt;}
.ls8{letter-spacing:-0.234667pt;}
.ls24{letter-spacing:-0.192000pt;}
.ls1{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.000213pt;}
.ls9{letter-spacing:0.000320pt;}
.ls25{letter-spacing:0.240000pt;}
.ls19{letter-spacing:0.293333pt;}
.ls0{letter-spacing:0.453333pt;}
.ls1f{letter-spacing:0.480000pt;}
.ls11{letter-spacing:0.586667pt;}
.ls20{letter-spacing:2.304000pt;}
.ls10{letter-spacing:6.144000pt;}
.ls2{letter-spacing:6.826667pt;}
.wsa8{word-spacing:-13.904000pt;}
.wsf8{word-spacing:-13.610667pt;}
.wsc3{word-spacing:-13.434667pt;}
.ws9a{word-spacing:-13.200000pt;}
.ws55{word-spacing:-13.024000pt;}
.ws6e{word-spacing:-12.965333pt;}
.ws56{word-spacing:-12.848000pt;}
.ws3f{word-spacing:-12.672000pt;}
.ws9b{word-spacing:-12.496000pt;}
.ws6d{word-spacing:-12.320000pt;}
.ws28{word-spacing:-11.733333pt;}
.wseb{word-spacing:-11.674667pt;}
.ws116{word-spacing:-10.992000pt;}
.ws103{word-spacing:-10.896000pt;}
.ws115{word-spacing:-10.512000pt;}
.ws105{word-spacing:-10.320000pt;}
.ws102{word-spacing:-10.272000pt;}
.wsf9{word-spacing:-10.224000pt;}
.ws12a{word-spacing:-10.080000pt;}
.wsa7{word-spacing:-9.888000pt;}
.ws104{word-spacing:-9.456000pt;}
.ws114{word-spacing:-8.928000pt;}
.ws118{word-spacing:-8.016000pt;}
.wsb{word-spacing:-7.764005pt;}
.wsb2{word-spacing:-7.421979pt;}
.ws117{word-spacing:-6.960000pt;}
.ws6{word-spacing:-6.826667pt;}
.wsc{word-spacing:-6.352368pt;}
.wsd0{word-spacing:-2.874667pt;}
.wsd1{word-spacing:-2.816000pt;}
.ws5c{word-spacing:-2.640000pt;}
.wscb{word-spacing:-2.581333pt;}
.ws9d{word-spacing:-2.522667pt;}
.wsb4{word-spacing:-2.464000pt;}
.ws47{word-spacing:-2.405333pt;}
.ws4b{word-spacing:-2.346667pt;}
.ws2f{word-spacing:-2.288000pt;}
.wsda{word-spacing:-2.229333pt;}
.ws49{word-spacing:-2.170667pt;}
.ws61{word-spacing:-2.112000pt;}
.wsbf{word-spacing:-2.064000pt;}
.ws44{word-spacing:-2.053333pt;}
.wsa5{word-spacing:-1.994667pt;}
.ws79{word-spacing:-1.936000pt;}
.ws29{word-spacing:-1.877333pt;}
.ws39{word-spacing:-1.818667pt;}
.ws123{word-spacing:-1.776000pt;}
.ws6f{word-spacing:-1.760000pt;}
.wse4{word-spacing:-1.701333pt;}
.ws9e{word-spacing:-1.642667pt;}
.ws130{word-spacing:-1.632000pt;}
.wsb9{word-spacing:-1.584000pt;}
.ws126{word-spacing:-1.536000pt;}
.ws2c{word-spacing:-1.525333pt;}
.wsbd{word-spacing:-1.488000pt;}
.ws7c{word-spacing:-1.466667pt;}
.ws131{word-spacing:-1.440000pt;}
.ws45{word-spacing:-1.408000pt;}
.ws12b{word-spacing:-1.392000pt;}
.ws7f{word-spacing:-1.349333pt;}
.wsdb{word-spacing:-1.290667pt;}
.wse1{word-spacing:-1.248000pt;}
.wscc{word-spacing:-1.232000pt;}
.ws65{word-spacing:-1.173333pt;}
.ws4c{word-spacing:-1.114667pt;}
.ws110{word-spacing:-1.104000pt;}
.ws7d{word-spacing:-1.056000pt;}
.wsfe{word-spacing:-1.008000pt;}
.ws50{word-spacing:-0.997333pt;}
.wsdf{word-spacing:-0.960000pt;}
.ws58{word-spacing:-0.938667pt;}
.ws10f{word-spacing:-0.912000pt;}
.ws1{word-spacing:-0.880000pt;}
.wsbe{word-spacing:-0.864000pt;}
.ws8a{word-spacing:-0.821333pt;}
.ws128{word-spacing:-0.768000pt;}
.wse{word-spacing:-0.762667pt;}
.ws41{word-spacing:-0.704000pt;}
.ws63{word-spacing:-0.645333pt;}
.wsbc{word-spacing:-0.624000pt;}
.ws27{word-spacing:-0.528000pt;}
.ws2a{word-spacing:-0.469333pt;}
.wsa{word-spacing:-0.453333pt;}
.ws122{word-spacing:-0.432000pt;}
.wsca{word-spacing:-0.410667pt;}
.wsfa{word-spacing:-0.384000pt;}
.ws70{word-spacing:-0.352000pt;}
.wsf4{word-spacing:-0.293333pt;}
.wsc8{word-spacing:-0.288000pt;}
.ws5a{word-spacing:-0.240000pt;}
.wsb1{word-spacing:-0.234667pt;}
.ws132{word-spacing:-0.192000pt;}
.ws4{word-spacing:-0.176000pt;}
.ws8c{word-spacing:-0.117333pt;}
.wsad{word-spacing:-0.096000pt;}
.ws7a{word-spacing:-0.058667pt;}
.ws0{word-spacing:0.000000pt;}
.ws6b{word-spacing:0.048000pt;}
.wscd{word-spacing:0.058667pt;}
.ws92{word-spacing:0.117333pt;}
.ws119{word-spacing:0.144000pt;}
.ws3c{word-spacing:0.176000pt;}
.wse3{word-spacing:0.192000pt;}
.ws60{word-spacing:0.234667pt;}
.ws12c{word-spacing:0.240000pt;}
.wsc2{word-spacing:0.288000pt;}
.ws23{word-spacing:0.293333pt;}
.wse2{word-spacing:0.336000pt;}
.ws20{word-spacing:0.352000pt;}
.ws21{word-spacing:0.410667pt;}
.ws113{word-spacing:0.432000pt;}
.ws8{word-spacing:0.453333pt;}
.ws5d{word-spacing:0.469333pt;}
.ws10c{word-spacing:0.480000pt;}
.ws40{word-spacing:0.528000pt;}
.wse8{word-spacing:0.576000pt;}
.ws3a{word-spacing:0.586667pt;}
.wsfb{word-spacing:0.624000pt;}
.ws90{word-spacing:0.645333pt;}
.ws4f{word-spacing:0.704000pt;}
.ws10{word-spacing:0.762667pt;}
.ws11b{word-spacing:0.816000pt;}
.ws1a{word-spacing:0.821333pt;}
.wsec{word-spacing:0.864000pt;}
.ws34{word-spacing:0.880000pt;}
.wsd9{word-spacing:0.912000pt;}
.ws86{word-spacing:0.938667pt;}
.ws10b{word-spacing:0.960000pt;}
.ws18{word-spacing:0.997333pt;}
.ws75{word-spacing:1.056000pt;}
.ws2e{word-spacing:1.114667pt;}
.ws5b{word-spacing:1.152000pt;}
.ws2b{word-spacing:1.173333pt;}
.wsd{word-spacing:1.232000pt;}
.ws112{word-spacing:1.248000pt;}
.wsb5{word-spacing:1.290667pt;}
.ws10e{word-spacing:1.344000pt;}
.ws5{word-spacing:1.349333pt;}
.wsce{word-spacing:1.408000pt;}
.ws38{word-spacing:1.466667pt;}
.wsf6{word-spacing:1.488000pt;}
.ws22{word-spacing:1.525333pt;}
.wsac{word-spacing:1.536000pt;}
.ws94{word-spacing:1.584000pt;}
.wsdd{word-spacing:1.642667pt;}
.ws11c{word-spacing:1.680000pt;}
.ws26{word-spacing:1.701333pt;}
.wsab{word-spacing:1.728000pt;}
.ws36{word-spacing:1.760000pt;}
.ws1f{word-spacing:1.818667pt;}
.wse0{word-spacing:1.872000pt;}
.ws62{word-spacing:1.877333pt;}
.wsd5{word-spacing:1.936000pt;}
.wsae{word-spacing:1.994667pt;}
.ws1e{word-spacing:2.053333pt;}
.ws10d{word-spacing:2.064000pt;}
.ws4d{word-spacing:2.112000pt;}
.wsa3{word-spacing:2.170667pt;}
.ws12e{word-spacing:2.208000pt;}
.ws64{word-spacing:2.229333pt;}
.ws12f{word-spacing:2.256000pt;}
.ws5f{word-spacing:2.288000pt;}
.ws129{word-spacing:2.304000pt;}
.wsa1{word-spacing:2.346667pt;}
.wse7{word-spacing:2.352000pt;}
.ws96{word-spacing:2.405333pt;}
.ws8d{word-spacing:2.448000pt;}
.wsc9{word-spacing:2.464000pt;}
.ws54{word-spacing:2.496000pt;}
.ws53{word-spacing:2.522667pt;}
.wsb3{word-spacing:2.581333pt;}
.ws6a{word-spacing:2.640000pt;}
.wsde{word-spacing:2.688000pt;}
.ws46{word-spacing:2.698667pt;}
.ws4a{word-spacing:2.757333pt;}
.wsf2{word-spacing:2.816000pt;}
.ws12d{word-spacing:2.832000pt;}
.ws91{word-spacing:2.874667pt;}
.wsff{word-spacing:2.880000pt;}
.wsbb{word-spacing:2.928000pt;}
.ws35{word-spacing:2.933333pt;}
.ws3d{word-spacing:2.976000pt;}
.ws76{word-spacing:2.992000pt;}
.ws11a{word-spacing:3.024000pt;}
.ws84{word-spacing:3.050667pt;}
.ws125{word-spacing:3.072000pt;}
.ws42{word-spacing:3.109333pt;}
.ws8e{word-spacing:3.120000pt;}
.ws19{word-spacing:3.168000pt;}
.ws11f{word-spacing:3.216000pt;}
.ws89{word-spacing:3.226667pt;}
.wsea{word-spacing:3.264000pt;}
.wsd3{word-spacing:3.285333pt;}
.wsc1{word-spacing:3.312000pt;}
.wsdc{word-spacing:3.344000pt;}
.wsc5{word-spacing:3.402667pt;}
.ws11d{word-spacing:3.456000pt;}
.ws59{word-spacing:3.461333pt;}
.ws11e{word-spacing:3.504000pt;}
.ws67{word-spacing:3.520000pt;}
.ws95{word-spacing:3.578667pt;}
.ws1c{word-spacing:3.637333pt;}
.wsc7{word-spacing:3.648000pt;}
.ws3b{word-spacing:3.696000pt;}
.ws48{word-spacing:3.754667pt;}
.ws127{word-spacing:3.792000pt;}
.ws3{word-spacing:3.813333pt;}
.wsb6{word-spacing:3.872000pt;}
.ws15{word-spacing:3.930667pt;}
.ws108{word-spacing:3.936000pt;}
.ws7{word-spacing:3.944000pt;}
.wsc0{word-spacing:3.984000pt;}
.ws83{word-spacing:3.989333pt;}
.wsa6{word-spacing:4.080000pt;}
.ws37{word-spacing:4.106667pt;}
.ws97{word-spacing:4.165333pt;}
.wsed{word-spacing:4.176000pt;}
.ws43{word-spacing:4.224000pt;}
.wsf5{word-spacing:4.282667pt;}
.ws77{word-spacing:4.341333pt;}
.wsd8{word-spacing:4.368000pt;}
.ws8b{word-spacing:4.400000pt;}
.ws3e{word-spacing:4.416000pt;}
.ws51{word-spacing:4.458667pt;}
.ws124{word-spacing:4.464000pt;}
.wse5{word-spacing:4.512000pt;}
.ws2d{word-spacing:4.517333pt;}
.ws32{word-spacing:4.576000pt;}
.ws14{word-spacing:4.634667pt;}
.wsa2{word-spacing:4.693333pt;}
.ws2{word-spacing:4.752000pt;}
.ws111{word-spacing:4.800000pt;}
.ws57{word-spacing:4.810667pt;}
.wse9{word-spacing:4.848000pt;}
.ws5e{word-spacing:4.869333pt;}
.wse6{word-spacing:4.896000pt;}
.ws1d{word-spacing:4.928000pt;}
.ws7e{word-spacing:4.986667pt;}
.ws8f{word-spacing:5.045333pt;}
.ws30{word-spacing:5.104000pt;}
.ws4e{word-spacing:5.221333pt;}
.ws24{word-spacing:5.280000pt;}
.ws85{word-spacing:5.338667pt;}
.ws6c{word-spacing:5.376000pt;}
.wsf{word-spacing:5.397333pt;}
.ws16{word-spacing:5.456000pt;}
.ws25{word-spacing:5.514667pt;}
.wsf7{word-spacing:5.573333pt;}
.ws13{word-spacing:5.632000pt;}
.ws73{word-spacing:5.690667pt;}
.ws31{word-spacing:5.749333pt;}
.wsf0{word-spacing:5.808000pt;}
.wsc6{word-spacing:5.866667pt;}
.ws93{word-spacing:5.925333pt;}
.wsfc{word-spacing:5.952000pt;}
.wsee{word-spacing:5.984000pt;}
.wsfd{word-spacing:6.000000pt;}
.ws12{word-spacing:6.042667pt;}
.ws17{word-spacing:6.101333pt;}
.wsa9{word-spacing:6.144000pt;}
.ws98{word-spacing:6.160000pt;}
.wsaa{word-spacing:6.192000pt;}
.wsb7{word-spacing:6.218667pt;}
.wsa0{word-spacing:6.277333pt;}
.wsd4{word-spacing:6.336000pt;}
.ws9c{word-spacing:6.394667pt;}
.ws106{word-spacing:6.432000pt;}
.ws74{word-spacing:6.453333pt;}
.ws107{word-spacing:6.480000pt;}
.wsf1{word-spacing:6.512000pt;}
.wsd6{word-spacing:6.570667pt;}
.ws82{word-spacing:6.629333pt;}
.ws9f{word-spacing:6.688000pt;}
.ws11{word-spacing:6.805333pt;}
.ws66{word-spacing:6.864000pt;}
.ws78{word-spacing:6.922667pt;}
.ws1b{word-spacing:6.981333pt;}
.ws52{word-spacing:7.040000pt;}
.wsc4{word-spacing:7.098667pt;}
.ws100{word-spacing:7.152000pt;}
.ws72{word-spacing:7.157333pt;}
.ws101{word-spacing:7.200000pt;}
.wsa4{word-spacing:7.216000pt;}
.ws71{word-spacing:7.274667pt;}
.wsf3{word-spacing:7.392000pt;}
.ws7b{word-spacing:7.568000pt;}
.ws109{word-spacing:7.584000pt;}
.wsba{word-spacing:7.639632pt;}
.ws10a{word-spacing:7.680000pt;}
.ws33{word-spacing:7.685333pt;}
.wsaf{word-spacing:7.744000pt;}
.wsb0{word-spacing:8.037333pt;}
.wsef{word-spacing:8.154667pt;}
.ws80{word-spacing:8.213333pt;}
.ws99{word-spacing:8.506667pt;}
.wsd2{word-spacing:8.800000pt;}
.ws81{word-spacing:8.858667pt;}
.ws9{word-spacing:9.338667pt;}
.wscf{word-spacing:9.445333pt;}
.ws87{word-spacing:9.562667pt;}
.ws88{word-spacing:9.680000pt;}
.ws68{word-spacing:10.992000pt;}
.ws69{word-spacing:11.088000pt;}
.wsb8{word-spacing:11.557333pt;}
.wsd7{word-spacing:13.669333pt;}
.ws120{word-spacing:19.296000pt;}
.ws121{word-spacing:19.488000pt;}
._b{margin-left:-1905.364267pt;}
._14{margin-left:-14.384000pt;}
._d{margin-left:-10.123200pt;}
._0{margin-left:-9.216000pt;}
._13{margin-left:-7.985067pt;}
._11{margin-left:-6.539200pt;}
._e{margin-left:-5.588800pt;}
._c{margin-left:-3.975467pt;}
._3{margin-left:-2.400000pt;}
._1{margin-left:-1.152000pt;}
._2{width:1.046400pt;}
._4{width:2.150400pt;}
._5{width:3.508800pt;}
._a{width:4.420000pt;}
._9{width:5.489867pt;}
._7{width:6.568800pt;}
._8{width:7.561600pt;}
._6{width:8.885333pt;}
._12{width:10.127680pt;}
._f{width:13.103680pt;}
._15{width:20.179200pt;}
._10{width:424.410133pt;}
.fs7{font-size:27.984000pt;}
.fs6{font-size:34.202667pt;}
.fs3{font-size:42.666667pt;}
.fs5{font-size:45.333333pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1af{bottom:109.360800pt;}
.y6f{bottom:109.609067pt;}
.y56{bottom:109.611733pt;}
.yd5{bottom:109.614400pt;}
.yd1{bottom:109.619600pt;}
.y11a{bottom:109.619733pt;}
.y139{bottom:110.787333pt;}
.y13c{bottom:111.587333pt;}
.yd8{bottom:111.587467pt;}
.y9{bottom:111.767467pt;}
.y92{bottom:111.854133pt;}
.y159{bottom:112.160800pt;}
.y46{bottom:113.602400pt;}
.yfb{bottom:113.659333pt;}
.yc4{bottom:114.592800pt;}
.y183{bottom:115.168667pt;}
.yb2{bottom:115.854133pt;}
.y55{bottom:124.275733pt;}
.yd4{bottom:124.278400pt;}
.yd0{bottom:124.283600pt;}
.y119{bottom:124.283733pt;}
.y1ae{bottom:125.488800pt;}
.y158{bottom:128.156800pt;}
.y6e{bottom:128.269067pt;}
.y138{bottom:129.854000pt;}
.y13b{bottom:130.654000pt;}
.yd7{bottom:130.654133pt;}
.y8{bottom:130.834133pt;}
.y91{bottom:130.920800pt;}
.y182{bottom:131.164667pt;}
.yfa{bottom:132.726000pt;}
.yc3{bottom:133.659467pt;}
.yb1{bottom:134.920800pt;}
.yd3{bottom:138.942400pt;}
.y8f{bottom:138.945200pt;}
.ycf{bottom:138.947600pt;}
.y118{bottom:138.947733pt;}
.y1ad{bottom:141.616800pt;}
.y54{bottom:142.935733pt;}
.y157{bottom:144.152800pt;}
.y181{bottom:147.160667pt;}
.y137{bottom:148.920667pt;}
.y13a{bottom:149.720667pt;}
.yd6{bottom:149.720800pt;}
.y7{bottom:149.900800pt;}
.y45{bottom:149.987467pt;}
.yf9{bottom:151.792667pt;}
.yc2{bottom:152.726133pt;}
.yd2{bottom:153.606400pt;}
.y8e{bottom:153.609200pt;}
.yce{bottom:153.611600pt;}
.y117{bottom:153.611733pt;}
.yb0{bottom:153.987467pt;}
.y1ac{bottom:157.744800pt;}
.y156{bottom:160.148800pt;}
.y180{bottom:163.156667pt;}
.y136{bottom:167.987333pt;}
.ycd{bottom:168.275600pt;}
.y116{bottom:168.275733pt;}
.yae{bottom:168.787333pt;}
.y53{bottom:168.787467pt;}
.y6{bottom:168.967467pt;}
.y44{bottom:169.054133pt;}
.yf8{bottom:170.859333pt;}
.yc1{bottom:171.792800pt;}
.y8d{bottom:172.269200pt;}
.y1ab{bottom:173.872800pt;}
.y155{bottom:176.144800pt;}
.y17f{bottom:179.152667pt;}
.y8c{bottom:182.942667pt;}
.ycc{bottom:186.935600pt;}
.y115{bottom:186.935733pt;}
.y135{bottom:187.054000pt;}
.yad{bottom:187.854000pt;}
.y52{bottom:187.854133pt;}
.y5{bottom:188.034133pt;}
.y43{bottom:188.120800pt;}
.yf7{bottom:189.926000pt;}
.y1aa{bottom:190.000800pt;}
.yc0{bottom:190.859467pt;}
.yaf{bottom:191.720800pt;}
.y154{bottom:192.140800pt;}
.y17e{bottom:195.148667pt;}
.ycb{bottom:197.608933pt;}
.y8b{bottom:201.602667pt;}
.y134{bottom:206.120667pt;}
.y1a9{bottom:206.128800pt;}
.yac{bottom:206.920667pt;}
.y51{bottom:206.920800pt;}
.y42{bottom:207.187467pt;}
.y153{bottom:208.136800pt;}
.yf6{bottom:208.992667pt;}
.y17d{bottom:211.144667pt;}
.yca{bottom:216.268933pt;}
.y1a8{bottom:222.256800pt;}
.y152{bottom:224.132800pt;}
.y133{bottom:225.187333pt;}
.yab{bottom:225.987333pt;}
.y50{bottom:225.987467pt;}
.y41{bottom:226.254133pt;}
.yc9{bottom:226.945067pt;}
.y4{bottom:227.100800pt;}
.y17c{bottom:227.140667pt;}
.yf5{bottom:228.059333pt;}
.y114{bottom:228.387467pt;}
.ybf{bottom:233.926133pt;}
.y8a{bottom:235.187333pt;}
.y1a7{bottom:238.384800pt;}
.y151{bottom:240.128800pt;}
.yc8{bottom:241.609067pt;}
.y17b{bottom:243.136667pt;}
.y132{bottom:244.254000pt;}
.yaa{bottom:245.054000pt;}
.y4f{bottom:245.054133pt;}
.y40{bottom:245.320800pt;}
.yf4{bottom:247.126000pt;}
.y113{bottom:247.454133pt;}
.ybe{bottom:253.926133pt;}
.y89{bottom:254.254000pt;}
.y1a6{bottom:254.512800pt;}
.y150{bottom:256.124800pt;}
.y17a{bottom:259.132667pt;}
.yc7{bottom:260.269067pt;}
.ya9{bottom:264.120667pt;}
.y4e{bottom:264.120800pt;}
.y3f{bottom:264.387467pt;}
.yf3{bottom:266.192667pt;}
.y112{bottom:266.520800pt;}
.y1a5{bottom:270.640800pt;}
.yc6{bottom:270.942400pt;}
.y14f{bottom:272.120800pt;}
.y88{bottom:273.320667pt;}
.y179{bottom:275.128667pt;}
.y131{bottom:281.987333pt;}
.ya8{bottom:283.187333pt;}
.y4d{bottom:283.187467pt;}
.y6d{bottom:283.454133pt;}
.yf2{bottom:285.259333pt;}
.y111{bottom:285.587467pt;}
.y1a4{bottom:286.768800pt;}
.yc5{bottom:289.602400pt;}
.y178{bottom:291.124667pt;}
.y87{bottom:292.387333pt;}
.y1f{bottom:295.858933pt;}
.ya7{bottom:302.254000pt;}
.y4c{bottom:302.254133pt;}
.y6c{bottom:302.520800pt;}
.y1a3{bottom:302.896800pt;}
.y3e{bottom:303.454133pt;}
.yf1{bottom:304.326000pt;}
.y110{bottom:304.654133pt;}
.y14e{bottom:305.454133pt;}
.y177{bottom:307.120667pt;}
.ybd{bottom:309.926133pt;}
.y1e{bottom:310.524267pt;}
.y86{bottom:311.454000pt;}
.y1a2{bottom:319.024800pt;}
.ya6{bottom:321.320667pt;}
.y4b{bottom:321.320800pt;}
.y6b{bottom:321.587467pt;}
.y176{bottom:323.116667pt;}
.yf0{bottom:323.392667pt;}
.y10f{bottom:323.720800pt;}
.y1d{bottom:325.189600pt;}
.ybc{bottom:328.992800pt;}
.y85{bottom:330.520667pt;}
.y1a1{bottom:335.152800pt;}
.y130{bottom:336.654000pt;}
.y175{bottom:339.112667pt;}
.y1c{bottom:339.854933pt;}
.ya5{bottom:340.387333pt;}
.y4a{bottom:340.387467pt;}
.y6a{bottom:340.654133pt;}
.yef{bottom:342.459333pt;}
.y10e{bottom:342.787467pt;}
.ybb{bottom:348.059467pt;}
.y84{bottom:349.587333pt;}
.y1a0{bottom:351.280800pt;}
.y1b{bottom:354.520267pt;}
.y174{bottom:355.108667pt;}
.y12f{bottom:355.720667pt;}
.y14d{bottom:358.787467pt;}
.ya4{bottom:359.454000pt;}
.y3d{bottom:359.454133pt;}
.y69{bottom:359.720800pt;}
.y10d{bottom:361.854133pt;}
.yba{bottom:367.126133pt;}
.y19f{bottom:367.408800pt;}
.y83{bottom:368.654000pt;}
.y1a{bottom:369.185600pt;}
.y173{bottom:371.104667pt;}
.y12e{bottom:374.787333pt;}
.y14c{bottom:377.854133pt;}
.ya3{bottom:378.520667pt;}
.y3c{bottom:378.520800pt;}
.y68{bottom:378.787467pt;}
.y10c{bottom:380.920800pt;}
.y19e{bottom:383.536800pt;}
.y19{bottom:383.850933pt;}
.yb9{bottom:386.192800pt;}
.yee{bottom:386.859333pt;}
.y172{bottom:387.100667pt;}
.y82{bottom:387.720667pt;}
.y12d{bottom:393.854000pt;}
.y14b{bottom:396.920800pt;}
.ya2{bottom:397.587333pt;}
.y3b{bottom:397.587467pt;}
.y67{bottom:397.854133pt;}
.y18{bottom:398.516267pt;}
.y19d{bottom:399.664800pt;}
.y10b{bottom:399.987467pt;}
.y171{bottom:403.096667pt;}
.yb8{bottom:405.259467pt;}
.y81{bottom:406.787333pt;}
.yed{bottom:406.859333pt;}
.y12c{bottom:412.920667pt;}
.y17{bottom:413.181600pt;}
.y19c{bottom:415.792800pt;}
.y14a{bottom:415.987467pt;}
.ya1{bottom:416.654000pt;}
.y3a{bottom:416.654133pt;}
.y66{bottom:416.920800pt;}
.y10a{bottom:419.054133pt;}
.y170{bottom:419.092667pt;}
.y80{bottom:425.854000pt;}
.y16{bottom:427.846933pt;}
.y19b{bottom:431.920800pt;}
.y12b{bottom:431.987333pt;}
.y149{bottom:435.054133pt;}
.y16f{bottom:435.088667pt;}
.ya0{bottom:435.720667pt;}
.y39{bottom:435.720800pt;}
.y65{bottom:435.987467pt;}
.y109{bottom:438.120800pt;}
.y15{bottom:442.512267pt;}
.y7f{bottom:444.920667pt;}
.y19a{bottom:448.048800pt;}
.yb7{bottom:448.336800pt;}
.y12a{bottom:451.054000pt;}
.y16e{bottom:451.084667pt;}
.y148{bottom:454.120800pt;}
.y9f{bottom:454.787333pt;}
.y38{bottom:454.787467pt;}
.y64{bottom:455.054133pt;}
.y14{bottom:457.177600pt;}
.y108{bottom:457.187467pt;}
.yec{bottom:462.859333pt;}
.y7e{bottom:463.987333pt;}
.y199{bottom:464.176800pt;}
.y16d{bottom:467.080667pt;}
.y129{bottom:470.120667pt;}
.y13{bottom:471.842933pt;}
.y147{bottom:473.187467pt;}
.y9e{bottom:473.854000pt;}
.y37{bottom:473.854133pt;}
.y63{bottom:474.120800pt;}
.y107{bottom:476.254133pt;}
.y198{bottom:480.304800pt;}
.yeb{bottom:481.926000pt;}
.y7d{bottom:483.054000pt;}
.y16c{bottom:483.076667pt;}
.y128{bottom:489.187333pt;}
.y146{bottom:492.254133pt;}
.y9d{bottom:492.920667pt;}
.y36{bottom:492.920800pt;}
.y62{bottom:493.187467pt;}
.y106{bottom:495.320800pt;}
.y197{bottom:496.432800pt;}
.y16b{bottom:499.072667pt;}
.yea{bottom:500.992667pt;}
.y12{bottom:501.180267pt;}
.y7c{bottom:502.120667pt;}
.y127{bottom:508.254000pt;}
.y145{bottom:511.320800pt;}
.y9c{bottom:511.987333pt;}
.y35{bottom:511.987467pt;}
.y61{bottom:512.254133pt;}
.y196{bottom:512.560800pt;}
.y105{bottom:514.387467pt;}
.y16a{bottom:515.068667pt;}
.y23{bottom:515.843600pt;}
.y11{bottom:515.845600pt;}
.ye9{bottom:520.059333pt;}
.y7b{bottom:521.187333pt;}
.y126{bottom:527.320667pt;}
.y195{bottom:528.688800pt;}
.y144{bottom:530.387467pt;}
.y22{bottom:530.508933pt;}
.y10{bottom:530.510933pt;}
.y9b{bottom:531.054000pt;}
.y34{bottom:531.054133pt;}
.y169{bottom:531.064667pt;}
.y60{bottom:531.320800pt;}
.y104{bottom:533.454133pt;}
.ye8{bottom:539.126000pt;}
.y7a{bottom:540.254000pt;}
.y194{bottom:544.816800pt;}
.y21{bottom:545.174267pt;}
.yf{bottom:545.176267pt;}
.y125{bottom:546.387333pt;}
.y168{bottom:547.060667pt;}
.y143{bottom:549.454133pt;}
.y9a{bottom:550.120667pt;}
.y33{bottom:550.120800pt;}
.y5f{bottom:550.387467pt;}
.y103{bottom:552.520800pt;}
.ye7{bottom:558.192667pt;}
.y79{bottom:559.320667pt;}
.y20{bottom:559.839600pt;}
.ye{bottom:559.842933pt;}
.y193{bottom:560.944800pt;}
.y167{bottom:563.056667pt;}
.y124{bottom:565.454000pt;}
.y142{bottom:568.520800pt;}
.y99{bottom:569.187333pt;}
.y32{bottom:569.187467pt;}
.y5e{bottom:569.454133pt;}
.y192{bottom:577.072800pt;}
.ye6{bottom:577.259333pt;}
.y78{bottom:578.387333pt;}
.y166{bottom:579.052667pt;}
.yd{bottom:579.842933pt;}
.y123{bottom:584.520667pt;}
.y141{bottom:587.587467pt;}
.y98{bottom:588.254000pt;}
.y31{bottom:588.254133pt;}
.y5d{bottom:588.520800pt;}
.y102{bottom:590.678133pt;}
.y191{bottom:593.200800pt;}
.y165{bottom:595.048667pt;}
.ye5{bottom:596.326000pt;}
.y77{bottom:597.454000pt;}
.y122{bottom:603.587333pt;}
.y140{bottom:606.654133pt;}
.y101{bottom:606.674133pt;}
.y97{bottom:607.320667pt;}
.y30{bottom:607.320800pt;}
.y5c{bottom:607.587467pt;}
.y190{bottom:609.328800pt;}
.y164{bottom:611.044667pt;}
.ye4{bottom:615.392667pt;}
.y121{bottom:622.654000pt;}
.y100{bottom:622.670133pt;}
.y18f{bottom:625.456800pt;}
.y13f{bottom:625.720800pt;}
.y96{bottom:626.387333pt;}
.y2f{bottom:626.387467pt;}
.y5b{bottom:626.654133pt;}
.y163{bottom:627.040667pt;}
.y3{bottom:628.418133pt;}
.ye3{bottom:634.459333pt;}
.y76{bottom:635.595333pt;}
.yff{bottom:638.666133pt;}
.y18e{bottom:641.584800pt;}
.y120{bottom:641.720667pt;}
.y162{bottom:643.036667pt;}
.y13e{bottom:644.787467pt;}
.y95{bottom:645.454000pt;}
.y2e{bottom:645.454133pt;}
.y5a{bottom:645.720800pt;}
.yd9{bottom:646.654133pt;}
.y75{bottom:651.591333pt;}
.ye2{bottom:653.526000pt;}
.yfe{bottom:654.662133pt;}
.y2{bottom:656.426133pt;}
.y18d{bottom:657.712800pt;}
.y161{bottom:659.032667pt;}
.y94{bottom:664.520667pt;}
.y2d{bottom:664.520800pt;}
.y59{bottom:664.787467pt;}
.y90{bottom:665.720800pt;}
.y74{bottom:667.587333pt;}
.yfd{bottom:670.658133pt;}
.ye1{bottom:672.592667pt;}
.y18c{bottom:673.840800pt;}
.y160{bottom:675.028667pt;}
.y11f{bottom:679.870000pt;}
.y93{bottom:683.587333pt;}
.y2c{bottom:683.587467pt;}
.y58{bottom:683.854133pt;}
.y1{bottom:684.434133pt;}
.yfc{bottom:686.654133pt;}
.y18b{bottom:689.968800pt;}
.y15f{bottom:691.024667pt;}
.ye0{bottom:691.659333pt;}
.y11e{bottom:695.866000pt;}
.y73{bottom:702.654000pt;}
.y2b{bottom:702.654133pt;}
.y13d{bottom:703.854133pt;}
.y18a{bottom:706.096800pt;}
.y15e{bottom:707.020667pt;}
.ydf{bottom:710.726000pt;}
.y11d{bottom:711.862000pt;}
.y72{bottom:721.720667pt;}
.y2a{bottom:721.720800pt;}
.y189{bottom:722.224800pt;}
.y57{bottom:722.920800pt;}
.y15d{bottom:723.016667pt;}
.y11c{bottom:727.858000pt;}
.yde{bottom:729.792667pt;}
.y188{bottom:738.352800pt;}
.y15c{bottom:739.012667pt;}
.y71{bottom:740.787333pt;}
.y29{bottom:740.787467pt;}
.y11b{bottom:743.854000pt;}
.ydd{bottom:748.859333pt;}
.y187{bottom:754.480800pt;}
.y15b{bottom:755.008667pt;}
.y70{bottom:759.854000pt;}
.y28{bottom:759.854133pt;}
.yc{bottom:760.931467pt;}
.y186{bottom:770.608800pt;}
.y15a{bottom:771.004667pt;}
.yb6{bottom:771.004800pt;}
.y49{bottom:778.920667pt;}
.y27{bottom:778.920800pt;}
.yb{bottom:782.264800pt;}
.y185{bottom:786.736800pt;}
.ydc{bottom:787.000667pt;}
.yb5{bottom:787.000800pt;}
.y48{bottom:797.987333pt;}
.y26{bottom:797.987467pt;}
.y184{bottom:802.864800pt;}
.ydb{bottom:802.996667pt;}
.yb4{bottom:802.996800pt;}
.y47{bottom:817.054000pt;}
.y25{bottom:817.054133pt;}
.yda{bottom:818.992667pt;}
.yb3{bottom:818.992800pt;}
.ya{bottom:819.716533pt;}
.y24{bottom:848.745333pt;}
.ha{height:25.056000pt;}
.h7{height:33.891536pt;}
.h9{height:39.179688pt;}
.h8{height:39.312500pt;}
.h5{height:39.479167pt;}
.hc{height:41.040000pt;}
.h6{height:46.335938pt;}
.hd{height:48.000000pt;}
.h4{height:50.160000pt;}
.hb{height:50.160533pt;}
.h3{height:61.781250pt;}
.h2{height:80.928000pt;}
.h0{height:929.764000pt;}
.h1{height:930.000000pt;}
.w0{width:665.197333pt;}
.w1{width:665.333333pt;}
.x0{left:0.000000pt;}
.x1{left:94.488133pt;}
.x5{left:117.162800pt;}
.x6{left:207.225333pt;}
.x2{left:211.653600pt;}
.x3{left:278.425200pt;}
.x4{left:507.685333pt;}
}




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