
    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_d3f5bdab50d41b8eec0aeacf.woff')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_5b61f103c11aab20b88acc64.woff')format("woff");}.ff2{font-family:ff2;line-height:1.151000;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_5de4986fc43bed2a5e2a3b8b.woff')format("woff");}.ff3{font-family:ff3;line-height:0.687000;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_29ce5ff7d4faaed45a9413c6.woff')format("woff");}.ff4{font-family:ff4;line-height:0.901000;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_a48583840fededdade43774a.woff')format("woff");}.ff5{font-family:ff5;line-height:0.894000;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_2e10d8c2cb0b8c6288aafe50.woff')format("woff");}.ff6{font-family:ff6;line-height:0.688000;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_4dc7fccfc6e856dfc75a8b86.woff')format("woff");}.ff7{font-family:ff7;line-height:0.956000;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_c3f32c4d39c5b9dcbe74d52c.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_3e36fa5c39e859bb4415c9d5.woff')format("woff");}.ff9{font-family:ff9;line-height:0.910000;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_3a82062a8c09a49276bef6d1.woff')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_8b60f7e8de0e98fdb3f3b341.woff')format("woff");}.ffb{font-family:ffb;line-height:0.897450;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_d17b62d4844e77901fab6117.woff')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_8cfce06f12a2daf25a147bac.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_ae28c41e9bc6224e869df1cc.woff')format("woff");}.ffe{font-family:ffe;line-height:2.409000;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_def2e7da2e998ea7a402a5df.woff')format("woff");}.fff{font-family:fff;line-height:0.898000;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_e1a69b03f8f61eba4ff80b12.woff')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_80aa5c8ccf1f043219c80ec3.woff')format("woff");}.ff11{font-family:ff11;line-height:0.678000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_3271dca33d7c3f78ba61aafd.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_53523b75bde1df8c31c72177.woff')format("woff");}.ff13{font-family:ff13;line-height:0.685000;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_dd8a38a16c6e5507d9270cfe.woff')format("woff");}.ff14{font-family:ff14;line-height:0.839000;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_7a5f2902b8ad6afff748a7e5.woff')format("woff");}.ff15{font-family:ff15;line-height:0.680000;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_60cd57e5db50cfa61bb6a28c.woff')format("woff");}.ff16{font-family:ff16;line-height:0.806000;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_88748bd6dc582d0607528b9c.woff')format("woff");}.ff17{font-family:ff17;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;}
.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);}
.va{vertical-align:-59.448000px;}
.v2{vertical-align:-22.854000px;}
.v4{vertical-align:-16.008000px;}
.vb{vertical-align:-12.552000px;}
.v8{vertical-align:-10.662000px;}
.v9{vertical-align:-8.634000px;}
.v18{vertical-align:-5.976000px;}
.vf{vertical-align:-4.584000px;}
.v0{vertical-align:0.000000px;}
.vd{vertical-align:6.510000px;}
.vc{vertical-align:14.946000px;}
.v15{vertical-align:18.336000px;}
.v1{vertical-align:23.754000px;}
.v17{vertical-align:27.024000px;}
.v3{vertical-align:34.764000px;}
.v11{vertical-align:41.562000px;}
.v6{vertical-align:44.280000px;}
.v13{vertical-align:50.250000px;}
.v12{vertical-align:60.912000px;}
.v14{vertical-align:84.726000px;}
.v5{vertical-align:92.292000px;}
.v10{vertical-align:110.004000px;}
.ve{vertical-align:115.722000px;}
.v16{vertical-align:131.562000px;}
.v7{vertical-align:137.190000px;}
.ls1{letter-spacing:0.000000px;}
.ls2d{letter-spacing:0.000141px;}
.lse{letter-spacing:0.000334px;}
.ls28{letter-spacing:0.000378px;}
.ls3d{letter-spacing:0.001052px;}
.ls2f{letter-spacing:0.001289px;}
.lsf{letter-spacing:0.001398px;}
.ls2c{letter-spacing:0.001956px;}
.ls2a{letter-spacing:0.002289px;}
.ls3f{letter-spacing:0.002688px;}
.ls45{letter-spacing:0.002696px;}
.ls1f{letter-spacing:0.002700px;}
.ls4{letter-spacing:0.002706px;}
.ls38{letter-spacing:0.002712px;}
.ls25{letter-spacing:0.003197px;}
.ls41{letter-spacing:0.003791px;}
.ls30{letter-spacing:0.004528px;}
.ls34{letter-spacing:0.004669px;}
.ls2e{letter-spacing:0.004888px;}
.ls23{letter-spacing:0.004890px;}
.ls27{letter-spacing:0.005196px;}
.ls10{letter-spacing:0.005543px;}
.ls4e{letter-spacing:0.007490px;}
.lsd{letter-spacing:1.916133px;}
.ls1c{letter-spacing:2.056335px;}
.ls5{letter-spacing:2.062335px;}
.ls26{letter-spacing:2.075159px;}
.ls33{letter-spacing:2.755488px;}
.ls2{letter-spacing:2.984915px;}
.ls0{letter-spacing:2.986118px;}
.ls4f{letter-spacing:2.988532px;}
.ls47{letter-spacing:2.989289px;}
.ls4d{letter-spacing:2.990915px;}
.ls48{letter-spacing:2.991056px;}
.ls40{letter-spacing:2.992478px;}
.ls3c{letter-spacing:2.995289px;}
.ls29{letter-spacing:3.734425px;}
.ls37{letter-spacing:3.740425px;}
.lsa{letter-spacing:3.771239px;}
.ls3{letter-spacing:3.773414px;}
.ls20{letter-spacing:4.259644px;}
.ls1e{letter-spacing:4.265644px;}
.ls8{letter-spacing:5.311591px;}
.ls13{letter-spacing:5.317591px;}
.ls44{letter-spacing:7.043428px;}
.ls4a{letter-spacing:7.131229px;}
.ls17{letter-spacing:7.168869px;}
.ls36{letter-spacing:7.172706px;}
.lsc{letter-spacing:7.173056px;}
.ls24{letter-spacing:7.174869px;}
.ls4c{letter-spacing:9.086147px;}
.ls19{letter-spacing:10.906869px;}
.ls46{letter-spacing:10.907412px;}
.ls21{letter-spacing:10.910700px;}
.ls4b{letter-spacing:10.910712px;}
.ls2b{letter-spacing:11.452714px;}
.ls35{letter-spacing:13.894528px;}
.ls15{letter-spacing:14.543412px;}
.ls16{letter-spacing:14.549412px;}
.ls14{letter-spacing:16.606335px;}
.lsb{letter-spacing:18.196379px;}
.ls3b{letter-spacing:18.640335px;}
.ls7{letter-spacing:20.860335px;}
.ls9{letter-spacing:21.704706px;}
.ls6{letter-spacing:22.634706px;}
.ls1d{letter-spacing:23.764335px;}
.ls42{letter-spacing:24.091289px;}
.ls43{letter-spacing:24.691289px;}
.ls3e{letter-spacing:25.543289px;}
.ls11{letter-spacing:47.512714px;}
.ls18{letter-spacing:107.416335px;}
.ls31{letter-spacing:124.764141px;}
.ls39{letter-spacing:259.520712px;}
.ls3a{letter-spacing:662.318712px;}
.ls1a{letter-spacing:718.832712px;}
.ls49{letter-spacing:738.560712px;}
.ls22{letter-spacing:745.622712px;}
.ls32{letter-spacing:756.602712px;}
.ls1b{letter-spacing:781.070712px;}
.ls12{letter-spacing:919.010712px;}
.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;}
}
.ws56{word-spacing:-65.454600px;}
.ws52{word-spacing:-51.820407px;}
.ws45{word-spacing:-32.544027px;}
.ws40{word-spacing:-18.261833px;}
.ws82{word-spacing:-18.013106px;}
.ws67{word-spacing:-17.751288px;}
.ws80{word-spacing:-17.685833px;}
.ws9f{word-spacing:-16.573105px;}
.ws95{word-spacing:-16.311286px;}
.ws50{word-spacing:-16.245832px;}
.ws3{word-spacing:-16.049468px;}
.ws55{word-spacing:-15.999405px;}
.ws54{word-spacing:-15.984013px;}
.ws19{word-spacing:-15.918559px;}
.ws92{word-spacing:-15.853104px;}
.ws31{word-spacing:-15.656740px;}
.ws53{word-spacing:-15.525831px;}
.ws66{word-spacing:-15.460377px;}
.ws3a{word-spacing:-15.264013px;}
.ws4{word-spacing:-15.198558px;}
.ws2b{word-spacing:-15.133104px;}
.ws9d{word-spacing:-14.871285px;}
.ws4a{word-spacing:-14.740376px;}
.wsa{word-spacing:-14.609467px;}
.ws5{word-spacing:-14.413103px;}
.ws5e{word-spacing:-14.347648px;}
.ws21{word-spacing:-14.282194px;}
.ws3e{word-spacing:-13.758557px;}
.ws15{word-spacing:-13.693102px;}
.ws28{word-spacing:-13.365829px;}
.wsf{word-spacing:-13.300375px;}
.ws35{word-spacing:-12.842193px;}
.ws6e{word-spacing:-12.711283px;}
.ws6b{word-spacing:-12.580374px;}
.ws2a{word-spacing:-12.449465px;}
.ws83{word-spacing:-12.318556px;}
.ws8b{word-spacing:-12.122192px;}
.ws48{word-spacing:-12.056737px;}
.ws63{word-spacing:-12.018850px;}
.ws29{word-spacing:-11.991283px;}
.ws93{word-spacing:-11.794919px;}
.ws59{word-spacing:-11.467646px;}
.ws30{word-spacing:-11.402191px;}
.wsd{word-spacing:-11.336737px;}
.ws71{word-spacing:-11.205828px;}
.ws96{word-spacing:-11.140373px;}
.ws2{word-spacing:-10.878555px;}
.ws1{word-spacing:-10.813100px;}
.ws14{word-spacing:-10.682191px;}
.ws69{word-spacing:-10.485827px;}
.ws73{word-spacing:-10.354918px;}
.wse{word-spacing:-10.289463px;}
.ws84{word-spacing:-10.224009px;}
.ws37{word-spacing:-10.093099px;}
.ws3d{word-spacing:-9.896736px;}
.ws2e{word-spacing:-9.569463px;}
.ws32{word-spacing:-9.438553px;}
.ws6{word-spacing:-9.373099px;}
.ws2d{word-spacing:-9.307644px;}
.ws1b{word-spacing:-9.242565px;}
.ws17{word-spacing:-9.242190px;}
.ws1c{word-spacing:-9.188767px;}
.ws46{word-spacing:-9.176735px;}
.ws61{word-spacing:-8.980371px;}
.ws72{word-spacing:-8.849462px;}
.ws12{word-spacing:-8.784007px;}
.ws2f{word-spacing:-8.718553px;}
.ws47{word-spacing:-8.587644px;}
.ws88{word-spacing:-8.522189px;}
.ws8c{word-spacing:-8.456734px;}
.ws20{word-spacing:-8.391280px;}
.ws57{word-spacing:-8.260371px;}
.ws70{word-spacing:-8.129461px;}
.ws85{word-spacing:-8.064007px;}
.ws25{word-spacing:-7.998552px;}
.ws33{word-spacing:-7.933098px;}
.ws39{word-spacing:-7.867643px;}
.ws22{word-spacing:-7.802188px;}
.ws27{word-spacing:-7.736734px;}
.ws10{word-spacing:-7.671279px;}
.ws60{word-spacing:-7.605825px;}
.ws18{word-spacing:-7.474915px;}
.ws91{word-spacing:-7.344006px;}
.ws6c{word-spacing:-7.147642px;}
.ws36{word-spacing:-7.082188px;}
.ws65{word-spacing:-6.754915px;}
.ws68{word-spacing:-6.689460px;}
.ws62{word-spacing:-6.624006px;}
.ws34{word-spacing:-6.558551px;}
.ws87{word-spacing:-6.427642px;}
.ws49{word-spacing:-6.362187px;}
.ws4c{word-spacing:-6.165823px;}
.ws1a{word-spacing:-6.100369px;}
.ws6f{word-spacing:-5.969460px;}
.ws24{word-spacing:-5.838550px;}
.ws11{word-spacing:-5.511277px;}
.ws1f{word-spacing:-5.314914px;}
.ws13{word-spacing:-5.184004px;}
.ws5d{word-spacing:-4.987641px;}
.ws81{word-spacing:-4.922186px;}
.ws5c{word-spacing:-4.856731px;}
.wsc{word-spacing:-4.660368px;}
.ws1e{word-spacing:-4.529458px;}
.ws4b{word-spacing:-4.398549px;}
.ws4d{word-spacing:-4.357408px;}
.ws23{word-spacing:-4.333095px;}
.ws16{word-spacing:-4.202185px;}
.ws2c{word-spacing:-4.005822px;}
.ws4e{word-spacing:-3.940367px;}
.ws8{word-spacing:-3.874912px;}
.ws26{word-spacing:-3.547639px;}
.ws4f{word-spacing:-3.416730px;}
.ws9a{word-spacing:-3.089457px;}
.ws6d{word-spacing:-3.024003px;}
.ws8f{word-spacing:-2.893093px;}
.ws6a{word-spacing:-2.107638px;}
.ws58{word-spacing:-1.976729px;}
.ws86{word-spacing:-0.071731px;}
.ws3b{word-spacing:-0.065455px;}
.ws51{word-spacing:-0.047821px;}
.ws41{word-spacing:-0.035866px;}
.wsb{word-spacing:-0.013091px;}
.ws1d{word-spacing:0.000000px;}
.ws9b{word-spacing:9.614461px;}
.ws3f{word-spacing:10.865464px;}
.ws5b{word-spacing:11.750658px;}
.ws44{word-spacing:14.465467px;}
.ws42{word-spacing:14.477951px;}
.ws3c{word-spacing:17.213958px;}
.ws5a{word-spacing:18.100285px;}
.ws43{word-spacing:18.130924px;}
.ws5f{word-spacing:18.136194px;}
.ws98{word-spacing:18.458197px;}
.ws64{word-spacing:20.483951px;}
.ws99{word-spacing:21.600018px;}
.ws94{word-spacing:22.254564px;}
.ws8e{word-spacing:23.170928px;}
.ws9e{word-spacing:24.938203px;}
.wsa0{word-spacing:25.265476px;}
.ws89{word-spacing:25.330930px;}
.ws8d{word-spacing:25.396385px;}
.ws38{word-spacing:26.827469px;}
.ws9c{word-spacing:27.294568px;}
.ws8a{word-spacing:27.425477px;}
.ws97{word-spacing:28.080023px;}
.ws90{word-spacing:30.501844px;}
.ws0{word-spacing:31.418178px;}
.ws7{word-spacing:42.848458px;}
.ws74{word-spacing:88.347732px;}
.ws75{word-spacing:88.401531px;}
.ws9{word-spacing:94.598843px;}
.ws77{word-spacing:112.031916px;}
.ws76{word-spacing:131.763041px;}
.ws7f{word-spacing:136.013115px;}
.ws7a{word-spacing:137.411873px;}
.ws7c{word-spacing:139.015066px;}
.ws79{word-spacing:139.456212px;}
.ws7e{word-spacing:141.005606px;}
.ws7d{word-spacing:141.926277px;}
.ws7b{word-spacing:149.522961px;}
.ws78{word-spacing:153.615437px;}
._26{margin-left:-38.125311px;}
._1e{margin-left:-17.254012px;}
._21{margin-left:-7.187459px;}
._10{margin-left:-5.899878px;}
._3{margin-left:-4.703767px;}
._4{margin-left:-3.534548px;}
._1{margin-left:-2.496239px;}
._2{margin-left:-1.038310px;}
._a{width:1.062519px;}
._0{width:2.668393px;}
._c{width:3.763193px;}
._36{width:5.377114px;}
._35{width:9.185593px;}
._23{width:10.836119px;}
._27{width:14.727285px;}
._6{width:16.313441px;}
._1a{width:18.181133px;}
._9{width:19.300143px;}
._38{width:20.403009px;}
._1f{width:21.608982px;}
._39{width:23.245347px;}
._d{width:24.464775px;}
._11{width:26.166595px;}
._5{width:27.360023px;}
._7{width:28.684360px;}
._20{width:30.296516px;}
._8{width:31.305227px;}
._18{width:33.212391px;}
._19{width:34.821847px;}
._14{width:35.934575px;}
._13{width:37.093040px;}
._1d{width:39.010942px;}
._1b{width:40.254579px;}
._17{width:42.480035px;}
._12{width:43.601728px;}
._e{width:45.606611px;}
._34{width:47.373885px;}
._f{width:48.608558px;}
._16{width:49.713215px;}
._22{width:51.545944px;}
._37{width:53.030815px;}
._28{width:54.211654px;}
._25{width:55.890534px;}
._b{width:61.592779px;}
._1c{width:80.697600px;}
._15{width:94.684920px;}
._32{width:148.017889px;}
._29{width:155.921212px;}
._2b{width:165.053491px;}
._2e{width:167.097830px;}
._2c{width:168.604186px;}
._2f{width:174.360614px;}
._2a{width:176.535857px;}
._2d{width:182.591770px;}
._30{width:190.177344px;}
._31{width:204.380122px;}
._33{width:209.759962px;}
._24{width:258.818504px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fs2{font-size:47.820600px;}
.fs5{font-size:53.798400px;}
.fs1{font-size:65.454600px;}
.fs3{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y76{bottom:132.675000px;}
.y29{bottom:133.645500px;}
.y52{bottom:137.020500px;}
.ya2{bottom:142.920000px;}
.y75{bottom:148.414500px;}
.yb9{bottom:149.337000px;}
.y28{bottom:150.084000px;}
.y74{bottom:152.998500px;}
.y51{bottom:157.345500px;}
.ya1{bottom:163.243500px;}
.y27{bottom:166.522500px;}
.yb8{bottom:169.660500px;}
.y73{bottom:173.322000px;}
.y50{bottom:177.669000px;}
.ydd{bottom:180.516000px;}
.ya0{bottom:183.567000px;}
.y26{bottom:191.350500px;}
.y4f{bottom:197.992500px;}
.yb7{bottom:200.550000px;}
.ydc{bottom:200.839500px;}
.y9f{bottom:203.890500px;}
.y72{bottom:204.211500px;}
.y25{bottom:211.674000px;}
.ydb{bottom:221.163000px;}
.y9e{bottom:224.214000px;}
.y4e{bottom:228.882000px;}
.y24{bottom:231.997500px;}
.yda{bottom:241.486500px;}
.yb6{bottom:244.363500px;}
.y9d{bottom:244.539000px;}
.y71{bottom:245.064000px;}
.y23{bottom:252.321000px;}
.y6f{bottom:256.288500px;}
.yb5{bottom:264.687000px;}
.y9c{bottom:264.862500px;}
.y70{bottom:265.659000px;}
.y4d{bottom:266.004000px;}
.y22{bottom:272.646000px;}
.yd9{bottom:275.260500px;}
.yb4{bottom:285.012000px;}
.y9b{bottom:285.186000px;}
.y21{bottom:292.969500px;}
.yd8{bottom:295.584000px;}
.yb3{bottom:305.335500px;}
.y9a{bottom:305.509500px;}
.y6e{bottom:310.935000px;}
.y20{bottom:313.293000px;}
.yd7{bottom:315.907500px;}
.y4c{bottom:317.556000px;}
.yb2{bottom:325.659000px;}
.y99{bottom:325.833000px;}
.y1f{bottom:333.616500px;}
.yd6{bottom:336.231000px;}
.y4b{bottom:337.879500px;}
.y6c{bottom:338.721000px;}
.y6d{bottom:339.865500px;}
.yb1{bottom:345.982500px;}
.y98{bottom:346.158000px;}
.y1e{bottom:353.940000px;}
.y4a{bottom:358.203000px;}
.yb0{bottom:366.306000px;}
.y97{bottom:366.481500px;}
.yd5{bottom:370.005000px;}
.y1d{bottom:374.265000px;}
.y49{bottom:378.528000px;}
.y96{bottom:386.805000px;}
.yd4{bottom:390.328500px;}
.y6b{bottom:391.867500px;}
.y1c{bottom:394.588500px;}
.y48{bottom:398.851500px;}
.yaf{bottom:402.831000px;}
.y95{bottom:407.128500px;}
.yd3{bottom:410.652000px;}
.y1b{bottom:414.912000px;}
.y47{bottom:419.175000px;}
.y94{bottom:427.452000px;}
.y6a{bottom:432.514500px;}
.y1a{bottom:435.235500px;}
.y46{bottom:439.498500px;}
.yd2{bottom:444.426000px;}
.y93{bottom:447.777000px;}
.y69{bottom:452.839500px;}
.y19{bottom:455.559000px;}
.yae{bottom:457.564500px;}
.y45{bottom:459.822000px;}
.yd1{bottom:464.749500px;}
.y92{bottom:468.100500px;}
.y68{bottom:473.163000px;}
.y18{bottom:475.884000px;}
.y44{bottom:480.147000px;}
.yd0{bottom:485.073000px;}
.y91{bottom:488.424000px;}
.y67{bottom:493.486500px;}
.y17{bottom:496.207500px;}
.y43{bottom:500.470500px;}
.ycf{bottom:505.396500px;}
.y90{bottom:508.747500px;}
.y66{bottom:513.810000px;}
.y16{bottom:516.531000px;}
.y42{bottom:520.794000px;}
.y8f{bottom:529.071000px;}
.y65{bottom:534.133500px;}
.y15{bottom:536.854500px;}
.yce{bottom:539.170500px;}
.y41{bottom:541.117500px;}
.y8e{bottom:549.394500px;}
.y64{bottom:554.458500px;}
.y14{bottom:557.178000px;}
.ycd{bottom:559.494000px;}
.y40{bottom:561.441000px;}
.y8d{bottom:569.719500px;}
.y63{bottom:574.782000px;}
.y13{bottom:577.503000px;}
.y3f{bottom:581.766000px;}
.yad{bottom:585.795000px;}
.y8c{bottom:590.043000px;}
.ycc{bottom:593.268000px;}
.y62{bottom:595.105500px;}
.y12{bottom:597.826500px;}
.y3e{bottom:602.089500px;}
.y8b{bottom:610.366500px;}
.ycb{bottom:613.591500px;}
.y11{bottom:618.150000px;}
.y3d{bottom:622.413000px;}
.y61{bottom:625.995000px;}
.y8a{bottom:630.690000px;}
.yca{bottom:633.915000px;}
.y10{bottom:638.473500px;}
.y3c{bottom:642.736500px;}
.y89{bottom:651.013500px;}
.yc9{bottom:654.238500px;}
.yf{bottom:658.797000px;}
.y3b{bottom:663.060000px;}
.y60{bottom:669.808500px;}
.y88{bottom:671.338500px;}
.y3a{bottom:683.385000px;}
.yc8{bottom:688.012500px;}
.y5f{bottom:690.132000px;}
.y87{bottom:691.662000px;}
.ye{bottom:695.322000px;}
.yc7{bottom:708.336000px;}
.y5e{bottom:710.455500px;}
.y86{bottom:711.985500px;}
.y39{bottom:719.908500px;}
.yc6{bottom:728.659500px;}
.y5d{bottom:730.780500px;}
.y85{bottom:732.309000px;}
.yd{bottom:746.874000px;}
.y5c{bottom:751.104000px;}
.yc5{bottom:762.433500px;}
.yc{bottom:767.197500px;}
.y84{bottom:768.834000px;}
.y5b{bottom:771.427500px;}
.y38{bottom:771.460500px;}
.yc4{bottom:782.757000px;}
.y5a{bottom:791.751000px;}
.y37{bottom:791.784000px;}
.yb{bottom:808.782000px;}
.y59{bottom:812.074500px;}
.y36{bottom:812.109000px;}
.yc3{bottom:816.531000px;}
.y83{bottom:820.386000px;}
.ya{bottom:829.105500px;}
.y35{bottom:832.432500px;}
.yc2{bottom:836.854500px;}
.y82{bottom:840.709500px;}
.y58{bottom:842.964000px;}
.y9{bottom:849.429000px;}
.y34{bottom:852.756000px;}
.y81{bottom:861.033000px;}
.y8{bottom:869.752500px;}
.yc1{bottom:870.627000px;}
.y33{bottom:873.079500px;}
.y80{bottom:881.356500px;}
.y57{bottom:886.777500px;}
.y7{bottom:890.076000px;}
.y32{bottom:893.403000px;}
.yc0{bottom:904.401000px;}
.yac{bottom:907.944000px;}
.y7f{bottom:912.246000px;}
.y31{bottom:913.726500px;}
.yab{bottom:924.382500px;}
.ybf{bottom:924.724500px;}
.y56{bottom:925.914000px;}
.y6{bottom:928.333500px;}
.y30{bottom:934.051500px;}
.y55{bottom:937.138500px;}
.yaa{bottom:940.821000px;}
.ybe{bottom:945.048000px;}
.y2f{bottom:954.375000px;}
.y7c{bottom:954.741000px;}
.ya9{bottom:957.259500px;}
.y5{bottom:970.515000px;}
.ya8{bottom:973.698000px;}
.y78{bottom:974.373000px;}
.y2e{bottom:974.698500px;}
.y79{bottom:977.809500px;}
.ybd{bottom:978.822000px;}
.y7b{bottom:989.917500px;}
.ya7{bottom:990.136500px;}
.y4{bottom:990.838500px;}
.y53{bottom:992.398500px;}
.y7a{bottom:994.827000px;}
.y2d{bottom:995.022000px;}
.y54{bottom:996.400500px;}
.y7e{bottom:998.497500px;}
.ybc{bottom:999.145500px;}
.ya6{bottom:1006.575000px;}
.y7d{bottom:1008.073500px;}
.y3{bottom:1011.162000px;}
.y2c{bottom:1015.345500px;}
.ybb{bottom:1019.469000px;}
.ya5{bottom:1023.013500px;}
.y2b{bottom:1035.670500px;}
.yba{bottom:1039.792500px;}
.ya4{bottom:1047.660000px;}
.y2{bottom:1049.418000px;}
.y2a{bottom:1055.994000px;}
.ya3{bottom:1066.542000px;}
.y77{bottom:1071.735000px;}
.y1{bottom:1076.317500px;}
.hc{height:3.272730px;}
.h5{height:23.922355px;}
.h17{height:24.871000px;}
.h16{height:26.899200px;}
.h15{height:33.187496px;}
.hf{height:35.865450px;}
.h18{height:40.402598px;}
.h8{height:42.966595px;}
.h19{height:49.156405px;}
.h4{height:50.283571px;}
.h12{height:56.941496px;}
.h3{height:58.974595px;}
.h6{height:59.613450px;}
.h2{height:60.340117px;}
.h13{height:77.304595px;}
.h11{height:77.310595px;}
.h7{height:85.813200px;}
.hb{height:93.370950px;}
.h9{height:95.564730px;}
.h10{height:103.872595px;}
.he{height:129.027450px;}
.h14{height:134.834730px;}
.ha{height:140.462730px;}
.hd{height:170.112595px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:127.558500px;}
.x23{left:143.830500px;}
.x9{left:146.209500px;}
.x16{left:154.842000px;}
.x8{left:157.447500px;}
.x1{left:161.122500px;}
.x20{left:211.830000px;}
.x21{left:227.256000px;}
.x22{left:231.493500px;}
.x2{left:292.201500px;}
.x12{left:313.933500px;}
.x4{left:317.262000px;}
.x5{left:323.809500px;}
.x3{left:327.090000px;}
.x17{left:332.994000px;}
.xe{left:334.758000px;}
.xf{left:337.504500px;}
.xd{left:343.620000px;}
.x1f{left:345.051000px;}
.xa{left:378.105000px;}
.x6{left:407.914500px;}
.x10{left:424.395000px;}
.x18{left:425.982000px;}
.x1a{left:440.874000px;}
.x19{left:447.862500px;}
.x14{left:461.271000px;}
.x1b{left:466.473000px;}
.x11{left:467.631000px;}
.xb{left:478.479000px;}
.xc{left:510.162000px;}
.x13{left:520.333500px;}
.x1c{left:527.883000px;}
.x1d{left:544.311000px;}
.x1e{left:555.375000px;}
.x15{left:596.745000px;}
@media print{
.va{vertical-align:-52.842667pt;}
.v2{vertical-align:-20.314667pt;}
.v4{vertical-align:-14.229333pt;}
.vb{vertical-align:-11.157333pt;}
.v8{vertical-align:-9.477333pt;}
.v9{vertical-align:-7.674667pt;}
.v18{vertical-align:-5.312000pt;}
.vf{vertical-align:-4.074667pt;}
.v0{vertical-align:0.000000pt;}
.vd{vertical-align:5.786667pt;}
.vc{vertical-align:13.285333pt;}
.v15{vertical-align:16.298667pt;}
.v1{vertical-align:21.114667pt;}
.v17{vertical-align:24.021333pt;}
.v3{vertical-align:30.901333pt;}
.v11{vertical-align:36.944000pt;}
.v6{vertical-align:39.360000pt;}
.v13{vertical-align:44.666667pt;}
.v12{vertical-align:54.144000pt;}
.v14{vertical-align:75.312000pt;}
.v5{vertical-align:82.037333pt;}
.v10{vertical-align:97.781333pt;}
.ve{vertical-align:102.864000pt;}
.v16{vertical-align:116.944000pt;}
.v7{vertical-align:121.946667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2d{letter-spacing:0.000125pt;}
.lse{letter-spacing:0.000297pt;}
.ls28{letter-spacing:0.000336pt;}
.ls3d{letter-spacing:0.000935pt;}
.ls2f{letter-spacing:0.001146pt;}
.lsf{letter-spacing:0.001242pt;}
.ls2c{letter-spacing:0.001739pt;}
.ls2a{letter-spacing:0.002034pt;}
.ls3f{letter-spacing:0.002389pt;}
.ls45{letter-spacing:0.002397pt;}
.ls1f{letter-spacing:0.002400pt;}
.ls4{letter-spacing:0.002405pt;}
.ls38{letter-spacing:0.002411pt;}
.ls25{letter-spacing:0.002842pt;}
.ls41{letter-spacing:0.003370pt;}
.ls30{letter-spacing:0.004025pt;}
.ls34{letter-spacing:0.004150pt;}
.ls2e{letter-spacing:0.004345pt;}
.ls23{letter-spacing:0.004347pt;}
.ls27{letter-spacing:0.004618pt;}
.ls10{letter-spacing:0.004927pt;}
.ls4e{letter-spacing:0.006658pt;}
.lsd{letter-spacing:1.703229pt;}
.ls1c{letter-spacing:1.827854pt;}
.ls5{letter-spacing:1.833187pt;}
.ls26{letter-spacing:1.844586pt;}
.ls33{letter-spacing:2.449323pt;}
.ls2{letter-spacing:2.653258pt;}
.ls0{letter-spacing:2.654327pt;}
.ls4f{letter-spacing:2.656473pt;}
.ls47{letter-spacing:2.657146pt;}
.ls4d{letter-spacing:2.658591pt;}
.ls48{letter-spacing:2.658717pt;}
.ls40{letter-spacing:2.659980pt;}
.ls3c{letter-spacing:2.662479pt;}
.ls29{letter-spacing:3.319489pt;}
.ls37{letter-spacing:3.324822pt;}
.lsa{letter-spacing:3.352213pt;}
.ls3{letter-spacing:3.354146pt;}
.ls20{letter-spacing:3.786350pt;}
.ls1e{letter-spacing:3.791684pt;}
.ls8{letter-spacing:4.721414pt;}
.ls13{letter-spacing:4.726748pt;}
.ls44{letter-spacing:6.260825pt;}
.ls4a{letter-spacing:6.338870pt;}
.ls17{letter-spacing:6.372328pt;}
.ls36{letter-spacing:6.375739pt;}
.lsc{letter-spacing:6.376050pt;}
.ls24{letter-spacing:6.377661pt;}
.ls4c{letter-spacing:8.076575pt;}
.ls19{letter-spacing:9.694995pt;}
.ls46{letter-spacing:9.695477pt;}
.ls21{letter-spacing:9.698400pt;}
.ls4b{letter-spacing:9.698411pt;}
.ls2b{letter-spacing:10.180190pt;}
.ls35{letter-spacing:12.350692pt;}
.ls15{letter-spacing:12.927477pt;}
.ls16{letter-spacing:12.932811pt;}
.ls14{letter-spacing:14.761187pt;}
.lsb{letter-spacing:16.174559pt;}
.ls3b{letter-spacing:16.569187pt;}
.ls7{letter-spacing:18.542520pt;}
.ls9{letter-spacing:19.293072pt;}
.ls6{letter-spacing:20.119739pt;}
.ls1d{letter-spacing:21.123854pt;}
.ls42{letter-spacing:21.414479pt;}
.ls43{letter-spacing:21.947812pt;}
.ls3e{letter-spacing:22.705146pt;}
.ls11{letter-spacing:42.233523pt;}
.ls18{letter-spacing:95.481187pt;}
.ls31{letter-spacing:110.901459pt;}
.ls39{letter-spacing:230.685077pt;}
.ls3a{letter-spacing:588.727744pt;}
.ls1a{letter-spacing:638.962411pt;}
.ls49{letter-spacing:656.498411pt;}
.ls22{letter-spacing:662.775744pt;}
.ls32{letter-spacing:672.535744pt;}
.ls1b{letter-spacing:694.285077pt;}
.ls12{letter-spacing:816.898411pt;}
.ws56{word-spacing:-58.181867pt;}
.ws52{word-spacing:-46.062584pt;}
.ws45{word-spacing:-28.928024pt;}
.ws40{word-spacing:-16.232741pt;}
.ws82{word-spacing:-16.011650pt;}
.ws67{word-spacing:-15.778922pt;}
.ws80{word-spacing:-15.720740pt;}
.ws9f{word-spacing:-14.731649pt;}
.ws95{word-spacing:-14.498921pt;}
.ws50{word-spacing:-14.440739pt;}
.ws3{word-spacing:-14.266194pt;}
.ws55{word-spacing:-14.221693pt;}
.ws54{word-spacing:-14.208012pt;}
.ws19{word-spacing:-14.149830pt;}
.ws92{word-spacing:-14.091648pt;}
.ws31{word-spacing:-13.917103pt;}
.ws53{word-spacing:-13.800739pt;}
.ws66{word-spacing:-13.742557pt;}
.ws3a{word-spacing:-13.568011pt;}
.ws4{word-spacing:-13.509829pt;}
.ws2b{word-spacing:-13.451648pt;}
.ws9d{word-spacing:-13.218920pt;}
.ws4a{word-spacing:-13.102556pt;}
.wsa{word-spacing:-12.986193pt;}
.ws5{word-spacing:-12.811647pt;}
.ws5e{word-spacing:-12.753465pt;}
.ws21{word-spacing:-12.695283pt;}
.ws3e{word-spacing:-12.229828pt;}
.ws15{word-spacing:-12.171647pt;}
.ws28{word-spacing:-11.880737pt;}
.wsf{word-spacing:-11.822555pt;}
.ws35{word-spacing:-11.415282pt;}
.ws6e{word-spacing:-11.298919pt;}
.ws6b{word-spacing:-11.182555pt;}
.ws2a{word-spacing:-11.066191pt;}
.ws83{word-spacing:-10.949827pt;}
.ws8b{word-spacing:-10.775282pt;}
.ws48{word-spacing:-10.717100pt;}
.ws63{word-spacing:-10.683422pt;}
.ws29{word-spacing:-10.658918pt;}
.ws93{word-spacing:-10.484372pt;}
.ws59{word-spacing:-10.193463pt;}
.ws30{word-spacing:-10.135281pt;}
.wsd{word-spacing:-10.077099pt;}
.ws71{word-spacing:-9.960736pt;}
.ws96{word-spacing:-9.902554pt;}
.ws2{word-spacing:-9.669826pt;}
.ws1{word-spacing:-9.611644pt;}
.ws14{word-spacing:-9.495281pt;}
.ws69{word-spacing:-9.320735pt;}
.ws73{word-spacing:-9.204371pt;}
.wse{word-spacing:-9.146189pt;}
.ws84{word-spacing:-9.088008pt;}
.ws37{word-spacing:-8.971644pt;}
.ws3d{word-spacing:-8.797098pt;}
.ws2e{word-spacing:-8.506189pt;}
.ws32{word-spacing:-8.389825pt;}
.ws6{word-spacing:-8.331643pt;}
.ws2d{word-spacing:-8.273461pt;}
.ws1b{word-spacing:-8.215613pt;}
.ws17{word-spacing:-8.215280pt;}
.ws1c{word-spacing:-8.167793pt;}
.ws46{word-spacing:-8.157098pt;}
.ws61{word-spacing:-7.982552pt;}
.ws72{word-spacing:-7.866188pt;}
.ws12{word-spacing:-7.808007pt;}
.ws2f{word-spacing:-7.749825pt;}
.ws47{word-spacing:-7.633461pt;}
.ws88{word-spacing:-7.575279pt;}
.ws8c{word-spacing:-7.517097pt;}
.ws20{word-spacing:-7.458915pt;}
.ws57{word-spacing:-7.342552pt;}
.ws70{word-spacing:-7.226188pt;}
.ws85{word-spacing:-7.168006pt;}
.ws25{word-spacing:-7.109824pt;}
.ws33{word-spacing:-7.051642pt;}
.ws39{word-spacing:-6.993460pt;}
.ws22{word-spacing:-6.935279pt;}
.ws27{word-spacing:-6.877097pt;}
.ws10{word-spacing:-6.818915pt;}
.ws60{word-spacing:-6.760733pt;}
.ws18{word-spacing:-6.644369pt;}
.ws91{word-spacing:-6.528005pt;}
.ws6c{word-spacing:-6.353460pt;}
.ws36{word-spacing:-6.295278pt;}
.ws65{word-spacing:-6.004369pt;}
.ws68{word-spacing:-5.946187pt;}
.ws62{word-spacing:-5.888005pt;}
.ws34{word-spacing:-5.829823pt;}
.ws87{word-spacing:-5.713459pt;}
.ws49{word-spacing:-5.655277pt;}
.ws4c{word-spacing:-5.480732pt;}
.ws1a{word-spacing:-5.422550pt;}
.ws6f{word-spacing:-5.306186pt;}
.ws24{word-spacing:-5.189823pt;}
.ws11{word-spacing:-4.898913pt;}
.ws1f{word-spacing:-4.724368pt;}
.ws13{word-spacing:-4.608004pt;}
.ws5d{word-spacing:-4.433458pt;}
.ws81{word-spacing:-4.375276pt;}
.ws5c{word-spacing:-4.317095pt;}
.wsc{word-spacing:-4.142549pt;}
.ws1e{word-spacing:-4.026185pt;}
.ws4b{word-spacing:-3.909821pt;}
.ws4d{word-spacing:-3.873252pt;}
.ws23{word-spacing:-3.851640pt;}
.ws16{word-spacing:-3.735276pt;}
.ws2c{word-spacing:-3.560730pt;}
.ws4e{word-spacing:-3.502548pt;}
.ws8{word-spacing:-3.444367pt;}
.ws26{word-spacing:-3.153457pt;}
.ws4f{word-spacing:-3.037093pt;}
.ws9a{word-spacing:-2.746184pt;}
.ws6d{word-spacing:-2.688002pt;}
.ws8f{word-spacing:-2.571639pt;}
.ws6a{word-spacing:-1.873456pt;}
.ws58{word-spacing:-1.757092pt;}
.ws86{word-spacing:-0.063761pt;}
.ws3b{word-spacing:-0.058182pt;}
.ws51{word-spacing:-0.042507pt;}
.ws41{word-spacing:-0.031881pt;}
.wsb{word-spacing:-0.011636pt;}
.ws1d{word-spacing:0.000000pt;}
.ws9b{word-spacing:8.546187pt;}
.ws3f{word-spacing:9.658190pt;}
.ws5b{word-spacing:10.445029pt;}
.ws44{word-spacing:12.858193pt;}
.ws42{word-spacing:12.869290pt;}
.ws3c{word-spacing:15.301296pt;}
.ws5a{word-spacing:16.089142pt;}
.ws43{word-spacing:16.116377pt;}
.ws5f{word-spacing:16.121062pt;}
.ws98{word-spacing:16.407286pt;}
.ws64{word-spacing:18.207957pt;}
.ws99{word-spacing:19.200016pt;}
.ws94{word-spacing:19.781835pt;}
.ws8e{word-spacing:20.596381pt;}
.ws9e{word-spacing:22.167291pt;}
.wsa0{word-spacing:22.458201pt;}
.ws89{word-spacing:22.516382pt;}
.ws8d{word-spacing:22.574564pt;}
.ws38{word-spacing:23.846639pt;}
.ws9c{word-spacing:24.261838pt;}
.ws8a{word-spacing:24.378202pt;}
.ws97{word-spacing:24.960021pt;}
.ws90{word-spacing:27.112750pt;}
.ws0{word-spacing:27.927269pt;}
.ws7{word-spacing:38.087518pt;}
.ws74{word-spacing:78.531318pt;}
.ws75{word-spacing:78.579139pt;}
.ws9{word-spacing:84.087860pt;}
.ws77{word-spacing:99.583925pt;}
.ws76{word-spacing:117.122703pt;}
.ws7f{word-spacing:120.900547pt;}
.ws7a{word-spacing:122.143887pt;}
.ws7c{word-spacing:123.568947pt;}
.ws79{word-spacing:123.961078pt;}
.ws7e{word-spacing:125.338317pt;}
.ws7d{word-spacing:126.156691pt;}
.ws7b{word-spacing:132.909298pt;}
.ws78{word-spacing:136.547055pt;}
._26{margin-left:-33.889166pt;}
._1e{margin-left:-15.336900pt;}
._21{margin-left:-6.388852pt;}
._10{margin-left:-5.244336pt;}
._3{margin-left:-4.181126pt;}
._4{margin-left:-3.141821pt;}
._1{margin-left:-2.218879pt;}
._2{margin-left:-0.922942pt;}
._a{width:0.944461pt;}
._0{width:2.371905pt;}
._c{width:3.345061pt;}
._36{width:4.779657pt;}
._35{width:8.164971pt;}
._23{width:9.632106pt;}
._27{width:13.090920pt;}
._6{width:14.500836pt;}
._1a{width:16.161007pt;}
._9{width:17.155683pt;}
._38{width:18.136008pt;}
._1f{width:19.207984pt;}
._39{width:20.662531pt;}
._d{width:21.746467pt;}
._11{width:23.259195pt;}
._5{width:24.320020pt;}
._7{width:25.497209pt;}
._20{width:26.930236pt;}
._8{width:27.826868pt;}
._18{width:29.522125pt;}
._19{width:30.952753pt;}
._14{width:31.941845pt;}
._13{width:32.971591pt;}
._1d{width:34.676393pt;}
._1b{width:35.781848pt;}
._17{width:37.760031pt;}
._12{width:38.757091pt;}
._e{width:40.539210pt;}
._34{width:42.110120pt;}
._f{width:43.207607pt;}
._16{width:44.189524pt;}
._22{width:45.818617pt;}
._37{width:47.138502pt;}
._28{width:48.188137pt;}
._25{width:49.680474pt;}
._b{width:54.749137pt;}
._1c{width:71.731200pt;}
._15{width:84.164373pt;}
._32{width:131.571457pt;}
._29{width:138.596633pt;}
._2b{width:146.714214pt;}
._2e{width:148.531405pt;}
._2c{width:149.870387pt;}
._2f{width:154.987213pt;}
._2a{width:156.920762pt;}
._2d{width:162.303795pt;}
._30{width:169.046528pt;}
._31{width:181.671219pt;}
._33{width:186.453299pt;}
._24{width:230.060892pt;}
.fs4{font-size:31.880533pt;}
.fs2{font-size:42.507200pt;}
.fs5{font-size:47.820800pt;}
.fs1{font-size:58.181867pt;}
.fs3{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y76{bottom:117.933333pt;}
.y29{bottom:118.796000pt;}
.y52{bottom:121.796000pt;}
.ya2{bottom:127.040000pt;}
.y75{bottom:131.924000pt;}
.yb9{bottom:132.744000pt;}
.y28{bottom:133.408000pt;}
.y74{bottom:135.998667pt;}
.y51{bottom:139.862667pt;}
.ya1{bottom:145.105333pt;}
.y27{bottom:148.020000pt;}
.yb8{bottom:150.809333pt;}
.y73{bottom:154.064000pt;}
.y50{bottom:157.928000pt;}
.ydd{bottom:160.458667pt;}
.ya0{bottom:163.170667pt;}
.y26{bottom:170.089333pt;}
.y4f{bottom:175.993333pt;}
.yb7{bottom:178.266667pt;}
.ydc{bottom:178.524000pt;}
.y9f{bottom:181.236000pt;}
.y72{bottom:181.521333pt;}
.y25{bottom:188.154667pt;}
.ydb{bottom:196.589333pt;}
.y9e{bottom:199.301333pt;}
.y4e{bottom:203.450667pt;}
.y24{bottom:206.220000pt;}
.yda{bottom:214.654667pt;}
.yb6{bottom:217.212000pt;}
.y9d{bottom:217.368000pt;}
.y71{bottom:217.834667pt;}
.y23{bottom:224.285333pt;}
.y6f{bottom:227.812000pt;}
.yb5{bottom:235.277333pt;}
.y9c{bottom:235.433333pt;}
.y70{bottom:236.141333pt;}
.y4d{bottom:236.448000pt;}
.y22{bottom:242.352000pt;}
.yd9{bottom:244.676000pt;}
.yb4{bottom:253.344000pt;}
.y9b{bottom:253.498667pt;}
.y21{bottom:260.417333pt;}
.yd8{bottom:262.741333pt;}
.yb3{bottom:271.409333pt;}
.y9a{bottom:271.564000pt;}
.y6e{bottom:276.386667pt;}
.y20{bottom:278.482667pt;}
.yd7{bottom:280.806667pt;}
.y4c{bottom:282.272000pt;}
.yb2{bottom:289.474667pt;}
.y99{bottom:289.629333pt;}
.y1f{bottom:296.548000pt;}
.yd6{bottom:298.872000pt;}
.y4b{bottom:300.337333pt;}
.y6c{bottom:301.085333pt;}
.y6d{bottom:302.102667pt;}
.yb1{bottom:307.540000pt;}
.y98{bottom:307.696000pt;}
.y1e{bottom:314.613333pt;}
.y4a{bottom:318.402667pt;}
.yb0{bottom:325.605333pt;}
.y97{bottom:325.761333pt;}
.yd5{bottom:328.893333pt;}
.y1d{bottom:332.680000pt;}
.y49{bottom:336.469333pt;}
.y96{bottom:343.826667pt;}
.yd4{bottom:346.958667pt;}
.y6b{bottom:348.326667pt;}
.y1c{bottom:350.745333pt;}
.y48{bottom:354.534667pt;}
.yaf{bottom:358.072000pt;}
.y95{bottom:361.892000pt;}
.yd3{bottom:365.024000pt;}
.y1b{bottom:368.810667pt;}
.y47{bottom:372.600000pt;}
.y94{bottom:379.957333pt;}
.y6a{bottom:384.457333pt;}
.y1a{bottom:386.876000pt;}
.y46{bottom:390.665333pt;}
.yd2{bottom:395.045333pt;}
.y93{bottom:398.024000pt;}
.y69{bottom:402.524000pt;}
.y19{bottom:404.941333pt;}
.yae{bottom:406.724000pt;}
.y45{bottom:408.730667pt;}
.yd1{bottom:413.110667pt;}
.y92{bottom:416.089333pt;}
.y68{bottom:420.589333pt;}
.y18{bottom:423.008000pt;}
.y44{bottom:426.797333pt;}
.yd0{bottom:431.176000pt;}
.y91{bottom:434.154667pt;}
.y67{bottom:438.654667pt;}
.y17{bottom:441.073333pt;}
.y43{bottom:444.862667pt;}
.ycf{bottom:449.241333pt;}
.y90{bottom:452.220000pt;}
.y66{bottom:456.720000pt;}
.y16{bottom:459.138667pt;}
.y42{bottom:462.928000pt;}
.y8f{bottom:470.285333pt;}
.y65{bottom:474.785333pt;}
.y15{bottom:477.204000pt;}
.yce{bottom:479.262667pt;}
.y41{bottom:480.993333pt;}
.y8e{bottom:488.350667pt;}
.y64{bottom:492.852000pt;}
.y14{bottom:495.269333pt;}
.ycd{bottom:497.328000pt;}
.y40{bottom:499.058667pt;}
.y8d{bottom:506.417333pt;}
.y63{bottom:510.917333pt;}
.y13{bottom:513.336000pt;}
.y3f{bottom:517.125333pt;}
.yad{bottom:520.706667pt;}
.y8c{bottom:524.482667pt;}
.ycc{bottom:527.349333pt;}
.y62{bottom:528.982667pt;}
.y12{bottom:531.401333pt;}
.y3e{bottom:535.190667pt;}
.y8b{bottom:542.548000pt;}
.ycb{bottom:545.414667pt;}
.y11{bottom:549.466667pt;}
.y3d{bottom:553.256000pt;}
.y61{bottom:556.440000pt;}
.y8a{bottom:560.613333pt;}
.yca{bottom:563.480000pt;}
.y10{bottom:567.532000pt;}
.y3c{bottom:571.321333pt;}
.y89{bottom:578.678667pt;}
.yc9{bottom:581.545333pt;}
.yf{bottom:585.597333pt;}
.y3b{bottom:589.386667pt;}
.y60{bottom:595.385333pt;}
.y88{bottom:596.745333pt;}
.y3a{bottom:607.453333pt;}
.yc8{bottom:611.566667pt;}
.y5f{bottom:613.450667pt;}
.y87{bottom:614.810667pt;}
.ye{bottom:618.064000pt;}
.yc7{bottom:629.632000pt;}
.y5e{bottom:631.516000pt;}
.y86{bottom:632.876000pt;}
.y39{bottom:639.918667pt;}
.yc6{bottom:647.697333pt;}
.y5d{bottom:649.582667pt;}
.y85{bottom:650.941333pt;}
.yd{bottom:663.888000pt;}
.y5c{bottom:667.648000pt;}
.yc5{bottom:677.718667pt;}
.yc{bottom:681.953333pt;}
.y84{bottom:683.408000pt;}
.y5b{bottom:685.713333pt;}
.y38{bottom:685.742667pt;}
.yc4{bottom:695.784000pt;}
.y5a{bottom:703.778667pt;}
.y37{bottom:703.808000pt;}
.yb{bottom:718.917333pt;}
.y59{bottom:721.844000pt;}
.y36{bottom:721.874667pt;}
.yc3{bottom:725.805333pt;}
.y83{bottom:729.232000pt;}
.ya{bottom:736.982667pt;}
.y35{bottom:739.940000pt;}
.yc2{bottom:743.870667pt;}
.y82{bottom:747.297333pt;}
.y58{bottom:749.301333pt;}
.y9{bottom:755.048000pt;}
.y34{bottom:758.005333pt;}
.y81{bottom:765.362667pt;}
.y8{bottom:773.113333pt;}
.yc1{bottom:773.890667pt;}
.y33{bottom:776.070667pt;}
.y80{bottom:783.428000pt;}
.y57{bottom:788.246667pt;}
.y7{bottom:791.178667pt;}
.y32{bottom:794.136000pt;}
.yc0{bottom:803.912000pt;}
.yac{bottom:807.061333pt;}
.y7f{bottom:810.885333pt;}
.y31{bottom:812.201333pt;}
.yab{bottom:821.673333pt;}
.ybf{bottom:821.977333pt;}
.y56{bottom:823.034667pt;}
.y6{bottom:825.185333pt;}
.y30{bottom:830.268000pt;}
.y55{bottom:833.012000pt;}
.yaa{bottom:836.285333pt;}
.ybe{bottom:840.042667pt;}
.y2f{bottom:848.333333pt;}
.y7c{bottom:848.658667pt;}
.ya9{bottom:850.897333pt;}
.y5{bottom:862.680000pt;}
.ya8{bottom:865.509333pt;}
.y78{bottom:866.109333pt;}
.y2e{bottom:866.398667pt;}
.y79{bottom:869.164000pt;}
.ybd{bottom:870.064000pt;}
.y7b{bottom:879.926667pt;}
.ya7{bottom:880.121333pt;}
.y4{bottom:880.745333pt;}
.y53{bottom:882.132000pt;}
.y7a{bottom:884.290667pt;}
.y2d{bottom:884.464000pt;}
.y54{bottom:885.689333pt;}
.y7e{bottom:887.553333pt;}
.ybc{bottom:888.129333pt;}
.ya6{bottom:894.733333pt;}
.y7d{bottom:896.065333pt;}
.y3{bottom:898.810667pt;}
.y2c{bottom:902.529333pt;}
.ybb{bottom:906.194667pt;}
.ya5{bottom:909.345333pt;}
.y2b{bottom:920.596000pt;}
.yba{bottom:924.260000pt;}
.ya4{bottom:931.253333pt;}
.y2{bottom:932.816000pt;}
.y2a{bottom:938.661333pt;}
.ya3{bottom:948.037333pt;}
.y77{bottom:952.653333pt;}
.y1{bottom:956.726667pt;}
.hc{height:2.909093pt;}
.h5{height:21.264316pt;}
.h17{height:22.107556pt;}
.h16{height:23.910400pt;}
.h15{height:29.499997pt;}
.hf{height:31.880400pt;}
.h18{height:35.913421pt;}
.h8{height:38.192529pt;}
.h19{height:43.694582pt;}
.h4{height:44.696508pt;}
.h12{height:50.614663pt;}
.h3{height:52.421862pt;}
.h6{height:52.989733pt;}
.h2{height:53.635660pt;}
.h13{height:68.715195pt;}
.h11{height:68.720529pt;}
.h7{height:76.278400pt;}
.hb{height:82.996400pt;}
.h9{height:84.946427pt;}
.h10{height:92.331195pt;}
.he{height:114.691067pt;}
.h14{height:119.853093pt;}
.ha{height:124.855760pt;}
.hd{height:151.211195pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:113.385333pt;}
.x23{left:127.849333pt;}
.x9{left:129.964000pt;}
.x16{left:137.637333pt;}
.x8{left:139.953333pt;}
.x1{left:143.220000pt;}
.x20{left:188.293333pt;}
.x21{left:202.005333pt;}
.x22{left:205.772000pt;}
.x2{left:259.734667pt;}
.x12{left:279.052000pt;}
.x4{left:282.010667pt;}
.x5{left:287.830667pt;}
.x3{left:290.746667pt;}
.x17{left:295.994667pt;}
.xe{left:297.562667pt;}
.xf{left:300.004000pt;}
.xd{left:305.440000pt;}
.x1f{left:306.712000pt;}
.xa{left:336.093333pt;}
.x6{left:362.590667pt;}
.x10{left:377.240000pt;}
.x18{left:378.650667pt;}
.x1a{left:391.888000pt;}
.x19{left:398.100000pt;}
.x14{left:410.018667pt;}
.x1b{left:414.642667pt;}
.x11{left:415.672000pt;}
.xb{left:425.314667pt;}
.xc{left:453.477333pt;}
.x13{left:462.518667pt;}
.x1c{left:469.229333pt;}
.x1d{left:483.832000pt;}
.x1e{left:493.666667pt;}
.x15{left:530.440000pt;}
}




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