
    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_67f4a369d0a8afa3b18d13ef.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_8875c4dfe3e7d4902f36b129.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_3efaf6489df2105145eaf1d9.woff')format("woff");}.ff3{font-family:ff3;line-height:0.854980;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_fbbbbd35c91982f79c29731a.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_0c0c76dde2d1edb277b93ad7.woff')format("woff");}.ff5{font-family:ff5;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);}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.879995px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.005274px;}
.ls5{letter-spacing:18.881399px;}
.ls4{letter-spacing:19.601413px;}
.ls3{letter-spacing:78.485834px;}
.ls1{letter-spacing:113.975228px;}
.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;}
}
.ws2{word-spacing:-54.007524px;}
.ws4{word-spacing:-18.000676px;}
.ws6{word-spacing:-14.940563px;}
.ws3{word-spacing:-13.500563px;}
.ws0{word-spacing:-9.720371px;}
.ws1{word-spacing:-9.000349px;}
.ws5{word-spacing:0.000000px;}
._b{margin-left:-3.840692px;}
._2{margin-left:-2.574810px;}
._0{margin-left:-1.537166px;}
._1{width:1.091225px;}
._7{width:2.205865px;}
._8{width:4.119781px;}
._6{width:5.157848px;}
._9{width:6.421458px;}
._a{width:7.799207px;}
._d{width:8.911870px;}
._c{width:9.929677px;}
._4{width:11.322753px;}
._5{width:12.377695px;}
._3{width:14.637141px;}
._1a{width:18.138639px;}
._1b{width:20.365007px;}
._e{width:22.351082px;}
._19{width:25.563737px;}
._18{width:26.713816px;}
._17{width:28.899431px;}
._16{width:30.287035px;}
._13{width:37.565737px;}
._15{width:38.881620px;}
._14{width:39.961665px;}
._12{width:76.975356px;}
._11{width:79.051067px;}
._10{width:146.498612px;}
._f{width:147.653332px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:36.001395px;}
.fs3{font-size:38.881485px;}
.fs0{font-size:54.002250px;}
.fs2{font-size:59.762250px;}
.fs5{font-size:72.002705px;}
.fs1{font-size:84.243145px;}
.y0{bottom:0.000000px;}
.y3{bottom:177.300041px;}
.y2{bottom:195.300041px;}
.y1{bottom:215.820099px;}
.yb0{bottom:232.020058px;}
.yc9{bottom:234.720085px;}
.yfa{bottom:236.160049px;}
.y78{bottom:241.020058px;}
.yaf{bottom:250.020058px;}
.yc8{bottom:251.100083px;}
.yf9{bottom:252.720085px;}
.y28{bottom:253.620072px;}
.y95{bottom:254.520058px;}
.yb3{bottom:257.580093px;}
.y77{bottom:259.020058px;}
.yc7{bottom:267.660049px;}
.yae{bottom:268.020058px;}
.yf8{bottom:269.100083px;}
.y27{bottom:271.620072px;}
.y94{bottom:272.520058px;}
.yb2{bottom:275.580093px;}
.y76{bottom:277.020058px;}
.yc6{bottom:284.220085px;}
.yf7{bottom:285.660049px;}
.yad{bottom:286.020058px;}
.y26{bottom:289.620072px;}
.y93{bottom:290.520058px;}
.y50{bottom:293.580093px;}
.y75{bottom:295.020058px;}
.yc5{bottom:300.600083px;}
.yf6{bottom:302.220085px;}
.yac{bottom:304.020058px;}
.y25{bottom:307.620072px;}
.y92{bottom:308.520058px;}
.y4f{bottom:311.580093px;}
.y74{bottom:313.020058px;}
.yc4{bottom:317.160049px;}
.yf5{bottom:318.600083px;}
.yab{bottom:322.020058px;}
.y24{bottom:325.620072px;}
.y91{bottom:326.520058px;}
.y4e{bottom:329.580093px;}
.y73{bottom:331.020058px;}
.yc3{bottom:333.720085px;}
.yf4{bottom:335.160049px;}
.yaa{bottom:340.020058px;}
.y23{bottom:343.620072px;}
.y90{bottom:344.520058px;}
.y4d{bottom:347.580093px;}
.y72{bottom:349.020058px;}
.yc2{bottom:350.100083px;}
.yf3{bottom:351.720085px;}
.ya9{bottom:358.020058px;}
.y22{bottom:361.620072px;}
.y8f{bottom:362.520058px;}
.y4c{bottom:365.580093px;}
.yc1{bottom:366.660049px;}
.y71{bottom:367.020058px;}
.yf2{bottom:368.100083px;}
.ya8{bottom:376.020058px;}
.y21{bottom:379.620072px;}
.y8e{bottom:380.520058px;}
.yc0{bottom:383.220085px;}
.y4b{bottom:383.580093px;}
.yf1{bottom:384.660049px;}
.y70{bottom:385.020058px;}
.ya7{bottom:394.020058px;}
.y20{bottom:397.620072px;}
.ybf{bottom:399.600083px;}
.yf0{bottom:401.220085px;}
.y4a{bottom:401.580093px;}
.y6f{bottom:403.020058px;}
.ya6{bottom:412.020058px;}
.y1f{bottom:415.620072px;}
.ybe{bottom:416.160049px;}
.y8d{bottom:417.240074px;}
.yef{bottom:417.600083px;}
.y49{bottom:419.580093px;}
.y6e{bottom:421.020058px;}
.ya5{bottom:430.020058px;}
.ybd{bottom:432.720085px;}
.y1e{bottom:433.620072px;}
.yee{bottom:434.160049px;}
.y48{bottom:437.580093px;}
.y6d{bottom:439.020058px;}
.ybc{bottom:449.100083px;}
.yed{bottom:450.720085px;}
.y1d{bottom:451.620072px;}
.y47{bottom:455.580093px;}
.y6c{bottom:457.020058px;}
.ya4{bottom:460.080093px;}
.ybb{bottom:465.660049px;}
.y8c{bottom:466.020058px;}
.yec{bottom:467.100083px;}
.y1c{bottom:469.620072px;}
.y46{bottom:473.580093px;}
.y6b{bottom:475.020058px;}
.yba{bottom:482.220085px;}
.yeb{bottom:483.660049px;}
.y8b{bottom:484.020058px;}
.y45{bottom:491.580093px;}
.y6a{bottom:493.020058px;}
.yb9{bottom:498.600083px;}
.yea{bottom:500.220085px;}
.y8a{bottom:502.020058px;}
.ya3{bottom:505.080093px;}
.y1b{bottom:506.340088px;}
.y44{bottom:509.580093px;}
.yb1{bottom:510.300041px;}
.y69{bottom:511.020058px;}
.yb8{bottom:515.160049px;}
.ye9{bottom:516.600083px;}
.y89{bottom:520.020058px;}
.ya2{bottom:523.080093px;}
.y43{bottom:527.580093px;}
.ya1{bottom:529.020058px;}
.yb7{bottom:531.720085px;}
.ye8{bottom:533.160049px;}
.y88{bottom:538.020058px;}
.y68{bottom:541.080093px;}
.y42{bottom:545.580093px;}
.yb6{bottom:548.100083px;}
.ye7{bottom:549.720085px;}
.y1a{bottom:554.760064px;}
.y87{bottom:556.020058px;}
.ya0{bottom:559.080093px;}
.y41{bottom:563.580093px;}
.yb5{bottom:564.660049px;}
.ye6{bottom:566.100083px;}
.y19{bottom:571.320099px;}
.y86{bottom:574.020058px;}
.y9f{bottom:577.080093px;}
.y67{bottom:577.800041px;}
.y40{bottom:581.580093px;}
.ye5{bottom:582.660049px;}
.y85{bottom:592.020058px;}
.y9e{bottom:595.080093px;}
.ye4{bottom:599.220085px;}
.y3f{bottom:599.580093px;}
.yb4{bottom:600.300041px;}
.y84{bottom:610.020058px;}
.y9d{bottom:613.080093px;}
.y18{bottom:614.700096px;}
.ye3{bottom:615.600083px;}
.y3e{bottom:617.580093px;}
.y66{bottom:626.580093px;}
.y83{bottom:628.020058px;}
.y9c{bottom:631.080093px;}
.y17{bottom:631.260064px;}
.ye2{bottom:632.160049px;}
.y3d{bottom:635.580093px;}
.y65{bottom:644.580093px;}
.y82{bottom:646.020058px;}
.y16{bottom:647.820099px;}
.ye1{bottom:648.720085px;}
.y9b{bottom:649.080093px;}
.y3c{bottom:653.580093px;}
.y64{bottom:662.580093px;}
.y81{bottom:664.020058px;}
.y15{bottom:664.200096px;}
.ye0{bottom:665.100083px;}
.y9a{bottom:667.080093px;}
.y3b{bottom:671.580093px;}
.y63{bottom:680.580093px;}
.y14{bottom:680.760064px;}
.ydf{bottom:681.660049px;}
.y80{bottom:682.020058px;}
.y99{bottom:685.080093px;}
.y3a{bottom:689.580059px;}
.y13{bottom:697.320065px;}
.yde{bottom:698.220051px;}
.y62{bottom:698.580059px;}
.y98{bottom:703.080059px;}
.y39{bottom:707.580059px;}
.y7f{bottom:712.080059px;}
.y12{bottom:713.700061px;}
.ydd{bottom:714.600083px;}
.y61{bottom:716.580059px;}
.y97{bottom:721.080059px;}
.y38{bottom:725.580059px;}
.y11{bottom:730.260064px;}
.ydc{bottom:731.160049px;}
.y60{bottom:734.580059px;}
.y96{bottom:739.080059px;}
.y37{bottom:743.580059px;}
.y10{bottom:746.820065px;}
.ydb{bottom:747.720051px;}
.y5f{bottom:752.580059px;}
.y7e{bottom:757.080059px;}
.y36{bottom:761.580059px;}
.yf{bottom:763.200061px;}
.yda{bottom:764.100083px;}
.y5e{bottom:770.580059px;}
.y7d{bottom:775.080059px;}
.y35{bottom:779.580059px;}
.ye{bottom:779.760064px;}
.yd9{bottom:780.660049px;}
.y5d{bottom:788.580059px;}
.y7c{bottom:793.080059px;}
.yd{bottom:796.320065px;}
.yd8{bottom:797.220051px;}
.y5c{bottom:806.580059px;}
.y7b{bottom:811.080059px;}
.yc{bottom:812.700061px;}
.yd7{bottom:813.600083px;}
.y34{bottom:816.300076px;}
.y5b{bottom:824.580059px;}
.y7a{bottom:829.080059px;}
.yb{bottom:829.260064px;}
.yd6{bottom:830.160049px;}
.y5a{bottom:842.580059px;}
.ya{bottom:845.820065px;}
.yd5{bottom:846.720051px;}
.y79{bottom:847.080059px;}
.y59{bottom:860.580059px;}
.y9{bottom:862.200061px;}
.yd4{bottom:863.100083px;}
.y33{bottom:865.080059px;}
.y58{bottom:878.580059px;}
.y8{bottom:878.760064px;}
.yd3{bottom:879.660049px;}
.y32{bottom:883.080059px;}
.yd2{bottom:896.220051px;}
.y57{bottom:896.580059px;}
.y31{bottom:901.080059px;}
.yd1{bottom:912.600083px;}
.y56{bottom:914.580059px;}
.y30{bottom:919.080059px;}
.yd0{bottom:929.160049px;}
.y55{bottom:932.580059px;}
.y2f{bottom:937.080059px;}
.y7{bottom:941.400055px;}
.ycf{bottom:945.720051px;}
.y54{bottom:950.580059px;}
.y2e{bottom:955.080059px;}
.y6{bottom:961.200061px;}
.yce{bottom:962.100083px;}
.y53{bottom:968.580059px;}
.y2d{bottom:973.080059px;}
.ycd{bottom:978.660067px;}
.y52{bottom:986.580059px;}
.y5{bottom:988.560070px;}
.y2c{bottom:991.080059px;}
.ycc{bottom:995.220068px;}
.y2b{bottom:1009.080059px;}
.ycb{bottom:1011.600065px;}
.y4{bottom:1022.220068px;}
.y51{bottom:1023.300058px;}
.y2a{bottom:1027.080059px;}
.yca{bottom:1028.160067px;}
.y29{bottom:1069.200061px;}
.h5{height:32.274688px;}
.h8{height:43.508552px;}
.h2{height:48.412173px;}
.h9{height:50.802689px;}
.h6{height:52.419938px;}
.h7{height:53.575923px;}
.h4{height:55.736639px;}
.h3{height:59.439133px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:187.020006px;}
.x8{left:193.860008px;}
.x1{left:204.120002px;}
.x9{left:212.580008px;}
.x6{left:229.500000px;}
.x3{left:269.819996px;}
.x4{left:299.699993px;}
.x5{left:377.459988px;}
.x7{left:699.120002px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.559996pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.004688pt;}
.ls5{letter-spacing:16.783466pt;}
.ls4{letter-spacing:17.423478pt;}
.ls3{letter-spacing:69.765186pt;}
.ls1{letter-spacing:101.311314pt;}
.ws2{word-spacing:-48.006688pt;}
.ws4{word-spacing:-16.000601pt;}
.ws6{word-spacing:-13.280500pt;}
.ws3{word-spacing:-12.000500pt;}
.ws0{word-spacing:-8.640330pt;}
.ws1{word-spacing:-8.000310pt;}
.ws5{word-spacing:0.000000pt;}
._b{margin-left:-3.413949pt;}
._2{margin-left:-2.288720pt;}
._0{margin-left:-1.366369pt;}
._1{width:0.969978pt;}
._7{width:1.960769pt;}
._8{width:3.662028pt;}
._6{width:4.584753pt;}
._9{width:5.707963pt;}
._a{width:6.932628pt;}
._d{width:7.921662pt;}
._c{width:8.826380pt;}
._4{width:10.064669pt;}
._5{width:11.002396pt;}
._3{width:13.010792pt;}
._1a{width:16.123234pt;}
._1b{width:18.102228pt;}
._e{width:19.867628pt;}
._19{width:22.723322pt;}
._18{width:23.745614pt;}
._17{width:25.688383pt;}
._16{width:26.921809pt;}
._13{width:33.391766pt;}
._15{width:34.561440pt;}
._14{width:35.521480pt;}
._12{width:68.422538pt;}
._11{width:70.267615pt;}
._10{width:130.220988pt;}
._f{width:131.247406pt;}
.fs4{font-size:32.001240pt;}
.fs3{font-size:34.561320pt;}
.fs0{font-size:48.002000pt;}
.fs2{font-size:53.122000pt;}
.fs5{font-size:64.002404pt;}
.fs1{font-size:74.882796pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:157.600037pt;}
.y2{bottom:173.600037pt;}
.y1{bottom:191.840088pt;}
.yb0{bottom:206.240052pt;}
.yc9{bottom:208.640076pt;}
.yfa{bottom:209.920044pt;}
.y78{bottom:214.240052pt;}
.yaf{bottom:222.240052pt;}
.yc8{bottom:223.200074pt;}
.yf9{bottom:224.640076pt;}
.y28{bottom:225.440064pt;}
.y95{bottom:226.240052pt;}
.yb3{bottom:228.960083pt;}
.y77{bottom:230.240052pt;}
.yc7{bottom:237.920044pt;}
.yae{bottom:238.240052pt;}
.yf8{bottom:239.200074pt;}
.y27{bottom:241.440064pt;}
.y94{bottom:242.240052pt;}
.yb2{bottom:244.960083pt;}
.y76{bottom:246.240052pt;}
.yc6{bottom:252.640076pt;}
.yf7{bottom:253.920044pt;}
.yad{bottom:254.240052pt;}
.y26{bottom:257.440064pt;}
.y93{bottom:258.240052pt;}
.y50{bottom:260.960083pt;}
.y75{bottom:262.240052pt;}
.yc5{bottom:267.200074pt;}
.yf6{bottom:268.640076pt;}
.yac{bottom:270.240052pt;}
.y25{bottom:273.440064pt;}
.y92{bottom:274.240052pt;}
.y4f{bottom:276.960083pt;}
.y74{bottom:278.240052pt;}
.yc4{bottom:281.920044pt;}
.yf5{bottom:283.200074pt;}
.yab{bottom:286.240052pt;}
.y24{bottom:289.440064pt;}
.y91{bottom:290.240052pt;}
.y4e{bottom:292.960083pt;}
.y73{bottom:294.240052pt;}
.yc3{bottom:296.640076pt;}
.yf4{bottom:297.920044pt;}
.yaa{bottom:302.240052pt;}
.y23{bottom:305.440064pt;}
.y90{bottom:306.240052pt;}
.y4d{bottom:308.960083pt;}
.y72{bottom:310.240052pt;}
.yc2{bottom:311.200074pt;}
.yf3{bottom:312.640076pt;}
.ya9{bottom:318.240052pt;}
.y22{bottom:321.440064pt;}
.y8f{bottom:322.240052pt;}
.y4c{bottom:324.960083pt;}
.yc1{bottom:325.920044pt;}
.y71{bottom:326.240052pt;}
.yf2{bottom:327.200074pt;}
.ya8{bottom:334.240052pt;}
.y21{bottom:337.440064pt;}
.y8e{bottom:338.240052pt;}
.yc0{bottom:340.640076pt;}
.y4b{bottom:340.960083pt;}
.yf1{bottom:341.920044pt;}
.y70{bottom:342.240052pt;}
.ya7{bottom:350.240052pt;}
.y20{bottom:353.440064pt;}
.ybf{bottom:355.200074pt;}
.yf0{bottom:356.640076pt;}
.y4a{bottom:356.960083pt;}
.y6f{bottom:358.240052pt;}
.ya6{bottom:366.240052pt;}
.y1f{bottom:369.440064pt;}
.ybe{bottom:369.920044pt;}
.y8d{bottom:370.880066pt;}
.yef{bottom:371.200074pt;}
.y49{bottom:372.960083pt;}
.y6e{bottom:374.240052pt;}
.ya5{bottom:382.240052pt;}
.ybd{bottom:384.640076pt;}
.y1e{bottom:385.440064pt;}
.yee{bottom:385.920044pt;}
.y48{bottom:388.960083pt;}
.y6d{bottom:390.240052pt;}
.ybc{bottom:399.200074pt;}
.yed{bottom:400.640076pt;}
.y1d{bottom:401.440064pt;}
.y47{bottom:404.960083pt;}
.y6c{bottom:406.240052pt;}
.ya4{bottom:408.960083pt;}
.ybb{bottom:413.920044pt;}
.y8c{bottom:414.240052pt;}
.yec{bottom:415.200074pt;}
.y1c{bottom:417.440064pt;}
.y46{bottom:420.960083pt;}
.y6b{bottom:422.240052pt;}
.yba{bottom:428.640076pt;}
.yeb{bottom:429.920044pt;}
.y8b{bottom:430.240052pt;}
.y45{bottom:436.960083pt;}
.y6a{bottom:438.240052pt;}
.yb9{bottom:443.200074pt;}
.yea{bottom:444.640076pt;}
.y8a{bottom:446.240052pt;}
.ya3{bottom:448.960083pt;}
.y1b{bottom:450.080079pt;}
.y44{bottom:452.960083pt;}
.yb1{bottom:453.600037pt;}
.y69{bottom:454.240052pt;}
.yb8{bottom:457.920044pt;}
.ye9{bottom:459.200074pt;}
.y89{bottom:462.240052pt;}
.ya2{bottom:464.960083pt;}
.y43{bottom:468.960083pt;}
.ya1{bottom:470.240052pt;}
.yb7{bottom:472.640076pt;}
.ye8{bottom:473.920044pt;}
.y88{bottom:478.240052pt;}
.y68{bottom:480.960083pt;}
.y42{bottom:484.960083pt;}
.yb6{bottom:487.200074pt;}
.ye7{bottom:488.640076pt;}
.y1a{bottom:493.120057pt;}
.y87{bottom:494.240052pt;}
.ya0{bottom:496.960083pt;}
.y41{bottom:500.960083pt;}
.yb5{bottom:501.920044pt;}
.ye6{bottom:503.200074pt;}
.y19{bottom:507.840088pt;}
.y86{bottom:510.240052pt;}
.y9f{bottom:512.960083pt;}
.y67{bottom:513.600037pt;}
.y40{bottom:516.960083pt;}
.ye5{bottom:517.920044pt;}
.y85{bottom:526.240052pt;}
.y9e{bottom:528.960083pt;}
.ye4{bottom:532.640076pt;}
.y3f{bottom:532.960083pt;}
.yb4{bottom:533.600037pt;}
.y84{bottom:542.240052pt;}
.y9d{bottom:544.960083pt;}
.y18{bottom:546.400086pt;}
.ye3{bottom:547.200074pt;}
.y3e{bottom:548.960083pt;}
.y66{bottom:556.960083pt;}
.y83{bottom:558.240052pt;}
.y9c{bottom:560.960083pt;}
.y17{bottom:561.120057pt;}
.ye2{bottom:561.920044pt;}
.y3d{bottom:564.960083pt;}
.y65{bottom:572.960083pt;}
.y82{bottom:574.240052pt;}
.y16{bottom:575.840088pt;}
.ye1{bottom:576.640076pt;}
.y9b{bottom:576.960083pt;}
.y3c{bottom:580.960083pt;}
.y64{bottom:588.960083pt;}
.y81{bottom:590.240052pt;}
.y15{bottom:590.400086pt;}
.ye0{bottom:591.200074pt;}
.y9a{bottom:592.960083pt;}
.y3b{bottom:596.960083pt;}
.y63{bottom:604.960083pt;}
.y14{bottom:605.120057pt;}
.ydf{bottom:605.920044pt;}
.y80{bottom:606.240052pt;}
.y99{bottom:608.960083pt;}
.y3a{bottom:612.960053pt;}
.y13{bottom:619.840058pt;}
.yde{bottom:620.640046pt;}
.y62{bottom:620.960053pt;}
.y98{bottom:624.960053pt;}
.y39{bottom:628.960053pt;}
.y7f{bottom:632.960053pt;}
.y12{bottom:634.400055pt;}
.ydd{bottom:635.200074pt;}
.y61{bottom:636.960053pt;}
.y97{bottom:640.960053pt;}
.y38{bottom:644.960053pt;}
.y11{bottom:649.120057pt;}
.ydc{bottom:649.920044pt;}
.y60{bottom:652.960053pt;}
.y96{bottom:656.960053pt;}
.y37{bottom:660.960053pt;}
.y10{bottom:663.840058pt;}
.ydb{bottom:664.640046pt;}
.y5f{bottom:668.960053pt;}
.y7e{bottom:672.960053pt;}
.y36{bottom:676.960053pt;}
.yf{bottom:678.400055pt;}
.yda{bottom:679.200074pt;}
.y5e{bottom:684.960053pt;}
.y7d{bottom:688.960053pt;}
.y35{bottom:692.960053pt;}
.ye{bottom:693.120057pt;}
.yd9{bottom:693.920044pt;}
.y5d{bottom:700.960053pt;}
.y7c{bottom:704.960053pt;}
.yd{bottom:707.840058pt;}
.yd8{bottom:708.640046pt;}
.y5c{bottom:716.960053pt;}
.y7b{bottom:720.960053pt;}
.yc{bottom:722.400055pt;}
.yd7{bottom:723.200074pt;}
.y34{bottom:725.600068pt;}
.y5b{bottom:732.960053pt;}
.y7a{bottom:736.960053pt;}
.yb{bottom:737.120057pt;}
.yd6{bottom:737.920044pt;}
.y5a{bottom:748.960053pt;}
.ya{bottom:751.840058pt;}
.yd5{bottom:752.640046pt;}
.y79{bottom:752.960053pt;}
.y59{bottom:764.960053pt;}
.y9{bottom:766.400055pt;}
.yd4{bottom:767.200074pt;}
.y33{bottom:768.960053pt;}
.y58{bottom:780.960053pt;}
.y8{bottom:781.120057pt;}
.yd3{bottom:781.920044pt;}
.y32{bottom:784.960053pt;}
.yd2{bottom:796.640046pt;}
.y57{bottom:796.960053pt;}
.y31{bottom:800.960053pt;}
.yd1{bottom:811.200074pt;}
.y56{bottom:812.960053pt;}
.y30{bottom:816.960053pt;}
.yd0{bottom:825.920044pt;}
.y55{bottom:828.960053pt;}
.y2f{bottom:832.960053pt;}
.y7{bottom:836.800049pt;}
.ycf{bottom:840.640046pt;}
.y54{bottom:844.960053pt;}
.y2e{bottom:848.960053pt;}
.y6{bottom:854.400055pt;}
.yce{bottom:855.200074pt;}
.y53{bottom:860.960053pt;}
.y2d{bottom:864.960053pt;}
.ycd{bottom:869.920060pt;}
.y52{bottom:876.960053pt;}
.y5{bottom:878.720063pt;}
.y2c{bottom:880.960053pt;}
.ycc{bottom:884.640061pt;}
.y2b{bottom:896.960053pt;}
.ycb{bottom:899.200058pt;}
.y4{bottom:908.640061pt;}
.y51{bottom:909.600052pt;}
.y2a{bottom:912.960053pt;}
.yca{bottom:913.920060pt;}
.y29{bottom:950.400055pt;}
.h5{height:28.688612pt;}
.h8{height:38.674269pt;}
.h2{height:43.033043pt;}
.h9{height:45.157946pt;}
.h6{height:46.595500pt;}
.h7{height:47.623043pt;}
.h4{height:49.543679pt;}
.h3{height:52.834785pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:166.240005pt;}
.x8{left:172.320007pt;}
.x1{left:181.440002pt;}
.x9{left:188.960007pt;}
.x6{left:204.000000pt;}
.x3{left:239.839996pt;}
.x4{left:266.399994pt;}
.x5{left:335.519989pt;}
.x7{left:621.440002pt;}
}




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