
    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_f153e92b250a8c3788f13c9f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.073000;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_ab4843053853f564457151b9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.073000;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_bbea970f63a07c012da1ac8c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.024000;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_d4fb7549e1c2b64d4f713911.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.026000;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;}
.m1{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,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);}
.m3{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;}
.v1{vertical-align:27.416400px;}
.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;}
}
.ws0{word-spacing:-19.200000px;}
.ws2{word-spacing:-16.440000px;}
.ws1{word-spacing:-13.440000px;}
.ws31{word-spacing:-1.980000px;}
.ws17{word-spacing:-1.860000px;}
.ws12{word-spacing:-1.740000px;}
.ws70{word-spacing:-1.620000px;}
.ws43{word-spacing:-1.500000px;}
.ws53{word-spacing:-1.440000px;}
.ws1d{word-spacing:-1.320000px;}
.ws1e{word-spacing:-1.260000px;}
.ws6f{word-spacing:-1.200000px;}
.ws3c{word-spacing:-1.080000px;}
.ws3d{word-spacing:-0.900000px;}
.ws52{word-spacing:-0.780000px;}
.ws32{word-spacing:-0.600000px;}
.ws20{word-spacing:-0.420000px;}
.ws54{word-spacing:-0.300000px;}
.ws7b{word-spacing:-0.060000px;}
.ws3{word-spacing:0.000000px;}
.ws74{word-spacing:0.420000px;}
.ws6c{word-spacing:0.600000px;}
.ws4f{word-spacing:0.840000px;}
.ws3f{word-spacing:1.020000px;}
.ws29{word-spacing:1.320000px;}
.ws61{word-spacing:1.380000px;}
.ws45{word-spacing:1.560000px;}
.ws60{word-spacing:1.920000px;}
.ws62{word-spacing:2.040000px;}
.ws77{word-spacing:2.160000px;}
.ws5{word-spacing:2.220000px;}
.ws6e{word-spacing:2.280000px;}
.ws65{word-spacing:2.400000px;}
.ws4{word-spacing:2.580000px;}
.ws26{word-spacing:2.640000px;}
.ws1b{word-spacing:2.880000px;}
.ws1c{word-spacing:2.940000px;}
.ws2f{word-spacing:3.000000px;}
.ws75{word-spacing:3.060000px;}
.ws4b{word-spacing:3.420000px;}
.ws15{word-spacing:3.540000px;}
.ws14{word-spacing:3.660000px;}
.ws11{word-spacing:3.840000px;}
.ws16{word-spacing:3.900000px;}
.ws13{word-spacing:4.200000px;}
.ws34{word-spacing:4.440000px;}
.ws1a{word-spacing:4.680000px;}
.ws19{word-spacing:4.740000px;}
.ws2e{word-spacing:4.860000px;}
.ws30{word-spacing:4.980000px;}
.wse{word-spacing:5.160000px;}
.ws79{word-spacing:5.220000px;}
.ws33{word-spacing:5.460000px;}
.ws10{word-spacing:5.640000px;}
.ws24{word-spacing:5.760000px;}
.ws69{word-spacing:5.880000px;}
.ws37{word-spacing:6.180000px;}
.ws57{word-spacing:6.300000px;}
.ws35{word-spacing:6.420000px;}
.ws3e{word-spacing:6.600000px;}
.ws5b{word-spacing:6.660000px;}
.ws67{word-spacing:6.960000px;}
.ws36{word-spacing:7.260000px;}
.ws51{word-spacing:7.320000px;}
.ws58{word-spacing:7.440000px;}
.ws4e{word-spacing:7.500000px;}
.wsb{word-spacing:7.740000px;}
.ws78{word-spacing:7.860000px;}
.ws27{word-spacing:8.280000px;}
.ws55{word-spacing:8.340000px;}
.ws22{word-spacing:8.640000px;}
.ws72{word-spacing:8.700000px;}
.ws6{word-spacing:8.820000px;}
.ws66{word-spacing:9.000000px;}
.wsa{word-spacing:9.120000px;}
.ws23{word-spacing:9.300000px;}
.ws63{word-spacing:9.420000px;}
.ws4a{word-spacing:9.540000px;}
.ws48{word-spacing:9.600000px;}
.ws4c{word-spacing:10.080000px;}
.ws25{word-spacing:10.380000px;}
.ws5e{word-spacing:10.440000px;}
.ws18{word-spacing:10.500000px;}
.ws4d{word-spacing:10.680000px;}
.ws21{word-spacing:10.860000px;}
.ws64{word-spacing:11.100000px;}
.ws5a{word-spacing:11.220000px;}
.ws2c{word-spacing:11.280000px;}
.ws6d{word-spacing:11.460000px;}
.ws7a{word-spacing:11.520000px;}
.ws71{word-spacing:11.640000px;}
.ws3b{word-spacing:11.700000px;}
.wsf{word-spacing:11.880000px;}
.ws5d{word-spacing:11.940000px;}
.ws44{word-spacing:12.000000px;}
.ws1f{word-spacing:12.780000px;}
.ws2b{word-spacing:13.320000px;}
.ws41{word-spacing:13.980000px;}
.ws9{word-spacing:14.220000px;}
.wsd{word-spacing:14.340000px;}
.ws46{word-spacing:14.640000px;}
.ws49{word-spacing:14.700000px;}
.ws6b{word-spacing:14.760000px;}
.ws47{word-spacing:15.900000px;}
.ws40{word-spacing:16.080000px;}
.ws68{word-spacing:16.440000px;}
.ws6a{word-spacing:17.100000px;}
.ws59{word-spacing:17.160000px;}
.ws76{word-spacing:17.760000px;}
.ws38{word-spacing:17.820000px;}
.ws5c{word-spacing:18.420000px;}
.ws42{word-spacing:18.840000px;}
.ws2a{word-spacing:18.900000px;}
.ws73{word-spacing:19.380000px;}
.wsc{word-spacing:19.740000px;}
.ws28{word-spacing:21.300000px;}
.ws7{word-spacing:22.620000px;}
.ws2d{word-spacing:23.400000px;}
.ws56{word-spacing:24.300000px;}
.ws3a{word-spacing:24.360000px;}
.ws8{word-spacing:26.400000px;}
.ws39{word-spacing:28.440000px;}
.ws5f{word-spacing:33.660000px;}
.ws50{word-spacing:811.608600px;}
._4{margin-left:-3.300000px;}
._0{margin-left:-1.687200px;}
._3{width:1.104000px;}
._2{width:2.577000px;}
._6{width:10.080000px;}
._5{width:28.740000px;}
._1{width:183.982200px;}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:36.000000px;}
.fs5{font-size:42.000000px;}
.fs1{font-size:45.000000px;}
.fs2{font-size:48.000000px;}
.fs4{font-size:60.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:107.430300px;}
.y2e{bottom:144.489600px;}
.y5a{bottom:161.064600px;}
.y2d{bottom:161.349600px;}
.y59{bottom:177.639600px;}
.y2c{bottom:178.209600px;}
.y58{bottom:194.214600px;}
.y2b{bottom:195.069600px;}
.y57{bottom:210.789600px;}
.y2a{bottom:211.929600px;}
.y56{bottom:227.364600px;}
.y29{bottom:228.789600px;}
.y55{bottom:243.939600px;}
.y28{bottom:245.649600px;}
.y54{bottom:260.514600px;}
.y27{bottom:262.509600px;}
.y53{bottom:277.089600px;}
.y26{bottom:279.369600px;}
.y52{bottom:293.664600px;}
.y25{bottom:296.229600px;}
.y51{bottom:310.239600px;}
.y24{bottom:313.089600px;}
.y50{bottom:326.814600px;}
.y23{bottom:329.949600px;}
.y4f{bottom:343.389600px;}
.y79{bottom:346.535550px;}
.y98{bottom:346.536900px;}
.y22{bottom:346.809600px;}
.y4e{bottom:359.964600px;}
.y78{bottom:363.546750px;}
.y97{bottom:363.546900px;}
.y21{bottom:363.669600px;}
.y4d{bottom:376.539600px;}
.y20{bottom:380.529600px;}
.y77{bottom:380.556750px;}
.y96{bottom:380.556900px;}
.y4c{bottom:393.114600px;}
.y1f{bottom:397.389600px;}
.y76{bottom:397.567350px;}
.y4b{bottom:409.689600px;}
.y1e{bottom:414.249600px;}
.y95{bottom:414.576150px;}
.y75{bottom:414.578550px;}
.y4a{bottom:426.264600px;}
.y1d{bottom:431.109600px;}
.y94{bottom:431.586150px;}
.y74{bottom:431.588550px;}
.y49{bottom:442.839600px;}
.y1c{bottom:447.969600px;}
.y93{bottom:448.599750px;}
.y73{bottom:448.614600px;}
.y48{bottom:459.414600px;}
.y1b{bottom:464.829600px;}
.y92{bottom:465.609750px;}
.y72{bottom:465.624600px;}
.y47{bottom:475.989600px;}
.y1a{bottom:481.689600px;}
.y91{bottom:482.619750px;}
.y71{bottom:482.634600px;}
.y46{bottom:492.564600px;}
.y19{bottom:498.549600px;}
.y90{bottom:499.629750px;}
.y70{bottom:499.644600px;}
.y45{bottom:509.139600px;}
.y18{bottom:515.409600px;}
.y8f{bottom:516.639750px;}
.y6f{bottom:516.654600px;}
.y44{bottom:525.714600px;}
.y17{bottom:532.269600px;}
.y8e{bottom:533.652600px;}
.y6e{bottom:533.664600px;}
.y43{bottom:542.289600px;}
.y16{bottom:549.129600px;}
.y8d{bottom:550.662600px;}
.y6d{bottom:550.674600px;}
.y42{bottom:558.864600px;}
.y15{bottom:565.989600px;}
.y8c{bottom:567.672600px;}
.y6c{bottom:567.684600px;}
.y41{bottom:575.439600px;}
.y14{bottom:582.849600px;}
.y8b{bottom:584.682600px;}
.y6b{bottom:584.694600px;}
.y40{bottom:592.014600px;}
.y13{bottom:599.709600px;}
.y8a{bottom:601.694100px;}
.y6a{bottom:601.704600px;}
.y3f{bottom:608.589600px;}
.y12{bottom:616.569600px;}
.y89{bottom:618.704100px;}
.y69{bottom:618.714600px;}
.y3e{bottom:625.164600px;}
.y11{bottom:633.429600px;}
.y88{bottom:635.715450px;}
.y68{bottom:635.724600px;}
.y3d{bottom:641.739600px;}
.y10{bottom:650.289600px;}
.y87{bottom:652.725450px;}
.y67{bottom:652.734600px;}
.y3c{bottom:658.314600px;}
.yf{bottom:667.149600px;}
.y86{bottom:669.737550px;}
.y66{bottom:669.744600px;}
.y3b{bottom:674.889600px;}
.ye{bottom:684.009600px;}
.y85{bottom:686.747550px;}
.y65{bottom:686.754600px;}
.y3a{bottom:691.464600px;}
.yd{bottom:700.869600px;}
.y84{bottom:703.757550px;}
.y64{bottom:703.764600px;}
.y39{bottom:708.039600px;}
.yc{bottom:717.729600px;}
.y83{bottom:720.769050px;}
.y63{bottom:720.774600px;}
.y38{bottom:724.614600px;}
.yb{bottom:734.589600px;}
.y82{bottom:737.779050px;}
.y62{bottom:737.784600px;}
.y37{bottom:741.189600px;}
.ya{bottom:751.449600px;}
.y81{bottom:754.789650px;}
.y61{bottom:754.794600px;}
.y36{bottom:757.764600px;}
.y9{bottom:768.309600px;}
.y80{bottom:771.800550px;}
.y60{bottom:771.804600px;}
.y35{bottom:774.339600px;}
.y7f{bottom:788.810550px;}
.y5f{bottom:788.814600px;}
.y34{bottom:790.914600px;}
.y7e{bottom:805.820550px;}
.y5e{bottom:805.824600px;}
.y8{bottom:806.424600px;}
.y33{bottom:807.489600px;}
.y7d{bottom:822.830550px;}
.y5d{bottom:822.834600px;}
.y7{bottom:823.284600px;}
.y32{bottom:824.064600px;}
.y7c{bottom:839.840550px;}
.y5c{bottom:839.844600px;}
.y6{bottom:840.144600px;}
.y31{bottom:840.639600px;}
.y7b{bottom:856.850550px;}
.y5b{bottom:856.854600px;}
.y5{bottom:857.004600px;}
.y30{bottom:857.214600px;}
.y2f{bottom:873.789600px;}
.y7a{bottom:873.860550px;}
.y4{bottom:873.864600px;}
.y1{bottom:916.418400px;}
.y2{bottom:923.272500px;}
.h3{height:37.170000px;}
.h4{height:39.648000px;}
.h6{height:47.400000px;}
.h5{height:49.560000px;}
.h2{height:69.384000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x3{left:97.795200px;}
.x5{left:127.552800px;}
.x2{left:338.917500px;}
.x6{left:372.037800px;}
.x7{left:401.797800px;}
.x9{left:478.775250px;}
.xa{left:493.340250px;}
.x8{left:497.390250px;}
.x4{left:587.191350px;}
.x1{left:593.539350px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.370133pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-17.066667pt;}
.ws2{word-spacing:-14.613333pt;}
.ws1{word-spacing:-11.946667pt;}
.ws31{word-spacing:-1.760000pt;}
.ws17{word-spacing:-1.653333pt;}
.ws12{word-spacing:-1.546667pt;}
.ws70{word-spacing:-1.440000pt;}
.ws43{word-spacing:-1.333333pt;}
.ws53{word-spacing:-1.280000pt;}
.ws1d{word-spacing:-1.173333pt;}
.ws1e{word-spacing:-1.120000pt;}
.ws6f{word-spacing:-1.066667pt;}
.ws3c{word-spacing:-0.960000pt;}
.ws3d{word-spacing:-0.800000pt;}
.ws52{word-spacing:-0.693333pt;}
.ws32{word-spacing:-0.533333pt;}
.ws20{word-spacing:-0.373333pt;}
.ws54{word-spacing:-0.266667pt;}
.ws7b{word-spacing:-0.053333pt;}
.ws3{word-spacing:0.000000pt;}
.ws74{word-spacing:0.373333pt;}
.ws6c{word-spacing:0.533333pt;}
.ws4f{word-spacing:0.746667pt;}
.ws3f{word-spacing:0.906667pt;}
.ws29{word-spacing:1.173333pt;}
.ws61{word-spacing:1.226667pt;}
.ws45{word-spacing:1.386667pt;}
.ws60{word-spacing:1.706667pt;}
.ws62{word-spacing:1.813333pt;}
.ws77{word-spacing:1.920000pt;}
.ws5{word-spacing:1.973333pt;}
.ws6e{word-spacing:2.026667pt;}
.ws65{word-spacing:2.133333pt;}
.ws4{word-spacing:2.293333pt;}
.ws26{word-spacing:2.346667pt;}
.ws1b{word-spacing:2.560000pt;}
.ws1c{word-spacing:2.613333pt;}
.ws2f{word-spacing:2.666667pt;}
.ws75{word-spacing:2.720000pt;}
.ws4b{word-spacing:3.040000pt;}
.ws15{word-spacing:3.146667pt;}
.ws14{word-spacing:3.253333pt;}
.ws11{word-spacing:3.413333pt;}
.ws16{word-spacing:3.466667pt;}
.ws13{word-spacing:3.733333pt;}
.ws34{word-spacing:3.946667pt;}
.ws1a{word-spacing:4.160000pt;}
.ws19{word-spacing:4.213333pt;}
.ws2e{word-spacing:4.320000pt;}
.ws30{word-spacing:4.426667pt;}
.wse{word-spacing:4.586667pt;}
.ws79{word-spacing:4.640000pt;}
.ws33{word-spacing:4.853333pt;}
.ws10{word-spacing:5.013333pt;}
.ws24{word-spacing:5.120000pt;}
.ws69{word-spacing:5.226667pt;}
.ws37{word-spacing:5.493333pt;}
.ws57{word-spacing:5.600000pt;}
.ws35{word-spacing:5.706667pt;}
.ws3e{word-spacing:5.866667pt;}
.ws5b{word-spacing:5.920000pt;}
.ws67{word-spacing:6.186667pt;}
.ws36{word-spacing:6.453333pt;}
.ws51{word-spacing:6.506667pt;}
.ws58{word-spacing:6.613333pt;}
.ws4e{word-spacing:6.666667pt;}
.wsb{word-spacing:6.880000pt;}
.ws78{word-spacing:6.986667pt;}
.ws27{word-spacing:7.360000pt;}
.ws55{word-spacing:7.413333pt;}
.ws22{word-spacing:7.680000pt;}
.ws72{word-spacing:7.733333pt;}
.ws6{word-spacing:7.840000pt;}
.ws66{word-spacing:8.000000pt;}
.wsa{word-spacing:8.106667pt;}
.ws23{word-spacing:8.266667pt;}
.ws63{word-spacing:8.373333pt;}
.ws4a{word-spacing:8.480000pt;}
.ws48{word-spacing:8.533333pt;}
.ws4c{word-spacing:8.960000pt;}
.ws25{word-spacing:9.226667pt;}
.ws5e{word-spacing:9.280000pt;}
.ws18{word-spacing:9.333333pt;}
.ws4d{word-spacing:9.493333pt;}
.ws21{word-spacing:9.653333pt;}
.ws64{word-spacing:9.866667pt;}
.ws5a{word-spacing:9.973333pt;}
.ws2c{word-spacing:10.026667pt;}
.ws6d{word-spacing:10.186667pt;}
.ws7a{word-spacing:10.240000pt;}
.ws71{word-spacing:10.346667pt;}
.ws3b{word-spacing:10.400000pt;}
.wsf{word-spacing:10.560000pt;}
.ws5d{word-spacing:10.613333pt;}
.ws44{word-spacing:10.666667pt;}
.ws1f{word-spacing:11.360000pt;}
.ws2b{word-spacing:11.840000pt;}
.ws41{word-spacing:12.426667pt;}
.ws9{word-spacing:12.640000pt;}
.wsd{word-spacing:12.746667pt;}
.ws46{word-spacing:13.013333pt;}
.ws49{word-spacing:13.066667pt;}
.ws6b{word-spacing:13.120000pt;}
.ws47{word-spacing:14.133333pt;}
.ws40{word-spacing:14.293333pt;}
.ws68{word-spacing:14.613333pt;}
.ws6a{word-spacing:15.200000pt;}
.ws59{word-spacing:15.253333pt;}
.ws76{word-spacing:15.786667pt;}
.ws38{word-spacing:15.840000pt;}
.ws5c{word-spacing:16.373333pt;}
.ws42{word-spacing:16.746667pt;}
.ws2a{word-spacing:16.800000pt;}
.ws73{word-spacing:17.226667pt;}
.wsc{word-spacing:17.546667pt;}
.ws28{word-spacing:18.933333pt;}
.ws7{word-spacing:20.106667pt;}
.ws2d{word-spacing:20.800000pt;}
.ws56{word-spacing:21.600000pt;}
.ws3a{word-spacing:21.653333pt;}
.ws8{word-spacing:23.466667pt;}
.ws39{word-spacing:25.280000pt;}
.ws5f{word-spacing:29.920000pt;}
.ws50{word-spacing:721.429867pt;}
._4{margin-left:-2.933333pt;}
._0{margin-left:-1.499733pt;}
._3{width:0.981333pt;}
._2{width:2.290667pt;}
._6{width:8.960000pt;}
._5{width:25.546667pt;}
._1{width:163.539733pt;}
.fs3{font-size:32.000000pt;}
.fs5{font-size:37.333333pt;}
.fs1{font-size:40.000000pt;}
.fs2{font-size:42.666667pt;}
.fs4{font-size:53.333333pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:95.493600pt;}
.y2e{bottom:128.435200pt;}
.y5a{bottom:143.168533pt;}
.y2d{bottom:143.421867pt;}
.y59{bottom:157.901867pt;}
.y2c{bottom:158.408533pt;}
.y58{bottom:172.635200pt;}
.y2b{bottom:173.395200pt;}
.y57{bottom:187.368533pt;}
.y2a{bottom:188.381867pt;}
.y56{bottom:202.101867pt;}
.y29{bottom:203.368533pt;}
.y55{bottom:216.835200pt;}
.y28{bottom:218.355200pt;}
.y54{bottom:231.568533pt;}
.y27{bottom:233.341867pt;}
.y53{bottom:246.301867pt;}
.y26{bottom:248.328533pt;}
.y52{bottom:261.035200pt;}
.y25{bottom:263.315200pt;}
.y51{bottom:275.768533pt;}
.y24{bottom:278.301867pt;}
.y50{bottom:290.501867pt;}
.y23{bottom:293.288533pt;}
.y4f{bottom:305.235200pt;}
.y79{bottom:308.031600pt;}
.y98{bottom:308.032800pt;}
.y22{bottom:308.275200pt;}
.y4e{bottom:319.968533pt;}
.y78{bottom:323.152667pt;}
.y97{bottom:323.152800pt;}
.y21{bottom:323.261867pt;}
.y4d{bottom:334.701867pt;}
.y20{bottom:338.248533pt;}
.y77{bottom:338.272667pt;}
.y96{bottom:338.272800pt;}
.y4c{bottom:349.435200pt;}
.y1f{bottom:353.235200pt;}
.y76{bottom:353.393200pt;}
.y4b{bottom:364.168533pt;}
.y1e{bottom:368.221867pt;}
.y95{bottom:368.512133pt;}
.y75{bottom:368.514267pt;}
.y4a{bottom:378.901867pt;}
.y1d{bottom:383.208533pt;}
.y94{bottom:383.632133pt;}
.y74{bottom:383.634267pt;}
.y49{bottom:393.635200pt;}
.y1c{bottom:398.195200pt;}
.y93{bottom:398.755333pt;}
.y73{bottom:398.768533pt;}
.y48{bottom:408.368533pt;}
.y1b{bottom:413.181867pt;}
.y92{bottom:413.875333pt;}
.y72{bottom:413.888533pt;}
.y47{bottom:423.101867pt;}
.y1a{bottom:428.168533pt;}
.y91{bottom:428.995333pt;}
.y71{bottom:429.008533pt;}
.y46{bottom:437.835200pt;}
.y19{bottom:443.155200pt;}
.y90{bottom:444.115333pt;}
.y70{bottom:444.128533pt;}
.y45{bottom:452.568533pt;}
.y18{bottom:458.141867pt;}
.y8f{bottom:459.235333pt;}
.y6f{bottom:459.248533pt;}
.y44{bottom:467.301867pt;}
.y17{bottom:473.128533pt;}
.y8e{bottom:474.357867pt;}
.y6e{bottom:474.368533pt;}
.y43{bottom:482.035200pt;}
.y16{bottom:488.115200pt;}
.y8d{bottom:489.477867pt;}
.y6d{bottom:489.488533pt;}
.y42{bottom:496.768533pt;}
.y15{bottom:503.101867pt;}
.y8c{bottom:504.597867pt;}
.y6c{bottom:504.608533pt;}
.y41{bottom:511.501867pt;}
.y14{bottom:518.088533pt;}
.y8b{bottom:519.717867pt;}
.y6b{bottom:519.728533pt;}
.y40{bottom:526.235200pt;}
.y13{bottom:533.075200pt;}
.y8a{bottom:534.839200pt;}
.y6a{bottom:534.848533pt;}
.y3f{bottom:540.968533pt;}
.y12{bottom:548.061867pt;}
.y89{bottom:549.959200pt;}
.y69{bottom:549.968533pt;}
.y3e{bottom:555.701867pt;}
.y11{bottom:563.048533pt;}
.y88{bottom:565.080400pt;}
.y68{bottom:565.088533pt;}
.y3d{bottom:570.435200pt;}
.y10{bottom:578.035200pt;}
.y87{bottom:580.200400pt;}
.y67{bottom:580.208533pt;}
.y3c{bottom:585.168533pt;}
.yf{bottom:593.021867pt;}
.y86{bottom:595.322267pt;}
.y66{bottom:595.328533pt;}
.y3b{bottom:599.901867pt;}
.ye{bottom:608.008533pt;}
.y85{bottom:610.442267pt;}
.y65{bottom:610.448533pt;}
.y3a{bottom:614.635200pt;}
.yd{bottom:622.995200pt;}
.y84{bottom:625.562267pt;}
.y64{bottom:625.568533pt;}
.y39{bottom:629.368533pt;}
.yc{bottom:637.981867pt;}
.y83{bottom:640.683600pt;}
.y63{bottom:640.688533pt;}
.y38{bottom:644.101867pt;}
.yb{bottom:652.968533pt;}
.y82{bottom:655.803600pt;}
.y62{bottom:655.808533pt;}
.y37{bottom:658.835200pt;}
.ya{bottom:667.955200pt;}
.y81{bottom:670.924133pt;}
.y61{bottom:670.928533pt;}
.y36{bottom:673.568533pt;}
.y9{bottom:682.941867pt;}
.y80{bottom:686.044933pt;}
.y60{bottom:686.048533pt;}
.y35{bottom:688.301867pt;}
.y7f{bottom:701.164933pt;}
.y5f{bottom:701.168533pt;}
.y34{bottom:703.035200pt;}
.y7e{bottom:716.284933pt;}
.y5e{bottom:716.288533pt;}
.y8{bottom:716.821867pt;}
.y33{bottom:717.768533pt;}
.y7d{bottom:731.404933pt;}
.y5d{bottom:731.408533pt;}
.y7{bottom:731.808533pt;}
.y32{bottom:732.501867pt;}
.y7c{bottom:746.524933pt;}
.y5c{bottom:746.528533pt;}
.y6{bottom:746.795200pt;}
.y31{bottom:747.235200pt;}
.y7b{bottom:761.644933pt;}
.y5b{bottom:761.648533pt;}
.y5{bottom:761.781867pt;}
.y30{bottom:761.968533pt;}
.y2f{bottom:776.701867pt;}
.y7a{bottom:776.764933pt;}
.y4{bottom:776.768533pt;}
.y1{bottom:814.594133pt;}
.y2{bottom:820.686667pt;}
.h3{height:33.040000pt;}
.h4{height:35.242667pt;}
.h6{height:42.133333pt;}
.h5{height:44.053333pt;}
.h2{height:61.674667pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x3{left:86.929067pt;}
.x5{left:113.380267pt;}
.x2{left:301.260000pt;}
.x6{left:330.700267pt;}
.x7{left:357.153600pt;}
.x9{left:425.578000pt;}
.xa{left:438.524667pt;}
.x8{left:442.124667pt;}
.x4{left:521.947867pt;}
.x1{left:527.590533pt;}
}




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