
    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_5747ee2ec46c250aa2d8eba3.woff')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_00e00c64418a87fd24746bdc.woff')format("woff");}.ff2{font-family:ff2;line-height:0.858398;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_a3e655b509ff151c5be35dd2.woff')format("woff");}.ff3{font-family:ff3;line-height:0.910645;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_efc4cd6ed54625b48c16972f.woff')format("woff");}.ff4{font-family:ff4;line-height:0.910156;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:27.360000px;}
.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;}
}
.ws6{word-spacing:-55.944000px;}
.ws12{word-spacing:-38.878200px;}
.ws7c{word-spacing:-38.874600px;}
.ws4{word-spacing:-38.873700px;}
.ws69{word-spacing:-38.860200px;}
.ws83{word-spacing:-38.856600px;}
.ws7{word-spacing:-38.803500px;}
.ws30{word-spacing:-38.662200px;}
.ws33{word-spacing:-38.661000px;}
.ws25{word-spacing:-38.660400px;}
.ws70{word-spacing:-38.659200px;}
.ws22{word-spacing:-38.656200px;}
.ws54{word-spacing:-38.655000px;}
.ws88{word-spacing:-38.653200px;}
.ws8a{word-spacing:-38.651400px;}
.ws50{word-spacing:-38.647800px;}
.wsb{word-spacing:-38.439900px;}
.ws57{word-spacing:-38.435400px;}
.ws48{word-spacing:-38.426400px;}
.ws99{word-spacing:-38.299500px;}
.ws23{word-spacing:-38.164200px;}
.ws24{word-spacing:-38.160000px;}
.ws86{word-spacing:-38.157000px;}
.ws76{word-spacing:-38.154600px;}
.wsc{word-spacing:-38.150100px;}
.wsd{word-spacing:-38.147400px;}
.ws19{word-spacing:-38.143800px;}
.ws5{word-spacing:-38.143200px;}
.ws59{word-spacing:-38.142900px;}
.ws26{word-spacing:-38.140200px;}
.ws2{word-spacing:-38.081700px;}
.ws97{word-spacing:-38.079900px;}
.ws3{word-spacing:-37.944600px;}
.ws0{word-spacing:-37.944000px;}
.ws32{word-spacing:-37.935000px;}
.ws16{word-spacing:-37.931400px;}
.ws8e{word-spacing:-37.924200px;}
.ws52{word-spacing:-37.720800px;}
.ws6a{word-spacing:-37.719000px;}
.ws39{word-spacing:-37.711800px;}
.ws47{word-spacing:-37.706400px;}
.ws8f{word-spacing:-37.349100px;}
.ws1f{word-spacing:-37.221000px;}
.ws75{word-spacing:-37.215000px;}
.ws51{word-spacing:-37.211400px;}
.ws6f{word-spacing:-36.991800px;}
.ws58{word-spacing:-36.720000px;}
.ws3e{word-spacing:-36.493200px;}
.ws42{word-spacing:-35.982000px;}
.ws2a{word-spacing:-35.775000px;}
.ws68{word-spacing:-35.773200px;}
.ws94{word-spacing:-35.280000px;}
.ws44{word-spacing:-35.271000px;}
.ws55{word-spacing:-35.043600px;}
.ws4b{word-spacing:-34.335000px;}
.ws53{word-spacing:-34.333800px;}
.ws2c{word-spacing:-34.333200px;}
.ws40{word-spacing:-33.615000px;}
.ws4d{word-spacing:-33.613200px;}
.ws36{word-spacing:-33.610800px;}
.ws4a{word-spacing:-33.393000px;}
.ws4f{word-spacing:-32.895000px;}
.ws1b{word-spacing:-32.891400px;}
.ws3b{word-spacing:-32.889300px;}
.ws79{word-spacing:-32.676900px;}
.ws9a{word-spacing:-32.186400px;}
.ws1a{word-spacing:-32.176800px;}
.ws15{word-spacing:-31.968000px;}
.ws17{word-spacing:-31.960800px;}
.ws37{word-spacing:-31.680000px;}
.ws9{word-spacing:-31.676400px;}
.ws8b{word-spacing:-31.460400px;}
.ws74{word-spacing:-30.951000px;}
.ws8{word-spacing:-30.945600px;}
.ws87{word-spacing:-30.733200px;}
.ws65{word-spacing:-30.220200px;}
.ws64{word-spacing:-30.013200px;}
.ws96{word-spacing:-30.009600px;}
.ws45{word-spacing:-29.800800px;}
.ws6e{word-spacing:-29.287800px;}
.ws95{word-spacing:-29.281500px;}
.ws60{word-spacing:-29.079000px;}
.ws6c{word-spacing:-28.794000px;}
.ws1e{word-spacing:-28.576800px;}
.ws67{word-spacing:-28.361400px;}
.ws5b{word-spacing:-27.855000px;}
.ws8c{word-spacing:-27.644400px;}
.ws5e{word-spacing:-27.633600px;}
.ws8d{word-spacing:-27.135000px;}
.ws62{word-spacing:-26.924400px;}
.ws98{word-spacing:-26.424000px;}
.ws63{word-spacing:-26.413200px;}
.ws7b{word-spacing:-25.920000px;}
.wsa{word-spacing:-25.916400px;}
.ws81{word-spacing:-25.691400px;}
.ws41{word-spacing:-24.981000px;}
.ws1d{word-spacing:-24.760800px;}
.ws14{word-spacing:-24.270000px;}
.ws66{word-spacing:-24.255600px;}
.ws13{word-spacing:-23.760000px;}
.ws7a{word-spacing:-23.751000px;}
.ws77{word-spacing:-23.544000px;}
.ws56{word-spacing:-23.536800px;}
.ws34{word-spacing:-23.529600px;}
.ws7e{word-spacing:-23.524200px;}
.ws78{word-spacing:-22.317000px;}
.ws6d{word-spacing:-22.104000px;}
.ws35{word-spacing:-22.096800px;}
.ws3c{word-spacing:-22.091400px;}
.ws6b{word-spacing:-21.600000px;}
.ws89{word-spacing:-21.592800px;}
.ws28{word-spacing:-21.375000px;}
.ws85{word-spacing:-21.153600px;}
.ws80{word-spacing:-21.148200px;}
.ws1c{word-spacing:-20.886000px;}
.ws5c{word-spacing:-20.156100px;}
.ws61{word-spacing:-19.930500px;}
.ws4e{word-spacing:-19.728000px;}
.ws5d{word-spacing:-19.720800px;}
.ws82{word-spacing:-19.221000px;}
.ws73{word-spacing:-19.213200px;}
.ws38{word-spacing:-19.000800px;}
.ws84{word-spacing:-18.709200px;}
.ws46{word-spacing:-18.500400px;}
.ws5f{word-spacing:-17.782200px;}
.ws43{word-spacing:-17.773200px;}
.ws31{word-spacing:-17.769600px;}
.ws20{word-spacing:-17.047800px;}
.ws7d{word-spacing:-16.128000px;}
.ws7f{word-spacing:-14.888400px;}
.ws2f{word-spacing:-14.880600px;}
.ws5a{word-spacing:-14.175000px;}
.ws29{word-spacing:-14.173200px;}
.ws3d{word-spacing:-13.974000px;}
.ws27{word-spacing:-11.511000px;}
.ws3f{word-spacing:-11.293200px;}
.ws2e{word-spacing:-10.789800px;}
.ws71{word-spacing:-10.362000px;}
.ws49{word-spacing:-7.683600px;}
.ws90{word-spacing:-6.982200px;}
.ws4c{word-spacing:-6.971400px;}
.ws10{word-spacing:-6.264000px;}
.ws92{word-spacing:-5.674800px;}
.ws72{word-spacing:-3.888000px;}
.ws3a{word-spacing:-3.856800px;}
.ws2b{word-spacing:-1.936800px;}
.ws18{word-spacing:-0.496800px;}
.ws9b{word-spacing:0.000000px;}
.wsf{word-spacing:0.437700px;}
.wse{word-spacing:0.714000px;}
.ws21{word-spacing:5.283600px;}
.ws93{word-spacing:8.154600px;}
.ws2d{word-spacing:11.023200px;}
.ws11{word-spacing:17.496900px;}
.ws91{word-spacing:38.887200px;}
.ws1{word-spacing:1037.484900px;}
._e{margin-left:-2.213100px;}
._4{margin-left:-1.010700px;}
._0{width:1.076400px;}
._f{width:2.207100px;}
._1{width:18.968400px;}
._1d{width:20.136300px;}
._14{width:21.524700px;}
._9{width:22.896000px;}
._b{width:24.354000px;}
._2{width:25.542000px;}
._1a{width:27.548400px;}
._d{width:28.717200px;}
._1f{width:29.817000px;}
._3{width:31.028400px;}
._8{width:32.863500px;}
._17{width:34.073100px;}
._19{width:35.194800px;}
._c{width:36.290700px;}
._1e{width:37.292700px;}
._1b{width:38.641500px;}
._10{width:40.190400px;}
._21{width:41.383200px;}
._13{width:43.158000px;}
._12{width:45.598500px;}
._20{width:47.067600px;}
._1c{width:49.754700px;}
._6{width:50.829600px;}
._18{width:53.264700px;}
._15{width:55.101000px;}
._a{width:56.577600px;}
._5{width:57.882300px;}
._11{width:60.014400px;}
._23{width:65.429400px;}
._16{width:68.673600px;}
._7{width:74.739600px;}
._22{width:95.954400px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:12.240000px;}
.y3{bottom:63.975000px;}
.y50{bottom:101.596500px;}
.y8e{bottom:120.675000px;}
.y4f{bottom:122.296500px;}
.y75{bottom:123.015000px;}
.y26{bottom:140.836500px;}
.y8d{bottom:141.375000px;}
.y4e{bottom:142.996500px;}
.y74{bottom:143.715000px;}
.y4d{bottom:163.696500px;}
.y73{bottom:164.236500px;}
.y25{bottom:182.415000px;}
.y8c{bottom:183.136500px;}
.y72{bottom:184.936500px;}
.y8b{bottom:203.836500px;}
.y4c{bottom:205.275000px;}
.y71{bottom:205.636500px;}
.y24{bottom:224.175000px;}
.y4b{bottom:225.975000px;}
.y70{bottom:226.336500px;}
.y8a{bottom:245.596500px;}
.y4a{bottom:246.675000px;}
.y6f{bottom:247.036500px;}
.y23{bottom:265.936500px;}
.y49{bottom:267.375000px;}
.y89{bottom:287.175000px;}
.y48{bottom:288.075000px;}
.y6e{bottom:288.795000px;}
.y22{bottom:307.515000px;}
.y47{bottom:308.775000px;}
.y6d{bottom:309.496500px;}
.y21{bottom:328.215000px;}
.y88{bottom:328.936500px;}
.y46{bottom:329.475000px;}
.y6c{bottom:330.196500px;}
.y20{bottom:348.915000px;}
.y45{bottom:350.175000px;}
.y6b{bottom:350.896500px;}
.y1f{bottom:369.615000px;}
.y87{bottom:370.696500px;}
.y44{bottom:370.875000px;}
.y6a{bottom:371.596500px;}
.y1e{bottom:390.315000px;}
.y86{bottom:391.396500px;}
.y43{bottom:391.575000px;}
.y69{bottom:392.295000px;}
.y1d{bottom:411.015000px;}
.y85{bottom:412.096500px;}
.y42{bottom:412.275000px;}
.y68{bottom:412.996500px;}
.y1c{bottom:431.715000px;}
.y1b{bottom:452.415000px;}
.y84{bottom:453.675000px;}
.y41{bottom:454.036500px;}
.y67{bottom:454.575000px;}
.y1a{bottom:473.115000px;}
.y83{bottom:474.375000px;}
.y40{bottom:474.736500px;}
.y66{bottom:475.275000px;}
.y19{bottom:493.815000px;}
.y82{bottom:495.075000px;}
.y3f{bottom:495.436500px;}
.y65{bottom:495.975000px;}
.y3e{bottom:516.136500px;}
.y64{bottom:516.675000px;}
.y18{bottom:535.575000px;}
.y3d{bottom:536.836500px;}
.y63{bottom:537.375000px;}
.y17{bottom:556.275000px;}
.y3c{bottom:557.536500px;}
.y62{bottom:558.075000px;}
.y16{bottom:576.975000px;}
.y3b{bottom:578.236500px;}
.y81{bottom:578.596500px;}
.y61{bottom:578.775000px;}
.y15{bottom:597.675000px;}
.y3a{bottom:598.936500px;}
.y60{bottom:599.475000px;}
.y14{bottom:618.375000px;}
.y39{bottom:619.636500px;}
.y5f{bottom:620.175000px;}
.y13{bottom:639.075000px;}
.y38{bottom:640.336500px;}
.y5e{bottom:640.875000px;}
.y37{bottom:661.036500px;}
.y12{bottom:680.836500px;}
.y36{bottom:681.736500px;}
.y5d{bottom:682.636500px;}
.y11{bottom:701.536500px;}
.y5c{bottom:703.336500px;}
.y35{bottom:723.496500px;}
.y5b{bottom:724.036500px;}
.y10{bottom:743.115000px;}
.y34{bottom:744.195000px;}
.y5a{bottom:744.736500px;}
.y80{bottom:745.096500px;}
.yf{bottom:763.815000px;}
.y59{bottom:765.436500px;}
.y7f{bottom:765.795000px;}
.ye{bottom:784.515000px;}
.y33{bottom:785.775000px;}
.y58{bottom:786.136500px;}
.y7e{bottom:786.496500px;}
.yd{bottom:805.215000px;}
.y57{bottom:806.836500px;}
.y32{bottom:827.536500px;}
.y7d{bottom:828.075000px;}
.yc{bottom:846.975000px;}
.y7c{bottom:848.775000px;}
.y31{bottom:869.295000px;}
.y7b{bottom:869.475000px;}
.yb{bottom:888.736500px;}
.y93{bottom:889.275000px;}
.y30{bottom:889.995000px;}
.y7a{bottom:890.175000px;}
.ya{bottom:909.436500px;}
.y92{bottom:909.975000px;}
.y56{bottom:910.695000px;}
.y79{bottom:910.875000px;}
.y9{bottom:930.136500px;}
.y55{bottom:931.395000px;}
.y2f{bottom:931.575000px;}
.y91{bottom:951.736500px;}
.y54{bottom:952.095000px;}
.y2e{bottom:952.275000px;}
.y8{bottom:971.715000px;}
.y90{bottom:972.436500px;}
.y2d{bottom:972.975000px;}
.y2c{bottom:993.675000px;}
.y8f{bottom:1014.195000px;}
.y2b{bottom:1014.375000px;}
.y2a{bottom:1035.075000px;}
.y78{bottom:1035.436500px;}
.y29{bottom:1055.775000px;}
.y77{bottom:1056.136500px;}
.y7{bottom:1076.295000px;}
.y28{bottom:1076.475000px;}
.y76{bottom:1076.836500px;}
.y27{bottom:1097.175000px;}
.y53{bottom:1097.536500px;}
.y6{bottom:1117.875000px;}
.y52{bottom:1118.236500px;}
.y51{bottom:1138.936500px;}
.y5{bottom:1159.636500px;}
.y2{bottom:1202.655000px;}
.y1{bottom:1224.795000px;}
.h3{height:32.700000px;}
.h2{height:48.796875px;}
.h4{height:48.972656px;}
.h5{height:50.027344px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:710.175000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:11.760000px;}
.x1{left:124.920000px;}
.x3{left:127.200000px;}
.x9{left:128.700000px;}
.x2{left:160.560000px;}
.x8{left:211.320000px;}
.x6{left:299.520000px;}
.x5{left:342.538500px;}
.x7{left:356.938500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:24.320000pt;}
.ws6{word-spacing:-49.728000pt;}
.ws12{word-spacing:-34.558400pt;}
.ws7c{word-spacing:-34.555200pt;}
.ws4{word-spacing:-34.554400pt;}
.ws69{word-spacing:-34.542400pt;}
.ws83{word-spacing:-34.539200pt;}
.ws7{word-spacing:-34.492000pt;}
.ws30{word-spacing:-34.366400pt;}
.ws33{word-spacing:-34.365333pt;}
.ws25{word-spacing:-34.364800pt;}
.ws70{word-spacing:-34.363733pt;}
.ws22{word-spacing:-34.361067pt;}
.ws54{word-spacing:-34.360000pt;}
.ws88{word-spacing:-34.358400pt;}
.ws8a{word-spacing:-34.356800pt;}
.ws50{word-spacing:-34.353600pt;}
.wsb{word-spacing:-34.168800pt;}
.ws57{word-spacing:-34.164800pt;}
.ws48{word-spacing:-34.156800pt;}
.ws99{word-spacing:-34.044000pt;}
.ws23{word-spacing:-33.923733pt;}
.ws24{word-spacing:-33.920000pt;}
.ws86{word-spacing:-33.917333pt;}
.ws76{word-spacing:-33.915200pt;}
.wsc{word-spacing:-33.911200pt;}
.wsd{word-spacing:-33.908800pt;}
.ws19{word-spacing:-33.905600pt;}
.ws5{word-spacing:-33.905067pt;}
.ws59{word-spacing:-33.904800pt;}
.ws26{word-spacing:-33.902400pt;}
.ws2{word-spacing:-33.850400pt;}
.ws97{word-spacing:-33.848800pt;}
.ws3{word-spacing:-33.728533pt;}
.ws0{word-spacing:-33.728000pt;}
.ws32{word-spacing:-33.720000pt;}
.ws16{word-spacing:-33.716800pt;}
.ws8e{word-spacing:-33.710400pt;}
.ws52{word-spacing:-33.529600pt;}
.ws6a{word-spacing:-33.528000pt;}
.ws39{word-spacing:-33.521600pt;}
.ws47{word-spacing:-33.516800pt;}
.ws8f{word-spacing:-33.199200pt;}
.ws1f{word-spacing:-33.085333pt;}
.ws75{word-spacing:-33.080000pt;}
.ws51{word-spacing:-33.076800pt;}
.ws6f{word-spacing:-32.881600pt;}
.ws58{word-spacing:-32.640000pt;}
.ws3e{word-spacing:-32.438400pt;}
.ws42{word-spacing:-31.984000pt;}
.ws2a{word-spacing:-31.800000pt;}
.ws68{word-spacing:-31.798400pt;}
.ws94{word-spacing:-31.360000pt;}
.ws44{word-spacing:-31.352000pt;}
.ws55{word-spacing:-31.149867pt;}
.ws4b{word-spacing:-30.520000pt;}
.ws53{word-spacing:-30.518933pt;}
.ws2c{word-spacing:-30.518400pt;}
.ws40{word-spacing:-29.880000pt;}
.ws4d{word-spacing:-29.878400pt;}
.ws36{word-spacing:-29.876267pt;}
.ws4a{word-spacing:-29.682667pt;}
.ws4f{word-spacing:-29.240000pt;}
.ws1b{word-spacing:-29.236800pt;}
.ws3b{word-spacing:-29.234933pt;}
.ws79{word-spacing:-29.046133pt;}
.ws9a{word-spacing:-28.610133pt;}
.ws1a{word-spacing:-28.601600pt;}
.ws15{word-spacing:-28.416000pt;}
.ws17{word-spacing:-28.409600pt;}
.ws37{word-spacing:-28.160000pt;}
.ws9{word-spacing:-28.156800pt;}
.ws8b{word-spacing:-27.964800pt;}
.ws74{word-spacing:-27.512000pt;}
.ws8{word-spacing:-27.507200pt;}
.ws87{word-spacing:-27.318400pt;}
.ws65{word-spacing:-26.862400pt;}
.ws64{word-spacing:-26.678400pt;}
.ws96{word-spacing:-26.675200pt;}
.ws45{word-spacing:-26.489600pt;}
.ws6e{word-spacing:-26.033600pt;}
.ws95{word-spacing:-26.028000pt;}
.ws60{word-spacing:-25.848000pt;}
.ws6c{word-spacing:-25.594667pt;}
.ws1e{word-spacing:-25.401600pt;}
.ws67{word-spacing:-25.210133pt;}
.ws5b{word-spacing:-24.760000pt;}
.ws8c{word-spacing:-24.572800pt;}
.ws5e{word-spacing:-24.563200pt;}
.ws8d{word-spacing:-24.120000pt;}
.ws62{word-spacing:-23.932800pt;}
.ws98{word-spacing:-23.488000pt;}
.ws63{word-spacing:-23.478400pt;}
.ws7b{word-spacing:-23.040000pt;}
.wsa{word-spacing:-23.036800pt;}
.ws81{word-spacing:-22.836800pt;}
.ws41{word-spacing:-22.205333pt;}
.ws1d{word-spacing:-22.009600pt;}
.ws14{word-spacing:-21.573333pt;}
.ws66{word-spacing:-21.560533pt;}
.ws13{word-spacing:-21.120000pt;}
.ws7a{word-spacing:-21.112000pt;}
.ws77{word-spacing:-20.928000pt;}
.ws56{word-spacing:-20.921600pt;}
.ws34{word-spacing:-20.915200pt;}
.ws7e{word-spacing:-20.910400pt;}
.ws78{word-spacing:-19.837333pt;}
.ws6d{word-spacing:-19.648000pt;}
.ws35{word-spacing:-19.641600pt;}
.ws3c{word-spacing:-19.636800pt;}
.ws6b{word-spacing:-19.200000pt;}
.ws89{word-spacing:-19.193600pt;}
.ws28{word-spacing:-19.000000pt;}
.ws85{word-spacing:-18.803200pt;}
.ws80{word-spacing:-18.798400pt;}
.ws1c{word-spacing:-18.565333pt;}
.ws5c{word-spacing:-17.916533pt;}
.ws61{word-spacing:-17.716000pt;}
.ws4e{word-spacing:-17.536000pt;}
.ws5d{word-spacing:-17.529600pt;}
.ws82{word-spacing:-17.085333pt;}
.ws73{word-spacing:-17.078400pt;}
.ws38{word-spacing:-16.889600pt;}
.ws84{word-spacing:-16.630400pt;}
.ws46{word-spacing:-16.444800pt;}
.ws5f{word-spacing:-15.806400pt;}
.ws43{word-spacing:-15.798400pt;}
.ws31{word-spacing:-15.795200pt;}
.ws20{word-spacing:-15.153600pt;}
.ws7d{word-spacing:-14.336000pt;}
.ws7f{word-spacing:-13.234133pt;}
.ws2f{word-spacing:-13.227200pt;}
.ws5a{word-spacing:-12.600000pt;}
.ws29{word-spacing:-12.598400pt;}
.ws3d{word-spacing:-12.421333pt;}
.ws27{word-spacing:-10.232000pt;}
.ws3f{word-spacing:-10.038400pt;}
.ws2e{word-spacing:-9.590933pt;}
.ws71{word-spacing:-9.210667pt;}
.ws49{word-spacing:-6.829867pt;}
.ws90{word-spacing:-6.206400pt;}
.ws4c{word-spacing:-6.196800pt;}
.ws10{word-spacing:-5.568000pt;}
.ws92{word-spacing:-5.044267pt;}
.ws72{word-spacing:-3.456000pt;}
.ws3a{word-spacing:-3.428267pt;}
.ws2b{word-spacing:-1.721600pt;}
.ws18{word-spacing:-0.441600pt;}
.ws9b{word-spacing:0.000000pt;}
.wsf{word-spacing:0.389067pt;}
.wse{word-spacing:0.634667pt;}
.ws21{word-spacing:4.696533pt;}
.ws93{word-spacing:7.248533pt;}
.ws2d{word-spacing:9.798400pt;}
.ws11{word-spacing:15.552800pt;}
.ws91{word-spacing:34.566400pt;}
.ws1{word-spacing:922.208800pt;}
._e{margin-left:-1.967200pt;}
._4{margin-left:-0.898400pt;}
._0{width:0.956800pt;}
._f{width:1.961867pt;}
._1{width:16.860800pt;}
._1d{width:17.898933pt;}
._14{width:19.133067pt;}
._9{width:20.352000pt;}
._b{width:21.648000pt;}
._2{width:22.704000pt;}
._1a{width:24.487467pt;}
._d{width:25.526400pt;}
._1f{width:26.504000pt;}
._3{width:27.580800pt;}
._8{width:29.212000pt;}
._17{width:30.287200pt;}
._19{width:31.284267pt;}
._c{width:32.258400pt;}
._1e{width:33.149067pt;}
._1b{width:34.348000pt;}
._10{width:35.724800pt;}
._21{width:36.785067pt;}
._13{width:38.362667pt;}
._12{width:40.532000pt;}
._20{width:41.837867pt;}
._1c{width:44.226400pt;}
._6{width:45.181867pt;}
._18{width:47.346400pt;}
._15{width:48.978667pt;}
._a{width:50.291200pt;}
._5{width:51.450933pt;}
._11{width:53.346133pt;}
._23{width:58.159467pt;}
._16{width:61.043200pt;}
._7{width:66.435200pt;}
._22{width:85.292800pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:10.880000pt;}
.y3{bottom:56.866667pt;}
.y50{bottom:90.308000pt;}
.y8e{bottom:107.266667pt;}
.y4f{bottom:108.708000pt;}
.y75{bottom:109.346667pt;}
.y26{bottom:125.188000pt;}
.y8d{bottom:125.666667pt;}
.y4e{bottom:127.108000pt;}
.y74{bottom:127.746667pt;}
.y4d{bottom:145.508000pt;}
.y73{bottom:145.988000pt;}
.y25{bottom:162.146667pt;}
.y8c{bottom:162.788000pt;}
.y72{bottom:164.388000pt;}
.y8b{bottom:181.188000pt;}
.y4c{bottom:182.466667pt;}
.y71{bottom:182.788000pt;}
.y24{bottom:199.266667pt;}
.y4b{bottom:200.866667pt;}
.y70{bottom:201.188000pt;}
.y8a{bottom:218.308000pt;}
.y4a{bottom:219.266667pt;}
.y6f{bottom:219.588000pt;}
.y23{bottom:236.388000pt;}
.y49{bottom:237.666667pt;}
.y89{bottom:255.266667pt;}
.y48{bottom:256.066667pt;}
.y6e{bottom:256.706667pt;}
.y22{bottom:273.346667pt;}
.y47{bottom:274.466667pt;}
.y6d{bottom:275.108000pt;}
.y21{bottom:291.746667pt;}
.y88{bottom:292.388000pt;}
.y46{bottom:292.866667pt;}
.y6c{bottom:293.508000pt;}
.y20{bottom:310.146667pt;}
.y45{bottom:311.266667pt;}
.y6b{bottom:311.908000pt;}
.y1f{bottom:328.546667pt;}
.y87{bottom:329.508000pt;}
.y44{bottom:329.666667pt;}
.y6a{bottom:330.308000pt;}
.y1e{bottom:346.946667pt;}
.y86{bottom:347.908000pt;}
.y43{bottom:348.066667pt;}
.y69{bottom:348.706667pt;}
.y1d{bottom:365.346667pt;}
.y85{bottom:366.308000pt;}
.y42{bottom:366.466667pt;}
.y68{bottom:367.108000pt;}
.y1c{bottom:383.746667pt;}
.y1b{bottom:402.146667pt;}
.y84{bottom:403.266667pt;}
.y41{bottom:403.588000pt;}
.y67{bottom:404.066667pt;}
.y1a{bottom:420.546667pt;}
.y83{bottom:421.666667pt;}
.y40{bottom:421.988000pt;}
.y66{bottom:422.466667pt;}
.y19{bottom:438.946667pt;}
.y82{bottom:440.066667pt;}
.y3f{bottom:440.388000pt;}
.y65{bottom:440.866667pt;}
.y3e{bottom:458.788000pt;}
.y64{bottom:459.266667pt;}
.y18{bottom:476.066667pt;}
.y3d{bottom:477.188000pt;}
.y63{bottom:477.666667pt;}
.y17{bottom:494.466667pt;}
.y3c{bottom:495.588000pt;}
.y62{bottom:496.066667pt;}
.y16{bottom:512.866667pt;}
.y3b{bottom:513.988000pt;}
.y81{bottom:514.308000pt;}
.y61{bottom:514.466667pt;}
.y15{bottom:531.266667pt;}
.y3a{bottom:532.388000pt;}
.y60{bottom:532.866667pt;}
.y14{bottom:549.666667pt;}
.y39{bottom:550.788000pt;}
.y5f{bottom:551.266667pt;}
.y13{bottom:568.066667pt;}
.y38{bottom:569.188000pt;}
.y5e{bottom:569.666667pt;}
.y37{bottom:587.588000pt;}
.y12{bottom:605.188000pt;}
.y36{bottom:605.988000pt;}
.y5d{bottom:606.788000pt;}
.y11{bottom:623.588000pt;}
.y5c{bottom:625.188000pt;}
.y35{bottom:643.108000pt;}
.y5b{bottom:643.588000pt;}
.y10{bottom:660.546667pt;}
.y34{bottom:661.506667pt;}
.y5a{bottom:661.988000pt;}
.y80{bottom:662.308000pt;}
.yf{bottom:678.946667pt;}
.y59{bottom:680.388000pt;}
.y7f{bottom:680.706667pt;}
.ye{bottom:697.346667pt;}
.y33{bottom:698.466667pt;}
.y58{bottom:698.788000pt;}
.y7e{bottom:699.108000pt;}
.yd{bottom:715.746667pt;}
.y57{bottom:717.188000pt;}
.y32{bottom:735.588000pt;}
.y7d{bottom:736.066667pt;}
.yc{bottom:752.866667pt;}
.y7c{bottom:754.466667pt;}
.y31{bottom:772.706667pt;}
.y7b{bottom:772.866667pt;}
.yb{bottom:789.988000pt;}
.y93{bottom:790.466667pt;}
.y30{bottom:791.106667pt;}
.y7a{bottom:791.266667pt;}
.ya{bottom:808.388000pt;}
.y92{bottom:808.866667pt;}
.y56{bottom:809.506667pt;}
.y79{bottom:809.666667pt;}
.y9{bottom:826.788000pt;}
.y55{bottom:827.906667pt;}
.y2f{bottom:828.066667pt;}
.y91{bottom:845.988000pt;}
.y54{bottom:846.306667pt;}
.y2e{bottom:846.466667pt;}
.y8{bottom:863.746667pt;}
.y90{bottom:864.388000pt;}
.y2d{bottom:864.866667pt;}
.y2c{bottom:883.266667pt;}
.y8f{bottom:901.506667pt;}
.y2b{bottom:901.666667pt;}
.y2a{bottom:920.066667pt;}
.y78{bottom:920.388000pt;}
.y29{bottom:938.466667pt;}
.y77{bottom:938.788000pt;}
.y7{bottom:956.706667pt;}
.y28{bottom:956.866667pt;}
.y76{bottom:957.188000pt;}
.y27{bottom:975.266667pt;}
.y53{bottom:975.588000pt;}
.y6{bottom:993.666667pt;}
.y52{bottom:993.988000pt;}
.y51{bottom:1012.388000pt;}
.y5{bottom:1030.788000pt;}
.y2{bottom:1069.026667pt;}
.y1{bottom:1088.706667pt;}
.h3{height:29.066667pt;}
.h2{height:43.375000pt;}
.h4{height:43.531250pt;}
.h5{height:44.468750pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:631.266667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:10.453333pt;}
.x1{left:111.040000pt;}
.x3{left:113.066667pt;}
.x9{left:114.400000pt;}
.x2{left:142.720000pt;}
.x8{left:187.840000pt;}
.x6{left:266.240000pt;}
.x5{left:304.478667pt;}
.x7{left:317.278667pt;}
}




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