
    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_cc3dbc5a90ebc7d1c0ae1a10.woff')format("woff");}.ff1{font-family:ff1;line-height:0.724609;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_d5eaae25aba5d9699fd7d8c6.woff')format("woff");}.ff2{font-family:ff2;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_bdd31c890273a21f2b3c951d.woff')format("woff");}.ff3{font-family:ff3;line-height:0.893066;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_fc26a865e9f9888c4da2a850.woff')format("woff");}.ff4{font-family:ff4;line-height:0.691406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_0fb7140151a1ff699eb977fd.woff')format("woff");}.ff5{font-family:ff5;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;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws7{word-spacing:-55.944000px;}
.ws6{word-spacing:-40.968000px;}
.ws35{word-spacing:-38.662200px;}
.ws78{word-spacing:-38.661000px;}
.ws6f{word-spacing:-38.657400px;}
.ws19{word-spacing:-38.656800px;}
.ws4c{word-spacing:-38.655000px;}
.wsa{word-spacing:-38.647200px;}
.wsb{word-spacing:-38.645100px;}
.ws3b{word-spacing:-38.444400px;}
.ws11{word-spacing:-38.439000px;}
.ws1f{word-spacing:-38.437200px;}
.ws28{word-spacing:-38.435400px;}
.ws63{word-spacing:-38.434800px;}
.ws80{word-spacing:-38.166000px;}
.ws60{word-spacing:-38.160000px;}
.ws43{word-spacing:-38.157000px;}
.ws59{word-spacing:-38.154600px;}
.ws7f{word-spacing:-38.143800px;}
.ws0{word-spacing:-38.096400px;}
.ws9{word-spacing:-38.070900px;}
.ws1{word-spacing:-37.944000px;}
.ws73{word-spacing:-37.940400px;}
.ws1a{word-spacing:-37.939200px;}
.ws77{word-spacing:-37.938600px;}
.ws47{word-spacing:-37.935000px;}
.ws6b{word-spacing:-37.932600px;}
.ws3{word-spacing:-37.931400px;}
.wsc{word-spacing:-37.926000px;}
.ws2e{word-spacing:-37.726800px;}
.ws72{word-spacing:-37.222200px;}
.ws4a{word-spacing:-37.213200px;}
.ws10{word-spacing:-37.212300px;}
.ws79{word-spacing:-37.203300px;}
.ws6a{word-spacing:-36.726000px;}
.ws50{word-spacing:-36.496500px;}
.ws48{word-spacing:-35.778300px;}
.ws1c{word-spacing:-35.559000px;}
.ws45{word-spacing:-35.275200px;}
.ws15{word-spacing:-35.271900px;}
.ws71{word-spacing:-35.047800px;}
.ws5d{word-spacing:-34.837200px;}
.ws67{word-spacing:-34.556400px;}
.ws40{word-spacing:-34.545600px;}
.ws3e{word-spacing:-34.339500px;}
.ws5a{word-spacing:-33.624000px;}
.ws2a{word-spacing:-33.616800px;}
.ws8{word-spacing:-33.547800px;}
.ws27{word-spacing:-33.126000px;}
.ws53{word-spacing:-33.112800px;}
.ws21{word-spacing:-32.902800px;}
.ws7b{word-spacing:-32.898300px;}
.ws6d{word-spacing:-32.895000px;}
.ws64{word-spacing:-32.887800px;}
.ws62{word-spacing:-32.387400px;}
.ws7a{word-spacing:-32.184000px;}
.ws25{word-spacing:-32.179200px;}
.ws3c{word-spacing:-32.175000px;}
.ws75{word-spacing:-31.964400px;}
.ws26{word-spacing:-31.680000px;}
.ws1e{word-spacing:-31.237200px;}
.ws29{word-spacing:-30.007200px;}
.ws69{word-spacing:-30.004200px;}
.ws5c{word-spacing:-29.520000px;}
.ws5f{word-spacing:-28.578000px;}
.ws32{word-spacing:-28.571400px;}
.ws22{word-spacing:-27.366000px;}
.ws3f{word-spacing:-27.144000px;}
.ws4e{word-spacing:-27.133200px;}
.ws3d{word-spacing:-26.422800px;}
.ws14{word-spacing:-25.920000px;}
.ws6c{word-spacing:-25.693200px;}
.ws36{word-spacing:-25.687800px;}
.ws2f{word-spacing:-24.977700px;}
.ws46{word-spacing:-24.976800px;}
.ws49{word-spacing:-24.973200px;}
.wsf{word-spacing:-24.026400px;}
.ws5{word-spacing:-23.687700px;}
.ws3a{word-spacing:-23.535000px;}
.ws66{word-spacing:-23.315700px;}
.ws1d{word-spacing:-22.813200px;}
.ws20{word-spacing:-22.320000px;}
.ws39{word-spacing:-22.312800px;}
.ws4b{word-spacing:-21.600000px;}
.ws7e{word-spacing:-21.377400px;}
.ws7d{word-spacing:-20.670000px;}
.ws52{word-spacing:-20.154600px;}
.ws42{word-spacing:-19.935000px;}
.ws2c{word-spacing:-19.923600px;}
.ws23{word-spacing:-19.213200px;}
.ws4d{word-spacing:-18.500400px;}
.ws16{word-spacing:-18.499200px;}
.ws65{word-spacing:-18.492000px;}
.ws6e{word-spacing:-17.784000px;}
.ws76{word-spacing:-17.779200px;}
.ws1b{word-spacing:-17.286000px;}
.ws61{word-spacing:-17.280000px;}
.ws18{word-spacing:-17.066400px;}
.ws70{word-spacing:-16.546800px;}
.ws7c{word-spacing:-15.624000px;}
.ws2d{word-spacing:-14.895000px;}
.ws4f{word-spacing:-13.456800px;}
.ws30{word-spacing:-13.239000px;}
.ws68{word-spacing:-12.744000px;}
.ws54{word-spacing:-12.519000px;}
.ws31{word-spacing:-10.359000px;}
.ws41{word-spacing:-10.072800px;}
.ws5b{word-spacing:-7.701000px;}
.ws33{word-spacing:-7.200000px;}
.ws74{word-spacing:-6.977400px;}
.ws17{word-spacing:-6.961800px;}
.ws5e{word-spacing:-6.480000px;}
.ws58{word-spacing:-6.261300px;}
.ws24{word-spacing:-5.727600px;}
.ws4{word-spacing:-5.177700px;}
.ws51{word-spacing:-2.651400px;}
.ws38{word-spacing:-1.207800px;}
.ws34{word-spacing:-0.702000px;}
.ws37{word-spacing:0.217800px;}
.ws56{word-spacing:1.463400px;}
.ws55{word-spacing:5.767200px;}
.ws2b{word-spacing:5.986800px;}
.ws57{word-spacing:9.804600px;}
.wse{word-spacing:11.961000px;}
.wsd{word-spacing:12.258900px;}
.ws13{word-spacing:15.346800px;}
.ws12{word-spacing:15.848100px;}
.ws44{word-spacing:22.550400px;}
.ws2{word-spacing:537.269400px;}
._0{margin-left:-1.228800px;}
._3{width:1.089900px;}
._4{width:18.775200px;}
._5{width:19.781100px;}
._8{width:21.026700px;}
._c{width:22.230000px;}
._10{width:24.120000px;}
._f{width:25.270800px;}
._e{width:26.581800px;}
._13{width:28.068000px;}
._11{width:30.244800px;}
._9{width:31.248000px;}
._7{width:33.148800px;}
._d{width:34.399200px;}
._1c{width:35.413200px;}
._1a{width:37.063500px;}
._12{width:38.077200px;}
._a{width:39.388800px;}
._21{width:40.912500px;}
._15{width:42.255000px;}
._16{width:44.441100px;}
._17{width:47.195100px;}
._20{width:49.550100px;}
._b{width:50.731800px;}
._1d{width:54.995400px;}
._18{width:56.640000px;}
._19{width:57.783600px;}
._1e{width:59.049000px;}
._14{width:63.795000px;}
._1f{width:67.157400px;}
._6{width:69.803100px;}
._1{width:71.928000px;}
._1b{width:80.307300px;}
._2{width:432.072000px;}
.fc3{color:rgb(255,0,0);}
.fc4{color:rgb(33,37,41);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(0,0,255);}
.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;}
.y8{bottom:34.725000px;}
.y9{bottom:42.571500px;}
.y5c{bottom:98.896500px;}
.y81{bottom:105.915000px;}
.y33{bottom:107.896500px;}
.y5b{bottom:119.596500px;}
.y80{bottom:126.615000px;}
.y32{bottom:128.596500px;}
.y5a{bottom:140.296500px;}
.y31{bottom:149.296500px;}
.y7f{bottom:158.475000px;}
.y59{bottom:160.996500px;}
.y30{bottom:169.996500px;}
.y7e{bottom:179.175000px;}
.y2f{bottom:202.036500px;}
.y58{bottom:202.755000px;}
.y7d{bottom:214.815000px;}
.y2e{bottom:222.736500px;}
.y57{bottom:223.455000px;}
.y7c{bottom:235.515000px;}
.y2d{bottom:243.436500px;}
.y56{bottom:244.155000px;}
.y7b{bottom:256.215000px;}
.y2c{bottom:264.136500px;}
.y55{bottom:264.855000px;}
.y7a{bottom:276.915000px;}
.y2b{bottom:284.836500px;}
.y54{bottom:285.555000px;}
.y79{bottom:297.615000px;}
.y2a{bottom:305.536500px;}
.y53{bottom:306.255000px;}
.y78{bottom:318.315000px;}
.y29{bottom:326.236500px;}
.y52{bottom:326.955000px;}
.y51{bottom:347.655000px;}
.y28{bottom:358.096500px;}
.y77{bottom:360.075000px;}
.y50{bottom:368.355000px;}
.y27{bottom:378.795000px;}
.y76{bottom:380.775000px;}
.y4f{bottom:389.055000px;}
.y26{bottom:399.496500px;}
.y75{bottom:401.475000px;}
.y25{bottom:420.196500px;}
.y74{bottom:422.175000px;}
.y4e{bottom:430.815000px;}
.y24{bottom:440.896500px;}
.y4d{bottom:451.515000px;}
.y23{bottom:461.596500px;}
.y73{bottom:463.936500px;}
.y4c{bottom:472.215000px;}
.y22{bottom:482.295000px;}
.y72{bottom:484.636500px;}
.y4b{bottom:492.915000px;}
.y21{bottom:502.996500px;}
.y71{bottom:505.336500px;}
.y4a{bottom:513.615000px;}
.y20{bottom:523.695000px;}
.y70{bottom:526.036500px;}
.y49{bottom:534.315000px;}
.y6f{bottom:546.736500px;}
.y1f{bottom:555.736500px;}
.y48{bottom:575.896500px;}
.y1e{bottom:576.436500px;}
.y6e{bottom:588.315000px;}
.y47{bottom:596.596500px;}
.y1d{bottom:597.136500px;}
.y6d{bottom:609.015000px;}
.y46{bottom:617.295000px;}
.y1c{bottom:617.836500px;}
.y6c{bottom:629.715000px;}
.y45{bottom:637.996500px;}
.y1b{bottom:638.536500px;}
.y6b{bottom:650.415000px;}
.y1a{bottom:659.236500px;}
.y6a{bottom:671.115000px;}
.y44{bottom:679.755000px;}
.y19{bottom:691.096500px;}
.y69{bottom:691.815000px;}
.y43{bottom:700.455000px;}
.y18{bottom:711.795000px;}
.y68{bottom:712.515000px;}
.y42{bottom:721.155000px;}
.y17{bottom:732.496500px;}
.y67{bottom:733.215000px;}
.y41{bottom:741.855000px;}
.y16{bottom:753.195000px;}
.y40{bottom:773.715000px;}
.y15{bottom:773.895000px;}
.y66{bottom:774.975000px;}
.y3f{bottom:794.415000px;}
.y14{bottom:794.596500px;}
.y65{bottom:795.675000px;}
.y3e{bottom:815.115000px;}
.y64{bottom:816.375000px;}
.y13{bottom:830.415000px;}
.y3d{bottom:835.815000px;}
.y12{bottom:851.115000px;}
.y3c{bottom:856.515000px;}
.y63{bottom:858.136500px;}
.y11{bottom:871.815000px;}
.y62{bottom:878.836500px;}
.y3b{bottom:888.555000px;}
.y10{bottom:892.515000px;}
.y61{bottom:899.536500px;}
.y3a{bottom:909.255000px;}
.yf{bottom:913.215000px;}
.y60{bottom:920.236500px;}
.y39{bottom:929.955000px;}
.ye{bottom:933.915000px;}
.y83{bottom:939.315000px;}
.y5f{bottom:940.936500px;}
.y38{bottom:950.655000px;}
.y5e{bottom:961.636500px;}
.yd{bottom:965.775000px;}
.y37{bottom:971.355000px;}
.y5d{bottom:982.336500px;}
.y36{bottom:992.055000px;}
.yc{bottom:997.815000px;}
.y82{bottom:1012.755000px;}
.y35{bottom:1023.915000px;}
.yb{bottom:1029.675000px;}
.y34{bottom:1044.615000px;}
.ya{bottom:1065.315000px;}
.y7{bottom:1106.715000px;}
.y6{bottom:1127.415000px;}
.y5{bottom:1148.115000px;}
.y4{bottom:1168.815000px;}
.y3{bottom:1189.515000px;}
.y2{bottom:1210.215000px;}
.y1{bottom:1231.275000px;}
.h6{height:45.225146px;}
.h4{height:48.761719px;}
.h3{height:48.796875px;}
.h7{height:50.027344px;}
.h5{height:58.275000px;}
.h2{height:60.467139px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:25.050000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:127.620000px;}
.x7{left:180.720000px;}
.x1{left:201.060000px;}
.x3{left:302.938500px;}
.x5{left:409.500000px;}
.x4{left:525.060000px;}
.x6{left:630.000000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws7{word-spacing:-49.728000pt;}
.ws6{word-spacing:-36.416000pt;}
.ws35{word-spacing:-34.366400pt;}
.ws78{word-spacing:-34.365333pt;}
.ws6f{word-spacing:-34.362133pt;}
.ws19{word-spacing:-34.361600pt;}
.ws4c{word-spacing:-34.360000pt;}
.wsa{word-spacing:-34.353067pt;}
.wsb{word-spacing:-34.351200pt;}
.ws3b{word-spacing:-34.172800pt;}
.ws11{word-spacing:-34.168000pt;}
.ws1f{word-spacing:-34.166400pt;}
.ws28{word-spacing:-34.164800pt;}
.ws63{word-spacing:-34.164267pt;}
.ws80{word-spacing:-33.925333pt;}
.ws60{word-spacing:-33.920000pt;}
.ws43{word-spacing:-33.917333pt;}
.ws59{word-spacing:-33.915200pt;}
.ws7f{word-spacing:-33.905600pt;}
.ws0{word-spacing:-33.863467pt;}
.ws9{word-spacing:-33.840800pt;}
.ws1{word-spacing:-33.728000pt;}
.ws73{word-spacing:-33.724800pt;}
.ws1a{word-spacing:-33.723733pt;}
.ws77{word-spacing:-33.723200pt;}
.ws47{word-spacing:-33.720000pt;}
.ws6b{word-spacing:-33.717867pt;}
.ws3{word-spacing:-33.716800pt;}
.wsc{word-spacing:-33.712000pt;}
.ws2e{word-spacing:-33.534933pt;}
.ws72{word-spacing:-33.086400pt;}
.ws4a{word-spacing:-33.078400pt;}
.ws10{word-spacing:-33.077600pt;}
.ws79{word-spacing:-33.069600pt;}
.ws6a{word-spacing:-32.645333pt;}
.ws50{word-spacing:-32.441333pt;}
.ws48{word-spacing:-31.802933pt;}
.ws1c{word-spacing:-31.608000pt;}
.ws45{word-spacing:-31.355733pt;}
.ws15{word-spacing:-31.352800pt;}
.ws71{word-spacing:-31.153600pt;}
.ws5d{word-spacing:-30.966400pt;}
.ws67{word-spacing:-30.716800pt;}
.ws40{word-spacing:-30.707200pt;}
.ws3e{word-spacing:-30.524000pt;}
.ws5a{word-spacing:-29.888000pt;}
.ws2a{word-spacing:-29.881600pt;}
.ws8{word-spacing:-29.820267pt;}
.ws27{word-spacing:-29.445333pt;}
.ws53{word-spacing:-29.433600pt;}
.ws21{word-spacing:-29.246933pt;}
.ws7b{word-spacing:-29.242933pt;}
.ws6d{word-spacing:-29.240000pt;}
.ws64{word-spacing:-29.233600pt;}
.ws62{word-spacing:-28.788800pt;}
.ws7a{word-spacing:-28.608000pt;}
.ws25{word-spacing:-28.603733pt;}
.ws3c{word-spacing:-28.600000pt;}
.ws75{word-spacing:-28.412800pt;}
.ws26{word-spacing:-28.160000pt;}
.ws1e{word-spacing:-27.766400pt;}
.ws29{word-spacing:-26.673067pt;}
.ws69{word-spacing:-26.670400pt;}
.ws5c{word-spacing:-26.240000pt;}
.ws5f{word-spacing:-25.402667pt;}
.ws32{word-spacing:-25.396800pt;}
.ws22{word-spacing:-24.325333pt;}
.ws3f{word-spacing:-24.128000pt;}
.ws4e{word-spacing:-24.118400pt;}
.ws3d{word-spacing:-23.486933pt;}
.ws14{word-spacing:-23.040000pt;}
.ws6c{word-spacing:-22.838400pt;}
.ws36{word-spacing:-22.833600pt;}
.ws2f{word-spacing:-22.202400pt;}
.ws46{word-spacing:-22.201600pt;}
.ws49{word-spacing:-22.198400pt;}
.wsf{word-spacing:-21.356800pt;}
.ws5{word-spacing:-21.055733pt;}
.ws3a{word-spacing:-20.920000pt;}
.ws66{word-spacing:-20.725067pt;}
.ws1d{word-spacing:-20.278400pt;}
.ws20{word-spacing:-19.840000pt;}
.ws39{word-spacing:-19.833600pt;}
.ws4b{word-spacing:-19.200000pt;}
.ws7e{word-spacing:-19.002133pt;}
.ws7d{word-spacing:-18.373333pt;}
.ws52{word-spacing:-17.915200pt;}
.ws42{word-spacing:-17.720000pt;}
.ws2c{word-spacing:-17.709867pt;}
.ws23{word-spacing:-17.078400pt;}
.ws4d{word-spacing:-16.444800pt;}
.ws16{word-spacing:-16.443733pt;}
.ws65{word-spacing:-16.437333pt;}
.ws6e{word-spacing:-15.808000pt;}
.ws76{word-spacing:-15.803733pt;}
.ws1b{word-spacing:-15.365333pt;}
.ws61{word-spacing:-15.360000pt;}
.ws18{word-spacing:-15.170133pt;}
.ws70{word-spacing:-14.708267pt;}
.ws7c{word-spacing:-13.888000pt;}
.ws2d{word-spacing:-13.240000pt;}
.ws4f{word-spacing:-11.961600pt;}
.ws30{word-spacing:-11.768000pt;}
.ws68{word-spacing:-11.328000pt;}
.ws54{word-spacing:-11.128000pt;}
.ws31{word-spacing:-9.208000pt;}
.ws41{word-spacing:-8.953600pt;}
.ws5b{word-spacing:-6.845333pt;}
.ws33{word-spacing:-6.400000pt;}
.ws74{word-spacing:-6.202133pt;}
.ws17{word-spacing:-6.188267pt;}
.ws5e{word-spacing:-5.760000pt;}
.ws58{word-spacing:-5.565600pt;}
.ws24{word-spacing:-5.091200pt;}
.ws4{word-spacing:-4.602400pt;}
.ws51{word-spacing:-2.356800pt;}
.ws38{word-spacing:-1.073600pt;}
.ws34{word-spacing:-0.624000pt;}
.ws37{word-spacing:0.193600pt;}
.ws56{word-spacing:1.300800pt;}
.ws55{word-spacing:5.126400pt;}
.ws2b{word-spacing:5.321600pt;}
.ws57{word-spacing:8.715200pt;}
.wse{word-spacing:10.632000pt;}
.wsd{word-spacing:10.896800pt;}
.ws13{word-spacing:13.641600pt;}
.ws12{word-spacing:14.087200pt;}
.ws44{word-spacing:20.044800pt;}
.ws2{word-spacing:477.572800pt;}
._0{margin-left:-1.092267pt;}
._3{width:0.968800pt;}
._4{width:16.689067pt;}
._5{width:17.583200pt;}
._8{width:18.690400pt;}
._c{width:19.760000pt;}
._10{width:21.440000pt;}
._f{width:22.462933pt;}
._e{width:23.628267pt;}
._13{width:24.949333pt;}
._11{width:26.884267pt;}
._9{width:27.776000pt;}
._7{width:29.465600pt;}
._d{width:30.577067pt;}
._1c{width:31.478400pt;}
._1a{width:32.945333pt;}
._12{width:33.846400pt;}
._a{width:35.012267pt;}
._21{width:36.366667pt;}
._15{width:37.560000pt;}
._16{width:39.503200pt;}
._17{width:41.951200pt;}
._20{width:44.044533pt;}
._b{width:45.094933pt;}
._1d{width:48.884800pt;}
._18{width:50.346667pt;}
._19{width:51.363200pt;}
._1e{width:52.488000pt;}
._14{width:56.706667pt;}
._1f{width:59.695467pt;}
._6{width:62.047200pt;}
._1{width:63.936000pt;}
._1b{width:71.384267pt;}
._2{width:384.064000pt;}
.fs2{font-size:58.933333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.933333pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:30.866667pt;}
.y9{bottom:37.841333pt;}
.y5c{bottom:87.908000pt;}
.y81{bottom:94.146667pt;}
.y33{bottom:95.908000pt;}
.y5b{bottom:106.308000pt;}
.y80{bottom:112.546667pt;}
.y32{bottom:114.308000pt;}
.y5a{bottom:124.708000pt;}
.y31{bottom:132.708000pt;}
.y7f{bottom:140.866667pt;}
.y59{bottom:143.108000pt;}
.y30{bottom:151.108000pt;}
.y7e{bottom:159.266667pt;}
.y2f{bottom:179.588000pt;}
.y58{bottom:180.226667pt;}
.y7d{bottom:190.946667pt;}
.y2e{bottom:197.988000pt;}
.y57{bottom:198.626667pt;}
.y7c{bottom:209.346667pt;}
.y2d{bottom:216.388000pt;}
.y56{bottom:217.026667pt;}
.y7b{bottom:227.746667pt;}
.y2c{bottom:234.788000pt;}
.y55{bottom:235.426667pt;}
.y7a{bottom:246.146667pt;}
.y2b{bottom:253.188000pt;}
.y54{bottom:253.826667pt;}
.y79{bottom:264.546667pt;}
.y2a{bottom:271.588000pt;}
.y53{bottom:272.226667pt;}
.y78{bottom:282.946667pt;}
.y29{bottom:289.988000pt;}
.y52{bottom:290.626667pt;}
.y51{bottom:309.026667pt;}
.y28{bottom:318.308000pt;}
.y77{bottom:320.066667pt;}
.y50{bottom:327.426667pt;}
.y27{bottom:336.706667pt;}
.y76{bottom:338.466667pt;}
.y4f{bottom:345.826667pt;}
.y26{bottom:355.108000pt;}
.y75{bottom:356.866667pt;}
.y25{bottom:373.508000pt;}
.y74{bottom:375.266667pt;}
.y4e{bottom:382.946667pt;}
.y24{bottom:391.908000pt;}
.y4d{bottom:401.346667pt;}
.y23{bottom:410.308000pt;}
.y73{bottom:412.388000pt;}
.y4c{bottom:419.746667pt;}
.y22{bottom:428.706667pt;}
.y72{bottom:430.788000pt;}
.y4b{bottom:438.146667pt;}
.y21{bottom:447.108000pt;}
.y71{bottom:449.188000pt;}
.y4a{bottom:456.546667pt;}
.y20{bottom:465.506667pt;}
.y70{bottom:467.588000pt;}
.y49{bottom:474.946667pt;}
.y6f{bottom:485.988000pt;}
.y1f{bottom:493.988000pt;}
.y48{bottom:511.908000pt;}
.y1e{bottom:512.388000pt;}
.y6e{bottom:522.946667pt;}
.y47{bottom:530.308000pt;}
.y1d{bottom:530.788000pt;}
.y6d{bottom:541.346667pt;}
.y46{bottom:548.706667pt;}
.y1c{bottom:549.188000pt;}
.y6c{bottom:559.746667pt;}
.y45{bottom:567.108000pt;}
.y1b{bottom:567.588000pt;}
.y6b{bottom:578.146667pt;}
.y1a{bottom:585.988000pt;}
.y6a{bottom:596.546667pt;}
.y44{bottom:604.226667pt;}
.y19{bottom:614.308000pt;}
.y69{bottom:614.946667pt;}
.y43{bottom:622.626667pt;}
.y18{bottom:632.706667pt;}
.y68{bottom:633.346667pt;}
.y42{bottom:641.026667pt;}
.y17{bottom:651.108000pt;}
.y67{bottom:651.746667pt;}
.y41{bottom:659.426667pt;}
.y16{bottom:669.506667pt;}
.y40{bottom:687.746667pt;}
.y15{bottom:687.906667pt;}
.y66{bottom:688.866667pt;}
.y3f{bottom:706.146667pt;}
.y14{bottom:706.308000pt;}
.y65{bottom:707.266667pt;}
.y3e{bottom:724.546667pt;}
.y64{bottom:725.666667pt;}
.y13{bottom:738.146667pt;}
.y3d{bottom:742.946667pt;}
.y12{bottom:756.546667pt;}
.y3c{bottom:761.346667pt;}
.y63{bottom:762.788000pt;}
.y11{bottom:774.946667pt;}
.y62{bottom:781.188000pt;}
.y3b{bottom:789.826667pt;}
.y10{bottom:793.346667pt;}
.y61{bottom:799.588000pt;}
.y3a{bottom:808.226667pt;}
.yf{bottom:811.746667pt;}
.y60{bottom:817.988000pt;}
.y39{bottom:826.626667pt;}
.ye{bottom:830.146667pt;}
.y83{bottom:834.946667pt;}
.y5f{bottom:836.388000pt;}
.y38{bottom:845.026667pt;}
.y5e{bottom:854.788000pt;}
.yd{bottom:858.466667pt;}
.y37{bottom:863.426667pt;}
.y5d{bottom:873.188000pt;}
.y36{bottom:881.826667pt;}
.yc{bottom:886.946667pt;}
.y82{bottom:900.226667pt;}
.y35{bottom:910.146667pt;}
.yb{bottom:915.266667pt;}
.y34{bottom:928.546667pt;}
.ya{bottom:946.946667pt;}
.y7{bottom:983.746667pt;}
.y6{bottom:1002.146667pt;}
.y5{bottom:1020.546667pt;}
.y4{bottom:1038.946667pt;}
.y3{bottom:1057.346667pt;}
.y2{bottom:1075.746667pt;}
.y1{bottom:1094.466667pt;}
.h6{height:40.200130pt;}
.h4{height:43.343750pt;}
.h3{height:43.375000pt;}
.h7{height:44.468750pt;}
.h5{height:51.800000pt;}
.h2{height:53.748568pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:22.266667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.440000pt;}
.x7{left:160.640000pt;}
.x1{left:178.720000pt;}
.x3{left:269.278667pt;}
.x5{left:364.000000pt;}
.x4{left:466.720000pt;}
.x6{left:560.000000pt;}
}




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