
    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_1da08df6dd9b9da850fb7b71.woff2')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_44e8c13e57241d9b334514e9.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_0d8b5858e26851b49be3cd9f.woff2')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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_a7f4f35ede280ee44bdcd864.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.765625;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;}
.ls1{letter-spacing:80.280000px;}
.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;}
}
.ws7{word-spacing:-55.944000px;}
.ws31{word-spacing:-38.666400px;}
.ws3{word-spacing:-38.654700px;}
.ws71{word-spacing:-38.644500px;}
.ws3e{word-spacing:-38.643300px;}
.ws52{word-spacing:-38.435400px;}
.ws51{word-spacing:-38.379300px;}
.ws40{word-spacing:-38.373300px;}
.ws5{word-spacing:-38.371500px;}
.ws3b{word-spacing:-38.368800px;}
.ws42{word-spacing:-38.166000px;}
.ws3c{word-spacing:-38.160000px;}
.ws43{word-spacing:-38.157300px;}
.ws34{word-spacing:-38.156400px;}
.ws1a{word-spacing:-38.154000px;}
.ws6b{word-spacing:-38.143800px;}
.ws3a{word-spacing:-38.142000px;}
.ws55{word-spacing:-38.138400px;}
.ws21{word-spacing:-38.088000px;}
.ws6{word-spacing:-38.082600px;}
.ws2{word-spacing:-38.081700px;}
.ws0{word-spacing:-37.944000px;}
.ws72{word-spacing:-37.943100px;}
.ws68{word-spacing:-37.942800px;}
.ws37{word-spacing:-37.935000px;}
.ws69{word-spacing:-37.934400px;}
.ws73{word-spacing:-37.934100px;}
.ws41{word-spacing:-37.931400px;}
.ws66{word-spacing:-37.925100px;}
.ws29{word-spacing:-37.867200px;}
.ws3f{word-spacing:-37.718100px;}
.ws4a{word-spacing:-37.715400px;}
.wsf{word-spacing:-37.713600px;}
.ws2e{word-spacing:-37.647000px;}
.ws4e{word-spacing:-37.437900px;}
.wsa{word-spacing:-37.437300px;}
.ws64{word-spacing:-37.431000px;}
.ws5f{word-spacing:-37.420200px;}
.ws6f{word-spacing:-37.217700px;}
.ws6d{word-spacing:-37.216800px;}
.ws4{word-spacing:-37.206300px;}
.ws12{word-spacing:-36.981000px;}
.ws28{word-spacing:-36.418500px;}
.ws1f{word-spacing:-36.150000px;}
.ws33{word-spacing:-35.978400px;}
.ws26{word-spacing:-35.780400px;}
.ws5a{word-spacing:-35.760600px;}
.ws50{word-spacing:-35.557200px;}
.ws20{word-spacing:-34.551900px;}
.ws59{word-spacing:-34.335000px;}
.wse{word-spacing:-34.128000px;}
.wsc{word-spacing:-33.622200px;}
.ws2f{word-spacing:-32.819400px;}
.ws25{word-spacing:-32.168400px;}
.ws5d{word-spacing:-32.160600px;}
.ws56{word-spacing:-31.968600px;}
.ws39{word-spacing:-31.663800px;}
.ws4f{word-spacing:-30.966000px;}
.ws3d{word-spacing:-30.740400px;}
.ws32{word-spacing:-30.738300px;}
.ws48{word-spacing:-30.736800px;}
.ws9{word-spacing:-30.671700px;}
.ws8{word-spacing:-30.024000px;}
.ws67{word-spacing:-30.021300px;}
.ws27{word-spacing:-30.020400px;}
.ws6a{word-spacing:-28.797300px;}
.ws63{word-spacing:-28.580400px;}
.ws5c{word-spacing:-28.362600px;}
.ws30{word-spacing:-27.856800px;}
.ws61{word-spacing:-27.843600px;}
.ws2a{word-spacing:-27.140400px;}
.ws1c{word-spacing:-26.421000px;}
.ws1b{word-spacing:-25.917900px;}
.ws47{word-spacing:-25.698600px;}
.ws70{word-spacing:-25.206000px;}
.ws58{word-spacing:-25.200000px;}
.ws35{word-spacing:-24.972300px;}
.ws4b{word-spacing:-24.260400px;}
.ws4c{word-spacing:-24.037800px;}
.ws4d{word-spacing:-23.751900px;}
.ws5e{word-spacing:-21.606000px;}
.ws36{word-spacing:-21.600000px;}
.wsb{word-spacing:-21.160800px;}
.ws14{word-spacing:-20.886000px;}
.wsd{word-spacing:-20.666400px;}
.ws13{word-spacing:-20.664000px;}
.ws60{word-spacing:-20.658600px;}
.ws57{word-spacing:-20.151000px;}
.ws49{word-spacing:-19.431900px;}
.ws17{word-spacing:-19.222200px;}
.ws2b{word-spacing:-19.202400px;}
.ws22{word-spacing:-18.632700px;}
.ws2d{word-spacing:-18.496800px;}
.ws24{word-spacing:-17.784000px;}
.ws6c{word-spacing:-17.781300px;}
.ws23{word-spacing:-17.280000px;}
.ws15{word-spacing:-16.835400px;}
.ws54{word-spacing:-16.545600px;}
.ws38{word-spacing:-16.340400px;}
.ws46{word-spacing:-15.613200px;}
.ws45{word-spacing:-12.522000px;}
.ws2c{word-spacing:-12.232800px;}
.ws5b{word-spacing:-11.939400px;}
.ws1e{word-spacing:-10.940100px;}
.ws1d{word-spacing:-10.584000px;}
.ws6e{word-spacing:-10.583100px;}
.ws18{word-spacing:-9.131100px;}
.ws19{word-spacing:-6.766200px;}
.ws16{word-spacing:-3.373200px;}
.ws65{word-spacing:-1.222200px;}
.ws62{word-spacing:0.000000px;}
.ws11{word-spacing:5.778000px;}
.ws10{word-spacing:5.970900px;}
.ws44{word-spacing:11.526300px;}
.ws53{word-spacing:15.330000px;}
.ws1{word-spacing:1037.484900px;}
._4{margin-left:-1.078800px;}
._0{width:1.076400px;}
._2{width:17.412300px;}
._1{width:18.968400px;}
._5{width:21.016800px;}
._f{width:23.101800px;}
._11{width:24.984000px;}
._3{width:26.417700px;}
._12{width:27.788400px;}
._15{width:29.196000px;}
._13{width:30.301200px;}
._16{width:32.422800px;}
._19{width:33.502800px;}
._17{width:35.348400px;}
._6{width:36.366000px;}
._a{width:37.870200px;}
._10{width:38.875800px;}
._8{width:40.311000px;}
._18{width:41.427000px;}
._14{width:44.856000px;}
._e{width:46.723200px;}
._b{width:48.423300px;}
._d{width:50.180400px;}
._c{width:51.188400px;}
._9{width:53.917200px;}
._1d{width:56.086200px;}
._7{width:62.794200px;}
._1c{width:73.440000px;}
._1b{width:76.411200px;}
._1a{width:81.684600px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y4e{bottom:3.840000px;}
.y54{bottom:3.870000px;}
.y51{bottom:3.946500px;}
.y46{bottom:3.961500px;}
.y4a{bottom:3.990000px;}
.y58{bottom:4.725000px;}
.y4{bottom:12.240000px;}
.y45{bottom:24.480000px;}
.y4d{bottom:24.540000px;}
.y53{bottom:24.570000px;}
.y50{bottom:24.646500px;}
.y49{bottom:24.690000px;}
.y57{bottom:25.425000px;}
.y48{bottom:45.211500px;}
.y4c{bottom:45.240000px;}
.y56{bottom:46.125000px;}
.y3{bottom:63.975000px;}
.y4f{bottom:113.850000px;}
.y78{bottom:138.675000px;}
.y4b{bottom:156.075000px;}
.y77{bottom:159.375000px;}
.y29{bottom:162.796500px;}
.y28{bottom:183.496500px;}
.y76{bottom:201.136500px;}
.y27{bottom:204.196500px;}
.y47{bottom:218.925000px;}
.y75{bottom:221.836500px;}
.y26{bottom:224.896500px;}
.y74{bottom:242.536500px;}
.y25{bottom:245.596500px;}
.y73{bottom:263.236500px;}
.y44{bottom:281.775000px;}
.y72{bottom:283.936500px;}
.y24{bottom:287.175000px;}
.y71{bottom:325.696500px;}
.y23{bottom:328.936500px;}
.y43{bottom:348.736500px;}
.y22{bottom:349.636500px;}
.y70{bottom:367.275000px;}
.y6f{bottom:387.975000px;}
.y42{bottom:390.496500px;}
.y21{bottom:391.396500px;}
.y6e{bottom:408.675000px;}
.y41{bottom:411.196500px;}
.y20{bottom:412.096500px;}
.y6d{bottom:429.375000px;}
.y1f{bottom:432.795000px;}
.y6c{bottom:450.075000px;}
.y40{bottom:452.775000px;}
.y1e{bottom:453.496500px;}
.y6b{bottom:470.775000px;}
.y1d{bottom:474.196500px;}
.y3f{bottom:494.536500px;}
.y1c{bottom:494.896500px;}
.y6a{bottom:512.536500px;}
.y69{bottom:533.236500px;}
.y3e{bottom:536.296500px;}
.y1b{bottom:536.475000px;}
.y68{bottom:553.936500px;}
.y3d{bottom:556.996500px;}
.y1a{bottom:557.175000px;}
.y67{bottom:574.636500px;}
.y3c{bottom:598.575000px;}
.y19{bottom:598.936500px;}
.y66{bottom:616.396500px;}
.y18{bottom:619.636500px;}
.y17{bottom:640.336500px;}
.y65{bottom:657.975000px;}
.y16{bottom:661.036500px;}
.y64{bottom:678.675000px;}
.y15{bottom:681.736500px;}
.y3b{bottom:682.096500px;}
.y14{bottom:702.436500px;}
.y3a{bottom:702.795000px;}
.y63{bottom:720.436500px;}
.y13{bottom:723.136500px;}
.y39{bottom:723.496500px;}
.y62{bottom:741.136500px;}
.y85{bottom:745.096500px;}
.y12{bottom:764.895000px;}
.y38{bottom:765.075000px;}
.y84{bottom:765.795000px;}
.y61{bottom:782.895000px;}
.y11{bottom:785.596500px;}
.y37{bottom:785.775000px;}
.y83{bottom:786.496500px;}
.y36{bottom:806.475000px;}
.y82{bottom:807.195000px;}
.y60{bottom:824.475000px;}
.y10{bottom:827.175000px;}
.y81{bottom:827.895000px;}
.y5f{bottom:845.175000px;}
.yf{bottom:847.875000px;}
.y35{bottom:848.236500px;}
.y80{bottom:848.596500px;}
.ye{bottom:868.575000px;}
.y34{bottom:868.936500px;}
.y7f{bottom:869.295000px;}
.y5e{bottom:886.936500px;}
.yd{bottom:889.275000px;}
.y33{bottom:889.636500px;}
.y7e{bottom:889.995000px;}
.y5d{bottom:907.636500px;}
.yc{bottom:909.975000px;}
.y7d{bottom:910.695000px;}
.y5c{bottom:928.336500px;}
.yb{bottom:930.675000px;}
.y32{bottom:931.395000px;}
.y5b{bottom:949.036500px;}
.ya{bottom:951.375000px;}
.y31{bottom:952.095000px;}
.y5a{bottom:969.736500px;}
.y30{bottom:972.795000px;}
.y9{bottom:993.136500px;}
.y2f{bottom:993.495000px;}
.y59{bottom:1011.495000px;}
.y8{bottom:1013.836500px;}
.y7c{bottom:1014.195000px;}
.y7{bottom:1034.536500px;}
.y7b{bottom:1034.895000px;}
.y2e{bottom:1035.075000px;}
.y55{bottom:1049.250000px;}
.y7a{bottom:1055.595000px;}
.y2d{bottom:1076.836500px;}
.y79{bottom:1097.175000px;}
.y2c{bottom:1097.536500px;}
.y52{bottom:1112.925000px;}
.y6{bottom:1117.875000px;}
.y2b{bottom:1118.236500px;}
.y2a{bottom:1138.936500px;}
.y5{bottom:1159.636500px;}
.y2{bottom:1202.655000px;}
.y1{bottom:1224.795000px;}
.h3{height:32.700000px;}
.h6{height:42.075000px;}
.h8{height:42.150000px;}
.h2{height:48.796875px;}
.h4{height:48.972656px;}
.h5{height:50.027344px;}
.ha{height:55.125000px;}
.h7{height:62.775000px;}
.h9{height:63.600000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w4{width:162.075000px;}
.w5{width:165.300000px;}
.w3{width:168.300000px;}
.w6{width:186.300000px;}
.w2{width:710.175000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:11.760000px;}
.xa{left:80.010000px;}
.x6{left:102.238500px;}
.x1{left:124.920000px;}
.x3{left:127.200000px;}
.x7{left:149.580000px;}
.xe{left:156.960000px;}
.x2{left:160.560000px;}
.x8{left:162.180000px;}
.xb{left:295.575000px;}
.x5{left:315.000000px;}
.x9{left:417.060000px;}
.xc{left:457.575000px;}
.xd{left:622.800000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:71.360000pt;}
.ws7{word-spacing:-49.728000pt;}
.ws31{word-spacing:-34.370133pt;}
.ws3{word-spacing:-34.359733pt;}
.ws71{word-spacing:-34.350667pt;}
.ws3e{word-spacing:-34.349600pt;}
.ws52{word-spacing:-34.164800pt;}
.ws51{word-spacing:-34.114933pt;}
.ws40{word-spacing:-34.109600pt;}
.ws5{word-spacing:-34.108000pt;}
.ws3b{word-spacing:-34.105600pt;}
.ws42{word-spacing:-33.925333pt;}
.ws3c{word-spacing:-33.920000pt;}
.ws43{word-spacing:-33.917600pt;}
.ws34{word-spacing:-33.916800pt;}
.ws1a{word-spacing:-33.914667pt;}
.ws6b{word-spacing:-33.905600pt;}
.ws3a{word-spacing:-33.904000pt;}
.ws55{word-spacing:-33.900800pt;}
.ws21{word-spacing:-33.856000pt;}
.ws6{word-spacing:-33.851200pt;}
.ws2{word-spacing:-33.850400pt;}
.ws0{word-spacing:-33.728000pt;}
.ws72{word-spacing:-33.727200pt;}
.ws68{word-spacing:-33.726933pt;}
.ws37{word-spacing:-33.720000pt;}
.ws69{word-spacing:-33.719467pt;}
.ws73{word-spacing:-33.719200pt;}
.ws41{word-spacing:-33.716800pt;}
.ws66{word-spacing:-33.711200pt;}
.ws29{word-spacing:-33.659733pt;}
.ws3f{word-spacing:-33.527200pt;}
.ws4a{word-spacing:-33.524800pt;}
.wsf{word-spacing:-33.523200pt;}
.ws2e{word-spacing:-33.464000pt;}
.ws4e{word-spacing:-33.278133pt;}
.wsa{word-spacing:-33.277600pt;}
.ws64{word-spacing:-33.272000pt;}
.ws5f{word-spacing:-33.262400pt;}
.ws6f{word-spacing:-33.082400pt;}
.ws6d{word-spacing:-33.081600pt;}
.ws4{word-spacing:-33.072267pt;}
.ws12{word-spacing:-32.872000pt;}
.ws28{word-spacing:-32.372000pt;}
.ws1f{word-spacing:-32.133333pt;}
.ws33{word-spacing:-31.980800pt;}
.ws26{word-spacing:-31.804800pt;}
.ws5a{word-spacing:-31.787200pt;}
.ws50{word-spacing:-31.606400pt;}
.ws20{word-spacing:-30.712800pt;}
.ws59{word-spacing:-30.520000pt;}
.wse{word-spacing:-30.336000pt;}
.wsc{word-spacing:-29.886400pt;}
.ws2f{word-spacing:-29.172800pt;}
.ws25{word-spacing:-28.594133pt;}
.ws5d{word-spacing:-28.587200pt;}
.ws56{word-spacing:-28.416533pt;}
.ws39{word-spacing:-28.145600pt;}
.ws4f{word-spacing:-27.525333pt;}
.ws3d{word-spacing:-27.324800pt;}
.ws32{word-spacing:-27.322933pt;}
.ws48{word-spacing:-27.321600pt;}
.ws9{word-spacing:-27.263733pt;}
.ws8{word-spacing:-26.688000pt;}
.ws67{word-spacing:-26.685600pt;}
.ws27{word-spacing:-26.684800pt;}
.ws6a{word-spacing:-25.597600pt;}
.ws63{word-spacing:-25.404800pt;}
.ws5c{word-spacing:-25.211200pt;}
.ws30{word-spacing:-24.761600pt;}
.ws61{word-spacing:-24.749867pt;}
.ws2a{word-spacing:-24.124800pt;}
.ws1c{word-spacing:-23.485333pt;}
.ws1b{word-spacing:-23.038133pt;}
.ws47{word-spacing:-22.843200pt;}
.ws70{word-spacing:-22.405333pt;}
.ws58{word-spacing:-22.400000pt;}
.ws35{word-spacing:-22.197600pt;}
.ws4b{word-spacing:-21.564800pt;}
.ws4c{word-spacing:-21.366933pt;}
.ws4d{word-spacing:-21.112800pt;}
.ws5e{word-spacing:-19.205333pt;}
.ws36{word-spacing:-19.200000pt;}
.wsb{word-spacing:-18.809600pt;}
.ws14{word-spacing:-18.565333pt;}
.wsd{word-spacing:-18.370133pt;}
.ws13{word-spacing:-18.368000pt;}
.ws60{word-spacing:-18.363200pt;}
.ws57{word-spacing:-17.912000pt;}
.ws49{word-spacing:-17.272800pt;}
.ws17{word-spacing:-17.086400pt;}
.ws2b{word-spacing:-17.068800pt;}
.ws22{word-spacing:-16.562400pt;}
.ws2d{word-spacing:-16.441600pt;}
.ws24{word-spacing:-15.808000pt;}
.ws6c{word-spacing:-15.805600pt;}
.ws23{word-spacing:-15.360000pt;}
.ws15{word-spacing:-14.964800pt;}
.ws54{word-spacing:-14.707200pt;}
.ws38{word-spacing:-14.524800pt;}
.ws46{word-spacing:-13.878400pt;}
.ws45{word-spacing:-11.130667pt;}
.ws2c{word-spacing:-10.873600pt;}
.ws5b{word-spacing:-10.612800pt;}
.ws1e{word-spacing:-9.724533pt;}
.ws1d{word-spacing:-9.408000pt;}
.ws6e{word-spacing:-9.407200pt;}
.ws18{word-spacing:-8.116533pt;}
.ws19{word-spacing:-6.014400pt;}
.ws16{word-spacing:-2.998400pt;}
.ws65{word-spacing:-1.086400pt;}
.ws62{word-spacing:0.000000pt;}
.ws11{word-spacing:5.136000pt;}
.ws10{word-spacing:5.307467pt;}
.ws44{word-spacing:10.245600pt;}
.ws53{word-spacing:13.626667pt;}
.ws1{word-spacing:922.208800pt;}
._4{margin-left:-0.958933pt;}
._0{width:0.956800pt;}
._2{width:15.477600pt;}
._1{width:16.860800pt;}
._5{width:18.681600pt;}
._f{width:20.534933pt;}
._11{width:22.208000pt;}
._3{width:23.482400pt;}
._12{width:24.700800pt;}
._15{width:25.952000pt;}
._13{width:26.934400pt;}
._16{width:28.820267pt;}
._19{width:29.780267pt;}
._17{width:31.420800pt;}
._6{width:32.325333pt;}
._a{width:33.662400pt;}
._10{width:34.556267pt;}
._8{width:35.832000pt;}
._18{width:36.824000pt;}
._14{width:39.872000pt;}
._e{width:41.531733pt;}
._b{width:43.042933pt;}
._d{width:44.604800pt;}
._c{width:45.500800pt;}
._9{width:47.926400pt;}
._1d{width:49.854400pt;}
._7{width:55.817067pt;}
._1c{width:65.280000pt;}
._1b{width:67.921067pt;}
._1a{width:72.608533pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y4e{bottom:3.413333pt;}
.y54{bottom:3.440000pt;}
.y51{bottom:3.508000pt;}
.y46{bottom:3.521333pt;}
.y4a{bottom:3.546667pt;}
.y58{bottom:4.200000pt;}
.y4{bottom:10.880000pt;}
.y45{bottom:21.760000pt;}
.y4d{bottom:21.813333pt;}
.y53{bottom:21.840000pt;}
.y50{bottom:21.908000pt;}
.y49{bottom:21.946667pt;}
.y57{bottom:22.600000pt;}
.y48{bottom:40.188000pt;}
.y4c{bottom:40.213333pt;}
.y56{bottom:41.000000pt;}
.y3{bottom:56.866667pt;}
.y4f{bottom:101.200000pt;}
.y78{bottom:123.266667pt;}
.y4b{bottom:138.733333pt;}
.y77{bottom:141.666667pt;}
.y29{bottom:144.708000pt;}
.y28{bottom:163.108000pt;}
.y76{bottom:178.788000pt;}
.y27{bottom:181.508000pt;}
.y47{bottom:194.600000pt;}
.y75{bottom:197.188000pt;}
.y26{bottom:199.908000pt;}
.y74{bottom:215.588000pt;}
.y25{bottom:218.308000pt;}
.y73{bottom:233.988000pt;}
.y44{bottom:250.466667pt;}
.y72{bottom:252.388000pt;}
.y24{bottom:255.266667pt;}
.y71{bottom:289.508000pt;}
.y23{bottom:292.388000pt;}
.y43{bottom:309.988000pt;}
.y22{bottom:310.788000pt;}
.y70{bottom:326.466667pt;}
.y6f{bottom:344.866667pt;}
.y42{bottom:347.108000pt;}
.y21{bottom:347.908000pt;}
.y6e{bottom:363.266667pt;}
.y41{bottom:365.508000pt;}
.y20{bottom:366.308000pt;}
.y6d{bottom:381.666667pt;}
.y1f{bottom:384.706667pt;}
.y6c{bottom:400.066667pt;}
.y40{bottom:402.466667pt;}
.y1e{bottom:403.108000pt;}
.y6b{bottom:418.466667pt;}
.y1d{bottom:421.508000pt;}
.y3f{bottom:439.588000pt;}
.y1c{bottom:439.908000pt;}
.y6a{bottom:455.588000pt;}
.y69{bottom:473.988000pt;}
.y3e{bottom:476.708000pt;}
.y1b{bottom:476.866667pt;}
.y68{bottom:492.388000pt;}
.y3d{bottom:495.108000pt;}
.y1a{bottom:495.266667pt;}
.y67{bottom:510.788000pt;}
.y3c{bottom:532.066667pt;}
.y19{bottom:532.388000pt;}
.y66{bottom:547.908000pt;}
.y18{bottom:550.788000pt;}
.y17{bottom:569.188000pt;}
.y65{bottom:584.866667pt;}
.y16{bottom:587.588000pt;}
.y64{bottom:603.266667pt;}
.y15{bottom:605.988000pt;}
.y3b{bottom:606.308000pt;}
.y14{bottom:624.388000pt;}
.y3a{bottom:624.706667pt;}
.y63{bottom:640.388000pt;}
.y13{bottom:642.788000pt;}
.y39{bottom:643.108000pt;}
.y62{bottom:658.788000pt;}
.y85{bottom:662.308000pt;}
.y12{bottom:679.906667pt;}
.y38{bottom:680.066667pt;}
.y84{bottom:680.706667pt;}
.y61{bottom:695.906667pt;}
.y11{bottom:698.308000pt;}
.y37{bottom:698.466667pt;}
.y83{bottom:699.108000pt;}
.y36{bottom:716.866667pt;}
.y82{bottom:717.506667pt;}
.y60{bottom:732.866667pt;}
.y10{bottom:735.266667pt;}
.y81{bottom:735.906667pt;}
.y5f{bottom:751.266667pt;}
.yf{bottom:753.666667pt;}
.y35{bottom:753.988000pt;}
.y80{bottom:754.308000pt;}
.ye{bottom:772.066667pt;}
.y34{bottom:772.388000pt;}
.y7f{bottom:772.706667pt;}
.y5e{bottom:788.388000pt;}
.yd{bottom:790.466667pt;}
.y33{bottom:790.788000pt;}
.y7e{bottom:791.106667pt;}
.y5d{bottom:806.788000pt;}
.yc{bottom:808.866667pt;}
.y7d{bottom:809.506667pt;}
.y5c{bottom:825.188000pt;}
.yb{bottom:827.266667pt;}
.y32{bottom:827.906667pt;}
.y5b{bottom:843.588000pt;}
.ya{bottom:845.666667pt;}
.y31{bottom:846.306667pt;}
.y5a{bottom:861.988000pt;}
.y30{bottom:864.706667pt;}
.y9{bottom:882.788000pt;}
.y2f{bottom:883.106667pt;}
.y59{bottom:899.106667pt;}
.y8{bottom:901.188000pt;}
.y7c{bottom:901.506667pt;}
.y7{bottom:919.588000pt;}
.y7b{bottom:919.906667pt;}
.y2e{bottom:920.066667pt;}
.y55{bottom:932.666667pt;}
.y7a{bottom:938.306667pt;}
.y2d{bottom:957.188000pt;}
.y79{bottom:975.266667pt;}
.y2c{bottom:975.588000pt;}
.y52{bottom:989.266667pt;}
.y6{bottom:993.666667pt;}
.y2b{bottom:993.988000pt;}
.y2a{bottom:1012.388000pt;}
.y5{bottom:1030.788000pt;}
.y2{bottom:1069.026667pt;}
.y1{bottom:1088.706667pt;}
.h3{height:29.066667pt;}
.h6{height:37.400000pt;}
.h8{height:37.466667pt;}
.h2{height:43.375000pt;}
.h4{height:43.531250pt;}
.h5{height:44.468750pt;}
.ha{height:49.000000pt;}
.h7{height:55.800000pt;}
.h9{height:56.533333pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w4{width:144.066667pt;}
.w5{width:146.933333pt;}
.w3{width:149.600000pt;}
.w6{width:165.600000pt;}
.w2{width:631.266667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:10.453333pt;}
.xa{left:71.120000pt;}
.x6{left:90.878667pt;}
.x1{left:111.040000pt;}
.x3{left:113.066667pt;}
.x7{left:132.960000pt;}
.xe{left:139.520000pt;}
.x2{left:142.720000pt;}
.x8{left:144.160000pt;}
.xb{left:262.733333pt;}
.x5{left:280.000000pt;}
.x9{left:370.720000pt;}
.xc{left:406.733333pt;}
.xd{left:553.600000pt;}
}




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