
    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_4fc4865f7fa5448a9f73e705.woff')format("woff");}.ff1{font-family:ff1;line-height:1.197754;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_9f564e9d1c6151a802dd163e.woff')format("woff");}.ff2{font-family:ff2;line-height:1.084961;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_9d7fa6b3939724c06c0aae97.woff')format("woff");}.ff3{font-family:ff3;line-height:1.090332;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_0dd688c7da7bfb3005eccb23.woff')format("woff");}.ff4{font-family:ff4;line-height:1.082520;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;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,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);}
.v3{vertical-align:-21.090000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:3.000000px;}
.v2{vertical-align:26.640000px;}
.ls4{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.016200px;}
.ls10{letter-spacing:0.016800px;}
.lsd{letter-spacing:0.198000px;}
.ls6{letter-spacing:0.216000px;}
.lsa{letter-spacing:0.288000px;}
.ls9{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.621000px;}
.lse{letter-spacing:2.251800px;}
.ls8{letter-spacing:2.305800px;}
.ls12{letter-spacing:2.472600px;}
.ls7{letter-spacing:3.600000px;}
.ls1{letter-spacing:4.197333px;}
.ls0{letter-spacing:4.200000px;}
.lsc{letter-spacing:6.000000px;}
.ls2{letter-spacing:6.600000px;}
.ls5{letter-spacing:7.200000px;}
.ls3{letter-spacing:10.200000px;}
.ls11{letter-spacing:10.956000px;}
.ls13{letter-spacing:19.800000px;}
.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:-38.862000px;}
.wsc{word-spacing:-36.102000px;}
.ws7{word-spacing:-27.432000px;}
.ws9{word-spacing:-22.860000px;}
.ws6{word-spacing:-20.520000px;}
.ws8{word-spacing:-20.448000px;}
.wsa{word-spacing:-18.546000px;}
.ws3{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.784000px;}
.ws0{word-spacing:-16.860000px;}
.wsb{word-spacing:-16.302000px;}
.wsd{word-spacing:-14.820000px;}
.ws5{word-spacing:-12.139200px;}
.ws2{word-spacing:0.000000px;}
._13{margin-left:-2169.895800px;}
._7{margin-left:-21.192000px;}
._1b{margin-left:-19.936200px;}
._22{margin-left:-18.541800px;}
._1c{margin-left:-16.368000px;}
._16{margin-left:-14.190000px;}
._1d{margin-left:-11.736000px;}
._5{margin-left:-10.200000px;}
._15{margin-left:-8.748000px;}
._3{margin-left:-6.984000px;}
._2{margin-left:-5.610000px;}
._0{margin-left:-3.906000px;}
._a{margin-left:-2.448000px;}
._4{margin-left:-1.200000px;}
._8{width:1.224000px;}
._9{width:2.376000px;}
._1{width:3.780000px;}
._e{width:5.424000px;}
._11{width:6.456000px;}
._12{width:8.064000px;}
._14{width:9.204000px;}
._6{width:10.252000px;}
._10{width:12.030000px;}
._d{width:13.890000px;}
._18{width:14.904000px;}
._f{width:15.912000px;}
._19{width:16.992000px;}
._17{width:21.951600px;}
._1f{width:23.848000px;}
._20{width:26.470000px;}
._1e{width:27.808000px;}
._21{width:29.950000px;}
._b{width:33.984000px;}
._c{width:38.890200px;}
._1a{width:58.329600px;}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:34.200000px;}
.fs2{font-size:42.000000px;}
.fs6{font-size:43.200000px;}
.fs1{font-size:48.000000px;}
.fs8{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:107.837550px;}
.y91{bottom:171.813150px;}
.yc9{bottom:177.085650px;}
.y6e{bottom:178.900650px;}
.y93{bottom:181.612500px;}
.y3f{bottom:182.292750px;}
.yb1{bottom:184.208550px;}
.yc1{bottom:186.204600px;}
.y1f{bottom:190.467900px;}
.y90{bottom:193.585650px;}
.y6d{bottom:200.500650px;}
.y92{bottom:203.212500px;}
.y3e{bottom:203.892750px;}
.yb0{bottom:206.108550px;}
.yc0{bottom:207.804600px;}
.yc8{bottom:210.100650px;}
.yef{bottom:210.510000px;}
.y1e{bottom:212.068050px;}
.y6c{bottom:222.100650px;}
.y8f{bottom:224.812500px;}
.yaf{bottom:228.008550px;}
.ybf{bottom:229.404600px;}
.yc7{bottom:229.900650px;}
.y1d{bottom:233.668050px;}
.y3d{bottom:233.996700px;}
.y51{bottom:242.500650px;}
.y6b{bottom:243.700650px;}
.y8e{bottom:246.412500px;}
.yee{bottom:247.410000px;}
.yc6{bottom:249.700650px;}
.ybe{bottom:251.004600px;}
.y1c{bottom:255.267900px;}
.y3c{bottom:255.596700px;}
.yae{bottom:258.412500px;}
.y50{bottom:264.100650px;}
.y6a{bottom:265.300650px;}
.yed{bottom:267.210000px;}
.y8d{bottom:268.012500px;}
.yc5{bottom:269.500650px;}
.ybd{bottom:272.604600px;}
.y1b{bottom:276.868050px;}
.y4f{bottom:285.700650px;}
.y69{bottom:286.900650px;}
.yec{bottom:287.010000px;}
.yc4{bottom:289.300650px;}
.y8c{bottom:289.612500px;}
.ybc{bottom:294.204600px;}
.y1a{bottom:298.468050px;}
.yeb{bottom:306.810000px;}
.y4e{bottom:307.300650px;}
.y68{bottom:308.500650px;}
.yc3{bottom:309.100650px;}
.y8b{bottom:311.212500px;}
.ybb{bottom:315.804600px;}
.y107{bottom:317.108550px;}
.y19{bottom:320.068050px;}
.yea{bottom:326.610000px;}
.y4d{bottom:328.900650px;}
.y67{bottom:330.100650px;}
.y8a{bottom:332.812500px;}
.y106{bottom:335.108550px;}
.yba{bottom:337.404600px;}
.y18{bottom:341.668050px;}
.yad{bottom:346.012500px;}
.ye9{bottom:346.410000px;}
.y4c{bottom:350.500650px;}
.y66{bottom:351.700650px;}
.y105{bottom:353.108550px;}
.y89{bottom:354.412500px;}
.yc2{bottom:357.204600px;}
.yb9{bottom:359.004600px;}
.y17{bottom:363.267900px;}
.ye8{bottom:366.210000px;}
.y3b{bottom:367.508550px;}
.yac{bottom:367.912500px;}
.y104{bottom:371.108550px;}
.y4b{bottom:372.100650px;}
.y65{bottom:373.300650px;}
.y88{bottom:376.012500px;}
.yb8{bottom:380.604600px;}
.y16{bottom:384.868050px;}
.ye7{bottom:386.010000px;}
.y3a{bottom:389.108550px;}
.yab{bottom:389.812500px;}
.y4a{bottom:393.700650px;}
.y64{bottom:394.900650px;}
.y87{bottom:397.612500px;}
.yb7{bottom:402.204600px;}
.ye6{bottom:405.810000px;}
.y15{bottom:406.468050px;}
.y39{bottom:410.708550px;}
.yaa{bottom:411.712500px;}
.y49{bottom:415.300650px;}
.y63{bottom:416.500650px;}
.y86{bottom:419.212500px;}
.yb6{bottom:423.804600px;}
.ye5{bottom:425.610000px;}
.y14{bottom:428.068050px;}
.y38{bottom:432.308550px;}
.ya9{bottom:433.612500px;}
.y48{bottom:436.900650px;}
.y62{bottom:438.100650px;}
.y85{bottom:440.812500px;}
.yb5{bottom:445.404600px;}
.ye4{bottom:445.410000px;}
.y103{bottom:448.508550px;}
.y13{bottom:449.668050px;}
.y37{bottom:453.908550px;}
.ya8{bottom:455.512500px;}
.y47{bottom:458.500650px;}
.y61{bottom:459.700650px;}
.y84{bottom:462.412500px;}
.ye3{bottom:465.210000px;}
.yb4{bottom:467.004600px;}
.y102{bottom:468.308550px;}
.y12{bottom:471.267900px;}
.y36{bottom:475.508550px;}
.ya7{bottom:477.412500px;}
.y46{bottom:480.100650px;}
.y60{bottom:481.300650px;}
.y83{bottom:484.012500px;}
.ye2{bottom:485.010000px;}
.y101{bottom:488.108550px;}
.yb3{bottom:488.604600px;}
.y11{bottom:492.868050px;}
.y35{bottom:497.108550px;}
.ya6{bottom:499.312500px;}
.y45{bottom:501.700650px;}
.y5f{bottom:502.900650px;}
.ye1{bottom:504.810000px;}
.y82{bottom:505.612500px;}
.y100{bottom:507.908550px;}
.yb2{bottom:510.204600px;}
.y10{bottom:514.468050px;}
.y34{bottom:518.708550px;}
.ya5{bottom:521.212500px;}
.y5e{bottom:524.500650px;}
.ye0{bottom:524.610000px;}
.y81{bottom:527.212500px;}
.yff{bottom:527.708550px;}
.y44{bottom:531.804600px;}
.yf{bottom:536.068050px;}
.y33{bottom:540.308550px;}
.ya4{bottom:543.112500px;}
.ydf{bottom:544.410000px;}
.y5d{bottom:546.100650px;}
.yfe{bottom:547.508550px;}
.y80{bottom:548.812500px;}
.y43{bottom:553.404600px;}
.ye{bottom:557.668050px;}
.y32{bottom:561.908550px;}
.yde{bottom:564.210000px;}
.ya3{bottom:565.012500px;}
.yfd{bottom:567.308550px;}
.y5c{bottom:567.700650px;}
.y7f{bottom:570.412500px;}
.y42{bottom:575.004600px;}
.yd{bottom:579.267900px;}
.y31{bottom:583.508550px;}
.ydd{bottom:584.010000px;}
.ya2{bottom:586.912500px;}
.yfc{bottom:587.108550px;}
.y5b{bottom:589.300650px;}
.y7e{bottom:592.012500px;}
.y41{bottom:596.604600px;}
.yc{bottom:600.868050px;}
.ydc{bottom:603.810000px;}
.y30{bottom:605.108550px;}
.yfb{bottom:606.908550px;}
.ya1{bottom:608.812500px;}
.y5a{bottom:610.900650px;}
.y7d{bottom:613.612500px;}
.yb{bottom:622.467900px;}
.ydb{bottom:623.610000px;}
.y2f{bottom:626.708550px;}
.ya0{bottom:630.712500px;}
.y59{bottom:632.500650px;}
.y7c{bottom:635.212500px;}
.yda{bottom:643.410000px;}
.ya{bottom:644.068050px;}
.yfa{bottom:646.508550px;}
.y2e{bottom:648.308550px;}
.y9f{bottom:652.612500px;}
.y58{bottom:654.100650px;}
.y7b{bottom:656.812500px;}
.yd9{bottom:663.210000px;}
.y9{bottom:665.668050px;}
.yf9{bottom:666.308550px;}
.y2d{bottom:669.908550px;}
.y9e{bottom:674.512500px;}
.y57{bottom:675.700650px;}
.y7a{bottom:678.412500px;}
.yd8{bottom:683.010000px;}
.yf8{bottom:686.108550px;}
.y8{bottom:687.267900px;}
.y2c{bottom:691.508550px;}
.y9d{bottom:696.412500px;}
.y56{bottom:697.300650px;}
.y79{bottom:700.012500px;}
.yd7{bottom:702.810000px;}
.yf7{bottom:705.908550px;}
.y2b{bottom:713.108550px;}
.y9c{bottom:718.312500px;}
.y55{bottom:718.900650px;}
.y78{bottom:721.612500px;}
.yd6{bottom:722.610000px;}
.yf6{bottom:725.708550px;}
.y2a{bottom:734.708550px;}
.y54{bottom:740.500650px;}
.yd5{bottom:742.410000px;}
.y77{bottom:743.212500px;}
.yf5{bottom:745.508550px;}
.y29{bottom:756.308550px;}
.y53{bottom:762.100650px;}
.yd4{bottom:762.210000px;}
.y76{bottom:764.812500px;}
.yf4{bottom:765.308550px;}
.y28{bottom:777.908550px;}
.yd3{bottom:782.010000px;}
.y52{bottom:783.700650px;}
.y9b{bottom:784.012500px;}
.yf3{bottom:785.108550px;}
.y75{bottom:786.412500px;}
.y7{bottom:795.267900px;}
.y27{bottom:799.508550px;}
.yd2{bottom:801.810000px;}
.yf2{bottom:804.908550px;}
.y9a{bottom:805.912500px;}
.y74{bottom:808.012500px;}
.y26{bottom:821.108550px;}
.yd1{bottom:821.610000px;}
.yf1{bottom:824.708550px;}
.y6{bottom:825.868050px;}
.y99{bottom:827.812500px;}
.y73{bottom:829.612500px;}
.yd0{bottom:841.410000px;}
.y25{bottom:842.708550px;}
.yf0{bottom:844.508550px;}
.y98{bottom:849.712500px;}
.y72{bottom:851.212500px;}
.y5{bottom:856.467900px;}
.ycf{bottom:861.210000px;}
.y24{bottom:864.308550px;}
.y97{bottom:871.612500px;}
.y71{bottom:872.812500px;}
.yce{bottom:881.010000px;}
.y23{bottom:885.908550px;}
.y4{bottom:887.068050px;}
.y96{bottom:893.512500px;}
.y70{bottom:894.412500px;}
.ycd{bottom:900.810000px;}
.y22{bottom:907.508550px;}
.y95{bottom:915.412500px;}
.y6f{bottom:916.012500px;}
.ycc{bottom:920.610000px;}
.y21{bottom:929.108550px;}
.y94{bottom:937.312500px;}
.y40{bottom:937.612500px;}
.ycb{bottom:940.410000px;}
.y3{bottom:942.329400px;}
.y20{bottom:959.212500px;}
.yca{bottom:960.210000px;}
.y2{bottom:960.329400px;}
.ha{height:33.906094px;}
.h4{height:40.523438px;}
.h3{height:43.523438px;}
.h8{height:46.312500px;}
.hd{height:50.947266px;}
.hb{height:54.996094px;}
.h5{height:56.041992px;}
.h2{height:57.890625px;}
.h9{height:61.136719px;}
.hc{height:63.679688px;}
.h7{height:69.468750px;}
.h6{height:98.414062px;}
.h0{height:1083.472500px;}
.h1{height:1083.750000px;}
.w0{width:785.835000px;}
.w1{width:786.000000px;}
.x0{left:0.000000px;}
.x6{left:108.035400px;}
.x4{left:128.140950px;}
.x1{left:129.295350px;}
.x9{left:150.555150px;}
.x7{left:163.311000px;}
.xa{left:171.814950px;}
.x8{left:180.318900px;}
.x2{left:182.170350px;}
.x3{left:302.077950px;}
.xb{left:574.709250px;}
.x5{left:617.164350px;}
@media print{
.v3{vertical-align:-18.746667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.666667pt;}
.v2{vertical-align:23.680000pt;}
.ls4{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.014400pt;}
.ls10{letter-spacing:0.014933pt;}
.lsd{letter-spacing:0.176000pt;}
.ls6{letter-spacing:0.192000pt;}
.lsa{letter-spacing:0.256000pt;}
.ls9{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.552000pt;}
.lse{letter-spacing:2.001600pt;}
.ls8{letter-spacing:2.049600pt;}
.ls12{letter-spacing:2.197867pt;}
.ls7{letter-spacing:3.200000pt;}
.ls1{letter-spacing:3.730963pt;}
.ls0{letter-spacing:3.733333pt;}
.lsc{letter-spacing:5.333333pt;}
.ls2{letter-spacing:5.866667pt;}
.ls5{letter-spacing:6.400000pt;}
.ls3{letter-spacing:9.066667pt;}
.ls11{letter-spacing:9.738667pt;}
.ls13{letter-spacing:17.600000pt;}
.ws1{word-spacing:-34.544000pt;}
.wsc{word-spacing:-32.090667pt;}
.ws7{word-spacing:-24.384000pt;}
.ws9{word-spacing:-20.320000pt;}
.ws6{word-spacing:-18.240000pt;}
.ws8{word-spacing:-18.176000pt;}
.wsa{word-spacing:-16.485333pt;}
.ws3{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.808000pt;}
.ws0{word-spacing:-14.986667pt;}
.wsb{word-spacing:-14.490667pt;}
.wsd{word-spacing:-13.173333pt;}
.ws5{word-spacing:-10.790400pt;}
.ws2{word-spacing:0.000000pt;}
._13{margin-left:-1928.796267pt;}
._7{margin-left:-18.837333pt;}
._1b{margin-left:-17.721067pt;}
._22{margin-left:-16.481600pt;}
._1c{margin-left:-14.549333pt;}
._16{margin-left:-12.613333pt;}
._1d{margin-left:-10.432000pt;}
._5{margin-left:-9.066667pt;}
._15{margin-left:-7.776000pt;}
._3{margin-left:-6.208000pt;}
._2{margin-left:-4.986667pt;}
._0{margin-left:-3.472000pt;}
._a{margin-left:-2.176000pt;}
._4{margin-left:-1.066667pt;}
._8{width:1.088000pt;}
._9{width:2.112000pt;}
._1{width:3.360000pt;}
._e{width:4.821333pt;}
._11{width:5.738667pt;}
._12{width:7.168000pt;}
._14{width:8.181333pt;}
._6{width:9.112889pt;}
._10{width:10.693333pt;}
._d{width:12.346667pt;}
._18{width:13.248000pt;}
._f{width:14.144000pt;}
._19{width:15.104000pt;}
._17{width:19.512533pt;}
._1f{width:21.198222pt;}
._20{width:23.528889pt;}
._1e{width:24.718222pt;}
._21{width:26.622222pt;}
._b{width:30.208000pt;}
._c{width:34.569067pt;}
._1a{width:51.848533pt;}
.fs7{font-size:30.400000pt;}
.fs2{font-size:37.333333pt;}
.fs6{font-size:38.400000pt;}
.fs1{font-size:42.666667pt;}
.fs8{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:95.855600pt;}
.y91{bottom:152.722800pt;}
.yc9{bottom:157.409467pt;}
.y6e{bottom:159.022800pt;}
.y93{bottom:161.433333pt;}
.y3f{bottom:162.038000pt;}
.yb1{bottom:163.740933pt;}
.yc1{bottom:165.515200pt;}
.y1f{bottom:169.304800pt;}
.y90{bottom:172.076133pt;}
.y6d{bottom:178.222800pt;}
.y92{bottom:180.633333pt;}
.y3e{bottom:181.238000pt;}
.yb0{bottom:183.207600pt;}
.yc0{bottom:184.715200pt;}
.yc8{bottom:186.756133pt;}
.yef{bottom:187.120000pt;}
.y1e{bottom:188.504933pt;}
.y6c{bottom:197.422800pt;}
.y8f{bottom:199.833333pt;}
.yaf{bottom:202.674267pt;}
.ybf{bottom:203.915200pt;}
.yc7{bottom:204.356133pt;}
.y1d{bottom:207.704933pt;}
.y3d{bottom:207.997067pt;}
.y51{bottom:215.556133pt;}
.y6b{bottom:216.622800pt;}
.y8e{bottom:219.033333pt;}
.yee{bottom:219.920000pt;}
.yc6{bottom:221.956133pt;}
.ybe{bottom:223.115200pt;}
.y1c{bottom:226.904800pt;}
.y3c{bottom:227.197067pt;}
.yae{bottom:229.700000pt;}
.y50{bottom:234.756133pt;}
.y6a{bottom:235.822800pt;}
.yed{bottom:237.520000pt;}
.y8d{bottom:238.233333pt;}
.yc5{bottom:239.556133pt;}
.ybd{bottom:242.315200pt;}
.y1b{bottom:246.104933pt;}
.y4f{bottom:253.956133pt;}
.y69{bottom:255.022800pt;}
.yec{bottom:255.120000pt;}
.yc4{bottom:257.156133pt;}
.y8c{bottom:257.433333pt;}
.ybc{bottom:261.515200pt;}
.y1a{bottom:265.304933pt;}
.yeb{bottom:272.720000pt;}
.y4e{bottom:273.156133pt;}
.y68{bottom:274.222800pt;}
.yc3{bottom:274.756133pt;}
.y8b{bottom:276.633333pt;}
.ybb{bottom:280.715200pt;}
.y107{bottom:281.874267pt;}
.y19{bottom:284.504933pt;}
.yea{bottom:290.320000pt;}
.y4d{bottom:292.356133pt;}
.y67{bottom:293.422800pt;}
.y8a{bottom:295.833333pt;}
.y106{bottom:297.874267pt;}
.yba{bottom:299.915200pt;}
.y18{bottom:303.704933pt;}
.yad{bottom:307.566667pt;}
.ye9{bottom:307.920000pt;}
.y4c{bottom:311.556133pt;}
.y66{bottom:312.622800pt;}
.y105{bottom:313.874267pt;}
.y89{bottom:315.033333pt;}
.yc2{bottom:317.515200pt;}
.yb9{bottom:319.115200pt;}
.y17{bottom:322.904800pt;}
.ye8{bottom:325.520000pt;}
.y3b{bottom:326.674267pt;}
.yac{bottom:327.033333pt;}
.y104{bottom:329.874267pt;}
.y4b{bottom:330.756133pt;}
.y65{bottom:331.822800pt;}
.y88{bottom:334.233333pt;}
.yb8{bottom:338.315200pt;}
.y16{bottom:342.104933pt;}
.ye7{bottom:343.120000pt;}
.y3a{bottom:345.874267pt;}
.yab{bottom:346.500000pt;}
.y4a{bottom:349.956133pt;}
.y64{bottom:351.022800pt;}
.y87{bottom:353.433333pt;}
.yb7{bottom:357.515200pt;}
.ye6{bottom:360.720000pt;}
.y15{bottom:361.304933pt;}
.y39{bottom:365.074267pt;}
.yaa{bottom:365.966667pt;}
.y49{bottom:369.156133pt;}
.y63{bottom:370.222800pt;}
.y86{bottom:372.633333pt;}
.yb6{bottom:376.715200pt;}
.ye5{bottom:378.320000pt;}
.y14{bottom:380.504933pt;}
.y38{bottom:384.274267pt;}
.ya9{bottom:385.433333pt;}
.y48{bottom:388.356133pt;}
.y62{bottom:389.422800pt;}
.y85{bottom:391.833333pt;}
.yb5{bottom:395.915200pt;}
.ye4{bottom:395.920000pt;}
.y103{bottom:398.674267pt;}
.y13{bottom:399.704933pt;}
.y37{bottom:403.474267pt;}
.ya8{bottom:404.900000pt;}
.y47{bottom:407.556133pt;}
.y61{bottom:408.622800pt;}
.y84{bottom:411.033333pt;}
.ye3{bottom:413.520000pt;}
.yb4{bottom:415.115200pt;}
.y102{bottom:416.274267pt;}
.y12{bottom:418.904800pt;}
.y36{bottom:422.674267pt;}
.ya7{bottom:424.366667pt;}
.y46{bottom:426.756133pt;}
.y60{bottom:427.822800pt;}
.y83{bottom:430.233333pt;}
.ye2{bottom:431.120000pt;}
.y101{bottom:433.874267pt;}
.yb3{bottom:434.315200pt;}
.y11{bottom:438.104933pt;}
.y35{bottom:441.874267pt;}
.ya6{bottom:443.833333pt;}
.y45{bottom:445.956133pt;}
.y5f{bottom:447.022800pt;}
.ye1{bottom:448.720000pt;}
.y82{bottom:449.433333pt;}
.y100{bottom:451.474267pt;}
.yb2{bottom:453.515200pt;}
.y10{bottom:457.304933pt;}
.y34{bottom:461.074267pt;}
.ya5{bottom:463.300000pt;}
.y5e{bottom:466.222800pt;}
.ye0{bottom:466.320000pt;}
.y81{bottom:468.633333pt;}
.yff{bottom:469.074267pt;}
.y44{bottom:472.715200pt;}
.yf{bottom:476.504933pt;}
.y33{bottom:480.274267pt;}
.ya4{bottom:482.766667pt;}
.ydf{bottom:483.920000pt;}
.y5d{bottom:485.422800pt;}
.yfe{bottom:486.674267pt;}
.y80{bottom:487.833333pt;}
.y43{bottom:491.915200pt;}
.ye{bottom:495.704933pt;}
.y32{bottom:499.474267pt;}
.yde{bottom:501.520000pt;}
.ya3{bottom:502.233333pt;}
.yfd{bottom:504.274267pt;}
.y5c{bottom:504.622800pt;}
.y7f{bottom:507.033333pt;}
.y42{bottom:511.115200pt;}
.yd{bottom:514.904800pt;}
.y31{bottom:518.674267pt;}
.ydd{bottom:519.120000pt;}
.ya2{bottom:521.700000pt;}
.yfc{bottom:521.874267pt;}
.y5b{bottom:523.822800pt;}
.y7e{bottom:526.233333pt;}
.y41{bottom:530.315200pt;}
.yc{bottom:534.104933pt;}
.ydc{bottom:536.720000pt;}
.y30{bottom:537.874267pt;}
.yfb{bottom:539.474267pt;}
.ya1{bottom:541.166667pt;}
.y5a{bottom:543.022800pt;}
.y7d{bottom:545.433333pt;}
.yb{bottom:553.304800pt;}
.ydb{bottom:554.320000pt;}
.y2f{bottom:557.074267pt;}
.ya0{bottom:560.633333pt;}
.y59{bottom:562.222800pt;}
.y7c{bottom:564.633333pt;}
.yda{bottom:571.920000pt;}
.ya{bottom:572.504933pt;}
.yfa{bottom:574.674267pt;}
.y2e{bottom:576.274267pt;}
.y9f{bottom:580.100000pt;}
.y58{bottom:581.422800pt;}
.y7b{bottom:583.833333pt;}
.yd9{bottom:589.520000pt;}
.y9{bottom:591.704933pt;}
.yf9{bottom:592.274267pt;}
.y2d{bottom:595.474267pt;}
.y9e{bottom:599.566667pt;}
.y57{bottom:600.622800pt;}
.y7a{bottom:603.033333pt;}
.yd8{bottom:607.120000pt;}
.yf8{bottom:609.874267pt;}
.y8{bottom:610.904800pt;}
.y2c{bottom:614.674267pt;}
.y9d{bottom:619.033333pt;}
.y56{bottom:619.822800pt;}
.y79{bottom:622.233333pt;}
.yd7{bottom:624.720000pt;}
.yf7{bottom:627.474267pt;}
.y2b{bottom:633.874267pt;}
.y9c{bottom:638.500000pt;}
.y55{bottom:639.022800pt;}
.y78{bottom:641.433333pt;}
.yd6{bottom:642.320000pt;}
.yf6{bottom:645.074267pt;}
.y2a{bottom:653.074267pt;}
.y54{bottom:658.222800pt;}
.yd5{bottom:659.920000pt;}
.y77{bottom:660.633333pt;}
.yf5{bottom:662.674267pt;}
.y29{bottom:672.274267pt;}
.y53{bottom:677.422800pt;}
.yd4{bottom:677.520000pt;}
.y76{bottom:679.833333pt;}
.yf4{bottom:680.274267pt;}
.y28{bottom:691.474267pt;}
.yd3{bottom:695.120000pt;}
.y52{bottom:696.622800pt;}
.y9b{bottom:696.900000pt;}
.yf3{bottom:697.874267pt;}
.y75{bottom:699.033333pt;}
.y7{bottom:706.904800pt;}
.y27{bottom:710.674267pt;}
.yd2{bottom:712.720000pt;}
.yf2{bottom:715.474267pt;}
.y9a{bottom:716.366667pt;}
.y74{bottom:718.233333pt;}
.y26{bottom:729.874267pt;}
.yd1{bottom:730.320000pt;}
.yf1{bottom:733.074267pt;}
.y6{bottom:734.104933pt;}
.y99{bottom:735.833333pt;}
.y73{bottom:737.433333pt;}
.yd0{bottom:747.920000pt;}
.y25{bottom:749.074267pt;}
.yf0{bottom:750.674267pt;}
.y98{bottom:755.300000pt;}
.y72{bottom:756.633333pt;}
.y5{bottom:761.304800pt;}
.ycf{bottom:765.520000pt;}
.y24{bottom:768.274267pt;}
.y97{bottom:774.766667pt;}
.y71{bottom:775.833333pt;}
.yce{bottom:783.120000pt;}
.y23{bottom:787.474267pt;}
.y4{bottom:788.504933pt;}
.y96{bottom:794.233333pt;}
.y70{bottom:795.033333pt;}
.ycd{bottom:800.720000pt;}
.y22{bottom:806.674267pt;}
.y95{bottom:813.700000pt;}
.y6f{bottom:814.233333pt;}
.ycc{bottom:818.320000pt;}
.y21{bottom:825.874267pt;}
.y94{bottom:833.166667pt;}
.y40{bottom:833.433333pt;}
.ycb{bottom:835.920000pt;}
.y3{bottom:837.626133pt;}
.y20{bottom:852.633333pt;}
.yca{bottom:853.520000pt;}
.y2{bottom:853.626133pt;}
.ha{height:30.138750pt;}
.h4{height:36.020833pt;}
.h3{height:38.687500pt;}
.h8{height:41.166667pt;}
.hd{height:45.286458pt;}
.hb{height:48.885417pt;}
.h5{height:49.815104pt;}
.h2{height:51.458333pt;}
.h9{height:54.343750pt;}
.hc{height:56.604167pt;}
.h7{height:61.750000pt;}
.h6{height:87.479167pt;}
.h0{height:963.086667pt;}
.h1{height:963.333333pt;}
.w0{width:698.520000pt;}
.w1{width:698.666667pt;}
.x0{left:0.000000pt;}
.x6{left:96.031467pt;}
.x4{left:113.903067pt;}
.x1{left:114.929200pt;}
.x9{left:133.826800pt;}
.x7{left:145.165333pt;}
.xa{left:152.724400pt;}
.x8{left:160.283467pt;}
.x2{left:161.929200pt;}
.x3{left:268.513733pt;}
.xb{left:510.852667pt;}
.x5{left:548.590533pt;}
}




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