
    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_2ac1308baee8e374596ae90e.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_768e438a7ffa9588930c7844.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_36b6332ca9cc39aa81350379.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;}
.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;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:21.600000px;}
.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;}
}
.wsd{word-spacing:-55.944000px;}
.ws6{word-spacing:-38.804100px;}
.ws6e{word-spacing:-38.659200px;}
.ws77{word-spacing:-38.657400px;}
.ws6d{word-spacing:-38.653200px;}
.ws5e{word-spacing:-38.651400px;}
.ws11{word-spacing:-38.649600px;}
.ws16{word-spacing:-38.645400px;}
.ws46{word-spacing:-38.645100px;}
.ws7c{word-spacing:-38.644200px;}
.ws73{word-spacing:-38.594400px;}
.ws89{word-spacing:-38.580300px;}
.ws35{word-spacing:-38.440800px;}
.ws79{word-spacing:-38.437200px;}
.ws75{word-spacing:-38.435400px;}
.ws85{word-spacing:-38.433600px;}
.ws8c{word-spacing:-38.408400px;}
.ws1e{word-spacing:-38.298000px;}
.ws8a{word-spacing:-38.295900px;}
.ws44{word-spacing:-38.166000px;}
.ws4{word-spacing:-38.160000px;}
.ws80{word-spacing:-38.156400px;}
.ws6f{word-spacing:-38.155200px;}
.ws6a{word-spacing:-38.154600px;}
.ws3c{word-spacing:-38.154000px;}
.ws48{word-spacing:-38.150400px;}
.ws17{word-spacing:-38.150100px;}
.ws86{word-spacing:-38.146500px;}
.ws2{word-spacing:-38.081700px;}
.ws7{word-spacing:-38.080800px;}
.ws2a{word-spacing:-37.946400px;}
.ws0{word-spacing:-37.944000px;}
.ws3f{word-spacing:-37.942800px;}
.ws7e{word-spacing:-37.941900px;}
.ws7a{word-spacing:-37.937400px;}
.ws52{word-spacing:-37.936800px;}
.ws49{word-spacing:-37.935000px;}
.ws72{word-spacing:-37.934100px;}
.ws76{word-spacing:-37.933200px;}
.ws18{word-spacing:-37.927800px;}
.ws7b{word-spacing:-37.927200px;}
.ws19{word-spacing:-37.918800px;}
.ws42{word-spacing:-37.720800px;}
.ws3a{word-spacing:-37.698000px;}
.ws4e{word-spacing:-37.440000px;}
.ws22{word-spacing:-37.222800px;}
.ws26{word-spacing:-37.213200px;}
.ws3{word-spacing:-37.209600px;}
.ws24{word-spacing:-37.205100px;}
.ws71{word-spacing:-37.204200px;}
.ws47{word-spacing:-37.198800px;}
.ws13{word-spacing:-37.150800px;}
.ws12{word-spacing:-36.720000px;}
.ws58{word-spacing:-36.704700px;}
.ws6c{word-spacing:-36.498000px;}
.ws56{word-spacing:-36.000000px;}
.ws1d{word-spacing:-35.790000px;}
.ws61{word-spacing:-35.760600px;}
.ws3e{word-spacing:-35.557200px;}
.ws31{word-spacing:-35.550000px;}
.ws82{word-spacing:-35.064000px;}
.wsb{word-spacing:-35.059200px;}
.ws3d{word-spacing:-35.047200px;}
.ws2c{word-spacing:-34.554000px;}
.ws62{word-spacing:-34.339200px;}
.ws28{word-spacing:-34.338600px;}
.ws10{word-spacing:-34.337400px;}
.wsf{word-spacing:-34.336800px;}
.ws5c{word-spacing:-34.327800px;}
.ws5d{word-spacing:-34.119000px;}
.ws1c{word-spacing:-33.964500px;}
.ws15{word-spacing:-33.836400px;}
.wse{word-spacing:-33.832800px;}
.ws41{word-spacing:-33.823800px;}
.ws68{word-spacing:-33.621000px;}
.ws25{word-spacing:-33.613200px;}
.ws34{word-spacing:-33.595200px;}
.ws39{word-spacing:-33.120000px;}
.ws51{word-spacing:-33.109200px;}
.ws69{word-spacing:-32.904000px;}
.ws66{word-spacing:-32.889600px;}
.ws87{word-spacing:-30.733200px;}
.ws64{word-spacing:-30.723300px;}
.ws59{word-spacing:-30.515400px;}
.ws14{word-spacing:-28.806000px;}
.ws8d{word-spacing:-28.560600px;}
.ws1f{word-spacing:-28.086000px;}
.ws40{word-spacing:-28.080000px;}
.ws20{word-spacing:-27.864000px;}
.ws33{word-spacing:-27.860400px;}
.ws4d{word-spacing:-27.360000px;}
.ws88{word-spacing:-27.144000px;}
.ws8e{word-spacing:-27.108000px;}
.ws29{word-spacing:-26.634600px;}
.ws74{word-spacing:-26.624400px;}
.ws50{word-spacing:-26.415000px;}
.ws83{word-spacing:-25.914600px;}
.ws53{word-spacing:-24.486000px;}
.ws5f{word-spacing:-24.231600px;}
.ws4b{word-spacing:-22.593600px;}
.ws7f{word-spacing:-21.378600px;}
.ws4a{word-spacing:-21.358800px;}
.ws37{word-spacing:-19.944000px;}
.ws5{word-spacing:-19.935300px;}
.ws67{word-spacing:-19.720800px;}
.ws7d{word-spacing:-19.713600px;}
.ws5a{word-spacing:-19.213800px;}
.ws27{word-spacing:-17.752800px;}
.ws5b{word-spacing:-17.708100px;}
.ws6b{word-spacing:-17.274600px;}
.ws54{word-spacing:-16.554000px;}
.ws32{word-spacing:-16.326000px;}
.ws4c{word-spacing:-16.320600px;}
.ws60{word-spacing:-15.592800px;}
.ws63{word-spacing:-15.400800px;}
.ws45{word-spacing:-14.684400px;}
.ws84{word-spacing:-14.385600px;}
.ws57{word-spacing:-13.686000px;}
.ws2d{word-spacing:-12.734100px;}
.ws70{word-spacing:-12.222000px;}
.wsc{word-spacing:-11.520000px;}
.ws2e{word-spacing:-11.295900px;}
.ws55{word-spacing:-11.278800px;}
.ws36{word-spacing:-9.837600px;}
.ws8b{word-spacing:-7.691400px;}
.ws1b{word-spacing:-6.966000px;}
.ws1a{word-spacing:-6.480000px;}
.wsa{word-spacing:-5.040000px;}
.ws78{word-spacing:-4.095000px;}
.ws3b{word-spacing:-3.587400px;}
.ws65{word-spacing:-3.381000px;}
.ws9{word-spacing:-3.160800px;}
.ws8{word-spacing:-2.861100px;}
.ws2b{word-spacing:0.000000px;}
.ws23{word-spacing:0.228600px;}
.ws38{word-spacing:0.950400px;}
.ws81{word-spacing:3.104400px;}
.ws43{word-spacing:3.319200px;}
.ws30{word-spacing:8.656800px;}
.ws4f{word-spacing:10.303200px;}
.ws8f{word-spacing:20.169000px;}
.ws2f{word-spacing:49.186200px;}
.ws21{word-spacing:68.616000px;}
.ws1{word-spacing:1037.484900px;}
._4{margin-left:-1.323600px;}
._0{width:1.076400px;}
._1{width:18.968400px;}
._6{width:20.088000px;}
._5{width:21.954000px;}
._8{width:23.544000px;}
._1f{width:24.559200px;}
._1e{width:26.382000px;}
._1d{width:27.410400px;}
._7{width:28.806000px;}
._d{width:30.882600px;}
._1a{width:32.505600px;}
._18{width:34.765200px;}
._17{width:35.815200px;}
._13{width:37.296000px;}
._c{width:39.640800px;}
._11{width:40.674000px;}
._e{width:42.120900px;}
._1c{width:43.416000px;}
._1b{width:45.745200px;}
._9{width:46.785600px;}
._12{width:47.953200px;}
._a{width:50.256000px;}
._3{width:52.056000px;}
._2{width:53.946300px;}
._b{width:57.541200px;}
._14{width:60.264000px;}
._15{width:61.336800px;}
._10{width:66.024000px;}
._19{width:67.320000px;}
._20{width:77.616000px;}
._16{width:80.928000px;}
._f{width:106.338000px;}
.fc5{color:rgb(26,19,42);}
.fc2{color:rgb(0,0,255);}
.fc4{color:rgb(68,68,68);}
.fc3{color:rgb(31,31,31);}
.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:100.875000px;}
.y4f{bottom:121.575000px;}
.y83{bottom:138.675000px;}
.y6b{bottom:141.736500px;}
.y4e{bottom:142.275000px;}
.y82{bottom:159.375000px;}
.y27{bottom:162.075000px;}
.y4d{bottom:162.975000px;}
.y26{bottom:182.775000px;}
.y6a{bottom:183.496500px;}
.y4c{bottom:183.675000px;}
.y81{bottom:201.136500px;}
.y25{bottom:203.475000px;}
.y24{bottom:224.175000px;}
.y69{bottom:225.075000px;}
.y4b{bottom:225.436500px;}
.y80{bottom:242.896500px;}
.y23{bottom:244.875000px;}
.y68{bottom:245.775000px;}
.y4a{bottom:246.136500px;}
.y7f{bottom:263.596500px;}
.y22{bottom:265.575000px;}
.y49{bottom:266.836500px;}
.y21{bottom:286.275000px;}
.y48{bottom:287.536500px;}
.y7e{bottom:305.175000px;}
.y20{bottom:306.975000px;}
.y47{bottom:308.236500px;}
.y1f{bottom:327.675000px;}
.y46{bottom:328.936500px;}
.y67{bottom:329.295000px;}
.y7d{bottom:346.936500px;}
.y1e{bottom:369.436500px;}
.y45{bottom:370.696500px;}
.y66{bottom:370.875000px;}
.y7c{bottom:388.696500px;}
.y44{bottom:391.396500px;}
.y1d{bottom:411.015000px;}
.y65{bottom:412.636500px;}
.y7b{bottom:430.275000px;}
.y1c{bottom:431.715000px;}
.y43{bottom:432.975000px;}
.y1b{bottom:452.415000px;}
.y42{bottom:453.675000px;}
.y64{bottom:454.396500px;}
.y7a{bottom:472.036500px;}
.y79{bottom:492.736500px;}
.y1a{bottom:494.175000px;}
.y41{bottom:495.436500px;}
.y63{bottom:495.975000px;}
.y19{bottom:514.875000px;}
.y40{bottom:516.136500px;}
.y62{bottom:516.675000px;}
.y78{bottom:534.496500px;}
.y18{bottom:535.575000px;}
.y3f{bottom:536.836500px;}
.y61{bottom:537.375000px;}
.y17{bottom:556.275000px;}
.y77{bottom:576.075000px;}
.y3e{bottom:578.596500px;}
.y60{bottom:579.136500px;}
.y16{bottom:598.036500px;}
.y3d{bottom:599.295000px;}
.y76{bottom:617.836500px;}
.y15{bottom:618.736500px;}
.y3c{bottom:619.996500px;}
.y5f{bottom:620.896500px;}
.y5e{bottom:641.596500px;}
.y75{bottom:659.596500px;}
.y14{bottom:660.315000px;}
.y94{bottom:661.036500px;}
.y3b{bottom:661.575000px;}
.y5d{bottom:662.295000px;}
.y13{bottom:681.015000px;}
.y93{bottom:681.736500px;}
.y3a{bottom:682.275000px;}
.y5c{bottom:682.996500px;}
.y74{bottom:701.175000px;}
.y12{bottom:701.715000px;}
.y92{bottom:702.436500px;}
.y5b{bottom:703.695000px;}
.y11{bottom:722.415000px;}
.y91{bottom:723.136500px;}
.y39{bottom:724.036500px;}
.y5a{bottom:724.396500px;}
.y73{bottom:742.936500px;}
.y90{bottom:743.836500px;}
.y38{bottom:744.736500px;}
.y59{bottom:745.096500px;}
.y10{bottom:764.175000px;}
.y8f{bottom:764.536500px;}
.y58{bottom:765.795000px;}
.y72{bottom:784.695000px;}
.yf{bottom:784.875000px;}
.y8e{bottom:785.236500px;}
.y37{bottom:786.496500px;}
.y36{bottom:807.195000px;}
.y71{bottom:826.275000px;}
.ye{bottom:826.636500px;}
.y8d{bottom:826.996500px;}
.y57{bottom:827.895000px;}
.y70{bottom:846.975000px;}
.yd{bottom:847.336500px;}
.y56{bottom:848.596500px;}
.y35{bottom:848.775000px;}
.yc{bottom:868.036500px;}
.y8c{bottom:868.575000px;}
.y55{bottom:869.295000px;}
.y34{bottom:869.475000px;}
.yb{bottom:888.736500px;}
.y33{bottom:890.175000px;}
.ya{bottom:909.436500px;}
.y8b{bottom:910.336500px;}
.y32{bottom:910.875000px;}
.y6f{bottom:930.495000px;}
.y31{bottom:931.575000px;}
.y9{bottom:951.015000px;}
.y8a{bottom:952.095000px;}
.y54{bottom:952.275000px;}
.y8{bottom:971.715000px;}
.y6e{bottom:972.075000px;}
.y89{bottom:972.795000px;}
.y53{bottom:972.975000px;}
.y30{bottom:973.336500px;}
.y88{bottom:993.495000px;}
.y52{bottom:993.675000px;}
.y2f{bottom:994.036500px;}
.y6d{bottom:1013.836500px;}
.y87{bottom:1014.195000px;}
.y51{bottom:1014.375000px;}
.y2e{bottom:1014.736500px;}
.y6c{bottom:1034.536500px;}
.y2d{bottom:1035.436500px;}
.y86{bottom:1055.775000px;}
.y2c{bottom:1056.136500px;}
.y7{bottom:1076.295000px;}
.y85{bottom:1076.475000px;}
.y2b{bottom:1076.836500px;}
.y84{bottom:1097.175000px;}
.y2a{bottom:1097.536500px;}
.y6{bottom:1117.875000px;}
.y29{bottom:1118.236500px;}
.y28{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;}
.xb{left:129.600000px;}
.x9{left:132.300000px;}
.x8{left:140.400000px;}
.x2{left:160.560000px;}
.xa{left:170.100000px;}
.x6{left:282.060000px;}
.x7{left:321.838500px;}
.x5{left:426.060000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:19.200000pt;}
.wsd{word-spacing:-49.728000pt;}
.ws6{word-spacing:-34.492533pt;}
.ws6e{word-spacing:-34.363733pt;}
.ws77{word-spacing:-34.362133pt;}
.ws6d{word-spacing:-34.358400pt;}
.ws5e{word-spacing:-34.356800pt;}
.ws11{word-spacing:-34.355200pt;}
.ws16{word-spacing:-34.351467pt;}
.ws46{word-spacing:-34.351200pt;}
.ws7c{word-spacing:-34.350400pt;}
.ws73{word-spacing:-34.306133pt;}
.ws89{word-spacing:-34.293600pt;}
.ws35{word-spacing:-34.169600pt;}
.ws79{word-spacing:-34.166400pt;}
.ws75{word-spacing:-34.164800pt;}
.ws85{word-spacing:-34.163200pt;}
.ws8c{word-spacing:-34.140800pt;}
.ws1e{word-spacing:-34.042667pt;}
.ws8a{word-spacing:-34.040800pt;}
.ws44{word-spacing:-33.925333pt;}
.ws4{word-spacing:-33.920000pt;}
.ws80{word-spacing:-33.916800pt;}
.ws6f{word-spacing:-33.915733pt;}
.ws6a{word-spacing:-33.915200pt;}
.ws3c{word-spacing:-33.914667pt;}
.ws48{word-spacing:-33.911467pt;}
.ws17{word-spacing:-33.911200pt;}
.ws86{word-spacing:-33.908000pt;}
.ws2{word-spacing:-33.850400pt;}
.ws7{word-spacing:-33.849600pt;}
.ws2a{word-spacing:-33.730133pt;}
.ws0{word-spacing:-33.728000pt;}
.ws3f{word-spacing:-33.726933pt;}
.ws7e{word-spacing:-33.726133pt;}
.ws7a{word-spacing:-33.722133pt;}
.ws52{word-spacing:-33.721600pt;}
.ws49{word-spacing:-33.720000pt;}
.ws72{word-spacing:-33.719200pt;}
.ws76{word-spacing:-33.718400pt;}
.ws18{word-spacing:-33.713600pt;}
.ws7b{word-spacing:-33.713067pt;}
.ws19{word-spacing:-33.705600pt;}
.ws42{word-spacing:-33.529600pt;}
.ws3a{word-spacing:-33.509333pt;}
.ws4e{word-spacing:-33.280000pt;}
.ws22{word-spacing:-33.086933pt;}
.ws26{word-spacing:-33.078400pt;}
.ws3{word-spacing:-33.075200pt;}
.ws24{word-spacing:-33.071200pt;}
.ws71{word-spacing:-33.070400pt;}
.ws47{word-spacing:-33.065600pt;}
.ws13{word-spacing:-33.022933pt;}
.ws12{word-spacing:-32.640000pt;}
.ws58{word-spacing:-32.626400pt;}
.ws6c{word-spacing:-32.442667pt;}
.ws56{word-spacing:-32.000000pt;}
.ws1d{word-spacing:-31.813333pt;}
.ws61{word-spacing:-31.787200pt;}
.ws3e{word-spacing:-31.606400pt;}
.ws31{word-spacing:-31.600000pt;}
.ws82{word-spacing:-31.168000pt;}
.wsb{word-spacing:-31.163733pt;}
.ws3d{word-spacing:-31.153067pt;}
.ws2c{word-spacing:-30.714667pt;}
.ws62{word-spacing:-30.523733pt;}
.ws28{word-spacing:-30.523200pt;}
.ws10{word-spacing:-30.522133pt;}
.wsf{word-spacing:-30.521600pt;}
.ws5c{word-spacing:-30.513600pt;}
.ws5d{word-spacing:-30.328000pt;}
.ws1c{word-spacing:-30.190667pt;}
.ws15{word-spacing:-30.076800pt;}
.wse{word-spacing:-30.073600pt;}
.ws41{word-spacing:-30.065600pt;}
.ws68{word-spacing:-29.885333pt;}
.ws25{word-spacing:-29.878400pt;}
.ws34{word-spacing:-29.862400pt;}
.ws39{word-spacing:-29.440000pt;}
.ws51{word-spacing:-29.430400pt;}
.ws69{word-spacing:-29.248000pt;}
.ws66{word-spacing:-29.235200pt;}
.ws87{word-spacing:-27.318400pt;}
.ws64{word-spacing:-27.309600pt;}
.ws59{word-spacing:-27.124800pt;}
.ws14{word-spacing:-25.605333pt;}
.ws8d{word-spacing:-25.387200pt;}
.ws1f{word-spacing:-24.965333pt;}
.ws40{word-spacing:-24.960000pt;}
.ws20{word-spacing:-24.768000pt;}
.ws33{word-spacing:-24.764800pt;}
.ws4d{word-spacing:-24.320000pt;}
.ws88{word-spacing:-24.128000pt;}
.ws8e{word-spacing:-24.096000pt;}
.ws29{word-spacing:-23.675200pt;}
.ws74{word-spacing:-23.666133pt;}
.ws50{word-spacing:-23.480000pt;}
.ws83{word-spacing:-23.035200pt;}
.ws53{word-spacing:-21.765333pt;}
.ws5f{word-spacing:-21.539200pt;}
.ws4b{word-spacing:-20.083200pt;}
.ws7f{word-spacing:-19.003200pt;}
.ws4a{word-spacing:-18.985600pt;}
.ws37{word-spacing:-17.728000pt;}
.ws5{word-spacing:-17.720267pt;}
.ws67{word-spacing:-17.529600pt;}
.ws7d{word-spacing:-17.523200pt;}
.ws5a{word-spacing:-17.078933pt;}
.ws27{word-spacing:-15.780267pt;}
.ws5b{word-spacing:-15.740533pt;}
.ws6b{word-spacing:-15.355200pt;}
.ws54{word-spacing:-14.714667pt;}
.ws32{word-spacing:-14.512000pt;}
.ws4c{word-spacing:-14.507200pt;}
.ws60{word-spacing:-13.860267pt;}
.ws63{word-spacing:-13.689600pt;}
.ws45{word-spacing:-13.052800pt;}
.ws84{word-spacing:-12.787200pt;}
.ws57{word-spacing:-12.165333pt;}
.ws2d{word-spacing:-11.319200pt;}
.ws70{word-spacing:-10.864000pt;}
.wsc{word-spacing:-10.240000pt;}
.ws2e{word-spacing:-10.040800pt;}
.ws55{word-spacing:-10.025600pt;}
.ws36{word-spacing:-8.744533pt;}
.ws8b{word-spacing:-6.836800pt;}
.ws1b{word-spacing:-6.192000pt;}
.ws1a{word-spacing:-5.760000pt;}
.wsa{word-spacing:-4.480000pt;}
.ws78{word-spacing:-3.640000pt;}
.ws3b{word-spacing:-3.188800pt;}
.ws65{word-spacing:-3.005333pt;}
.ws9{word-spacing:-2.809600pt;}
.ws8{word-spacing:-2.543200pt;}
.ws2b{word-spacing:0.000000pt;}
.ws23{word-spacing:0.203200pt;}
.ws38{word-spacing:0.844800pt;}
.ws81{word-spacing:2.759467pt;}
.ws43{word-spacing:2.950400pt;}
.ws30{word-spacing:7.694933pt;}
.ws4f{word-spacing:9.158400pt;}
.ws8f{word-spacing:17.928000pt;}
.ws2f{word-spacing:43.721067pt;}
.ws21{word-spacing:60.992000pt;}
.ws1{word-spacing:922.208800pt;}
._4{margin-left:-1.176533pt;}
._0{width:0.956800pt;}
._1{width:16.860800pt;}
._6{width:17.856000pt;}
._5{width:19.514667pt;}
._8{width:20.928000pt;}
._1f{width:21.830400pt;}
._1e{width:23.450667pt;}
._1d{width:24.364800pt;}
._7{width:25.605333pt;}
._d{width:27.451200pt;}
._1a{width:28.893867pt;}
._18{width:30.902400pt;}
._17{width:31.835733pt;}
._13{width:33.152000pt;}
._c{width:35.236267pt;}
._11{width:36.154667pt;}
._e{width:37.440800pt;}
._1c{width:38.592000pt;}
._1b{width:40.662400pt;}
._9{width:41.587200pt;}
._12{width:42.625067pt;}
._a{width:44.672000pt;}
._3{width:46.272000pt;}
._2{width:47.952267pt;}
._b{width:51.147733pt;}
._14{width:53.568000pt;}
._15{width:54.521600pt;}
._10{width:58.688000pt;}
._19{width:59.840000pt;}
._20{width:68.992000pt;}
._16{width:71.936000pt;}
._f{width:94.522667pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:10.880000pt;}
.y3{bottom:56.866667pt;}
.y50{bottom:89.666667pt;}
.y4f{bottom:108.066667pt;}
.y83{bottom:123.266667pt;}
.y6b{bottom:125.988000pt;}
.y4e{bottom:126.466667pt;}
.y82{bottom:141.666667pt;}
.y27{bottom:144.066667pt;}
.y4d{bottom:144.866667pt;}
.y26{bottom:162.466667pt;}
.y6a{bottom:163.108000pt;}
.y4c{bottom:163.266667pt;}
.y81{bottom:178.788000pt;}
.y25{bottom:180.866667pt;}
.y24{bottom:199.266667pt;}
.y69{bottom:200.066667pt;}
.y4b{bottom:200.388000pt;}
.y80{bottom:215.908000pt;}
.y23{bottom:217.666667pt;}
.y68{bottom:218.466667pt;}
.y4a{bottom:218.788000pt;}
.y7f{bottom:234.308000pt;}
.y22{bottom:236.066667pt;}
.y49{bottom:237.188000pt;}
.y21{bottom:254.466667pt;}
.y48{bottom:255.588000pt;}
.y7e{bottom:271.266667pt;}
.y20{bottom:272.866667pt;}
.y47{bottom:273.988000pt;}
.y1f{bottom:291.266667pt;}
.y46{bottom:292.388000pt;}
.y67{bottom:292.706667pt;}
.y7d{bottom:308.388000pt;}
.y1e{bottom:328.388000pt;}
.y45{bottom:329.508000pt;}
.y66{bottom:329.666667pt;}
.y7c{bottom:345.508000pt;}
.y44{bottom:347.908000pt;}
.y1d{bottom:365.346667pt;}
.y65{bottom:366.788000pt;}
.y7b{bottom:382.466667pt;}
.y1c{bottom:383.746667pt;}
.y43{bottom:384.866667pt;}
.y1b{bottom:402.146667pt;}
.y42{bottom:403.266667pt;}
.y64{bottom:403.908000pt;}
.y7a{bottom:419.588000pt;}
.y79{bottom:437.988000pt;}
.y1a{bottom:439.266667pt;}
.y41{bottom:440.388000pt;}
.y63{bottom:440.866667pt;}
.y19{bottom:457.666667pt;}
.y40{bottom:458.788000pt;}
.y62{bottom:459.266667pt;}
.y78{bottom:475.108000pt;}
.y18{bottom:476.066667pt;}
.y3f{bottom:477.188000pt;}
.y61{bottom:477.666667pt;}
.y17{bottom:494.466667pt;}
.y77{bottom:512.066667pt;}
.y3e{bottom:514.308000pt;}
.y60{bottom:514.788000pt;}
.y16{bottom:531.588000pt;}
.y3d{bottom:532.706667pt;}
.y76{bottom:549.188000pt;}
.y15{bottom:549.988000pt;}
.y3c{bottom:551.108000pt;}
.y5f{bottom:551.908000pt;}
.y5e{bottom:570.308000pt;}
.y75{bottom:586.308000pt;}
.y14{bottom:586.946667pt;}
.y94{bottom:587.588000pt;}
.y3b{bottom:588.066667pt;}
.y5d{bottom:588.706667pt;}
.y13{bottom:605.346667pt;}
.y93{bottom:605.988000pt;}
.y3a{bottom:606.466667pt;}
.y5c{bottom:607.108000pt;}
.y74{bottom:623.266667pt;}
.y12{bottom:623.746667pt;}
.y92{bottom:624.388000pt;}
.y5b{bottom:625.506667pt;}
.y11{bottom:642.146667pt;}
.y91{bottom:642.788000pt;}
.y39{bottom:643.588000pt;}
.y5a{bottom:643.908000pt;}
.y73{bottom:660.388000pt;}
.y90{bottom:661.188000pt;}
.y38{bottom:661.988000pt;}
.y59{bottom:662.308000pt;}
.y10{bottom:679.266667pt;}
.y8f{bottom:679.588000pt;}
.y58{bottom:680.706667pt;}
.y72{bottom:697.506667pt;}
.yf{bottom:697.666667pt;}
.y8e{bottom:697.988000pt;}
.y37{bottom:699.108000pt;}
.y36{bottom:717.506667pt;}
.y71{bottom:734.466667pt;}
.ye{bottom:734.788000pt;}
.y8d{bottom:735.108000pt;}
.y57{bottom:735.906667pt;}
.y70{bottom:752.866667pt;}
.yd{bottom:753.188000pt;}
.y56{bottom:754.308000pt;}
.y35{bottom:754.466667pt;}
.yc{bottom:771.588000pt;}
.y8c{bottom:772.066667pt;}
.y55{bottom:772.706667pt;}
.y34{bottom:772.866667pt;}
.yb{bottom:789.988000pt;}
.y33{bottom:791.266667pt;}
.ya{bottom:808.388000pt;}
.y8b{bottom:809.188000pt;}
.y32{bottom:809.666667pt;}
.y6f{bottom:827.106667pt;}
.y31{bottom:828.066667pt;}
.y9{bottom:845.346667pt;}
.y8a{bottom:846.306667pt;}
.y54{bottom:846.466667pt;}
.y8{bottom:863.746667pt;}
.y6e{bottom:864.066667pt;}
.y89{bottom:864.706667pt;}
.y53{bottom:864.866667pt;}
.y30{bottom:865.188000pt;}
.y88{bottom:883.106667pt;}
.y52{bottom:883.266667pt;}
.y2f{bottom:883.588000pt;}
.y6d{bottom:901.188000pt;}
.y87{bottom:901.506667pt;}
.y51{bottom:901.666667pt;}
.y2e{bottom:901.988000pt;}
.y6c{bottom:919.588000pt;}
.y2d{bottom:920.388000pt;}
.y86{bottom:938.466667pt;}
.y2c{bottom:938.788000pt;}
.y7{bottom:956.706667pt;}
.y85{bottom:956.866667pt;}
.y2b{bottom:957.188000pt;}
.y84{bottom:975.266667pt;}
.y2a{bottom:975.588000pt;}
.y6{bottom:993.666667pt;}
.y29{bottom:993.988000pt;}
.y28{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;}
.xb{left:115.200000pt;}
.x9{left:117.600000pt;}
.x8{left:124.800000pt;}
.x2{left:142.720000pt;}
.xa{left:151.200000pt;}
.x6{left:250.720000pt;}
.x7{left:286.078667pt;}
.x5{left:378.720000pt;}
}




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