
    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_4ee9f90e9aa3f45e6a4752cf.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_d400564a7b6aff781b0cf160.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_32c3b0f0de026f00b748567b.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_e116321749daafe3c1cfa236.woff')format("woff");}.ff4{font-family:ff4;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;}
}
.wsa{word-spacing:-55.944000px;}
.ws6{word-spacing:-38.657700px;}
.ws4c{word-spacing:-38.656800px;}
.ws5{word-spacing:-38.647800px;}
.wsb{word-spacing:-38.643600px;}
.ws83{word-spacing:-38.637000px;}
.ws9{word-spacing:-38.588400px;}
.ws3{word-spacing:-38.374200px;}
.ws6a{word-spacing:-38.160600px;}
.wsd{word-spacing:-38.160000px;}
.ws77{word-spacing:-38.158200px;}
.ws42{word-spacing:-38.157000px;}
.ws1e{word-spacing:-38.156400px;}
.ws7b{word-spacing:-38.154600px;}
.ws84{word-spacing:-38.145600px;}
.ws5d{word-spacing:-38.142000px;}
.ws33{word-spacing:-38.075400px;}
.ws0{word-spacing:-37.944000px;}
.ws4{word-spacing:-37.938600px;}
.wsc{word-spacing:-37.935900px;}
.ws8a{word-spacing:-37.932300px;}
.ws2{word-spacing:-37.931400px;}
.ws31{word-spacing:-37.717200px;}
.ws61{word-spacing:-37.414200px;}
.ws23{word-spacing:-37.221000px;}
.ws71{word-spacing:-37.214400px;}
.ws73{word-spacing:-37.206000px;}
.ws14{word-spacing:-36.995400px;}
.ws64{word-spacing:-36.716400px;}
.ws53{word-spacing:-36.703800px;}
.ws54{word-spacing:-36.504000px;}
.ws39{word-spacing:-36.500400px;}
.ws2a{word-spacing:-36.496800px;}
.ws2f{word-spacing:-35.788200px;}
.ws7f{word-spacing:-35.780400px;}
.ws35{word-spacing:-35.778600px;}
.ws62{word-spacing:-35.776800px;}
.ws38{word-spacing:-35.058600px;}
.ws87{word-spacing:-35.057700px;}
.ws37{word-spacing:-34.840800px;}
.ws49{word-spacing:-34.117200px;}
.ws67{word-spacing:-33.624000px;}
.ws2d{word-spacing:-33.622200px;}
.ws13{word-spacing:-33.596100px;}
.ws8{word-spacing:-33.547800px;}
.ws58{word-spacing:-33.395400px;}
.ws89{word-spacing:-32.895900px;}
.ws22{word-spacing:-32.682600px;}
.ws45{word-spacing:-31.674000px;}
.ws28{word-spacing:-31.242600px;}
.ws4b{word-spacing:-31.240800px;}
.ws3c{word-spacing:-30.744000px;}
.ws4f{word-spacing:-30.726900px;}
.ws47{word-spacing:-30.726000px;}
.ws76{word-spacing:-30.720600px;}
.ws34{word-spacing:-30.240000px;}
.ws1c{word-spacing:-30.022200px;}
.ws4a{word-spacing:-29.802600px;}
.ws63{word-spacing:-29.079000px;}
.ws15{word-spacing:-28.573200px;}
.ws50{word-spacing:-27.851400px;}
.ws48{word-spacing:-27.646800px;}
.ws5e{word-spacing:-27.340200px;}
.ws65{word-spacing:-27.135000px;}
.ws80{word-spacing:-27.121500px;}
.ws2c{word-spacing:-26.413200px;}
.ws3a{word-spacing:-26.401500px;}
.ws6d{word-spacing:-25.696800px;}
.ws7a{word-spacing:-25.693200px;}
.ws78{word-spacing:-24.961500px;}
.ws52{word-spacing:-24.759000px;}
.ws10{word-spacing:-24.247800px;}
.ws29{word-spacing:-23.729400px;}
.ws88{word-spacing:-23.544000px;}
.wsf{word-spacing:-23.535000px;}
.ws1b{word-spacing:-23.523300px;}
.ws69{word-spacing:-23.521500px;}
.ws40{word-spacing:-23.518800px;}
.wse{word-spacing:-23.021100px;}
.ws41{word-spacing:-22.600800px;}
.ws25{word-spacing:-22.100400px;}
.ws6b{word-spacing:-21.594600px;}
.ws36{word-spacing:-21.157200px;}
.ws57{word-spacing:-21.151800px;}
.ws1d{word-spacing:-20.871000px;}
.ws2b{word-spacing:-19.948200px;}
.ws66{word-spacing:-19.436400px;}
.ws1a{word-spacing:-19.431000px;}
.ws4e{word-spacing:-19.430400px;}
.ws8b{word-spacing:-19.217700px;}
.ws3b{word-spacing:-19.217400px;}
.ws7{word-spacing:-18.472500px;}
.ws79{word-spacing:-17.995200px;}
.ws12{word-spacing:-17.784000px;}
.ws43{word-spacing:-17.775000px;}
.ws5c{word-spacing:-17.773200px;}
.ws19{word-spacing:-17.550000px;}
.ws17{word-spacing:-17.055000px;}
.ws4d{word-spacing:-16.560000px;}
.ws68{word-spacing:-16.556400px;}
.ws3d{word-spacing:-16.126800px;}
.ws85{word-spacing:-15.614100px;}
.ws82{word-spacing:-15.611400px;}
.ws44{word-spacing:-15.394800px;}
.ws27{word-spacing:-14.901300px;}
.ws7e{word-spacing:-14.868900px;}
.ws7d{word-spacing:-14.182800px;}
.ws51{word-spacing:-13.453200px;}
.ws11{word-spacing:-13.451400px;}
.ws7c{word-spacing:-12.960000px;}
.ws24{word-spacing:-12.736800px;}
.ws2e{word-spacing:-12.017400px;}
.ws74{word-spacing:-10.782000px;}
.ws18{word-spacing:-10.576800px;}
.ws86{word-spacing:-9.360000px;}
.ws46{word-spacing:-8.200800px;}
.ws60{word-spacing:-7.189200px;}
.ws5f{word-spacing:-6.474600px;}
.ws81{word-spacing:-6.259200px;}
.ws70{word-spacing:-5.746500px;}
.ws5a{word-spacing:-4.093200px;}
.ws55{word-spacing:-2.661000px;}
.ws30{word-spacing:-2.633400px;}
.ws72{word-spacing:-2.442600px;}
.ws3f{word-spacing:-2.422800px;}
.ws6f{word-spacing:-0.257400px;}
.ws32{word-spacing:0.000000px;}
.ws6e{word-spacing:0.014400px;}
.ws75{word-spacing:0.954000px;}
.ws3e{word-spacing:1.671600px;}
.ws20{word-spacing:4.564500px;}
.ws1f{word-spacing:5.048100px;}
.ws59{word-spacing:11.038500px;}
.ws26{word-spacing:12.960000px;}
.ws5b{word-spacing:21.830400px;}
.ws21{word-spacing:22.543200px;}
.ws56{word-spacing:26.863200px;}
.ws16{word-spacing:26.863800px;}
.ws6c{word-spacing:34.590600px;}
.ws1{word-spacing:455.092800px;}
._2{margin-left:-1.273200px;}
._3{width:1.063200px;}
._4{width:18.775800px;}
._b{width:20.219400px;}
._16{width:21.524400px;}
._a{width:23.676900px;}
._8{width:24.806100px;}
._18{width:26.280000px;}
._10{width:27.369600px;}
._c{width:28.402800px;}
._1b{width:29.878800px;}
._14{width:31.226400px;}
._1c{width:32.328000px;}
._5{width:33.533100px;}
._1a{width:34.649400px;}
._1{width:36.000000px;}
._f{width:37.636800px;}
._7{width:39.456000px;}
._e{width:40.651800px;}
._13{width:42.399300px;}
._6{width:43.973400px;}
._15{width:45.007200px;}
._24{width:46.506000px;}
._9{width:47.520000px;}
._21{width:50.826600px;}
._1f{width:52.904400px;}
._17{width:54.689400px;}
._23{width:57.153600px;}
._19{width:58.936800px;}
._11{width:61.635900px;}
._1e{width:68.172300px;}
._1d{width:69.601500px;}
._20{width:78.919200px;}
._12{width:80.128800px;}
._d{width:83.808000px;}
._22{width:91.691400px;}
._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;}
.y31{bottom:101.596500px;}
.y7a{bottom:102.315000px;}
.y5d{bottom:102.855000px;}
.y30{bottom:122.296500px;}
.y79{bottom:122.836500px;}
.y5c{bottom:123.555000px;}
.y2f{bottom:142.996500px;}
.y78{bottom:143.536500px;}
.y5b{bottom:144.255000px;}
.y2e{bottom:163.696500px;}
.y77{bottom:164.236500px;}
.y5a{bottom:164.775000px;}
.y2d{bottom:184.396500px;}
.y76{bottom:184.936500px;}
.y59{bottom:185.475000px;}
.y2c{bottom:205.096500px;}
.y75{bottom:205.636500px;}
.y58{bottom:206.175000px;}
.y2b{bottom:225.795000px;}
.y74{bottom:226.336500px;}
.y57{bottom:226.875000px;}
.y2a{bottom:246.496500px;}
.y73{bottom:247.036500px;}
.y56{bottom:247.575000px;}
.y29{bottom:267.196500px;}
.y72{bottom:267.736500px;}
.y55{bottom:268.275000px;}
.y28{bottom:287.896500px;}
.y71{bottom:288.436500px;}
.y54{bottom:288.975000px;}
.y27{bottom:308.596500px;}
.y70{bottom:309.136500px;}
.y53{bottom:309.675000px;}
.y26{bottom:329.295000px;}
.y6f{bottom:329.836500px;}
.y52{bottom:330.375000px;}
.y25{bottom:349.996500px;}
.y6e{bottom:350.536500px;}
.y51{bottom:351.075000px;}
.y24{bottom:370.696500px;}
.y6d{bottom:371.236500px;}
.y50{bottom:371.775000px;}
.y23{bottom:391.396500px;}
.y4f{bottom:392.475000px;}
.y22{bottom:412.096500px;}
.y6c{bottom:412.996500px;}
.y4e{bottom:413.175000px;}
.y21{bottom:432.795000px;}
.y4d{bottom:433.875000px;}
.y6b{bottom:454.575000px;}
.y20{bottom:474.375000px;}
.y6a{bottom:475.275000px;}
.y4c{bottom:475.636500px;}
.y87{bottom:493.636500px;}
.y69{bottom:495.975000px;}
.y1f{bottom:516.136500px;}
.y68{bottom:516.675000px;}
.y4b{bottom:517.396500px;}
.y86{bottom:535.396500px;}
.y1e{bottom:536.836500px;}
.y67{bottom:537.375000px;}
.y4a{bottom:538.096500px;}
.y85{bottom:556.096500px;}
.y1d{bottom:557.536500px;}
.y66{bottom:558.075000px;}
.y49{bottom:558.796500px;}
.y65{bottom:578.775000px;}
.y48{bottom:579.496500px;}
.y84{bottom:597.675000px;}
.y1c{bottom:599.295000px;}
.y64{bottom:599.475000px;}
.y47{bottom:600.195000px;}
.y1b{bottom:619.996500px;}
.y63{bottom:620.175000px;}
.y46{bottom:620.896500px;}
.y83{bottom:639.436500px;}
.y1a{bottom:640.695000px;}
.y62{bottom:640.875000px;}
.y45{bottom:641.596500px;}
.y82{bottom:660.136500px;}
.y19{bottom:661.396500px;}
.y61{bottom:661.575000px;}
.y44{bottom:662.295000px;}
.y18{bottom:682.096500px;}
.y60{bottom:682.275000px;}
.y43{bottom:682.996500px;}
.y81{bottom:701.896500px;}
.y17{bottom:702.795000px;}
.y5f{bottom:702.975000px;}
.y42{bottom:703.695000px;}
.y80{bottom:722.596500px;}
.y16{bottom:723.496500px;}
.y41{bottom:724.396500px;}
.y7f{bottom:743.295000px;}
.y15{bottom:744.195000px;}
.y5e{bottom:744.736500px;}
.y40{bottom:745.096500px;}
.y14{bottom:764.895000px;}
.y3f{bottom:765.795000px;}
.y7e{bottom:784.875000px;}
.y13{bottom:785.596500px;}
.y3e{bottom:786.496500px;}
.y7d{bottom:805.575000px;}
.y12{bottom:806.295000px;}
.y3d{bottom:807.195000px;}
.y11{bottom:826.996500px;}
.y3c{bottom:827.895000px;}
.y7c{bottom:847.336500px;}
.y10{bottom:847.695000px;}
.y3b{bottom:848.596500px;}
.y7b{bottom:868.036500px;}
.yf{bottom:868.395000px;}
.y3a{bottom:869.295000px;}
.ye{bottom:889.095000px;}
.y39{bottom:889.995000px;}
.yd{bottom:909.795000px;}
.y38{bottom:910.695000px;}
.y37{bottom:931.395000px;}
.yc{bottom:951.375000px;}
.y36{bottom:952.095000px;}
.y35{bottom:972.795000px;}
.yb{bottom:993.136500px;}
.y34{bottom:993.495000px;}
.y33{bottom:1014.195000px;}
.ya{bottom:1034.895000px;}
.y32{bottom:1055.595000px;}
.y9{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:50.027344px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:25.050000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.620000px;}
.x4{left:129.060000px;}
.x9{left:136.620000px;}
.xa{left:168.120000px;}
.xc{left:172.620000px;}
.xb{left:177.120000px;}
.x5{left:403.920000px;}
.x3{left:465.825000px;}
.x8{left:518.220000px;}
.x6{left:522.720000px;}
.x7{left:555.660000px;}
.x2{left:731.160000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.wsa{word-spacing:-49.728000pt;}
.ws6{word-spacing:-34.362400pt;}
.ws4c{word-spacing:-34.361600pt;}
.ws5{word-spacing:-34.353600pt;}
.wsb{word-spacing:-34.349867pt;}
.ws83{word-spacing:-34.344000pt;}
.ws9{word-spacing:-34.300800pt;}
.ws3{word-spacing:-34.110400pt;}
.ws6a{word-spacing:-33.920533pt;}
.wsd{word-spacing:-33.920000pt;}
.ws77{word-spacing:-33.918400pt;}
.ws42{word-spacing:-33.917333pt;}
.ws1e{word-spacing:-33.916800pt;}
.ws7b{word-spacing:-33.915200pt;}
.ws84{word-spacing:-33.907200pt;}
.ws5d{word-spacing:-33.904000pt;}
.ws33{word-spacing:-33.844800pt;}
.ws0{word-spacing:-33.728000pt;}
.ws4{word-spacing:-33.723200pt;}
.wsc{word-spacing:-33.720800pt;}
.ws8a{word-spacing:-33.717600pt;}
.ws2{word-spacing:-33.716800pt;}
.ws31{word-spacing:-33.526400pt;}
.ws61{word-spacing:-33.257067pt;}
.ws23{word-spacing:-33.085333pt;}
.ws71{word-spacing:-33.079467pt;}
.ws73{word-spacing:-33.072000pt;}
.ws14{word-spacing:-32.884800pt;}
.ws64{word-spacing:-32.636800pt;}
.ws53{word-spacing:-32.625600pt;}
.ws54{word-spacing:-32.448000pt;}
.ws39{word-spacing:-32.444800pt;}
.ws2a{word-spacing:-32.441600pt;}
.ws2f{word-spacing:-31.811733pt;}
.ws7f{word-spacing:-31.804800pt;}
.ws35{word-spacing:-31.803200pt;}
.ws62{word-spacing:-31.801600pt;}
.ws38{word-spacing:-31.163200pt;}
.ws87{word-spacing:-31.162400pt;}
.ws37{word-spacing:-30.969600pt;}
.ws49{word-spacing:-30.326400pt;}
.ws67{word-spacing:-29.888000pt;}
.ws2d{word-spacing:-29.886400pt;}
.ws13{word-spacing:-29.863200pt;}
.ws8{word-spacing:-29.820267pt;}
.ws58{word-spacing:-29.684800pt;}
.ws89{word-spacing:-29.240800pt;}
.ws22{word-spacing:-29.051200pt;}
.ws45{word-spacing:-28.154667pt;}
.ws28{word-spacing:-27.771200pt;}
.ws4b{word-spacing:-27.769600pt;}
.ws3c{word-spacing:-27.328000pt;}
.ws4f{word-spacing:-27.312800pt;}
.ws47{word-spacing:-27.312000pt;}
.ws76{word-spacing:-27.307200pt;}
.ws34{word-spacing:-26.880000pt;}
.ws1c{word-spacing:-26.686400pt;}
.ws4a{word-spacing:-26.491200pt;}
.ws63{word-spacing:-25.848000pt;}
.ws15{word-spacing:-25.398400pt;}
.ws50{word-spacing:-24.756800pt;}
.ws48{word-spacing:-24.574933pt;}
.ws5e{word-spacing:-24.302400pt;}
.ws65{word-spacing:-24.120000pt;}
.ws80{word-spacing:-24.108000pt;}
.ws2c{word-spacing:-23.478400pt;}
.ws3a{word-spacing:-23.468000pt;}
.ws6d{word-spacing:-22.841600pt;}
.ws7a{word-spacing:-22.838400pt;}
.ws78{word-spacing:-22.188000pt;}
.ws52{word-spacing:-22.008000pt;}
.ws10{word-spacing:-21.553600pt;}
.ws29{word-spacing:-21.092800pt;}
.ws88{word-spacing:-20.928000pt;}
.wsf{word-spacing:-20.920000pt;}
.ws1b{word-spacing:-20.909600pt;}
.ws69{word-spacing:-20.908000pt;}
.ws40{word-spacing:-20.905600pt;}
.wse{word-spacing:-20.463200pt;}
.ws41{word-spacing:-20.089600pt;}
.ws25{word-spacing:-19.644800pt;}
.ws6b{word-spacing:-19.195200pt;}
.ws36{word-spacing:-18.806400pt;}
.ws57{word-spacing:-18.801600pt;}
.ws1d{word-spacing:-18.552000pt;}
.ws2b{word-spacing:-17.731733pt;}
.ws66{word-spacing:-17.276800pt;}
.ws1a{word-spacing:-17.272000pt;}
.ws4e{word-spacing:-17.271467pt;}
.ws8b{word-spacing:-17.082400pt;}
.ws3b{word-spacing:-17.082133pt;}
.ws7{word-spacing:-16.420000pt;}
.ws79{word-spacing:-15.995733pt;}
.ws12{word-spacing:-15.808000pt;}
.ws43{word-spacing:-15.800000pt;}
.ws5c{word-spacing:-15.798400pt;}
.ws19{word-spacing:-15.600000pt;}
.ws17{word-spacing:-15.160000pt;}
.ws4d{word-spacing:-14.720000pt;}
.ws68{word-spacing:-14.716800pt;}
.ws3d{word-spacing:-14.334933pt;}
.ws85{word-spacing:-13.879200pt;}
.ws82{word-spacing:-13.876800pt;}
.ws44{word-spacing:-13.684267pt;}
.ws27{word-spacing:-13.245600pt;}
.ws7e{word-spacing:-13.216800pt;}
.ws7d{word-spacing:-12.606933pt;}
.ws51{word-spacing:-11.958400pt;}
.ws11{word-spacing:-11.956800pt;}
.ws7c{word-spacing:-11.520000pt;}
.ws24{word-spacing:-11.321600pt;}
.ws2e{word-spacing:-10.682133pt;}
.ws74{word-spacing:-9.584000pt;}
.ws18{word-spacing:-9.401600pt;}
.ws86{word-spacing:-8.320000pt;}
.ws46{word-spacing:-7.289600pt;}
.ws60{word-spacing:-6.390400pt;}
.ws5f{word-spacing:-5.755200pt;}
.ws81{word-spacing:-5.563733pt;}
.ws70{word-spacing:-5.108000pt;}
.ws5a{word-spacing:-3.638400pt;}
.ws55{word-spacing:-2.365333pt;}
.ws30{word-spacing:-2.340800pt;}
.ws72{word-spacing:-2.171200pt;}
.ws3f{word-spacing:-2.153600pt;}
.ws6f{word-spacing:-0.228800pt;}
.ws32{word-spacing:0.000000pt;}
.ws6e{word-spacing:0.012800pt;}
.ws75{word-spacing:0.848000pt;}
.ws3e{word-spacing:1.485867pt;}
.ws20{word-spacing:4.057333pt;}
.ws1f{word-spacing:4.487200pt;}
.ws59{word-spacing:9.812000pt;}
.ws26{word-spacing:11.520000pt;}
.ws5b{word-spacing:19.404800pt;}
.ws21{word-spacing:20.038400pt;}
.ws56{word-spacing:23.878400pt;}
.ws16{word-spacing:23.878933pt;}
.ws6c{word-spacing:30.747200pt;}
.ws1{word-spacing:404.526933pt;}
._2{margin-left:-1.131733pt;}
._3{width:0.945067pt;}
._4{width:16.689600pt;}
._b{width:17.972800pt;}
._16{width:19.132800pt;}
._a{width:21.046133pt;}
._8{width:22.049867pt;}
._18{width:23.360000pt;}
._10{width:24.328533pt;}
._c{width:25.246933pt;}
._1b{width:26.558933pt;}
._14{width:27.756800pt;}
._1c{width:28.736000pt;}
._5{width:29.807200pt;}
._1a{width:30.799467pt;}
._1{width:32.000000pt;}
._f{width:33.454933pt;}
._7{width:35.072000pt;}
._e{width:36.134933pt;}
._13{width:37.688267pt;}
._6{width:39.087467pt;}
._15{width:40.006400pt;}
._24{width:41.338667pt;}
._9{width:42.240000pt;}
._21{width:45.179200pt;}
._1f{width:47.026133pt;}
._17{width:48.612800pt;}
._23{width:50.803200pt;}
._19{width:52.388267pt;}
._11{width:54.787467pt;}
._1e{width:60.597600pt;}
._1d{width:61.868000pt;}
._20{width:70.150400pt;}
._12{width:71.225600pt;}
._d{width:74.496000pt;}
._22{width:81.503467pt;}
._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;}
.y31{bottom:90.308000pt;}
.y7a{bottom:90.946667pt;}
.y5d{bottom:91.426667pt;}
.y30{bottom:108.708000pt;}
.y79{bottom:109.188000pt;}
.y5c{bottom:109.826667pt;}
.y2f{bottom:127.108000pt;}
.y78{bottom:127.588000pt;}
.y5b{bottom:128.226667pt;}
.y2e{bottom:145.508000pt;}
.y77{bottom:145.988000pt;}
.y5a{bottom:146.466667pt;}
.y2d{bottom:163.908000pt;}
.y76{bottom:164.388000pt;}
.y59{bottom:164.866667pt;}
.y2c{bottom:182.308000pt;}
.y75{bottom:182.788000pt;}
.y58{bottom:183.266667pt;}
.y2b{bottom:200.706667pt;}
.y74{bottom:201.188000pt;}
.y57{bottom:201.666667pt;}
.y2a{bottom:219.108000pt;}
.y73{bottom:219.588000pt;}
.y56{bottom:220.066667pt;}
.y29{bottom:237.508000pt;}
.y72{bottom:237.988000pt;}
.y55{bottom:238.466667pt;}
.y28{bottom:255.908000pt;}
.y71{bottom:256.388000pt;}
.y54{bottom:256.866667pt;}
.y27{bottom:274.308000pt;}
.y70{bottom:274.788000pt;}
.y53{bottom:275.266667pt;}
.y26{bottom:292.706667pt;}
.y6f{bottom:293.188000pt;}
.y52{bottom:293.666667pt;}
.y25{bottom:311.108000pt;}
.y6e{bottom:311.588000pt;}
.y51{bottom:312.066667pt;}
.y24{bottom:329.508000pt;}
.y6d{bottom:329.988000pt;}
.y50{bottom:330.466667pt;}
.y23{bottom:347.908000pt;}
.y4f{bottom:348.866667pt;}
.y22{bottom:366.308000pt;}
.y6c{bottom:367.108000pt;}
.y4e{bottom:367.266667pt;}
.y21{bottom:384.706667pt;}
.y4d{bottom:385.666667pt;}
.y6b{bottom:404.066667pt;}
.y20{bottom:421.666667pt;}
.y6a{bottom:422.466667pt;}
.y4c{bottom:422.788000pt;}
.y87{bottom:438.788000pt;}
.y69{bottom:440.866667pt;}
.y1f{bottom:458.788000pt;}
.y68{bottom:459.266667pt;}
.y4b{bottom:459.908000pt;}
.y86{bottom:475.908000pt;}
.y1e{bottom:477.188000pt;}
.y67{bottom:477.666667pt;}
.y4a{bottom:478.308000pt;}
.y85{bottom:494.308000pt;}
.y1d{bottom:495.588000pt;}
.y66{bottom:496.066667pt;}
.y49{bottom:496.708000pt;}
.y65{bottom:514.466667pt;}
.y48{bottom:515.108000pt;}
.y84{bottom:531.266667pt;}
.y1c{bottom:532.706667pt;}
.y64{bottom:532.866667pt;}
.y47{bottom:533.506667pt;}
.y1b{bottom:551.108000pt;}
.y63{bottom:551.266667pt;}
.y46{bottom:551.908000pt;}
.y83{bottom:568.388000pt;}
.y1a{bottom:569.506667pt;}
.y62{bottom:569.666667pt;}
.y45{bottom:570.308000pt;}
.y82{bottom:586.788000pt;}
.y19{bottom:587.908000pt;}
.y61{bottom:588.066667pt;}
.y44{bottom:588.706667pt;}
.y18{bottom:606.308000pt;}
.y60{bottom:606.466667pt;}
.y43{bottom:607.108000pt;}
.y81{bottom:623.908000pt;}
.y17{bottom:624.706667pt;}
.y5f{bottom:624.866667pt;}
.y42{bottom:625.506667pt;}
.y80{bottom:642.308000pt;}
.y16{bottom:643.108000pt;}
.y41{bottom:643.908000pt;}
.y7f{bottom:660.706667pt;}
.y15{bottom:661.506667pt;}
.y5e{bottom:661.988000pt;}
.y40{bottom:662.308000pt;}
.y14{bottom:679.906667pt;}
.y3f{bottom:680.706667pt;}
.y7e{bottom:697.666667pt;}
.y13{bottom:698.308000pt;}
.y3e{bottom:699.108000pt;}
.y7d{bottom:716.066667pt;}
.y12{bottom:716.706667pt;}
.y3d{bottom:717.506667pt;}
.y11{bottom:735.108000pt;}
.y3c{bottom:735.906667pt;}
.y7c{bottom:753.188000pt;}
.y10{bottom:753.506667pt;}
.y3b{bottom:754.308000pt;}
.y7b{bottom:771.588000pt;}
.yf{bottom:771.906667pt;}
.y3a{bottom:772.706667pt;}
.ye{bottom:790.306667pt;}
.y39{bottom:791.106667pt;}
.yd{bottom:808.706667pt;}
.y38{bottom:809.506667pt;}
.y37{bottom:827.906667pt;}
.yc{bottom:845.666667pt;}
.y36{bottom:846.306667pt;}
.y35{bottom:864.706667pt;}
.yb{bottom:882.788000pt;}
.y34{bottom:883.106667pt;}
.y33{bottom:901.506667pt;}
.ya{bottom:919.906667pt;}
.y32{bottom:938.306667pt;}
.y9{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.468750pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:22.266667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.440000pt;}
.x4{left:114.720000pt;}
.x9{left:121.440000pt;}
.xa{left:149.440000pt;}
.xc{left:153.440000pt;}
.xb{left:157.440000pt;}
.x5{left:359.040000pt;}
.x3{left:414.066667pt;}
.x8{left:460.640000pt;}
.x6{left:464.640000pt;}
.x7{left:493.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; }
  