
    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_3753f052192889ff2d05f0ce.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.955078;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_668515a8245be5b860cfb45d.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_148334a32a5c5165a9d3174e.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_5fc88ceb6677d38465d4ce0a.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_9b667b6d4e664d0b2a9e59bc.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_dc49eb9fa901bb2ba5cd45b1.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_36fd7e43109d071af107f7c7.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_3c9a9e6bcf8d4d1ed085a4a1.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff9{font-family:ff9;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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;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(0.371200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371200,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.371625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371625,0.000000,0.000000,0.250000,0,0);}
.m2{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.134000px;}
.lse{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.305400px;}
.ls6{letter-spacing:-0.288000px;}
.ls9{letter-spacing:-0.053280px;}
.ls8{letter-spacing:-0.034560px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.017280px;}
.lsf{letter-spacing:0.152400px;}
.ls4{letter-spacing:0.153360px;}
.ls1{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.306600px;}
.ls0{letter-spacing:0.360000px;}
.lsa{letter-spacing:10.944000px;}
.lsb{letter-spacing:54.864000px;}
.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;}
}
.wsb{word-spacing:-72.000000px;}
.wse{word-spacing:-66.240000px;}
.ws4{word-spacing:-59.760000px;}
.ws2{word-spacing:-19.457280px;}
.ws3{word-spacing:-19.405440px;}
.wsa{word-spacing:-18.000000px;}
.ws11{word-spacing:-16.712400px;}
.wsf{word-spacing:-16.560000px;}
.wsd{word-spacing:-16.254600px;}
.ws10{word-spacing:-15.840000px;}
.wsc{word-spacing:-15.426000px;}
.ws5{word-spacing:-15.300000px;}
.ws6{word-spacing:-15.246600px;}
.ws8{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.886720px;}
.ws0{word-spacing:-12.060000px;}
.ws1{word-spacing:-11.700000px;}
.ws9{word-spacing:0.000000px;}
._19{margin-left:-7.391760px;}
._18{margin-left:-6.370560px;}
._1b{margin-left:-5.142240px;}
._e{margin-left:-4.086480px;}
._14{margin-left:-3.062400px;}
._4{margin-left:-2.060880px;}
._0{margin-left:-1.059840px;}
._2{width:1.374480px;}
._3{width:2.589600px;}
._c{width:3.611520px;}
._d{width:5.438160px;}
._9{width:6.573600px;}
._b{width:7.589520px;}
._f{width:8.665200px;}
._1c{width:9.738960px;}
._13{width:10.767120px;}
._17{width:11.895840px;}
._16{width:13.181760px;}
._15{width:14.970240px;}
._5{width:16.716000px;}
._6{width:18.167520px;}
._8{width:19.601280px;}
._7{width:20.856240px;}
._a{width:22.658160px;}
._10{width:24.056160px;}
._12{width:25.435920px;}
._1d{width:27.261120px;}
._1e{width:28.579200px;}
._20{width:29.580000px;}
._1a{width:30.696720px;}
._21{width:31.842720px;}
._1f{width:39.260640px;}
._11{width:41.433360px;}
._1{width:1237.574400px;}
.fc3{color:rgb(4,98,193);}
.fc2{color:rgb(0,0,255);}
.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;}
.fs4{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:6.480000px;}
.y4{bottom:56.520000px;}
.yae{bottom:112.356000px;}
.y91{bottom:118.476000px;}
.y3d{bottom:122.976000px;}
.y6c{bottom:131.436000px;}
.yad{bottom:134.136000px;}
.y90{bottom:140.256000px;}
.y3c{bottom:144.936000px;}
.y6b{bottom:153.210000px;}
.yac{bottom:155.910000px;}
.y8f{bottom:162.030000px;}
.y3b{bottom:166.710000px;}
.y6a{bottom:174.990000px;}
.yab{bottom:177.870000px;}
.y8e{bottom:183.810000px;}
.y3a{bottom:188.490000px;}
.y69{bottom:196.770000px;}
.yaa{bottom:199.650000px;}
.y8d{bottom:205.770000px;}
.y39{bottom:210.270000px;}
.y68{bottom:218.550000px;}
.ya9{bottom:221.430000px;}
.y38{bottom:232.230000px;}
.y67{bottom:240.510000px;}
.ya8{bottom:243.210000px;}
.y37{bottom:254.010000px;}
.y66{bottom:262.290000px;}
.ya7{bottom:264.990000px;}
.y36{bottom:275.790000px;}
.y65{bottom:284.070000px;}
.ya6{bottom:286.950000px;}
.y35{bottom:297.570000px;}
.y64{bottom:305.850000px;}
.ya5{bottom:308.730000px;}
.y34{bottom:319.350000px;}
.y63{bottom:327.810000px;}
.ya4{bottom:330.510000px;}
.y33{bottom:341.355000px;}
.y62{bottom:351.075000px;}
.ya3{bottom:352.335000px;}
.y32{bottom:363.135000px;}
.y61{bottom:372.855000px;}
.ya2{bottom:374.295000px;}
.y31{bottom:382.215000px;}
.y60{bottom:394.635000px;}
.ya1{bottom:396.075000px;}
.y30{bottom:400.035000px;}
.y2f{bottom:413.895000px;}
.y5f{bottom:416.415000px;}
.ya0{bottom:417.855000px;}
.y2e{bottom:428.475000px;}
.y8c{bottom:429.015000px;}
.y5e{bottom:438.195000px;}
.y9f{bottom:439.635000px;}
.y2d{bottom:445.575000px;}
.y8b{bottom:452.055000px;}
.y5d{bottom:460.155000px;}
.y9e{bottom:461.415000px;}
.y2c{bottom:462.855000px;}
.y8a{bottom:474.015000px;}
.y2b{bottom:480.135000px;}
.y5c{bottom:481.935000px;}
.y9d{bottom:483.375000px;}
.y89{bottom:495.795000px;}
.y2a{bottom:497.415000px;}
.y5b{bottom:503.715000px;}
.y9c{bottom:505.155000px;}
.y29{bottom:514.695000px;}
.y88{bottom:517.575000px;}
.y5a{bottom:525.675000px;}
.y9b{bottom:526.935000px;}
.y28{bottom:531.975000px;}
.y87{bottom:539.355000px;}
.y59{bottom:548.715000px;}
.y27{bottom:549.075000px;}
.y86{bottom:561.135000px;}
.y26{bottom:566.355000px;}
.y58{bottom:570.675000px;}
.y85{bottom:583.095000px;}
.y25{bottom:583.635000px;}
.y57{bottom:592.455000px;}
.y24{bottom:600.915000px;}
.y84{bottom:604.905000px;}
.y56{bottom:614.265000px;}
.y23{bottom:618.225000px;}
.y83{bottom:626.685000px;}
.y22{bottom:635.325000px;}
.y55{bottom:636.045000px;}
.y82{bottom:648.465000px;}
.y21{bottom:652.605000px;}
.y54{bottom:657.825000px;}
.y20{bottom:669.885000px;}
.y81{bottom:670.425000px;}
.y53{bottom:679.785000px;}
.y1f{bottom:687.165000px;}
.y80{bottom:692.205000px;}
.y52{bottom:701.565000px;}
.y1e{bottom:704.445000px;}
.y7f{bottom:713.985000px;}
.y1d{bottom:721.725000px;}
.y51{bottom:723.345000px;}
.y7e{bottom:735.765000px;}
.y1c{bottom:738.825000px;}
.y50{bottom:745.125000px;}
.y1b{bottom:756.105000px;}
.y7d{bottom:757.545000px;}
.y4f{bottom:766.905000px;}
.y1a{bottom:773.385000px;}
.y7c{bottom:779.505000px;}
.y4e{bottom:788.865000px;}
.y19{bottom:790.665000px;}
.y7b{bottom:801.285000px;}
.y18{bottom:807.945000px;}
.y4d{bottom:810.645000px;}
.y7a{bottom:823.065000px;}
.y17{bottom:825.225000px;}
.y4c{bottom:832.425000px;}
.y16{bottom:842.325000px;}
.y79{bottom:844.845000px;}
.y4b{bottom:854.205000px;}
.y15{bottom:859.605000px;}
.y78{bottom:866.805000px;}
.y4a{bottom:876.210000px;}
.y14{bottom:876.930000px;}
.y77{bottom:888.630000px;}
.y13{bottom:894.210000px;}
.y9a{bottom:897.990000px;}
.y49{bottom:898.170000px;}
.y76{bottom:910.410000px;}
.y12{bottom:911.490000px;}
.y99{bottom:919.770000px;}
.y48{bottom:921.210000px;}
.y11{bottom:928.770000px;}
.y75{bottom:932.190000px;}
.y98{bottom:941.550000px;}
.y47{bottom:942.990000px;}
.y10{bottom:945.870000px;}
.y74{bottom:953.970000px;}
.yf{bottom:963.150000px;}
.y97{bottom:963.330000px;}
.y46{bottom:964.770000px;}
.y73{bottom:975.930000px;}
.ye{bottom:980.790000px;}
.y96{bottom:985.290000px;}
.y45{bottom:986.550000px;}
.y72{bottom:997.710000px;}
.yd{bottom:998.610000px;}
.y95{bottom:1007.070000px;}
.y44{bottom:1008.510000px;}
.yc{bottom:1014.090000px;}
.y71{bottom:1022.190000px;}
.y94{bottom:1028.850000px;}
.y43{bottom:1030.290000px;}
.yb{bottom:1036.590000px;}
.y70{bottom:1043.970000px;}
.y93{bottom:1050.630000px;}
.y42{bottom:1052.070000px;}
.ya{bottom:1057.290000px;}
.y6f{bottom:1068.450000px;}
.y9{bottom:1071.870000px;}
.y92{bottom:1072.590000px;}
.y41{bottom:1073.850000px;}
.y8{bottom:1089.150000px;}
.y6e{bottom:1090.410000px;}
.y40{bottom:1095.810000px;}
.y7{bottom:1106.430000px;}
.y6d{bottom:1114.890000px;}
.y3f{bottom:1117.590000px;}
.y6{bottom:1123.530000px;}
.y3e{bottom:1139.400000px;}
.y5{bottom:1140.840000px;}
.y3{bottom:1168.560000px;}
.y1{bottom:1183.860000px;}
.h2{height:25.020000px;}
.h7{height:34.036523px;}
.h5{height:36.768867px;}
.ha{height:41.726953px;}
.h6{height:42.164648px;}
.hc{height:43.156758px;}
.hb{height:45.549492px;}
.h4{height:46.251562px;}
.h9{height:46.736719px;}
.h3{height:47.836406px;}
.hd{height:50.488594px;}
.he{height:52.417969px;}
.h8{height:54.864844px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:63.900000px;}
.w3{width:616.605000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:7.920000px;}
.x1{left:108.036000px;}
.xf{left:129.275987px;}
.x5{left:145.835987px;}
.xe{left:162.029987px;}
.x3{left:171.930000px;}
.x6{left:191.549987px;}
.x10{left:198.929987px;}
.x14{left:210.629987px;}
.x11{left:225.929987px;}
.xc{left:254.189987px;}
.xd{left:265.349987px;}
.x7{left:268.769987px;}
.x9{left:279.614987px;}
.x15{left:281.954987px;}
.x16{left:293.654987px;}
.x8{left:301.394987px;}
.x12{left:349.454987px;}
.x17{left:366.194987px;}
.x18{left:377.714987px;}
.xb{left:421.274987px;}
.xa{left:423.074987px;}
.x19{left:441.974987px;}
.x4{left:446.474987px;}
.x1a{left:453.854987px;}
.x1b{left:505.184987px;}
.x1c{left:516.884987px;}
.x1d{left:568.364987px;}
.x1e{left:580.064987px;}
.x1f{left:610.664987px;}
.x20{left:622.364987px;}
.x21{left:662.909987px;}
.x22{left:674.789987px;}
.x13{left:785.129987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-1.008000pt;}
.lse{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.271467pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls9{letter-spacing:-0.047360pt;}
.ls8{letter-spacing:-0.030720pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.015360pt;}
.lsf{letter-spacing:0.135467pt;}
.ls4{letter-spacing:0.136320pt;}
.ls1{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.272533pt;}
.ls0{letter-spacing:0.320000pt;}
.lsa{letter-spacing:9.728000pt;}
.lsb{letter-spacing:48.768000pt;}
.wsb{word-spacing:-64.000000pt;}
.wse{word-spacing:-58.880000pt;}
.ws4{word-spacing:-53.120000pt;}
.ws2{word-spacing:-17.295360pt;}
.ws3{word-spacing:-17.249280pt;}
.wsa{word-spacing:-16.000000pt;}
.ws11{word-spacing:-14.855467pt;}
.wsf{word-spacing:-14.720000pt;}
.wsd{word-spacing:-14.448533pt;}
.ws10{word-spacing:-14.080000pt;}
.wsc{word-spacing:-13.712000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.552533pt;}
.ws8{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.232640pt;}
.ws0{word-spacing:-10.720000pt;}
.ws1{word-spacing:-10.400000pt;}
.ws9{word-spacing:0.000000pt;}
._19{margin-left:-6.570453pt;}
._18{margin-left:-5.662720pt;}
._1b{margin-left:-4.570880pt;}
._e{margin-left:-3.632427pt;}
._14{margin-left:-2.722133pt;}
._4{margin-left:-1.831893pt;}
._0{margin-left:-0.942080pt;}
._2{width:1.221760pt;}
._3{width:2.301867pt;}
._c{width:3.210240pt;}
._d{width:4.833920pt;}
._9{width:5.843200pt;}
._b{width:6.746240pt;}
._f{width:7.702400pt;}
._1c{width:8.656853pt;}
._13{width:9.570773pt;}
._17{width:10.574080pt;}
._16{width:11.717120pt;}
._15{width:13.306880pt;}
._5{width:14.858667pt;}
._6{width:16.148907pt;}
._8{width:17.423360pt;}
._7{width:18.538880pt;}
._a{width:20.140587pt;}
._10{width:21.383253pt;}
._12{width:22.609707pt;}
._1d{width:24.232107pt;}
._1e{width:25.403733pt;}
._20{width:26.293333pt;}
._1a{width:27.285973pt;}
._21{width:28.304640pt;}
._1f{width:34.898347pt;}
._11{width:36.829653pt;}
._1{width:1100.066133pt;}
.fs1{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:5.760000pt;}
.y4{bottom:50.240000pt;}
.yae{bottom:99.872000pt;}
.y91{bottom:105.312000pt;}
.y3d{bottom:109.312000pt;}
.y6c{bottom:116.832000pt;}
.yad{bottom:119.232000pt;}
.y90{bottom:124.672000pt;}
.y3c{bottom:128.832000pt;}
.y6b{bottom:136.186667pt;}
.yac{bottom:138.586667pt;}
.y8f{bottom:144.026667pt;}
.y3b{bottom:148.186667pt;}
.y6a{bottom:155.546667pt;}
.yab{bottom:158.106667pt;}
.y8e{bottom:163.386667pt;}
.y3a{bottom:167.546667pt;}
.y69{bottom:174.906667pt;}
.yaa{bottom:177.466667pt;}
.y8d{bottom:182.906667pt;}
.y39{bottom:186.906667pt;}
.y68{bottom:194.266667pt;}
.ya9{bottom:196.826667pt;}
.y38{bottom:206.426667pt;}
.y67{bottom:213.786667pt;}
.ya8{bottom:216.186667pt;}
.y37{bottom:225.786667pt;}
.y66{bottom:233.146667pt;}
.ya7{bottom:235.546667pt;}
.y36{bottom:245.146667pt;}
.y65{bottom:252.506667pt;}
.ya6{bottom:255.066667pt;}
.y35{bottom:264.506667pt;}
.y64{bottom:271.866667pt;}
.ya5{bottom:274.426667pt;}
.y34{bottom:283.866667pt;}
.y63{bottom:291.386667pt;}
.ya4{bottom:293.786667pt;}
.y33{bottom:303.426667pt;}
.y62{bottom:312.066667pt;}
.ya3{bottom:313.186667pt;}
.y32{bottom:322.786667pt;}
.y61{bottom:331.426667pt;}
.ya2{bottom:332.706667pt;}
.y31{bottom:339.746667pt;}
.y60{bottom:350.786667pt;}
.ya1{bottom:352.066667pt;}
.y30{bottom:355.586667pt;}
.y2f{bottom:367.906667pt;}
.y5f{bottom:370.146667pt;}
.ya0{bottom:371.426667pt;}
.y2e{bottom:380.866667pt;}
.y8c{bottom:381.346667pt;}
.y5e{bottom:389.506667pt;}
.y9f{bottom:390.786667pt;}
.y2d{bottom:396.066667pt;}
.y8b{bottom:401.826667pt;}
.y5d{bottom:409.026667pt;}
.y9e{bottom:410.146667pt;}
.y2c{bottom:411.426667pt;}
.y8a{bottom:421.346667pt;}
.y2b{bottom:426.786667pt;}
.y5c{bottom:428.386667pt;}
.y9d{bottom:429.666667pt;}
.y89{bottom:440.706667pt;}
.y2a{bottom:442.146667pt;}
.y5b{bottom:447.746667pt;}
.y9c{bottom:449.026667pt;}
.y29{bottom:457.506667pt;}
.y88{bottom:460.066667pt;}
.y5a{bottom:467.266667pt;}
.y9b{bottom:468.386667pt;}
.y28{bottom:472.866667pt;}
.y87{bottom:479.426667pt;}
.y59{bottom:487.746667pt;}
.y27{bottom:488.066667pt;}
.y86{bottom:498.786667pt;}
.y26{bottom:503.426667pt;}
.y58{bottom:507.266667pt;}
.y85{bottom:518.306667pt;}
.y25{bottom:518.786667pt;}
.y57{bottom:526.626667pt;}
.y24{bottom:534.146667pt;}
.y84{bottom:537.693333pt;}
.y56{bottom:546.013333pt;}
.y23{bottom:549.533333pt;}
.y83{bottom:557.053333pt;}
.y22{bottom:564.733333pt;}
.y55{bottom:565.373333pt;}
.y82{bottom:576.413333pt;}
.y21{bottom:580.093333pt;}
.y54{bottom:584.733333pt;}
.y20{bottom:595.453333pt;}
.y81{bottom:595.933333pt;}
.y53{bottom:604.253333pt;}
.y1f{bottom:610.813333pt;}
.y80{bottom:615.293333pt;}
.y52{bottom:623.613333pt;}
.y1e{bottom:626.173333pt;}
.y7f{bottom:634.653333pt;}
.y1d{bottom:641.533333pt;}
.y51{bottom:642.973333pt;}
.y7e{bottom:654.013333pt;}
.y1c{bottom:656.733333pt;}
.y50{bottom:662.333333pt;}
.y1b{bottom:672.093333pt;}
.y7d{bottom:673.373333pt;}
.y4f{bottom:681.693333pt;}
.y1a{bottom:687.453333pt;}
.y7c{bottom:692.893333pt;}
.y4e{bottom:701.213333pt;}
.y19{bottom:702.813333pt;}
.y7b{bottom:712.253333pt;}
.y18{bottom:718.173333pt;}
.y4d{bottom:720.573333pt;}
.y7a{bottom:731.613333pt;}
.y17{bottom:733.533333pt;}
.y4c{bottom:739.933333pt;}
.y16{bottom:748.733333pt;}
.y79{bottom:750.973333pt;}
.y4b{bottom:759.293333pt;}
.y15{bottom:764.093333pt;}
.y78{bottom:770.493333pt;}
.y4a{bottom:778.853333pt;}
.y14{bottom:779.493333pt;}
.y77{bottom:789.893333pt;}
.y13{bottom:794.853333pt;}
.y9a{bottom:798.213333pt;}
.y49{bottom:798.373333pt;}
.y76{bottom:809.253333pt;}
.y12{bottom:810.213333pt;}
.y99{bottom:817.573333pt;}
.y48{bottom:818.853333pt;}
.y11{bottom:825.573333pt;}
.y75{bottom:828.613333pt;}
.y98{bottom:836.933333pt;}
.y47{bottom:838.213333pt;}
.y10{bottom:840.773333pt;}
.y74{bottom:847.973333pt;}
.yf{bottom:856.133333pt;}
.y97{bottom:856.293333pt;}
.y46{bottom:857.573333pt;}
.y73{bottom:867.493333pt;}
.ye{bottom:871.813333pt;}
.y96{bottom:875.813333pt;}
.y45{bottom:876.933333pt;}
.y72{bottom:886.853333pt;}
.yd{bottom:887.653333pt;}
.y95{bottom:895.173333pt;}
.y44{bottom:896.453333pt;}
.yc{bottom:901.413333pt;}
.y71{bottom:908.613333pt;}
.y94{bottom:914.533333pt;}
.y43{bottom:915.813333pt;}
.yb{bottom:921.413333pt;}
.y70{bottom:927.973333pt;}
.y93{bottom:933.893333pt;}
.y42{bottom:935.173333pt;}
.ya{bottom:939.813333pt;}
.y6f{bottom:949.733333pt;}
.y9{bottom:952.773333pt;}
.y92{bottom:953.413333pt;}
.y41{bottom:954.533333pt;}
.y8{bottom:968.133333pt;}
.y6e{bottom:969.253333pt;}
.y40{bottom:974.053333pt;}
.y7{bottom:983.493333pt;}
.y6d{bottom:991.013333pt;}
.y3f{bottom:993.413333pt;}
.y6{bottom:998.693333pt;}
.y3e{bottom:1012.800000pt;}
.y5{bottom:1014.080000pt;}
.y3{bottom:1038.720000pt;}
.y1{bottom:1052.320000pt;}
.h2{height:22.240000pt;}
.h7{height:30.254687pt;}
.h5{height:32.683437pt;}
.ha{height:37.090625pt;}
.h6{height:37.479688pt;}
.hc{height:38.361562pt;}
.hb{height:40.488438pt;}
.h4{height:41.112500pt;}
.h9{height:41.543750pt;}
.h3{height:42.521250pt;}
.hd{height:44.878750pt;}
.he{height:46.593750pt;}
.h8{height:48.768750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:56.800000pt;}
.w3{width:548.093333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.040000pt;}
.x1{left:96.032000pt;}
.xf{left:114.911988pt;}
.x5{left:129.631988pt;}
.xe{left:144.026655pt;}
.x3{left:152.826667pt;}
.x6{left:170.266655pt;}
.x10{left:176.826655pt;}
.x14{left:187.226655pt;}
.x11{left:200.826655pt;}
.xc{left:225.946655pt;}
.xd{left:235.866655pt;}
.x7{left:238.906655pt;}
.x9{left:248.546655pt;}
.x15{left:250.626655pt;}
.x16{left:261.026655pt;}
.x8{left:267.906655pt;}
.x12{left:310.626655pt;}
.x17{left:325.506655pt;}
.x18{left:335.746655pt;}
.xb{left:374.466655pt;}
.xa{left:376.066655pt;}
.x19{left:392.866655pt;}
.x4{left:396.866655pt;}
.x1a{left:403.426655pt;}
.x1b{left:449.053322pt;}
.x1c{left:459.453322pt;}
.x1d{left:505.213322pt;}
.x1e{left:515.613322pt;}
.x1f{left:542.813322pt;}
.x20{left:553.213322pt;}
.x21{left:589.253322pt;}
.x22{left:599.813322pt;}
.x13{left:697.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; }
  