
    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_29197845d25996696664a1a6.woff')format("woff");}.ff1{font-family:ff1;line-height:0.900391;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_8fb76061735bacb7e7480b20.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_de86d330683e19a3a74d1f51.woff')format("woff");}.ff3{font-family:ff3;line-height:1.097168;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;}
.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;}
.ws9f{word-spacing:-39.384000px;}
.wsb{word-spacing:-39.091500px;}
.ws51{word-spacing:-38.660400px;}
.ws16{word-spacing:-38.651400px;}
.ws68{word-spacing:-38.646000px;}
.ws4{word-spacing:-38.354400px;}
.ws56{word-spacing:-38.166000px;}
.ws22{word-spacing:-38.160000px;}
.ws9{word-spacing:-38.158800px;}
.ws3{word-spacing:-38.154000px;}
.ws7b{word-spacing:-38.152800px;}
.ws74{word-spacing:-38.142000px;}
.ws4b{word-spacing:-38.136600px;}
.ws2{word-spacing:-38.081700px;}
.ws5d{word-spacing:-37.946400px;}
.ws0{word-spacing:-37.944000px;}
.ws5f{word-spacing:-37.942200px;}
.ws80{word-spacing:-37.940400px;}
.ws3b{word-spacing:-37.936800px;}
.ws86{word-spacing:-37.935900px;}
.ws8{word-spacing:-37.935000px;}
.ws3f{word-spacing:-37.870200px;}
.ws6b{word-spacing:-37.722600px;}
.ws7{word-spacing:-37.710900px;}
.ws5{word-spacing:-37.709100px;}
.ws99{word-spacing:-37.639800px;}
.ws10{word-spacing:-37.442400px;}
.ws9b{word-spacing:-37.440000px;}
.ws84{word-spacing:-37.436400px;}
.ws38{word-spacing:-37.432800px;}
.ws13{word-spacing:-37.222200px;}
.ws17{word-spacing:-37.220400px;}
.ws8f{word-spacing:-37.215600px;}
.ws1d{word-spacing:-37.211400px;}
.ws54{word-spacing:-37.207800px;}
.ws67{word-spacing:-37.144800px;}
.ws70{word-spacing:-36.716400px;}
.ws63{word-spacing:-36.712800px;}
.ws6e{word-spacing:-36.700200px;}
.ws42{word-spacing:-36.500400px;}
.ws3a{word-spacing:-36.499200px;}
.ws87{word-spacing:-36.000000px;}
.ws26{word-spacing:-35.776800px;}
.ws1f{word-spacing:-35.772000px;}
.ws2d{word-spacing:-35.568000px;}
.ws78{word-spacing:-35.280000px;}
.ws71{word-spacing:-35.276400px;}
.ws9e{word-spacing:-35.063100px;}
.ws30{word-spacing:-35.051400px;}
.ws8a{word-spacing:-35.048400px;}
.ws3d{word-spacing:-34.969800px;}
.ws90{word-spacing:-34.562400px;}
.ws28{word-spacing:-34.560000px;}
.ws20{word-spacing:-34.346400px;}
.ws21{word-spacing:-34.335000px;}
.ws6f{word-spacing:-33.836400px;}
.ws5c{word-spacing:-33.615000px;}
.ws8d{word-spacing:-33.395400px;}
.wsd{word-spacing:-33.120000px;}
.ws2e{word-spacing:-33.117300px;}
.wsc{word-spacing:-33.100200px;}
.ws8c{word-spacing:-33.098400px;}
.ws25{word-spacing:-32.896200px;}
.ws79{word-spacing:-32.893200px;}
.ws89{word-spacing:-32.882400px;}
.ws44{word-spacing:-32.819400px;}
.ws72{word-spacing:-32.398200px;}
.ws6a{word-spacing:-32.378400px;}
.ws1b{word-spacing:-32.176800px;}
.ws2f{word-spacing:-31.680000px;}
.ws92{word-spacing:-31.673400px;}
.ws97{word-spacing:-31.460400px;}
.ws65{word-spacing:-31.458000px;}
.ws53{word-spacing:-31.447800px;}
.ws12{word-spacing:-30.960000px;}
.ws4d{word-spacing:-30.954600px;}
.wsf{word-spacing:-30.941400px;}
.ws36{word-spacing:-30.744000px;}
.ws31{word-spacing:-30.742200px;}
.ws45{word-spacing:-30.735000px;}
.ws93{word-spacing:-30.723600px;}
.ws9d{word-spacing:-30.224400px;}
.ws62{word-spacing:-30.010500px;}
.ws59{word-spacing:-29.943000px;}
.ws55{word-spacing:-29.508300px;}
.ws1c{word-spacing:-29.504700px;}
.ws48{word-spacing:-29.282400px;}
.ws81{word-spacing:-28.800000px;}
.ws4f{word-spacing:-28.582200px;}
.ws61{word-spacing:-28.580400px;}
.ws83{word-spacing:-28.572000px;}
.ws24{word-spacing:-28.359900px;}
.ws91{word-spacing:-28.080000px;}
.ws4a{word-spacing:-27.345600px;}
.ws5b{word-spacing:-27.344400px;}
.wsa2{word-spacing:-27.144000px;}
.ws3c{word-spacing:-27.140400px;}
.ws95{word-spacing:-27.131400px;}
.ws8b{word-spacing:-26.632800px;}
.ws82{word-spacing:-26.629200px;}
.ws39{word-spacing:-26.416800px;}
.ws1e{word-spacing:-25.920000px;}
.ws33{word-spacing:-25.916400px;}
.ws98{word-spacing:-25.911000px;}
.ws2b{word-spacing:-25.704000px;}
.wsa0{word-spacing:-24.984000px;}
.ws4c{word-spacing:-24.982200px;}
.ws19{word-spacing:-24.980400px;}
.ws57{word-spacing:-24.962400px;}
.ws76{word-spacing:-24.486000px;}
.ws73{word-spacing:-24.480000px;}
.ws47{word-spacing:-24.474000px;}
.ws46{word-spacing:-24.249000px;}
.ws2a{word-spacing:-24.247800px;}
.ws50{word-spacing:-24.242400px;}
.ws37{word-spacing:-23.766000px;}
.ws7c{word-spacing:-23.751900px;}
.ws6d{word-spacing:-23.747400px;}
.ws3e{word-spacing:-23.531400px;}
.ws7d{word-spacing:-22.815600px;}
.ws4e{word-spacing:-22.320000px;}
.ws11{word-spacing:-22.098600px;}
.ws2c{word-spacing:-22.097700px;}
.ws35{word-spacing:-22.096200px;}
.ws88{word-spacing:-22.086000px;}
.ws41{word-spacing:-21.592800px;}
.ws8e{word-spacing:-21.369600px;}
.ws85{word-spacing:-20.876400px;}
.ws75{word-spacing:-20.664000px;}
.wsa{word-spacing:-20.423100px;}
.ws52{word-spacing:-19.440000px;}
.ws34{word-spacing:-18.711900px;}
.ws60{word-spacing:-18.279900px;}
.ws23{word-spacing:-17.280000px;}
.ws1a{word-spacing:-16.342200px;}
.wse{word-spacing:-15.842400px;}
.ws5a{word-spacing:-15.117000px;}
.ws5e{word-spacing:-15.110400px;}
.ws27{word-spacing:-14.900400px;}
.ws43{word-spacing:-14.821200px;}
.ws6c{word-spacing:-14.396400px;}
.ws69{word-spacing:-14.169600px;}
.ws66{word-spacing:-12.742200px;}
.ws7e{word-spacing:-12.740400px;}
.ws7f{word-spacing:-12.240000px;}
.ws7a{word-spacing:-12.016800px;}
.ws64{word-spacing:-11.300400px;}
.ws58{word-spacing:-10.580400px;}
.ws49{word-spacing:-10.069200px;}
.ws14{word-spacing:-9.349200px;}
.ws29{word-spacing:-9.129600px;}
.ws18{word-spacing:-8.422200px;}
.ws15{word-spacing:-8.411400px;}
.ws96{word-spacing:-8.408400px;}
.ws94{word-spacing:-6.262200px;}
.ws77{word-spacing:-3.606000px;}
.ws40{word-spacing:-2.663100px;}
.ws9c{word-spacing:-1.224000px;}
.ws32{word-spacing:-0.500400px;}
.ws9a{word-spacing:11.032200px;}
.wsa1{word-spacing:18.216000px;}
.ws1{word-spacing:1037.484900px;}
._2{margin-left:-1.118700px;}
._0{width:1.076400px;}
._1f{width:15.417000px;}
._c{width:17.691300px;}
._1{width:18.968400px;}
._6{width:20.016000px;}
._e{width:21.178800px;}
._a{width:22.220400px;}
._1c{width:23.310900px;}
._3{width:24.316200px;}
._15{width:25.376700px;}
._5{width:26.405400px;}
._b{width:27.992700px;}
._f{width:29.079900px;}
._1a{width:30.080400px;}
._d{width:31.248000px;}
._9{width:32.472000px;}
._11{width:33.552000px;}
._7{width:34.848000px;}
._12{width:35.921700px;}
._19{width:37.506000px;}
._16{width:38.871900px;}
._4{width:41.190000px;}
._10{width:42.832800px;}
._1d{width:44.603100px;}
._1b{width:45.816300px;}
._18{width:46.994400px;}
._8{width:48.742200px;}
._17{width:54.431100px;}
._13{width:56.736000px;}
._14{width:57.812400px;}
._1e{width:68.227200px;}
.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;}
.y5a{bottom:103.215000px;}
.y2a{bottom:121.036500px;}
.y83{bottom:123.196500px;}
.y59{bottom:123.915000px;}
.y29{bottom:141.736500px;}
.y82{bottom:143.896500px;}
.y58{bottom:144.615000px;}
.y28{bottom:162.436500px;}
.y81{bottom:164.596500px;}
.y57{bottom:165.315000px;}
.y27{bottom:183.136500px;}
.y97{bottom:183.675000px;}
.y80{bottom:185.296500px;}
.y26{bottom:203.836500px;}
.y96{bottom:204.375000px;}
.y7f{bottom:205.996500px;}
.y56{bottom:206.896500px;}
.y25{bottom:224.536500px;}
.y95{bottom:225.075000px;}
.y7e{bottom:226.696500px;}
.y55{bottom:227.596500px;}
.y24{bottom:245.236500px;}
.y54{bottom:248.295000px;}
.y23{bottom:265.936500px;}
.y94{bottom:266.836500px;}
.y7d{bottom:268.275000px;}
.y53{bottom:268.996500px;}
.y22{bottom:286.636500px;}
.y93{bottom:287.536500px;}
.y7c{bottom:288.975000px;}
.y52{bottom:289.696500px;}
.y21{bottom:307.336500px;}
.y7b{bottom:309.675000px;}
.y92{bottom:329.295000px;}
.y7a{bottom:330.375000px;}
.y51{bottom:331.275000px;}
.y20{bottom:348.915000px;}
.y91{bottom:349.996500px;}
.y79{bottom:351.075000px;}
.y50{bottom:351.975000px;}
.y1f{bottom:369.615000px;}
.y78{bottom:371.775000px;}
.y4f{bottom:372.675000px;}
.y1e{bottom:390.315000px;}
.y90{bottom:391.575000px;}
.y77{bottom:392.475000px;}
.y4e{bottom:393.375000px;}
.y1d{bottom:411.015000px;}
.y8f{bottom:412.275000px;}
.y76{bottom:413.175000px;}
.y4d{bottom:414.075000px;}
.y1c{bottom:431.715000px;}
.y75{bottom:433.875000px;}
.y4c{bottom:434.775000px;}
.y1b{bottom:452.415000px;}
.y8e{bottom:454.036500px;}
.y74{bottom:454.575000px;}
.y4b{bottom:455.475000px;}
.y1a{bottom:473.115000px;}
.y8d{bottom:474.736500px;}
.y73{bottom:475.275000px;}
.y4a{bottom:476.175000px;}
.y19{bottom:493.815000px;}
.y72{bottom:495.975000px;}
.y49{bottom:496.875000px;}
.y18{bottom:514.515000px;}
.y8c{bottom:516.496500px;}
.y71{bottom:516.675000px;}
.y48{bottom:517.575000px;}
.y17{bottom:535.215000px;}
.y8b{bottom:537.195000px;}
.y47{bottom:538.275000px;}
.y16{bottom:555.915000px;}
.y70{bottom:558.436500px;}
.y46{bottom:558.975000px;}
.y15{bottom:576.615000px;}
.y8a{bottom:578.775000px;}
.y6f{bottom:579.136500px;}
.y45{bottom:579.675000px;}
.y6e{bottom:599.836500px;}
.y44{bottom:600.375000px;}
.y14{bottom:618.375000px;}
.y6d{bottom:620.536500px;}
.y43{bottom:621.075000px;}
.y13{bottom:639.075000px;}
.y6c{bottom:641.236500px;}
.y42{bottom:641.775000px;}
.y6b{bottom:661.936500px;}
.y41{bottom:662.475000px;}
.y12{bottom:680.836500px;}
.y89{bottom:682.636500px;}
.y40{bottom:683.175000px;}
.y11{bottom:701.536500px;}
.y88{bottom:703.336500px;}
.y6a{bottom:703.695000px;}
.y3f{bottom:703.875000px;}
.y10{bottom:722.236500px;}
.y87{bottom:724.036500px;}
.y69{bottom:724.396500px;}
.y3e{bottom:724.575000px;}
.yf{bottom:742.936500px;}
.y68{bottom:745.096500px;}
.y3d{bottom:745.275000px;}
.ye{bottom:763.636500px;}
.y67{bottom:765.795000px;}
.y3c{bottom:765.975000px;}
.yd{bottom:784.336500px;}
.y66{bottom:786.496500px;}
.y3b{bottom:786.675000px;}
.yc{bottom:805.036500px;}
.y65{bottom:807.195000px;}
.y3a{bottom:807.375000px;}
.y86{bottom:827.895000px;}
.y39{bottom:828.075000px;}
.yb{bottom:846.615000px;}
.y85{bottom:848.596500px;}
.y38{bottom:848.775000px;}
.y84{bottom:869.295000px;}
.y37{bottom:869.475000px;}
.y64{bottom:890.175000px;}
.y63{bottom:910.875000px;}
.y36{bottom:911.236500px;}
.y62{bottom:931.575000px;}
.y35{bottom:931.936500px;}
.ya{bottom:951.195000px;}
.y61{bottom:952.275000px;}
.y34{bottom:952.636500px;}
.y60{bottom:972.975000px;}
.y33{bottom:973.336500px;}
.y9{bottom:992.775000px;}
.y5f{bottom:993.675000px;}
.y32{bottom:994.036500px;}
.y5e{bottom:1014.375000px;}
.y31{bottom:1014.736500px;}
.y8{bottom:1034.536500px;}
.y5d{bottom:1035.075000px;}
.y30{bottom:1035.436500px;}
.y5c{bottom:1055.775000px;}
.y2f{bottom:1056.136500px;}
.y7{bottom:1076.295000px;}
.y5b{bottom:1076.475000px;}
.y2e{bottom:1076.836500px;}
.y2d{bottom:1097.536500px;}
.y6{bottom:1117.875000px;}
.y2c{bottom:1118.236500px;}
.y2b{bottom:1138.936500px;}
.y5{bottom:1159.636500px;}
.y2{bottom:1202.655000px;}
.y1{bottom:1224.795000px;}
.h3{height:32.700000px;}
.h2{height:49.289063px;}
.h4{height:63.457031px;}
.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;}
.xb{left:134.100000px;}
.x2{left:160.560000px;}
.xa{left:182.700000px;}
.x5{left:230.938500px;}
.x8{left:288.900000px;}
.x7{left:348.300000px;}
.x6{left:357.120000px;}
.x9{left:374.938500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws6{word-spacing:-49.728000pt;}
.ws9f{word-spacing:-35.008000pt;}
.wsb{word-spacing:-34.748000pt;}
.ws51{word-spacing:-34.364800pt;}
.ws16{word-spacing:-34.356800pt;}
.ws68{word-spacing:-34.352000pt;}
.ws4{word-spacing:-34.092800pt;}
.ws56{word-spacing:-33.925333pt;}
.ws22{word-spacing:-33.920000pt;}
.ws9{word-spacing:-33.918933pt;}
.ws3{word-spacing:-33.914667pt;}
.ws7b{word-spacing:-33.913600pt;}
.ws74{word-spacing:-33.904000pt;}
.ws4b{word-spacing:-33.899200pt;}
.ws2{word-spacing:-33.850400pt;}
.ws5d{word-spacing:-33.730133pt;}
.ws0{word-spacing:-33.728000pt;}
.ws5f{word-spacing:-33.726400pt;}
.ws80{word-spacing:-33.724800pt;}
.ws3b{word-spacing:-33.721600pt;}
.ws86{word-spacing:-33.720800pt;}
.ws8{word-spacing:-33.720000pt;}
.ws3f{word-spacing:-33.662400pt;}
.ws6b{word-spacing:-33.531200pt;}
.ws7{word-spacing:-33.520800pt;}
.ws5{word-spacing:-33.519200pt;}
.ws99{word-spacing:-33.457600pt;}
.ws10{word-spacing:-33.282133pt;}
.ws9b{word-spacing:-33.280000pt;}
.ws84{word-spacing:-33.276800pt;}
.ws38{word-spacing:-33.273600pt;}
.ws13{word-spacing:-33.086400pt;}
.ws17{word-spacing:-33.084800pt;}
.ws8f{word-spacing:-33.080533pt;}
.ws1d{word-spacing:-33.076800pt;}
.ws54{word-spacing:-33.073600pt;}
.ws67{word-spacing:-33.017600pt;}
.ws70{word-spacing:-32.636800pt;}
.ws63{word-spacing:-32.633600pt;}
.ws6e{word-spacing:-32.622400pt;}
.ws42{word-spacing:-32.444800pt;}
.ws3a{word-spacing:-32.443733pt;}
.ws87{word-spacing:-32.000000pt;}
.ws26{word-spacing:-31.801600pt;}
.ws1f{word-spacing:-31.797333pt;}
.ws2d{word-spacing:-31.616000pt;}
.ws78{word-spacing:-31.360000pt;}
.ws71{word-spacing:-31.356800pt;}
.ws9e{word-spacing:-31.167200pt;}
.ws30{word-spacing:-31.156800pt;}
.ws8a{word-spacing:-31.154133pt;}
.ws3d{word-spacing:-31.084267pt;}
.ws90{word-spacing:-30.722133pt;}
.ws28{word-spacing:-30.720000pt;}
.ws20{word-spacing:-30.530133pt;}
.ws21{word-spacing:-30.520000pt;}
.ws6f{word-spacing:-30.076800pt;}
.ws5c{word-spacing:-29.880000pt;}
.ws8d{word-spacing:-29.684800pt;}
.wsd{word-spacing:-29.440000pt;}
.ws2e{word-spacing:-29.437600pt;}
.wsc{word-spacing:-29.422400pt;}
.ws8c{word-spacing:-29.420800pt;}
.ws25{word-spacing:-29.241067pt;}
.ws79{word-spacing:-29.238400pt;}
.ws89{word-spacing:-29.228800pt;}
.ws44{word-spacing:-29.172800pt;}
.ws72{word-spacing:-28.798400pt;}
.ws6a{word-spacing:-28.780800pt;}
.ws1b{word-spacing:-28.601600pt;}
.ws2f{word-spacing:-28.160000pt;}
.ws92{word-spacing:-28.154133pt;}
.ws97{word-spacing:-27.964800pt;}
.ws65{word-spacing:-27.962667pt;}
.ws53{word-spacing:-27.953600pt;}
.ws12{word-spacing:-27.520000pt;}
.ws4d{word-spacing:-27.515200pt;}
.wsf{word-spacing:-27.503467pt;}
.ws36{word-spacing:-27.328000pt;}
.ws31{word-spacing:-27.326400pt;}
.ws45{word-spacing:-27.320000pt;}
.ws93{word-spacing:-27.309867pt;}
.ws9d{word-spacing:-26.866133pt;}
.ws62{word-spacing:-26.676000pt;}
.ws59{word-spacing:-26.616000pt;}
.ws55{word-spacing:-26.229600pt;}
.ws1c{word-spacing:-26.226400pt;}
.ws48{word-spacing:-26.028800pt;}
.ws81{word-spacing:-25.600000pt;}
.ws4f{word-spacing:-25.406400pt;}
.ws61{word-spacing:-25.404800pt;}
.ws83{word-spacing:-25.397333pt;}
.ws24{word-spacing:-25.208800pt;}
.ws91{word-spacing:-24.960000pt;}
.ws4a{word-spacing:-24.307200pt;}
.ws5b{word-spacing:-24.306133pt;}
.wsa2{word-spacing:-24.128000pt;}
.ws3c{word-spacing:-24.124800pt;}
.ws95{word-spacing:-24.116800pt;}
.ws8b{word-spacing:-23.673600pt;}
.ws82{word-spacing:-23.670400pt;}
.ws39{word-spacing:-23.481600pt;}
.ws1e{word-spacing:-23.040000pt;}
.ws33{word-spacing:-23.036800pt;}
.ws98{word-spacing:-23.032000pt;}
.ws2b{word-spacing:-22.848000pt;}
.wsa0{word-spacing:-22.208000pt;}
.ws4c{word-spacing:-22.206400pt;}
.ws19{word-spacing:-22.204800pt;}
.ws57{word-spacing:-22.188800pt;}
.ws76{word-spacing:-21.765333pt;}
.ws73{word-spacing:-21.760000pt;}
.ws47{word-spacing:-21.754667pt;}
.ws46{word-spacing:-21.554667pt;}
.ws2a{word-spacing:-21.553600pt;}
.ws50{word-spacing:-21.548800pt;}
.ws37{word-spacing:-21.125333pt;}
.ws7c{word-spacing:-21.112800pt;}
.ws6d{word-spacing:-21.108800pt;}
.ws3e{word-spacing:-20.916800pt;}
.ws7d{word-spacing:-20.280533pt;}
.ws4e{word-spacing:-19.840000pt;}
.ws11{word-spacing:-19.643200pt;}
.ws2c{word-spacing:-19.642400pt;}
.ws35{word-spacing:-19.641067pt;}
.ws88{word-spacing:-19.632000pt;}
.ws41{word-spacing:-19.193600pt;}
.ws8e{word-spacing:-18.995200pt;}
.ws85{word-spacing:-18.556800pt;}
.ws75{word-spacing:-18.368000pt;}
.wsa{word-spacing:-18.153867pt;}
.ws52{word-spacing:-17.280000pt;}
.ws34{word-spacing:-16.632800pt;}
.ws60{word-spacing:-16.248800pt;}
.ws23{word-spacing:-15.360000pt;}
.ws1a{word-spacing:-14.526400pt;}
.wse{word-spacing:-14.082133pt;}
.ws5a{word-spacing:-13.437333pt;}
.ws5e{word-spacing:-13.431467pt;}
.ws27{word-spacing:-13.244800pt;}
.ws43{word-spacing:-13.174400pt;}
.ws6c{word-spacing:-12.796800pt;}
.ws69{word-spacing:-12.595200pt;}
.ws66{word-spacing:-11.326400pt;}
.ws7e{word-spacing:-11.324800pt;}
.ws7f{word-spacing:-10.880000pt;}
.ws7a{word-spacing:-10.681600pt;}
.ws64{word-spacing:-10.044800pt;}
.ws58{word-spacing:-9.404800pt;}
.ws49{word-spacing:-8.950400pt;}
.ws14{word-spacing:-8.310400pt;}
.ws29{word-spacing:-8.115200pt;}
.ws18{word-spacing:-7.486400pt;}
.ws15{word-spacing:-7.476800pt;}
.ws96{word-spacing:-7.474133pt;}
.ws94{word-spacing:-5.566400pt;}
.ws77{word-spacing:-3.205333pt;}
.ws40{word-spacing:-2.367200pt;}
.ws9c{word-spacing:-1.088000pt;}
.ws32{word-spacing:-0.444800pt;}
.ws9a{word-spacing:9.806400pt;}
.wsa1{word-spacing:16.192000pt;}
.ws1{word-spacing:922.208800pt;}
._2{margin-left:-0.994400pt;}
._0{width:0.956800pt;}
._1f{width:13.704000pt;}
._c{width:15.725600pt;}
._1{width:16.860800pt;}
._6{width:17.792000pt;}
._e{width:18.825600pt;}
._a{width:19.751467pt;}
._1c{width:20.720800pt;}
._3{width:21.614400pt;}
._15{width:22.557067pt;}
._5{width:23.471467pt;}
._b{width:24.882400pt;}
._f{width:25.848800pt;}
._1a{width:26.738133pt;}
._d{width:27.776000pt;}
._9{width:28.864000pt;}
._11{width:29.824000pt;}
._7{width:30.976000pt;}
._12{width:31.930400pt;}
._19{width:33.338667pt;}
._16{width:34.552800pt;}
._4{width:36.613333pt;}
._10{width:38.073600pt;}
._1d{width:39.647200pt;}
._1b{width:40.725600pt;}
._18{width:41.772800pt;}
._8{width:43.326400pt;}
._17{width:48.383200pt;}
._13{width:50.432000pt;}
._14{width:51.388800pt;}
._1e{width:60.646400pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:10.880000pt;}
.y3{bottom:56.866667pt;}
.y5a{bottom:91.746667pt;}
.y2a{bottom:107.588000pt;}
.y83{bottom:109.508000pt;}
.y59{bottom:110.146667pt;}
.y29{bottom:125.988000pt;}
.y82{bottom:127.908000pt;}
.y58{bottom:128.546667pt;}
.y28{bottom:144.388000pt;}
.y81{bottom:146.308000pt;}
.y57{bottom:146.946667pt;}
.y27{bottom:162.788000pt;}
.y97{bottom:163.266667pt;}
.y80{bottom:164.708000pt;}
.y26{bottom:181.188000pt;}
.y96{bottom:181.666667pt;}
.y7f{bottom:183.108000pt;}
.y56{bottom:183.908000pt;}
.y25{bottom:199.588000pt;}
.y95{bottom:200.066667pt;}
.y7e{bottom:201.508000pt;}
.y55{bottom:202.308000pt;}
.y24{bottom:217.988000pt;}
.y54{bottom:220.706667pt;}
.y23{bottom:236.388000pt;}
.y94{bottom:237.188000pt;}
.y7d{bottom:238.466667pt;}
.y53{bottom:239.108000pt;}
.y22{bottom:254.788000pt;}
.y93{bottom:255.588000pt;}
.y7c{bottom:256.866667pt;}
.y52{bottom:257.508000pt;}
.y21{bottom:273.188000pt;}
.y7b{bottom:275.266667pt;}
.y92{bottom:292.706667pt;}
.y7a{bottom:293.666667pt;}
.y51{bottom:294.466667pt;}
.y20{bottom:310.146667pt;}
.y91{bottom:311.108000pt;}
.y79{bottom:312.066667pt;}
.y50{bottom:312.866667pt;}
.y1f{bottom:328.546667pt;}
.y78{bottom:330.466667pt;}
.y4f{bottom:331.266667pt;}
.y1e{bottom:346.946667pt;}
.y90{bottom:348.066667pt;}
.y77{bottom:348.866667pt;}
.y4e{bottom:349.666667pt;}
.y1d{bottom:365.346667pt;}
.y8f{bottom:366.466667pt;}
.y76{bottom:367.266667pt;}
.y4d{bottom:368.066667pt;}
.y1c{bottom:383.746667pt;}
.y75{bottom:385.666667pt;}
.y4c{bottom:386.466667pt;}
.y1b{bottom:402.146667pt;}
.y8e{bottom:403.588000pt;}
.y74{bottom:404.066667pt;}
.y4b{bottom:404.866667pt;}
.y1a{bottom:420.546667pt;}
.y8d{bottom:421.988000pt;}
.y73{bottom:422.466667pt;}
.y4a{bottom:423.266667pt;}
.y19{bottom:438.946667pt;}
.y72{bottom:440.866667pt;}
.y49{bottom:441.666667pt;}
.y18{bottom:457.346667pt;}
.y8c{bottom:459.108000pt;}
.y71{bottom:459.266667pt;}
.y48{bottom:460.066667pt;}
.y17{bottom:475.746667pt;}
.y8b{bottom:477.506667pt;}
.y47{bottom:478.466667pt;}
.y16{bottom:494.146667pt;}
.y70{bottom:496.388000pt;}
.y46{bottom:496.866667pt;}
.y15{bottom:512.546667pt;}
.y8a{bottom:514.466667pt;}
.y6f{bottom:514.788000pt;}
.y45{bottom:515.266667pt;}
.y6e{bottom:533.188000pt;}
.y44{bottom:533.666667pt;}
.y14{bottom:549.666667pt;}
.y6d{bottom:551.588000pt;}
.y43{bottom:552.066667pt;}
.y13{bottom:568.066667pt;}
.y6c{bottom:569.988000pt;}
.y42{bottom:570.466667pt;}
.y6b{bottom:588.388000pt;}
.y41{bottom:588.866667pt;}
.y12{bottom:605.188000pt;}
.y89{bottom:606.788000pt;}
.y40{bottom:607.266667pt;}
.y11{bottom:623.588000pt;}
.y88{bottom:625.188000pt;}
.y6a{bottom:625.506667pt;}
.y3f{bottom:625.666667pt;}
.y10{bottom:641.988000pt;}
.y87{bottom:643.588000pt;}
.y69{bottom:643.908000pt;}
.y3e{bottom:644.066667pt;}
.yf{bottom:660.388000pt;}
.y68{bottom:662.308000pt;}
.y3d{bottom:662.466667pt;}
.ye{bottom:678.788000pt;}
.y67{bottom:680.706667pt;}
.y3c{bottom:680.866667pt;}
.yd{bottom:697.188000pt;}
.y66{bottom:699.108000pt;}
.y3b{bottom:699.266667pt;}
.yc{bottom:715.588000pt;}
.y65{bottom:717.506667pt;}
.y3a{bottom:717.666667pt;}
.y86{bottom:735.906667pt;}
.y39{bottom:736.066667pt;}
.yb{bottom:752.546667pt;}
.y85{bottom:754.308000pt;}
.y38{bottom:754.466667pt;}
.y84{bottom:772.706667pt;}
.y37{bottom:772.866667pt;}
.y64{bottom:791.266667pt;}
.y63{bottom:809.666667pt;}
.y36{bottom:809.988000pt;}
.y62{bottom:828.066667pt;}
.y35{bottom:828.388000pt;}
.ya{bottom:845.506667pt;}
.y61{bottom:846.466667pt;}
.y34{bottom:846.788000pt;}
.y60{bottom:864.866667pt;}
.y33{bottom:865.188000pt;}
.y9{bottom:882.466667pt;}
.y5f{bottom:883.266667pt;}
.y32{bottom:883.588000pt;}
.y5e{bottom:901.666667pt;}
.y31{bottom:901.988000pt;}
.y8{bottom:919.588000pt;}
.y5d{bottom:920.066667pt;}
.y30{bottom:920.388000pt;}
.y5c{bottom:938.466667pt;}
.y2f{bottom:938.788000pt;}
.y7{bottom:956.706667pt;}
.y5b{bottom:956.866667pt;}
.y2e{bottom:957.188000pt;}
.y2d{bottom:975.588000pt;}
.y6{bottom:993.666667pt;}
.y2c{bottom:993.988000pt;}
.y2b{bottom:1012.388000pt;}
.y5{bottom:1030.788000pt;}
.y2{bottom:1069.026667pt;}
.y1{bottom:1088.706667pt;}
.h3{height:29.066667pt;}
.h2{height:43.812500pt;}
.h4{height:56.406250pt;}
.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;}
.xb{left:119.200000pt;}
.x2{left:142.720000pt;}
.xa{left:162.400000pt;}
.x5{left:205.278667pt;}
.x8{left:256.800000pt;}
.x7{left:309.600000pt;}
.x6{left:317.440000pt;}
.x9{left:333.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; }
  