
    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_47c53616cbc6f13cadfda979.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_139f575a7774a1b96dada6a1.woff')format("woff");}.ff2{font-family:ff2;line-height:0.680176;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_255cb417717ecd46d019d588.woff')format("woff");}.ff3{font-family:ff3;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.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;}
}
.ws5b{word-spacing:-55.944000px;}
.ws0{word-spacing:-45.005400px;}
.ws1{word-spacing:-44.989800px;}
.ws2{word-spacing:-38.870100px;}
.ws55{word-spacing:-38.655000px;}
.ws79{word-spacing:-38.646000px;}
.ws27{word-spacing:-38.642400px;}
.ws75{word-spacing:-38.592000px;}
.ws50{word-spacing:-38.445000px;}
.ws73{word-spacing:-38.444400px;}
.ws37{word-spacing:-38.442600px;}
.ws31{word-spacing:-38.440800px;}
.ws2a{word-spacing:-38.439000px;}
.ws38{word-spacing:-38.435400px;}
.ws5{word-spacing:-38.433000px;}
.ws5c{word-spacing:-38.372400px;}
.ws51{word-spacing:-38.366100px;}
.ws88{word-spacing:-38.310000px;}
.ws8c{word-spacing:-38.304000px;}
.ws7b{word-spacing:-38.166000px;}
.ws57{word-spacing:-38.164200px;}
.ws7e{word-spacing:-38.160000px;}
.ws15{word-spacing:-38.151900px;}
.ws4d{word-spacing:-38.147400px;}
.ws74{word-spacing:-38.145600px;}
.wsa{word-spacing:-37.944000px;}
.ws6a{word-spacing:-37.942200px;}
.ws16{word-spacing:-37.935000px;}
.ws9{word-spacing:-37.932300px;}
.ws8{word-spacing:-37.929600px;}
.ws7{word-spacing:-37.860300px;}
.ws14{word-spacing:-37.724400px;}
.ws59{word-spacing:-37.713600px;}
.ws3e{word-spacing:-37.706400px;}
.ws6{word-spacing:-37.647900px;}
.ws4{word-spacing:-37.445100px;}
.ws24{word-spacing:-37.434600px;}
.ws67{word-spacing:-37.423200px;}
.ws5d{word-spacing:-37.224000px;}
.ws84{word-spacing:-37.216800px;}
.ws63{word-spacing:-37.000800px;}
.wsf{word-spacing:-36.504000px;}
.ws47{word-spacing:-36.495000px;}
.ws2c{word-spacing:-36.482400px;}
.ws3f{word-spacing:-36.285300px;}
.ws20{word-spacing:-36.000000px;}
.ws5a{word-spacing:-35.994600px;}
.ws52{word-spacing:-35.784000px;}
.ws7f{word-spacing:-35.562600px;}
.ws13{word-spacing:-35.561400px;}
.ws62{word-spacing:-35.557200px;}
.ws3c{word-spacing:-35.051400px;}
.ws45{word-spacing:-35.049000px;}
.ws5f{word-spacing:-34.840800px;}
.ws85{word-spacing:-34.839600px;}
.ws1d{word-spacing:-34.828200px;}
.ws42{word-spacing:-34.821900px;}
.ws6b{word-spacing:-34.551000px;}
.ws12{word-spacing:-34.122600px;}
.ws6c{word-spacing:-33.840000px;}
.ws89{word-spacing:-33.624000px;}
.ws3{word-spacing:-33.547800px;}
.ws6f{word-spacing:-33.389400px;}
.ws30{word-spacing:-32.895000px;}
.ws1a{word-spacing:-32.679000px;}
.ws33{word-spacing:-32.675400px;}
.wsd{word-spacing:-32.175000px;}
.ws17{word-spacing:-31.671600px;}
.ws81{word-spacing:-31.462200px;}
.ws4f{word-spacing:-31.453200px;}
.ws80{word-spacing:-31.248000px;}
.ws65{word-spacing:-30.964200px;}
.ws1c{word-spacing:-30.945000px;}
.ws54{word-spacing:-30.744000px;}
.ws32{word-spacing:-30.743100px;}
.ws18{word-spacing:-30.735000px;}
.ws2b{word-spacing:-30.524400px;}
.ws36{word-spacing:-30.522600px;}
.ws19{word-spacing:-30.024600px;}
.ws83{word-spacing:-30.022200px;}
.ws8e{word-spacing:-30.015000px;}
.ws35{word-spacing:-29.522400px;}
.ws41{word-spacing:-29.512800px;}
.ws56{word-spacing:-29.304000px;}
.ws76{word-spacing:-29.301300px;}
.ws4b{word-spacing:-29.291400px;}
.ws8b{word-spacing:-28.588200px;}
.ws53{word-spacing:-28.584000px;}
.ws64{word-spacing:-28.366200px;}
.ws8f{word-spacing:-28.230000px;}
.ws25{word-spacing:-27.144000px;}
.ws49{word-spacing:-26.921400px;}
.ws46{word-spacing:-26.915400px;}
.ws68{word-spacing:-26.423100px;}
.ws26{word-spacing:-26.417700px;}
.ws72{word-spacing:-26.415600px;}
.ws1e{word-spacing:-25.691400px;}
.ws23{word-spacing:-25.206000px;}
.ws87{word-spacing:-25.194000px;}
.ws5e{word-spacing:-25.193700px;}
.ws60{word-spacing:-24.986400px;}
.wse{word-spacing:-24.471000px;}
.ws11{word-spacing:-24.253200px;}
.ws2d{word-spacing:-24.247200px;}
.ws78{word-spacing:-23.760000px;}
.ws22{word-spacing:-23.546400px;}
.ws90{word-spacing:-23.544000px;}
.ws2e{word-spacing:-23.033400px;}
.ws4c{word-spacing:-22.590000px;}
.ws70{word-spacing:-22.301400px;}
.ws66{word-spacing:-22.108200px;}
.ws69{word-spacing:-22.087800px;}
.ws48{word-spacing:-21.884400px;}
.ws86{word-spacing:-21.384000px;}
.ws1f{word-spacing:-20.880000px;}
.ws71{word-spacing:-19.942800px;}
.ws2f{word-spacing:-19.728000px;}
.ws8a{word-spacing:-19.578000px;}
.ws34{word-spacing:-19.006200px;}
.ws82{word-spacing:-18.504000px;}
.ws43{word-spacing:-18.501000px;}
.ws4e{word-spacing:-18.496800px;}
.ws7c{word-spacing:-17.985600px;}
.ws61{word-spacing:-17.775000px;}
.ws58{word-spacing:-17.070000px;}
.ws7a{word-spacing:-16.335000px;}
.ws91{word-spacing:-15.593400px;}
.ws4a{word-spacing:-14.889600px;}
.ws10{word-spacing:-14.880000px;}
.ws3a{word-spacing:-11.789400px;}
.ws39{word-spacing:-11.517900px;}
.ws21{word-spacing:-8.932200px;}
.ws3d{word-spacing:-8.625600px;}
.wsb{word-spacing:-7.901100px;}
.wsc{word-spacing:-7.486800px;}
.ws7d{word-spacing:-6.980400px;}
.ws6d{word-spacing:-6.261000px;}
.ws3b{word-spacing:-6.256200px;}
.ws44{word-spacing:-5.526000px;}
.ws6e{word-spacing:-5.040000px;}
.ws1b{word-spacing:-4.320000px;}
.ws29{word-spacing:-2.439000px;}
.ws28{word-spacing:-1.935900px;}
.ws77{word-spacing:5.276400px;}
.ws40{word-spacing:13.176000px;}
.ws8d{word-spacing:321.336000px;}
._b{margin-left:-2.251800px;}
._0{margin-left:-1.110600px;}
._4{width:1.070100px;}
._e{width:17.120700px;}
._1{width:18.144000px;}
._5{width:19.758600px;}
._d{width:21.812700px;}
._c{width:23.259600px;}
._7{width:24.952500px;}
._1b{width:25.968000px;}
._f{width:27.072600px;}
._10{width:28.153200px;}
._15{width:29.981700px;}
._12{width:31.491000px;}
._8{width:33.105000px;}
._14{width:34.470300px;}
._2{width:36.560100px;}
._17{width:38.518200px;}
._1d{width:39.798000px;}
._1c{width:40.836000px;}
._9{width:42.168000px;}
._a{width:43.195800px;}
._21{width:44.576400px;}
._18{width:45.625200px;}
._13{width:48.104400px;}
._6{width:49.667400px;}
._1a{width:51.564600px;}
._11{width:52.776000px;}
._16{width:55.207800px;}
._1f{width:62.331600px;}
._20{width:63.353700px;}
._19{width:70.404300px;}
._1e{width:73.440000px;}
._3{width:287.934000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:66.300000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.300000px;}
.y0{bottom:0.000000px;}
.y5{bottom:4.590000px;}
.y4{bottom:52.725000px;}
.y3f{bottom:91.515000px;}
.ya3{bottom:96.015000px;}
.y2e{bottom:108.975000px;}
.y3e{bottom:112.215000px;}
.ya2{bottom:116.715000px;}
.y81{bottom:121.215000px;}
.y2d{bottom:129.675000px;}
.y3d{bottom:132.915000px;}
.ya1{bottom:137.415000px;}
.y80{bottom:141.915000px;}
.y2c{bottom:150.375000px;}
.y3c{bottom:153.615000px;}
.y2b{bottom:171.075000px;}
.y6c{bottom:173.236500px;}
.y3b{bottom:174.315000px;}
.y7f{bottom:177.736500px;}
.y2a{bottom:191.775000px;}
.y6b{bottom:193.936500px;}
.ya0{bottom:208.875000px;}
.y3a{bottom:210.136500px;}
.y29{bottom:212.475000px;}
.y7e{bottom:213.375000px;}
.y6a{bottom:214.636500px;}
.y28{bottom:233.175000px;}
.y7d{bottom:234.075000px;}
.y69{bottom:235.336500px;}
.y9f{bottom:244.515000px;}
.y68{bottom:256.036500px;}
.y9e{bottom:265.215000px;}
.y27{bottom:268.815000px;}
.y7c{bottom:269.715000px;}
.y9d{bottom:285.915000px;}
.y26{bottom:289.515000px;}
.y7b{bottom:290.415000px;}
.y67{bottom:291.675000px;}
.y25{bottom:310.215000px;}
.y5c{bottom:319.575000px;}
.y9c{bottom:321.736500px;}
.y7a{bottom:326.236500px;}
.y24{bottom:330.915000px;}
.y9b{bottom:342.436500px;}
.y23{bottom:351.615000px;}
.y5b{bottom:355.215000px;}
.y79{bottom:361.875000px;}
.y22{bottom:372.315000px;}
.y9a{bottom:378.075000px;}
.y78{bottom:382.575000px;}
.y5a{bottom:391.036500px;}
.y21{bottom:393.015000px;}
.y99{bottom:398.775000px;}
.y77{bottom:403.275000px;}
.y59{bottom:411.736500px;}
.y20{bottom:413.715000px;}
.y76{bottom:423.975000px;}
.y1f{bottom:434.415000px;}
.y75{bottom:444.675000px;}
.y58{bottom:447.375000px;}
.y1e{bottom:455.115000px;}
.y74{bottom:465.375000px;}
.y57{bottom:468.075000px;}
.y1d{bottom:475.815000px;}
.y73{bottom:486.075000px;}
.y98{bottom:490.936500px;}
.y1c{bottom:496.515000px;}
.y56{bottom:503.715000px;}
.y72{bottom:506.775000px;}
.y97{bottom:511.636500px;}
.y1b{bottom:517.215000px;}
.y55{bottom:524.415000px;}
.y71{bottom:527.475000px;}
.y96{bottom:532.336500px;}
.y1a{bottom:537.915000px;}
.y66{bottom:540.436500px;}
.y19{bottom:558.615000px;}
.y54{bottom:560.236500px;}
.y65{bottom:561.136500px;}
.y70{bottom:563.115000px;}
.y95{bottom:567.975000px;}
.y18{bottom:579.315000px;}
.y53{bottom:580.936500px;}
.y64{bottom:581.836500px;}
.y6f{bottom:583.815000px;}
.y39{bottom:586.515000px;}
.y94{bottom:588.675000px;}
.y63{bottom:602.536500px;}
.y6e{bottom:604.515000px;}
.y17{bottom:615.136500px;}
.y52{bottom:616.575000px;}
.y38{bottom:622.336500px;}
.y62{bottom:623.236500px;}
.y93{bottom:624.315000px;}
.y51{bottom:637.275000px;}
.y6d{bottom:640.155000px;}
.y61{bottom:643.936500px;}
.y92{bottom:645.015000px;}
.y16{bottom:650.775000px;}
.y37{bottom:657.975000px;}
.y60{bottom:664.636500px;}
.y15{bottom:671.475000px;}
.y50{bottom:672.915000px;}
.y91{bottom:680.836500px;}
.y14{bottom:692.175000px;}
.y36{bottom:693.615000px;}
.y5f{bottom:700.275000px;}
.y90{bottom:701.536500px;}
.y13{bottom:712.875000px;}
.y35{bottom:714.315000px;}
.y12{bottom:733.575000px;}
.y34{bottom:735.015000px;}
.y5e{bottom:735.915000px;}
.y8f{bottom:737.175000px;}
.y4f{bottom:750.136500px;}
.y11{bottom:754.275000px;}
.y33{bottom:755.715000px;}
.y8e{bottom:757.875000px;}
.y5d{bottom:771.555000px;}
.y10{bottom:774.975000px;}
.y32{bottom:776.415000px;}
.y8d{bottom:778.575000px;}
.y4e{bottom:785.775000px;}
.yf{bottom:795.675000px;}
.y31{bottom:797.115000px;}
.y4d{bottom:806.475000px;}
.y8c{bottom:814.215000px;}
.ye{bottom:816.375000px;}
.y4c{bottom:827.175000px;}
.y8b{bottom:834.915000px;}
.y4b{bottom:847.875000px;}
.yd{bottom:852.015000px;}
.y8a{bottom:855.615000px;}
.y4a{bottom:868.575000px;}
.yc{bottom:887.836500px;}
.y49{bottom:889.275000px;}
.y89{bottom:891.436500px;}
.y48{bottom:909.975000px;}
.y88{bottom:912.136500px;}
.yb{bottom:923.475000px;}
.y47{bottom:930.675000px;}
.y87{bottom:947.775000px;}
.y46{bottom:951.375000px;}
.ya{bottom:959.115000px;}
.y86{bottom:968.475000px;}
.y45{bottom:972.075000px;}
.y44{bottom:992.775000px;}
.y9{bottom:994.936500px;}
.y85{bottom:1004.115000px;}
.y43{bottom:1013.475000px;}
.y84{bottom:1024.815000px;}
.y8{bottom:1030.575000px;}
.y42{bottom:1034.175000px;}
.y41{bottom:1054.875000px;}
.y83{bottom:1060.636500px;}
.y40{bottom:1075.575000px;}
.y82{bottom:1081.336500px;}
.y30{bottom:1096.275000px;}
.y7{bottom:1102.036500px;}
.y2f{bottom:1116.975000px;}
.y6{bottom:1137.675000px;}
.y3{bottom:1176.555000px;}
.y2{bottom:1197.975000px;}
.y1{bottom:1221.915000px;}
.h4{height:20.175000px;}
.h5{height:44.480566px;}
.h3{height:48.796875px;}
.h6{height:50.027344px;}
.h2{height:57.133008px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:16.725000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:127.620000px;}
.x3{left:145.620000px;}
.x2{left:159.838500px;}
.x1{left:163.080000px;}
.x6{left:189.538500px;}
.x4{left:470.025000px;}
.x8{left:531.360000px;}
.xa{left:546.120000px;}
.xb{left:551.700000px;}
.x9{left:565.738500px;}
.x7{left:604.080000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws5b{word-spacing:-49.728000pt;}
.ws0{word-spacing:-40.004800pt;}
.ws1{word-spacing:-39.990933pt;}
.ws2{word-spacing:-34.551200pt;}
.ws55{word-spacing:-34.360000pt;}
.ws79{word-spacing:-34.352000pt;}
.ws27{word-spacing:-34.348800pt;}
.ws75{word-spacing:-34.304000pt;}
.ws50{word-spacing:-34.173333pt;}
.ws73{word-spacing:-34.172800pt;}
.ws37{word-spacing:-34.171200pt;}
.ws31{word-spacing:-34.169600pt;}
.ws2a{word-spacing:-34.168000pt;}
.ws38{word-spacing:-34.164800pt;}
.ws5{word-spacing:-34.162667pt;}
.ws5c{word-spacing:-34.108800pt;}
.ws51{word-spacing:-34.103200pt;}
.ws88{word-spacing:-34.053333pt;}
.ws8c{word-spacing:-34.048000pt;}
.ws7b{word-spacing:-33.925333pt;}
.ws57{word-spacing:-33.923733pt;}
.ws7e{word-spacing:-33.920000pt;}
.ws15{word-spacing:-33.912800pt;}
.ws4d{word-spacing:-33.908800pt;}
.ws74{word-spacing:-33.907200pt;}
.wsa{word-spacing:-33.728000pt;}
.ws6a{word-spacing:-33.726400pt;}
.ws16{word-spacing:-33.720000pt;}
.ws9{word-spacing:-33.717600pt;}
.ws8{word-spacing:-33.715200pt;}
.ws7{word-spacing:-33.653600pt;}
.ws14{word-spacing:-33.532800pt;}
.ws59{word-spacing:-33.523200pt;}
.ws3e{word-spacing:-33.516800pt;}
.ws6{word-spacing:-33.464800pt;}
.ws4{word-spacing:-33.284533pt;}
.ws24{word-spacing:-33.275200pt;}
.ws67{word-spacing:-33.265067pt;}
.ws5d{word-spacing:-33.088000pt;}
.ws84{word-spacing:-33.081600pt;}
.ws63{word-spacing:-32.889600pt;}
.wsf{word-spacing:-32.448000pt;}
.ws47{word-spacing:-32.440000pt;}
.ws2c{word-spacing:-32.428800pt;}
.ws3f{word-spacing:-32.253600pt;}
.ws20{word-spacing:-32.000000pt;}
.ws5a{word-spacing:-31.995200pt;}
.ws52{word-spacing:-31.808000pt;}
.ws7f{word-spacing:-31.611200pt;}
.ws13{word-spacing:-31.610133pt;}
.ws62{word-spacing:-31.606400pt;}
.ws3c{word-spacing:-31.156800pt;}
.ws45{word-spacing:-31.154667pt;}
.ws5f{word-spacing:-30.969600pt;}
.ws85{word-spacing:-30.968533pt;}
.ws1d{word-spacing:-30.958400pt;}
.ws42{word-spacing:-30.952800pt;}
.ws6b{word-spacing:-30.712000pt;}
.ws12{word-spacing:-30.331200pt;}
.ws6c{word-spacing:-30.080000pt;}
.ws89{word-spacing:-29.888000pt;}
.ws3{word-spacing:-29.820267pt;}
.ws6f{word-spacing:-29.679467pt;}
.ws30{word-spacing:-29.240000pt;}
.ws1a{word-spacing:-29.048000pt;}
.ws33{word-spacing:-29.044800pt;}
.wsd{word-spacing:-28.600000pt;}
.ws17{word-spacing:-28.152533pt;}
.ws81{word-spacing:-27.966400pt;}
.ws4f{word-spacing:-27.958400pt;}
.ws80{word-spacing:-27.776000pt;}
.ws65{word-spacing:-27.523733pt;}
.ws1c{word-spacing:-27.506667pt;}
.ws54{word-spacing:-27.328000pt;}
.ws32{word-spacing:-27.327200pt;}
.ws18{word-spacing:-27.320000pt;}
.ws2b{word-spacing:-27.132800pt;}
.ws36{word-spacing:-27.131200pt;}
.ws19{word-spacing:-26.688533pt;}
.ws83{word-spacing:-26.686400pt;}
.ws8e{word-spacing:-26.680000pt;}
.ws35{word-spacing:-26.242133pt;}
.ws41{word-spacing:-26.233600pt;}
.ws56{word-spacing:-26.048000pt;}
.ws76{word-spacing:-26.045600pt;}
.ws4b{word-spacing:-26.036800pt;}
.ws8b{word-spacing:-25.411733pt;}
.ws53{word-spacing:-25.408000pt;}
.ws64{word-spacing:-25.214400pt;}
.ws8f{word-spacing:-25.093333pt;}
.ws25{word-spacing:-24.128000pt;}
.ws49{word-spacing:-23.930133pt;}
.ws46{word-spacing:-23.924800pt;}
.ws68{word-spacing:-23.487200pt;}
.ws26{word-spacing:-23.482400pt;}
.ws72{word-spacing:-23.480533pt;}
.ws1e{word-spacing:-22.836800pt;}
.ws23{word-spacing:-22.405333pt;}
.ws87{word-spacing:-22.394667pt;}
.ws5e{word-spacing:-22.394400pt;}
.ws60{word-spacing:-22.210133pt;}
.wse{word-spacing:-21.752000pt;}
.ws11{word-spacing:-21.558400pt;}
.ws2d{word-spacing:-21.553067pt;}
.ws78{word-spacing:-21.120000pt;}
.ws22{word-spacing:-20.930133pt;}
.ws90{word-spacing:-20.928000pt;}
.ws2e{word-spacing:-20.474133pt;}
.ws4c{word-spacing:-20.080000pt;}
.ws70{word-spacing:-19.823467pt;}
.ws66{word-spacing:-19.651733pt;}
.ws69{word-spacing:-19.633600pt;}
.ws48{word-spacing:-19.452800pt;}
.ws86{word-spacing:-19.008000pt;}
.ws1f{word-spacing:-18.560000pt;}
.ws71{word-spacing:-17.726933pt;}
.ws2f{word-spacing:-17.536000pt;}
.ws8a{word-spacing:-17.402667pt;}
.ws34{word-spacing:-16.894400pt;}
.ws82{word-spacing:-16.448000pt;}
.ws43{word-spacing:-16.445333pt;}
.ws4e{word-spacing:-16.441600pt;}
.ws7c{word-spacing:-15.987200pt;}
.ws61{word-spacing:-15.800000pt;}
.ws58{word-spacing:-15.173333pt;}
.ws7a{word-spacing:-14.520000pt;}
.ws91{word-spacing:-13.860800pt;}
.ws4a{word-spacing:-13.235200pt;}
.ws10{word-spacing:-13.226667pt;}
.ws3a{word-spacing:-10.479467pt;}
.ws39{word-spacing:-10.238133pt;}
.ws21{word-spacing:-7.939733pt;}
.ws3d{word-spacing:-7.667200pt;}
.wsb{word-spacing:-7.023200pt;}
.wsc{word-spacing:-6.654933pt;}
.ws7d{word-spacing:-6.204800pt;}
.ws6d{word-spacing:-5.565333pt;}
.ws3b{word-spacing:-5.561067pt;}
.ws44{word-spacing:-4.912000pt;}
.ws6e{word-spacing:-4.480000pt;}
.ws1b{word-spacing:-3.840000pt;}
.ws29{word-spacing:-2.168000pt;}
.ws28{word-spacing:-1.720800pt;}
.ws77{word-spacing:4.690133pt;}
.ws40{word-spacing:11.712000pt;}
.ws8d{word-spacing:285.632000pt;}
._b{margin-left:-2.001600pt;}
._0{margin-left:-0.987200pt;}
._4{width:0.951200pt;}
._e{width:15.218400pt;}
._1{width:16.128000pt;}
._5{width:17.563200pt;}
._d{width:19.389067pt;}
._c{width:20.675200pt;}
._7{width:22.180000pt;}
._1b{width:23.082667pt;}
._f{width:24.064533pt;}
._10{width:25.025067pt;}
._15{width:26.650400pt;}
._12{width:27.992000pt;}
._8{width:29.426667pt;}
._14{width:30.640267pt;}
._2{width:32.497867pt;}
._17{width:34.238400pt;}
._1d{width:35.376000pt;}
._1c{width:36.298667pt;}
._9{width:37.482667pt;}
._a{width:38.396267pt;}
._21{width:39.623467pt;}
._18{width:40.555733pt;}
._13{width:42.759467pt;}
._6{width:44.148800pt;}
._1a{width:45.835200pt;}
._11{width:46.912000pt;}
._16{width:49.073600pt;}
._1f{width:55.405867pt;}
._20{width:56.314400pt;}
._19{width:62.581600pt;}
._1e{width:65.280000pt;}
._3{width:255.941333pt;}
.fs2{font-size:58.933333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.933333pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:4.080000pt;}
.y4{bottom:46.866667pt;}
.y3f{bottom:81.346667pt;}
.ya3{bottom:85.346667pt;}
.y2e{bottom:96.866667pt;}
.y3e{bottom:99.746667pt;}
.ya2{bottom:103.746667pt;}
.y81{bottom:107.746667pt;}
.y2d{bottom:115.266667pt;}
.y3d{bottom:118.146667pt;}
.ya1{bottom:122.146667pt;}
.y80{bottom:126.146667pt;}
.y2c{bottom:133.666667pt;}
.y3c{bottom:136.546667pt;}
.y2b{bottom:152.066667pt;}
.y6c{bottom:153.988000pt;}
.y3b{bottom:154.946667pt;}
.y7f{bottom:157.988000pt;}
.y2a{bottom:170.466667pt;}
.y6b{bottom:172.388000pt;}
.ya0{bottom:185.666667pt;}
.y3a{bottom:186.788000pt;}
.y29{bottom:188.866667pt;}
.y7e{bottom:189.666667pt;}
.y6a{bottom:190.788000pt;}
.y28{bottom:207.266667pt;}
.y7d{bottom:208.066667pt;}
.y69{bottom:209.188000pt;}
.y9f{bottom:217.346667pt;}
.y68{bottom:227.588000pt;}
.y9e{bottom:235.746667pt;}
.y27{bottom:238.946667pt;}
.y7c{bottom:239.746667pt;}
.y9d{bottom:254.146667pt;}
.y26{bottom:257.346667pt;}
.y7b{bottom:258.146667pt;}
.y67{bottom:259.266667pt;}
.y25{bottom:275.746667pt;}
.y5c{bottom:284.066667pt;}
.y9c{bottom:285.988000pt;}
.y7a{bottom:289.988000pt;}
.y24{bottom:294.146667pt;}
.y9b{bottom:304.388000pt;}
.y23{bottom:312.546667pt;}
.y5b{bottom:315.746667pt;}
.y79{bottom:321.666667pt;}
.y22{bottom:330.946667pt;}
.y9a{bottom:336.066667pt;}
.y78{bottom:340.066667pt;}
.y5a{bottom:347.588000pt;}
.y21{bottom:349.346667pt;}
.y99{bottom:354.466667pt;}
.y77{bottom:358.466667pt;}
.y59{bottom:365.988000pt;}
.y20{bottom:367.746667pt;}
.y76{bottom:376.866667pt;}
.y1f{bottom:386.146667pt;}
.y75{bottom:395.266667pt;}
.y58{bottom:397.666667pt;}
.y1e{bottom:404.546667pt;}
.y74{bottom:413.666667pt;}
.y57{bottom:416.066667pt;}
.y1d{bottom:422.946667pt;}
.y73{bottom:432.066667pt;}
.y98{bottom:436.388000pt;}
.y1c{bottom:441.346667pt;}
.y56{bottom:447.746667pt;}
.y72{bottom:450.466667pt;}
.y97{bottom:454.788000pt;}
.y1b{bottom:459.746667pt;}
.y55{bottom:466.146667pt;}
.y71{bottom:468.866667pt;}
.y96{bottom:473.188000pt;}
.y1a{bottom:478.146667pt;}
.y66{bottom:480.388000pt;}
.y19{bottom:496.546667pt;}
.y54{bottom:497.988000pt;}
.y65{bottom:498.788000pt;}
.y70{bottom:500.546667pt;}
.y95{bottom:504.866667pt;}
.y18{bottom:514.946667pt;}
.y53{bottom:516.388000pt;}
.y64{bottom:517.188000pt;}
.y6f{bottom:518.946667pt;}
.y39{bottom:521.346667pt;}
.y94{bottom:523.266667pt;}
.y63{bottom:535.588000pt;}
.y6e{bottom:537.346667pt;}
.y17{bottom:546.788000pt;}
.y52{bottom:548.066667pt;}
.y38{bottom:553.188000pt;}
.y62{bottom:553.988000pt;}
.y93{bottom:554.946667pt;}
.y51{bottom:566.466667pt;}
.y6d{bottom:569.026667pt;}
.y61{bottom:572.388000pt;}
.y92{bottom:573.346667pt;}
.y16{bottom:578.466667pt;}
.y37{bottom:584.866667pt;}
.y60{bottom:590.788000pt;}
.y15{bottom:596.866667pt;}
.y50{bottom:598.146667pt;}
.y91{bottom:605.188000pt;}
.y14{bottom:615.266667pt;}
.y36{bottom:616.546667pt;}
.y5f{bottom:622.466667pt;}
.y90{bottom:623.588000pt;}
.y13{bottom:633.666667pt;}
.y35{bottom:634.946667pt;}
.y12{bottom:652.066667pt;}
.y34{bottom:653.346667pt;}
.y5e{bottom:654.146667pt;}
.y8f{bottom:655.266667pt;}
.y4f{bottom:666.788000pt;}
.y11{bottom:670.466667pt;}
.y33{bottom:671.746667pt;}
.y8e{bottom:673.666667pt;}
.y5d{bottom:685.826667pt;}
.y10{bottom:688.866667pt;}
.y32{bottom:690.146667pt;}
.y8d{bottom:692.066667pt;}
.y4e{bottom:698.466667pt;}
.yf{bottom:707.266667pt;}
.y31{bottom:708.546667pt;}
.y4d{bottom:716.866667pt;}
.y8c{bottom:723.746667pt;}
.ye{bottom:725.666667pt;}
.y4c{bottom:735.266667pt;}
.y8b{bottom:742.146667pt;}
.y4b{bottom:753.666667pt;}
.yd{bottom:757.346667pt;}
.y8a{bottom:760.546667pt;}
.y4a{bottom:772.066667pt;}
.yc{bottom:789.188000pt;}
.y49{bottom:790.466667pt;}
.y89{bottom:792.388000pt;}
.y48{bottom:808.866667pt;}
.y88{bottom:810.788000pt;}
.yb{bottom:820.866667pt;}
.y47{bottom:827.266667pt;}
.y87{bottom:842.466667pt;}
.y46{bottom:845.666667pt;}
.ya{bottom:852.546667pt;}
.y86{bottom:860.866667pt;}
.y45{bottom:864.066667pt;}
.y44{bottom:882.466667pt;}
.y9{bottom:884.388000pt;}
.y85{bottom:892.546667pt;}
.y43{bottom:900.866667pt;}
.y84{bottom:910.946667pt;}
.y8{bottom:916.066667pt;}
.y42{bottom:919.266667pt;}
.y41{bottom:937.666667pt;}
.y83{bottom:942.788000pt;}
.y40{bottom:956.066667pt;}
.y82{bottom:961.188000pt;}
.y30{bottom:974.466667pt;}
.y7{bottom:979.588000pt;}
.y2f{bottom:992.866667pt;}
.y6{bottom:1011.266667pt;}
.y3{bottom:1045.826667pt;}
.y2{bottom:1064.866667pt;}
.y1{bottom:1086.146667pt;}
.h4{height:17.933333pt;}
.h5{height:39.538281pt;}
.h3{height:43.375000pt;}
.h6{height:44.468750pt;}
.h2{height:50.784896pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:14.866667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:113.440000pt;}
.x3{left:129.440000pt;}
.x2{left:142.078667pt;}
.x1{left:144.960000pt;}
.x6{left:168.478667pt;}
.x4{left:417.800000pt;}
.x8{left:472.320000pt;}
.xa{left:485.440000pt;}
.xb{left:490.400000pt;}
.x9{left:502.878667pt;}
.x7{left:536.960000pt;}
}




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