
    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_ae8dc3e83000fb2d578c1272.woff')format("woff");}.ff1{font-family:ff1;line-height:0.914062;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_ba5b4e5f56eaace1810bfbbc.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_9fdb6f08fe685646df069d04.woff')format("woff");}.ff3{font-family:ff3;line-height:1.402354;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_dd4e2953456e4ef1d7e23fb5.woff')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_9a0a42d35e0ac5b6605977b3.woff')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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:ff6;src:url('chunks/assets/font_952984c7620ffdb7f4da7415.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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:ff7;src:url('chunks/assets/font_f45745fc56bbccf3c7afd24d.woff')format("woff");}.ff7{font-family:ff7;line-height:1.003906;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);}
.v1{vertical-align:-99.720000px;}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-1.200000px;}
.lsb{letter-spacing:-0.552000px;}
.ls8{letter-spacing:-0.516000px;}
.ls3{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.096000px;}
.ls9{letter-spacing:0.384000px;}
.ls0{letter-spacing:0.600000px;}
.lse{letter-spacing:0.648000px;}
.lsa{letter-spacing:0.828000px;}
.ls1{letter-spacing:0.888000px;}
.ls4{letter-spacing:1.200000px;}
.ls7{letter-spacing:1.296000px;}
.ls2{letter-spacing:18.660000px;}
.lsd{letter-spacing:30.600000px;}
.lsc{letter-spacing:939.330000px;}
.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;}
}
.ws4{word-spacing:-22.296000px;}
.ws1{word-spacing:-22.200000px;}
.ws9{word-spacing:-21.648000px;}
.ws3{word-spacing:-21.096000px;}
.ws0{word-spacing:-21.000000px;}
.ws2{word-spacing:-19.800000px;}
.ws7{word-spacing:-18.384000px;}
.ws6{word-spacing:-18.037500px;}
.ws8{word-spacing:-18.000000px;}
.ws5{word-spacing:0.000000px;}
._6{margin-left:-3.108000px;}
._0{margin-left:-1.260000px;}
._1{width:1.176000px;}
._2{width:2.334000px;}
._3{width:3.426000px;}
._13{width:5.028000px;}
._14{width:6.174000px;}
._22{width:7.374000px;}
._a{width:8.430000px;}
._b{width:9.432000px;}
._15{width:11.172000px;}
._9{width:12.180000px;}
._4{width:13.944000px;}
._5{width:15.054000px;}
._26{width:16.380000px;}
._19{width:17.640000px;}
._18{width:18.732000px;}
._2a{width:19.740000px;}
._e{width:22.596000px;}
._29{width:24.048000px;}
._2b{width:25.302000px;}
._1a{width:26.796000px;}
._1b{width:27.870000px;}
._1e{width:28.998000px;}
._c{width:30.324000px;}
._d{width:32.004000px;}
._1d{width:33.264000px;}
._16{width:34.710000px;}
._17{width:35.874000px;}
._1c{width:43.866000px;}
._10{width:45.342000px;}
._f{width:46.956000px;}
._21{width:48.132000px;}
._23{width:49.140000px;}
._8{width:51.636000px;}
._7{width:53.058000px;}
._1f{width:59.640000px;}
._20{width:60.648000px;}
._2f{width:64.368000px;}
._2e{width:65.904000px;}
._2c{width:82.404000px;}
._2d{width:83.664000px;}
._24{width:85.812000px;}
._25{width:90.888000px;}
._12{width:101.922000px;}
._11{width:103.182000px;}
._27{width:105.420000px;}
._28{width:106.512000px;}
._30{width:125.268000px;}
._31{width:843.330000px;}
.fc2{color:rgb(0,32,96);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs4{font-size:72.150000px;}
.fs0{font-size:84.000000px;}
.y71{bottom:-17.550000px;}
.y7b{bottom:-15.495000px;}
.y77{bottom:-14.295000px;}
.y82{bottom:-13.695000px;}
.y7f{bottom:-12.225000px;}
.y0{bottom:0.000000px;}
.y62{bottom:1.350000px;}
.y70{bottom:2.550000px;}
.y86{bottom:3.975000px;}
.y7a{bottom:4.620000px;}
.y4a{bottom:5.370000px;}
.y48{bottom:5.415000px;}
.y5a{bottom:5.550000px;}
.y76{bottom:5.805000px;}
.y5d{bottom:5.850000px;}
.y56{bottom:5.895000px;}
.y81{bottom:6.405000px;}
.y53{bottom:7.080000px;}
.y7e{bottom:7.875000px;}
.y60{bottom:11.280000px;}
.y6f{bottom:23.250000px;}
.y79{bottom:25.305000px;}
.y85{bottom:26.475000px;}
.y75{bottom:26.505000px;}
.y5c{bottom:28.080000px;}
.y7d{bottom:28.575000px;}
.y5f{bottom:33.480000px;}
.y64{bottom:36.780000px;}
.y73{bottom:47.250000px;}
.y55{bottom:47.895000px;}
.y51{bottom:48.495000px;}
.y58{bottom:50.280000px;}
.y2{bottom:53.137500px;}
.y1{bottom:59.137500px;}
.y6b{bottom:66.420000px;}
.y4c{bottom:80.025000px;}
.y2f{bottom:89.137500px;}
.y2e{bottom:109.837500px;}
.y69{bottom:111.120000px;}
.y2d{bottom:130.537500px;}
.y2c{bottom:151.245000px;}
.y67{bottom:167.775000px;}
.y46{bottom:168.375000px;}
.y84{bottom:188.400000px;}
.y45{bottom:192.375000px;}
.y2b{bottom:192.675000px;}
.y2a{bottom:216.675000px;}
.y44{bottom:240.675000px;}
.y29{bottom:240.975000px;}
.y83{bottom:255.900000px;}
.y28{bottom:264.975000px;}
.y43{bottom:288.975000px;}
.y27{bottom:289.275000px;}
.y7c{bottom:300.900000px;}
.y26{bottom:313.275000px;}
.y42{bottom:337.320000px;}
.y25{bottom:337.620000px;}
.y24{bottom:361.620000px;}
.y68{bottom:362.700000px;}
.y80{bottom:369.600000px;}
.y6d{bottom:384.120000px;}
.y41{bottom:385.620000px;}
.y23{bottom:385.905000px;}
.y6c{bottom:406.905000px;}
.y78{bottom:407.700000px;}
.y22{bottom:409.905000px;}
.y40{bottom:433.905000px;}
.y21{bottom:434.205000px;}
.y6a{bottom:451.620000px;}
.y3f{bottom:457.620000px;}
.y20{bottom:458.205000px;}
.y72{bottom:466.200000px;}
.y3e{bottom:481.620000px;}
.y1f{bottom:482.505000px;}
.y74{bottom:492.705000px;}
.y3d{bottom:505.950000px;}
.y1e{bottom:506.550000px;}
.y3c{bottom:530.550000px;}
.y1d{bottom:530.850000px;}
.y6e{bottom:548.700000px;}
.y3b{bottom:554.250000px;}
.y1c{bottom:554.850000px;}
.y3a{bottom:578.850000px;}
.y1b{bottom:579.150000px;}
.y1a{bottom:603.150000px;}
.y39{bottom:627.150000px;}
.y19{bottom:627.450000px;}
.y61{bottom:640.200000px;}
.y57{bottom:641.700000px;}
.y18{bottom:651.450000px;}
.y5b{bottom:664.800000px;}
.y5e{bottom:669.000000px;}
.y59{bottom:669.450000px;}
.y38{bottom:675.480000px;}
.y17{bottom:675.780000px;}
.y16{bottom:699.780000px;}
.y37{bottom:723.780000px;}
.y15{bottom:724.080000px;}
.y14{bottom:748.080000px;}
.y4b{bottom:770.100000px;}
.y36{bottom:772.080000px;}
.y13{bottom:772.380000px;}
.y50{bottom:775.800000px;}
.y54{bottom:776.400000px;}
.y63{bottom:778.200000px;}
.y4f{bottom:787.695000px;}
.y49{bottom:791.010000px;}
.y65{bottom:793.380000px;}
.y12{bottom:796.380000px;}
.y52{bottom:803.580000px;}
.y4e{bottom:808.980000px;}
.y35{bottom:819.795000px;}
.y11{bottom:820.695000px;}
.y4d{bottom:829.380000px;}
.y47{bottom:839.310000px;}
.y10{bottom:844.125000px;}
.y66{bottom:844.725000px;}
.yf{bottom:868.425000px;}
.y34{bottom:869.025000px;}
.ye{bottom:893.025000px;}
.yd{bottom:917.325000px;}
.yc{bottom:941.325000px;}
.yb{bottom:965.625000px;}
.ya{bottom:989.025000px;}
.y33{bottom:989.625000px;}
.y9{bottom:1013.955000px;}
.y8{bottom:1037.955000px;}
.y7{bottom:1062.255000px;}
.y6{bottom:1085.655000px;}
.y32{bottom:1086.255000px;}
.y5{bottom:1110.570000px;}
.y4{bottom:1133.955000px;}
.y31{bottom:1134.570000px;}
.y3{bottom:1158.255000px;}
.y30{bottom:1158.870000px;}
.h14{height:18.000000px;}
.h1a{height:22.800000px;}
.hc{height:24.285000px;}
.h1b{height:24.300000px;}
.hb{height:24.322500px;}
.h16{height:39.600000px;}
.h18{height:41.700000px;}
.h1c{height:43.200000px;}
.h12{height:44.700000px;}
.h19{height:45.000000px;}
.h13{height:50.100000px;}
.ha{height:50.273438px;}
.h6{height:58.652344px;}
.h5{height:59.267578px;}
.h3{height:61.670545px;}
.h17{height:63.600000px;}
.hf{height:64.800000px;}
.h8{height:65.645508px;}
.h10{height:66.000000px;}
.h11{height:66.900000px;}
.h9{height:70.664062px;}
.he{height:70.811279px;}
.h1d{height:71.613281px;}
.h2{height:82.441406px;}
.h4{height:84.656250px;}
.h1e{height:86.338763px;}
.hd{height:98.100000px;}
.h15{height:127.800000px;}
.h7{height:1262.681100px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w3{width:52.185000px;}
.wc{width:84.300000px;}
.wb{width:112.200000px;}
.w5{width:112.500000px;}
.w4{width:146.100000px;}
.w9{width:149.100000px;}
.w8{width:163.500000px;}
.w6{width:195.600000px;}
.w7{width:238.500000px;}
.wa{width:531.900000px;}
.w13{width:534.000000px;}
.w11{width:535.800000px;}
.w10{width:537.600000px;}
.we{width:537.900000px;}
.wf{width:538.200000px;}
.wd{width:538.800000px;}
.w12{width:540.000000px;}
.w2{width:893.081250px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x29{left:11.595000px;}
.x1c{left:16.620000px;}
.x1a{left:27.450000px;}
.x18{left:32.280000px;}
.x25{left:34.680000px;}
.x20{left:39.637500px;}
.x11{left:42.600000px;}
.x13{left:50.430000px;}
.x23{left:55.350000px;}
.x2{left:84.937500px;}
.x21{left:90.375000px;}
.x1e{left:94.320000px;}
.x2b{left:102.900000px;}
.x1f{left:109.500000px;}
.xd{left:111.937500px;}
.x2c{left:114.937500px;}
.x12{left:117.000000px;}
.x9{left:127.537500px;}
.x15{left:133.237500px;}
.x4{left:135.637500px;}
.x14{left:138.937500px;}
.x3{left:145.837500px;}
.x16{left:148.537500px;}
.xe{left:156.011250px;}
.x27{left:174.120000px;}
.x26{left:177.600000px;}
.xf{left:187.575000px;}
.x32{left:198.056250px;}
.x33{left:229.575000px;}
.x2d{left:247.800000px;}
.x2e{left:249.900000px;}
.x31{left:252.000000px;}
.x2f{left:260.775000px;}
.x7{left:262.575000px;}
.x1b{left:286.200000px;}
.xc{left:301.020000px;}
.x30{left:302.295000px;}
.x8{left:327.120000px;}
.x1d{left:345.720000px;}
.x6{left:357.120000px;}
.x10{left:420.450000px;}
.x22{left:426.900000px;}
.x1{left:430.650000px;}
.x5{left:446.250000px;}
.x17{left:505.500000px;}
.x19{left:538.695000px;}
.x24{left:613.200000px;}
.x28{left:642.000000px;}
.x2a{left:663.825000px;}
.xa{left:748.406250px;}
.xb{left:779.955000px;}
@media print{
.v1{vertical-align:-88.640000pt;}
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-1.066667pt;}
.lsb{letter-spacing:-0.490667pt;}
.ls8{letter-spacing:-0.458667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.085333pt;}
.ls9{letter-spacing:0.341333pt;}
.ls0{letter-spacing:0.533333pt;}
.lse{letter-spacing:0.576000pt;}
.lsa{letter-spacing:0.736000pt;}
.ls1{letter-spacing:0.789333pt;}
.ls4{letter-spacing:1.066667pt;}
.ls7{letter-spacing:1.152000pt;}
.ls2{letter-spacing:16.586667pt;}
.lsd{letter-spacing:27.200000pt;}
.lsc{letter-spacing:834.960000pt;}
.ws4{word-spacing:-19.818667pt;}
.ws1{word-spacing:-19.733333pt;}
.ws9{word-spacing:-19.242667pt;}
.ws3{word-spacing:-18.752000pt;}
.ws0{word-spacing:-18.666667pt;}
.ws2{word-spacing:-17.600000pt;}
.ws7{word-spacing:-16.341333pt;}
.ws6{word-spacing:-16.033333pt;}
.ws8{word-spacing:-16.000000pt;}
.ws5{word-spacing:0.000000pt;}
._6{margin-left:-2.762667pt;}
._0{margin-left:-1.120000pt;}
._1{width:1.045333pt;}
._2{width:2.074667pt;}
._3{width:3.045333pt;}
._13{width:4.469333pt;}
._14{width:5.488000pt;}
._22{width:6.554667pt;}
._a{width:7.493333pt;}
._b{width:8.384000pt;}
._15{width:9.930667pt;}
._9{width:10.826667pt;}
._4{width:12.394667pt;}
._5{width:13.381333pt;}
._26{width:14.560000pt;}
._19{width:15.680000pt;}
._18{width:16.650667pt;}
._2a{width:17.546667pt;}
._e{width:20.085333pt;}
._29{width:21.376000pt;}
._2b{width:22.490667pt;}
._1a{width:23.818667pt;}
._1b{width:24.773333pt;}
._1e{width:25.776000pt;}
._c{width:26.954667pt;}
._d{width:28.448000pt;}
._1d{width:29.568000pt;}
._16{width:30.853333pt;}
._17{width:31.888000pt;}
._1c{width:38.992000pt;}
._10{width:40.304000pt;}
._f{width:41.738667pt;}
._21{width:42.784000pt;}
._23{width:43.680000pt;}
._8{width:45.898667pt;}
._7{width:47.162667pt;}
._1f{width:53.013333pt;}
._20{width:53.909333pt;}
._2f{width:57.216000pt;}
._2e{width:58.581333pt;}
._2c{width:73.248000pt;}
._2d{width:74.368000pt;}
._24{width:76.277333pt;}
._25{width:80.789333pt;}
._12{width:90.597333pt;}
._11{width:91.717333pt;}
._27{width:93.706667pt;}
._28{width:94.677333pt;}
._30{width:111.349333pt;}
._31{width:749.626667pt;}
.fs1{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs4{font-size:64.133333pt;}
.fs0{font-size:74.666667pt;}
.y71{bottom:-15.600000pt;}
.y7b{bottom:-13.773333pt;}
.y77{bottom:-12.706667pt;}
.y82{bottom:-12.173333pt;}
.y7f{bottom:-10.866667pt;}
.y0{bottom:0.000000pt;}
.y62{bottom:1.200000pt;}
.y70{bottom:2.266667pt;}
.y86{bottom:3.533333pt;}
.y7a{bottom:4.106667pt;}
.y4a{bottom:4.773333pt;}
.y48{bottom:4.813333pt;}
.y5a{bottom:4.933333pt;}
.y76{bottom:5.160000pt;}
.y5d{bottom:5.200000pt;}
.y56{bottom:5.240000pt;}
.y81{bottom:5.693333pt;}
.y53{bottom:6.293333pt;}
.y7e{bottom:7.000000pt;}
.y60{bottom:10.026667pt;}
.y6f{bottom:20.666667pt;}
.y79{bottom:22.493333pt;}
.y85{bottom:23.533333pt;}
.y75{bottom:23.560000pt;}
.y5c{bottom:24.960000pt;}
.y7d{bottom:25.400000pt;}
.y5f{bottom:29.760000pt;}
.y64{bottom:32.693333pt;}
.y73{bottom:42.000000pt;}
.y55{bottom:42.573333pt;}
.y51{bottom:43.106667pt;}
.y58{bottom:44.693333pt;}
.y2{bottom:47.233333pt;}
.y1{bottom:52.566667pt;}
.y6b{bottom:59.040000pt;}
.y4c{bottom:71.133333pt;}
.y2f{bottom:79.233333pt;}
.y2e{bottom:97.633333pt;}
.y69{bottom:98.773333pt;}
.y2d{bottom:116.033333pt;}
.y2c{bottom:134.440000pt;}
.y67{bottom:149.133333pt;}
.y46{bottom:149.666667pt;}
.y84{bottom:167.466667pt;}
.y45{bottom:171.000000pt;}
.y2b{bottom:171.266667pt;}
.y2a{bottom:192.600000pt;}
.y44{bottom:213.933333pt;}
.y29{bottom:214.200000pt;}
.y83{bottom:227.466667pt;}
.y28{bottom:235.533333pt;}
.y43{bottom:256.866667pt;}
.y27{bottom:257.133333pt;}
.y7c{bottom:267.466667pt;}
.y26{bottom:278.466667pt;}
.y42{bottom:299.840000pt;}
.y25{bottom:300.106667pt;}
.y24{bottom:321.440000pt;}
.y68{bottom:322.400000pt;}
.y80{bottom:328.533333pt;}
.y6d{bottom:341.440000pt;}
.y41{bottom:342.773333pt;}
.y23{bottom:343.026667pt;}
.y6c{bottom:361.693333pt;}
.y78{bottom:362.400000pt;}
.y22{bottom:364.360000pt;}
.y40{bottom:385.693333pt;}
.y21{bottom:385.960000pt;}
.y6a{bottom:401.440000pt;}
.y3f{bottom:406.773333pt;}
.y20{bottom:407.293333pt;}
.y72{bottom:414.400000pt;}
.y3e{bottom:428.106667pt;}
.y1f{bottom:428.893333pt;}
.y74{bottom:437.960000pt;}
.y3d{bottom:449.733333pt;}
.y1e{bottom:450.266667pt;}
.y3c{bottom:471.600000pt;}
.y1d{bottom:471.866667pt;}
.y6e{bottom:487.733333pt;}
.y3b{bottom:492.666667pt;}
.y1c{bottom:493.200000pt;}
.y3a{bottom:514.533333pt;}
.y1b{bottom:514.800000pt;}
.y1a{bottom:536.133333pt;}
.y39{bottom:557.466667pt;}
.y19{bottom:557.733333pt;}
.y61{bottom:569.066667pt;}
.y57{bottom:570.400000pt;}
.y18{bottom:579.066667pt;}
.y5b{bottom:590.933333pt;}
.y5e{bottom:594.666667pt;}
.y59{bottom:595.066667pt;}
.y38{bottom:600.426667pt;}
.y17{bottom:600.693333pt;}
.y16{bottom:622.026667pt;}
.y37{bottom:643.360000pt;}
.y15{bottom:643.626667pt;}
.y14{bottom:664.960000pt;}
.y4b{bottom:684.533333pt;}
.y36{bottom:686.293333pt;}
.y13{bottom:686.560000pt;}
.y50{bottom:689.600000pt;}
.y54{bottom:690.133333pt;}
.y63{bottom:691.733333pt;}
.y4f{bottom:700.173333pt;}
.y49{bottom:703.120000pt;}
.y65{bottom:705.226667pt;}
.y12{bottom:707.893333pt;}
.y52{bottom:714.293333pt;}
.y4e{bottom:719.093333pt;}
.y35{bottom:728.706667pt;}
.y11{bottom:729.506667pt;}
.y4d{bottom:737.226667pt;}
.y47{bottom:746.053333pt;}
.y10{bottom:750.333333pt;}
.y66{bottom:750.866667pt;}
.yf{bottom:771.933333pt;}
.y34{bottom:772.466667pt;}
.ye{bottom:793.800000pt;}
.yd{bottom:815.400000pt;}
.yc{bottom:836.733333pt;}
.yb{bottom:858.333333pt;}
.ya{bottom:879.133333pt;}
.y33{bottom:879.666667pt;}
.y9{bottom:901.293333pt;}
.y8{bottom:922.626667pt;}
.y7{bottom:944.226667pt;}
.y6{bottom:965.026667pt;}
.y32{bottom:965.560000pt;}
.y5{bottom:987.173333pt;}
.y4{bottom:1007.960000pt;}
.y31{bottom:1008.506667pt;}
.y3{bottom:1029.560000pt;}
.y30{bottom:1030.106667pt;}
.h14{height:16.000000pt;}
.h1a{height:20.266667pt;}
.hc{height:21.586667pt;}
.h1b{height:21.600000pt;}
.hb{height:21.620000pt;}
.h16{height:35.200000pt;}
.h18{height:37.066667pt;}
.h1c{height:38.400000pt;}
.h12{height:39.733333pt;}
.h19{height:40.000000pt;}
.h13{height:44.533333pt;}
.ha{height:44.687500pt;}
.h6{height:52.135417pt;}
.h5{height:52.682292pt;}
.h3{height:54.818262pt;}
.h17{height:56.533333pt;}
.hf{height:57.600000pt;}
.h8{height:58.351562pt;}
.h10{height:58.666667pt;}
.h11{height:59.466667pt;}
.h9{height:62.812500pt;}
.he{height:62.943359pt;}
.h1d{height:63.656250pt;}
.h2{height:73.281250pt;}
.h4{height:75.250000pt;}
.h1e{height:76.745567pt;}
.hd{height:87.200000pt;}
.h15{height:113.600000pt;}
.h7{height:1122.383200pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w3{width:46.386667pt;}
.wc{width:74.933333pt;}
.wb{width:99.733333pt;}
.w5{width:100.000000pt;}
.w4{width:129.866667pt;}
.w9{width:132.533333pt;}
.w8{width:145.333333pt;}
.w6{width:173.866667pt;}
.w7{width:212.000000pt;}
.wa{width:472.800000pt;}
.w13{width:474.666667pt;}
.w11{width:476.266667pt;}
.w10{width:477.866667pt;}
.we{width:478.133333pt;}
.wf{width:478.400000pt;}
.wd{width:478.933333pt;}
.w12{width:480.000000pt;}
.w2{width:793.850000pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x29{left:10.306667pt;}
.x1c{left:14.773333pt;}
.x1a{left:24.400000pt;}
.x18{left:28.693333pt;}
.x25{left:30.826667pt;}
.x20{left:35.233333pt;}
.x11{left:37.866667pt;}
.x13{left:44.826667pt;}
.x23{left:49.200000pt;}
.x2{left:75.500000pt;}
.x21{left:80.333333pt;}
.x1e{left:83.840000pt;}
.x2b{left:91.466667pt;}
.x1f{left:97.333333pt;}
.xd{left:99.500000pt;}
.x2c{left:102.166667pt;}
.x12{left:104.000000pt;}
.x9{left:113.366667pt;}
.x15{left:118.433333pt;}
.x4{left:120.566667pt;}
.x14{left:123.500000pt;}
.x3{left:129.633333pt;}
.x16{left:132.033333pt;}
.xe{left:138.676667pt;}
.x27{left:154.773333pt;}
.x26{left:157.866667pt;}
.xf{left:166.733333pt;}
.x32{left:176.050000pt;}
.x33{left:204.066667pt;}
.x2d{left:220.266667pt;}
.x2e{left:222.133333pt;}
.x31{left:224.000000pt;}
.x2f{left:231.800000pt;}
.x7{left:233.400000pt;}
.x1b{left:254.400000pt;}
.xc{left:267.573333pt;}
.x30{left:268.706667pt;}
.x8{left:290.773333pt;}
.x1d{left:307.306667pt;}
.x6{left:317.440000pt;}
.x10{left:373.733333pt;}
.x22{left:379.466667pt;}
.x1{left:382.800000pt;}
.x5{left:396.666667pt;}
.x17{left:449.333333pt;}
.x19{left:478.840000pt;}
.x24{left:545.066667pt;}
.x28{left:570.666667pt;}
.x2a{left:590.066667pt;}
.xa{left:665.250000pt;}
.xb{left:693.293333pt;}
}




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