
    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_48d40d6f0aca962cad135845.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.765137;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_ff857c484166108c028e129a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.975586;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_915bdb101a5679400fb80280.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.750000;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_cc22e3386dfecd7626f6964d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_1eb897b15df9e00221a6acb5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_0bf70372cd0cfd90839c6adb.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.952148;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_4eda34273f3931aad629d4d7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.975586;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_5d652922d20e31c67c4e4be9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.975586;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_902af842cc4bfc88391a8d5d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_d963bedb0fa3a5ec44a70d3c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_b89da4efa8a663d4f8ae6377.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.024902;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_f0b7fcff705679416d68671e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.750000;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_56a2cf2c83add355a81a9f75.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.759277;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_1b957791d6fb300fd0789458.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.835449;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_042795478f77a037ba594918.woff2')format("woff");}.fff{font-family:fff;line-height:0.966309;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_4f4fabcf372e1095580d780f.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.966309;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;}
.m6{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.261892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261892,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.271277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271277,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.286765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286765,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-44.640000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:44.640000px;}
.ls2b{letter-spacing:-1.034208px;}
.ls2c{letter-spacing:-0.898128px;}
.lsc{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.015552px;}
.ls25{letter-spacing:0.036144px;}
.ls20{letter-spacing:0.085536px;}
.ls1d{letter-spacing:0.093312px;}
.ls1a{letter-spacing:0.101088px;}
.ls18{letter-spacing:0.108864px;}
.ls1b{letter-spacing:0.116640px;}
.ls28{letter-spacing:0.123120px;}
.ls1c{letter-spacing:0.124416px;}
.ls1e{letter-spacing:0.132192px;}
.ls17{letter-spacing:0.139968px;}
.ls22{letter-spacing:0.147744px;}
.ls19{letter-spacing:0.154944px;}
.ls1f{letter-spacing:0.155520px;}
.ls29{letter-spacing:0.171072px;}
.ls0{letter-spacing:0.172944px;}
.ls26{letter-spacing:0.186624px;}
.ls27{letter-spacing:0.424512px;}
.ls23{letter-spacing:0.434160px;}
.ls24{letter-spacing:0.520992px;}
.ls2a{letter-spacing:0.562464px;}
.ls4{letter-spacing:0.771840px;}
.ls14{letter-spacing:0.773280px;}
.ls15{letter-spacing:1.439424px;}
.ls6{letter-spacing:1.518048px;}
.ls16{letter-spacing:1.671840px;}
.ls5{letter-spacing:3.314304px;}
.ls1{letter-spacing:3.465504px;}
.ls13{letter-spacing:3.471552px;}
.lsd{letter-spacing:4.965408px;}
.lsa{letter-spacing:5.971073px;}
.ls8{letter-spacing:5.971082px;}
.lsb{letter-spacing:5.971093px;}
.ls12{letter-spacing:5.985883px;}
.ls9{letter-spacing:6.070589px;}
.ls11{letter-spacing:7.369412px;}
.lse{letter-spacing:11.664000px;}
.ls10{letter-spacing:11.678400px;}
.lsf{letter-spacing:11.721600px;}
.ls7{letter-spacing:196.888320px;}
.ls2{letter-spacing:537.755472px;}
.ls3{letter-spacing:1428.988320px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb{word-spacing:-29.561472px;}
.wsa{word-spacing:-29.474640px;}
.wsd{word-spacing:-29.464992px;}
.ws11{word-spacing:-27.497232px;}
.wse{word-spacing:-24.494400px;}
.wsc{word-spacing:-24.478848px;}
.ws10{word-spacing:-24.463296px;}
.wsf{word-spacing:-24.455520px;}
.ws9{word-spacing:-24.447744px;}
.ws0{word-spacing:-24.077088px;}
.ws1{word-spacing:-22.577184px;}
.ws2{word-spacing:-22.425984px;}
.ws4{word-spacing:-20.629728px;}
.ws8{word-spacing:-20.551104px;}
.ws6{word-spacing:-6.141177px;}
.ws5{word-spacing:-6.056471px;}
.ws3{word-spacing:-0.060480px;}
.ws7{word-spacing:0.000000px;}
._1{margin-left:-14.182560px;}
._3{margin-left:-6.152544px;}
._0{margin-left:-1.028160px;}
._7{width:1.011931px;}
._5{width:2.608229px;}
._6{width:4.096411px;}
._4{width:6.111752px;}
._8{width:24.753600px;}
._a{width:71.788320px;}
._b{width:196.888320px;}
._2{width:260.102880px;}
._9{width:1428.988320px;}
.fc4{color:rgb(235,231,231);}
.fc3{color:transparent;}
.fc2{color:rgb(0,129,129);}
.fc1{color:rgb(33,33,33);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:70.588238px;}
.fs7{font-size:77.760000px;}
.fs6{font-size:90.720000px;}
.fs8{font-size:96.480000px;}
.fs4{font-size:105.882350px;}
.fs3{font-size:144.000000px;}
.fs2{font-size:155.520000px;}
.y0{bottom:0.000000px;}
.y80{bottom:21.840000px;}
.ybc{bottom:22.560000px;}
.y6c{bottom:22.740000px;}
.y46{bottom:23.100000px;}
.y9e{bottom:23.640000px;}
.y44{bottom:23.760000px;}
.y1f{bottom:56.640000px;}
.y6{bottom:71.040000px;}
.y5{bottom:82.920000px;}
.y1e{bottom:84.360000px;}
.yd8{bottom:89.040000px;}
.y4{bottom:105.960000px;}
.y1d{bottom:107.400000px;}
.y1c{bottom:130.440000px;}
.y1b{bottom:153.480000px;}
.yd7{bottom:171.480000px;}
.y1a{bottom:176.520000px;}
.yd6{bottom:198.120000px;}
.y42{bottom:199.200000px;}
.y7e{bottom:200.280000px;}
.y6a{bottom:214.320000px;}
.y41{bottom:222.960000px;}
.y7d{bottom:224.040000px;}
.yd5{bottom:225.120000px;}
.y69{bottom:237.720000px;}
.y40{bottom:246.360000px;}
.y7c{bottom:247.440000px;}
.yd4{bottom:252.480000px;}
.y9c{bottom:255.720000px;}
.y68{bottom:261.480000px;}
.y3f{bottom:269.760000px;}
.y7b{bottom:271.200000px;}
.y9b{bottom:279.120000px;}
.y67{bottom:284.880000px;}
.y3e{bottom:293.520000px;}
.yd3{bottom:294.240000px;}
.y7a{bottom:294.600000px;}
.y9a{bottom:302.520000px;}
.y66{bottom:308.280000px;}
.y3d{bottom:316.920000px;}
.y79{bottom:318.000000px;}
.y99{bottom:326.280000px;}
.y65{bottom:332.040000px;}
.yd2{bottom:336.000000px;}
.y19{bottom:336.720000px;}
.y3c{bottom:340.680000px;}
.y78{bottom:341.760000px;}
.y98{bottom:349.680000px;}
.y64{bottom:355.440000px;}
.y3b{bottom:364.080000px;}
.y18{bottom:364.800000px;}
.y77{bottom:365.160000px;}
.y97{bottom:373.440000px;}
.yd1{bottom:377.760000px;}
.y63{bottom:379.200000px;}
.y7f{bottom:384.000000px;}
.y76{bottom:384.600000px;}
.y3a{bottom:387.480000px;}
.y17{bottom:392.520000px;}
.yba{bottom:395.400000px;}
.y96{bottom:396.840000px;}
.y62{bottom:402.600000px;}
.y39{bottom:411.240000px;}
.yb9{bottom:418.800000px;}
.yd0{bottom:419.880000px;}
.y95{bottom:420.240000px;}
.y61{bottom:426.000000px;}
.y16{bottom:427.072800px;}
.y38{bottom:434.640000px;}
.yb8{bottom:442.560000px;}
.y94{bottom:444.000000px;}
.y75{bottom:447.240000px;}
.y60{bottom:449.760000px;}
.y37{bottom:458.040000px;}
.ycf{bottom:461.640000px;}
.yb7{bottom:465.960000px;}
.y93{bottom:467.400000px;}
.y15{bottom:468.832800px;}
.y74{bottom:470.640000px;}
.y5f{bottom:473.160000px;}
.y36{bottom:481.800000px;}
.yb6{bottom:489.360000px;}
.y92{bottom:490.800000px;}
.y73{bottom:494.400000px;}
.y5e{bottom:496.560000px;}
.yce{bottom:503.400000px;}
.y35{bottom:505.200000px;}
.y14{bottom:510.232800px;}
.yb5{bottom:513.120000px;}
.y91{bottom:514.560000px;}
.y72{bottom:517.800000px;}
.y5d{bottom:520.320000px;}
.y34{bottom:528.960000px;}
.yb4{bottom:536.520000px;}
.y90{bottom:537.960000px;}
.y71{bottom:541.560000px;}
.y5c{bottom:543.720000px;}
.ycd{bottom:545.520000px;}
.y12{bottom:547.584600px;}
.y13{bottom:547.672800px;}
.y33{bottom:552.360000px;}
.yb3{bottom:559.920000px;}
.y8f{bottom:561.720000px;}
.y70{bottom:564.960000px;}
.y5b{bottom:567.480000px;}
.y32{bottom:575.760000px;}
.y11{bottom:579.352944px;}
.yb2{bottom:583.680000px;}
.y8e{bottom:585.120000px;}
.y6b{bottom:586.500000px;}
.ycc{bottom:587.280000px;}
.y6f{bottom:588.360000px;}
.y31{bottom:599.520000px;}
.yb1{bottom:607.080000px;}
.y8d{bottom:608.520000px;}
.y6e{bottom:612.120000px;}
.y10{bottom:620.752944px;}
.y30{bottom:622.920000px;}
.ycb{bottom:629.040000px;}
.yb0{bottom:630.840000px;}
.y8c{bottom:632.280000px;}
.y6d{bottom:635.520000px;}
.y2f{bottom:646.320000px;}
.yaf{bottom:654.240000px;}
.y8b{bottom:655.680000px;}
.y5a{bottom:658.920000px;}
.yf{bottom:660.720000px;}
.y2e{bottom:670.080000px;}
.yca{bottom:670.800000px;}
.yae{bottom:677.640000px;}
.y8a{bottom:679.080000px;}
.y59{bottom:682.680000px;}
.y2d{bottom:693.480000px;}
.yad{bottom:701.400000px;}
.y89{bottom:702.840000px;}
.ye{bottom:705.360000px;}
.y58{bottom:706.080000px;}
.y45{bottom:712.500000px;}
.yc9{bottom:712.920000px;}
.yac{bottom:724.800000px;}
.y88{bottom:726.240000px;}
.y57{bottom:729.840000px;}
.yab{bottom:748.200000px;}
.yd{bottom:750.000000px;}
.y56{bottom:753.240000px;}
.yc8{bottom:754.680000px;}
.yaa{bottom:771.960000px;}
.y87{bottom:773.400000px;}
.y2c{bottom:775.920000px;}
.y55{bottom:776.640000px;}
.yc{bottom:792.120000px;}
.ya9{bottom:795.360000px;}
.yc7{bottom:796.440000px;}
.y86{bottom:796.800000px;}
.y2b{bottom:799.680000px;}
.y54{bottom:800.400000px;}
.ya8{bottom:819.120000px;}
.y85{bottom:820.560000px;}
.y2a{bottom:823.080000px;}
.y53{bottom:823.800000px;}
.yc6{bottom:838.200000px;}
.ya7{bottom:842.520000px;}
.y84{bottom:843.960000px;}
.y29{bottom:846.840000px;}
.y52{bottom:847.200000px;}
.ya6{bottom:865.920000px;}
.y83{bottom:867.720000px;}
.y28{bottom:870.240000px;}
.y51{bottom:870.960000px;}
.yb{bottom:875.280000px;}
.yc5{bottom:880.320000px;}
.ya5{bottom:889.680000px;}
.y82{bottom:891.120000px;}
.y27{bottom:893.640000px;}
.y50{bottom:894.360000px;}
.ya4{bottom:913.080000px;}
.y81{bottom:914.520000px;}
.y26{bottom:917.400000px;}
.y4f{bottom:918.120000px;}
.ya{bottom:920.280000px;}
.yc4{bottom:922.080000px;}
.y9d{bottom:933.000000px;}
.ya3{bottom:936.840000px;}
.y25{bottom:940.800000px;}
.y4e{bottom:941.520000px;}
.ya2{bottom:960.240000px;}
.yc3{bottom:963.840000px;}
.y24{bottom:964.200000px;}
.y9{bottom:964.920000px;}
.ya1{bottom:983.640000px;}
.y23{bottom:987.960000px;}
.y4d{bottom:988.680000px;}
.yc2{bottom:991.200000px;}
.y7{bottom:1004.160000px;}
.y8{bottom:1004.880000px;}
.ya0{bottom:1007.400000px;}
.y22{bottom:1011.360000px;}
.y4c{bottom:1012.080000px;}
.yc1{bottom:1018.200000px;}
.y9f{bottom:1030.800000px;}
.y21{bottom:1035.120000px;}
.y4b{bottom:1035.840000px;}
.yc0{bottom:1045.560000px;}
.ybb{bottom:1050.000000px;}
.y4a{bottom:1059.240000px;}
.y20{bottom:1063.200000px;}
.ybf{bottom:1072.560000px;}
.y49{bottom:1082.640000px;}
.y43{bottom:1083.000000px;}
.ybe{bottom:1099.920000px;}
.y48{bottom:1106.400000px;}
.ybd{bottom:1126.920000px;}
.y47{bottom:1129.800000px;}
.y3{bottom:1152.480000px;}
.y2{bottom:1172.640000px;}
.y1{bottom:1192.440000px;}
.h5{height:40.310156px;}
.h3{height:46.629844px;}
.h2{height:49.680000px;}
.hb{height:51.827344px;}
.h9{height:54.423256px;}
.hd{height:58.320000px;}
.h11{height:58.500000px;}
.he{height:60.000000px;}
.ha{height:60.465234px;}
.hc{height:63.635625px;}
.h12{height:68.925938px;}
.hf{height:72.077344px;}
.h10{height:78.955313px;}
.h8{height:81.634879px;}
.h4{height:91.269844px;}
.h6{height:103.654688px;}
.h7{height:107.578125px;}
.h1{height:1236.000000px;}
.h0{height:1263.000000px;}
.w2{width:298.500000px;}
.w3{width:300.000000px;}
.w4{width:306.000000px;}
.w1{width:865.500000px;}
.w0{width:892.500000px;}
.x2{left:-27.000000px;}
.x0{left:0.000000px;}
.xc{left:3.149801px;}
.x1{left:27.000000px;}
.x3{left:47.250000px;}
.xa{left:53.174927px;}
.x16{left:69.000000px;}
.x5{left:74.474856px;}
.xe{left:76.500000px;}
.x4{left:111.825072px;}
.x12{left:118.264534px;}
.xd{left:126.999372px;}
.x13{left:135.141706px;}
.x10{left:147.970812px;}
.x14{left:151.280652px;}
.x17{left:161.094000px;}
.xf{left:187.469964px;}
.x15{left:240.044304px;}
.x1a{left:275.259888px;}
.x19{left:279.839340px;}
.x18{left:303.498405px;}
.x7{left:361.510969px;}
.x11{left:372.914820px;}
.xb{left:404.025120px;}
.x9{left:420.450120px;}
.x6{left:495.460836px;}
.x8{left:807.975061px;}
@media print{
.v2{vertical-align:-39.680000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:39.680000pt;}
.ls2b{letter-spacing:-0.919296pt;}
.ls2c{letter-spacing:-0.798336pt;}
.lsc{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.013824pt;}
.ls25{letter-spacing:0.032128pt;}
.ls20{letter-spacing:0.076032pt;}
.ls1d{letter-spacing:0.082944pt;}
.ls1a{letter-spacing:0.089856pt;}
.ls18{letter-spacing:0.096768pt;}
.ls1b{letter-spacing:0.103680pt;}
.ls28{letter-spacing:0.109440pt;}
.ls1c{letter-spacing:0.110592pt;}
.ls1e{letter-spacing:0.117504pt;}
.ls17{letter-spacing:0.124416pt;}
.ls22{letter-spacing:0.131328pt;}
.ls19{letter-spacing:0.137728pt;}
.ls1f{letter-spacing:0.138240pt;}
.ls29{letter-spacing:0.152064pt;}
.ls0{letter-spacing:0.153728pt;}
.ls26{letter-spacing:0.165888pt;}
.ls27{letter-spacing:0.377344pt;}
.ls23{letter-spacing:0.385920pt;}
.ls24{letter-spacing:0.463104pt;}
.ls2a{letter-spacing:0.499968pt;}
.ls4{letter-spacing:0.686080pt;}
.ls14{letter-spacing:0.687360pt;}
.ls15{letter-spacing:1.279488pt;}
.ls6{letter-spacing:1.349376pt;}
.ls16{letter-spacing:1.486080pt;}
.ls5{letter-spacing:2.946048pt;}
.ls1{letter-spacing:3.080448pt;}
.ls13{letter-spacing:3.085824pt;}
.lsd{letter-spacing:4.413696pt;}
.lsa{letter-spacing:5.307620pt;}
.ls8{letter-spacing:5.307628pt;}
.lsb{letter-spacing:5.307638pt;}
.ls12{letter-spacing:5.320785pt;}
.ls9{letter-spacing:5.396079pt;}
.ls11{letter-spacing:6.550588pt;}
.lse{letter-spacing:10.368000pt;}
.ls10{letter-spacing:10.380800pt;}
.lsf{letter-spacing:10.419200pt;}
.ls7{letter-spacing:175.011840pt;}
.ls2{letter-spacing:478.004864pt;}
.ls3{letter-spacing:1270.211840pt;}
.wsb{word-spacing:-26.276864pt;}
.wsa{word-spacing:-26.199680pt;}
.wsd{word-spacing:-26.191104pt;}
.ws11{word-spacing:-24.441984pt;}
.wse{word-spacing:-21.772800pt;}
.wsc{word-spacing:-21.758976pt;}
.ws10{word-spacing:-21.745152pt;}
.wsf{word-spacing:-21.738240pt;}
.ws9{word-spacing:-21.731328pt;}
.ws0{word-spacing:-21.401856pt;}
.ws1{word-spacing:-20.068608pt;}
.ws2{word-spacing:-19.934208pt;}
.ws4{word-spacing:-18.337536pt;}
.ws8{word-spacing:-18.267648pt;}
.ws6{word-spacing:-5.458824pt;}
.ws5{word-spacing:-5.383530pt;}
.ws3{word-spacing:-0.053760pt;}
.ws7{word-spacing:0.000000pt;}
._1{margin-left:-12.606720pt;}
._3{margin-left:-5.468928pt;}
._0{margin-left:-0.913920pt;}
._7{width:0.899494pt;}
._5{width:2.318426pt;}
._6{width:3.641254pt;}
._4{width:5.432669pt;}
._8{width:22.003200pt;}
._a{width:63.811840pt;}
._b{width:175.011840pt;}
._2{width:231.202560pt;}
._9{width:1270.211840pt;}
.fs1{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:62.745101pt;}
.fs7{font-size:69.120000pt;}
.fs6{font-size:80.640000pt;}
.fs8{font-size:85.760000pt;}
.fs4{font-size:94.117645pt;}
.fs3{font-size:128.000000pt;}
.fs2{font-size:138.240000pt;}
.y0{bottom:0.000000pt;}
.y80{bottom:19.413333pt;}
.ybc{bottom:20.053333pt;}
.y6c{bottom:20.213333pt;}
.y46{bottom:20.533333pt;}
.y9e{bottom:21.013333pt;}
.y44{bottom:21.120000pt;}
.y1f{bottom:50.346667pt;}
.y6{bottom:63.146667pt;}
.y5{bottom:73.706667pt;}
.y1e{bottom:74.986667pt;}
.yd8{bottom:79.146667pt;}
.y4{bottom:94.186667pt;}
.y1d{bottom:95.466667pt;}
.y1c{bottom:115.946667pt;}
.y1b{bottom:136.426667pt;}
.yd7{bottom:152.426667pt;}
.y1a{bottom:156.906667pt;}
.yd6{bottom:176.106667pt;}
.y42{bottom:177.066667pt;}
.y7e{bottom:178.026667pt;}
.y6a{bottom:190.506667pt;}
.y41{bottom:198.186667pt;}
.y7d{bottom:199.146667pt;}
.yd5{bottom:200.106667pt;}
.y69{bottom:211.306667pt;}
.y40{bottom:218.986667pt;}
.y7c{bottom:219.946667pt;}
.yd4{bottom:224.426667pt;}
.y9c{bottom:227.306667pt;}
.y68{bottom:232.426667pt;}
.y3f{bottom:239.786667pt;}
.y7b{bottom:241.066667pt;}
.y9b{bottom:248.106667pt;}
.y67{bottom:253.226667pt;}
.y3e{bottom:260.906667pt;}
.yd3{bottom:261.546667pt;}
.y7a{bottom:261.866667pt;}
.y9a{bottom:268.906667pt;}
.y66{bottom:274.026667pt;}
.y3d{bottom:281.706667pt;}
.y79{bottom:282.666667pt;}
.y99{bottom:290.026667pt;}
.y65{bottom:295.146667pt;}
.yd2{bottom:298.666667pt;}
.y19{bottom:299.306667pt;}
.y3c{bottom:302.826667pt;}
.y78{bottom:303.786667pt;}
.y98{bottom:310.826667pt;}
.y64{bottom:315.946667pt;}
.y3b{bottom:323.626667pt;}
.y18{bottom:324.266667pt;}
.y77{bottom:324.586667pt;}
.y97{bottom:331.946667pt;}
.yd1{bottom:335.786667pt;}
.y63{bottom:337.066667pt;}
.y7f{bottom:341.333333pt;}
.y76{bottom:341.866667pt;}
.y3a{bottom:344.426667pt;}
.y17{bottom:348.906667pt;}
.yba{bottom:351.466667pt;}
.y96{bottom:352.746667pt;}
.y62{bottom:357.866667pt;}
.y39{bottom:365.546667pt;}
.yb9{bottom:372.266667pt;}
.yd0{bottom:373.226667pt;}
.y95{bottom:373.546667pt;}
.y61{bottom:378.666667pt;}
.y16{bottom:379.620267pt;}
.y38{bottom:386.346667pt;}
.yb8{bottom:393.386667pt;}
.y94{bottom:394.666667pt;}
.y75{bottom:397.546667pt;}
.y60{bottom:399.786667pt;}
.y37{bottom:407.146667pt;}
.ycf{bottom:410.346667pt;}
.yb7{bottom:414.186667pt;}
.y93{bottom:415.466667pt;}
.y15{bottom:416.740267pt;}
.y74{bottom:418.346667pt;}
.y5f{bottom:420.586667pt;}
.y36{bottom:428.266667pt;}
.yb6{bottom:434.986667pt;}
.y92{bottom:436.266667pt;}
.y73{bottom:439.466667pt;}
.y5e{bottom:441.386667pt;}
.yce{bottom:447.466667pt;}
.y35{bottom:449.066667pt;}
.y14{bottom:453.540267pt;}
.yb5{bottom:456.106667pt;}
.y91{bottom:457.386667pt;}
.y72{bottom:460.266667pt;}
.y5d{bottom:462.506667pt;}
.y34{bottom:470.186667pt;}
.yb4{bottom:476.906667pt;}
.y90{bottom:478.186667pt;}
.y71{bottom:481.386667pt;}
.y5c{bottom:483.306667pt;}
.ycd{bottom:484.906667pt;}
.y12{bottom:486.741867pt;}
.y13{bottom:486.820267pt;}
.y33{bottom:490.986667pt;}
.yb3{bottom:497.706667pt;}
.y8f{bottom:499.306667pt;}
.y70{bottom:502.186667pt;}
.y5b{bottom:504.426667pt;}
.y32{bottom:511.786667pt;}
.y11{bottom:514.980395pt;}
.yb2{bottom:518.826667pt;}
.y8e{bottom:520.106667pt;}
.y6b{bottom:521.333333pt;}
.ycc{bottom:522.026667pt;}
.y6f{bottom:522.986667pt;}
.y31{bottom:532.906667pt;}
.yb1{bottom:539.626667pt;}
.y8d{bottom:540.906667pt;}
.y6e{bottom:544.106667pt;}
.y10{bottom:551.780395pt;}
.y30{bottom:553.706667pt;}
.ycb{bottom:559.146667pt;}
.yb0{bottom:560.746667pt;}
.y8c{bottom:562.026667pt;}
.y6d{bottom:564.906667pt;}
.y2f{bottom:574.506667pt;}
.yaf{bottom:581.546667pt;}
.y8b{bottom:582.826667pt;}
.y5a{bottom:585.706667pt;}
.yf{bottom:587.306667pt;}
.y2e{bottom:595.626667pt;}
.yca{bottom:596.266667pt;}
.yae{bottom:602.346667pt;}
.y8a{bottom:603.626667pt;}
.y59{bottom:606.826667pt;}
.y2d{bottom:616.426667pt;}
.yad{bottom:623.466667pt;}
.y89{bottom:624.746667pt;}
.ye{bottom:626.986667pt;}
.y58{bottom:627.626667pt;}
.y45{bottom:633.333333pt;}
.yc9{bottom:633.706667pt;}
.yac{bottom:644.266667pt;}
.y88{bottom:645.546667pt;}
.y57{bottom:648.746667pt;}
.yab{bottom:665.066667pt;}
.yd{bottom:666.666667pt;}
.y56{bottom:669.546667pt;}
.yc8{bottom:670.826667pt;}
.yaa{bottom:686.186667pt;}
.y87{bottom:687.466667pt;}
.y2c{bottom:689.706667pt;}
.y55{bottom:690.346667pt;}
.yc{bottom:704.106667pt;}
.ya9{bottom:706.986667pt;}
.yc7{bottom:707.946667pt;}
.y86{bottom:708.266667pt;}
.y2b{bottom:710.826667pt;}
.y54{bottom:711.466667pt;}
.ya8{bottom:728.106667pt;}
.y85{bottom:729.386667pt;}
.y2a{bottom:731.626667pt;}
.y53{bottom:732.266667pt;}
.yc6{bottom:745.066667pt;}
.ya7{bottom:748.906667pt;}
.y84{bottom:750.186667pt;}
.y29{bottom:752.746667pt;}
.y52{bottom:753.066667pt;}
.ya6{bottom:769.706667pt;}
.y83{bottom:771.306667pt;}
.y28{bottom:773.546667pt;}
.y51{bottom:774.186667pt;}
.yb{bottom:778.026667pt;}
.yc5{bottom:782.506667pt;}
.ya5{bottom:790.826667pt;}
.y82{bottom:792.106667pt;}
.y27{bottom:794.346667pt;}
.y50{bottom:794.986667pt;}
.ya4{bottom:811.626667pt;}
.y81{bottom:812.906667pt;}
.y26{bottom:815.466667pt;}
.y4f{bottom:816.106667pt;}
.ya{bottom:818.026667pt;}
.yc4{bottom:819.626667pt;}
.y9d{bottom:829.333333pt;}
.ya3{bottom:832.746667pt;}
.y25{bottom:836.266667pt;}
.y4e{bottom:836.906667pt;}
.ya2{bottom:853.546667pt;}
.yc3{bottom:856.746667pt;}
.y24{bottom:857.066667pt;}
.y9{bottom:857.706667pt;}
.ya1{bottom:874.346667pt;}
.y23{bottom:878.186667pt;}
.y4d{bottom:878.826667pt;}
.yc2{bottom:881.066667pt;}
.y7{bottom:892.586667pt;}
.y8{bottom:893.226667pt;}
.ya0{bottom:895.466667pt;}
.y22{bottom:898.986667pt;}
.y4c{bottom:899.626667pt;}
.yc1{bottom:905.066667pt;}
.y9f{bottom:916.266667pt;}
.y21{bottom:920.106667pt;}
.y4b{bottom:920.746667pt;}
.yc0{bottom:929.386667pt;}
.ybb{bottom:933.333333pt;}
.y4a{bottom:941.546667pt;}
.y20{bottom:945.066667pt;}
.ybf{bottom:953.386667pt;}
.y49{bottom:962.346667pt;}
.y43{bottom:962.666667pt;}
.ybe{bottom:977.706667pt;}
.y48{bottom:983.466667pt;}
.ybd{bottom:1001.706667pt;}
.y47{bottom:1004.266667pt;}
.y3{bottom:1024.426667pt;}
.y2{bottom:1042.346667pt;}
.y1{bottom:1059.946667pt;}
.h5{height:35.831250pt;}
.h3{height:41.448750pt;}
.h2{height:44.160000pt;}
.hb{height:46.068750pt;}
.h9{height:48.376228pt;}
.hd{height:51.840000pt;}
.h11{height:52.000000pt;}
.he{height:53.333333pt;}
.ha{height:53.746875pt;}
.hc{height:56.565000pt;}
.h12{height:61.267500pt;}
.hf{height:64.068750pt;}
.h10{height:70.182500pt;}
.h8{height:72.564336pt;}
.h4{height:81.128750pt;}
.h6{height:92.137500pt;}
.h7{height:95.625000pt;}
.h1{height:1098.666667pt;}
.h0{height:1122.666667pt;}
.w2{width:265.333333pt;}
.w3{width:266.666667pt;}
.w4{width:272.000000pt;}
.w1{width:769.333333pt;}
.w0{width:793.333333pt;}
.x2{left:-24.000000pt;}
.x0{left:0.000000pt;}
.xc{left:2.799823pt;}
.x1{left:24.000000pt;}
.x3{left:42.000000pt;}
.xa{left:47.266602pt;}
.x16{left:61.333333pt;}
.x5{left:66.199872pt;}
.xe{left:68.000000pt;}
.x4{left:99.400064pt;}
.x12{left:105.124031pt;}
.xd{left:112.888331pt;}
.x13{left:120.125961pt;}
.x10{left:131.529611pt;}
.x14{left:134.471691pt;}
.x17{left:143.194667pt;}
.xf{left:166.639968pt;}
.x15{left:213.372715pt;}
.x1a{left:244.675456pt;}
.x19{left:248.746080pt;}
.x18{left:269.776360pt;}
.x7{left:321.343084pt;}
.x11{left:331.479840pt;}
.xb{left:359.133440pt;}
.x9{left:373.733440pt;}
.x6{left:440.409632pt;}
.x8{left:718.200055pt;}
}




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