
    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_91b8f06bdbb4c2ba7130e46a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.962000;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_9abbef71cb5777c966142f3b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.959000;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_5c8a272c43b59ac808bb86f2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959000;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_b70e17f9e1cde80b2fc8d2dd.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_46e96c0bc96322bbc2ac3fb4.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_5d5c0b5697f56617998b2172.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.575000;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_2f6cdfcd2b67458cc3d4606e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.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);}
.v28{vertical-align:-62.304356px;}
.v20{vertical-align:-37.153974px;}
.v1a{vertical-align:-35.698993px;}
.v1f{vertical-align:-33.412595px;}
.v12{vertical-align:-30.294779px;}
.v27{vertical-align:-26.865181px;}
.v24{vertical-align:-25.202346px;}
.v26{vertical-align:-23.539511px;}
.v25{vertical-align:-17.771551px;}
.vb{vertical-align:-12.679118px;}
.v17{vertical-align:-8.833812px;}
.v1d{vertical-align:-7.222940px;}
.v1b{vertical-align:-5.404214px;}
.v16{vertical-align:-4.364942px;}
.v1{vertical-align:-1.616882px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:5.456178px;}
.v21{vertical-align:6.547414px;}
.v23{vertical-align:7.690613px;}
.v22{vertical-align:9.977011px;}
.v14{vertical-align:11.743774px;}
.va{vertical-align:13.042864px;}
.v18{vertical-align:14.341954px;}
.v19{vertical-align:15.900862px;}
.vd{vertical-align:20.473658px;}
.v1e{vertical-align:21.772748px;}
.v13{vertical-align:23.539511px;}
.v8{vertical-align:25.358237px;}
.v10{vertical-align:26.917145px;}
.vc{vertical-align:29.203543px;}
.v2{vertical-align:39.596263px;}
.v3{vertical-align:43.181752px;}
.v6{vertical-align:47.858476px;}
.v1c{vertical-align:49.937020px;}
.v15{vertical-align:53.626435px;}
.v9{vertical-align:66.773226px;}
.v4{vertical-align:68.124280px;}
.v5{vertical-align:93.638407px;}
.ve{vertical-align:155.994727px;}
.v11{vertical-align:191.849611px;}
.vf{vertical-align:194.499755px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:14.279026px;}
.ls1{letter-spacing:14.330989px;}
.ls3{letter-spacing:280.800330px;}
.ls2{letter-spacing:280.852294px;}
.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;}
}
.ws2{word-spacing:-102.896752px;}
.ws35{word-spacing:-59.541095px;}
.ws1b{word-spacing:-49.620331px;}
.ws41{word-spacing:-41.344883px;}
.ws24{word-spacing:-27.000453px;}
.ws2e{word-spacing:-24.557997px;}
.ws27{word-spacing:-11.780366px;}
.ws9{word-spacing:-10.173953px;}
.ws4{word-spacing:-9.459991px;}
.wsf{word-spacing:-6.068674px;}
.ws1c{word-spacing:-3.926789px;}
.ws1{word-spacing:-2.590925px;}
.ws3e{word-spacing:-2.272433px;}
.ws28{word-spacing:-0.713962px;}
.ws23{word-spacing:-0.535471px;}
.ws42{word-spacing:-0.446168px;}
.ws3b{word-spacing:-0.413170px;}
.ws1d{word-spacing:-0.008318px;}
.ws3{word-spacing:0.000000px;}
.ws21{word-spacing:0.178490px;}
.ws1a{word-spacing:0.535471px;}
.ws2a{word-spacing:1.070942px;}
.ws15{word-spacing:1.427923px;}
.ws19{word-spacing:1.606414px;}
.ws36{word-spacing:2.065848px;}
.ws17{word-spacing:4.105279px;}
.ws18{word-spacing:6.247164px;}
.wse{word-spacing:8.567539px;}
.ws8{word-spacing:8.924520px;}
.ws7{word-spacing:9.103010px;}
.ws37{word-spacing:10.019363px;}
.ws6{word-spacing:10.887914px;}
.ws3f{word-spacing:11.356426px;}
.ws3c{word-spacing:11.356672px;}
.ws3a{word-spacing:11.775334px;}
.ws39{word-spacing:12.601673px;}
.ws5{word-spacing:13.208290px;}
.ws20{word-spacing:13.565270px;}
.ws40{word-spacing:14.460936px;}
.wsd{word-spacing:14.636213px;}
.ws16{word-spacing:15.707155px;}
.wsb{word-spacing:18.027530px;}
.ws29{word-spacing:20.526396px;}
.ws11{word-spacing:21.061867px;}
.ws12{word-spacing:21.418848px;}
.ws13{word-spacing:23.025262px;}
.ws0{word-spacing:23.688461px;}
.ws14{word-spacing:23.917714px;}
.ws22{word-spacing:25.524127px;}
.ws10{word-spacing:27.487522px;}
.wsa{word-spacing:28.201483px;}
.ws1f{word-spacing:28.379974px;}
.ws3d{word-spacing:28.611995px;}
.ws38{word-spacing:38.631358px;}
.ws1e{word-spacing:49.441841px;}
.ws34{word-spacing:61.867862px;}
.wsc{word-spacing:64.078054px;}
.ws2f{word-spacing:116.221788px;}
.ws2c{word-spacing:118.768004px;}
.ws31{word-spacing:164.495972px;}
.ws30{word-spacing:194.146402px;}
.ws33{word-spacing:250.038450px;}
.ws2b{word-spacing:304.194914px;}
.ws32{word-spacing:368.117989px;}
.ws2d{word-spacing:1224.823623px;}
.ws25{word-spacing:1287.166718px;}
.ws26{word-spacing:1900.036363px;}
._22{margin-left:-1037.851555px;}
._21{margin-left:-20.562912px;}
._18{margin-left:-17.426302px;}
._0{margin-left:-14.805288px;}
._7{margin-left:-12.850596px;}
._29{margin-left:-11.442778px;}
._2{margin-left:-8.142908px;}
._1{margin-left:-7.032512px;}
._3{margin-left:-5.551983px;}
._4{margin-left:-3.701322px;}
._5{margin-left:-2.153506px;}
._10{margin-left:-1.122872px;}
._b{width:1.916418px;}
._6{width:3.119112px;}
._8{width:4.488239px;}
._a{width:7.336887px;}
._27{width:29.851504px;}
._25{width:32.145904px;}
._2b{width:36.428667px;}
._2a{width:39.555574px;}
._2e{width:40.737380px;}
._28{width:43.470466px;}
._26{width:45.559878px;}
._2c{width:47.075528px;}
._9{width:51.160574px;}
._f{width:60.352998px;}
._d{width:63.382873px;}
._13{width:65.374463px;}
._11{width:66.569721px;}
._16{width:69.536084px;}
._1d{width:74.005866px;}
._19{width:79.963699px;}
._2d{width:83.641710px;}
._e{width:88.026169px;}
._c{width:100.323226px;}
._1c{width:101.929640px;}
._12{width:106.108556px;}
._17{width:108.188425px;}
._14{width:125.431775px;}
._15{width:133.332329px;}
._1e{width:137.616098px;}
._24{width:231.726478px;}
._1b{width:324.271088px;}
._23{width:341.774990px;}
._20{width:522.128198px;}
._1a{width:550.111683px;}
._1f{width:778.371915px;}
.fc2{color:rgb(230,120,23);}
.fc3{color:transparent;}
.fc1{color:rgb(0,4,174);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:32.269396px;}
.fs8{font-size:67.552680px;}
.fs9{font-size:88.338120px;}
.fs5{font-size:97.474560px;}
.fsa{font-size:103.292400px;}
.fs6{font-size:110.142797px;}
.fs2{font-size:148.722600px;}
.fs3{font-size:178.490400px;}
.fs1{font-size:214.176600px;}
.fs4{font-size:257.036400px;}
.fs0{font-size:370.132200px;}
.y0{bottom:0.000000px;}
.y28{bottom:0.285561px;}
.y61{bottom:3.936243px;}
.y40{bottom:12.185464px;}
.y66{bottom:12.783046px;}
.y31{bottom:13.957695px;}
.y33{bottom:16.483209px;}
.y60{bottom:17.693606px;}
.y41{bottom:25.566091px;}
.y27{bottom:30.746361px;}
.y53{bottom:33.243713px;}
.y4e{bottom:34.529812px;}
.y65{bottom:36.166666px;}
.y73{bottom:36.622500px;}
.y75{bottom:36.657000px;}
.y5f{bottom:41.376016px;}
.y26{bottom:61.207161px;}
.y42{bottom:61.810702px;}
.y54{bottom:65.591054px;}
.y72{bottom:69.499500px;}
.y55{bottom:70.631523px;}
.y43{bottom:78.166245px;}
.y56{bottom:81.803697px;}
.y64{bottom:82.557169px;}
.y58{bottom:89.598237px;}
.y25{bottom:91.370492px;}
.y23{bottom:91.667961px;}
.y62{bottom:99.068603px;}
.y44{bottom:106.265562px;}
.y59{bottom:108.084288px;}
.y71{bottom:114.331500px;}
.y24{bottom:121.831292px;}
.y22{bottom:122.128761px;}
.y2e{bottom:123.960915px;}
.y5a{bottom:126.570339px;}
.y5e{bottom:144.069081px;}
.y70{bottom:147.208500px;}
.y4f{bottom:147.537651px;}
.y46{bottom:152.097457px;}
.y5b{bottom:154.279928px;}
.y48{bottom:165.452102px;}
.y49{bottom:169.349372px;}
.y63{bottom:175.143314px;}
.y45{bottom:177.520649px;}
.y47{bottom:180.729401px;}
.y5c{bottom:185.419116px;}
.y50{bottom:186.198570px;}
.y6f{bottom:192.040500px;}
.y5d{bottom:212.180370px;}
.y6e{bottom:224.917500px;}
.y32{bottom:232.893124px;}
.y34{bottom:235.418637px;}
.y68{bottom:238.772742px;}
.y52{bottom:247.294772px;}
.y6d{bottom:257.793000px;}
.y67{bottom:258.960601px;}
.y6c{bottom:302.625000px;}
.y6b{bottom:335.502000px;}
.y30{bottom:351.198408px;}
.y6a{bottom:368.379000px;}
.y74{bottom:388.614000px;}
.y69{bottom:438.295500px;}
.y2c{bottom:466.729428px;}
.y2d{bottom:467.133649px;}
.y4b{bottom:486.496214px;}
.y51{bottom:502.708857px;}
.y4c{bottom:517.687365px;}
.y4a{bottom:542.659500px;}
.y2f{bottom:586.237009px;}
.y57{bottom:636.193980px;}
.y20{bottom:657.130500px;}
.y4d{bottom:963.564660px;}
.y3f{bottom:1057.099140px;}
.y1f{bottom:1157.580000px;}
.y1e{bottom:1213.618500px;}
.y1d{bottom:1269.658500px;}
.y1c{bottom:1325.698500px;}
.y1b{bottom:1381.738500px;}
.y3e{bottom:1413.580500px;}
.y1a{bottom:1437.778500px;}
.y3d{bottom:1469.620500px;}
.y19{bottom:1517.809500px;}
.y3c{bottom:1534.626000px;}
.y2b{bottom:1626.885000px;}
.y3b{bottom:1817.769000px;}
.y3a{bottom:1873.809000px;}
.y39{bottom:1929.849000px;}
.y38{bottom:1985.889000px;}
.y37{bottom:2041.927500px;}
.y36{bottom:2097.967500px;}
.y35{bottom:2154.007500px;}
.y18{bottom:2172.858000px;}
.y17{bottom:2249.472000px;}
.y2a{bottom:2297.554500px;}
.y16{bottom:2347.125000px;}
.y29{bottom:2362.561500px;}
.y21{bottom:2480.923500px;}
.y15{bottom:2964.982500px;}
.y14{bottom:3021.022500px;}
.y13{bottom:3097.636500px;}
.y12{bottom:3290.446500px;}
.y11{bottom:3346.486500px;}
.y10{bottom:3402.525000px;}
.yf{bottom:3458.565000px;}
.ye{bottom:3514.605000px;}
.yd{bottom:3570.645000px;}
.yc{bottom:3626.685000px;}
.yb{bottom:3682.725000px;}
.ya{bottom:3738.765000px;}
.y9{bottom:3794.805000px;}
.y8{bottom:3850.845000px;}
.y7{bottom:3906.885000px;}
.y6{bottom:4082.317500px;}
.y5{bottom:4127.149500px;}
.y4{bottom:4207.846500px;}
.y3{bottom:4357.135500px;}
.y2{bottom:4491.631500px;}
.y1{bottom:4626.126000px;}
.hc{height:34.431445px;}
.h13{height:70.455334px;}
.h8{height:70.964145px;}
.h16{height:76.539668px;}
.ha{height:77.540529px;}
.he{height:82.289921px;}
.h10{height:88.057880px;}
.h15{height:92.133899px;}
.h11{height:93.514058px;}
.h4{height:110.203447px;}
.hd{height:128.069852px;}
.h5{height:132.261386px;}
.h3{height:159.133214px;}
.h6{height:190.978045px;}
.hf{height:242.545663px;}
.h2{height:275.008225px;}
.hb{height:288.086198px;}
.h14{height:420.905160px;}
.h7{height:499.363533px;}
.h9{height:616.487895px;}
.h12{height:841.810320px;}
.h1{height:5052.000000px;}
.h0{height:5052.189000px;}
.w4{width:634.163774px;}
.w3{width:681.992325px;}
.w6{width:748.275840px;}
.w2{width:1279.353600px;}
.w5{width:1496.551680px;}
.w0{width:3569.953500px;}
.w1{width:3570.000000px;}
.x0{left:0.000000px;}
.x1f{left:9.749657px;}
.xa{left:13.456227px;}
.x9{left:18.144339px;}
.x26{left:20.291786px;}
.x27{left:30.242815px;}
.x44{left:33.061841px;}
.x34{left:43.844288px;}
.x48{left:58.588959px;}
.x3d{left:62.239402px;}
.x32{left:74.905529px;}
.x28{left:80.010953px;}
.x29{left:89.961982px;}
.x45{left:109.643196px;}
.x31{left:110.669477px;}
.x2a{left:119.815071px;}
.x49{left:135.183305px;}
.x3c{left:139.950966px;}
.x1e{left:147.063664px;}
.x3a{left:153.747302px;}
.x3{left:170.079000px;}
.x46{left:186.237542px;}
.x4a{left:211.764661px;}
.xb{left:218.503848px;}
.x21{left:225.105835px;}
.xc{left:237.494256px;}
.x37{left:241.241013px;}
.x22{left:244.232023px;}
.x6{left:258.154500px;}
.x5{left:261.391500px;}
.x3e{left:263.559379px;}
.x2b{left:289.008552px;}
.x2c{left:308.910611px;}
.x47{left:339.413244px;}
.x43{left:353.105653px;}
.x33{left:357.873313px;}
.x3f{left:364.212872px;}
.xd{left:379.466550px;}
.x20{left:391.896836px;}
.xe{left:409.284822px;}
.xf{left:411.331408px;}
.x2d{left:428.335955px;}
.x2e{left:438.286984px;}
.x2f{left:458.202034px;}
.x40{left:464.879357px;}
.x3b{left:474.024950px;}
.x23{left:491.265951px;}
.x4b{left:519.817873px;}
.x11{left:563.846094px;}
.x41{left:565.545841px;}
.x10{left:587.595990px;}
.x13{left:595.044606px;}
.x12{left:603.159558px;}
.x14{left:736.314859px;}
.x15{left:753.901219px;}
.x16{left:782.363031px;}
.x38{left:823.181369px;}
.x42{left:886.135271px;}
.x17{left:919.825785px;}
.x19{left:926.608089px;}
.x18{left:937.412145px;}
.x1a{left:939.434937px;}
.x1b{left:948.953937px;}
.x35{left:994.050677px;}
.x4c{left:1009.824000px;}
.x1{left:1031.358000px;}
.x2{left:1041.693000px;}
.x4d{left:1046.011500px;}
.x1c{left:1141.846941px;}
.x4{left:1806.510000px;}
.x7{left:1892.637000px;}
.x30{left:1903.379175px;}
.x1d{left:1921.205361px;}
.x25{left:1996.913655px;}
.x8{left:2006.586009px;}
.x4e{left:2538.595500px;}
.x36{left:2651.655015px;}
.x24{left:2689.318500px;}
.x39{left:2745.189495px;}
@media print{
.v28{vertical-align:-55.381650pt;}
.v20{vertical-align:-33.025755pt;}
.v1a{vertical-align:-31.732438pt;}
.v1f{vertical-align:-29.700084pt;}
.v12{vertical-align:-26.928692pt;}
.v27{vertical-align:-23.880161pt;}
.v24{vertical-align:-22.402085pt;}
.v26{vertical-align:-20.924010pt;}
.v25{vertical-align:-15.796934pt;}
.vb{vertical-align:-11.270327pt;}
.v17{vertical-align:-7.852277pt;}
.v1d{vertical-align:-6.420391pt;}
.v1b{vertical-align:-4.803746pt;}
.v16{vertical-align:-3.879949pt;}
.v1{vertical-align:-1.437228pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:4.849936pt;}
.v21{vertical-align:5.819923pt;}
.v23{vertical-align:6.836100pt;}
.v22{vertical-align:8.868454pt;}
.v14{vertical-align:10.438910pt;}
.va{vertical-align:11.593657pt;}
.v18{vertical-align:12.748403pt;}
.v19{vertical-align:14.134099pt;}
.vd{vertical-align:18.198807pt;}
.v1e{vertical-align:19.353554pt;}
.v13{vertical-align:20.924010pt;}
.v8{vertical-align:22.540655pt;}
.v10{vertical-align:23.926351pt;}
.vc{vertical-align:25.958705pt;}
.v2{vertical-align:35.196678pt;}
.v3{vertical-align:38.383779pt;}
.v6{vertical-align:42.540867pt;}
.v1c{vertical-align:44.388462pt;}
.v15{vertical-align:47.667942pt;}
.v9{vertical-align:59.353979pt;}
.v4{vertical-align:60.554915pt;}
.v5{vertical-align:83.234140pt;}
.ve{vertical-align:138.661980pt;}
.v11{vertical-align:170.532988pt;}
.vf{vertical-align:172.888671pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:12.692467pt;}
.ls1{letter-spacing:12.738657pt;}
.ls3{letter-spacing:249.600293pt;}
.ls2{letter-spacing:249.646483pt;}
.ws2{word-spacing:-91.463779pt;}
.ws35{word-spacing:-52.925418pt;}
.ws1b{word-spacing:-44.106961pt;}
.ws41{word-spacing:-36.751007pt;}
.ws24{word-spacing:-24.000403pt;}
.ws2e{word-spacing:-21.829331pt;}
.ws27{word-spacing:-10.471437pt;}
.ws9{word-spacing:-9.043514pt;}
.ws4{word-spacing:-8.408881pt;}
.wsf{word-spacing:-5.394377pt;}
.ws1c{word-spacing:-3.490479pt;}
.ws1{word-spacing:-2.303045pt;}
.ws3e{word-spacing:-2.019940pt;}
.ws28{word-spacing:-0.634633pt;}
.ws23{word-spacing:-0.475974pt;}
.ws42{word-spacing:-0.396594pt;}
.ws3b{word-spacing:-0.367262pt;}
.ws1d{word-spacing:-0.007394pt;}
.ws3{word-spacing:0.000000pt;}
.ws21{word-spacing:0.158658pt;}
.ws1a{word-spacing:0.475974pt;}
.ws2a{word-spacing:0.951949pt;}
.ws15{word-spacing:1.269265pt;}
.ws19{word-spacing:1.427923pt;}
.ws36{word-spacing:1.836309pt;}
.ws17{word-spacing:3.649137pt;}
.ws18{word-spacing:5.553035pt;}
.wse{word-spacing:7.615590pt;}
.ws8{word-spacing:7.932907pt;}
.ws7{word-spacing:8.091565pt;}
.ws37{word-spacing:8.906100pt;}
.ws6{word-spacing:9.678146pt;}
.ws3f{word-spacing:10.094601pt;}
.ws3c{word-spacing:10.094819pt;}
.ws3a{word-spacing:10.466963pt;}
.ws39{word-spacing:11.201487pt;}
.ws5{word-spacing:11.740702pt;}
.ws20{word-spacing:12.058018pt;}
.ws40{word-spacing:12.854165pt;}
.wsd{word-spacing:13.009967pt;}
.ws16{word-spacing:13.961916pt;}
.wsb{word-spacing:16.024471pt;}
.ws29{word-spacing:18.245685pt;}
.ws11{word-spacing:18.721660pt;}
.ws12{word-spacing:19.038976pt;}
.ws13{word-spacing:20.466899pt;}
.ws0{word-spacing:21.056410pt;}
.ws14{word-spacing:21.260190pt;}
.ws22{word-spacing:22.688113pt;}
.ws10{word-spacing:24.433353pt;}
.wsa{word-spacing:25.067985pt;}
.ws1f{word-spacing:25.226643pt;}
.ws3d{word-spacing:25.432884pt;}
.ws38{word-spacing:34.338985pt;}
.ws1e{word-spacing:43.948303pt;}
.ws34{word-spacing:54.993655pt;}
.wsc{word-spacing:56.958270pt;}
.ws2f{word-spacing:103.308256pt;}
.ws2c{word-spacing:105.571559pt;}
.ws31{word-spacing:146.218642pt;}
.ws30{word-spacing:172.574580pt;}
.ws33{word-spacing:222.256400pt;}
.ws2b{word-spacing:270.395479pt;}
.ws32{word-spacing:327.215990pt;}
.ws2d{word-spacing:1088.732109pt;}
.ws25{word-spacing:1144.148194pt;}
.ws26{word-spacing:1688.921212pt;}
._22{margin-left:-922.534716pt;}
._21{margin-left:-18.278144pt;}
._18{margin-left:-15.490046pt;}
._0{margin-left:-13.160256pt;}
._7{margin-left:-11.422752pt;}
._29{margin-left:-10.171358pt;}
._2{margin-left:-7.238141pt;}
._1{margin-left:-6.251122pt;}
._3{margin-left:-4.935096pt;}
._4{margin-left:-3.290064pt;}
._5{margin-left:-1.914228pt;}
._10{margin-left:-0.998108pt;}
._b{width:1.703483pt;}
._6{width:2.772544pt;}
._8{width:3.989546pt;}
._a{width:6.521677pt;}
._27{width:26.534670pt;}
._25{width:28.574137pt;}
._2b{width:32.381037pt;}
._2a{width:35.160510pt;}
._2e{width:36.211005pt;}
._28{width:38.640414pt;}
._26{width:40.497669pt;}
._2c{width:41.844914pt;}
._9{width:45.476066pt;}
._f{width:53.647109pt;}
._d{width:56.340331pt;}
._13{width:58.110634pt;}
._11{width:59.173085pt;}
._16{width:61.809852pt;}
._1d{width:65.782992pt;}
._19{width:71.078844pt;}
._2d{width:74.348187pt;}
._e{width:78.245484pt;}
._c{width:89.176201pt;}
._1c{width:90.604124pt;}
._12{width:94.318717pt;}
._17{width:96.167489pt;}
._14{width:111.494911pt;}
._15{width:118.517626pt;}
._1e{width:122.325421pt;}
._24{width:205.979091pt;}
._1b{width:288.240967pt;}
._23{width:303.799991pt;}
._20{width:464.113954pt;}
._1a{width:488.988163pt;}
._1f{width:691.886147pt;}
.fs7{font-size:28.683907pt;}
.fs8{font-size:60.046827pt;}
.fs9{font-size:78.522773pt;}
.fs5{font-size:86.644053pt;}
.fsa{font-size:91.815467pt;}
.fs6{font-size:97.904708pt;}
.fs2{font-size:132.197867pt;}
.fs3{font-size:158.658133pt;}
.fs1{font-size:190.379200pt;}
.fs4{font-size:228.476800pt;}
.fs0{font-size:329.006400pt;}
.y0{bottom:0.000000pt;}
.y28{bottom:0.253832pt;}
.y61{bottom:3.498882pt;}
.y40{bottom:10.831524pt;}
.y66{bottom:11.362707pt;}
.y31{bottom:12.406840pt;}
.y33{bottom:14.651741pt;}
.y60{bottom:15.727650pt;}
.y41{bottom:22.725414pt;}
.y27{bottom:27.330099pt;}
.y53{bottom:29.549967pt;}
.y4e{bottom:30.693166pt;}
.y65{bottom:32.148147pt;}
.y73{bottom:32.553333pt;}
.y75{bottom:32.584000pt;}
.y5f{bottom:36.778681pt;}
.y26{bottom:54.406365pt;}
.y42{bottom:54.942846pt;}
.y54{bottom:58.303159pt;}
.y72{bottom:61.777333pt;}
.y55{bottom:62.783576pt;}
.y43{bottom:69.481107pt;}
.y56{bottom:72.714398pt;}
.y64{bottom:73.384151pt;}
.y58{bottom:79.642878pt;}
.y25{bottom:81.218215pt;}
.y23{bottom:81.482632pt;}
.y62{bottom:88.060981pt;}
.y44{bottom:94.458277pt;}
.y59{bottom:96.074923pt;}
.y71{bottom:101.628000pt;}
.y24{bottom:108.294482pt;}
.y22{bottom:108.558899pt;}
.y2e{bottom:110.187480pt;}
.y5a{bottom:112.506968pt;}
.y5e{bottom:128.061405pt;}
.y70{bottom:130.852000pt;}
.y4f{bottom:131.144579pt;}
.y46{bottom:135.197740pt;}
.y5b{bottom:137.137714pt;}
.y48{bottom:147.068535pt;}
.y49{bottom:150.532775pt;}
.y63{bottom:155.682946pt;}
.y45{bottom:157.796132pt;}
.y47{bottom:160.648356pt;}
.y5c{bottom:164.816992pt;}
.y50{bottom:165.509840pt;}
.y6f{bottom:170.702667pt;}
.y5d{bottom:188.604773pt;}
.y6e{bottom:199.926667pt;}
.y32{bottom:207.016110pt;}
.y34{bottom:209.261011pt;}
.y68{bottom:212.242437pt;}
.y52{bottom:219.817575pt;}
.y6d{bottom:229.149333pt;}
.y67{bottom:230.187201pt;}
.y6c{bottom:269.000000pt;}
.y6b{bottom:298.224000pt;}
.y30{bottom:312.176363pt;}
.y6a{bottom:327.448000pt;}
.y74{bottom:345.434667pt;}
.y69{bottom:389.596000pt;}
.y2c{bottom:414.870603pt;}
.y2d{bottom:415.229910pt;}
.y4b{bottom:432.441079pt;}
.y51{bottom:446.852318pt;}
.y4c{bottom:460.166547pt;}
.y4a{bottom:482.364000pt;}
.y2f{bottom:521.099564pt;}
.y57{bottom:565.505760pt;}
.y20{bottom:584.116000pt;}
.y4d{bottom:856.501920pt;}
.y3f{bottom:939.643680pt;}
.y1f{bottom:1028.960000pt;}
.y1e{bottom:1078.772000pt;}
.y1d{bottom:1128.585333pt;}
.y1c{bottom:1178.398667pt;}
.y1b{bottom:1228.212000pt;}
.y3e{bottom:1256.516000pt;}
.y1a{bottom:1278.025333pt;}
.y3d{bottom:1306.329333pt;}
.y19{bottom:1349.164000pt;}
.y3c{bottom:1364.112000pt;}
.y2b{bottom:1446.120000pt;}
.y3b{bottom:1615.794667pt;}
.y3a{bottom:1665.608000pt;}
.y39{bottom:1715.421333pt;}
.y38{bottom:1765.234667pt;}
.y37{bottom:1815.046667pt;}
.y36{bottom:1864.860000pt;}
.y35{bottom:1914.673333pt;}
.y18{bottom:1931.429333pt;}
.y17{bottom:1999.530667pt;}
.y2a{bottom:2042.270667pt;}
.y16{bottom:2086.333333pt;}
.y29{bottom:2100.054667pt;}
.y21{bottom:2205.265333pt;}
.y15{bottom:2635.540000pt;}
.y14{bottom:2685.353333pt;}
.y13{bottom:2753.454667pt;}
.y12{bottom:2924.841333pt;}
.y11{bottom:2974.654667pt;}
.y10{bottom:3024.466667pt;}
.yf{bottom:3074.280000pt;}
.ye{bottom:3124.093333pt;}
.yd{bottom:3173.906667pt;}
.yc{bottom:3223.720000pt;}
.yb{bottom:3273.533333pt;}
.ya{bottom:3323.346667pt;}
.y9{bottom:3373.160000pt;}
.y8{bottom:3422.973333pt;}
.y7{bottom:3472.786667pt;}
.y6{bottom:3628.726667pt;}
.y5{bottom:3668.577333pt;}
.y4{bottom:3740.308000pt;}
.y3{bottom:3873.009333pt;}
.y2{bottom:3992.561333pt;}
.y1{bottom:4112.112000pt;}
.hc{height:30.605729pt;}
.h13{height:62.626964pt;}
.h8{height:63.079240pt;}
.h16{height:68.035261pt;}
.ha{height:68.924915pt;}
.he{height:73.146596pt;}
.h10{height:78.273671pt;}
.h15{height:81.896799pt;}
.h11{height:83.123607pt;}
.h4{height:97.958619pt;}
.hd{height:113.839869pt;}
.h5{height:117.565677pt;}
.h3{height:141.451746pt;}
.h6{height:169.758262pt;}
.hf{height:215.596145pt;}
.h2{height:244.451755pt;}
.hb{height:256.076621pt;}
.h14{height:374.137920pt;}
.h7{height:443.878696pt;}
.h9{height:547.989240pt;}
.h12{height:748.275840pt;}
.h1{height:4490.666667pt;}
.h0{height:4490.834667pt;}
.w4{width:563.701133pt;}
.w3{width:606.215400pt;}
.w6{width:665.134080pt;}
.w2{width:1137.203200pt;}
.w5{width:1330.268160pt;}
.w0{width:3173.292000pt;}
.w1{width:3173.333333pt;}
.x0{left:0.000000pt;}
.x1f{left:8.666362pt;}
.xa{left:11.961090pt;}
.x9{left:16.128301pt;}
.x26{left:18.037143pt;}
.x27{left:26.882502pt;}
.x44{left:29.388303pt;}
.x34{left:38.972700pt;}
.x48{left:52.079075pt;}
.x3d{left:55.323913pt;}
.x32{left:66.582693pt;}
.x28{left:71.120847pt;}
.x29{left:79.966207pt;}
.x45{left:97.460619pt;}
.x31{left:98.372869pt;}
.x2a{left:106.502285pt;}
.x49{left:120.162938pt;}
.x3c{left:124.400858pt;}
.x1e{left:130.723257pt;}
.x3a{left:136.664268pt;}
.x3{left:151.181333pt;}
.x46{left:165.544482pt;}
.x4a{left:188.235254pt;}
.xb{left:194.225643pt;}
.x21{left:200.094076pt;}
.xc{left:211.106006pt;}
.x37{left:214.436456pt;}
.x22{left:217.095132pt;}
.x6{left:229.470667pt;}
.x5{left:232.348000pt;}
.x3e{left:234.275004pt;}
.x2b{left:256.896491pt;}
.x2c{left:274.587210pt;}
.x47{left:301.700662pt;}
.x43{left:313.871691pt;}
.x33{left:318.109612pt;}
.x3f{left:323.744775pt;}
.xd{left:337.303600pt;}
.x20{left:348.352743pt;}
.xe{left:363.808731pt;}
.xf{left:365.627918pt;}
.x2d{left:380.743071pt;}
.x2e{left:389.588430pt;}
.x2f{left:407.290697pt;}
.x40{left:413.226095pt;}
.x3b{left:421.355511pt;}
.x23{left:436.680845pt;}
.x4b{left:462.060331pt;}
.x11{left:501.196528pt;}
.x41{left:502.707414pt;}
.x10{left:522.307546pt;}
.x13{left:528.928538pt;}
.x12{left:536.141829pt;}
.x14{left:654.502097pt;}
.x15{left:670.134417pt;}
.x16{left:695.433805pt;}
.x38{left:731.716773pt;}
.x42{left:787.675796pt;}
.x17{left:817.622920pt;}
.x19{left:823.651635pt;}
.x18{left:833.255240pt;}
.x1a{left:835.053278pt;}
.x1b{left:843.514611pt;}
.x35{left:883.600602pt;}
.x4c{left:897.621333pt;}
.x1{left:916.762667pt;}
.x2{left:925.949333pt;}
.x4d{left:929.788000pt;}
.x1c{left:1014.975059pt;}
.x4{left:1605.786667pt;}
.x7{left:1682.344000pt;}
.x30{left:1691.892600pt;}
.x1d{left:1707.738099pt;}
.x25{left:1775.034360pt;}
.x8{left:1783.632008pt;}
.x4e{left:2256.529333pt;}
.x36{left:2357.026680pt;}
.x24{left:2390.505333pt;}
.x39{left:2440.168440pt;}
}




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