
    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_4086c3be174668e32a860d91.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.934082;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_49a8764c3ca796606baed9d9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.934082;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_498a6d37ba133612a10cc006.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_6e82f967b09c1db3f89f68be.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.040039;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_04cbc886b35abb8f4901b432.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;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_87f3fc235570c91cfdcc09f6.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_611ef544ef135bac0195fc11.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_adce31029f2db1027a16d984.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_1163654fa2e458544bd2b633.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.937988;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_96e77d514f8f35aeb7a627b2.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.937988;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_6193fc93719873dbca485474.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.739746;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;}
.lsc{letter-spacing:-1.440000px;}
.ls6{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.305400px;}
.ls7{letter-spacing:-0.053280px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.017280px;}
.lsa{letter-spacing:0.152400px;}
.ls3{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.360000px;}
.ls8{letter-spacing:39.881280px;}
.ls4{letter-spacing:106.740000px;}
.lsb{letter-spacing:199.416000px;}
.ls0{letter-spacing:1024.920000px;}
.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;}
}
.ws8{word-spacing:-16.712400px;}
.ws6{word-spacing:-16.560000px;}
.ws7{word-spacing:-16.254600px;}
.ws0{word-spacing:-14.970240px;}
.ws4{word-spacing:-14.940000px;}
.ws3{word-spacing:-14.580000px;}
.ws1{word-spacing:-12.060000px;}
.ws2{word-spacing:-11.700000px;}
.ws5{word-spacing:0.000000px;}
._10{margin-left:-7.231680px;}
._18{margin-left:-6.027840px;}
._1{margin-left:-5.016960px;}
._4{margin-left:-3.254640px;}
._0{margin-left:-1.523520px;}
._2{width:1.135440px;}
._3{width:2.447760px;}
._d{width:4.206480px;}
._8{width:5.286480px;}
._b{width:6.708240px;}
._a{width:8.187120px;}
._7{width:9.561600px;}
._c{width:10.577520px;}
._9{width:11.712240px;}
._5{width:13.266720px;}
._13{width:14.554080px;}
._6{width:16.573920px;}
._e{width:18.002640px;}
._f{width:19.018080px;}
._11{width:20.666880px;}
._12{width:21.726720px;}
._19{width:22.985280px;}
._14{width:24.376320px;}
._15{width:25.502400px;}
._16{width:27.423360px;}
._1a{width:28.483200px;}
._17{width:30.006720px;}
._1c{width:31.861440px;}
._1b{width:33.120000px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs1{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:9.000000px;}
.y4{bottom:55.440000px;}
.y6f{bottom:113.796000px;}
.yc1{bottom:114.336000px;}
.y3f{bottom:120.996000px;}
.y99{bottom:127.116000px;}
.y6e{bottom:135.576000px;}
.yc0{bottom:136.116000px;}
.y3e{bottom:139.896000px;}
.y98{bottom:148.896000px;}
.y6d{bottom:157.350000px;}
.y3d{bottom:157.710000px;}
.ybf{bottom:158.070000px;}
.y97{bottom:170.850000px;}
.y3c{bottom:171.570000px;}
.y6c{bottom:179.130000px;}
.ybe{bottom:179.850000px;}
.y3b{bottom:189.030000px;}
.y96{bottom:192.630000px;}
.y6b{bottom:201.090000px;}
.ybd{bottom:201.630000px;}
.y3a{bottom:207.750000px;}
.y95{bottom:214.410000px;}
.y6a{bottom:222.870000px;}
.ybc{bottom:223.410000px;}
.y39{bottom:225.030000px;}
.y94{bottom:236.190000px;}
.y38{bottom:242.310000px;}
.y69{bottom:244.650000px;}
.ybb{bottom:245.370000px;}
.y93{bottom:257.970000px;}
.y37{bottom:259.590000px;}
.y68{bottom:266.430000px;}
.yba{bottom:267.150000px;}
.y36{bottom:276.870000px;}
.y92{bottom:279.930000px;}
.y67{bottom:288.210000px;}
.yb9{bottom:288.930000px;}
.y35{bottom:294.150000px;}
.y91{bottom:301.710000px;}
.y7b{bottom:306.750000px;}
.y66{bottom:310.170000px;}
.yb8{bottom:310.710000px;}
.y34{bottom:311.250000px;}
.y90{bottom:323.490000px;}
.y33{bottom:328.530000px;}
.y65{bottom:331.950000px;}
.yb7{bottom:332.490000px;}
.y8f{bottom:341.895000px;}
.y32{bottom:345.855000px;}
.y7a{bottom:350.535000px;}
.y64{bottom:353.775000px;}
.yb6{bottom:354.495000px;}
.y31{bottom:363.135000px;}
.y79{bottom:372.315000px;}
.y63{bottom:375.555000px;}
.yb5{bottom:376.275000px;}
.y30{bottom:380.415000px;}
.y78{bottom:394.095000px;}
.y62{bottom:397.515000px;}
.y2f{bottom:397.695000px;}
.yb4{bottom:398.055000px;}
.y2e{bottom:414.795000px;}
.y77{bottom:415.875000px;}
.y61{bottom:419.295000px;}
.yb3{bottom:419.835000px;}
.y2d{bottom:432.075000px;}
.y76{bottom:437.655000px;}
.y60{bottom:441.075000px;}
.yb2{bottom:441.795000px;}
.y2c{bottom:449.355000px;}
.y75{bottom:459.615000px;}
.y5f{bottom:462.855000px;}
.yb1{bottom:463.575000px;}
.y2b{bottom:466.635000px;}
.y74{bottom:481.395000px;}
.y2a{bottom:483.915000px;}
.y5e{bottom:484.635000px;}
.yb0{bottom:485.355000px;}
.y29{bottom:501.015000px;}
.y73{bottom:503.175000px;}
.y5d{bottom:506.595000px;}
.yaf{bottom:507.135000px;}
.y28{bottom:518.295000px;}
.y72{bottom:524.955000px;}
.y5c{bottom:528.375000px;}
.yae{bottom:528.915000px;}
.y27{bottom:535.575000px;}
.y71{bottom:546.735000px;}
.y5b{bottom:550.155000px;}
.yad{bottom:550.875000px;}
.y26{bottom:552.855000px;}
.y70{bottom:565.095000px;}
.y8e{bottom:568.695000px;}
.y25{bottom:570.135000px;}
.y5a{bottom:571.935000px;}
.yac{bottom:572.655000px;}
.y24{bottom:587.415000px;}
.y8d{bottom:590.475000px;}
.y59{bottom:593.895000px;}
.yab{bottom:594.435000px;}
.y23{bottom:604.545000px;}
.y8c{bottom:612.465000px;}
.y58{bottom:615.705000px;}
.yaa{bottom:616.245000px;}
.y22{bottom:621.825000px;}
.y8b{bottom:634.245000px;}
.y57{bottom:637.485000px;}
.ya9{bottom:638.205000px;}
.y21{bottom:639.105000px;}
.y8a{bottom:656.025000px;}
.y20{bottom:656.385000px;}
.y56{bottom:659.265000px;}
.ya8{bottom:659.985000px;}
.y1f{bottom:673.665000px;}
.y89{bottom:677.805000px;}
.y55{bottom:681.045000px;}
.ya7{bottom:681.765000px;}
.y1e{bottom:690.945000px;}
.y88{bottom:699.585000px;}
.y54{bottom:703.005000px;}
.ya6{bottom:703.545000px;}
.y1d{bottom:708.045000px;}
.y87{bottom:721.545000px;}
.y53{bottom:724.785000px;}
.y1c{bottom:725.325000px;}
.y1b{bottom:742.605000px;}
.y86{bottom:743.325000px;}
.y52{bottom:746.565000px;}
.ya5{bottom:747.285000px;}
.y1a{bottom:759.885000px;}
.y85{bottom:765.105000px;}
.y51{bottom:768.345000px;}
.ya4{bottom:769.065000px;}
.y19{bottom:777.165000px;}
.y84{bottom:786.885000px;}
.y50{bottom:790.125000px;}
.ya3{bottom:790.845000px;}
.y18{bottom:794.445000px;}
.y83{bottom:808.845000px;}
.y17{bottom:811.545000px;}
.y4f{bottom:812.085000px;}
.ya2{bottom:812.625000px;}
.y16{bottom:828.825000px;}
.y82{bottom:830.625000px;}
.y4e{bottom:833.865000px;}
.ya1{bottom:834.405000px;}
.y15{bottom:846.105000px;}
.y81{bottom:852.405000px;}
.y4d{bottom:855.645000px;}
.ya0{bottom:856.365000px;}
.y14{bottom:863.385000px;}
.y80{bottom:874.230000px;}
.y4c{bottom:877.470000px;}
.y9f{bottom:878.190000px;}
.y13{bottom:883.770000px;}
.y7f{bottom:896.010000px;}
.y4b{bottom:899.430000px;}
.y9e{bottom:899.970000px;}
.y12{bottom:902.490000px;}
.y7e{bottom:917.970000px;}
.y11{bottom:919.770000px;}
.y4a{bottom:921.210000px;}
.y9d{bottom:921.750000px;}
.y10{bottom:937.410000px;}
.y7d{bottom:939.750000px;}
.y49{bottom:942.990000px;}
.y9c{bottom:943.710000px;}
.yf{bottom:955.950000px;}
.y7c{bottom:958.110000px;}
.y48{bottom:964.770000px;}
.y9b{bottom:965.490000px;}
.ye{bottom:973.590000px;}
.y9a{bottom:983.850000px;}
.y47{bottom:986.550000px;}
.yd{bottom:992.670000px;}
.y46{bottom:1008.510000px;}
.yc{bottom:1012.110000px;}
.y45{bottom:1030.290000px;}
.yb{bottom:1034.430000px;}
.y44{bottom:1052.070000px;}
.ya{bottom:1057.290000px;}
.y9{bottom:1071.870000px;}
.y43{bottom:1073.850000px;}
.y8{bottom:1089.150000px;}
.y42{bottom:1095.810000px;}
.y7{bottom:1106.430000px;}
.y41{bottom:1117.590000px;}
.y6{bottom:1123.530000px;}
.y40{bottom:1139.400000px;}
.y5{bottom:1140.840000px;}
.y3{bottom:1166.760000px;}
.y1{bottom:1182.060000px;}
.h2{height:27.720000px;}
.h7{height:34.036523px;}
.he{height:34.837383px;}
.h5{height:39.760312px;}
.hc{height:41.726953px;}
.h6{height:42.164648px;}
.hd{height:43.156758px;}
.h4{height:46.251562px;}
.hb{height:46.736719px;}
.hf{height:48.224531px;}
.ha{height:49.255313px;}
.h3{height:50.068125px;}
.h9{height:54.596250px;}
.h8{height:54.864844px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:53.100000px;}
.w3{width:627.405000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.280000px;}
.x1{left:108.036000px;}
.x5{left:113.975987px;}
.x7{left:126.575987px;}
.xd{left:135.035987px;}
.x15{left:150.509987px;}
.x3{left:161.130000px;}
.x6{left:165.629987px;}
.x8{left:177.329987px;}
.x9{left:258.869987px;}
.x11{left:271.469987px;}
.x14{left:293.654987px;}
.xa{left:298.874987px;}
.xf{left:320.294987px;}
.x12{left:333.074987px;}
.xb{left:348.554987px;}
.xc{left:420.194987px;}
.x4{left:446.474987px;}
.xe{left:615.344987px;}
.x10{left:629.924987px;}
.x13{left:659.129987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-1.280000pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.271467pt;}
.ls7{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.015360pt;}
.lsa{letter-spacing:0.135467pt;}
.ls3{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls8{letter-spacing:35.450027pt;}
.ls4{letter-spacing:94.880000pt;}
.lsb{letter-spacing:177.258667pt;}
.ls0{letter-spacing:911.040000pt;}
.ws8{word-spacing:-14.855467pt;}
.ws6{word-spacing:-14.720000pt;}
.ws7{word-spacing:-14.448533pt;}
.ws0{word-spacing:-13.306880pt;}
.ws4{word-spacing:-13.280000pt;}
.ws3{word-spacing:-12.960000pt;}
.ws1{word-spacing:-10.720000pt;}
.ws2{word-spacing:-10.400000pt;}
.ws5{word-spacing:0.000000pt;}
._10{margin-left:-6.428160pt;}
._18{margin-left:-5.358080pt;}
._1{margin-left:-4.459520pt;}
._4{margin-left:-2.893013pt;}
._0{margin-left:-1.354240pt;}
._2{width:1.009280pt;}
._3{width:2.175787pt;}
._d{width:3.739093pt;}
._8{width:4.699093pt;}
._b{width:5.962880pt;}
._a{width:7.277440pt;}
._7{width:8.499200pt;}
._c{width:9.402240pt;}
._9{width:10.410880pt;}
._5{width:11.792640pt;}
._13{width:12.936960pt;}
._6{width:14.732373pt;}
._e{width:16.002347pt;}
._f{width:16.904960pt;}
._11{width:18.370560pt;}
._12{width:19.312640pt;}
._19{width:20.431360pt;}
._14{width:21.667840pt;}
._15{width:22.668800pt;}
._16{width:24.376320pt;}
._1a{width:25.318400pt;}
._17{width:26.672640pt;}
._1c{width:28.321280pt;}
._1b{width:29.440000pt;}
.fs1{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:8.000000pt;}
.y4{bottom:49.280000pt;}
.y6f{bottom:101.152000pt;}
.yc1{bottom:101.632000pt;}
.y3f{bottom:107.552000pt;}
.y99{bottom:112.992000pt;}
.y6e{bottom:120.512000pt;}
.yc0{bottom:120.992000pt;}
.y3e{bottom:124.352000pt;}
.y98{bottom:132.352000pt;}
.y6d{bottom:139.866667pt;}
.y3d{bottom:140.186667pt;}
.ybf{bottom:140.506667pt;}
.y97{bottom:151.866667pt;}
.y3c{bottom:152.506667pt;}
.y6c{bottom:159.226667pt;}
.ybe{bottom:159.866667pt;}
.y3b{bottom:168.026667pt;}
.y96{bottom:171.226667pt;}
.y6b{bottom:178.746667pt;}
.ybd{bottom:179.226667pt;}
.y3a{bottom:184.666667pt;}
.y95{bottom:190.586667pt;}
.y6a{bottom:198.106667pt;}
.ybc{bottom:198.586667pt;}
.y39{bottom:200.026667pt;}
.y94{bottom:209.946667pt;}
.y38{bottom:215.386667pt;}
.y69{bottom:217.466667pt;}
.ybb{bottom:218.106667pt;}
.y93{bottom:229.306667pt;}
.y37{bottom:230.746667pt;}
.y68{bottom:236.826667pt;}
.yba{bottom:237.466667pt;}
.y36{bottom:246.106667pt;}
.y92{bottom:248.826667pt;}
.y67{bottom:256.186667pt;}
.yb9{bottom:256.826667pt;}
.y35{bottom:261.466667pt;}
.y91{bottom:268.186667pt;}
.y7b{bottom:272.666667pt;}
.y66{bottom:275.706667pt;}
.yb8{bottom:276.186667pt;}
.y34{bottom:276.666667pt;}
.y90{bottom:287.546667pt;}
.y33{bottom:292.026667pt;}
.y65{bottom:295.066667pt;}
.yb7{bottom:295.546667pt;}
.y8f{bottom:303.906667pt;}
.y32{bottom:307.426667pt;}
.y7a{bottom:311.586667pt;}
.y64{bottom:314.466667pt;}
.yb6{bottom:315.106667pt;}
.y31{bottom:322.786667pt;}
.y79{bottom:330.946667pt;}
.y63{bottom:333.826667pt;}
.yb5{bottom:334.466667pt;}
.y30{bottom:338.146667pt;}
.y78{bottom:350.306667pt;}
.y62{bottom:353.346667pt;}
.y2f{bottom:353.506667pt;}
.yb4{bottom:353.826667pt;}
.y2e{bottom:368.706667pt;}
.y77{bottom:369.666667pt;}
.y61{bottom:372.706667pt;}
.yb3{bottom:373.186667pt;}
.y2d{bottom:384.066667pt;}
.y76{bottom:389.026667pt;}
.y60{bottom:392.066667pt;}
.yb2{bottom:392.706667pt;}
.y2c{bottom:399.426667pt;}
.y75{bottom:408.546667pt;}
.y5f{bottom:411.426667pt;}
.yb1{bottom:412.066667pt;}
.y2b{bottom:414.786667pt;}
.y74{bottom:427.906667pt;}
.y2a{bottom:430.146667pt;}
.y5e{bottom:430.786667pt;}
.yb0{bottom:431.426667pt;}
.y29{bottom:445.346667pt;}
.y73{bottom:447.266667pt;}
.y5d{bottom:450.306667pt;}
.yaf{bottom:450.786667pt;}
.y28{bottom:460.706667pt;}
.y72{bottom:466.626667pt;}
.y5c{bottom:469.666667pt;}
.yae{bottom:470.146667pt;}
.y27{bottom:476.066667pt;}
.y71{bottom:485.986667pt;}
.y5b{bottom:489.026667pt;}
.yad{bottom:489.666667pt;}
.y26{bottom:491.426667pt;}
.y70{bottom:502.306667pt;}
.y8e{bottom:505.506667pt;}
.y25{bottom:506.786667pt;}
.y5a{bottom:508.386667pt;}
.yac{bottom:509.026667pt;}
.y24{bottom:522.146667pt;}
.y8d{bottom:524.866667pt;}
.y59{bottom:527.906667pt;}
.yab{bottom:528.386667pt;}
.y23{bottom:537.373333pt;}
.y8c{bottom:544.413333pt;}
.y58{bottom:547.293333pt;}
.yaa{bottom:547.773333pt;}
.y22{bottom:552.733333pt;}
.y8b{bottom:563.773333pt;}
.y57{bottom:566.653333pt;}
.ya9{bottom:567.293333pt;}
.y21{bottom:568.093333pt;}
.y8a{bottom:583.133333pt;}
.y20{bottom:583.453333pt;}
.y56{bottom:586.013333pt;}
.ya8{bottom:586.653333pt;}
.y1f{bottom:598.813333pt;}
.y89{bottom:602.493333pt;}
.y55{bottom:605.373333pt;}
.ya7{bottom:606.013333pt;}
.y1e{bottom:614.173333pt;}
.y88{bottom:621.853333pt;}
.y54{bottom:624.893333pt;}
.ya6{bottom:625.373333pt;}
.y1d{bottom:629.373333pt;}
.y87{bottom:641.373333pt;}
.y53{bottom:644.253333pt;}
.y1c{bottom:644.733333pt;}
.y1b{bottom:660.093333pt;}
.y86{bottom:660.733333pt;}
.y52{bottom:663.613333pt;}
.ya5{bottom:664.253333pt;}
.y1a{bottom:675.453333pt;}
.y85{bottom:680.093333pt;}
.y51{bottom:682.973333pt;}
.ya4{bottom:683.613333pt;}
.y19{bottom:690.813333pt;}
.y84{bottom:699.453333pt;}
.y50{bottom:702.333333pt;}
.ya3{bottom:702.973333pt;}
.y18{bottom:706.173333pt;}
.y83{bottom:718.973333pt;}
.y17{bottom:721.373333pt;}
.y4f{bottom:721.853333pt;}
.ya2{bottom:722.333333pt;}
.y16{bottom:736.733333pt;}
.y82{bottom:738.333333pt;}
.y4e{bottom:741.213333pt;}
.ya1{bottom:741.693333pt;}
.y15{bottom:752.093333pt;}
.y81{bottom:757.693333pt;}
.y4d{bottom:760.573333pt;}
.ya0{bottom:761.213333pt;}
.y14{bottom:767.453333pt;}
.y80{bottom:777.093333pt;}
.y4c{bottom:779.973333pt;}
.y9f{bottom:780.613333pt;}
.y13{bottom:785.573333pt;}
.y7f{bottom:796.453333pt;}
.y4b{bottom:799.493333pt;}
.y9e{bottom:799.973333pt;}
.y12{bottom:802.213333pt;}
.y7e{bottom:815.973333pt;}
.y11{bottom:817.573333pt;}
.y4a{bottom:818.853333pt;}
.y9d{bottom:819.333333pt;}
.y10{bottom:833.253333pt;}
.y7d{bottom:835.333333pt;}
.y49{bottom:838.213333pt;}
.y9c{bottom:838.853333pt;}
.yf{bottom:849.733333pt;}
.y7c{bottom:851.653333pt;}
.y48{bottom:857.573333pt;}
.y9b{bottom:858.213333pt;}
.ye{bottom:865.413333pt;}
.y9a{bottom:874.533333pt;}
.y47{bottom:876.933333pt;}
.yd{bottom:882.373333pt;}
.y46{bottom:896.453333pt;}
.yc{bottom:899.653333pt;}
.y45{bottom:915.813333pt;}
.yb{bottom:919.493333pt;}
.y44{bottom:935.173333pt;}
.ya{bottom:939.813333pt;}
.y9{bottom:952.773333pt;}
.y43{bottom:954.533333pt;}
.y8{bottom:968.133333pt;}
.y42{bottom:974.053333pt;}
.y7{bottom:983.493333pt;}
.y41{bottom:993.413333pt;}
.y6{bottom:998.693333pt;}
.y40{bottom:1012.800000pt;}
.y5{bottom:1014.080000pt;}
.y3{bottom:1037.120000pt;}
.y1{bottom:1050.720000pt;}
.h2{height:24.640000pt;}
.h7{height:30.254687pt;}
.he{height:30.966562pt;}
.h5{height:35.342500pt;}
.hc{height:37.090625pt;}
.h6{height:37.479688pt;}
.hd{height:38.361562pt;}
.h4{height:41.112500pt;}
.hb{height:41.543750pt;}
.hf{height:42.866250pt;}
.ha{height:43.782500pt;}
.h3{height:44.505000pt;}
.h9{height:48.530000pt;}
.h8{height:48.768750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:47.200000pt;}
.w3{width:557.693333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.360000pt;}
.x1{left:96.032000pt;}
.x5{left:101.311988pt;}
.x7{left:112.511988pt;}
.xd{left:120.031988pt;}
.x15{left:133.786655pt;}
.x3{left:143.226667pt;}
.x6{left:147.226655pt;}
.x8{left:157.626655pt;}
.x9{left:230.106655pt;}
.x11{left:241.306655pt;}
.x14{left:261.026655pt;}
.xa{left:265.666655pt;}
.xf{left:284.706655pt;}
.x12{left:296.066655pt;}
.xb{left:309.826655pt;}
.xc{left:373.506655pt;}
.x4{left:396.866655pt;}
.xe{left:546.973322pt;}
.x10{left:559.933322pt;}
.x13{left:585.893322pt;}
}




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