
    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_24718c61892d08cf701d8d6b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.149414;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_2dfe8d1e714b8c038fb3e8d1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.149414;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_f74a9de2e76bc394f57f8de0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.130371;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_bb093f239a34ee4b010f9815.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.130371;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_3d41c7da2ab02fa9f0bc1953.woff2')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_1af317d363897e46521acaab.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.978027;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:ff8;src:url('chunks/assets/font_4b45e26640fab28b59c73501.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.112305;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:ff9;src:url('chunks/assets/font_c8fea2a8534136f7b185e9da.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_03e1a09eb09830ff10c255f2.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;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:ffb;src:url('chunks/assets/font_0e3ccbc2c869d408494a747a.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls1e{letter-spacing:-1.896000px;}
.ls10{letter-spacing:-1.440000px;}
.lsf{letter-spacing:-0.828000px;}
.ls11{letter-spacing:-0.720000px;}
.ls1d{letter-spacing:-0.612000px;}
.lsd{letter-spacing:-0.597600px;}
.ls18{letter-spacing:-0.584400px;}
.ls25{letter-spacing:-0.457800px;}
.ls19{letter-spacing:-0.305400px;}
.lse{letter-spacing:-0.302400px;}
.lsc{letter-spacing:-0.116400px;}
.lsb{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.027360px;}
.ls24{letter-spacing:0.044640px;}
.ls12{letter-spacing:0.120000px;}
.ls2{letter-spacing:0.401760px;}
.ls26{letter-spacing:0.457800px;}
.ls5{letter-spacing:0.558720px;}
.ls3{letter-spacing:0.720000px;}
.ls22{letter-spacing:0.826560px;}
.ls1f{letter-spacing:0.858000px;}
.ls13{letter-spacing:0.900000px;}
.ls1{letter-spacing:1.235520px;}
.ls23{letter-spacing:1.409760px;}
.ls0{letter-spacing:1.465920px;}
.ls1b{letter-spacing:2.160000px;}
.ls20{letter-spacing:2.280000px;}
.ls8{letter-spacing:3.600000px;}
.ls17{letter-spacing:5.040000px;}
.ls1c{letter-spacing:6.480000px;}
.ls14{letter-spacing:7.920000px;}
.ls7{letter-spacing:9.360000px;}
.ls16{letter-spacing:10.800000px;}
.ls1a{letter-spacing:13.680000px;}
.ls9{letter-spacing:15.120000px;}
.lsa{letter-spacing:20.880000px;}
.ls6{letter-spacing:23.760000px;}
.ls15{letter-spacing:25.200000px;}
.ls21{letter-spacing:51.120000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(64,64,64),0 0.015em rgb(64,64,64),0.015em 0 rgb(64,64,64),0 -0.015em  rgb(64,64,64);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(64,64,64);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-26.895120px;}
.wsb{word-spacing:-21.849120px;}
.ws1{word-spacing:-21.804480px;}
.wsa{word-spacing:-19.733520px;}
.ws2{word-spacing:-18.875520px;}
.ws8{word-spacing:-18.291120px;}
.ws3{word-spacing:-17.573760px;}
.wsc{word-spacing:-17.017800px;}
.ws4{word-spacing:-16.560000px;}
.ws9{word-spacing:-15.948000px;}
.ws5{word-spacing:-15.120000px;}
.ws7{word-spacing:-14.970240px;}
.ws6{word-spacing:0.000000px;}
._15{margin-left:-3329.400000px;}
._13{margin-left:-5.034240px;}
._12{margin-left:-4.004640px;}
._0{margin-left:-2.894400px;}
._1{margin-left:-1.447200px;}
._2{width:1.116000px;}
._3{width:2.763840px;}
._5{width:4.297920px;}
._4{width:5.423040px;}
._6{width:6.934080px;}
._d{width:8.311200px;}
._c{width:9.462240px;}
._16{width:10.587360px;}
._8{width:11.847840px;}
._7{width:13.181760px;}
._14{width:14.814720px;}
._a{width:17.686080px;}
._10{width:19.261920px;}
._e{width:20.514240px;}
._f{width:21.771360px;}
._18{width:23.372640px;}
._9{width:24.641280px;}
._b{width:25.945920px;}
._11{width:27.423360px;}
._17{width:50.994720px;}
.fc2{color:rgb(64,64,64);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(89,89,89);}
.fs6{font-size:60.000000px;}
.fs3{font-size:63.360000px;}
.fs1{font-size:66.240000px;}
.fs5{font-size:77.760000px;}
.fs4{font-size:83.520000px;}
.fs0{font-size:96.480000px;}
.fs2{font-size:119.520000px;}
.y0{bottom:0.000000px;}
.y29{bottom:30.000000px;}
.y2{bottom:57.276000px;}
.y74{bottom:120.276000px;}
.y28{bottom:126.036000px;}
.y73{bottom:143.352000px;}
.y94{bottom:146.952000px;}
.y27{bottom:148.752000px;}
.y4f{bottom:154.155000px;}
.y72{bottom:166.035000px;}
.y93{bottom:169.635000px;}
.y26{bottom:171.795000px;}
.y4e{bottom:176.835000px;}
.y25{bottom:194.475000px;}
.y4d{bottom:196.275000px;}
.y71{bottom:198.075000px;}
.y92{bottom:198.435000px;}
.y24{bottom:217.155000px;}
.y91{bottom:221.115000px;}
.y70{bottom:231.555000px;}
.y23{bottom:239.835000px;}
.y90{bottom:244.155000px;}
.y6f{bottom:254.235000px;}
.y22{bottom:262.515000px;}
.y8f{bottom:272.985000px;}
.y6e{bottom:273.705000px;}
.y21{bottom:285.585000px;}
.y8e{bottom:295.665000px;}
.y20{bottom:308.265000px;}
.y8d{bottom:324.465000px;}
.y1f{bottom:330.945000px;}
.y4c{bottom:331.665000px;}
.y8c{bottom:347.145000px;}
.y1e{bottom:353.625000px;}
.y4b{bottom:354.345000px;}
.y8b{bottom:375.945000px;}
.y1d{bottom:376.665000px;}
.y4a{bottom:377.025000px;}
.y8a{bottom:398.670000px;}
.y1c{bottom:399.390000px;}
.y49{bottom:400.110000px;}
.y6d{bottom:409.110000px;}
.y1b{bottom:422.070000px;}
.y48{bottom:422.790000px;}
.y89{bottom:427.470000px;}
.y6c{bottom:432.150000px;}
.y1a{bottom:444.750000px;}
.y47{bottom:445.470000px;}
.y88{bottom:450.150000px;}
.y6b{bottom:454.830000px;}
.y19{bottom:467.790000px;}
.y46{bottom:468.150000px;}
.y87{bottom:473.190000px;}
.y6a{bottom:477.510000px;}
.y18{bottom:490.470000px;}
.y45{bottom:491.190000px;}
.y69{bottom:500.190000px;}
.y86{bottom:506.670000px;}
.y17{bottom:513.150000px;}
.y44{bottom:513.870000px;}
.y68{bottom:523.230000px;}
.y16{bottom:535.860000px;}
.y43{bottom:536.580000px;}
.y67{bottom:545.940000px;}
.y85{bottom:554.940000px;}
.y15{bottom:558.900000px;}
.y42{bottom:559.260000px;}
.y66{bottom:568.620000px;}
.y84{bottom:577.620000px;}
.y41{bottom:582.300000px;}
.y65{bottom:591.300000px;}
.y14{bottom:592.380000px;}
.y83{bottom:600.660000px;}
.y40{bottom:604.980000px;}
.y64{bottom:613.980000px;}
.y82{bottom:623.340000px;}
.y3f{bottom:627.660000px;}
.y63{bottom:637.020000px;}
.y13{bottom:640.620000px;}
.y81{bottom:646.020000px;}
.y3e{bottom:650.340000px;}
.y62{bottom:659.700000px;}
.y12{bottom:663.300000px;}
.y80{bottom:668.730000px;}
.y3d{bottom:673.410000px;}
.y61{bottom:682.410000px;}
.y11{bottom:686.370000px;}
.y7f{bottom:691.770000px;}
.y3c{bottom:696.090000px;}
.y60{bottom:705.090000px;}
.y10{bottom:709.050000px;}
.y7e{bottom:714.450000px;}
.y3b{bottom:718.770000px;}
.y5f{bottom:728.130000px;}
.yf{bottom:731.730000px;}
.y7d{bottom:737.130000px;}
.y3a{bottom:741.450000px;}
.y5e{bottom:750.810000px;}
.ye{bottom:754.410000px;}
.y7c{bottom:759.810000px;}
.y39{bottom:764.490000px;}
.y5d{bottom:773.490000px;}
.yd{bottom:777.450000px;}
.y7b{bottom:782.850000px;}
.y38{bottom:787.170000px;}
.y5c{bottom:796.170000px;}
.yc{bottom:800.175000px;}
.y7a{bottom:805.575000px;}
.y37{bottom:809.895000px;}
.y5b{bottom:819.255000px;}
.yb{bottom:822.855000px;}
.y79{bottom:828.255000px;}
.y36{bottom:832.575000px;}
.y5a{bottom:841.935000px;}
.ya{bottom:845.535000px;}
.y78{bottom:850.935000px;}
.y35{bottom:855.615000px;}
.y59{bottom:864.615000px;}
.y9{bottom:868.575000px;}
.y77{bottom:873.975000px;}
.y34{bottom:878.295000px;}
.y58{bottom:887.295000px;}
.y76{bottom:896.655000px;}
.y33{bottom:900.975000px;}
.y8{bottom:902.055000px;}
.y57{bottom:910.335000px;}
.y32{bottom:923.655000px;}
.y75{bottom:930.135000px;}
.y56{bottom:933.045000px;}
.y31{bottom:946.725000px;}
.y7{bottom:953.565000px;}
.y55{bottom:955.725000px;}
.y30{bottom:969.405000px;}
.y54{bottom:978.405000px;}
.y6{bottom:984.525000px;}
.y2f{bottom:992.085000px;}
.y53{bottom:1001.445000px;}
.y2e{bottom:1015.125000px;}
.y5{bottom:1023.045000px;}
.y52{bottom:1024.125000px;}
.y51{bottom:1046.805000px;}
.y2d{bottom:1059.045000px;}
.y4{bottom:1064.445000px;}
.y50{bottom:1069.530000px;}
.y2c{bottom:1092.570000px;}
.y2b{bottom:1115.250000px;}
.y3{bottom:1124.610000px;}
.y2a{bottom:1137.930000px;}
.y1{bottom:1187.250000px;}
.hb{height:59.383125px;}
.ha{height:62.578125px;}
.h8{height:64.978594px;}
.h9{height:65.010937px;}
.h3{height:65.884219px;}
.h7{height:79.523438px;}
.h5{height:91.863281px;}
.h6{height:93.448125px;}
.h2{height:98.788359px;}
.h4{height:113.800781px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x2{left:106.235987px;}
.x7{left:125.675987px;}
.x6{left:131.075987px;}
.x3{left:169.634987px;}
.xc{left:226.154987px;}
.x4{left:256.064987px;}
.x5{left:284.504987px;}
.xa{left:316.544987px;}
.x1{left:606.809987px;}
.xb{left:767.084987px;}
.x9{left:779.324987px;}
.x8{left:841.500000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls1e{letter-spacing:-1.685333pt;}
.ls10{letter-spacing:-1.280000pt;}
.lsf{letter-spacing:-0.736000pt;}
.ls11{letter-spacing:-0.640000pt;}
.ls1d{letter-spacing:-0.544000pt;}
.lsd{letter-spacing:-0.531200pt;}
.ls18{letter-spacing:-0.519467pt;}
.ls25{letter-spacing:-0.406933pt;}
.ls19{letter-spacing:-0.271467pt;}
.lse{letter-spacing:-0.268800pt;}
.lsc{letter-spacing:-0.103467pt;}
.lsb{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.024320pt;}
.ls24{letter-spacing:0.039680pt;}
.ls12{letter-spacing:0.106667pt;}
.ls2{letter-spacing:0.357120pt;}
.ls26{letter-spacing:0.406933pt;}
.ls5{letter-spacing:0.496640pt;}
.ls3{letter-spacing:0.640000pt;}
.ls22{letter-spacing:0.734720pt;}
.ls1f{letter-spacing:0.762667pt;}
.ls13{letter-spacing:0.800000pt;}
.ls1{letter-spacing:1.098240pt;}
.ls23{letter-spacing:1.253120pt;}
.ls0{letter-spacing:1.303040pt;}
.ls1b{letter-spacing:1.920000pt;}
.ls20{letter-spacing:2.026667pt;}
.ls8{letter-spacing:3.200000pt;}
.ls17{letter-spacing:4.480000pt;}
.ls1c{letter-spacing:5.760000pt;}
.ls14{letter-spacing:7.040000pt;}
.ls7{letter-spacing:8.320000pt;}
.ls16{letter-spacing:9.600000pt;}
.ls1a{letter-spacing:12.160000pt;}
.ls9{letter-spacing:13.440000pt;}
.lsa{letter-spacing:18.560000pt;}
.ls6{letter-spacing:21.120000pt;}
.ls15{letter-spacing:22.400000pt;}
.ls21{letter-spacing:45.440000pt;}
.ws0{word-spacing:-23.906773pt;}
.wsb{word-spacing:-19.421440pt;}
.ws1{word-spacing:-19.381760pt;}
.wsa{word-spacing:-17.540907pt;}
.ws2{word-spacing:-16.778240pt;}
.ws8{word-spacing:-16.258773pt;}
.ws3{word-spacing:-15.621120pt;}
.wsc{word-spacing:-15.126933pt;}
.ws4{word-spacing:-14.720000pt;}
.ws9{word-spacing:-14.176000pt;}
.ws5{word-spacing:-13.440000pt;}
.ws7{word-spacing:-13.306880pt;}
.ws6{word-spacing:0.000000pt;}
._15{margin-left:-2959.466667pt;}
._13{margin-left:-4.474880pt;}
._12{margin-left:-3.559680pt;}
._0{margin-left:-2.572800pt;}
._1{margin-left:-1.286400pt;}
._2{width:0.992000pt;}
._3{width:2.456747pt;}
._5{width:3.820373pt;}
._4{width:4.820480pt;}
._6{width:6.163627pt;}
._d{width:7.387733pt;}
._c{width:8.410880pt;}
._16{width:9.410987pt;}
._8{width:10.531413pt;}
._7{width:11.717120pt;}
._14{width:13.168640pt;}
._a{width:15.720960pt;}
._10{width:17.121707pt;}
._e{width:18.234880pt;}
._f{width:19.352320pt;}
._18{width:20.775680pt;}
._9{width:21.903360pt;}
._b{width:23.063040pt;}
._11{width:24.376320pt;}
._17{width:45.328640pt;}
.fs6{font-size:53.333333pt;}
.fs3{font-size:56.320000pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:69.120000pt;}
.fs4{font-size:74.240000pt;}
.fs0{font-size:85.760000pt;}
.fs2{font-size:106.240000pt;}
.y0{bottom:0.000000pt;}
.y29{bottom:26.666667pt;}
.y2{bottom:50.912000pt;}
.y74{bottom:106.912000pt;}
.y28{bottom:112.032000pt;}
.y73{bottom:127.424000pt;}
.y94{bottom:130.624000pt;}
.y27{bottom:132.224000pt;}
.y4f{bottom:137.026667pt;}
.y72{bottom:147.586667pt;}
.y93{bottom:150.786667pt;}
.y26{bottom:152.706667pt;}
.y4e{bottom:157.186667pt;}
.y25{bottom:172.866667pt;}
.y4d{bottom:174.466667pt;}
.y71{bottom:176.066667pt;}
.y92{bottom:176.386667pt;}
.y24{bottom:193.026667pt;}
.y91{bottom:196.546667pt;}
.y70{bottom:205.826667pt;}
.y23{bottom:213.186667pt;}
.y90{bottom:217.026667pt;}
.y6f{bottom:225.986667pt;}
.y22{bottom:233.346667pt;}
.y8f{bottom:242.653333pt;}
.y6e{bottom:243.293333pt;}
.y21{bottom:253.853333pt;}
.y8e{bottom:262.813333pt;}
.y20{bottom:274.013333pt;}
.y8d{bottom:288.413333pt;}
.y1f{bottom:294.173333pt;}
.y4c{bottom:294.813333pt;}
.y8c{bottom:308.573333pt;}
.y1e{bottom:314.333333pt;}
.y4b{bottom:314.973333pt;}
.y8b{bottom:334.173333pt;}
.y1d{bottom:334.813333pt;}
.y4a{bottom:335.133333pt;}
.y8a{bottom:354.373333pt;}
.y1c{bottom:355.013333pt;}
.y49{bottom:355.653333pt;}
.y6d{bottom:363.653333pt;}
.y1b{bottom:375.173333pt;}
.y48{bottom:375.813333pt;}
.y89{bottom:379.973333pt;}
.y6c{bottom:384.133333pt;}
.y1a{bottom:395.333333pt;}
.y47{bottom:395.973333pt;}
.y88{bottom:400.133333pt;}
.y6b{bottom:404.293333pt;}
.y19{bottom:415.813333pt;}
.y46{bottom:416.133333pt;}
.y87{bottom:420.613333pt;}
.y6a{bottom:424.453333pt;}
.y18{bottom:435.973333pt;}
.y45{bottom:436.613333pt;}
.y69{bottom:444.613333pt;}
.y86{bottom:450.373333pt;}
.y17{bottom:456.133333pt;}
.y44{bottom:456.773333pt;}
.y68{bottom:465.093333pt;}
.y16{bottom:476.320000pt;}
.y43{bottom:476.960000pt;}
.y67{bottom:485.280000pt;}
.y85{bottom:493.280000pt;}
.y15{bottom:496.800000pt;}
.y42{bottom:497.120000pt;}
.y66{bottom:505.440000pt;}
.y84{bottom:513.440000pt;}
.y41{bottom:517.600000pt;}
.y65{bottom:525.600000pt;}
.y14{bottom:526.560000pt;}
.y83{bottom:533.920000pt;}
.y40{bottom:537.760000pt;}
.y64{bottom:545.760000pt;}
.y82{bottom:554.080000pt;}
.y3f{bottom:557.920000pt;}
.y63{bottom:566.240000pt;}
.y13{bottom:569.440000pt;}
.y81{bottom:574.240000pt;}
.y3e{bottom:578.080000pt;}
.y62{bottom:586.400000pt;}
.y12{bottom:589.600000pt;}
.y80{bottom:594.426667pt;}
.y3d{bottom:598.586667pt;}
.y61{bottom:606.586667pt;}
.y11{bottom:610.106667pt;}
.y7f{bottom:614.906667pt;}
.y3c{bottom:618.746667pt;}
.y60{bottom:626.746667pt;}
.y10{bottom:630.266667pt;}
.y7e{bottom:635.066667pt;}
.y3b{bottom:638.906667pt;}
.y5f{bottom:647.226667pt;}
.yf{bottom:650.426667pt;}
.y7d{bottom:655.226667pt;}
.y3a{bottom:659.066667pt;}
.y5e{bottom:667.386667pt;}
.ye{bottom:670.586667pt;}
.y7c{bottom:675.386667pt;}
.y39{bottom:679.546667pt;}
.y5d{bottom:687.546667pt;}
.yd{bottom:691.066667pt;}
.y7b{bottom:695.866667pt;}
.y38{bottom:699.706667pt;}
.y5c{bottom:707.706667pt;}
.yc{bottom:711.266667pt;}
.y7a{bottom:716.066667pt;}
.y37{bottom:719.906667pt;}
.y5b{bottom:728.226667pt;}
.yb{bottom:731.426667pt;}
.y79{bottom:736.226667pt;}
.y36{bottom:740.066667pt;}
.y5a{bottom:748.386667pt;}
.ya{bottom:751.586667pt;}
.y78{bottom:756.386667pt;}
.y35{bottom:760.546667pt;}
.y59{bottom:768.546667pt;}
.y9{bottom:772.066667pt;}
.y77{bottom:776.866667pt;}
.y34{bottom:780.706667pt;}
.y58{bottom:788.706667pt;}
.y76{bottom:797.026667pt;}
.y33{bottom:800.866667pt;}
.y8{bottom:801.826667pt;}
.y57{bottom:809.186667pt;}
.y32{bottom:821.026667pt;}
.y75{bottom:826.786667pt;}
.y56{bottom:829.373333pt;}
.y31{bottom:841.533333pt;}
.y7{bottom:847.613333pt;}
.y55{bottom:849.533333pt;}
.y30{bottom:861.693333pt;}
.y54{bottom:869.693333pt;}
.y6{bottom:875.133333pt;}
.y2f{bottom:881.853333pt;}
.y53{bottom:890.173333pt;}
.y2e{bottom:902.333333pt;}
.y5{bottom:909.373333pt;}
.y52{bottom:910.333333pt;}
.y51{bottom:930.493333pt;}
.y2d{bottom:941.373333pt;}
.y4{bottom:946.173333pt;}
.y50{bottom:950.693333pt;}
.y2c{bottom:971.173333pt;}
.y2b{bottom:991.333333pt;}
.y3{bottom:999.653333pt;}
.y2a{bottom:1011.493333pt;}
.y1{bottom:1055.333333pt;}
.hb{height:52.785000pt;}
.ha{height:55.625000pt;}
.h8{height:57.758750pt;}
.h9{height:57.787500pt;}
.h3{height:58.563750pt;}
.h7{height:70.687500pt;}
.h5{height:81.656250pt;}
.h6{height:83.065000pt;}
.h2{height:87.811875pt;}
.h4{height:101.156250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x2{left:94.431988pt;}
.x7{left:111.711988pt;}
.x6{left:116.511988pt;}
.x3{left:150.786655pt;}
.xc{left:201.026655pt;}
.x4{left:227.613322pt;}
.x5{left:252.893322pt;}
.xa{left:281.373322pt;}
.x1{left:539.386655pt;}
.xb{left:681.853322pt;}
.x9{left:692.733322pt;}
.x8{left:748.000000pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  