
    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_62be01b3d71de11164f5aa0f.woff')format("woff");}.ff1{font-family:ff1;line-height:0.900391;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_6ef72907d4e5ba7187a911f7.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_36abb599d2f49730ac5dd494.woff')format("woff");}.ff3{font-family:ff3;line-height:0.858398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_9219b4b56a75c00d59558ca3.woff')format("woff");}.ff4{font-family:ff4;line-height:0.910156;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_36de9172aa5c7f61f79251db.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);}
.v1{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.754000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.212400px;}
.ls3{letter-spacing:11.160000px;}
.ls2{letter-spacing:37.074000px;}
.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;}
}
.ws24{word-spacing:-56.156400px;}
.wsd{word-spacing:-55.944000px;}
.wsc{word-spacing:-38.800800px;}
.ws52{word-spacing:-38.664000px;}
.ws16{word-spacing:-38.662200px;}
.ws6{word-spacing:-38.657700px;}
.wsa{word-spacing:-38.656800px;}
.ws42{word-spacing:-38.653200px;}
.ws5{word-spacing:-38.647800px;}
.ws50{word-spacing:-38.643300px;}
.ws3b{word-spacing:-38.642400px;}
.ws37{word-spacing:-38.444400px;}
.ws72{word-spacing:-38.440800px;}
.wsb{word-spacing:-38.437500px;}
.ws4a{word-spacing:-38.434500px;}
.ws9{word-spacing:-38.426700px;}
.ws3{word-spacing:-38.374200px;}
.ws23{word-spacing:-38.364300px;}
.ws69{word-spacing:-38.359800px;}
.ws6c{word-spacing:-38.166000px;}
.ws71{word-spacing:-38.160000px;}
.ws47{word-spacing:-38.154600px;}
.ws15{word-spacing:-38.151900px;}
.ws21{word-spacing:-38.149200px;}
.ws55{word-spacing:-38.142000px;}
.ws58{word-spacing:-38.134800px;}
.ws0{word-spacing:-37.944000px;}
.ws51{word-spacing:-37.943700px;}
.ws29{word-spacing:-37.939500px;}
.ws4{word-spacing:-37.938600px;}
.ws25{word-spacing:-37.937700px;}
.ws75{word-spacing:-37.936800px;}
.ws32{word-spacing:-37.935000px;}
.ws2{word-spacing:-37.931400px;}
.ws6e{word-spacing:-37.918800px;}
.ws61{word-spacing:-37.704600px;}
.ws4f{word-spacing:-37.222200px;}
.ws64{word-spacing:-37.217400px;}
.ws5b{word-spacing:-37.215000px;}
.ws54{word-spacing:-37.213500px;}
.ws41{word-spacing:-36.491100px;}
.ws5d{word-spacing:-36.482400px;}
.ws53{word-spacing:-36.363600px;}
.ws48{word-spacing:-35.991000px;}
.ws67{word-spacing:-35.781000px;}
.ws10{word-spacing:-35.555400px;}
.ws2d{word-spacing:-35.280000px;}
.ws70{word-spacing:-35.070000px;}
.ws20{word-spacing:-35.052000px;}
.ws46{word-spacing:-35.036400px;}
.ws13{word-spacing:-34.554000px;}
.ws3e{word-spacing:-34.552800px;}
.ws44{word-spacing:-34.346400px;}
.ws38{word-spacing:-33.624000px;}
.ws8{word-spacing:-33.547800px;}
.ws35{word-spacing:-33.397200px;}
.ws18{word-spacing:-33.120000px;}
.ws31{word-spacing:-32.190000px;}
.ws49{word-spacing:-32.181300px;}
.ws6b{word-spacing:-31.470000px;}
.ws56{word-spacing:-30.524400px;}
.ws1c{word-spacing:-30.218400px;}
.ws5c{word-spacing:-30.022200px;}
.ws2b{word-spacing:-30.015000px;}
.ws4c{word-spacing:-29.081400px;}
.ws14{word-spacing:-29.070000px;}
.ws2e{word-spacing:-28.370400px;}
.ws11{word-spacing:-28.357200px;}
.ws34{word-spacing:-27.856800px;}
.ws19{word-spacing:-27.126000px;}
.ws63{word-spacing:-26.422800px;}
.ws1a{word-spacing:-26.415000px;}
.ws45{word-spacing:-25.678800px;}
.ws62{word-spacing:-24.471000px;}
.ws30{word-spacing:-22.824000px;}
.ws2f{word-spacing:-22.104000px;}
.ws5f{word-spacing:-22.091400px;}
.ws1b{word-spacing:-21.588300px;}
.ws73{word-spacing:-21.384000px;}
.ws60{word-spacing:-21.382200px;}
.ws39{word-spacing:-21.377700px;}
.ws4d{word-spacing:-21.160500px;}
.ws1f{word-spacing:-20.651400px;}
.ws2a{word-spacing:-20.444400px;}
.ws66{word-spacing:-19.708200px;}
.ws17{word-spacing:-18.993600px;}
.ws5a{word-spacing:-18.503700px;}
.ws40{word-spacing:-18.486600px;}
.ws7{word-spacing:-18.472500px;}
.ws3f{word-spacing:-18.270000px;}
.ws68{word-spacing:-16.560000px;}
.ws57{word-spacing:-15.615000px;}
.ws1e{word-spacing:-15.387000px;}
.ws5e{word-spacing:-15.107400px;}
.ws6f{word-spacing:-14.690400px;}
.ws33{word-spacing:-14.683200px;}
.ws22{word-spacing:-14.157900px;}
.ws65{word-spacing:-12.934800px;}
.ws4b{word-spacing:-12.222000px;}
.ws43{word-spacing:-12.022200px;}
.ws1d{word-spacing:-12.012000px;}
.ws36{word-spacing:-10.577400px;}
.wse{word-spacing:-10.080000px;}
.ws59{word-spacing:-9.857400px;}
.wsf{word-spacing:-9.855000px;}
.ws3c{word-spacing:-8.845200px;}
.ws3d{word-spacing:-8.622000px;}
.ws6a{word-spacing:-6.270000px;}
.ws12{word-spacing:-6.253200px;}
.ws2c{word-spacing:-6.035400px;}
.ws74{word-spacing:-5.040000px;}
.ws26{word-spacing:-3.157200px;}
.ws3a{word-spacing:-2.437800px;}
.ws28{word-spacing:0.000000px;}
.ws4e{word-spacing:7.450800px;}
.ws27{word-spacing:9.810900px;}
.ws6d{word-spacing:23.256000px;}
.ws1{word-spacing:455.092800px;}
._2{margin-left:-1.273200px;}
._3{width:1.063200px;}
._4{width:18.775800px;}
._19{width:20.583000px;}
._7{width:22.153200px;}
._d{width:24.297600px;}
._f{width:26.738400px;}
._a{width:27.984000px;}
._8{width:29.005200px;}
._e{width:30.222000px;}
._1a{width:31.648800px;}
._17{width:34.488000px;}
._1{width:36.000000px;}
._13{width:37.144800px;}
._c{width:38.649600px;}
._1e{width:40.464000px;}
._6{width:42.382800px;}
._11{width:45.190800px;}
._5{width:47.212800px;}
._15{width:48.731400px;}
._9{width:50.965200px;}
._14{width:52.826400px;}
._20{width:53.934000px;}
._b{width:55.264800px;}
._16{width:57.080400px;}
._1c{width:64.951200px;}
._18{width:67.464000px;}
._1b{width:70.480500px;}
._1d{width:75.280500px;}
._1f{width:78.546000px;}
._21{width:80.208000px;}
._12{width:81.618600px;}
._10{width:88.920000px;}
._0{width:612.144000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(112,48,160);}
.fc3{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:46.800000px;}
.fs1{font-size:66.300000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y2a{bottom:3.780000px;}
.y2d{bottom:3.930000px;}
.y7{bottom:4.471500px;}
.y65{bottom:6.286500px;}
.y31{bottom:6.330000px;}
.y35{bottom:8.490000px;}
.y2f{bottom:8.580000px;}
.y69{bottom:8.625000px;}
.y37{bottom:9.990000px;}
.y6b{bottom:10.125000px;}
.y2c{bottom:24.990000px;}
.y27{bottom:25.350000px;}
.y62{bottom:27.630000px;}
.y33{bottom:36.015000px;}
.y67{bottom:36.150000px;}
.y2b{bottom:45.511500px;}
.y28{bottom:66.930000px;}
.y6{bottom:72.825000px;}
.y5{bottom:77.655000px;}
.y5b{bottom:106.636500px;}
.y2e{bottom:109.575000px;}
.y83{bottom:124.096500px;}
.y5a{bottom:127.336500px;}
.y26{bottom:135.825000px;}
.y59{bottom:148.036500px;}
.y82{bottom:165.855000px;}
.y58{bottom:168.736500px;}
.y81{bottom:186.555000px;}
.y29{bottom:198.975000px;}
.y80{bottom:207.255000px;}
.y57{bottom:210.315000px;}
.y7f{bottom:227.955000px;}
.y56{bottom:231.015000px;}
.y7e{bottom:248.655000px;}
.y55{bottom:251.715000px;}
.y25{bottom:286.996500px;}
.y7d{bottom:290.415000px;}
.y54{bottom:293.475000px;}
.y24{bottom:307.696500px;}
.y7c{bottom:311.115000px;}
.y53{bottom:314.175000px;}
.y7b{bottom:331.815000px;}
.y52{bottom:334.875000px;}
.y23{bottom:349.275000px;}
.y7a{bottom:352.515000px;}
.y51{bottom:355.575000px;}
.y50{bottom:376.275000px;}
.y22{bottom:391.036500px;}
.y79{bottom:394.096500px;}
.y21{bottom:411.736500px;}
.y78{bottom:414.795000px;}
.y4f{bottom:418.036500px;}
.y20{bottom:432.436500px;}
.y77{bottom:435.496500px;}
.y4e{bottom:438.736500px;}
.y1f{bottom:453.136500px;}
.y4d{bottom:459.436500px;}
.y1e{bottom:473.836500px;}
.y76{bottom:477.255000px;}
.y4c{bottom:480.136500px;}
.y75{bottom:497.955000px;}
.y4b{bottom:500.836500px;}
.y1d{bottom:515.596500px;}
.y74{bottom:518.655000px;}
.y1c{bottom:536.296500px;}
.y73{bottom:539.355000px;}
.y4a{bottom:542.415000px;}
.y1b{bottom:556.996500px;}
.y72{bottom:560.055000px;}
.y49{bottom:563.115000px;}
.y8c{bottom:577.336500px;}
.y1a{bottom:577.695000px;}
.y71{bottom:580.755000px;}
.y48{bottom:583.815000px;}
.y8b{bottom:598.036500px;}
.y19{bottom:598.396500px;}
.y70{bottom:601.455000px;}
.y47{bottom:604.515000px;}
.y18{bottom:619.096500px;}
.y46{bottom:625.215000px;}
.y17{bottom:639.795000px;}
.y6f{bottom:643.215000px;}
.y45{bottom:645.915000px;}
.y16{bottom:660.496500px;}
.y6e{bottom:663.915000px;}
.y44{bottom:666.615000px;}
.y6d{bottom:684.615000px;}
.y43{bottom:687.315000px;}
.y15{bottom:702.075000px;}
.y6c{bottom:705.315000px;}
.y42{bottom:708.015000px;}
.y8a{bottom:722.775000px;}
.y14{bottom:743.836500px;}
.y41{bottom:749.775000px;}
.y13{bottom:764.536500px;}
.y40{bottom:770.475000px;}
.y6a{bottom:784.650000px;}
.y66{bottom:784.725000px;}
.y12{bottom:785.236500px;}
.y3f{bottom:791.175000px;}
.y11{bottom:805.936500px;}
.y68{bottom:812.250000px;}
.y10{bottom:826.636500px;}
.y3e{bottom:832.936500px;}
.y64{bottom:838.350000px;}
.y61{bottom:838.425000px;}
.yf{bottom:847.336500px;}
.y89{bottom:847.695000px;}
.y3d{bottom:853.636500px;}
.y63{bottom:862.275000px;}
.ye{bottom:868.036500px;}
.y88{bottom:868.395000px;}
.y3c{bottom:874.336500px;}
.y5f{bottom:883.725000px;}
.y3b{bottom:895.036500px;}
.yd{bottom:909.795000px;}
.y87{bottom:909.975000px;}
.y3a{bottom:915.736500px;}
.y39{bottom:936.436500px;}
.y60{bottom:946.875000px;}
.yc{bottom:951.375000px;}
.y86{bottom:951.736500px;}
.y38{bottom:957.136500px;}
.yb{bottom:972.075000px;}
.y85{bottom:972.436500px;}
.y5e{bottom:993.136500px;}
.ya{bottom:1013.836500px;}
.y84{bottom:1014.195000px;}
.y5d{bottom:1034.895000px;}
.y36{bottom:1036.425000px;}
.y32{bottom:1036.500000px;}
.y9{bottom:1055.595000px;}
.y34{bottom:1064.025000px;}
.y5c{bottom:1076.475000px;}
.y30{bottom:1090.125000px;}
.y8{bottom:1097.175000px;}
.y4{bottom:1141.455000px;}
.y3{bottom:1162.155000px;}
.y2{bottom:1182.855000px;}
.y1{bottom:1203.375000px;}
.h5{height:20.175000px;}
.h9{height:21.375000px;}
.hc{height:23.850000px;}
.he{height:26.100000px;}
.hb{height:26.175000px;}
.hf{height:27.600000px;}
.h4{height:45.095654px;}
.h12{height:45.225000px;}
.h3{height:48.796875px;}
.h2{height:49.289063px;}
.h6{height:49.992188px;}
.h7{height:50.027344px;}
.hd{height:53.625000px;}
.h10{height:56.271773px;}
.h11{height:56.277773px;}
.ha{height:63.075000px;}
.h8{height:84.525000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:16.725000px;}
.wa{width:39.600000px;}
.w3{width:44.325000px;}
.we{width:120.525000px;}
.w7{width:120.900000px;}
.w8{width:125.100000px;}
.wd{width:127.650000px;}
.wc{width:130.875000px;}
.w5{width:132.000000px;}
.wf{width:135.075000px;}
.w4{width:136.200000px;}
.wb{width:148.725000px;}
.w9{width:160.275000px;}
.w6{width:406.125000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:8.145000px;}
.x18{left:12.645000px;}
.xb{left:119.475000px;}
.x1{left:127.620000px;}
.xa{left:136.620000px;}
.x4{left:138.060000px;}
.x12{left:145.620000px;}
.xd{left:163.725000px;}
.x13{left:167.100000px;}
.x7{left:203.220000px;}
.xe{left:299.850000px;}
.x14{left:315.750000px;}
.x6{left:414.720000px;}
.xf{left:431.775000px;}
.x15{left:446.550000px;}
.x3{left:470.025000px;}
.x9{left:512.100000px;}
.x10{left:552.600000px;}
.x5{left:555.660000px;}
.x16{left:574.125000px;}
.x11{left:677.625000px;}
.x17{left:694.575000px;}
.x2{left:731.160000px;}
.x8{left:762.300000px;}
@media print{
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.114667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.188800pt;}
.ls3{letter-spacing:9.920000pt;}
.ls2{letter-spacing:32.954667pt;}
.ws24{word-spacing:-49.916800pt;}
.wsd{word-spacing:-49.728000pt;}
.wsc{word-spacing:-34.489600pt;}
.ws52{word-spacing:-34.368000pt;}
.ws16{word-spacing:-34.366400pt;}
.ws6{word-spacing:-34.362400pt;}
.wsa{word-spacing:-34.361600pt;}
.ws42{word-spacing:-34.358400pt;}
.ws5{word-spacing:-34.353600pt;}
.ws50{word-spacing:-34.349600pt;}
.ws3b{word-spacing:-34.348800pt;}
.ws37{word-spacing:-34.172800pt;}
.ws72{word-spacing:-34.169600pt;}
.wsb{word-spacing:-34.166667pt;}
.ws4a{word-spacing:-34.164000pt;}
.ws9{word-spacing:-34.157067pt;}
.ws3{word-spacing:-34.110400pt;}
.ws23{word-spacing:-34.101600pt;}
.ws69{word-spacing:-34.097600pt;}
.ws6c{word-spacing:-33.925333pt;}
.ws71{word-spacing:-33.920000pt;}
.ws47{word-spacing:-33.915200pt;}
.ws15{word-spacing:-33.912800pt;}
.ws21{word-spacing:-33.910400pt;}
.ws55{word-spacing:-33.904000pt;}
.ws58{word-spacing:-33.897600pt;}
.ws0{word-spacing:-33.728000pt;}
.ws51{word-spacing:-33.727733pt;}
.ws29{word-spacing:-33.724000pt;}
.ws4{word-spacing:-33.723200pt;}
.ws25{word-spacing:-33.722400pt;}
.ws75{word-spacing:-33.721600pt;}
.ws32{word-spacing:-33.720000pt;}
.ws2{word-spacing:-33.716800pt;}
.ws6e{word-spacing:-33.705600pt;}
.ws61{word-spacing:-33.515200pt;}
.ws4f{word-spacing:-33.086400pt;}
.ws64{word-spacing:-33.082133pt;}
.ws5b{word-spacing:-33.080000pt;}
.ws54{word-spacing:-33.078667pt;}
.ws41{word-spacing:-32.436533pt;}
.ws5d{word-spacing:-32.428800pt;}
.ws53{word-spacing:-32.323200pt;}
.ws48{word-spacing:-31.992000pt;}
.ws67{word-spacing:-31.805333pt;}
.ws10{word-spacing:-31.604800pt;}
.ws2d{word-spacing:-31.360000pt;}
.ws70{word-spacing:-31.173333pt;}
.ws20{word-spacing:-31.157333pt;}
.ws46{word-spacing:-31.143467pt;}
.ws13{word-spacing:-30.714667pt;}
.ws3e{word-spacing:-30.713600pt;}
.ws44{word-spacing:-30.530133pt;}
.ws38{word-spacing:-29.888000pt;}
.ws8{word-spacing:-29.820267pt;}
.ws35{word-spacing:-29.686400pt;}
.ws18{word-spacing:-29.440000pt;}
.ws31{word-spacing:-28.613333pt;}
.ws49{word-spacing:-28.605600pt;}
.ws6b{word-spacing:-27.973333pt;}
.ws56{word-spacing:-27.132800pt;}
.ws1c{word-spacing:-26.860800pt;}
.ws5c{word-spacing:-26.686400pt;}
.ws2b{word-spacing:-26.680000pt;}
.ws4c{word-spacing:-25.850133pt;}
.ws14{word-spacing:-25.840000pt;}
.ws2e{word-spacing:-25.218133pt;}
.ws11{word-spacing:-25.206400pt;}
.ws34{word-spacing:-24.761600pt;}
.ws19{word-spacing:-24.112000pt;}
.ws63{word-spacing:-23.486933pt;}
.ws1a{word-spacing:-23.480000pt;}
.ws45{word-spacing:-22.825600pt;}
.ws62{word-spacing:-21.752000pt;}
.ws30{word-spacing:-20.288000pt;}
.ws2f{word-spacing:-19.648000pt;}
.ws5f{word-spacing:-19.636800pt;}
.ws1b{word-spacing:-19.189600pt;}
.ws73{word-spacing:-19.008000pt;}
.ws60{word-spacing:-19.006400pt;}
.ws39{word-spacing:-19.002400pt;}
.ws4d{word-spacing:-18.809333pt;}
.ws1f{word-spacing:-18.356800pt;}
.ws2a{word-spacing:-18.172800pt;}
.ws66{word-spacing:-17.518400pt;}
.ws17{word-spacing:-16.883200pt;}
.ws5a{word-spacing:-16.447733pt;}
.ws40{word-spacing:-16.432533pt;}
.ws7{word-spacing:-16.420000pt;}
.ws3f{word-spacing:-16.240000pt;}
.ws68{word-spacing:-14.720000pt;}
.ws57{word-spacing:-13.880000pt;}
.ws1e{word-spacing:-13.677333pt;}
.ws5e{word-spacing:-13.428800pt;}
.ws6f{word-spacing:-13.058133pt;}
.ws33{word-spacing:-13.051733pt;}
.ws22{word-spacing:-12.584800pt;}
.ws65{word-spacing:-11.497600pt;}
.ws4b{word-spacing:-10.864000pt;}
.ws43{word-spacing:-10.686400pt;}
.ws1d{word-spacing:-10.677333pt;}
.ws36{word-spacing:-9.402133pt;}
.wse{word-spacing:-8.960000pt;}
.ws59{word-spacing:-8.762133pt;}
.wsf{word-spacing:-8.760000pt;}
.ws3c{word-spacing:-7.862400pt;}
.ws3d{word-spacing:-7.664000pt;}
.ws6a{word-spacing:-5.573333pt;}
.ws12{word-spacing:-5.558400pt;}
.ws2c{word-spacing:-5.364800pt;}
.ws74{word-spacing:-4.480000pt;}
.ws26{word-spacing:-2.806400pt;}
.ws3a{word-spacing:-2.166933pt;}
.ws28{word-spacing:0.000000pt;}
.ws4e{word-spacing:6.622933pt;}
.ws27{word-spacing:8.720800pt;}
.ws6d{word-spacing:20.672000pt;}
.ws1{word-spacing:404.526933pt;}
._2{margin-left:-1.131733pt;}
._3{width:0.945067pt;}
._4{width:16.689600pt;}
._19{width:18.296000pt;}
._7{width:19.691733pt;}
._d{width:21.597867pt;}
._f{width:23.767467pt;}
._a{width:24.874667pt;}
._8{width:25.782400pt;}
._e{width:26.864000pt;}
._1a{width:28.132267pt;}
._17{width:30.656000pt;}
._1{width:32.000000pt;}
._13{width:33.017600pt;}
._c{width:34.355200pt;}
._1e{width:35.968000pt;}
._6{width:37.673600pt;}
._11{width:40.169600pt;}
._5{width:41.966933pt;}
._15{width:43.316800pt;}
._9{width:45.302400pt;}
._14{width:46.956800pt;}
._20{width:47.941333pt;}
._b{width:49.124267pt;}
._16{width:50.738133pt;}
._1c{width:57.734400pt;}
._18{width:59.968000pt;}
._1b{width:62.649333pt;}
._1d{width:66.916000pt;}
._1f{width:69.818667pt;}
._21{width:71.296000pt;}
._12{width:72.549867pt;}
._10{width:79.040000pt;}
._0{width:544.128000pt;}
.fs2{font-size:41.600000pt;}
.fs1{font-size:58.933333pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y2a{bottom:3.360000pt;}
.y2d{bottom:3.493333pt;}
.y7{bottom:3.974667pt;}
.y65{bottom:5.588000pt;}
.y31{bottom:5.626667pt;}
.y35{bottom:7.546667pt;}
.y2f{bottom:7.626667pt;}
.y69{bottom:7.666667pt;}
.y37{bottom:8.880000pt;}
.y6b{bottom:9.000000pt;}
.y2c{bottom:22.213333pt;}
.y27{bottom:22.533333pt;}
.y62{bottom:24.560000pt;}
.y33{bottom:32.013333pt;}
.y67{bottom:32.133333pt;}
.y2b{bottom:40.454667pt;}
.y28{bottom:59.493333pt;}
.y6{bottom:64.733333pt;}
.y5{bottom:69.026667pt;}
.y5b{bottom:94.788000pt;}
.y2e{bottom:97.400000pt;}
.y83{bottom:110.308000pt;}
.y5a{bottom:113.188000pt;}
.y26{bottom:120.733333pt;}
.y59{bottom:131.588000pt;}
.y82{bottom:147.426667pt;}
.y58{bottom:149.988000pt;}
.y81{bottom:165.826667pt;}
.y29{bottom:176.866667pt;}
.y80{bottom:184.226667pt;}
.y57{bottom:186.946667pt;}
.y7f{bottom:202.626667pt;}
.y56{bottom:205.346667pt;}
.y7e{bottom:221.026667pt;}
.y55{bottom:223.746667pt;}
.y25{bottom:255.108000pt;}
.y7d{bottom:258.146667pt;}
.y54{bottom:260.866667pt;}
.y24{bottom:273.508000pt;}
.y7c{bottom:276.546667pt;}
.y53{bottom:279.266667pt;}
.y7b{bottom:294.946667pt;}
.y52{bottom:297.666667pt;}
.y23{bottom:310.466667pt;}
.y7a{bottom:313.346667pt;}
.y51{bottom:316.066667pt;}
.y50{bottom:334.466667pt;}
.y22{bottom:347.588000pt;}
.y79{bottom:350.308000pt;}
.y21{bottom:365.988000pt;}
.y78{bottom:368.706667pt;}
.y4f{bottom:371.588000pt;}
.y20{bottom:384.388000pt;}
.y77{bottom:387.108000pt;}
.y4e{bottom:389.988000pt;}
.y1f{bottom:402.788000pt;}
.y4d{bottom:408.388000pt;}
.y1e{bottom:421.188000pt;}
.y76{bottom:424.226667pt;}
.y4c{bottom:426.788000pt;}
.y75{bottom:442.626667pt;}
.y4b{bottom:445.188000pt;}
.y1d{bottom:458.308000pt;}
.y74{bottom:461.026667pt;}
.y1c{bottom:476.708000pt;}
.y73{bottom:479.426667pt;}
.y4a{bottom:482.146667pt;}
.y1b{bottom:495.108000pt;}
.y72{bottom:497.826667pt;}
.y49{bottom:500.546667pt;}
.y8c{bottom:513.188000pt;}
.y1a{bottom:513.506667pt;}
.y71{bottom:516.226667pt;}
.y48{bottom:518.946667pt;}
.y8b{bottom:531.588000pt;}
.y19{bottom:531.908000pt;}
.y70{bottom:534.626667pt;}
.y47{bottom:537.346667pt;}
.y18{bottom:550.308000pt;}
.y46{bottom:555.746667pt;}
.y17{bottom:568.706667pt;}
.y6f{bottom:571.746667pt;}
.y45{bottom:574.146667pt;}
.y16{bottom:587.108000pt;}
.y6e{bottom:590.146667pt;}
.y44{bottom:592.546667pt;}
.y6d{bottom:608.546667pt;}
.y43{bottom:610.946667pt;}
.y15{bottom:624.066667pt;}
.y6c{bottom:626.946667pt;}
.y42{bottom:629.346667pt;}
.y8a{bottom:642.466667pt;}
.y14{bottom:661.188000pt;}
.y41{bottom:666.466667pt;}
.y13{bottom:679.588000pt;}
.y40{bottom:684.866667pt;}
.y6a{bottom:697.466667pt;}
.y66{bottom:697.533333pt;}
.y12{bottom:697.988000pt;}
.y3f{bottom:703.266667pt;}
.y11{bottom:716.388000pt;}
.y68{bottom:722.000000pt;}
.y10{bottom:734.788000pt;}
.y3e{bottom:740.388000pt;}
.y64{bottom:745.200000pt;}
.y61{bottom:745.266667pt;}
.yf{bottom:753.188000pt;}
.y89{bottom:753.506667pt;}
.y3d{bottom:758.788000pt;}
.y63{bottom:766.466667pt;}
.ye{bottom:771.588000pt;}
.y88{bottom:771.906667pt;}
.y3c{bottom:777.188000pt;}
.y5f{bottom:785.533333pt;}
.y3b{bottom:795.588000pt;}
.yd{bottom:808.706667pt;}
.y87{bottom:808.866667pt;}
.y3a{bottom:813.988000pt;}
.y39{bottom:832.388000pt;}
.y60{bottom:841.666667pt;}
.yc{bottom:845.666667pt;}
.y86{bottom:845.988000pt;}
.y38{bottom:850.788000pt;}
.yb{bottom:864.066667pt;}
.y85{bottom:864.388000pt;}
.y5e{bottom:882.788000pt;}
.ya{bottom:901.188000pt;}
.y84{bottom:901.506667pt;}
.y5d{bottom:919.906667pt;}
.y36{bottom:921.266667pt;}
.y32{bottom:921.333333pt;}
.y9{bottom:938.306667pt;}
.y34{bottom:945.800000pt;}
.y5c{bottom:956.866667pt;}
.y30{bottom:969.000000pt;}
.y8{bottom:975.266667pt;}
.y4{bottom:1014.626667pt;}
.y3{bottom:1033.026667pt;}
.y2{bottom:1051.426667pt;}
.y1{bottom:1069.666667pt;}
.h5{height:17.933333pt;}
.h9{height:19.000000pt;}
.hc{height:21.200000pt;}
.he{height:23.200000pt;}
.hb{height:23.266667pt;}
.hf{height:24.533333pt;}
.h4{height:40.085026pt;}
.h12{height:40.200000pt;}
.h3{height:43.375000pt;}
.h2{height:43.812500pt;}
.h6{height:44.437500pt;}
.h7{height:44.468750pt;}
.hd{height:47.666667pt;}
.h10{height:50.019354pt;}
.h11{height:50.024687pt;}
.ha{height:56.066667pt;}
.h8{height:75.133333pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:14.866667pt;}
.wa{width:35.200000pt;}
.w3{width:39.400000pt;}
.we{width:107.133333pt;}
.w7{width:107.466667pt;}
.w8{width:111.200000pt;}
.wd{width:113.466667pt;}
.wc{width:116.333333pt;}
.w5{width:117.333333pt;}
.wf{width:120.066667pt;}
.w4{width:121.066667pt;}
.wb{width:132.200000pt;}
.w9{width:142.466667pt;}
.w6{width:361.000000pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:7.240000pt;}
.x18{left:11.240000pt;}
.xb{left:106.200000pt;}
.x1{left:113.440000pt;}
.xa{left:121.440000pt;}
.x4{left:122.720000pt;}
.x12{left:129.440000pt;}
.xd{left:145.533333pt;}
.x13{left:148.533333pt;}
.x7{left:180.640000pt;}
.xe{left:266.533333pt;}
.x14{left:280.666667pt;}
.x6{left:368.640000pt;}
.xf{left:383.800000pt;}
.x15{left:396.933333pt;}
.x3{left:417.800000pt;}
.x9{left:455.200000pt;}
.x10{left:491.200000pt;}
.x5{left:493.920000pt;}
.x16{left:510.333333pt;}
.x11{left:602.333333pt;}
.x17{left:617.400000pt;}
.x2{left:649.920000pt;}
.x8{left:677.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; }
  