
    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_2d8fd957e9532a99263ce93d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.917969;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_687afbdd4572cde6bcf477ee.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.844727;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_d7b6d4beccf41bfd6f16aaa5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_45e5633fe72fd900977f9d8c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.895996;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_d64f99edc3e584064d4ae616.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.858398;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_43ad94c2d2f00acbcc604f12.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_ffdda5bb32ece582657cb63c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.675781;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_b67ebb785b42b6e300ff16a2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.765137;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_979ae7c15d610c4300fd5d9e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.861816;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_8a464c6da921c07da9573a26.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;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;}
.ls22{letter-spacing:-5.759856px;}
.ls7{letter-spacing:-3.556800px;}
.ls1c{letter-spacing:-3.477600px;}
.ls1d{letter-spacing:-3.002400px;}
.ls24{letter-spacing:-2.527776px;}
.ls1b{letter-spacing:-1.911600px;}
.ls23{letter-spacing:-1.514736px;}
.ls25{letter-spacing:-1.476144px;}
.ls26{letter-spacing:-1.379664px;}
.ls27{letter-spacing:-1.242000px;}
.ls1a{letter-spacing:-1.188000px;}
.ls21{letter-spacing:-1.166400px;}
.ls19{letter-spacing:-1.144800px;}
.ls14{letter-spacing:-0.225216px;}
.ls28{letter-spacing:-0.218592px;}
.ls15{letter-spacing:-0.165600px;}
.ls20{letter-spacing:-0.158976px;}
.lsc{letter-spacing:-0.152352px;}
.ls13{letter-spacing:-0.145728px;}
.lsf{letter-spacing:-0.139104px;}
.lsb{letter-spacing:-0.132480px;}
.ls11{letter-spacing:-0.125856px;}
.ls17{letter-spacing:-0.112608px;}
.lsd{letter-spacing:-0.105984px;}
.ls12{letter-spacing:-0.086112px;}
.lse{letter-spacing:-0.079488px;}
.ls16{letter-spacing:-0.072864px;}
.ls18{letter-spacing:-0.066240px;}
.ls1e{letter-spacing:-0.059616px;}
.ls10{letter-spacing:-0.046368px;}
.ls6{letter-spacing:-0.043200px;}
.ls9{letter-spacing:-0.036000px;}
.ls1f{letter-spacing:-0.033120px;}
.ls8{letter-spacing:-0.014400px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.005760px;}
.ls4{letter-spacing:0.007200px;}
.ls0{letter-spacing:0.014400px;}
.ls2{letter-spacing:0.021600px;}
.lsa{letter-spacing:0.028800px;}
.ls1{letter-spacing:0.036000px;}
.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;}
}
.ws1{word-spacing:-24.364800px;}
.ws1d{word-spacing:-21.804480px;}
.ws1c{word-spacing:-20.328336px;}
.ws8{word-spacing:-17.222400px;}
.ws1b{word-spacing:-17.176032px;}
.wsc{word-spacing:-17.142912px;}
.ws12{word-spacing:-17.136288px;}
.ws16{word-spacing:-17.116416px;}
.ws9{word-spacing:-17.096544px;}
.ws17{word-spacing:-17.083296px;}
.ws1a{word-spacing:-17.070048px;}
.wsa{word-spacing:-17.056800px;}
.ws1f{word-spacing:-16.997184px;}
.ws3{word-spacing:-16.286400px;}
.ws2{word-spacing:-16.257600px;}
.ws0{word-spacing:-0.108000px;}
.ws5{word-spacing:-0.060480px;}
.ws7{word-spacing:-0.019872px;}
.ws4{word-spacing:0.000000px;}
.ws18{word-spacing:0.013248px;}
.ws13{word-spacing:0.019872px;}
.ws6{word-spacing:0.039744px;}
.wse{word-spacing:0.079488px;}
.wsb{word-spacing:0.099360px;}
.wsd{word-spacing:0.158976px;}
.wsf{word-spacing:1.036800px;}
.ws19{word-spacing:1.058400px;}
.ws10{word-spacing:1.080000px;}
.ws1e{word-spacing:1.134000px;}
.ws11{word-spacing:1.803600px;}
.ws15{word-spacing:2.894400px;}
.ws14{word-spacing:3.369600px;}
._b{margin-left:-9.817200px;}
._2{margin-left:-8.791200px;}
._3{margin-left:-6.335136px;}
._7{margin-left:-5.137920px;}
._1{margin-left:-3.996000px;}
._0{margin-left:-1.846800px;}
._6{width:1.027728px;}
._5{width:2.304000px;}
._4{width:3.528000px;}
._a{width:5.155200px;}
._9{width:2659.914720px;}
._8{width:2690.578080px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs4{font-size:60.480000px;}
.fs3{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:83.520000px;}
.fs5{font-size:96.480000px;}
.fs0{font-size:108.000000px;}
.y24{bottom:-4.920000px;}
.y0{bottom:0.000000px;}
.y23{bottom:23.160000px;}
.y22{bottom:48.720000px;}
.y1{bottom:60.000000px;}
.y28{bottom:60.840000px;}
.y21{bottom:74.280000px;}
.y20{bottom:99.480000px;}
.y1f{bottom:125.040000px;}
.y27{bottom:132.840000px;}
.y1e{bottom:150.600000px;}
.y26{bottom:158.760000px;}
.y1d{bottom:175.800000px;}
.yb8{bottom:184.680000px;}
.y61{bottom:185.400000px;}
.y49{bottom:190.440000px;}
.ya8{bottom:192.600000px;}
.yac{bottom:198.720000px;}
.y92{bottom:199.080000px;}
.y1c{bottom:201.360000px;}
.yb7{bottom:207.000000px;}
.y7a{bottom:207.360000px;}
.y60{bottom:207.720000px;}
.y48{bottom:213.120000px;}
.ya7{bottom:214.920000px;}
.y91{bottom:221.400000px;}
.y1b{bottom:226.920000px;}
.y5f{bottom:230.400000px;}
.y47{bottom:235.440000px;}
.ya6{bottom:237.600000px;}
.yb6{bottom:238.680000px;}
.y74{bottom:239.400000px;}
.y79{bottom:243.720000px;}
.y90{bottom:244.080000px;}
.y1a{bottom:252.480000px;}
.y5e{bottom:252.720000px;}
.y46{bottom:258.120000px;}
.ya5{bottom:259.920000px;}
.yb5{bottom:261.000000px;}
.y73{bottom:261.720000px;}
.y8f{bottom:266.400000px;}
.y5d{bottom:275.040000px;}
.y19{bottom:277.680000px;}
.y45{bottom:280.440000px;}
.ya4{bottom:282.600000px;}
.yb4{bottom:283.320000px;}
.y72{bottom:284.040000px;}
.y5c{bottom:297.720000px;}
.y8e{bottom:298.080000px;}
.y44{bottom:302.760000px;}
.y18{bottom:303.240000px;}
.ya3{bottom:304.920000px;}
.yb3{bottom:306.000000px;}
.y71{bottom:306.720000px;}
.y5b{bottom:320.040000px;}
.y8d{bottom:320.400000px;}
.y43{bottom:325.440000px;}
.y17{bottom:328.800000px;}
.y70{bottom:329.040000px;}
.ya2{bottom:336.240000px;}
.yb2{bottom:337.320000px;}
.y78{bottom:342.720000px;}
.y6f{bottom:351.720000px;}
.y16{bottom:354.000000px;}
.y42{bottom:356.760000px;}
.ya1{bottom:358.920000px;}
.yb1{bottom:360.000000px;}
.y77{bottom:365.040000px;}
.y8c{bottom:365.400000px;}
.y6e{bottom:374.040000px;}
.y41{bottom:379.440000px;}
.y15{bottom:381.000000px;}
.ya0{bottom:381.240000px;}
.yb0{bottom:382.320000px;}
.y5a{bottom:384.840000px;}
.y76{bottom:387.360000px;}
.y6d{bottom:396.360000px;}
.y40{bottom:401.760000px;}
.y9f{bottom:403.920000px;}
.yaf{bottom:404.640000px;}
.y14{bottom:410.520000px;}
.y8b{bottom:412.200000px;}
.y6c{bottom:419.040000px;}
.y59{bottom:424.080000px;}
.y9e{bottom:426.240000px;}
.y3f{bottom:433.080000px;}
.y13{bottom:438.960000px;}
.y6b{bottom:441.360000px;}
.y58{bottom:446.760000px;}
.y8a{bottom:448.560000px;}
.y75{bottom:452.160000px;}
.y3e{bottom:455.760000px;}
.yab{bottom:464.040000px;}
.y12{bottom:464.520000px;}
.y57{bottom:469.080000px;}
.yae{bottom:469.440000px;}
.y6a{bottom:473.040000px;}
.y3d{bottom:478.080000px;}
.y89{bottom:480.240000px;}
.yaa{bottom:486.360000px;}
.y11{bottom:489.720000px;}
.y56{bottom:491.760000px;}
.y69{bottom:495.360000px;}
.y9d{bottom:495.720000px;}
.y3c{bottom:500.760000px;}
.y88{bottom:502.560000px;}
.yad{bottom:506.160000px;}
.y55{bottom:514.080000px;}
.y10{bottom:515.280000px;}
.y68{bottom:518.040000px;}
.y3b{bottom:523.080000px;}
.y87{bottom:525.240000px;}
.y9c{bottom:532.080000px;}
.y67{bottom:540.360000px;}
.yf{bottom:540.840000px;}
.y3a{bottom:545.760000px;}
.y86{bottom:547.560000px;}
.ya9{bottom:551.160000px;}
.y9b{bottom:563.760000px;}
.ye{bottom:566.040000px;}
.y39{bottom:568.080000px;}
.y85{bottom:570.240000px;}
.y66{bottom:571.680000px;}
.y9a{bottom:586.080000px;}
.y54{bottom:590.400000px;}
.yd{bottom:591.600000px;}
.y84{bottom:592.560000px;}
.y65{bottom:594.360000px;}
.y38{bottom:599.400000px;}
.y99{bottom:608.400000px;}
.y53{bottom:613.080000px;}
.y83{bottom:614.880000px;}
.y64{bottom:616.680000px;}
.yc{bottom:617.160000px;}
.y37{bottom:622.080000px;}
.y98{bottom:631.080000px;}
.y52{bottom:635.400000px;}
.y82{bottom:637.560000px;}
.y63{bottom:639.360000px;}
.yb{bottom:642.720000px;}
.y36{bottom:644.400000px;}
.y97{bottom:653.400000px;}
.y51{bottom:658.080000px;}
.y81{bottom:659.880000px;}
.y35{bottom:667.080000px;}
.ya{bottom:667.920000px;}
.y96{bottom:676.080000px;}
.y50{bottom:680.400000px;}
.y80{bottom:682.560000px;}
.y34{bottom:689.400000px;}
.y9{bottom:693.480000px;}
.y95{bottom:698.400000px;}
.y62{bottom:703.800000px;}
.y7f{bottom:704.880000px;}
.y33{bottom:711.720000px;}
.y8{bottom:719.040000px;}
.y94{bottom:720.720000px;}
.y7e{bottom:727.200000px;}
.y4f{bottom:734.400000px;}
.y32{bottom:743.400000px;}
.y7{bottom:744.240000px;}
.y4e{bottom:756.720000px;}
.y31{bottom:765.720000px;}
.y6{bottom:769.800000px;}
.y7d{bottom:774.360000px;}
.y4d{bottom:779.400000px;}
.y30{bottom:788.400000px;}
.y5{bottom:796.800000px;}
.y2f{bottom:810.720000px;}
.y93{bottom:819.720000px;}
.y4{bottom:826.320000px;}
.y2e{bottom:833.400000px;}
.y7c{bottom:842.400000px;}
.yb9{bottom:846.720000px;}
.y2d{bottom:855.720000px;}
.y3{bottom:858.720000px;}
.y7b{bottom:864.720000px;}
.y4c{bottom:878.040000px;}
.y2c{bottom:887.040000px;}
.y2{bottom:895.800000px;}
.y4b{bottom:900.720000px;}
.y2b{bottom:909.720000px;}
.y4a{bottom:923.040000px;}
.y2a{bottom:932.040000px;}
.y29{bottom:954.720000px;}
.y25{bottom:975.960000px;}
.h7{height:50.682656px;}
.h6{height:51.679688px;}
.h5{height:55.666406px;}
.h8{height:65.953125px;}
.h4{height:71.982422px;}
.h3{height:75.515625px;}
.h2{height:922.500000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:760.500000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x2{left:11.219964px;}
.x1{left:70.500000px;}
.x4{left:108.000000px;}
.x3{left:784.950120px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls22{letter-spacing:-5.119872pt;}
.ls7{letter-spacing:-3.161600pt;}
.ls1c{letter-spacing:-3.091200pt;}
.ls1d{letter-spacing:-2.668800pt;}
.ls24{letter-spacing:-2.246912pt;}
.ls1b{letter-spacing:-1.699200pt;}
.ls23{letter-spacing:-1.346432pt;}
.ls25{letter-spacing:-1.312128pt;}
.ls26{letter-spacing:-1.226368pt;}
.ls27{letter-spacing:-1.104000pt;}
.ls1a{letter-spacing:-1.056000pt;}
.ls21{letter-spacing:-1.036800pt;}
.ls19{letter-spacing:-1.017600pt;}
.ls14{letter-spacing:-0.200192pt;}
.ls28{letter-spacing:-0.194304pt;}
.ls15{letter-spacing:-0.147200pt;}
.ls20{letter-spacing:-0.141312pt;}
.lsc{letter-spacing:-0.135424pt;}
.ls13{letter-spacing:-0.129536pt;}
.lsf{letter-spacing:-0.123648pt;}
.lsb{letter-spacing:-0.117760pt;}
.ls11{letter-spacing:-0.111872pt;}
.ls17{letter-spacing:-0.100096pt;}
.lsd{letter-spacing:-0.094208pt;}
.ls12{letter-spacing:-0.076544pt;}
.lse{letter-spacing:-0.070656pt;}
.ls16{letter-spacing:-0.064768pt;}
.ls18{letter-spacing:-0.058880pt;}
.ls1e{letter-spacing:-0.052992pt;}
.ls10{letter-spacing:-0.041216pt;}
.ls6{letter-spacing:-0.038400pt;}
.ls9{letter-spacing:-0.032000pt;}
.ls1f{letter-spacing:-0.029440pt;}
.ls8{letter-spacing:-0.012800pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.005120pt;}
.ls4{letter-spacing:0.006400pt;}
.ls0{letter-spacing:0.012800pt;}
.ls2{letter-spacing:0.019200pt;}
.lsa{letter-spacing:0.025600pt;}
.ls1{letter-spacing:0.032000pt;}
.ws1{word-spacing:-21.657600pt;}
.ws1d{word-spacing:-19.381760pt;}
.ws1c{word-spacing:-18.069632pt;}
.ws8{word-spacing:-15.308800pt;}
.ws1b{word-spacing:-15.267584pt;}
.wsc{word-spacing:-15.238144pt;}
.ws12{word-spacing:-15.232256pt;}
.ws16{word-spacing:-15.214592pt;}
.ws9{word-spacing:-15.196928pt;}
.ws17{word-spacing:-15.185152pt;}
.ws1a{word-spacing:-15.173376pt;}
.wsa{word-spacing:-15.161600pt;}
.ws1f{word-spacing:-15.108608pt;}
.ws3{word-spacing:-14.476800pt;}
.ws2{word-spacing:-14.451200pt;}
.ws0{word-spacing:-0.096000pt;}
.ws5{word-spacing:-0.053760pt;}
.ws7{word-spacing:-0.017664pt;}
.ws4{word-spacing:0.000000pt;}
.ws18{word-spacing:0.011776pt;}
.ws13{word-spacing:0.017664pt;}
.ws6{word-spacing:0.035328pt;}
.wse{word-spacing:0.070656pt;}
.wsb{word-spacing:0.088320pt;}
.wsd{word-spacing:0.141312pt;}
.wsf{word-spacing:0.921600pt;}
.ws19{word-spacing:0.940800pt;}
.ws10{word-spacing:0.960000pt;}
.ws1e{word-spacing:1.008000pt;}
.ws11{word-spacing:1.603200pt;}
.ws15{word-spacing:2.572800pt;}
.ws14{word-spacing:2.995200pt;}
._b{margin-left:-8.726400pt;}
._2{margin-left:-7.814400pt;}
._3{margin-left:-5.631232pt;}
._7{margin-left:-4.567040pt;}
._1{margin-left:-3.552000pt;}
._0{margin-left:-1.641600pt;}
._6{width:0.913536pt;}
._5{width:2.048000pt;}
._4{width:3.136000pt;}
._a{width:4.582400pt;}
._9{width:2364.368640pt;}
._8{width:2391.624960pt;}
.fs4{font-size:53.760000pt;}
.fs3{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.240000pt;}
.fs5{font-size:85.760000pt;}
.fs0{font-size:96.000000pt;}
.y24{bottom:-4.373333pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:20.586667pt;}
.y22{bottom:43.306667pt;}
.y1{bottom:53.333333pt;}
.y28{bottom:54.080000pt;}
.y21{bottom:66.026667pt;}
.y20{bottom:88.426667pt;}
.y1f{bottom:111.146667pt;}
.y27{bottom:118.080000pt;}
.y1e{bottom:133.866667pt;}
.y26{bottom:141.120000pt;}
.y1d{bottom:156.266667pt;}
.yb8{bottom:164.160000pt;}
.y61{bottom:164.800000pt;}
.y49{bottom:169.280000pt;}
.ya8{bottom:171.200000pt;}
.yac{bottom:176.640000pt;}
.y92{bottom:176.960000pt;}
.y1c{bottom:178.986667pt;}
.yb7{bottom:184.000000pt;}
.y7a{bottom:184.320000pt;}
.y60{bottom:184.640000pt;}
.y48{bottom:189.440000pt;}
.ya7{bottom:191.040000pt;}
.y91{bottom:196.800000pt;}
.y1b{bottom:201.706667pt;}
.y5f{bottom:204.800000pt;}
.y47{bottom:209.280000pt;}
.ya6{bottom:211.200000pt;}
.yb6{bottom:212.160000pt;}
.y74{bottom:212.800000pt;}
.y79{bottom:216.640000pt;}
.y90{bottom:216.960000pt;}
.y1a{bottom:224.426667pt;}
.y5e{bottom:224.640000pt;}
.y46{bottom:229.440000pt;}
.ya5{bottom:231.040000pt;}
.yb5{bottom:232.000000pt;}
.y73{bottom:232.640000pt;}
.y8f{bottom:236.800000pt;}
.y5d{bottom:244.480000pt;}
.y19{bottom:246.826667pt;}
.y45{bottom:249.280000pt;}
.ya4{bottom:251.200000pt;}
.yb4{bottom:251.840000pt;}
.y72{bottom:252.480000pt;}
.y5c{bottom:264.640000pt;}
.y8e{bottom:264.960000pt;}
.y44{bottom:269.120000pt;}
.y18{bottom:269.546667pt;}
.ya3{bottom:271.040000pt;}
.yb3{bottom:272.000000pt;}
.y71{bottom:272.640000pt;}
.y5b{bottom:284.480000pt;}
.y8d{bottom:284.800000pt;}
.y43{bottom:289.280000pt;}
.y17{bottom:292.266667pt;}
.y70{bottom:292.480000pt;}
.ya2{bottom:298.880000pt;}
.yb2{bottom:299.840000pt;}
.y78{bottom:304.640000pt;}
.y6f{bottom:312.640000pt;}
.y16{bottom:314.666667pt;}
.y42{bottom:317.120000pt;}
.ya1{bottom:319.040000pt;}
.yb1{bottom:320.000000pt;}
.y77{bottom:324.480000pt;}
.y8c{bottom:324.800000pt;}
.y6e{bottom:332.480000pt;}
.y41{bottom:337.280000pt;}
.y15{bottom:338.666667pt;}
.ya0{bottom:338.880000pt;}
.yb0{bottom:339.840000pt;}
.y5a{bottom:342.080000pt;}
.y76{bottom:344.320000pt;}
.y6d{bottom:352.320000pt;}
.y40{bottom:357.120000pt;}
.y9f{bottom:359.040000pt;}
.yaf{bottom:359.680000pt;}
.y14{bottom:364.906667pt;}
.y8b{bottom:366.400000pt;}
.y6c{bottom:372.480000pt;}
.y59{bottom:376.960000pt;}
.y9e{bottom:378.880000pt;}
.y3f{bottom:384.960000pt;}
.y13{bottom:390.186667pt;}
.y6b{bottom:392.320000pt;}
.y58{bottom:397.120000pt;}
.y8a{bottom:398.720000pt;}
.y75{bottom:401.920000pt;}
.y3e{bottom:405.120000pt;}
.yab{bottom:412.480000pt;}
.y12{bottom:412.906667pt;}
.y57{bottom:416.960000pt;}
.yae{bottom:417.280000pt;}
.y6a{bottom:420.480000pt;}
.y3d{bottom:424.960000pt;}
.y89{bottom:426.880000pt;}
.yaa{bottom:432.320000pt;}
.y11{bottom:435.306667pt;}
.y56{bottom:437.120000pt;}
.y69{bottom:440.320000pt;}
.y9d{bottom:440.640000pt;}
.y3c{bottom:445.120000pt;}
.y88{bottom:446.720000pt;}
.yad{bottom:449.920000pt;}
.y55{bottom:456.960000pt;}
.y10{bottom:458.026667pt;}
.y68{bottom:460.480000pt;}
.y3b{bottom:464.960000pt;}
.y87{bottom:466.880000pt;}
.y9c{bottom:472.960000pt;}
.y67{bottom:480.320000pt;}
.yf{bottom:480.746667pt;}
.y3a{bottom:485.120000pt;}
.y86{bottom:486.720000pt;}
.ya9{bottom:489.920000pt;}
.y9b{bottom:501.120000pt;}
.ye{bottom:503.146667pt;}
.y39{bottom:504.960000pt;}
.y85{bottom:506.880000pt;}
.y66{bottom:508.160000pt;}
.y9a{bottom:520.960000pt;}
.y54{bottom:524.800000pt;}
.yd{bottom:525.866667pt;}
.y84{bottom:526.720000pt;}
.y65{bottom:528.320000pt;}
.y38{bottom:532.800000pt;}
.y99{bottom:540.800000pt;}
.y53{bottom:544.960000pt;}
.y83{bottom:546.560000pt;}
.y64{bottom:548.160000pt;}
.yc{bottom:548.586667pt;}
.y37{bottom:552.960000pt;}
.y98{bottom:560.960000pt;}
.y52{bottom:564.800000pt;}
.y82{bottom:566.720000pt;}
.y63{bottom:568.320000pt;}
.yb{bottom:571.306667pt;}
.y36{bottom:572.800000pt;}
.y97{bottom:580.800000pt;}
.y51{bottom:584.960000pt;}
.y81{bottom:586.560000pt;}
.y35{bottom:592.960000pt;}
.ya{bottom:593.706667pt;}
.y96{bottom:600.960000pt;}
.y50{bottom:604.800000pt;}
.y80{bottom:606.720000pt;}
.y34{bottom:612.800000pt;}
.y9{bottom:616.426667pt;}
.y95{bottom:620.800000pt;}
.y62{bottom:625.600000pt;}
.y7f{bottom:626.560000pt;}
.y33{bottom:632.640000pt;}
.y8{bottom:639.146667pt;}
.y94{bottom:640.640000pt;}
.y7e{bottom:646.400000pt;}
.y4f{bottom:652.800000pt;}
.y32{bottom:660.800000pt;}
.y7{bottom:661.546667pt;}
.y4e{bottom:672.640000pt;}
.y31{bottom:680.640000pt;}
.y6{bottom:684.266667pt;}
.y7d{bottom:688.320000pt;}
.y4d{bottom:692.800000pt;}
.y30{bottom:700.800000pt;}
.y5{bottom:708.266667pt;}
.y2f{bottom:720.640000pt;}
.y93{bottom:728.640000pt;}
.y4{bottom:734.506667pt;}
.y2e{bottom:740.800000pt;}
.y7c{bottom:748.800000pt;}
.yb9{bottom:752.640000pt;}
.y2d{bottom:760.640000pt;}
.y3{bottom:763.306667pt;}
.y7b{bottom:768.640000pt;}
.y4c{bottom:780.480000pt;}
.y2c{bottom:788.480000pt;}
.y2{bottom:796.266667pt;}
.y4b{bottom:800.640000pt;}
.y2b{bottom:808.640000pt;}
.y4a{bottom:820.480000pt;}
.y2a{bottom:828.480000pt;}
.y29{bottom:848.640000pt;}
.y25{bottom:867.520000pt;}
.h7{height:45.051250pt;}
.h6{height:45.937500pt;}
.h5{height:49.481250pt;}
.h8{height:58.625000pt;}
.h4{height:63.984375pt;}
.h3{height:67.125000pt;}
.h2{height:820.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:676.000000pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x2{left:9.973301pt;}
.x1{left:62.666667pt;}
.x4{left:96.000000pt;}
.x3{left:697.733440pt;}
}




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