
    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_b4c03220ffc5c25e94bc4314.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.911000;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_831b963ec32bc3c22015cc7b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.909000;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_08656877f8e16a415b47ac9d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.846000;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_d54079197e95368b01995389.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_c9299c9a4ceb942d5424f8ec.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_dca61fe374cf11f9de9fb117.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.876000;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_f29ab2ab71a369c95a29877e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.725000;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_72cf6893bfef8f61f23d430a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_0814f46899b5e3e0d9c1cd26.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_a9a1b6e54a375492d2ba585f.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_59eac901f21342a4feba8426.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.908000;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_b2deb4bb99add140e1f3fe7a.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_0e1d78b1ed288fec008860bf.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.899000;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_2b969176b5eadf7010297aac.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.897000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_7309d02252c77e20bbb7cf43.woff2')format("woff");}.fff{font-family:fff;line-height:2.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_0c43f3ad23f40b7142e7b5ae.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.918000;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_2964fdc95f49b83790676d64.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.932000;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_8e2c758c15f4fe110a85e83d.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.390000;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_5456d5644779dfa2d0ff978c.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.683000;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_d57c59b8a646402ae9619969.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_dd0ac5e4ca077df6156327f8.woff2')format("woff");}.ff15{font-family:ff15;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;}
.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);}
.v9{vertical-align:-54.024000px;}
.vf{vertical-align:-12.912000px;}
.v4{vertical-align:-8.970000px;}
.v2{vertical-align:-5.976000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:13.602000px;}
.v3{vertical-align:15.108000px;}
.v11{vertical-align:17.568000px;}
.ve{vertical-align:21.756000px;}
.vd{vertical-align:24.684000px;}
.v10{vertical-align:28.728000px;}
.v6{vertical-align:40.440000px;}
.va{vertical-align:45.492000px;}
.vb{vertical-align:54.462000px;}
.v5{vertical-align:56.790000px;}
.vc{vertical-align:81.444000px;}
.v12{vertical-align:102.216000px;}
.v8{vertical-align:107.586000px;}
.v7{vertical-align:122.364000px;}
.ls6{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.000300px;}
.ls16{letter-spacing:0.000305px;}
.ls3{letter-spacing:0.000544px;}
.ls46{letter-spacing:0.000777px;}
.ls3c{letter-spacing:0.002174px;}
.ls1b{letter-spacing:0.002400px;}
.ls28{letter-spacing:0.002481px;}
.ls0{letter-spacing:0.003980px;}
.lse{letter-spacing:0.004893px;}
.ls7{letter-spacing:0.006002px;}
.ls39{letter-spacing:0.006685px;}
.ls26{letter-spacing:0.007086px;}
.ls44{letter-spacing:0.009381px;}
.ls37{letter-spacing:0.012811px;}
.ls2b{letter-spacing:0.013173px;}
.ls38{letter-spacing:0.013700px;}
.ls42{letter-spacing:0.014185px;}
.ls1d{letter-spacing:0.015395px;}
.ls14{letter-spacing:0.031510px;}
.ls1f{letter-spacing:1.673717px;}
.ls11{letter-spacing:2.271473px;}
.ls15{letter-spacing:2.984525px;}
.ls32{letter-spacing:2.986362px;}
.ls8{letter-spacing:2.988615px;}
.ls27{letter-spacing:2.988775px;}
.ls9{letter-spacing:2.990525px;}
.ls2e{letter-spacing:2.992362px;}
.ls29{letter-spacing:3.011760px;}
.ls43{letter-spacing:3.287658px;}
.ls24{letter-spacing:3.466985px;}
.ls41{letter-spacing:4.854544px;}
.ls4{letter-spacing:5.080926px;}
.ls31{letter-spacing:5.273276px;}
.ls2d{letter-spacing:5.279276px;}
.ls20{letter-spacing:8.249033px;}
.ls17{letter-spacing:8.308808px;}
.ls1{letter-spacing:9.199526px;}
.ls13{letter-spacing:9.982525px;}
.ls12{letter-spacing:13.270183px;}
.lsb{letter-spacing:16.268525px;}
.ls22{letter-spacing:16.557841px;}
.lsf{letter-spacing:16.602538px;}
.ls25{letter-spacing:16.617617px;}
.ls33{letter-spacing:16.677392px;}
.ls3b{letter-spacing:17.628615px;}
.ls18{letter-spacing:19.279908px;}
.ls1e{letter-spacing:19.284108px;}
.ls2{letter-spacing:19.421222px;}
.ls3d{letter-spacing:19.590615px;}
.ls3a{letter-spacing:20.263928px;}
.ls1c{letter-spacing:21.578992px;}
.ls34{letter-spacing:21.997421px;}
.ls35{letter-spacing:22.057196px;}
.lsc{letter-spacing:22.416538px;}
.ls45{letter-spacing:22.638615px;}
.ls30{letter-spacing:22.914615px;}
.ls5{letter-spacing:23.790689px;}
.ls21{letter-spacing:24.926425px;}
.ls23{letter-spacing:25.285079px;}
.ls19{letter-spacing:26.566677px;}
.ls2c{letter-spacing:26.808615px;}
.ls36{letter-spacing:29.887800px;}
.lsa{letter-spacing:32.256538px;}
.ls3f{letter-spacing:33.235234px;}
.ls3e{letter-spacing:36.198615px;}
.ls2a{letter-spacing:47.621620px;}
.ls1a{letter-spacing:48.482525px;}
.ls40{letter-spacing:59.775600px;}
.lsd{letter-spacing:69.758125px;}
.ls2f{letter-spacing:177.115103px;}
.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;}
}
.ws1d{word-spacing:-38.937826px;}
.ws8b{word-spacing:-26.550275px;}
.ws1{word-spacing:-25.781783px;}
.ws41{word-spacing:-18.485159px;}
.ws80{word-spacing:-17.239283px;}
.ws29{word-spacing:-16.605662px;}
.ws7f{word-spacing:-6.384034px;}
.ws3b{word-spacing:-5.786278px;}
.ws18{word-spacing:-4.174744px;}
.ws45{word-spacing:-3.338101px;}
.ws6d{word-spacing:-3.335478px;}
.ws5d{word-spacing:-2.917049px;}
.ws5e{word-spacing:-2.857274px;}
.ws48{word-spacing:-2.737722px;}
.ws32{word-spacing:-2.022814px;}
.wsd{word-spacing:-2.017440px;}
.ws7a{word-spacing:-1.960640px;}
.ws88{word-spacing:-0.466250px;}
.wsc{word-spacing:-0.403488px;}
.ws6a{word-spacing:-0.086077px;}
.ws5{word-spacing:-0.053798px;}
.ws42{word-spacing:-0.047820px;}
.ws38{word-spacing:-0.041843px;}
.wse{word-spacing:-0.026899px;}
.ws30{word-spacing:0.000000px;}
.ws3e{word-spacing:0.011955px;}
.wsf{word-spacing:0.016140px;}
.ws1a{word-spacing:0.191282px;}
.ws82{word-spacing:0.310833px;}
.ws6f{word-spacing:0.609711px;}
.ws64{word-spacing:0.729262px;}
.ws96{word-spacing:0.908589px;}
.ws84{word-spacing:1.327018px;}
.ws98{word-spacing:1.625896px;}
.ws99{word-spacing:1.685672px;}
.ws5c{word-spacing:1.805223px;}
.ws11{word-spacing:1.909843px;}
.ws87{word-spacing:1.924774px;}
.ws83{word-spacing:2.104101px;}
.ws10{word-spacing:2.168076px;}
.ws2e{word-spacing:2.283428px;}
.ws35{word-spacing:2.462755px;}
.ws94{word-spacing:2.582306px;}
.ws7{word-spacing:2.867455px;}
.ws93{word-spacing:2.881184px;}
.ws16{word-spacing:2.985811px;}
.ws89{word-spacing:3.060511px;}
.ws17{word-spacing:3.093408px;}
.ws20{word-spacing:3.299613px;}
.ws59{word-spacing:3.359389px;}
.ws91{word-spacing:3.478940px;}
.ws70{word-spacing:3.538716px;}
.ws71{word-spacing:3.598491px;}
.ws65{word-spacing:3.658267px;}
.ws62{word-spacing:3.837594px;}
.ws15{word-spacing:4.061779px;}
.ws9{word-spacing:4.223174px;}
.ws19{word-spacing:4.375574px;}
.ws4{word-spacing:4.438368px;}
.ws21{word-spacing:4.483200px;}
.ws50{word-spacing:4.519053px;}
.ws66{word-spacing:4.554901px;}
.ws86{word-spacing:4.614676px;}
.ws6c{word-spacing:4.674452px;}
.ws31{word-spacing:4.734228px;}
.ws7d{word-spacing:4.794003px;}
.ws1b{word-spacing:4.853779px;}
.ws76{word-spacing:4.973330px;}
.ws55{word-spacing:5.033106px;}
.ws4c{word-spacing:5.092881px;}
.ws77{word-spacing:5.152657px;}
.ws8{word-spacing:5.191546px;}
.ws44{word-spacing:5.331984px;}
.ws69{word-spacing:5.379825px;}
.ws0{word-spacing:5.412522px;}
.ws57{word-spacing:5.451535px;}
.ws78{word-spacing:5.511310px;}
.ws14{word-spacing:5.514336px;}
.ws3d{word-spacing:5.750413px;}
.ws74{word-spacing:6.109066px;}
.wsa{word-spacing:6.213715px;}
.ws36{word-spacing:6.288393px;}
.ws12{word-spacing:6.375110px;}
.ws13{word-spacing:6.428909px;}
.ws3{word-spacing:6.536506px;}
.ws5f{word-spacing:6.587271px;}
.ws51{word-spacing:6.766598px;}
.ws4f{word-spacing:6.826374px;}
.ws26{word-spacing:7.185027px;}
.ws54{word-spacing:7.244803px;}
.ws1f{word-spacing:7.603456px;}
.ws2a{word-spacing:8.141437px;}
.ws49{word-spacing:8.201212px;}
.ws2b{word-spacing:8.559866px;}
.ws90{word-spacing:8.739193px;}
.ws47{word-spacing:8.745145px;}
.ws3c{word-spacing:9.038071px;}
.ws60{word-spacing:9.934705px;}
.ws28{word-spacing:10.233583px;}
.ws46{word-spacing:10.418857px;}
.ws1c{word-spacing:10.472685px;}
.ws8f{word-spacing:10.592236px;}
.ws95{word-spacing:10.831339px;}
.ws5b{word-spacing:11.233075px;}
.ws22{word-spacing:11.369319px;}
.ws2d{word-spacing:11.727973px;}
.ws43{word-spacing:12.624607px;}
.ws97{word-spacing:12.983260px;}
.ws24{word-spacing:13.282138px;}
.ws8c{word-spacing:16.629572px;}
.ws79{word-spacing:16.737168px;}
.ws33{word-spacing:18.136800px;}
.ws7e{word-spacing:18.959025px;}
.ws81{word-spacing:19.367294px;}
.ws37{word-spacing:19.548604px;}
.ws3a{word-spacing:19.555337px;}
.ws52{word-spacing:20.395435px;}
.ws7b{word-spacing:20.404686px;}
.ws3f{word-spacing:20.837774px;}
.ws6e{word-spacing:22.027337px;}
.ws34{word-spacing:22.032604px;}
.ws4e{word-spacing:22.551890px;}
.ws6{word-spacing:22.768543px;}
.ws53{word-spacing:22.834279px;}
.ws58{word-spacing:22.872604px;}
.ws2{word-spacing:23.312640px;}
.ws61{word-spacing:23.491811px;}
.ws2f{word-spacing:24.149342px;}
.ws85{word-spacing:24.198604px;}
.ws7c{word-spacing:24.324604px;}
.wsb{word-spacing:24.508543px;}
.ws4d{word-spacing:24.672604px;}
.ws56{word-spacing:24.806874px;}
.ws63{word-spacing:25.225303px;}
.ws27{word-spacing:25.977890px;}
.ws72{word-spacing:26.062162px;}
.ws8d{word-spacing:26.265477px;}
.ws40{word-spacing:26.713077px;}
.ws25{word-spacing:27.257674px;}
.ws4a{word-spacing:27.735890px;}
.ws4b{word-spacing:28.453186px;}
.ws75{word-spacing:29.828024px;}
.ws1e{word-spacing:30.030604px;}
.ws8e{word-spacing:30.168604px;}
.ws23{word-spacing:30.936604px;}
.ws73{word-spacing:32.099497px;}
.ws2c{word-spacing:32.517926px;}
.ws6b{word-spacing:35.209514px;}
.ws8a{word-spacing:36.156604px;}
.ws39{word-spacing:52.284634px;}
.ws9c{word-spacing:55.125058px;}
.ws92{word-spacing:69.937725px;}
.ws67{word-spacing:127.752412px;}
.ws68{word-spacing:142.696312px;}
.ws9a{word-spacing:149.988936px;}
.ws9b{word-spacing:164.215528px;}
.ws5a{word-spacing:306.122803px;}
._f{margin-left:-47.910570px;}
._1b{margin-left:-34.968726px;}
._1a{margin-left:-33.713438px;}
._12{margin-left:-29.774237px;}
._7{margin-left:-27.265034px;}
._31{margin-left:-9.599271px;}
._1c{margin-left:-8.091257px;}
._10{margin-left:-5.908414px;}
._9{margin-left:-4.456658px;}
._1{margin-left:-2.788895px;}
._3{margin-left:-1.730158px;}
._4{width:1.560154px;}
._2{width:2.582310px;}
._21{width:10.928930px;}
._b{width:14.364160px;}
._a{width:16.219145px;}
._c{width:17.467249px;}
._32{width:18.787502px;}
._1f{width:20.430598px;}
._5{width:23.374332px;}
._13{width:25.102417px;}
._15{width:26.154865px;}
._1d{width:27.325928px;}
._11{width:29.092753px;}
._17{width:30.296906px;}
._8{width:31.480673px;}
._18{width:33.334226px;}
._6{width:34.968960px;}
._22{width:36.337577px;}
._e{width:38.510939px;}
._19{width:40.465514px;}
._0{width:41.936714px;}
._14{width:43.132744px;}
._20{width:54.120178px;}
._30{width:65.124383px;}
._24{width:71.960500px;}
._1e{width:78.523093px;}
._16{width:80.697600px;}
._d{width:96.836850px;}
._33{width:124.940327px;}
._26{width:128.804442px;}
._2c{width:139.884227px;}
._28{width:145.122499px;}
._2b{width:166.827712px;}
._23{width:177.281730px;}
._29{width:183.484056px;}
._2f{width:198.036563px;}
._2d{width:273.294043px;}
._27{width:282.678812px;}
._2e{width:288.237943px;}
._25{width:299.236654px;}
._34{width:303.181843px;}
._2a{width:337.433262px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:35.865600px;}
.fs6{font-size:41.842800px;}
.fs2{font-size:53.798400px;}
.fs5{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs4{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y27{bottom:182.835000px;}
.y26{bottom:227.667000px;}
.y25{bottom:245.599500px;}
.y6f{bottom:254.362500px;}
.y24{bottom:263.532000px;}
.y4d{bottom:268.285500px;}
.y6e{bottom:272.295000px;}
.y98{bottom:277.606500px;}
.y4c{bottom:286.219500px;}
.y97{bottom:288.934500px;}
.y6d{bottom:290.227500px;}
.y23{bottom:291.361500px;}
.y22{bottom:309.294000px;}
.y6c{bottom:315.663000px;}
.y4b{bottom:318.951000px;}
.y21{bottom:327.228000px;}
.y96{bottom:328.491000px;}
.y6b{bottom:338.824500px;}
.y95{bottom:346.425000px;}
.y20{bottom:352.999500px;}
.y94{bottom:364.357500px;}
.y4a{bottom:368.368500px;}
.y1f{bottom:370.932000px;}
.y93{bottom:382.290000px;}
.y6a{bottom:386.259000px;}
.y49{bottom:386.302500px;}
.y1e{bottom:398.517000px;}
.y92{bottom:400.222500px;}
.y69{bottom:404.191500px;}
.y48{bottom:404.235000px;}
.y91{bottom:418.155000px;}
.yb4{bottom:422.443500px;}
.y68{bottom:433.308000px;}
.y47{bottom:434.019000px;}
.y1d{bottom:439.462500px;}
.yb3{bottom:440.376000px;}
.y90{bottom:445.740000px;}
.y67{bottom:451.240500px;}
.y1c{bottom:457.396500px;}
.yb2{bottom:458.310000px;}
.y66{bottom:469.173000px;}
.y1b{bottom:475.329000px;}
.y46{bottom:475.851000px;}
.yb1{bottom:476.242500px;}
.y8f{bottom:486.549000px;}
.yca{bottom:488.089500px;}
.y1a{bottom:493.261500px;}
.y45{bottom:493.783500px;}
.y65{bottom:498.675000px;}
.y8e{bottom:504.481500px;}
.yc9{bottom:506.022000px;}
.yb0{bottom:508.974000px;}
.y19{bottom:511.194000px;}
.y64{bottom:516.607500px;}
.y8d{bottom:522.415500px;}
.yc8{bottom:523.954500px;}
.y44{bottom:524.128500px;}
.y18{bottom:529.126500px;}
.y8c{bottom:540.348000px;}
.y43{bottom:541.314000px;}
.yc7{bottom:541.887000px;}
.y63{bottom:545.724000px;}
.yaf{bottom:558.391500px;}
.yc6{bottom:559.821000px;}
.y17{bottom:561.858000px;}
.y62{bottom:563.656500px;}
.y8b{bottom:567.859500px;}
.yae{bottom:576.325500px;}
.y42{bottom:576.349500px;}
.yc5{bottom:577.753500px;}
.y8a{bottom:585.793500px;}
.y61{bottom:591.240000px;}
.y41{bottom:594.282000px;}
.yc4{bottom:595.686000px;}
.yad{bottom:606.213000px;}
.y89{bottom:608.338500px;}
.y16{bottom:610.390500px;}
.y40{bottom:612.214500px;}
.y88{bottom:612.730500px;}
.yc3{bottom:613.618500px;}
.y87{bottom:616.509000px;}
.yac{bottom:624.145500px;}
.y15{bottom:626.829000px;}
.yc2{bottom:631.551000px;}
.y60{bottom:632.907000px;}
.y3f{bottom:639.799500px;}
.y86{bottom:641.412000px;}
.y14{bottom:643.267500px;}
.yc1{bottom:649.485000px;}
.y5f{bottom:650.839500px;}
.yab{bottom:654.033000px;}
.y85{bottom:659.344500px;}
.y13{bottom:659.706000px;}
.yc0{bottom:667.417500px;}
.y5e{bottom:668.772000px;}
.yaa{bottom:671.967000px;}
.y12{bottom:676.144500px;}
.y84{bottom:677.278500px;}
.y3e{bottom:681.631500px;}
.ybf{bottom:685.350000px;}
.y5d{bottom:686.706000px;}
.y11{bottom:692.583000px;}
.ya9{bottom:701.854500px;}
.ybe{bottom:703.282500px;}
.y83{bottom:704.215500px;}
.y82{bottom:707.994000px;}
.y3d{bottom:708.448500px;}
.y10{bottom:709.021500px;}
.y3c{bottom:711.813000px;}
.y5c{bottom:714.289500px;}
.ya8{bottom:719.787000px;}
.ybd{bottom:721.215000px;}
.y3b{bottom:722.064000px;}
.y81{bottom:722.148000px;}
.yf{bottom:725.460000px;}
.ybc{bottom:739.147500px;}
.ye{bottom:741.898500px;}
.ya7{bottom:749.674500px;}
.y80{bottom:749.733000px;}
.y5b{bottom:755.956500px;}
.ybb{bottom:757.081500px;}
.yd{bottom:758.337000px;}
.y3a{bottom:762.297000px;}
.ya6{bottom:767.607000px;}
.y5a{bottom:773.889000px;}
.yc{bottom:774.775500px;}
.yba{bottom:775.014000px;}
.y39{bottom:780.229500px;}
.y7f{bottom:790.542000px;}
.yb{bottom:791.212500px;}
.yb9{bottom:792.946500px;}
.ya5{bottom:797.496000px;}
.y38{bottom:798.162000px;}
.y59{bottom:806.620500px;}
.ya{bottom:807.651000px;}
.y7e{bottom:808.476000px;}
.yb8{bottom:810.879000px;}
.ya4{bottom:815.428500px;}
.y9{bottom:824.089500px;}
.y37{bottom:825.745500px;}
.yb7{bottom:828.811500px;}
.ya3{bottom:833.361000px;}
.y58{bottom:833.518500px;}
.y7d{bottom:835.413000px;}
.y8{bottom:842.370000px;}
.y7c{bottom:853.345500px;}
.yb6{bottom:854.247000px;}
.y36{bottom:864.864000px;}
.y33{bottom:865.129500px;}
.ya2{bottom:866.092500px;}
.yb5{bottom:877.408500px;}
.y7b{bottom:880.858500px;}
.y32{bottom:882.315000px;}
.y31{bottom:886.092000px;}
.y7{bottom:891.024000px;}
.y35{bottom:896.512500px;}
.y7a{bottom:898.791000px;}
.y34{bottom:900.994500px;}
.y57{bottom:906.561000px;}
.ya1{bottom:915.511500px;}
.y56{bottom:924.495000px;}
.y79{bottom:925.729500px;}
.y6{bottom:926.191500px;}
.y30{bottom:926.337000px;}
.ya0{bottom:933.444000px;}
.y55{bottom:942.427500px;}
.y78{bottom:943.662000px;}
.y2f{bottom:944.271000px;}
.y5{bottom:947.113500px;}
.y54{bottom:960.360000px;}
.y2e{bottom:962.203500px;}
.y9f{bottom:966.175500px;}
.y4{bottom:968.035500px;}
.y77{bottom:971.245500px;}
.y53{bottom:985.795500px;}
.y2d{bottom:991.987500px;}
.y52{bottom:1008.957000px;}
.y3{bottom:1011.372000px;}
.y76{bottom:1012.056000px;}
.y9e{bottom:1015.594500px;}
.y2c{bottom:1027.707000px;}
.y75{bottom:1029.988500px;}
.y9d{bottom:1033.527000px;}
.y2{bottom:1044.249000px;}
.y74{bottom:1047.921000px;}
.y9c{bottom:1051.459500px;}
.y2b{bottom:1054.606500px;}
.y51{bottom:1058.508000px;}
.y73{bottom:1065.855000px;}
.y9b{bottom:1069.392000px;}
.y50{bottom:1076.440500px;}
.y1{bottom:1077.126000px;}
.y72{bottom:1083.787500px;}
.y9a{bottom:1087.326000px;}
.y4f{bottom:1094.374500px;}
.y71{bottom:1101.720000px;}
.y2a{bottom:1104.025500px;}
.y99{bottom:1105.258500px;}
.y4e{bottom:1112.307000px;}
.y29{bottom:1121.958000px;}
.y70{bottom:1134.451500px;}
.y28{bottom:1139.890500px;}
.h10{height:2.391024px;}
.he{height:29.415488px;}
.hf{height:29.457331px;}
.h5{height:40.348800px;}
.h4{height:44.258150px;}
.h9{height:44.831700px;}
.h3{height:50.498765px;}
.hb{height:53.798400px;}
.h7{height:53.944800px;}
.h6{height:53.950800px;}
.h16{height:54.099488px;}
.h18{height:58.185331px;}
.hd{height:59.181024px;}
.ha{height:59.939700px;}
.hc{height:59.945700px;}
.h19{height:62.399700px;}
.h8{height:64.557900px;}
.h2{height:73.027727px;}
.h17{height:82.354349px;}
.h11{height:85.271700px;}
.h15{height:85.835700px;}
.h1a{height:104.607024px;}
.h14{height:126.275700px;}
.h12{height:137.001488px;}
.h13{height:139.733700px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:108.000000px;}
.x33{left:111.912000px;}
.x1{left:117.462000px;}
.xf{left:126.265500px;}
.x2d{left:130.417500px;}
.x2{left:134.509500px;}
.x12{left:138.510000px;}
.x11{left:144.313500px;}
.x9{left:145.360500px;}
.x3c{left:148.845000px;}
.x8{left:166.095000px;}
.x2b{left:180.376500px;}
.x1d{left:187.584000px;}
.x39{left:196.329000px;}
.x34{left:205.996500px;}
.x29{left:211.594500px;}
.x3e{left:215.496000px;}
.x2c{left:233.118000px;}
.x14{left:236.031000px;}
.x13{left:239.943000px;}
.x2e{left:251.736000px;}
.x25{left:259.108500px;}
.x3f{left:265.638000px;}
.x1e{left:267.475500px;}
.x3d{left:275.121000px;}
.x26{left:276.379500px;}
.x2f{left:280.935000px;}
.x1f{left:289.116000px;}
.x15{left:292.111500px;}
.x3a{left:296.745000px;}
.x35{left:300.027000px;}
.x30{left:303.499500px;}
.x31{left:307.236000px;}
.xa{left:309.039000px;}
.x16{left:329.503500px;}
.x4{left:331.959000px;}
.xd{left:340.147500px;}
.x22{left:346.729500px;}
.x38{left:359.311500px;}
.x5{left:375.949500px;}
.x6{left:386.449500px;}
.x3b{left:388.941000px;}
.x3{left:402.016500px;}
.x7{left:428.559000px;}
.x17{left:443.512500px;}
.x10{left:455.263500px;}
.x23{left:485.658000px;}
.x32{left:493.401000px;}
.x24{left:502.021500px;}
.x18{left:510.400500px;}
.x2a{left:519.232500px;}
.x1b{left:526.764000px;}
.x1a{left:528.838500px;}
.x19{left:533.674500px;}
.x1c{left:554.989500px;}
.x36{left:557.284500px;}
.x20{left:582.285000px;}
.x37{left:613.365000px;}
.x21{left:626.682000px;}
.x27{left:634.029000px;}
.xb{left:661.333500px;}
.x28{left:714.324000px;}
.xe{left:756.801000px;}
@media print{
.v9{vertical-align:-48.021333pt;}
.vf{vertical-align:-11.477333pt;}
.v4{vertical-align:-7.973333pt;}
.v2{vertical-align:-5.312000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:12.090667pt;}
.v3{vertical-align:13.429333pt;}
.v11{vertical-align:15.616000pt;}
.ve{vertical-align:19.338667pt;}
.vd{vertical-align:21.941333pt;}
.v10{vertical-align:25.536000pt;}
.v6{vertical-align:35.946667pt;}
.va{vertical-align:40.437333pt;}
.vb{vertical-align:48.410667pt;}
.v5{vertical-align:50.480000pt;}
.vc{vertical-align:72.394667pt;}
.v12{vertical-align:90.858667pt;}
.v8{vertical-align:95.632000pt;}
.v7{vertical-align:108.768000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.000267pt;}
.ls16{letter-spacing:0.000271pt;}
.ls3{letter-spacing:0.000483pt;}
.ls46{letter-spacing:0.000690pt;}
.ls3c{letter-spacing:0.001933pt;}
.ls1b{letter-spacing:0.002133pt;}
.ls28{letter-spacing:0.002205pt;}
.ls0{letter-spacing:0.003538pt;}
.lse{letter-spacing:0.004349pt;}
.ls7{letter-spacing:0.005335pt;}
.ls39{letter-spacing:0.005942pt;}
.ls26{letter-spacing:0.006299pt;}
.ls44{letter-spacing:0.008339pt;}
.ls37{letter-spacing:0.011388pt;}
.ls2b{letter-spacing:0.011709pt;}
.ls38{letter-spacing:0.012178pt;}
.ls42{letter-spacing:0.012609pt;}
.ls1d{letter-spacing:0.013685pt;}
.ls14{letter-spacing:0.028009pt;}
.ls1f{letter-spacing:1.487748pt;}
.ls11{letter-spacing:2.019087pt;}
.ls15{letter-spacing:2.652911pt;}
.ls32{letter-spacing:2.654544pt;}
.ls8{letter-spacing:2.656546pt;}
.ls27{letter-spacing:2.656689pt;}
.ls9{letter-spacing:2.658245pt;}
.ls2e{letter-spacing:2.659878pt;}
.ls29{letter-spacing:2.677120pt;}
.ls43{letter-spacing:2.922363pt;}
.ls24{letter-spacing:3.081764pt;}
.ls41{letter-spacing:4.315150pt;}
.ls4{letter-spacing:4.516379pt;}
.ls31{letter-spacing:4.687356pt;}
.ls2d{letter-spacing:4.692690pt;}
.ls20{letter-spacing:7.332474pt;}
.ls17{letter-spacing:7.385607pt;}
.ls1{letter-spacing:8.177357pt;}
.ls13{letter-spacing:8.873356pt;}
.ls12{letter-spacing:11.795718pt;}
.lsb{letter-spacing:14.460911pt;}
.ls22{letter-spacing:14.718081pt;}
.lsf{letter-spacing:14.757812pt;}
.ls25{letter-spacing:14.771215pt;}
.ls33{letter-spacing:14.824349pt;}
.ls3b{letter-spacing:15.669880pt;}
.ls18{letter-spacing:17.137696pt;}
.ls1e{letter-spacing:17.141429pt;}
.ls2{letter-spacing:17.263309pt;}
.ls3d{letter-spacing:17.413880pt;}
.ls3a{letter-spacing:18.012381pt;}
.ls1c{letter-spacing:19.181326pt;}
.ls34{letter-spacing:19.553263pt;}
.ls35{letter-spacing:19.606397pt;}
.lsc{letter-spacing:19.925812pt;}
.ls45{letter-spacing:20.123213pt;}
.ls30{letter-spacing:20.368546pt;}
.ls5{letter-spacing:21.147279pt;}
.ls21{letter-spacing:22.156822pt;}
.ls23{letter-spacing:22.475626pt;}
.ls19{letter-spacing:23.614824pt;}
.ls2c{letter-spacing:23.829880pt;}
.ls36{letter-spacing:26.566933pt;}
.lsa{letter-spacing:28.672479pt;}
.ls3f{letter-spacing:29.542430pt;}
.ls3e{letter-spacing:32.176546pt;}
.ls2a{letter-spacing:42.330329pt;}
.ls1a{letter-spacing:43.095578pt;}
.ls40{letter-spacing:53.133867pt;}
.lsd{letter-spacing:62.007222pt;}
.ls2f{letter-spacing:157.435647pt;}
.ws1d{word-spacing:-34.611401pt;}
.ws8b{word-spacing:-23.600244pt;}
.ws1{word-spacing:-22.917140pt;}
.ws41{word-spacing:-16.431252pt;}
.ws80{word-spacing:-15.323807pt;}
.ws29{word-spacing:-14.760588pt;}
.ws7f{word-spacing:-5.674697pt;}
.ws3b{word-spacing:-5.143358pt;}
.ws18{word-spacing:-3.710884pt;}
.ws45{word-spacing:-2.967201pt;}
.ws6d{word-spacing:-2.964870pt;}
.ws5d{word-spacing:-2.592933pt;}
.ws5e{word-spacing:-2.539799pt;}
.ws48{word-spacing:-2.433531pt;}
.ws32{word-spacing:-1.798057pt;}
.wsd{word-spacing:-1.793280pt;}
.ws7a{word-spacing:-1.742791pt;}
.ws88{word-spacing:-0.414444pt;}
.wsc{word-spacing:-0.358656pt;}
.ws6a{word-spacing:-0.076513pt;}
.ws5{word-spacing:-0.047821pt;}
.ws42{word-spacing:-0.042507pt;}
.ws38{word-spacing:-0.037194pt;}
.wse{word-spacing:-0.023910pt;}
.ws30{word-spacing:0.000000pt;}
.ws3e{word-spacing:0.010627pt;}
.wsf{word-spacing:0.014346pt;}
.ws1a{word-spacing:0.170028pt;}
.ws82{word-spacing:0.276296pt;}
.ws6f{word-spacing:0.541965pt;}
.ws64{word-spacing:0.648233pt;}
.ws96{word-spacing:0.807635pt;}
.ws84{word-spacing:1.179572pt;}
.ws98{word-spacing:1.445241pt;}
.ws99{word-spacing:1.498375pt;}
.ws5c{word-spacing:1.604643pt;}
.ws11{word-spacing:1.697638pt;}
.ws87{word-spacing:1.710911pt;}
.ws83{word-spacing:1.870312pt;}
.ws10{word-spacing:1.927178pt;}
.ws2e{word-spacing:2.029714pt;}
.ws35{word-spacing:2.189115pt;}
.ws94{word-spacing:2.295383pt;}
.ws7{word-spacing:2.548849pt;}
.ws93{word-spacing:2.561052pt;}
.ws16{word-spacing:2.654054pt;}
.ws89{word-spacing:2.720454pt;}
.ws17{word-spacing:2.749696pt;}
.ws20{word-spacing:2.932989pt;}
.ws59{word-spacing:2.986123pt;}
.ws91{word-spacing:3.092391pt;}
.ws70{word-spacing:3.145525pt;}
.ws71{word-spacing:3.198659pt;}
.ws65{word-spacing:3.251793pt;}
.ws62{word-spacing:3.411194pt;}
.ws15{word-spacing:3.610470pt;}
.ws9{word-spacing:3.753933pt;}
.ws19{word-spacing:3.889399pt;}
.ws4{word-spacing:3.945216pt;}
.ws21{word-spacing:3.985067pt;}
.ws50{word-spacing:4.016936pt;}
.ws66{word-spacing:4.048801pt;}
.ws86{word-spacing:4.101935pt;}
.ws6c{word-spacing:4.155068pt;}
.ws31{word-spacing:4.208202pt;}
.ws7d{word-spacing:4.261336pt;}
.ws1b{word-spacing:4.314470pt;}
.ws76{word-spacing:4.420738pt;}
.ws55{word-spacing:4.473872pt;}
.ws4c{word-spacing:4.527005pt;}
.ws77{word-spacing:4.580139pt;}
.ws8{word-spacing:4.614707pt;}
.ws44{word-spacing:4.739541pt;}
.ws69{word-spacing:4.782067pt;}
.ws0{word-spacing:4.811130pt;}
.ws57{word-spacing:4.845809pt;}
.ws78{word-spacing:4.898943pt;}
.ws14{word-spacing:4.901632pt;}
.ws3d{word-spacing:5.111478pt;}
.ws74{word-spacing:5.430281pt;}
.wsa{word-spacing:5.523302pt;}
.ws36{word-spacing:5.589683pt;}
.ws12{word-spacing:5.666765pt;}
.ws13{word-spacing:5.714586pt;}
.ws3{word-spacing:5.810227pt;}
.ws5f{word-spacing:5.855352pt;}
.ws51{word-spacing:6.014754pt;}
.ws4f{word-spacing:6.067888pt;}
.ws26{word-spacing:6.386691pt;}
.ws54{word-spacing:6.439825pt;}
.ws1f{word-spacing:6.758628pt;}
.ws2a{word-spacing:7.236833pt;}
.ws49{word-spacing:7.289967pt;}
.ws2b{word-spacing:7.608770pt;}
.ws90{word-spacing:7.768171pt;}
.ws47{word-spacing:7.773462pt;}
.ws3c{word-spacing:8.033841pt;}
.ws60{word-spacing:8.830849pt;}
.ws28{word-spacing:9.096518pt;}
.ws46{word-spacing:9.261206pt;}
.ws1c{word-spacing:9.309053pt;}
.ws8f{word-spacing:9.415321pt;}
.ws95{word-spacing:9.627857pt;}
.ws5b{word-spacing:9.984955pt;}
.ws22{word-spacing:10.106061pt;}
.ws2d{word-spacing:10.424865pt;}
.ws43{word-spacing:11.221873pt;}
.ws97{word-spacing:11.540676pt;}
.ws24{word-spacing:11.806345pt;}
.ws8c{word-spacing:14.781842pt;}
.ws79{word-spacing:14.877483pt;}
.ws33{word-spacing:16.121600pt;}
.ws7e{word-spacing:16.852467pt;}
.ws81{word-spacing:17.215373pt;}
.ws37{word-spacing:17.376537pt;}
.ws3a{word-spacing:17.382522pt;}
.ws52{word-spacing:18.129275pt;}
.ws7b{word-spacing:18.137498pt;}
.ws3f{word-spacing:18.522466pt;}
.ws6e{word-spacing:19.579855pt;}
.ws34{word-spacing:19.584537pt;}
.ws4e{word-spacing:20.046124pt;}
.ws6{word-spacing:20.238705pt;}
.ws53{word-spacing:20.297137pt;}
.ws58{word-spacing:20.331204pt;}
.ws2{word-spacing:20.722347pt;}
.ws61{word-spacing:20.881610pt;}
.ws2f{word-spacing:21.466082pt;}
.ws85{word-spacing:21.509870pt;}
.ws7c{word-spacing:21.621870pt;}
.wsb{word-spacing:21.785371pt;}
.ws4d{word-spacing:21.931204pt;}
.ws56{word-spacing:22.050555pt;}
.ws63{word-spacing:22.422492pt;}
.ws27{word-spacing:23.091458pt;}
.ws72{word-spacing:23.166366pt;}
.ws8d{word-spacing:23.347090pt;}
.ws40{word-spacing:23.744957pt;}
.ws25{word-spacing:24.229043pt;}
.ws4a{word-spacing:24.654124pt;}
.ws4b{word-spacing:25.291721pt;}
.ws75{word-spacing:26.513799pt;}
.ws1e{word-spacing:26.693870pt;}
.ws8e{word-spacing:26.816537pt;}
.ws23{word-spacing:27.499204pt;}
.ws73{word-spacing:28.532886pt;}
.ws2c{word-spacing:28.904823pt;}
.ws6b{word-spacing:31.297346pt;}
.ws8a{word-spacing:32.139204pt;}
.ws39{word-spacing:46.475230pt;}
.ws9c{word-spacing:49.000052pt;}
.ws92{word-spacing:62.166867pt;}
.ws67{word-spacing:113.557700pt;}
.ws68{word-spacing:126.841167pt;}
.ws9a{word-spacing:133.323498pt;}
.ws9b{word-spacing:145.969359pt;}
.ws5a{word-spacing:272.109158pt;}
._f{margin-left:-42.587173pt;}
._1b{margin-left:-31.083312pt;}
._1a{margin-left:-29.967501pt;}
._12{margin-left:-26.465988pt;}
._7{margin-left:-24.235586pt;}
._31{margin-left:-8.532685pt;}
._1c{margin-left:-7.192228pt;}
._10{margin-left:-5.251923pt;}
._9{margin-left:-3.961474pt;}
._1{margin-left:-2.479018pt;}
._3{margin-left:-1.537918pt;}
._4{width:1.386803pt;}
._2{width:2.295387pt;}
._21{width:9.714605pt;}
._b{width:12.768142pt;}
._a{width:14.417018pt;}
._c{width:15.526444pt;}
._32{width:16.700002pt;}
._1f{width:18.160531pt;}
._5{width:20.777184pt;}
._13{width:22.313260pt;}
._15{width:23.248769pt;}
._1d{width:24.289714pt;}
._11{width:25.860225pt;}
._17{width:26.930583pt;}
._8{width:27.982820pt;}
._18{width:29.630423pt;}
._6{width:31.083520pt;}
._22{width:32.300068pt;}
._e{width:34.231946pt;}
._19{width:35.969346pt;}
._0{width:37.277079pt;}
._14{width:38.340217pt;}
._20{width:48.106825pt;}
._30{width:57.888341pt;}
._24{width:63.964889pt;}
._1e{width:69.798305pt;}
._16{width:71.731200pt;}
._d{width:86.077200pt;}
._33{width:111.058068pt;}
._26{width:114.492837pt;}
._2c{width:124.341535pt;}
._28{width:128.997777pt;}
._2b{width:148.291299pt;}
._23{width:157.583760pt;}
._29{width:163.096938pt;}
._2f{width:176.032500pt;}
._2d{width:242.928038pt;}
._27{width:251.270055pt;}
._2e{width:256.211505pt;}
._25{width:265.988137pt;}
._34{width:269.494972pt;}
._2a{width:299.940677pt;}
.fs3{font-size:31.880533pt;}
.fs6{font-size:37.193600pt;}
.fs2{font-size:47.820800pt;}
.fs5{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs4{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:162.520000pt;}
.y26{bottom:202.370667pt;}
.y25{bottom:218.310667pt;}
.y6f{bottom:226.100000pt;}
.y24{bottom:234.250667pt;}
.y4d{bottom:238.476000pt;}
.y6e{bottom:242.040000pt;}
.y98{bottom:246.761333pt;}
.y4c{bottom:254.417333pt;}
.y97{bottom:256.830667pt;}
.y6d{bottom:257.980000pt;}
.y23{bottom:258.988000pt;}
.y22{bottom:274.928000pt;}
.y6c{bottom:280.589333pt;}
.y4b{bottom:283.512000pt;}
.y21{bottom:290.869333pt;}
.y96{bottom:291.992000pt;}
.y6b{bottom:301.177333pt;}
.y95{bottom:307.933333pt;}
.y20{bottom:313.777333pt;}
.y94{bottom:323.873333pt;}
.y4a{bottom:327.438667pt;}
.y1f{bottom:329.717333pt;}
.y93{bottom:339.813333pt;}
.y6a{bottom:343.341333pt;}
.y49{bottom:343.380000pt;}
.y1e{bottom:354.237333pt;}
.y92{bottom:355.753333pt;}
.y69{bottom:359.281333pt;}
.y48{bottom:359.320000pt;}
.y91{bottom:371.693333pt;}
.yb4{bottom:375.505333pt;}
.y68{bottom:385.162667pt;}
.y47{bottom:385.794667pt;}
.y1d{bottom:390.633333pt;}
.yb3{bottom:391.445333pt;}
.y90{bottom:396.213333pt;}
.y67{bottom:401.102667pt;}
.y1c{bottom:406.574667pt;}
.yb2{bottom:407.386667pt;}
.y66{bottom:417.042667pt;}
.y1b{bottom:422.514667pt;}
.y46{bottom:422.978667pt;}
.yb1{bottom:423.326667pt;}
.y8f{bottom:432.488000pt;}
.yca{bottom:433.857333pt;}
.y1a{bottom:438.454667pt;}
.y45{bottom:438.918667pt;}
.y65{bottom:443.266667pt;}
.y8e{bottom:448.428000pt;}
.yc9{bottom:449.797333pt;}
.yb0{bottom:452.421333pt;}
.y19{bottom:454.394667pt;}
.y64{bottom:459.206667pt;}
.y8d{bottom:464.369333pt;}
.yc8{bottom:465.737333pt;}
.y44{bottom:465.892000pt;}
.y18{bottom:470.334667pt;}
.y8c{bottom:480.309333pt;}
.y43{bottom:481.168000pt;}
.yc7{bottom:481.677333pt;}
.y63{bottom:485.088000pt;}
.yaf{bottom:496.348000pt;}
.yc6{bottom:497.618667pt;}
.y17{bottom:499.429333pt;}
.y62{bottom:501.028000pt;}
.y8b{bottom:504.764000pt;}
.yae{bottom:512.289333pt;}
.y42{bottom:512.310667pt;}
.yc5{bottom:513.558667pt;}
.y8a{bottom:520.705333pt;}
.y61{bottom:525.546667pt;}
.y41{bottom:528.250667pt;}
.yc4{bottom:529.498667pt;}
.yad{bottom:538.856000pt;}
.y89{bottom:540.745333pt;}
.y16{bottom:542.569333pt;}
.y40{bottom:544.190667pt;}
.y88{bottom:544.649333pt;}
.yc3{bottom:545.438667pt;}
.y87{bottom:548.008000pt;}
.yac{bottom:554.796000pt;}
.y15{bottom:557.181333pt;}
.yc2{bottom:561.378667pt;}
.y60{bottom:562.584000pt;}
.y3f{bottom:568.710667pt;}
.y86{bottom:570.144000pt;}
.y14{bottom:571.793333pt;}
.yc1{bottom:577.320000pt;}
.y5f{bottom:578.524000pt;}
.yab{bottom:581.362667pt;}
.y85{bottom:586.084000pt;}
.y13{bottom:586.405333pt;}
.yc0{bottom:593.260000pt;}
.y5e{bottom:594.464000pt;}
.yaa{bottom:597.304000pt;}
.y12{bottom:601.017333pt;}
.y84{bottom:602.025333pt;}
.y3e{bottom:605.894667pt;}
.ybf{bottom:609.200000pt;}
.y5d{bottom:610.405333pt;}
.y11{bottom:615.629333pt;}
.ya9{bottom:623.870667pt;}
.ybe{bottom:625.140000pt;}
.y83{bottom:625.969333pt;}
.y82{bottom:629.328000pt;}
.y3d{bottom:629.732000pt;}
.y10{bottom:630.241333pt;}
.y3c{bottom:632.722667pt;}
.y5c{bottom:634.924000pt;}
.ya8{bottom:639.810667pt;}
.ybd{bottom:641.080000pt;}
.y3b{bottom:641.834667pt;}
.y81{bottom:641.909333pt;}
.yf{bottom:644.853333pt;}
.ybc{bottom:657.020000pt;}
.ye{bottom:659.465333pt;}
.ya7{bottom:666.377333pt;}
.y80{bottom:666.429333pt;}
.y5b{bottom:671.961333pt;}
.ybb{bottom:672.961333pt;}
.yd{bottom:674.077333pt;}
.y3a{bottom:677.597333pt;}
.ya6{bottom:682.317333pt;}
.y5a{bottom:687.901333pt;}
.yc{bottom:688.689333pt;}
.yba{bottom:688.901333pt;}
.y39{bottom:693.537333pt;}
.y7f{bottom:702.704000pt;}
.yb{bottom:703.300000pt;}
.yb9{bottom:704.841333pt;}
.ya5{bottom:708.885333pt;}
.y38{bottom:709.477333pt;}
.y59{bottom:716.996000pt;}
.ya{bottom:717.912000pt;}
.y7e{bottom:718.645333pt;}
.yb8{bottom:720.781333pt;}
.ya4{bottom:724.825333pt;}
.y9{bottom:732.524000pt;}
.y37{bottom:733.996000pt;}
.yb7{bottom:736.721333pt;}
.ya3{bottom:740.765333pt;}
.y58{bottom:740.905333pt;}
.y7d{bottom:742.589333pt;}
.y8{bottom:748.773333pt;}
.y7c{bottom:758.529333pt;}
.yb6{bottom:759.330667pt;}
.y36{bottom:768.768000pt;}
.y33{bottom:769.004000pt;}
.ya2{bottom:769.860000pt;}
.yb5{bottom:779.918667pt;}
.y7b{bottom:782.985333pt;}
.y32{bottom:784.280000pt;}
.y31{bottom:787.637333pt;}
.y7{bottom:792.021333pt;}
.y35{bottom:796.900000pt;}
.y7a{bottom:798.925333pt;}
.y34{bottom:800.884000pt;}
.y57{bottom:805.832000pt;}
.ya1{bottom:813.788000pt;}
.y56{bottom:821.773333pt;}
.y79{bottom:822.870667pt;}
.y6{bottom:823.281333pt;}
.y30{bottom:823.410667pt;}
.ya0{bottom:829.728000pt;}
.y55{bottom:837.713333pt;}
.y78{bottom:838.810667pt;}
.y2f{bottom:839.352000pt;}
.y5{bottom:841.878667pt;}
.y54{bottom:853.653333pt;}
.y2e{bottom:855.292000pt;}
.y9f{bottom:858.822667pt;}
.y4{bottom:860.476000pt;}
.y77{bottom:863.329333pt;}
.y53{bottom:876.262667pt;}
.y2d{bottom:881.766667pt;}
.y52{bottom:896.850667pt;}
.y3{bottom:898.997333pt;}
.y76{bottom:899.605333pt;}
.y9e{bottom:902.750667pt;}
.y2c{bottom:913.517333pt;}
.y75{bottom:915.545333pt;}
.y9d{bottom:918.690667pt;}
.y2{bottom:928.221333pt;}
.y74{bottom:931.485333pt;}
.y9c{bottom:934.630667pt;}
.y2b{bottom:937.428000pt;}
.y51{bottom:940.896000pt;}
.y73{bottom:947.426667pt;}
.y9b{bottom:950.570667pt;}
.y50{bottom:956.836000pt;}
.y1{bottom:957.445333pt;}
.y72{bottom:963.366667pt;}
.y9a{bottom:966.512000pt;}
.y4f{bottom:972.777333pt;}
.y71{bottom:979.306667pt;}
.y2a{bottom:981.356000pt;}
.y99{bottom:982.452000pt;}
.y4e{bottom:988.717333pt;}
.y29{bottom:997.296000pt;}
.y70{bottom:1008.401333pt;}
.y28{bottom:1013.236000pt;}
.h10{height:2.125355pt;}
.he{height:26.147101pt;}
.hf{height:26.184294pt;}
.h5{height:35.865600pt;}
.h4{height:39.340578pt;}
.h9{height:39.850400pt;}
.h3{height:44.887791pt;}
.hb{height:47.820800pt;}
.h7{height:47.950933pt;}
.h6{height:47.956267pt;}
.h16{height:48.088434pt;}
.h18{height:51.720294pt;}
.hd{height:52.605355pt;}
.ha{height:53.279733pt;}
.hc{height:53.285067pt;}
.h19{height:55.466400pt;}
.h8{height:57.384800pt;}
.h2{height:64.913535pt;}
.h17{height:73.203866pt;}
.h11{height:75.797067pt;}
.h15{height:76.298400pt;}
.h1a{height:92.984021pt;}
.h14{height:112.245067pt;}
.h12{height:121.779101pt;}
.h13{height:124.207733pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:96.000000pt;}
.x33{left:99.477333pt;}
.x1{left:104.410667pt;}
.xf{left:112.236000pt;}
.x2d{left:115.926667pt;}
.x2{left:119.564000pt;}
.x12{left:123.120000pt;}
.x11{left:128.278667pt;}
.x9{left:129.209333pt;}
.x3c{left:132.306667pt;}
.x8{left:147.640000pt;}
.x2b{left:160.334667pt;}
.x1d{left:166.741333pt;}
.x39{left:174.514667pt;}
.x34{left:183.108000pt;}
.x29{left:188.084000pt;}
.x3e{left:191.552000pt;}
.x2c{left:207.216000pt;}
.x14{left:209.805333pt;}
.x13{left:213.282667pt;}
.x2e{left:223.765333pt;}
.x25{left:230.318667pt;}
.x3f{left:236.122667pt;}
.x1e{left:237.756000pt;}
.x3d{left:244.552000pt;}
.x26{left:245.670667pt;}
.x2f{left:249.720000pt;}
.x1f{left:256.992000pt;}
.x15{left:259.654667pt;}
.x3a{left:263.773333pt;}
.x35{left:266.690667pt;}
.x30{left:269.777333pt;}
.x31{left:273.098667pt;}
.xa{left:274.701333pt;}
.x16{left:292.892000pt;}
.x4{left:295.074667pt;}
.xd{left:302.353333pt;}
.x22{left:308.204000pt;}
.x38{left:319.388000pt;}
.x5{left:334.177333pt;}
.x6{left:343.510667pt;}
.x3b{left:345.725333pt;}
.x3{left:357.348000pt;}
.x7{left:380.941333pt;}
.x17{left:394.233333pt;}
.x10{left:404.678667pt;}
.x23{left:431.696000pt;}
.x32{left:438.578667pt;}
.x24{left:446.241333pt;}
.x18{left:453.689333pt;}
.x2a{left:461.540000pt;}
.x1b{left:468.234667pt;}
.x1a{left:470.078667pt;}
.x19{left:474.377333pt;}
.x1c{left:493.324000pt;}
.x36{left:495.364000pt;}
.x20{left:517.586667pt;}
.x37{left:545.213333pt;}
.x21{left:557.050667pt;}
.x27{left:563.581333pt;}
.xb{left:587.852000pt;}
.x28{left:634.954667pt;}
.xe{left:672.712000pt;}
}




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