
    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_146d1d6e8c3394a6e9019e09.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_696a7a4a0462adb3f37ea59a.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_5c6b2c7000123d19ca628d3d.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_c8d07106f3ea265dddd0a27a.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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_2bc0bdb97d4714d4b4038a9a.woff')format("woff");}.ff5{font-family:ff5;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;}
.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;}
}
.wsc{word-spacing:-55.944000px;}
.ws19{word-spacing:-40.536000px;}
.ws5a{word-spacing:-38.876100px;}
.ws56{word-spacing:-38.869200px;}
.ws6{word-spacing:-38.657700px;}
.ws5{word-spacing:-38.647800px;}
.ws3{word-spacing:-38.374200px;}
.ws28{word-spacing:-38.149200px;}
.ws9{word-spacing:-38.141400px;}
.wsb{word-spacing:-38.080800px;}
.ws6f{word-spacing:-38.075100px;}
.ws0{word-spacing:-37.944000px;}
.ws4{word-spacing:-37.938600px;}
.wsa{word-spacing:-37.937700px;}
.ws50{word-spacing:-37.932300px;}
.ws2{word-spacing:-37.931400px;}
.wsd{word-spacing:-36.710700px;}
.ws83{word-spacing:-36.504000px;}
.ws1e{word-spacing:-36.217500px;}
.ws25{word-spacing:-35.271900px;}
.ws30{word-spacing:-34.330500px;}
.ws8{word-spacing:-33.547800px;}
.ws1a{word-spacing:-32.384700px;}
.ws38{word-spacing:-30.222000px;}
.ws21{word-spacing:-28.278000px;}
.ws4f{word-spacing:-23.463000px;}
.ws1c{word-spacing:-23.252400px;}
.ws1d{word-spacing:-23.245200px;}
.ws2b{word-spacing:-23.040600px;}
.ws70{word-spacing:-23.032800px;}
.ws62{word-spacing:-23.031000px;}
.ws11{word-spacing:-23.024100px;}
.ws13{word-spacing:-22.754400px;}
.ws55{word-spacing:-22.752000px;}
.ws7b{word-spacing:-22.746600px;}
.ws47{word-spacing:-22.745400px;}
.ws20{word-spacing:-22.744800px;}
.ws71{word-spacing:-22.741500px;}
.ws24{word-spacing:-22.536000px;}
.ws81{word-spacing:-22.534800px;}
.ws5e{word-spacing:-22.532400px;}
.ws7d{word-spacing:-22.531200px;}
.ws36{word-spacing:-22.527000px;}
.ws27{word-spacing:-22.525200px;}
.ws76{word-spacing:-22.522200px;}
.ws74{word-spacing:-22.314600px;}
.ws60{word-spacing:-22.309800px;}
.ws29{word-spacing:-22.032000px;}
.ws77{word-spacing:-21.816000px;}
.ws7e{word-spacing:-21.804000px;}
.ws4d{word-spacing:-21.604200px;}
.wse{word-spacing:-21.591000px;}
.ws3d{word-spacing:-21.303000px;}
.ws73{word-spacing:-21.096000px;}
.ws5d{word-spacing:-21.092400px;}
.ws31{word-spacing:-20.588400px;}
.ws41{word-spacing:-20.376000px;}
.ws82{word-spacing:-20.374200px;}
.ws58{word-spacing:-20.361600px;}
.ws1f{word-spacing:-20.358000px;}
.ws26{word-spacing:-18.702900px;}
.ws7{word-spacing:-18.472500px;}
.ws2f{word-spacing:-18.413400px;}
.ws16{word-spacing:-18.222000px;}
.ws32{word-spacing:-18.216000px;}
.ws2a{word-spacing:-18.214200px;}
.ws7c{word-spacing:-17.492400px;}
.ws1b{word-spacing:-16.998000px;}
.ws3e{word-spacing:-16.261200px;}
.ws72{word-spacing:-14.835300px;}
.wsf{word-spacing:-14.832000px;}
.ws39{word-spacing:-14.622000px;}
.ws65{word-spacing:-14.608800px;}
.ws6b{word-spacing:-14.400000px;}
.ws79{word-spacing:-14.382900px;}
.ws37{word-spacing:-14.102100px;}
.ws22{word-spacing:-13.520700px;}
.ws7f{word-spacing:-13.164300px;}
.ws35{word-spacing:-12.456000px;}
.ws45{word-spacing:-12.231000px;}
.ws51{word-spacing:-11.942100px;}
.ws6c{word-spacing:-11.734800px;}
.ws43{word-spacing:-11.214000px;}
.ws75{word-spacing:-11.016000px;}
.ws7a{word-spacing:-10.518000px;}
.ws80{word-spacing:-9.792000px;}
.ws40{word-spacing:-9.558900px;}
.ws48{word-spacing:-9.063000px;}
.ws17{word-spacing:-8.846100px;}
.ws69{word-spacing:-8.631000px;}
.ws23{word-spacing:-8.347200px;}
.ws10{word-spacing:-8.343000px;}
.ws12{word-spacing:-7.632000px;}
.ws18{word-spacing:-7.623900px;}
.ws4c{word-spacing:-7.403100px;}
.ws53{word-spacing:-7.401600px;}
.ws3f{word-spacing:-7.399800px;}
.ws3c{word-spacing:-6.192000px;}
.ws6d{word-spacing:-5.963400px;}
.ws6a{word-spacing:-5.751000px;}
.ws44{word-spacing:-5.466600px;}
.ws34{word-spacing:-4.536000px;}
.ws3a{word-spacing:-4.525200px;}
.ws33{word-spacing:-3.816000px;}
.ws6e{word-spacing:-3.094200px;}
.ws67{word-spacing:-2.871000px;}
.ws64{word-spacing:-2.374200px;}
.ws14{word-spacing:-1.440000px;}
.ws5f{word-spacing:-0.925800px;}
.ws5c{word-spacing:-0.707400px;}
.ws4a{word-spacing:1.229400px;}
.ws5b{word-spacing:2.172600px;}
.ws2c{word-spacing:3.384000px;}
.ws59{word-spacing:3.385800px;}
.ws61{word-spacing:4.115400px;}
.ws52{word-spacing:4.330800px;}
.ws54{word-spacing:5.338800px;}
.ws3b{word-spacing:5.556600px;}
.ws46{word-spacing:6.061200px;}
.ws42{word-spacing:6.993000px;}
.ws2e{word-spacing:8.429400px;}
.ws2d{word-spacing:10.368000px;}
.ws4e{word-spacing:11.322000px;}
.ws15{word-spacing:13.248300px;}
.ws49{word-spacing:13.477500px;}
.ws68{word-spacing:14.406000px;}
.ws63{word-spacing:15.629700px;}
.ws57{word-spacing:18.536400px;}
.ws4b{word-spacing:19.945800px;}
.ws66{word-spacing:23.049000px;}
.ws78{word-spacing:24.062400px;}
.ws1{word-spacing:455.092800px;}
._1a{margin-left:-2.428200px;}
._2{margin-left:-1.273200px;}
._3{width:1.063200px;}
._4{width:18.775800px;}
._5{width:20.429700px;}
._f{width:21.630300px;}
._9{width:23.518800px;}
._a{width:24.974700px;}
._13{width:26.281800px;}
._6{width:27.636000px;}
._c{width:29.271000px;}
._15{width:30.846300px;}
._14{width:32.232900px;}
._7{width:33.613800px;}
._18{width:34.617600px;}
._1{width:36.000000px;}
._11{width:37.080000px;}
._10{width:38.209200px;}
._1e{width:39.289800px;}
._1b{width:41.315400px;}
._16{width:42.990000px;}
._d{width:44.922000px;}
._12{width:47.151600px;}
._e{width:50.334000px;}
._1f{width:51.840000px;}
._8{width:55.295700px;}
._1c{width:57.738300px;}
._19{width:60.456000px;}
._17{width:61.969200px;}
._1d{width:65.430000px;}
._b{width:72.421800px;}
._0{width:612.144000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(112,48,160);}
.fc3{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:66.300000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y7{bottom:4.471500px;}
.y6{bottom:72.825000px;}
.y5{bottom:77.655000px;}
.y51{bottom:101.236500px;}
.y29{bottom:120.136500px;}
.y50{bottom:121.936500px;}
.y28{bottom:140.836500px;}
.y4f{bottom:142.636500px;}
.y27{bottom:161.536500px;}
.y70{bottom:161.896500px;}
.y4e{bottom:163.336500px;}
.y26{bottom:182.236500px;}
.y25{bottom:202.936500px;}
.y6f{bottom:203.475000px;}
.y4d{bottom:205.096500px;}
.y24{bottom:244.696500px;}
.y6e{bottom:245.236500px;}
.y4c{bottom:246.675000px;}
.y23{bottom:265.396500px;}
.y22{bottom:286.096500px;}
.y6d{bottom:286.996500px;}
.y4b{bottom:288.436500px;}
.y4a{bottom:309.136500px;}
.y21{bottom:327.675000px;}
.y6c{bottom:328.575000px;}
.y49{bottom:329.836500px;}
.y48{bottom:350.536500px;}
.y20{bottom:369.436500px;}
.y6b{bottom:370.336500px;}
.y47{bottom:371.236500px;}
.y1f{bottom:390.136500px;}
.y6a{bottom:412.096500px;}
.y46{bottom:412.996500px;}
.y1e{bottom:431.896500px;}
.y1d{bottom:452.596500px;}
.y69{bottom:453.675000px;}
.y45{bottom:454.575000px;}
.y1c{bottom:473.295000px;}
.y68{bottom:474.375000px;}
.y44{bottom:475.275000px;}
.y67{bottom:495.075000px;}
.y43{bottom:495.975000px;}
.y1b{bottom:514.875000px;}
.y66{bottom:515.775000px;}
.y42{bottom:516.675000px;}
.y1a{bottom:535.575000px;}
.y7b{bottom:536.296500px;}
.y65{bottom:536.475000px;}
.y41{bottom:537.375000px;}
.y7a{bottom:556.996500px;}
.y64{bottom:557.175000px;}
.y40{bottom:558.075000px;}
.y19{bottom:577.336500px;}
.y63{bottom:577.875000px;}
.y3f{bottom:578.775000px;}
.y18{bottom:598.036500px;}
.y62{bottom:598.575000px;}
.y3e{bottom:599.475000px;}
.y17{bottom:618.736500px;}
.y79{bottom:619.275000px;}
.y78{bottom:639.975000px;}
.y61{bottom:640.336500px;}
.y3d{bottom:641.236500px;}
.y16{bottom:660.496500px;}
.y77{bottom:660.675000px;}
.y60{bottom:661.036500px;}
.y15{bottom:681.195000px;}
.y5f{bottom:681.736500px;}
.y3c{bottom:682.996500px;}
.y14{bottom:701.896500px;}
.y5e{bottom:702.436500px;}
.y3b{bottom:703.695000px;}
.y13{bottom:722.596500px;}
.y5d{bottom:723.136500px;}
.y3a{bottom:724.396500px;}
.y12{bottom:743.295000px;}
.y5c{bottom:743.836500px;}
.y39{bottom:745.096500px;}
.y38{bottom:765.795000px;}
.y11{bottom:784.875000px;}
.y5b{bottom:785.596500px;}
.y37{bottom:786.496500px;}
.y10{bottom:805.575000px;}
.y76{bottom:806.295000px;}
.y36{bottom:807.195000px;}
.yf{bottom:826.275000px;}
.y75{bottom:826.996500px;}
.y5a{bottom:827.175000px;}
.y35{bottom:827.895000px;}
.ye{bottom:846.975000px;}
.y59{bottom:847.875000px;}
.y34{bottom:848.596500px;}
.y74{bottom:868.575000px;}
.y33{bottom:869.295000px;}
.yd{bottom:888.736500px;}
.y73{bottom:889.275000px;}
.y58{bottom:889.636500px;}
.y32{bottom:889.995000px;}
.y72{bottom:909.975000px;}
.y57{bottom:910.336500px;}
.y31{bottom:910.695000px;}
.yc{bottom:930.495000px;}
.y56{bottom:931.036500px;}
.y30{bottom:931.395000px;}
.y55{bottom:951.736500px;}
.y2f{bottom:952.095000px;}
.yb{bottom:972.075000px;}
.y54{bottom:972.436500px;}
.y2e{bottom:972.795000px;}
.y53{bottom:993.136500px;}
.ya{bottom:1013.836500px;}
.y71{bottom:1014.195000px;}
.y2d{bottom:1014.375000px;}
.y52{bottom:1034.895000px;}
.y2c{bottom:1035.075000px;}
.y9{bottom:1055.595000px;}
.y2b{bottom:1055.775000px;}
.y2a{bottom:1076.475000px;}
.y8{bottom:1097.175000px;}
.y4{bottom:1141.455000px;}
.y3{bottom:1162.155000px;}
.y2{bottom:1182.855000px;}
.y1{bottom:1203.375000px;}
.h4{height:20.175000px;}
.h3{height:45.095654px;}
.h2{height:48.796875px;}
.h5{height:49.992188px;}
.h6{height:50.027344px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:16.725000px;}
.w4{width:25.050000px;}
.w3{width:513.150000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:13.500000px;}
.x1{left:127.620000px;}
.x9{left:136.620000px;}
.xd{left:155.700000px;}
.x4{left:286.560000px;}
.xa{left:379.800000px;}
.xc{left:465.825000px;}
.x3{left:470.025000px;}
.x7{left:522.180000px;}
.x6{left:578.700000px;}
.x5{left:589.680000px;}
.x8{left:680.038500px;}
.x2{left:731.160000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.wsc{word-spacing:-49.728000pt;}
.ws19{word-spacing:-36.032000pt;}
.ws5a{word-spacing:-34.556533pt;}
.ws56{word-spacing:-34.550400pt;}
.ws6{word-spacing:-34.362400pt;}
.ws5{word-spacing:-34.353600pt;}
.ws3{word-spacing:-34.110400pt;}
.ws28{word-spacing:-33.910400pt;}
.ws9{word-spacing:-33.903467pt;}
.wsb{word-spacing:-33.849600pt;}
.ws6f{word-spacing:-33.844533pt;}
.ws0{word-spacing:-33.728000pt;}
.ws4{word-spacing:-33.723200pt;}
.wsa{word-spacing:-33.722400pt;}
.ws50{word-spacing:-33.717600pt;}
.ws2{word-spacing:-33.716800pt;}
.wsd{word-spacing:-32.631733pt;}
.ws83{word-spacing:-32.448000pt;}
.ws1e{word-spacing:-32.193333pt;}
.ws25{word-spacing:-31.352800pt;}
.ws30{word-spacing:-30.516000pt;}
.ws8{word-spacing:-29.820267pt;}
.ws1a{word-spacing:-28.786400pt;}
.ws38{word-spacing:-26.864000pt;}
.ws21{word-spacing:-25.136000pt;}
.ws4f{word-spacing:-20.856000pt;}
.ws1c{word-spacing:-20.668800pt;}
.ws1d{word-spacing:-20.662400pt;}
.ws2b{word-spacing:-20.480533pt;}
.ws70{word-spacing:-20.473600pt;}
.ws62{word-spacing:-20.472000pt;}
.ws11{word-spacing:-20.465867pt;}
.ws13{word-spacing:-20.226133pt;}
.ws55{word-spacing:-20.224000pt;}
.ws7b{word-spacing:-20.219200pt;}
.ws47{word-spacing:-20.218133pt;}
.ws20{word-spacing:-20.217600pt;}
.ws71{word-spacing:-20.214667pt;}
.ws24{word-spacing:-20.032000pt;}
.ws81{word-spacing:-20.030933pt;}
.ws5e{word-spacing:-20.028800pt;}
.ws7d{word-spacing:-20.027733pt;}
.ws36{word-spacing:-20.024000pt;}
.ws27{word-spacing:-20.022400pt;}
.ws76{word-spacing:-20.019733pt;}
.ws74{word-spacing:-19.835200pt;}
.ws60{word-spacing:-19.830933pt;}
.ws29{word-spacing:-19.584000pt;}
.ws77{word-spacing:-19.392000pt;}
.ws7e{word-spacing:-19.381333pt;}
.ws4d{word-spacing:-19.203733pt;}
.wse{word-spacing:-19.192000pt;}
.ws3d{word-spacing:-18.936000pt;}
.ws73{word-spacing:-18.752000pt;}
.ws5d{word-spacing:-18.748800pt;}
.ws31{word-spacing:-18.300800pt;}
.ws41{word-spacing:-18.112000pt;}
.ws82{word-spacing:-18.110400pt;}
.ws58{word-spacing:-18.099200pt;}
.ws1f{word-spacing:-18.096000pt;}
.ws26{word-spacing:-16.624800pt;}
.ws7{word-spacing:-16.420000pt;}
.ws2f{word-spacing:-16.367467pt;}
.ws16{word-spacing:-16.197333pt;}
.ws32{word-spacing:-16.192000pt;}
.ws2a{word-spacing:-16.190400pt;}
.ws7c{word-spacing:-15.548800pt;}
.ws1b{word-spacing:-15.109333pt;}
.ws3e{word-spacing:-14.454400pt;}
.ws72{word-spacing:-13.186933pt;}
.wsf{word-spacing:-13.184000pt;}
.ws39{word-spacing:-12.997333pt;}
.ws65{word-spacing:-12.985600pt;}
.ws6b{word-spacing:-12.800000pt;}
.ws79{word-spacing:-12.784800pt;}
.ws37{word-spacing:-12.535200pt;}
.ws22{word-spacing:-12.018400pt;}
.ws7f{word-spacing:-11.701600pt;}
.ws35{word-spacing:-11.072000pt;}
.ws45{word-spacing:-10.872000pt;}
.ws51{word-spacing:-10.615200pt;}
.ws6c{word-spacing:-10.430933pt;}
.ws43{word-spacing:-9.968000pt;}
.ws75{word-spacing:-9.792000pt;}
.ws7a{word-spacing:-9.349333pt;}
.ws80{word-spacing:-8.704000pt;}
.ws40{word-spacing:-8.496800pt;}
.ws48{word-spacing:-8.056000pt;}
.ws17{word-spacing:-7.863200pt;}
.ws69{word-spacing:-7.672000pt;}
.ws23{word-spacing:-7.419733pt;}
.ws10{word-spacing:-7.416000pt;}
.ws12{word-spacing:-6.784000pt;}
.ws18{word-spacing:-6.776800pt;}
.ws4c{word-spacing:-6.580533pt;}
.ws53{word-spacing:-6.579200pt;}
.ws3f{word-spacing:-6.577600pt;}
.ws3c{word-spacing:-5.504000pt;}
.ws6d{word-spacing:-5.300800pt;}
.ws6a{word-spacing:-5.112000pt;}
.ws44{word-spacing:-4.859200pt;}
.ws34{word-spacing:-4.032000pt;}
.ws3a{word-spacing:-4.022400pt;}
.ws33{word-spacing:-3.392000pt;}
.ws6e{word-spacing:-2.750400pt;}
.ws67{word-spacing:-2.552000pt;}
.ws64{word-spacing:-2.110400pt;}
.ws14{word-spacing:-1.280000pt;}
.ws5f{word-spacing:-0.822933pt;}
.ws5c{word-spacing:-0.628800pt;}
.ws4a{word-spacing:1.092800pt;}
.ws5b{word-spacing:1.931200pt;}
.ws2c{word-spacing:3.008000pt;}
.ws59{word-spacing:3.009600pt;}
.ws61{word-spacing:3.658133pt;}
.ws52{word-spacing:3.849600pt;}
.ws54{word-spacing:4.745600pt;}
.ws3b{word-spacing:4.939200pt;}
.ws46{word-spacing:5.387733pt;}
.ws42{word-spacing:6.216000pt;}
.ws2e{word-spacing:7.492800pt;}
.ws2d{word-spacing:9.216000pt;}
.ws4e{word-spacing:10.064000pt;}
.ws15{word-spacing:11.776267pt;}
.ws49{word-spacing:11.980000pt;}
.ws68{word-spacing:12.805333pt;}
.ws63{word-spacing:13.893067pt;}
.ws57{word-spacing:16.476800pt;}
.ws4b{word-spacing:17.729600pt;}
.ws66{word-spacing:20.488000pt;}
.ws78{word-spacing:21.388800pt;}
.ws1{word-spacing:404.526933pt;}
._1a{margin-left:-2.158400pt;}
._2{margin-left:-1.131733pt;}
._3{width:0.945067pt;}
._4{width:16.689600pt;}
._5{width:18.159733pt;}
._f{width:19.226933pt;}
._9{width:20.905600pt;}
._a{width:22.199733pt;}
._13{width:23.361600pt;}
._6{width:24.565333pt;}
._c{width:26.018667pt;}
._15{width:27.418933pt;}
._14{width:28.651467pt;}
._7{width:29.878933pt;}
._18{width:30.771200pt;}
._1{width:32.000000pt;}
._11{width:32.960000pt;}
._10{width:33.963733pt;}
._1e{width:34.924267pt;}
._1b{width:36.724800pt;}
._16{width:38.213333pt;}
._d{width:39.930667pt;}
._12{width:41.912533pt;}
._e{width:44.741333pt;}
._1f{width:46.080000pt;}
._8{width:49.151733pt;}
._1c{width:51.322933pt;}
._19{width:53.738667pt;}
._17{width:55.083733pt;}
._1d{width:58.160000pt;}
._b{width:64.374933pt;}
._0{width:544.128000pt;}
.fs1{font-size:58.933333pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:3.974667pt;}
.y6{bottom:64.733333pt;}
.y5{bottom:69.026667pt;}
.y51{bottom:89.988000pt;}
.y29{bottom:106.788000pt;}
.y50{bottom:108.388000pt;}
.y28{bottom:125.188000pt;}
.y4f{bottom:126.788000pt;}
.y27{bottom:143.588000pt;}
.y70{bottom:143.908000pt;}
.y4e{bottom:145.188000pt;}
.y26{bottom:161.988000pt;}
.y25{bottom:180.388000pt;}
.y6f{bottom:180.866667pt;}
.y4d{bottom:182.308000pt;}
.y24{bottom:217.508000pt;}
.y6e{bottom:217.988000pt;}
.y4c{bottom:219.266667pt;}
.y23{bottom:235.908000pt;}
.y22{bottom:254.308000pt;}
.y6d{bottom:255.108000pt;}
.y4b{bottom:256.388000pt;}
.y4a{bottom:274.788000pt;}
.y21{bottom:291.266667pt;}
.y6c{bottom:292.066667pt;}
.y49{bottom:293.188000pt;}
.y48{bottom:311.588000pt;}
.y20{bottom:328.388000pt;}
.y6b{bottom:329.188000pt;}
.y47{bottom:329.988000pt;}
.y1f{bottom:346.788000pt;}
.y6a{bottom:366.308000pt;}
.y46{bottom:367.108000pt;}
.y1e{bottom:383.908000pt;}
.y1d{bottom:402.308000pt;}
.y69{bottom:403.266667pt;}
.y45{bottom:404.066667pt;}
.y1c{bottom:420.706667pt;}
.y68{bottom:421.666667pt;}
.y44{bottom:422.466667pt;}
.y67{bottom:440.066667pt;}
.y43{bottom:440.866667pt;}
.y1b{bottom:457.666667pt;}
.y66{bottom:458.466667pt;}
.y42{bottom:459.266667pt;}
.y1a{bottom:476.066667pt;}
.y7b{bottom:476.708000pt;}
.y65{bottom:476.866667pt;}
.y41{bottom:477.666667pt;}
.y7a{bottom:495.108000pt;}
.y64{bottom:495.266667pt;}
.y40{bottom:496.066667pt;}
.y19{bottom:513.188000pt;}
.y63{bottom:513.666667pt;}
.y3f{bottom:514.466667pt;}
.y18{bottom:531.588000pt;}
.y62{bottom:532.066667pt;}
.y3e{bottom:532.866667pt;}
.y17{bottom:549.988000pt;}
.y79{bottom:550.466667pt;}
.y78{bottom:568.866667pt;}
.y61{bottom:569.188000pt;}
.y3d{bottom:569.988000pt;}
.y16{bottom:587.108000pt;}
.y77{bottom:587.266667pt;}
.y60{bottom:587.588000pt;}
.y15{bottom:605.506667pt;}
.y5f{bottom:605.988000pt;}
.y3c{bottom:607.108000pt;}
.y14{bottom:623.908000pt;}
.y5e{bottom:624.388000pt;}
.y3b{bottom:625.506667pt;}
.y13{bottom:642.308000pt;}
.y5d{bottom:642.788000pt;}
.y3a{bottom:643.908000pt;}
.y12{bottom:660.706667pt;}
.y5c{bottom:661.188000pt;}
.y39{bottom:662.308000pt;}
.y38{bottom:680.706667pt;}
.y11{bottom:697.666667pt;}
.y5b{bottom:698.308000pt;}
.y37{bottom:699.108000pt;}
.y10{bottom:716.066667pt;}
.y76{bottom:716.706667pt;}
.y36{bottom:717.506667pt;}
.yf{bottom:734.466667pt;}
.y75{bottom:735.108000pt;}
.y5a{bottom:735.266667pt;}
.y35{bottom:735.906667pt;}
.ye{bottom:752.866667pt;}
.y59{bottom:753.666667pt;}
.y34{bottom:754.308000pt;}
.y74{bottom:772.066667pt;}
.y33{bottom:772.706667pt;}
.yd{bottom:789.988000pt;}
.y73{bottom:790.466667pt;}
.y58{bottom:790.788000pt;}
.y32{bottom:791.106667pt;}
.y72{bottom:808.866667pt;}
.y57{bottom:809.188000pt;}
.y31{bottom:809.506667pt;}
.yc{bottom:827.106667pt;}
.y56{bottom:827.588000pt;}
.y30{bottom:827.906667pt;}
.y55{bottom:845.988000pt;}
.y2f{bottom:846.306667pt;}
.yb{bottom:864.066667pt;}
.y54{bottom:864.388000pt;}
.y2e{bottom:864.706667pt;}
.y53{bottom:882.788000pt;}
.ya{bottom:901.188000pt;}
.y71{bottom:901.506667pt;}
.y2d{bottom:901.666667pt;}
.y52{bottom:919.906667pt;}
.y2c{bottom:920.066667pt;}
.y9{bottom:938.306667pt;}
.y2b{bottom:938.466667pt;}
.y2a{bottom:956.866667pt;}
.y8{bottom:975.266667pt;}
.y4{bottom:1014.626667pt;}
.y3{bottom:1033.026667pt;}
.y2{bottom:1051.426667pt;}
.y1{bottom:1069.666667pt;}
.h4{height:17.933333pt;}
.h3{height:40.085026pt;}
.h2{height:43.375000pt;}
.h5{height:44.437500pt;}
.h6{height:44.468750pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:14.866667pt;}
.w4{width:22.266667pt;}
.w3{width:456.133333pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:12.000000pt;}
.x1{left:113.440000pt;}
.x9{left:121.440000pt;}
.xd{left:138.400000pt;}
.x4{left:254.720000pt;}
.xa{left:337.600000pt;}
.xc{left:414.066667pt;}
.x3{left:417.800000pt;}
.x7{left:464.160000pt;}
.x6{left:514.400000pt;}
.x5{left:524.160000pt;}
.x8{left:604.478667pt;}
.x2{left:649.920000pt;}
}




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