
    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_356826ddcd54d062a8480444.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.994141;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_57495b4441d0f2534b200f57.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.974121;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_87849fcfb54b1ab743793d21.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.010254;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_2c250f3c611a16d495eef5af.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.005371;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);}
.v2{vertical-align:-23.976000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:21.978000px;}
.v1{vertical-align:23.976000px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.004200px;}
.ls2{letter-spacing:0.006000px;}
.ls0{letter-spacing:0.006600px;}
.ls1{letter-spacing:0.007200px;}
.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;}
}
.ws0{word-spacing:-22.500000px;}
.ws3{word-spacing:-18.000000px;}
.ws1{word-spacing:-16.506600px;}
.ws7{word-spacing:-16.500000px;}
.ws4{word-spacing:-15.000000px;}
.ws5{word-spacing:-13.500000px;}
.ws2{word-spacing:-10.494000px;}
.ws8{word-spacing:-9.619500px;}
.ws6{word-spacing:0.000000px;}
.ws9{word-spacing:4.271039px;}
._0{margin-left:-9.120000px;}
._18{margin-left:-4.690800px;}
._17{margin-left:-3.636600px;}
._12{margin-left:-2.455200px;}
._7{margin-left:-1.346400px;}
._c{width:1.425600px;}
._13{width:2.541000px;}
._e{width:3.940200px;}
._8{width:5.544000px;}
._11{width:6.791400px;}
._16{width:8.110200px;}
._1{width:9.188400px;}
._10{width:10.374000px;}
._6{width:11.602800px;}
._f{width:13.312200px;}
._4{width:14.982000px;}
._1d{width:16.755600px;}
._b{width:18.004800px;}
._a{width:19.773600px;}
._2{width:21.430200px;}
._3{width:22.677600px;}
._5{width:23.680800px;}
._d{width:25.363800px;}
._15{width:26.710200px;}
._1b{width:29.396400px;}
._14{width:30.643800px;}
._1e{width:32.934000px;}
._1a{width:34.848000px;}
._9{width:36.465000px;}
._1f{width:38.388000px;}
._1c{width:45.932400px;}
._19{width:49.902600px;}
.fc3{color:transparent;}
.fc2{color:rgb(32,94,158);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:38.478000px;}
.fs5{font-size:41.976000px;}
.fs9{font-size:42.857160px;}
.fs7{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:90.000000px;}
.fs3{font-size:120.000000px;}
.fs1{font-size:228.000000px;}
.y0{bottom:0.000000px;}
.y34{bottom:44.125350px;}
.y1{bottom:56.834700px;}
.y86{bottom:60.295200px;}
.y33{bottom:60.325350px;}
.y85{bottom:114.562500px;}
.yac{bottom:117.439650px;}
.y67{bottom:121.606650px;}
.ydf{bottom:126.326250px;}
.y1f{bottom:126.982050px;}
.y84{bottom:134.362500px;}
.yab{bottom:135.439650px;}
.y66{bottom:141.406650px;}
.yde{bottom:144.326250px;}
.y1e{bottom:146.782050px;}
.yaa{bottom:153.439500px;}
.y83{bottom:154.162500px;}
.y65{bottom:161.206500px;}
.ydd{bottom:162.327000px;}
.y1d{bottom:166.582500px;}
.y82{bottom:173.962500px;}
.ya9{bottom:179.943000px;}
.ydc{bottom:180.327000px;}
.y64{bottom:181.006500px;}
.y1c{bottom:186.382500px;}
.y81{bottom:193.762500px;}
.ya8{bottom:197.943000px;}
.ydb{bottom:198.327000px;}
.y63{bottom:200.806500px;}
.y1b{bottom:206.182500px;}
.y80{bottom:213.562500px;}
.ya7{bottom:215.943000px;}
.yda{bottom:216.327000px;}
.y62{bottom:220.606500px;}
.y26{bottom:225.982500px;}
.y7f{bottom:233.362500px;}
.ya6{bottom:233.943000px;}
.yd9{bottom:234.327000px;}
.y1a{bottom:238.738500px;}
.y61{bottom:240.406500px;}
.y25{bottom:245.782500px;}
.yd8{bottom:252.327000px;}
.y7e{bottom:253.162500px;}
.y19{bottom:258.538500px;}
.y60{bottom:260.206500px;}
.ya5{bottom:260.448000px;}
.y24{bottom:265.582500px;}
.y7d{bottom:272.962500px;}
.y18{bottom:278.338500px;}
.ya4{bottom:278.448000px;}
.y5f{bottom:280.006500px;}
.yd7{bottom:283.081500px;}
.y23{bottom:285.382500px;}
.y7c{bottom:292.762500px;}
.ya3{bottom:296.448000px;}
.y17{bottom:298.138500px;}
.y5e{bottom:299.806500px;}
.yd6{bottom:301.081500px;}
.y22{bottom:305.182500px;}
.y7b{bottom:312.562500px;}
.y16{bottom:317.938500px;}
.yd5{bottom:319.081500px;}
.ya2{bottom:322.951500px;}
.y21{bottom:324.982500px;}
.y5d{bottom:332.362500px;}
.yd4{bottom:337.081500px;}
.y15{bottom:337.738500px;}
.ya1{bottom:340.951500px;}
.y20{bottom:344.782500px;}
.y5c{bottom:352.162500px;}
.yd3{bottom:355.081500px;}
.y14{bottom:357.538500px;}
.ya0{bottom:358.951500px;}
.y5b{bottom:371.962500px;}
.yd2{bottom:373.081500px;}
.y9f{bottom:376.951500px;}
.y13{bottom:377.338500px;}
.y7a{bottom:384.718500px;}
.yd1{bottom:391.081500px;}
.y5a{bottom:391.762500px;}
.y12{bottom:397.138500px;}
.y79{bottom:404.518500px;}
.yd0{bottom:409.081500px;}
.y59{bottom:411.562500px;}
.y9e{bottom:411.960000px;}
.y11{bottom:416.938500px;}
.y78{bottom:424.318500px;}
.ycf{bottom:427.081500px;}
.y58{bottom:431.362500px;}
.y10{bottom:436.738500px;}
.y77{bottom:444.118500px;}
.yce{bottom:445.081500px;}
.y57{bottom:451.162500px;}
.yf{bottom:456.538500px;}
.y76{bottom:463.918500px;}
.y56{bottom:470.962500px;}
.ycd{bottom:475.837500px;}
.ye{bottom:476.338500px;}
.y75{bottom:483.718500px;}
.y9d{bottom:491.626500px;}
.ycc{bottom:493.837500px;}
.yd{bottom:496.138500px;}
.y55{bottom:503.518500px;}
.y9c{bottom:511.426500px;}
.ycb{bottom:511.837500px;}
.yc{bottom:515.938500px;}
.y54{bottom:523.318500px;}
.yca{bottom:529.837500px;}
.yb{bottom:535.738500px;}
.y53{bottom:543.118500px;}
.y9b{bottom:543.982500px;}
.yc9{bottom:547.837500px;}
.ya{bottom:555.538500px;}
.y52{bottom:562.918500px;}
.y9a{bottom:563.782500px;}
.yc8{bottom:565.837500px;}
.y9{bottom:575.338500px;}
.y51{bottom:582.718500px;}
.y99{bottom:583.582500px;}
.yc7{bottom:583.837500px;}
.y8{bottom:595.138500px;}
.yc6{bottom:601.837500px;}
.y50{bottom:602.518500px;}
.y98{bottom:603.382500px;}
.y7{bottom:614.938500px;}
.yc5{bottom:619.837500px;}
.y4f{bottom:622.318500px;}
.y6{bottom:634.738500px;}
.y97{bottom:635.938500px;}
.y4e{bottom:642.118500px;}
.yc4{bottom:650.593500px;}
.y5{bottom:654.538500px;}
.y96{bottom:655.738500px;}
.y4d{bottom:661.918500px;}
.y4{bottom:674.338500px;}
.y95{bottom:675.538500px;}
.y4c{bottom:681.718500px;}
.y4b{bottom:701.518500px;}
.yc3{bottom:705.402000px;}
.y94{bottom:708.094500px;}
.y4a{bottom:721.318500px;}
.yc2{bottom:723.402000px;}
.y93{bottom:727.894500px;}
.y74{bottom:734.074500px;}
.y49{bottom:741.118500px;}
.yc1{bottom:741.402000px;}
.y92{bottom:747.694500px;}
.y73{bottom:753.874500px;}
.yc0{bottom:759.402000px;}
.y48{bottom:760.918500px;}
.y32{bottom:766.035000px;}
.y72{bottom:773.674500px;}
.y91{bottom:780.250500px;}
.y47{bottom:780.718500px;}
.y31{bottom:784.035000px;}
.ybf{bottom:785.905500px;}
.y71{bottom:793.474500px;}
.y90{bottom:800.050500px;}
.y46{bottom:800.518500px;}
.ybe{bottom:803.905500px;}
.y30{bottom:808.029000px;}
.y70{bottom:813.274500px;}
.y45{bottom:820.318500px;}
.ybd{bottom:821.905500px;}
.y2f{bottom:823.635000px;}
.y8f{bottom:832.606500px;}
.y6f{bottom:833.074500px;}
.yed{bottom:843.165000px;}
.y2e{bottom:847.629000px;}
.ybc{bottom:848.409000px;}
.y8e{bottom:852.406500px;}
.y44{bottom:852.874500px;}
.yec{bottom:861.165000px;}
.y2d{bottom:863.235000px;}
.ybb{bottom:866.409000px;}
.y8d{bottom:872.206500px;}
.y43{bottom:872.674500px;}
.yeb{bottom:879.165000px;}
.yba{bottom:884.409000px;}
.y2c{bottom:884.835000px;}
.y8c{bottom:892.006500px;}
.y42{bottom:892.474500px;}
.yea{bottom:897.165000px;}
.yb9{bottom:902.409000px;}
.y2b{bottom:902.835000px;}
.y8b{bottom:911.806500px;}
.y41{bottom:912.274500px;}
.ye9{bottom:915.165000px;}
.yb8{bottom:920.409000px;}
.y2a{bottom:924.435000px;}
.y8a{bottom:931.606500px;}
.y40{bottom:932.074500px;}
.ye8{bottom:933.165000px;}
.yb7{bottom:946.914000px;}
.ye7{bottom:951.165000px;}
.y89{bottom:951.406500px;}
.y3f{bottom:951.874500px;}
.y29{bottom:964.035000px;}
.yb6{bottom:964.914000px;}
.yf3{bottom:969.165000px;}
.y88{bottom:971.206500px;}
.y3e{bottom:971.674500px;}
.ye6{bottom:981.921000px;}
.yb5{bottom:982.914000px;}
.y6e{bottom:984.430500px;}
.y28{bottom:985.635000px;}
.yf2{bottom:987.165000px;}
.y3d{bottom:991.474500px;}
.ye5{bottom:999.921000px;}
.yb4{bottom:1000.914000px;}
.y87{bottom:1003.762500px;}
.y6d{bottom:1004.230500px;}
.yf1{bottom:1005.165000px;}
.y3c{bottom:1011.274500px;}
.ye4{bottom:1017.921000px;}
.yb3{bottom:1018.914000px;}
.yf0{bottom:1023.165000px;}
.y6c{bottom:1024.030500px;}
.y27{bottom:1028.835000px;}
.y3b{bottom:1031.074500px;}
.ye3{bottom:1035.921000px;}
.yef{bottom:1041.165000px;}
.y6b{bottom:1043.830500px;}
.yb2{bottom:1045.417500px;}
.y3a{bottom:1050.874500px;}
.ye2{bottom:1053.921000px;}
.yee{bottom:1059.165000px;}
.yb1{bottom:1063.417500px;}
.y6a{bottom:1063.630500px;}
.y39{bottom:1070.674500px;}
.ye1{bottom:1071.921000px;}
.yb0{bottom:1081.417500px;}
.y69{bottom:1083.430500px;}
.ye0{bottom:1089.921000px;}
.y38{bottom:1090.474500px;}
.y3{bottom:1100.785500px;}
.y68{bottom:1103.230500px;}
.yaf{bottom:1107.921000px;}
.y37{bottom:1123.030500px;}
.yae{bottom:1125.921000px;}
.y36{bottom:1142.830500px;}
.yad{bottom:1143.921000px;}
.y2{bottom:1159.671000px;}
.y35{bottom:1204.695000px;}
.hb{height:30.457195px;}
.hd{height:39.313477px;}
.hc{height:39.366211px;}
.ha{height:43.535156px;}
.h12{height:43.681641px;}
.h11{height:43.740234px;}
.h10{height:47.888672px;}
.h6{height:48.049805px;}
.h3{height:48.114258px;}
.he{height:49.991036px;}
.h9{height:52.242188px;}
.hf{height:52.488281px;}
.h8{height:54.535676px;}
.h5{height:65.610352px;}
.h7{height:87.480469px;}
.h4{height:171.000000px;}
.h2{height:1262.834646px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:0.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:44.645700px;}
.x13{left:46.771650px;}
.x5{left:108.000000px;}
.xc{left:113.269200px;}
.x11{left:116.700600px;}
.xf{left:122.185050px;}
.x15{left:125.007900px;}
.x2{left:127.657350px;}
.x4{left:129.259800px;}
.x3{left:131.834700px;}
.xb{left:158.643000px;}
.xa{left:267.343500px;}
.x9{left:276.069000px;}
.xe{left:316.242000px;}
.xd{left:323.356500px;}
.x10{left:358.432500px;}
.x12{left:393.447000px;}
.x6{left:467.716500px;}
.x16{left:484.725000px;}
.x7{left:488.976000px;}
.x17{left:660.300000px;}
.x1{left:825.643500px;}
.x8{left:827.769000px;}
@media print{
.v2{vertical-align:-21.312000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:19.536000pt;}
.v1{vertical-align:21.312000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.003733pt;}
.ls2{letter-spacing:0.005333pt;}
.ls0{letter-spacing:0.005867pt;}
.ls1{letter-spacing:0.006400pt;}
.ws0{word-spacing:-20.000000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws1{word-spacing:-14.672533pt;}
.ws7{word-spacing:-14.666667pt;}
.ws4{word-spacing:-13.333333pt;}
.ws5{word-spacing:-12.000000pt;}
.ws2{word-spacing:-9.328000pt;}
.ws8{word-spacing:-8.550667pt;}
.ws6{word-spacing:0.000000pt;}
.ws9{word-spacing:3.796479pt;}
._0{margin-left:-8.106667pt;}
._18{margin-left:-4.169600pt;}
._17{margin-left:-3.232533pt;}
._12{margin-left:-2.182400pt;}
._7{margin-left:-1.196800pt;}
._c{width:1.267200pt;}
._13{width:2.258667pt;}
._e{width:3.502400pt;}
._8{width:4.928000pt;}
._11{width:6.036800pt;}
._16{width:7.209067pt;}
._1{width:8.167467pt;}
._10{width:9.221333pt;}
._6{width:10.313600pt;}
._f{width:11.833067pt;}
._4{width:13.317333pt;}
._1d{width:14.893867pt;}
._b{width:16.004267pt;}
._a{width:17.576533pt;}
._2{width:19.049067pt;}
._3{width:20.157867pt;}
._5{width:21.049600pt;}
._d{width:22.545600pt;}
._15{width:23.742400pt;}
._1b{width:26.130133pt;}
._14{width:27.238933pt;}
._1e{width:29.274667pt;}
._1a{width:30.976000pt;}
._9{width:32.413333pt;}
._1f{width:34.122667pt;}
._1c{width:40.828800pt;}
._19{width:44.357867pt;}
.fs8{font-size:34.202667pt;}
.fs5{font-size:37.312000pt;}
.fs9{font-size:38.095253pt;}
.fs7{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:80.000000pt;}
.fs3{font-size:106.666667pt;}
.fs1{font-size:202.666667pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:39.222533pt;}
.y1{bottom:50.519733pt;}
.y86{bottom:53.595733pt;}
.y33{bottom:53.622533pt;}
.y85{bottom:101.833333pt;}
.yac{bottom:104.390800pt;}
.y67{bottom:108.094800pt;}
.ydf{bottom:112.290000pt;}
.y1f{bottom:112.872933pt;}
.y84{bottom:119.433333pt;}
.yab{bottom:120.390800pt;}
.y66{bottom:125.694800pt;}
.yde{bottom:128.290000pt;}
.y1e{bottom:130.472933pt;}
.yaa{bottom:136.390667pt;}
.y83{bottom:137.033333pt;}
.y65{bottom:143.294667pt;}
.ydd{bottom:144.290667pt;}
.y1d{bottom:148.073333pt;}
.y82{bottom:154.633333pt;}
.ya9{bottom:159.949333pt;}
.ydc{bottom:160.290667pt;}
.y64{bottom:160.894667pt;}
.y1c{bottom:165.673333pt;}
.y81{bottom:172.233333pt;}
.ya8{bottom:175.949333pt;}
.ydb{bottom:176.290667pt;}
.y63{bottom:178.494667pt;}
.y1b{bottom:183.273333pt;}
.y80{bottom:189.833333pt;}
.ya7{bottom:191.949333pt;}
.yda{bottom:192.290667pt;}
.y62{bottom:196.094667pt;}
.y26{bottom:200.873333pt;}
.y7f{bottom:207.433333pt;}
.ya6{bottom:207.949333pt;}
.yd9{bottom:208.290667pt;}
.y1a{bottom:212.212000pt;}
.y61{bottom:213.694667pt;}
.y25{bottom:218.473333pt;}
.yd8{bottom:224.290667pt;}
.y7e{bottom:225.033333pt;}
.y19{bottom:229.812000pt;}
.y60{bottom:231.294667pt;}
.ya5{bottom:231.509333pt;}
.y24{bottom:236.073333pt;}
.y7d{bottom:242.633333pt;}
.y18{bottom:247.412000pt;}
.ya4{bottom:247.509333pt;}
.y5f{bottom:248.894667pt;}
.yd7{bottom:251.628000pt;}
.y23{bottom:253.673333pt;}
.y7c{bottom:260.233333pt;}
.ya3{bottom:263.509333pt;}
.y17{bottom:265.012000pt;}
.y5e{bottom:266.494667pt;}
.yd6{bottom:267.628000pt;}
.y22{bottom:271.273333pt;}
.y7b{bottom:277.833333pt;}
.y16{bottom:282.612000pt;}
.yd5{bottom:283.628000pt;}
.ya2{bottom:287.068000pt;}
.y21{bottom:288.873333pt;}
.y5d{bottom:295.433333pt;}
.yd4{bottom:299.628000pt;}
.y15{bottom:300.212000pt;}
.ya1{bottom:303.068000pt;}
.y20{bottom:306.473333pt;}
.y5c{bottom:313.033333pt;}
.yd3{bottom:315.628000pt;}
.y14{bottom:317.812000pt;}
.ya0{bottom:319.068000pt;}
.y5b{bottom:330.633333pt;}
.yd2{bottom:331.628000pt;}
.y9f{bottom:335.068000pt;}
.y13{bottom:335.412000pt;}
.y7a{bottom:341.972000pt;}
.yd1{bottom:347.628000pt;}
.y5a{bottom:348.233333pt;}
.y12{bottom:353.012000pt;}
.y79{bottom:359.572000pt;}
.yd0{bottom:363.628000pt;}
.y59{bottom:365.833333pt;}
.y9e{bottom:366.186667pt;}
.y11{bottom:370.612000pt;}
.y78{bottom:377.172000pt;}
.ycf{bottom:379.628000pt;}
.y58{bottom:383.433333pt;}
.y10{bottom:388.212000pt;}
.y77{bottom:394.772000pt;}
.yce{bottom:395.628000pt;}
.y57{bottom:401.033333pt;}
.yf{bottom:405.812000pt;}
.y76{bottom:412.372000pt;}
.y56{bottom:418.633333pt;}
.ycd{bottom:422.966667pt;}
.ye{bottom:423.412000pt;}
.y75{bottom:429.972000pt;}
.y9d{bottom:437.001333pt;}
.ycc{bottom:438.966667pt;}
.yd{bottom:441.012000pt;}
.y55{bottom:447.572000pt;}
.y9c{bottom:454.601333pt;}
.ycb{bottom:454.966667pt;}
.yc{bottom:458.612000pt;}
.y54{bottom:465.172000pt;}
.yca{bottom:470.966667pt;}
.yb{bottom:476.212000pt;}
.y53{bottom:482.772000pt;}
.y9b{bottom:483.540000pt;}
.yc9{bottom:486.966667pt;}
.ya{bottom:493.812000pt;}
.y52{bottom:500.372000pt;}
.y9a{bottom:501.140000pt;}
.yc8{bottom:502.966667pt;}
.y9{bottom:511.412000pt;}
.y51{bottom:517.972000pt;}
.y99{bottom:518.740000pt;}
.yc7{bottom:518.966667pt;}
.y8{bottom:529.012000pt;}
.yc6{bottom:534.966667pt;}
.y50{bottom:535.572000pt;}
.y98{bottom:536.340000pt;}
.y7{bottom:546.612000pt;}
.yc5{bottom:550.966667pt;}
.y4f{bottom:553.172000pt;}
.y6{bottom:564.212000pt;}
.y97{bottom:565.278667pt;}
.y4e{bottom:570.772000pt;}
.yc4{bottom:578.305333pt;}
.y5{bottom:581.812000pt;}
.y96{bottom:582.878667pt;}
.y4d{bottom:588.372000pt;}
.y4{bottom:599.412000pt;}
.y95{bottom:600.478667pt;}
.y4c{bottom:605.972000pt;}
.y4b{bottom:623.572000pt;}
.yc3{bottom:627.024000pt;}
.y94{bottom:629.417333pt;}
.y4a{bottom:641.172000pt;}
.yc2{bottom:643.024000pt;}
.y93{bottom:647.017333pt;}
.y74{bottom:652.510667pt;}
.y49{bottom:658.772000pt;}
.yc1{bottom:659.024000pt;}
.y92{bottom:664.617333pt;}
.y73{bottom:670.110667pt;}
.yc0{bottom:675.024000pt;}
.y48{bottom:676.372000pt;}
.y32{bottom:680.920000pt;}
.y72{bottom:687.710667pt;}
.y91{bottom:693.556000pt;}
.y47{bottom:693.972000pt;}
.y31{bottom:696.920000pt;}
.ybf{bottom:698.582667pt;}
.y71{bottom:705.310667pt;}
.y90{bottom:711.156000pt;}
.y46{bottom:711.572000pt;}
.ybe{bottom:714.582667pt;}
.y30{bottom:718.248000pt;}
.y70{bottom:722.910667pt;}
.y45{bottom:729.172000pt;}
.ybd{bottom:730.582667pt;}
.y2f{bottom:732.120000pt;}
.y8f{bottom:740.094667pt;}
.y6f{bottom:740.510667pt;}
.yed{bottom:749.480000pt;}
.y2e{bottom:753.448000pt;}
.ybc{bottom:754.141333pt;}
.y8e{bottom:757.694667pt;}
.y44{bottom:758.110667pt;}
.yec{bottom:765.480000pt;}
.y2d{bottom:767.320000pt;}
.ybb{bottom:770.141333pt;}
.y8d{bottom:775.294667pt;}
.y43{bottom:775.710667pt;}
.yeb{bottom:781.480000pt;}
.yba{bottom:786.141333pt;}
.y2c{bottom:786.520000pt;}
.y8c{bottom:792.894667pt;}
.y42{bottom:793.310667pt;}
.yea{bottom:797.480000pt;}
.yb9{bottom:802.141333pt;}
.y2b{bottom:802.520000pt;}
.y8b{bottom:810.494667pt;}
.y41{bottom:810.910667pt;}
.ye9{bottom:813.480000pt;}
.yb8{bottom:818.141333pt;}
.y2a{bottom:821.720000pt;}
.y8a{bottom:828.094667pt;}
.y40{bottom:828.510667pt;}
.ye8{bottom:829.480000pt;}
.yb7{bottom:841.701333pt;}
.ye7{bottom:845.480000pt;}
.y89{bottom:845.694667pt;}
.y3f{bottom:846.110667pt;}
.y29{bottom:856.920000pt;}
.yb6{bottom:857.701333pt;}
.yf3{bottom:861.480000pt;}
.y88{bottom:863.294667pt;}
.y3e{bottom:863.710667pt;}
.ye6{bottom:872.818667pt;}
.yb5{bottom:873.701333pt;}
.y6e{bottom:875.049333pt;}
.y28{bottom:876.120000pt;}
.yf2{bottom:877.480000pt;}
.y3d{bottom:881.310667pt;}
.ye5{bottom:888.818667pt;}
.yb4{bottom:889.701333pt;}
.y87{bottom:892.233333pt;}
.y6d{bottom:892.649333pt;}
.yf1{bottom:893.480000pt;}
.y3c{bottom:898.910667pt;}
.ye4{bottom:904.818667pt;}
.yb3{bottom:905.701333pt;}
.yf0{bottom:909.480000pt;}
.y6c{bottom:910.249333pt;}
.y27{bottom:914.520000pt;}
.y3b{bottom:916.510667pt;}
.ye3{bottom:920.818667pt;}
.yef{bottom:925.480000pt;}
.y6b{bottom:927.849333pt;}
.yb2{bottom:929.260000pt;}
.y3a{bottom:934.110667pt;}
.ye2{bottom:936.818667pt;}
.yee{bottom:941.480000pt;}
.yb1{bottom:945.260000pt;}
.y6a{bottom:945.449333pt;}
.y39{bottom:951.710667pt;}
.ye1{bottom:952.818667pt;}
.yb0{bottom:961.260000pt;}
.y69{bottom:963.049333pt;}
.ye0{bottom:968.818667pt;}
.y38{bottom:969.310667pt;}
.y3{bottom:978.476000pt;}
.y68{bottom:980.649333pt;}
.yaf{bottom:984.818667pt;}
.y37{bottom:998.249333pt;}
.yae{bottom:1000.818667pt;}
.y36{bottom:1015.849333pt;}
.yad{bottom:1016.818667pt;}
.y2{bottom:1030.818667pt;}
.y35{bottom:1070.840000pt;}
.hb{height:27.073062pt;}
.hd{height:34.945312pt;}
.hc{height:34.992188pt;}
.ha{height:38.697917pt;}
.h12{height:38.828125pt;}
.h11{height:38.880208pt;}
.h10{height:42.567708pt;}
.h6{height:42.710938pt;}
.h3{height:42.768229pt;}
.he{height:44.436477pt;}
.h9{height:46.437500pt;}
.hf{height:46.656250pt;}
.h8{height:48.476156pt;}
.h5{height:58.320312pt;}
.h7{height:77.760417pt;}
.h4{height:152.000000pt;}
.h2{height:1122.519685pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:0.000000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:39.685067pt;}
.x13{left:41.574800pt;}
.x5{left:96.000000pt;}
.xc{left:100.683733pt;}
.x11{left:103.733867pt;}
.xf{left:108.608933pt;}
.x15{left:111.118133pt;}
.x2{left:113.473200pt;}
.x4{left:114.897600pt;}
.x3{left:117.186400pt;}
.xb{left:141.016000pt;}
.xa{left:237.638667pt;}
.x9{left:245.394667pt;}
.xe{left:281.104000pt;}
.xd{left:287.428000pt;}
.x10{left:318.606667pt;}
.x12{left:349.730667pt;}
.x6{left:415.748000pt;}
.x16{left:430.866667pt;}
.x7{left:434.645333pt;}
.x17{left:586.933333pt;}
.x1{left:733.905333pt;}
.x8{left:735.794667pt;}
}




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