
    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_e2ade68388ee9199e882306a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_e3eb32558cfb35b57504d1b1.woff2')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_abf8451f2f30eb99f764cc39.woff2')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_37d437c5c85c580e71994fcd.woff2')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_565611a91b405f876ce3efc7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.093262;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;}
}
.ws2f{word-spacing:-55.944000px;}
.ws72{word-spacing:-38.871000px;}
.wsb{word-spacing:-38.663700px;}
.ws5e{word-spacing:-38.660400px;}
.ws6{word-spacing:-38.657700px;}
.ws18{word-spacing:-38.656800px;}
.ws5{word-spacing:-38.647800px;}
.ws5c{word-spacing:-38.454000px;}
.ws11{word-spacing:-38.446800px;}
.ws10{word-spacing:-38.439900px;}
.ws9{word-spacing:-38.439300px;}
.ws30{word-spacing:-38.376000px;}
.ws3{word-spacing:-38.374200px;}
.ws74{word-spacing:-38.298300px;}
.wsf{word-spacing:-38.166000px;}
.ws20{word-spacing:-38.160000px;}
.ws0{word-spacing:-37.944000px;}
.ws4{word-spacing:-37.938600px;}
.wsa{word-spacing:-37.937700px;}
.ws2{word-spacing:-37.931400px;}
.ws1b{word-spacing:-37.728000px;}
.ws6f{word-spacing:-37.656000px;}
.wsd{word-spacing:-37.440000px;}
.wsc{word-spacing:-37.422900px;}
.ws2a{word-spacing:-37.224000px;}
.ws37{word-spacing:-37.214400px;}
.ws50{word-spacing:-37.152000px;}
.ws61{word-spacing:-37.008000px;}
.ws13{word-spacing:-36.720000px;}
.ws64{word-spacing:-36.717300px;}
.ws58{word-spacing:-36.504000px;}
.ws1e{word-spacing:-36.288000px;}
.ws3f{word-spacing:-36.000000px;}
.ws3c{word-spacing:-35.784000px;}
.ws3b{word-spacing:-35.280000px;}
.ws3e{word-spacing:-35.064000px;}
.ws57{word-spacing:-34.848000px;}
.ws4c{word-spacing:-34.560000px;}
.ws5a{word-spacing:-34.554000px;}
.ws44{word-spacing:-34.344000px;}
.ws8{word-spacing:-33.547800px;}
.ws25{word-spacing:-33.120000px;}
.ws1f{word-spacing:-32.904000px;}
.ws53{word-spacing:-32.688000px;}
.ws17{word-spacing:-32.398200px;}
.ws22{word-spacing:-32.184000px;}
.ws56{word-spacing:-31.470000px;}
.ws48{word-spacing:-30.960000px;}
.ws29{word-spacing:-30.744000px;}
.ws6e{word-spacing:-30.528000px;}
.ws1c{word-spacing:-30.240000px;}
.ws26{word-spacing:-30.024000px;}
.ws40{word-spacing:-29.952000px;}
.wse{word-spacing:-29.808000px;}
.ws5b{word-spacing:-29.304000px;}
.ws47{word-spacing:-29.088000px;}
.ws2b{word-spacing:-28.800000px;}
.ws6b{word-spacing:-28.584000px;}
.ws6d{word-spacing:-28.080000px;}
.ws2c{word-spacing:-27.864000px;}
.ws6a{word-spacing:-27.860400px;}
.ws14{word-spacing:-27.648000px;}
.ws15{word-spacing:-27.366000px;}
.ws71{word-spacing:-27.357300px;}
.ws41{word-spacing:-27.144000px;}
.ws33{word-spacing:-26.640000px;}
.ws12{word-spacing:-26.430000px;}
.ws69{word-spacing:-26.208000px;}
.ws51{word-spacing:-26.202000px;}
.ws39{word-spacing:-26.200800px;}
.ws4d{word-spacing:-25.914000px;}
.ws52{word-spacing:-25.710000px;}
.ws3d{word-spacing:-25.704000px;}
.ws2e{word-spacing:-25.488000px;}
.ws16{word-spacing:-25.206000px;}
.ws32{word-spacing:-25.200000px;}
.ws5d{word-spacing:-24.480000px;}
.ws62{word-spacing:-24.264000px;}
.ws43{word-spacing:-24.048000px;}
.ws4f{word-spacing:-23.544000px;}
.ws34{word-spacing:-21.600000px;}
.ws68{word-spacing:-21.384000px;}
.ws63{word-spacing:-20.454000px;}
.ws42{word-spacing:-20.442000px;}
.ws36{word-spacing:-19.944000px;}
.ws46{word-spacing:-19.943100px;}
.ws54{word-spacing:-19.216800px;}
.ws45{word-spacing:-19.002000px;}
.ws55{word-spacing:-18.504000px;}
.ws7{word-spacing:-18.472500px;}
.ws67{word-spacing:-18.288000px;}
.ws59{word-spacing:-17.280000px;}
.ws1d{word-spacing:-17.064000px;}
.ws3a{word-spacing:-16.848000px;}
.ws35{word-spacing:-16.344000px;}
.ws24{word-spacing:-15.840000px;}
.ws60{word-spacing:-15.624000px;}
.ws4b{word-spacing:-15.400800px;}
.ws6c{word-spacing:-13.248000px;}
.ws4e{word-spacing:-12.744000px;}
.ws2d{word-spacing:-9.144000px;}
.ws38{word-spacing:-8.424000px;}
.ws49{word-spacing:-8.208000px;}
.ws31{word-spacing:-6.774000px;}
.ws66{word-spacing:-5.544000px;}
.ws28{word-spacing:-2.660400px;}
.ws19{word-spacing:-1.728000px;}
.ws70{word-spacing:-1.576800px;}
.ws27{word-spacing:-0.504000px;}
.ws73{word-spacing:0.736800px;}
.ws1a{word-spacing:1.656000px;}
.ws5f{word-spacing:1.866000px;}
.ws23{word-spacing:2.880000px;}
.ws4a{word-spacing:10.800000px;}
.ws21{word-spacing:12.456000px;}
.ws65{word-spacing:15.558000px;}
.ws1{word-spacing:455.092800px;}
._a{margin-left:-2.433600px;}
._2{margin-left:-1.273200px;}
._3{width:1.063200px;}
._d{width:2.427600px;}
._36{width:11.736000px;}
._4{width:18.775800px;}
._5{width:20.231700px;}
._2d{width:22.398000px;}
._1b{width:23.920800px;}
._18{width:25.056000px;}
._6{width:27.138000px;}
._1f{width:28.144800px;}
._f{width:29.569200px;}
._10{width:31.744800px;}
._30{width:33.441600px;}
._2f{width:34.792800px;}
._1{width:36.000000px;}
._23{width:37.024800px;}
._c{width:38.353200px;}
._16{width:39.888000px;}
._1a{width:41.223600px;}
._29{width:42.804600px;}
._37{width:43.924800px;}
._8{width:46.018800px;}
._9{width:47.094000px;}
._17{width:48.574800px;}
._1c{width:50.768400px;}
._32{width:52.177200px;}
._15{width:53.275200px;}
._13{width:55.246800px;}
._e{width:57.034800px;}
._b{width:58.994400px;}
._25{width:60.250800px;}
._11{width:61.554000px;}
._34{width:63.180000px;}
._28{width:64.890000px;}
._12{width:68.686200px;}
._26{width:69.873600px;}
._2e{width:71.352000px;}
._22{width:72.808800px;}
._2a{width:74.566800px;}
._31{width:75.666000px;}
._20{width:77.760000px;}
._27{width:79.233600px;}
._33{width:80.728800px;}
._2c{width:84.278400px;}
._24{width:94.558800px;}
._1d{width:99.138000px;}
._21{width:108.792000px;}
._14{width:115.881600px;}
._19{width:118.800000px;}
._2b{width:134.452800px;}
._35{width:143.931600px;}
._1e{width:148.758000px;}
._38{width:158.400000px;}
._7{width:274.968000px;}
._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;}
.y30{bottom:101.236500px;}
.y51{bottom:121.936500px;}
.y50{bottom:142.636500px;}
.y2f{bottom:142.996500px;}
.y66{bottom:143.536500px;}
.y4f{bottom:163.336500px;}
.y2e{bottom:163.696500px;}
.y65{bottom:164.236500px;}
.y4e{bottom:184.036500px;}
.y2d{bottom:184.396500px;}
.y64{bottom:184.936500px;}
.y7b{bottom:185.296500px;}
.y4d{bottom:204.736500px;}
.y2c{bottom:205.096500px;}
.y63{bottom:205.636500px;}
.y7a{bottom:205.996500px;}
.y4c{bottom:225.436500px;}
.y2b{bottom:225.795000px;}
.y62{bottom:226.336500px;}
.y79{bottom:226.696500px;}
.y4b{bottom:246.136500px;}
.y2a{bottom:246.496500px;}
.y61{bottom:247.036500px;}
.y78{bottom:247.396500px;}
.y29{bottom:267.196500px;}
.y60{bottom:267.736500px;}
.y28{bottom:287.896500px;}
.y5f{bottom:288.436500px;}
.y77{bottom:288.975000px;}
.y27{bottom:308.596500px;}
.y76{bottom:309.675000px;}
.y26{bottom:329.295000px;}
.y5e{bottom:330.196500px;}
.y75{bottom:330.375000px;}
.y25{bottom:349.996500px;}
.y5d{bottom:350.896500px;}
.y74{bottom:351.075000px;}
.y24{bottom:370.696500px;}
.y5c{bottom:371.596500px;}
.y73{bottom:371.775000px;}
.y23{bottom:391.396500px;}
.y5b{bottom:392.295000px;}
.y72{bottom:392.475000px;}
.y22{bottom:412.096500px;}
.y4a{bottom:412.275000px;}
.y5a{bottom:412.996500px;}
.y71{bottom:413.175000px;}
.y21{bottom:432.795000px;}
.y59{bottom:433.696500px;}
.y70{bottom:433.875000px;}
.y20{bottom:453.496500px;}
.y49{bottom:454.036500px;}
.y58{bottom:454.396500px;}
.y6f{bottom:454.575000px;}
.y6e{bottom:475.275000px;}
.y1f{bottom:495.075000px;}
.y48{bottom:495.796500px;}
.y57{bottom:495.975000px;}
.y1e{bottom:515.775000px;}
.y56{bottom:516.675000px;}
.y1d{bottom:536.475000px;}
.y47{bottom:537.375000px;}
.y1c{bottom:557.175000px;}
.y55{bottom:558.075000px;}
.y6d{bottom:558.436500px;}
.y1b{bottom:577.875000px;}
.y54{bottom:578.775000px;}
.y46{bottom:579.136500px;}
.y1a{bottom:598.575000px;}
.y45{bottom:599.836500px;}
.y19{bottom:619.275000px;}
.y44{bottom:620.536500px;}
.y18{bottom:639.975000px;}
.y43{bottom:641.236500px;}
.y42{bottom:661.936500px;}
.y17{bottom:681.736500px;}
.y53{bottom:682.636500px;}
.y16{bottom:702.436500px;}
.y6c{bottom:703.336500px;}
.y41{bottom:703.695000px;}
.y15{bottom:723.136500px;}
.y6b{bottom:724.036500px;}
.y40{bottom:724.396500px;}
.y14{bottom:743.836500px;}
.y6a{bottom:744.736500px;}
.y3f{bottom:745.096500px;}
.y13{bottom:764.536500px;}
.y3e{bottom:765.795000px;}
.y12{bottom:785.236500px;}
.y3d{bottom:786.496500px;}
.y11{bottom:805.936500px;}
.y3c{bottom:807.195000px;}
.y10{bottom:826.636500px;}
.y3b{bottom:827.895000px;}
.yf{bottom:847.336500px;}
.y3a{bottom:848.596500px;}
.y39{bottom:869.295000px;}
.ye{bottom:889.095000px;}
.y38{bottom:889.995000px;}
.y37{bottom:910.695000px;}
.yd{bottom:930.675000px;}
.y36{bottom:931.395000px;}
.yc{bottom:951.375000px;}
.y35{bottom:952.095000px;}
.yb{bottom:972.075000px;}
.y34{bottom:972.795000px;}
.y7d{bottom:972.975000px;}
.y33{bottom:993.495000px;}
.y7c{bottom:993.675000px;}
.ya{bottom:1013.836500px;}
.y32{bottom:1014.195000px;}
.y69{bottom:1014.375000px;}
.y31{bottom:1034.895000px;}
.y68{bottom:1035.075000px;}
.y9{bottom:1055.595000px;}
.y67{bottom:1055.775000px;}
.y52{bottom:1076.475000px;}
.y8{bottom:1097.175000px;}
.y4{bottom:1141.455000px;}
.y3{bottom:1162.155000px;}
.y2{bottom:1182.855000px;}
.y1{bottom:1203.375000px;}
.h5{height:20.175000px;}
.h4{height:45.095654px;}
.h3{height:48.796875px;}
.h6{height:49.992188px;}
.h7{height:63.175781px;}
.h2{height:63.949219px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:33.450000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.620000px;}
.x8{left:132.120000px;}
.x7{left:180.720000px;}
.x4{left:189.900000px;}
.x6{left:343.800000px;}
.x3{left:461.625000px;}
.x5{left:569.160000px;}
.x2{left:731.160000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws2f{word-spacing:-49.728000pt;}
.ws72{word-spacing:-34.552000pt;}
.wsb{word-spacing:-34.367733pt;}
.ws5e{word-spacing:-34.364800pt;}
.ws6{word-spacing:-34.362400pt;}
.ws18{word-spacing:-34.361600pt;}
.ws5{word-spacing:-34.353600pt;}
.ws5c{word-spacing:-34.181333pt;}
.ws11{word-spacing:-34.174933pt;}
.ws10{word-spacing:-34.168800pt;}
.ws9{word-spacing:-34.168267pt;}
.ws30{word-spacing:-34.112000pt;}
.ws3{word-spacing:-34.110400pt;}
.ws74{word-spacing:-34.042933pt;}
.wsf{word-spacing:-33.925333pt;}
.ws20{word-spacing:-33.920000pt;}
.ws0{word-spacing:-33.728000pt;}
.ws4{word-spacing:-33.723200pt;}
.wsa{word-spacing:-33.722400pt;}
.ws2{word-spacing:-33.716800pt;}
.ws1b{word-spacing:-33.536000pt;}
.ws6f{word-spacing:-33.472000pt;}
.wsd{word-spacing:-33.280000pt;}
.wsc{word-spacing:-33.264800pt;}
.ws2a{word-spacing:-33.088000pt;}
.ws37{word-spacing:-33.079467pt;}
.ws50{word-spacing:-33.024000pt;}
.ws61{word-spacing:-32.896000pt;}
.ws13{word-spacing:-32.640000pt;}
.ws64{word-spacing:-32.637600pt;}
.ws58{word-spacing:-32.448000pt;}
.ws1e{word-spacing:-32.256000pt;}
.ws3f{word-spacing:-32.000000pt;}
.ws3c{word-spacing:-31.808000pt;}
.ws3b{word-spacing:-31.360000pt;}
.ws3e{word-spacing:-31.168000pt;}
.ws57{word-spacing:-30.976000pt;}
.ws4c{word-spacing:-30.720000pt;}
.ws5a{word-spacing:-30.714667pt;}
.ws44{word-spacing:-30.528000pt;}
.ws8{word-spacing:-29.820267pt;}
.ws25{word-spacing:-29.440000pt;}
.ws1f{word-spacing:-29.248000pt;}
.ws53{word-spacing:-29.056000pt;}
.ws17{word-spacing:-28.798400pt;}
.ws22{word-spacing:-28.608000pt;}
.ws56{word-spacing:-27.973333pt;}
.ws48{word-spacing:-27.520000pt;}
.ws29{word-spacing:-27.328000pt;}
.ws6e{word-spacing:-27.136000pt;}
.ws1c{word-spacing:-26.880000pt;}
.ws26{word-spacing:-26.688000pt;}
.ws40{word-spacing:-26.624000pt;}
.wse{word-spacing:-26.496000pt;}
.ws5b{word-spacing:-26.048000pt;}
.ws47{word-spacing:-25.856000pt;}
.ws2b{word-spacing:-25.600000pt;}
.ws6b{word-spacing:-25.408000pt;}
.ws6d{word-spacing:-24.960000pt;}
.ws2c{word-spacing:-24.768000pt;}
.ws6a{word-spacing:-24.764800pt;}
.ws14{word-spacing:-24.576000pt;}
.ws15{word-spacing:-24.325333pt;}
.ws71{word-spacing:-24.317600pt;}
.ws41{word-spacing:-24.128000pt;}
.ws33{word-spacing:-23.680000pt;}
.ws12{word-spacing:-23.493333pt;}
.ws69{word-spacing:-23.296000pt;}
.ws51{word-spacing:-23.290667pt;}
.ws39{word-spacing:-23.289600pt;}
.ws4d{word-spacing:-23.034667pt;}
.ws52{word-spacing:-22.853333pt;}
.ws3d{word-spacing:-22.848000pt;}
.ws2e{word-spacing:-22.656000pt;}
.ws16{word-spacing:-22.405333pt;}
.ws32{word-spacing:-22.400000pt;}
.ws5d{word-spacing:-21.760000pt;}
.ws62{word-spacing:-21.568000pt;}
.ws43{word-spacing:-21.376000pt;}
.ws4f{word-spacing:-20.928000pt;}
.ws34{word-spacing:-19.200000pt;}
.ws68{word-spacing:-19.008000pt;}
.ws63{word-spacing:-18.181333pt;}
.ws42{word-spacing:-18.170667pt;}
.ws36{word-spacing:-17.728000pt;}
.ws46{word-spacing:-17.727200pt;}
.ws54{word-spacing:-17.081600pt;}
.ws45{word-spacing:-16.890667pt;}
.ws55{word-spacing:-16.448000pt;}
.ws7{word-spacing:-16.420000pt;}
.ws67{word-spacing:-16.256000pt;}
.ws59{word-spacing:-15.360000pt;}
.ws1d{word-spacing:-15.168000pt;}
.ws3a{word-spacing:-14.976000pt;}
.ws35{word-spacing:-14.528000pt;}
.ws24{word-spacing:-14.080000pt;}
.ws60{word-spacing:-13.888000pt;}
.ws4b{word-spacing:-13.689600pt;}
.ws6c{word-spacing:-11.776000pt;}
.ws4e{word-spacing:-11.328000pt;}
.ws2d{word-spacing:-8.128000pt;}
.ws38{word-spacing:-7.488000pt;}
.ws49{word-spacing:-7.296000pt;}
.ws31{word-spacing:-6.021333pt;}
.ws66{word-spacing:-4.928000pt;}
.ws28{word-spacing:-2.364800pt;}
.ws19{word-spacing:-1.536000pt;}
.ws70{word-spacing:-1.401600pt;}
.ws27{word-spacing:-0.448000pt;}
.ws73{word-spacing:0.654933pt;}
.ws1a{word-spacing:1.472000pt;}
.ws5f{word-spacing:1.658667pt;}
.ws23{word-spacing:2.560000pt;}
.ws4a{word-spacing:9.600000pt;}
.ws21{word-spacing:11.072000pt;}
.ws65{word-spacing:13.829333pt;}
.ws1{word-spacing:404.526933pt;}
._a{margin-left:-2.163200pt;}
._2{margin-left:-1.131733pt;}
._3{width:0.945067pt;}
._d{width:2.157867pt;}
._36{width:10.432000pt;}
._4{width:16.689600pt;}
._5{width:17.983733pt;}
._2d{width:19.909333pt;}
._1b{width:21.262933pt;}
._18{width:22.272000pt;}
._6{width:24.122667pt;}
._1f{width:25.017600pt;}
._f{width:26.283733pt;}
._10{width:28.217600pt;}
._30{width:29.725867pt;}
._2f{width:30.926933pt;}
._1{width:32.000000pt;}
._23{width:32.910933pt;}
._c{width:34.091733pt;}
._16{width:35.456000pt;}
._1a{width:36.643200pt;}
._29{width:38.048533pt;}
._37{width:39.044267pt;}
._8{width:40.905600pt;}
._9{width:41.861333pt;}
._17{width:43.177600pt;}
._1c{width:45.127467pt;}
._32{width:46.379733pt;}
._15{width:47.355733pt;}
._13{width:49.108267pt;}
._e{width:50.697600pt;}
._b{width:52.439467pt;}
._25{width:53.556267pt;}
._11{width:54.714667pt;}
._34{width:56.160000pt;}
._28{width:57.680000pt;}
._12{width:61.054400pt;}
._26{width:62.109867pt;}
._2e{width:63.424000pt;}
._22{width:64.718933pt;}
._2a{width:66.281600pt;}
._31{width:67.258667pt;}
._20{width:69.120000pt;}
._27{width:70.429867pt;}
._33{width:71.758933pt;}
._2c{width:74.914133pt;}
._24{width:84.052267pt;}
._1d{width:88.122667pt;}
._21{width:96.704000pt;}
._14{width:103.005867pt;}
._19{width:105.600000pt;}
._2b{width:119.513600pt;}
._35{width:127.939200pt;}
._1e{width:132.229333pt;}
._38{width:140.800000pt;}
._7{width:244.416000pt;}
._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;}
.y30{bottom:89.988000pt;}
.y51{bottom:108.388000pt;}
.y50{bottom:126.788000pt;}
.y2f{bottom:127.108000pt;}
.y66{bottom:127.588000pt;}
.y4f{bottom:145.188000pt;}
.y2e{bottom:145.508000pt;}
.y65{bottom:145.988000pt;}
.y4e{bottom:163.588000pt;}
.y2d{bottom:163.908000pt;}
.y64{bottom:164.388000pt;}
.y7b{bottom:164.708000pt;}
.y4d{bottom:181.988000pt;}
.y2c{bottom:182.308000pt;}
.y63{bottom:182.788000pt;}
.y7a{bottom:183.108000pt;}
.y4c{bottom:200.388000pt;}
.y2b{bottom:200.706667pt;}
.y62{bottom:201.188000pt;}
.y79{bottom:201.508000pt;}
.y4b{bottom:218.788000pt;}
.y2a{bottom:219.108000pt;}
.y61{bottom:219.588000pt;}
.y78{bottom:219.908000pt;}
.y29{bottom:237.508000pt;}
.y60{bottom:237.988000pt;}
.y28{bottom:255.908000pt;}
.y5f{bottom:256.388000pt;}
.y77{bottom:256.866667pt;}
.y27{bottom:274.308000pt;}
.y76{bottom:275.266667pt;}
.y26{bottom:292.706667pt;}
.y5e{bottom:293.508000pt;}
.y75{bottom:293.666667pt;}
.y25{bottom:311.108000pt;}
.y5d{bottom:311.908000pt;}
.y74{bottom:312.066667pt;}
.y24{bottom:329.508000pt;}
.y5c{bottom:330.308000pt;}
.y73{bottom:330.466667pt;}
.y23{bottom:347.908000pt;}
.y5b{bottom:348.706667pt;}
.y72{bottom:348.866667pt;}
.y22{bottom:366.308000pt;}
.y4a{bottom:366.466667pt;}
.y5a{bottom:367.108000pt;}
.y71{bottom:367.266667pt;}
.y21{bottom:384.706667pt;}
.y59{bottom:385.508000pt;}
.y70{bottom:385.666667pt;}
.y20{bottom:403.108000pt;}
.y49{bottom:403.588000pt;}
.y58{bottom:403.908000pt;}
.y6f{bottom:404.066667pt;}
.y6e{bottom:422.466667pt;}
.y1f{bottom:440.066667pt;}
.y48{bottom:440.708000pt;}
.y57{bottom:440.866667pt;}
.y1e{bottom:458.466667pt;}
.y56{bottom:459.266667pt;}
.y1d{bottom:476.866667pt;}
.y47{bottom:477.666667pt;}
.y1c{bottom:495.266667pt;}
.y55{bottom:496.066667pt;}
.y6d{bottom:496.388000pt;}
.y1b{bottom:513.666667pt;}
.y54{bottom:514.466667pt;}
.y46{bottom:514.788000pt;}
.y1a{bottom:532.066667pt;}
.y45{bottom:533.188000pt;}
.y19{bottom:550.466667pt;}
.y44{bottom:551.588000pt;}
.y18{bottom:568.866667pt;}
.y43{bottom:569.988000pt;}
.y42{bottom:588.388000pt;}
.y17{bottom:605.988000pt;}
.y53{bottom:606.788000pt;}
.y16{bottom:624.388000pt;}
.y6c{bottom:625.188000pt;}
.y41{bottom:625.506667pt;}
.y15{bottom:642.788000pt;}
.y6b{bottom:643.588000pt;}
.y40{bottom:643.908000pt;}
.y14{bottom:661.188000pt;}
.y6a{bottom:661.988000pt;}
.y3f{bottom:662.308000pt;}
.y13{bottom:679.588000pt;}
.y3e{bottom:680.706667pt;}
.y12{bottom:697.988000pt;}
.y3d{bottom:699.108000pt;}
.y11{bottom:716.388000pt;}
.y3c{bottom:717.506667pt;}
.y10{bottom:734.788000pt;}
.y3b{bottom:735.906667pt;}
.yf{bottom:753.188000pt;}
.y3a{bottom:754.308000pt;}
.y39{bottom:772.706667pt;}
.ye{bottom:790.306667pt;}
.y38{bottom:791.106667pt;}
.y37{bottom:809.506667pt;}
.yd{bottom:827.266667pt;}
.y36{bottom:827.906667pt;}
.yc{bottom:845.666667pt;}
.y35{bottom:846.306667pt;}
.yb{bottom:864.066667pt;}
.y34{bottom:864.706667pt;}
.y7d{bottom:864.866667pt;}
.y33{bottom:883.106667pt;}
.y7c{bottom:883.266667pt;}
.ya{bottom:901.188000pt;}
.y32{bottom:901.506667pt;}
.y69{bottom:901.666667pt;}
.y31{bottom:919.906667pt;}
.y68{bottom:920.066667pt;}
.y9{bottom:938.306667pt;}
.y67{bottom:938.466667pt;}
.y52{bottom:956.866667pt;}
.y8{bottom:975.266667pt;}
.y4{bottom:1014.626667pt;}
.y3{bottom:1033.026667pt;}
.y2{bottom:1051.426667pt;}
.y1{bottom:1069.666667pt;}
.h5{height:17.933333pt;}
.h4{height:40.085026pt;}
.h3{height:43.375000pt;}
.h6{height:44.437500pt;}
.h7{height:56.156250pt;}
.h2{height:56.843750pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:29.733333pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.440000pt;}
.x8{left:117.440000pt;}
.x7{left:160.640000pt;}
.x4{left:168.800000pt;}
.x6{left:305.600000pt;}
.x3{left:410.333333pt;}
.x5{left:505.920000pt;}
.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; }
  