
    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_e9e04d4b50e14fefffef5fd0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.919000;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_255121024b82c320d8509863.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.906000;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_33318c3b5d77b22127febfb5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.810000;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_df38499f5a60667851bce738.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.930000;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_2df29d3c249dfdb7c5220eb9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.890000;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);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:17.008612px;}
.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;}
}
.ws59{word-spacing:-14.943900px;}
.ws24{word-spacing:-11.955150px;}
.ws57{word-spacing:-3.586536px;}
.ws3e{word-spacing:-3.526760px;}
.ws3f{word-spacing:-3.108331px;}
.ws1d{word-spacing:-2.929004px;}
.ws9{word-spacing:-2.749678px;}
.ws1c{word-spacing:-2.450800px;}
.ws45{word-spacing:-2.391024px;}
.wsd{word-spacing:-1.613941px;}
.ws2c{word-spacing:-1.135736px;}
.ws56{word-spacing:-0.836858px;}
.ws5b{word-spacing:-0.777083px;}
.ws62{word-spacing:-0.298878px;}
.ws5{word-spacing:-0.059776px;}
.ws2{word-spacing:0.000000px;}
.ws14{word-spacing:0.179327px;}
.wsc{word-spacing:0.239102px;}
.ws51{word-spacing:0.298878px;}
.wse{word-spacing:0.358654px;}
.ws10{word-spacing:0.418429px;}
.ws4f{word-spacing:0.478205px;}
.ws29{word-spacing:0.597756px;}
.ws5c{word-spacing:0.597955px;}
.ws3d{word-spacing:0.657532px;}
.ws38{word-spacing:0.717307px;}
.ws5f{word-spacing:0.943402px;}
.ws12{word-spacing:0.956410px;}
.ws13{word-spacing:1.016185px;}
.ws8{word-spacing:1.075961px;}
.ws39{word-spacing:1.195512px;}
.ws53{word-spacing:1.315063px;}
.ws16{word-spacing:1.494390px;}
.ws61{word-spacing:1.613941px;}
.ws5d{word-spacing:1.673717px;}
.ws46{word-spacing:1.972595px;}
.ws1b{word-spacing:2.032370px;}
.ws2d{word-spacing:2.211697px;}
.ws48{word-spacing:2.510575px;}
.ws65{word-spacing:2.630126px;}
.ws47{word-spacing:2.749678px;}
.ws35{word-spacing:2.988780px;}
.ws11{word-spacing:3.048556px;}
.ws30{word-spacing:3.108331px;}
.wsf{word-spacing:3.287658px;}
.ws28{word-spacing:3.407209px;}
.ws44{word-spacing:3.466985px;}
.ws36{word-spacing:3.526760px;}
.ws37{word-spacing:3.706087px;}
.wsb{word-spacing:3.945190px;}
.ws21{word-spacing:3.969110px;}
.ws20{word-spacing:4.064751px;}
.ws15{word-spacing:4.184292px;}
.ws3{word-spacing:4.303872px;}
.ws17{word-spacing:4.363619px;}
.ws3a{word-spacing:4.602721px;}
.ws2e{word-spacing:4.662497px;}
.ws49{word-spacing:4.782048px;}
.ws1f{word-spacing:4.841824px;}
.ws2a{word-spacing:4.961375px;}
.ws5a{word-spacing:5.320028px;}
.ws33{word-spacing:5.379804px;}
.ws7{word-spacing:5.439580px;}
.ws27{word-spacing:5.451548px;}
.ws26{word-spacing:5.642831px;}
.ws2b{word-spacing:5.858009px;}
.ws25{word-spacing:6.360140px;}
.ws66{word-spacing:6.575316px;}
.ws19{word-spacing:6.635092px;}
.ws1a{word-spacing:6.754643px;}
.ws43{word-spacing:6.814418px;}
.ws42{word-spacing:7.232848px;}
.ws2f{word-spacing:7.292623px;}
.ws4d{word-spacing:7.770828px;}
.ws3c{word-spacing:7.830604px;}
.ws6{word-spacing:8.009930px;}
.ws4c{word-spacing:8.308808px;}
.ws55{word-spacing:8.368584px;}
.ws5e{word-spacing:8.488135px;}
.ws34{word-spacing:9.085891px;}
.ws22{word-spacing:9.372838px;}
.ws18{word-spacing:9.384769px;}
.ws52{word-spacing:9.743423px;}
.ws4e{word-spacing:10.938935px;}
.ws4a{word-spacing:11.237813px;}
.ws54{word-spacing:12.313774px;}
.ws67{word-spacing:12.732203px;}
.ws58{word-spacing:12.911530px;}
.ws63{word-spacing:14.585246px;}
.ws1e{word-spacing:14.884124px;}
.ws32{word-spacing:14.943900px;}
.ws60{word-spacing:15.780758px;}
.ws64{word-spacing:16.976270px;}
.ws1{word-spacing:17.861069px;}
.ws41{word-spacing:19.427070px;}
.ws50{word-spacing:19.546621px;}
.ws0{word-spacing:21.433223px;}
.ws3b{word-spacing:22.714728px;}
.ws4b{word-spacing:23.192933px;}
.ws31{word-spacing:29.828024px;}
.ws4{word-spacing:32.225242px;}
.ws40{word-spacing:34.311194px;}
.wsa{word-spacing:35.805584px;}
.ws23{word-spacing:67.029418px;}
._6{margin-left:-8.320819px;}
._3{margin-left:-6.742733px;}
._7{margin-left:-5.308109px;}
._0{margin-left:-4.303860px;}
._8{margin-left:-3.287658px;}
._2{margin-left:-1.291162px;}
._a{width:2.325654px;}
._5{width:3.689328px;}
._14{width:4.718575px;}
._4{width:6.019853px;}
._b{width:14.166817px;}
._1b{width:16.474164px;}
._c{width:17.753353px;}
._17{width:19.080419px;}
._e{width:20.562823px;}
._1f{width:21.674641px;}
._11{width:23.312484px;}
._13{width:24.603646px;}
._10{width:26.600142px;}
._d{width:29.349820px;}
._f{width:30.724642px;}
._20{width:32.082967px;}
._16{width:33.235352px;}
._9{width:35.028502px;}
._12{width:38.435711px;}
._18{width:40.408306px;}
._1a{width:41.629220px;}
._15{width:42.829058px;}
._1e{width:44.165492px;}
._1d{width:52.363426px;}
._21{width:55.411981px;}
._22{width:57.205249px;}
._19{width:63.503647px;}
._1c{width:77.173314px;}
._1{width:120.867072px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.820600px;}
.fs2{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y41{bottom:118.261500px;}
.y2f{bottom:121.293000px;}
.y2e{bottom:136.087500px;}
.y40{bottom:136.494000px;}
.y2d{bottom:150.882000px;}
.y3f{bottom:154.725000px;}
.y5a{bottom:163.692000px;}
.y2c{bottom:165.676500px;}
.y3e{bottom:172.957500px;}
.y2b{bottom:180.471000px;}
.y6f{bottom:191.188500px;}
.y59{bottom:193.216500px;}
.y2a{bottom:195.265500px;}
.y3d{bottom:200.155500px;}
.y6e{bottom:209.419500px;}
.y29{bottom:210.060000px;}
.y28{bottom:210.420000px;}
.y58{bottom:211.447500px;}
.y3c{bottom:225.328500px;}
.y57{bottom:229.680000px;}
.y6d{bottom:237.243000px;}
.y3b{bottom:243.561000px;}
.y56{bottom:247.911000px;}
.y27{bottom:259.867500px;}
.y3a{bottom:261.792000px;}
.y55{bottom:266.143500px;}
.y26{bottom:278.098500px;}
.y6c{bottom:280.821000px;}
.y54{bottom:284.374500px;}
.y6b{bottom:299.052000px;}
.y53{bottom:302.605500px;}
.y25{bottom:307.090500px;}
.y6a{bottom:317.284500px;}
.y52{bottom:320.838000px;}
.y24{bottom:325.323000px;}
.y69{bottom:335.515500px;}
.y51{bottom:343.783500px;}
.y68{bottom:353.746500px;}
.y50{bottom:370.192500px;}
.y67{bottom:371.979000px;}
.y23{bottom:372.285000px;}
.y4f{bottom:388.423500px;}
.y66{bottom:390.210000px;}
.y22{bottom:390.516000px;}
.y4e{bottom:406.656000px;}
.y65{bottom:408.442500px;}
.y21{bottom:408.748500px;}
.y20{bottom:426.979500px;}
.y64{bottom:436.264500px;}
.y1f{bottom:445.212000px;}
.y1e{bottom:463.443000px;}
.y63{bottom:472.921500px;}
.y1d{bottom:481.675500px;}
.y62{bottom:491.152500px;}
.y1c{bottom:499.906500px;}
.y1b{bottom:518.137500px;}
.y1a{bottom:537.313500px;}
.y19{bottom:555.546000px;}
.y18{bottom:573.777000px;}
.y17{bottom:592.009500px;}
.y16{bottom:610.240500px;}
.y15{bottom:628.471500px;}
.y14{bottom:646.704000px;}
.y13{bottom:664.935000px;}
.y12{bottom:683.167500px;}
.y11{bottom:701.398500px;}
.y39{bottom:711.153000px;}
.y4d{bottom:712.324500px;}
.y10{bottom:719.631000px;}
.y38{bottom:729.385500px;}
.y4c{bottom:730.557000px;}
.yf{bottom:737.862000px;}
.y37{bottom:747.616500px;}
.y4b{bottom:748.788000px;}
.y61{bottom:759.370500px;}
.ye{bottom:762.601500px;}
.y36{bottom:765.849000px;}
.y4a{bottom:767.020500px;}
.y60{bottom:777.601500px;}
.y35{bottom:784.080000px;}
.y49{bottom:785.251500px;}
.y5f{bottom:795.832500px;}
.y34{bottom:802.311000px;}
.yd{bottom:805.312500px;}
.y48{bottom:808.197000px;}
.y5e{bottom:814.065000px;}
.y33{bottom:820.543500px;}
.yc{bottom:823.543500px;}
.y47{bottom:831.580500px;}
.y5d{bottom:832.296000px;}
.y32{bottom:838.774500px;}
.yb{bottom:841.776000px;}
.y7e{bottom:844.552500px;}
.y46{bottom:849.811500px;}
.y31{bottom:857.007000px;}
.ya{bottom:860.007000px;}
.y7d{bottom:862.785000px;}
.y30{bottom:875.238000px;}
.y9{bottom:878.239500px;}
.y7c{bottom:881.016000px;}
.y5c{bottom:881.022000px;}
.y7b{bottom:899.247000px;}
.y5b{bottom:899.253000px;}
.y8{bottom:902.436000px;}
.y7a{bottom:929.434500px;}
.y79{bottom:947.665500px;}
.y78{bottom:965.898000px;}
.y7{bottom:968.488500px;}
.y77{bottom:984.129000px;}
.y6{bottom:989.410500px;}
.y76{bottom:1002.361500px;}
.y5{bottom:1010.331000px;}
.y4{bottom:1031.253000px;}
.y75{bottom:1032.547500px;}
.y74{bottom:1050.780000px;}
.y73{bottom:1069.011000px;}
.y3{bottom:1073.097000px;}
.y72{bottom:1087.242000px;}
.y71{bottom:1117.429500px;}
.y45{bottom:1120.119000px;}
.y2{bottom:1126.993500px;}
.y44{bottom:1138.351500px;}
.y70{bottom:1147.615500px;}
.y1{bottom:1150.903500px;}
.y43{bottom:1156.582500px;}
.y42{bottom:1174.813500px;}
.hc{height:32.900573px;}
.hf{height:33.140573px;}
.h8{height:33.570202px;}
.he{height:34.096088px;}
.hd{height:34.191729px;}
.ha{height:41.125613px;}
.h10{height:41.419613px;}
.hb{height:41.425613px;}
.h9{height:42.620003px;}
.h6{height:49.351066px;}
.h7{height:49.705066px;}
.h5{height:49.711066px;}
.h4{height:51.144346px;}
.h3{height:52.002346px;}
.h2{height:61.373044px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x20{left:80.007000px;}
.xf{left:82.488000px;}
.x1{left:98.095500px;}
.x11{left:100.420500px;}
.x17{left:104.103000px;}
.x12{left:113.478000px;}
.x5{left:117.561000px;}
.x15{left:146.268000px;}
.x14{left:149.965500px;}
.x9{left:174.919500px;}
.x10{left:187.180500px;}
.x1f{left:196.498500px;}
.x3{left:206.128500px;}
.xe{left:216.544500px;}
.x13{left:223.113000px;}
.x22{left:230.808000px;}
.x6{left:246.334500px;}
.xd{left:258.519000px;}
.xa{left:280.578000px;}
.x16{left:331.902000px;}
.x21{left:343.375500px;}
.xb{left:369.505500px;}
.x2{left:390.174000px;}
.xc{left:439.245000px;}
.x18{left:465.165000px;}
.x4{left:494.065500px;}
.x1c{left:497.533500px;}
.x7{left:523.125000px;}
.x1a{left:542.181000px;}
.x19{left:574.609500px;}
.x1e{left:619.534500px;}
.x1d{left:650.776500px;}
.x8{left:756.337500px;}
.x1b{left:803.037000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:15.118767pt;}
.ws59{word-spacing:-13.283467pt;}
.ws24{word-spacing:-10.626800pt;}
.ws57{word-spacing:-3.188032pt;}
.ws3e{word-spacing:-3.134898pt;}
.ws3f{word-spacing:-2.762961pt;}
.ws1d{word-spacing:-2.603559pt;}
.ws9{word-spacing:-2.444158pt;}
.ws1c{word-spacing:-2.178489pt;}
.ws45{word-spacing:-2.125355pt;}
.wsd{word-spacing:-1.434614pt;}
.ws2c{word-spacing:-1.009543pt;}
.ws56{word-spacing:-0.743874pt;}
.ws5b{word-spacing:-0.690740pt;}
.ws62{word-spacing:-0.265669pt;}
.ws5{word-spacing:-0.053134pt;}
.ws2{word-spacing:0.000000pt;}
.ws14{word-spacing:0.159402pt;}
.wsc{word-spacing:0.212535pt;}
.ws51{word-spacing:0.265669pt;}
.wse{word-spacing:0.318803pt;}
.ws10{word-spacing:0.371937pt;}
.ws4f{word-spacing:0.425071pt;}
.ws29{word-spacing:0.531339pt;}
.ws5c{word-spacing:0.531516pt;}
.ws3d{word-spacing:0.584473pt;}
.ws38{word-spacing:0.637606pt;}
.ws5f{word-spacing:0.838579pt;}
.ws12{word-spacing:0.850142pt;}
.ws13{word-spacing:0.903276pt;}
.ws8{word-spacing:0.956410pt;}
.ws39{word-spacing:1.062677pt;}
.ws53{word-spacing:1.168945pt;}
.ws16{word-spacing:1.328347pt;}
.ws61{word-spacing:1.434614pt;}
.ws5d{word-spacing:1.487748pt;}
.ws46{word-spacing:1.753418pt;}
.ws1b{word-spacing:1.806551pt;}
.ws2d{word-spacing:1.965953pt;}
.ws48{word-spacing:2.231622pt;}
.ws65{word-spacing:2.337890pt;}
.ws47{word-spacing:2.444158pt;}
.ws35{word-spacing:2.656693pt;}
.ws11{word-spacing:2.709827pt;}
.ws30{word-spacing:2.762961pt;}
.wsf{word-spacing:2.922363pt;}
.ws28{word-spacing:3.028630pt;}
.ws44{word-spacing:3.081764pt;}
.ws36{word-spacing:3.134898pt;}
.ws37{word-spacing:3.294300pt;}
.wsb{word-spacing:3.506835pt;}
.ws21{word-spacing:3.528098pt;}
.ws20{word-spacing:3.613112pt;}
.ws15{word-spacing:3.719371pt;}
.ws3{word-spacing:3.825664pt;}
.ws17{word-spacing:3.878772pt;}
.ws3a{word-spacing:4.091308pt;}
.ws2e{word-spacing:4.144442pt;}
.ws49{word-spacing:4.250709pt;}
.ws1f{word-spacing:4.303843pt;}
.ws2a{word-spacing:4.410111pt;}
.ws5a{word-spacing:4.728914pt;}
.ws33{word-spacing:4.782048pt;}
.ws7{word-spacing:4.835182pt;}
.ws27{word-spacing:4.845821pt;}
.ws26{word-spacing:5.015850pt;}
.ws2b{word-spacing:5.207119pt;}
.ws25{word-spacing:5.653458pt;}
.ws66{word-spacing:5.844725pt;}
.ws19{word-spacing:5.897859pt;}
.ws1a{word-spacing:6.004127pt;}
.ws43{word-spacing:6.057261pt;}
.ws42{word-spacing:6.429198pt;}
.ws2f{word-spacing:6.482332pt;}
.ws4d{word-spacing:6.907403pt;}
.ws3c{word-spacing:6.960537pt;}
.ws6{word-spacing:7.119938pt;}
.ws4c{word-spacing:7.385607pt;}
.ws55{word-spacing:7.438741pt;}
.ws5e{word-spacing:7.545009pt;}
.ws34{word-spacing:8.076348pt;}
.ws22{word-spacing:8.331411pt;}
.ws18{word-spacing:8.342017pt;}
.ws52{word-spacing:8.660820pt;}
.ws4e{word-spacing:9.723498pt;}
.ws4a{word-spacing:9.989167pt;}
.ws54{word-spacing:10.945577pt;}
.ws67{word-spacing:11.317514pt;}
.ws58{word-spacing:11.476915pt;}
.ws63{word-spacing:12.964663pt;}
.ws1e{word-spacing:13.230333pt;}
.ws32{word-spacing:13.283467pt;}
.ws60{word-spacing:14.027341pt;}
.ws64{word-spacing:15.090018pt;}
.ws1{word-spacing:15.876506pt;}
.ws41{word-spacing:17.268507pt;}
.ws50{word-spacing:17.374774pt;}
.ws0{word-spacing:19.051754pt;}
.ws3b{word-spacing:20.190869pt;}
.ws4b{word-spacing:20.615940pt;}
.ws31{word-spacing:26.513799pt;}
.ws4{word-spacing:28.644659pt;}
.ws40{word-spacing:30.498839pt;}
.wsa{word-spacing:31.827186pt;}
.ws23{word-spacing:59.581705pt;}
._6{margin-left:-7.396284pt;}
._3{margin-left:-5.993540pt;}
._7{margin-left:-4.718319pt;}
._0{margin-left:-3.825653pt;}
._8{margin-left:-2.922363pt;}
._2{margin-left:-1.147699pt;}
._a{width:2.067248pt;}
._5{width:3.279403pt;}
._14{width:4.194289pt;}
._4{width:5.350980pt;}
._b{width:12.592726pt;}
._1b{width:14.643701pt;}
._c{width:15.780758pt;}
._17{width:16.960373pt;}
._e{width:18.278065pt;}
._1f{width:19.266348pt;}
._11{width:20.722208pt;}
._13{width:21.869907pt;}
._10{width:23.644571pt;}
._d{width:26.088729pt;}
._f{width:27.310793pt;}
._20{width:28.518193pt;}
._16{width:29.542535pt;}
._9{width:31.136446pt;}
._12{width:34.165076pt;}
._18{width:35.918494pt;}
._1a{width:37.003751pt;}
._15{width:38.070274pt;}
._1e{width:39.258215pt;}
._1d{width:46.545267pt;}
._21{width:49.255094pt;}
._22{width:50.849110pt;}
._19{width:56.447686pt;}
._1c{width:68.598501pt;}
._1{width:107.437397pt;}
.fs4{font-size:42.507200pt;}
.fs2{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y41{bottom:105.121333pt;}
.y2f{bottom:107.816000pt;}
.y2e{bottom:120.966667pt;}
.y40{bottom:121.328000pt;}
.y2d{bottom:134.117333pt;}
.y3f{bottom:137.533333pt;}
.y5a{bottom:145.504000pt;}
.y2c{bottom:147.268000pt;}
.y3e{bottom:153.740000pt;}
.y2b{bottom:160.418667pt;}
.y6f{bottom:169.945333pt;}
.y59{bottom:171.748000pt;}
.y2a{bottom:173.569333pt;}
.y3d{bottom:177.916000pt;}
.y6e{bottom:186.150667pt;}
.y29{bottom:186.720000pt;}
.y28{bottom:187.040000pt;}
.y58{bottom:187.953333pt;}
.y3c{bottom:200.292000pt;}
.y57{bottom:204.160000pt;}
.y6d{bottom:210.882667pt;}
.y3b{bottom:216.498667pt;}
.y56{bottom:220.365333pt;}
.y27{bottom:230.993333pt;}
.y3a{bottom:232.704000pt;}
.y55{bottom:236.572000pt;}
.y26{bottom:247.198667pt;}
.y6c{bottom:249.618667pt;}
.y54{bottom:252.777333pt;}
.y6b{bottom:265.824000pt;}
.y53{bottom:268.982667pt;}
.y25{bottom:272.969333pt;}
.y6a{bottom:282.030667pt;}
.y52{bottom:285.189333pt;}
.y24{bottom:289.176000pt;}
.y69{bottom:298.236000pt;}
.y51{bottom:305.585333pt;}
.y68{bottom:314.441333pt;}
.y50{bottom:329.060000pt;}
.y67{bottom:330.648000pt;}
.y23{bottom:330.920000pt;}
.y4f{bottom:345.265333pt;}
.y66{bottom:346.853333pt;}
.y22{bottom:347.125333pt;}
.y4e{bottom:361.472000pt;}
.y65{bottom:363.060000pt;}
.y21{bottom:363.332000pt;}
.y20{bottom:379.537333pt;}
.y64{bottom:387.790667pt;}
.y1f{bottom:395.744000pt;}
.y1e{bottom:411.949333pt;}
.y63{bottom:420.374667pt;}
.y1d{bottom:428.156000pt;}
.y62{bottom:436.580000pt;}
.y1c{bottom:444.361333pt;}
.y1b{bottom:460.566667pt;}
.y1a{bottom:477.612000pt;}
.y19{bottom:493.818667pt;}
.y18{bottom:510.024000pt;}
.y17{bottom:526.230667pt;}
.y16{bottom:542.436000pt;}
.y15{bottom:558.641333pt;}
.y14{bottom:574.848000pt;}
.y13{bottom:591.053333pt;}
.y12{bottom:607.260000pt;}
.y11{bottom:623.465333pt;}
.y39{bottom:632.136000pt;}
.y4d{bottom:633.177333pt;}
.y10{bottom:639.672000pt;}
.y38{bottom:648.342667pt;}
.y4c{bottom:649.384000pt;}
.yf{bottom:655.877333pt;}
.y37{bottom:664.548000pt;}
.y4b{bottom:665.589333pt;}
.y61{bottom:674.996000pt;}
.ye{bottom:677.868000pt;}
.y36{bottom:680.754667pt;}
.y4a{bottom:681.796000pt;}
.y60{bottom:691.201333pt;}
.y35{bottom:696.960000pt;}
.y49{bottom:698.001333pt;}
.y5f{bottom:707.406667pt;}
.y34{bottom:713.165333pt;}
.yd{bottom:715.833333pt;}
.y48{bottom:718.397333pt;}
.y5e{bottom:723.613333pt;}
.y33{bottom:729.372000pt;}
.yc{bottom:732.038667pt;}
.y47{bottom:739.182667pt;}
.y5d{bottom:739.818667pt;}
.y32{bottom:745.577333pt;}
.yb{bottom:748.245333pt;}
.y7e{bottom:750.713333pt;}
.y46{bottom:755.388000pt;}
.y31{bottom:761.784000pt;}
.ya{bottom:764.450667pt;}
.y7d{bottom:766.920000pt;}
.y30{bottom:777.989333pt;}
.y9{bottom:780.657333pt;}
.y7c{bottom:783.125333pt;}
.y5c{bottom:783.130667pt;}
.y7b{bottom:799.330667pt;}
.y5b{bottom:799.336000pt;}
.y8{bottom:802.165333pt;}
.y7a{bottom:826.164000pt;}
.y79{bottom:842.369333pt;}
.y78{bottom:858.576000pt;}
.y7{bottom:860.878667pt;}
.y77{bottom:874.781333pt;}
.y6{bottom:879.476000pt;}
.y76{bottom:890.988000pt;}
.y5{bottom:898.072000pt;}
.y4{bottom:916.669333pt;}
.y75{bottom:917.820000pt;}
.y74{bottom:934.026667pt;}
.y73{bottom:950.232000pt;}
.y3{bottom:953.864000pt;}
.y72{bottom:966.437333pt;}
.y71{bottom:993.270667pt;}
.y45{bottom:995.661333pt;}
.y2{bottom:1001.772000pt;}
.y44{bottom:1011.868000pt;}
.y70{bottom:1020.102667pt;}
.y1{bottom:1023.025333pt;}
.y43{bottom:1028.073333pt;}
.y42{bottom:1044.278667pt;}
.hc{height:29.244954pt;}
.hf{height:29.458287pt;}
.h8{height:29.840179pt;}
.he{height:30.307634pt;}
.hd{height:30.392648pt;}
.ha{height:36.556100pt;}
.h10{height:36.817434pt;}
.hb{height:36.822767pt;}
.h9{height:37.884447pt;}
.h6{height:43.867614pt;}
.h7{height:44.182281pt;}
.h5{height:44.187614pt;}
.h4{height:45.461641pt;}
.h3{height:46.224307pt;}
.h2{height:54.553817pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x20{left:71.117333pt;}
.xf{left:73.322667pt;}
.x1{left:87.196000pt;}
.x11{left:89.262667pt;}
.x17{left:92.536000pt;}
.x12{left:100.869333pt;}
.x5{left:104.498667pt;}
.x15{left:130.016000pt;}
.x14{left:133.302667pt;}
.x9{left:155.484000pt;}
.x10{left:166.382667pt;}
.x1f{left:174.665333pt;}
.x3{left:183.225333pt;}
.xe{left:192.484000pt;}
.x13{left:198.322667pt;}
.x22{left:205.162667pt;}
.x6{left:218.964000pt;}
.xd{left:229.794667pt;}
.xa{left:249.402667pt;}
.x16{left:295.024000pt;}
.x21{left:305.222667pt;}
.xb{left:328.449333pt;}
.x2{left:346.821333pt;}
.xc{left:390.440000pt;}
.x18{left:413.480000pt;}
.x4{left:439.169333pt;}
.x1c{left:442.252000pt;}
.x7{left:465.000000pt;}
.x1a{left:481.938667pt;}
.x19{left:510.764000pt;}
.x1e{left:550.697333pt;}
.x1d{left:578.468000pt;}
.x8{left:672.300000pt;}
.x1b{left:713.810667pt;}
}




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