
    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_b45f2ac76888442f750b087f.woff2')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_ed6185c894a567cb502c166a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_1e3f49a7e57fcd831f8a2d28.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_1eba7fc2edc724a14116903e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.979004;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_91761027a8a832c115bb85d5.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_67ab9d79c350199d052baa33.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_0bf096f73a47e1bab2fc203d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;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);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lse{letter-spacing:-0.186600px;}
.lsf{letter-spacing:-0.160800px;}
.ls7{letter-spacing:-0.135000px;}
.ls9{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.ls8{letter-spacing:-0.084600px;}
.ls11{letter-spacing:-0.018360px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.014760px;}
.lsc{letter-spacing:0.045360px;}
.ls14{letter-spacing:0.064800px;}
.lsa{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls12{letter-spacing:0.116400px;}
.ls13{letter-spacing:0.135000px;}
.ls5{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.173400px;}
.lsb{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls17{letter-spacing:47.726640px;}
.ls15{letter-spacing:63.566640px;}
.ls16{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws4{word-spacing:-14.493600px;}
.ws8{word-spacing:-14.372400px;}
.wsa{word-spacing:-13.425600px;}
.ws6{word-spacing:-13.399800px;}
.wsc{word-spacing:-13.342800px;}
.ws2{word-spacing:-13.226400px;}
.wsb{word-spacing:-13.208040px;}
.ws9{word-spacing:-13.065600px;}
.ws7{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws5{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
._9{margin-left:-3.186600px;}
._a{margin-left:-2.146796px;}
._0{margin-left:-1.110000px;}
._1{width:1.258200px;}
._7{width:2.325722px;}
._2{width:3.366600px;}
._3{width:4.509000px;}
._d{width:6.013796px;}
._6{width:7.455000px;}
._4{width:8.777400px;}
._5{width:9.961443px;}
._8{width:11.279515px;}
._b{width:15.751200px;}
._f{width:16.896361px;}
._13{width:18.396720px;}
._17{width:20.500920px;}
._12{width:21.557160px;}
._16{width:23.627160px;}
._10{width:25.250400px;}
._11{width:26.637480px;}
._c{width:27.775200px;}
._e{width:28.965123px;}
._28{width:30.626514px;}
._25{width:35.022600px;}
._1b{width:36.793440px;}
._14{width:37.914840px;}
._1a{width:39.579840px;}
._2e{width:41.561040px;}
._1e{width:43.346520px;}
._1d{width:44.396400px;}
._35{width:45.663360px;}
._30{width:46.861320px;}
._27{width:55.190160px;}
._2b{width:58.617000px;}
._38{width:61.322400px;}
._1f{width:62.705160px;}
._29{width:65.813760px;}
._3b{width:68.705280px;}
._2a{width:70.280280px;}
._23{width:74.969640px;}
._2d{width:77.333760px;}
._31{width:83.206080px;}
._22{width:85.971600px;}
._20{width:87.572160px;}
._26{width:89.601480px;}
._15{width:94.508640px;}
._37{width:95.771160px;}
._36{width:103.646880px;}
._33{width:105.690240px;}
._21{width:114.708960px;}
._19{width:119.813760px;}
._2f{width:137.943120px;}
._39{width:147.533760px;}
._2c{width:159.811560px;}
._18{width:184.748760px;}
._1c{width:191.093760px;}
._32{width:311.693760px;}
._3a{width:313.525800px;}
._24{width:331.493760px;}
._34{width:342.668160px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y58{bottom:7.830000px;}
.y5d{bottom:7.860000px;}
.y5a{bottom:7.920000px;}
.y5f{bottom:25.380000px;}
.y62{bottom:25.470000px;}
.yab{bottom:43.020000px;}
.yb0{bottom:43.110000px;}
.yaa{bottom:60.570000px;}
.yaf{bottom:60.660000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.ya9{bottom:78.210000px;}
.ya8{bottom:95.760000px;}
.yb5{bottom:95.790000px;}
.yae{bottom:95.850000px;}
.y1{bottom:101.640000px;}
.y7d{bottom:111.720000px;}
.yb7{bottom:113.310000px;}
.yb4{bottom:113.340000px;}
.ya7{bottom:113.400000px;}
.ydf{bottom:120.720000px;}
.y7c{bottom:129.360000px;}
.ya6{bottom:130.950000px;}
.yb3{bottom:130.980000px;}
.yad{bottom:131.040000px;}
.ybb{bottom:135.030000px;}
.yde{bottom:138.360000px;}
.y7b{bottom:146.910000px;}
.ya5{bottom:148.500000px;}
.yb2{bottom:148.530000px;}
.y27{bottom:148.710000px;}
.y9c{bottom:151.500000px;}
.yba{bottom:152.670000px;}
.y56{bottom:160.500000px;}
.y7a{bottom:164.460000px;}
.ydd{bottom:165.270000px;}
.y26{bottom:166.350000px;}
.y9b{bottom:169.050000px;}
.yb9{bottom:170.220000px;}
.y55{bottom:178.050000px;}
.y25{bottom:183.900000px;}
.y9a{bottom:186.690000px;}
.yb8{bottom:187.770000px;}
.y54{bottom:195.600000px;}
.y79{bottom:200.100000px;}
.y24{bottom:201.540000px;}
.y99{bottom:204.240000px;}
.ydc{bottom:213.510000px;}
.y78{bottom:217.650000px;}
.yb6{bottom:220.800000px;}
.y53{bottom:222.510000px;}
.ydb{bottom:231.060000px;}
.y77{bottom:235.290000px;}
.y23{bottom:237.090000px;}
.y98{bottom:239.880000px;}
.y22{bottom:254.640000px;}
.y97{bottom:257.430000px;}
.yda{bottom:266.610000px;}
.y52{bottom:270.840000px;}
.y96{bottom:274.980000px;}
.yd9{bottom:285.060000px;}
.y51{bottom:288.390000px;}
.y21{bottom:290.280000px;}
.y95{bottom:292.620000px;}
.yd8{bottom:303.420000px;}
.y50{bottom:305.940000px;}
.y20{bottom:307.830000px;}
.y94{bottom:310.170000px;}
.y4f{bottom:323.580000px;}
.y76{bottom:324.030000px;}
.y1f{bottom:325.380000px;}
.yd7{bottom:339.870000px;}
.y4e{bottom:341.130000px;}
.y75{bottom:341.580000px;}
.y1e{bottom:343.020000px;}
.y93{bottom:345.810000px;}
.y4d{bottom:358.770000px;}
.y74{bottom:359.220000px;}
.y1d{bottom:360.570000px;}
.y92{bottom:363.360000px;}
.yd6{bottom:375.510000px;}
.y1c{bottom:378.210000px;}
.y91{bottom:380.910000px;}
.yb1{bottom:388.830000px;}
.yd5{bottom:393.060000px;}
.y4c{bottom:394.320000px;}
.y73{bottom:394.770000px;}
.y1b{bottom:395.760000px;}
.y4b{bottom:411.870000px;}
.y72{bottom:412.320000px;}
.y1a{bottom:413.310000px;}
.y90{bottom:416.550000px;}
.yd4{bottom:428.700000px;}
.y4a{bottom:429.510000px;}
.y8f{bottom:434.100000px;}
.y19{bottom:440.220000px;}
.yd3{bottom:446.250000px;}
.y49{bottom:447.060000px;}
.y71{bottom:447.960000px;}
.y8e{bottom:451.740000px;}
.y70{bottom:465.510000px;}
.yd2{bottom:481.830000px;}
.y48{bottom:482.730000px;}
.y8d{bottom:487.320000px;}
.y18{bottom:488.580000px;}
.yd1{bottom:499.470000px;}
.y47{bottom:500.280000px;}
.y6f{bottom:501.090000px;}
.y8c{bottom:504.870000px;}
.y17{bottom:506.490000px;}
.yd0{bottom:517.020000px;}
.y46{bottom:517.830000px;}
.y6e{bottom:518.730000px;}
.y8b{bottom:522.510000px;}
.ycf{bottom:534.660000px;}
.y45{bottom:535.470000px;}
.y16{bottom:543.480000px;}
.yce{bottom:552.210000px;}
.y6d{bottom:554.280000px;}
.yac{bottom:556.800000px;}
.y8a{bottom:558.060000px;}
.y15{bottom:561.120000px;}
.ycd{bottom:569.760000px;}
.y44{bottom:571.020000px;}
.y6c{bottom:571.920000px;}
.y89{bottom:575.700000px;}
.y14{bottom:578.670000px;}
.y43{bottom:588.660000px;}
.y88{bottom:593.250000px;}
.y13{bottom:596.220000px;}
.ycc{bottom:605.400000px;}
.y42{bottom:606.210000px;}
.y6b{bottom:607.470000px;}
.y87{bottom:610.800000px;}
.y12{bottom:613.860000px;}
.ycb{bottom:622.950000px;}
.y41{bottom:623.760000px;}
.y6a{bottom:625.020000px;}
.y11{bottom:631.410000px;}
.yca{bottom:640.590000px;}
.y40{bottom:641.400000px;}
.y69{bottom:642.660000px;}
.y86{bottom:646.440000px;}
.y10{bottom:648.960000px;}
.y3f{bottom:658.950000px;}
.y85{bottom:663.990000px;}
.yf{bottom:666.600000px;}
.y68{bottom:675.600000px;}
.yc9{bottom:676.140000px;}
.y84{bottom:681.540000px;}
.ye{bottom:684.150000px;}
.yc8{bottom:693.690000px;}
.y3e{bottom:694.590000px;}
.yd{bottom:701.790000px;}
.ya4{bottom:707.280000px;}
.yc7{bottom:711.330000px;}
.y3d{bottom:712.140000px;}
.y83{bottom:717.180000px;}
.yc{bottom:719.340000px;}
.y67{bottom:720.510000px;}
.yc6{bottom:728.880000px;}
.y3c{bottom:729.690000px;}
.yb{bottom:736.890000px;}
.yee{bottom:742.740000px;}
.y66{bottom:747.870000px;}
.y82{bottom:749.400000px;}
.ya{bottom:754.530000px;}
.yc5{bottom:755.790000px;}
.yed{bottom:760.290000px;}
.y3b{bottom:765.330000px;}
.y65{bottom:775.230000px;}
.y9{bottom:781.440000px;}
.y3a{bottom:782.880000px;}
.yec{bottom:786.930000px;}
.y39{bottom:800.520000px;}
.yc4{bottom:804.030000px;}
.yeb{bottom:804.480000px;}
.y38{bottom:818.070000px;}
.y64{bottom:820.140000px;}
.yc3{bottom:821.670000px;}
.y8{bottom:828.240000px;}
.yea{bottom:831.030000px;}
.y37{bottom:835.620000px;}
.yc2{bottom:839.220000px;}
.ye9{bottom:848.670000px;}
.yc1{bottom:856.860000px;}
.y7{bottom:863.790000px;}
.y63{bottom:865.050000px;}
.y36{bottom:871.260000px;}
.ye8{bottom:875.220000px;}
.ya3{bottom:875.310000px;}
.y35{bottom:888.810000px;}
.y61{bottom:892.410000px;}
.ye7{bottom:892.860000px;}
.y6{bottom:899.610000px;}
.y34{bottom:906.450000px;}
.ye6{bottom:919.410000px;}
.y33{bottom:924.000000px;}
.yc0{bottom:927.960000px;}
.y5{bottom:935.610000px;}
.ye5{bottom:936.960000px;}
.y60{bottom:937.320000px;}
.y32{bottom:941.550000px;}
.ybf{bottom:945.600000px;}
.ye4{bottom:963.600000px;}
.y5e{bottom:964.680000px;}
.y31{bottom:968.460000px;}
.y4{bottom:971.700000px;}
.ya2{bottom:977.190000px;}
.ybe{bottom:981.150000px;}
.ya1{bottom:994.740000px;}
.ybd{bottom:998.790000px;}
.ye3{bottom:1007.790000px;}
.y5c{bottom:1009.590000px;}
.y3{bottom:1009.980000px;}
.ya0{bottom:1012.320000px;}
.y30{bottom:1016.820000px;}
.ye2{bottom:1025.370000px;}
.y9f{bottom:1029.960000px;}
.y2f{bottom:1034.370000px;}
.y5b{bottom:1036.890000px;}
.y9e{bottom:1047.510000px;}
.y2e{bottom:1051.920000px;}
.y59{bottom:1064.250000px;}
.y81{bottom:1065.510000px;}
.ybc{bottom:1069.560000px;}
.y9d{bottom:1074.420000px;}
.ye1{bottom:1078.560000px;}
.y80{bottom:1083.150000px;}
.y2d{bottom:1087.560000px;}
.y57{bottom:1091.610000px;}
.ye0{bottom:1096.110000px;}
.y7f{bottom:1100.700000px;}
.y2c{bottom:1105.110000px;}
.y2b{bottom:1122.750000px;}
.y7e{bottom:1127.610000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.h9{height:26.550000px;}
.hb{height:26.580000px;}
.ha{height:26.640000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.hc{height:44.100000px;}
.hd{height:44.190000px;}
.h6{height:50.667539px;}
.h7{height:50.902383px;}
.h5{height:55.779258px;}
.h11{height:61.793886px;}
.h8{height:68.582109px;}
.h4{height:71.019492px;}
.hf{height:149.760000px;}
.he{height:167.220000px;}
.h10{height:167.250000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w7{width:19.350000px;}
.w8{width:97.680000px;}
.w4{width:157.590000px;}
.wb{width:196.830000px;}
.wa{width:210.450000px;}
.w3{width:213.690000px;}
.w9{width:230.580000px;}
.w5{width:382.890000px;}
.w6{width:755.700000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:3.960000px;}
.x1{left:68.040000px;}
.x9{left:87.750000px;}
.xd{left:95.039987px;}
.xe{left:111.239987px;}
.x8{left:140.849987px;}
.xa{left:186.150000px;}
.x2{left:202.799987px;}
.x5{left:283.260000px;}
.xb{left:417.540000px;}
.x6{left:441.570000px;}
.xc{left:628.710000px;}
.x7{left:681.809987px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lse{letter-spacing:-0.165867pt;}
.lsf{letter-spacing:-0.142933pt;}
.ls7{letter-spacing:-0.120000pt;}
.ls9{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls8{letter-spacing:-0.075200pt;}
.ls11{letter-spacing:-0.016320pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.013120pt;}
.lsc{letter-spacing:0.040320pt;}
.ls14{letter-spacing:0.057600pt;}
.lsa{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls12{letter-spacing:0.103467pt;}
.ls13{letter-spacing:0.120000pt;}
.ls5{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.154133pt;}
.lsb{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls17{letter-spacing:42.423680pt;}
.ls15{letter-spacing:56.503680pt;}
.ls16{letter-spacing:71.863680pt;}
.ws4{word-spacing:-12.883200pt;}
.ws8{word-spacing:-12.775467pt;}
.wsa{word-spacing:-11.933867pt;}
.ws6{word-spacing:-11.910933pt;}
.wsc{word-spacing:-11.860267pt;}
.ws2{word-spacing:-11.756800pt;}
.wsb{word-spacing:-11.740480pt;}
.ws9{word-spacing:-11.613867pt;}
.ws7{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws5{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
._9{margin-left:-2.832534pt;}
._a{margin-left:-1.908263pt;}
._0{margin-left:-0.986667pt;}
._1{width:1.118400pt;}
._7{width:2.067309pt;}
._2{width:2.992533pt;}
._3{width:4.008000pt;}
._d{width:5.345596pt;}
._6{width:6.626667pt;}
._4{width:7.802133pt;}
._5{width:8.854616pt;}
._8{width:10.026236pt;}
._b{width:14.001066pt;}
._f{width:15.018988pt;}
._13{width:16.352640pt;}
._17{width:18.223040pt;}
._12{width:19.161920pt;}
._16{width:21.001920pt;}
._10{width:22.444800pt;}
._11{width:23.677760pt;}
._c{width:24.689066pt;}
._e{width:25.746776pt;}
._28{width:27.223568pt;}
._25{width:31.131200pt;}
._1b{width:32.705280pt;}
._14{width:33.702080pt;}
._1a{width:35.182080pt;}
._2e{width:36.943147pt;}
._1e{width:38.530240pt;}
._1d{width:39.463467pt;}
._35{width:40.589653pt;}
._30{width:41.654507pt;}
._27{width:49.057920pt;}
._2b{width:52.104000pt;}
._38{width:54.508800pt;}
._1f{width:55.737920pt;}
._29{width:58.501120pt;}
._3b{width:61.071360pt;}
._2a{width:62.471360pt;}
._23{width:66.639680pt;}
._2d{width:68.741120pt;}
._31{width:73.960960pt;}
._22{width:76.419200pt;}
._20{width:77.841920pt;}
._26{width:79.645760pt;}
._15{width:84.007680pt;}
._37{width:85.129920pt;}
._36{width:92.130560pt;}
._33{width:93.946880pt;}
._21{width:101.963520pt;}
._19{width:106.501120pt;}
._2f{width:122.616107pt;}
._39{width:131.141120pt;}
._2c{width:142.054720pt;}
._18{width:164.221120pt;}
._1c{width:169.861120pt;}
._32{width:277.061120pt;}
._3a{width:278.689600pt;}
._24{width:294.661120pt;}
._34{width:304.593920pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y58{bottom:6.960000pt;}
.y5d{bottom:6.986667pt;}
.y5a{bottom:7.040000pt;}
.y5f{bottom:22.560000pt;}
.y62{bottom:22.640000pt;}
.yab{bottom:38.240000pt;}
.yb0{bottom:38.320000pt;}
.yaa{bottom:53.840000pt;}
.yaf{bottom:53.920000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.ya9{bottom:69.520000pt;}
.ya8{bottom:85.120000pt;}
.yb5{bottom:85.146667pt;}
.yae{bottom:85.200000pt;}
.y1{bottom:90.346667pt;}
.y7d{bottom:99.306667pt;}
.yb7{bottom:100.720000pt;}
.yb4{bottom:100.746667pt;}
.ya7{bottom:100.800000pt;}
.ydf{bottom:107.306667pt;}
.y7c{bottom:114.986667pt;}
.ya6{bottom:116.400000pt;}
.yb3{bottom:116.426667pt;}
.yad{bottom:116.480000pt;}
.ybb{bottom:120.026667pt;}
.yde{bottom:122.986667pt;}
.y7b{bottom:130.586667pt;}
.ya5{bottom:132.000000pt;}
.yb2{bottom:132.026667pt;}
.y27{bottom:132.186667pt;}
.y9c{bottom:134.666667pt;}
.yba{bottom:135.706667pt;}
.y56{bottom:142.666667pt;}
.y7a{bottom:146.186667pt;}
.ydd{bottom:146.906667pt;}
.y26{bottom:147.866667pt;}
.y9b{bottom:150.266667pt;}
.yb9{bottom:151.306667pt;}
.y55{bottom:158.266667pt;}
.y25{bottom:163.466667pt;}
.y9a{bottom:165.946667pt;}
.yb8{bottom:166.906667pt;}
.y54{bottom:173.866667pt;}
.y79{bottom:177.866667pt;}
.y24{bottom:179.146667pt;}
.y99{bottom:181.546667pt;}
.ydc{bottom:189.786667pt;}
.y78{bottom:193.466667pt;}
.yb6{bottom:196.266667pt;}
.y53{bottom:197.786667pt;}
.ydb{bottom:205.386667pt;}
.y77{bottom:209.146667pt;}
.y23{bottom:210.746667pt;}
.y98{bottom:213.226667pt;}
.y22{bottom:226.346667pt;}
.y97{bottom:228.826667pt;}
.yda{bottom:236.986667pt;}
.y52{bottom:240.746667pt;}
.y96{bottom:244.426667pt;}
.yd9{bottom:253.386667pt;}
.y51{bottom:256.346667pt;}
.y21{bottom:258.026667pt;}
.y95{bottom:260.106667pt;}
.yd8{bottom:269.706667pt;}
.y50{bottom:271.946667pt;}
.y20{bottom:273.626667pt;}
.y94{bottom:275.706667pt;}
.y4f{bottom:287.626667pt;}
.y76{bottom:288.026667pt;}
.y1f{bottom:289.226667pt;}
.yd7{bottom:302.106667pt;}
.y4e{bottom:303.226667pt;}
.y75{bottom:303.626667pt;}
.y1e{bottom:304.906667pt;}
.y93{bottom:307.386667pt;}
.y4d{bottom:318.906667pt;}
.y74{bottom:319.306667pt;}
.y1d{bottom:320.506667pt;}
.y92{bottom:322.986667pt;}
.yd6{bottom:333.786667pt;}
.y1c{bottom:336.186667pt;}
.y91{bottom:338.586667pt;}
.yb1{bottom:345.626667pt;}
.yd5{bottom:349.386667pt;}
.y4c{bottom:350.506667pt;}
.y73{bottom:350.906667pt;}
.y1b{bottom:351.786667pt;}
.y4b{bottom:366.106667pt;}
.y72{bottom:366.506667pt;}
.y1a{bottom:367.386667pt;}
.y90{bottom:370.266667pt;}
.yd4{bottom:381.066667pt;}
.y4a{bottom:381.786667pt;}
.y8f{bottom:385.866667pt;}
.y19{bottom:391.306667pt;}
.yd3{bottom:396.666667pt;}
.y49{bottom:397.386667pt;}
.y71{bottom:398.186667pt;}
.y8e{bottom:401.546667pt;}
.y70{bottom:413.786667pt;}
.yd2{bottom:428.293333pt;}
.y48{bottom:429.093333pt;}
.y8d{bottom:433.173333pt;}
.y18{bottom:434.293333pt;}
.yd1{bottom:443.973333pt;}
.y47{bottom:444.693333pt;}
.y6f{bottom:445.413333pt;}
.y8c{bottom:448.773333pt;}
.y17{bottom:450.213333pt;}
.yd0{bottom:459.573333pt;}
.y46{bottom:460.293333pt;}
.y6e{bottom:461.093333pt;}
.y8b{bottom:464.453333pt;}
.ycf{bottom:475.253333pt;}
.y45{bottom:475.973333pt;}
.y16{bottom:483.093333pt;}
.yce{bottom:490.853333pt;}
.y6d{bottom:492.693333pt;}
.yac{bottom:494.933333pt;}
.y8a{bottom:496.053333pt;}
.y15{bottom:498.773333pt;}
.ycd{bottom:506.453333pt;}
.y44{bottom:507.573333pt;}
.y6c{bottom:508.373333pt;}
.y89{bottom:511.733333pt;}
.y14{bottom:514.373333pt;}
.y43{bottom:523.253333pt;}
.y88{bottom:527.333333pt;}
.y13{bottom:529.973333pt;}
.ycc{bottom:538.133333pt;}
.y42{bottom:538.853333pt;}
.y6b{bottom:539.973333pt;}
.y87{bottom:542.933333pt;}
.y12{bottom:545.653333pt;}
.ycb{bottom:553.733333pt;}
.y41{bottom:554.453333pt;}
.y6a{bottom:555.573333pt;}
.y11{bottom:561.253333pt;}
.yca{bottom:569.413333pt;}
.y40{bottom:570.133333pt;}
.y69{bottom:571.253333pt;}
.y86{bottom:574.613333pt;}
.y10{bottom:576.853333pt;}
.y3f{bottom:585.733333pt;}
.y85{bottom:590.213333pt;}
.yf{bottom:592.533333pt;}
.y68{bottom:600.533333pt;}
.yc9{bottom:601.013333pt;}
.y84{bottom:605.813333pt;}
.ye{bottom:608.133333pt;}
.yc8{bottom:616.613333pt;}
.y3e{bottom:617.413333pt;}
.yd{bottom:623.813333pt;}
.ya4{bottom:628.693333pt;}
.yc7{bottom:632.293333pt;}
.y3d{bottom:633.013333pt;}
.y83{bottom:637.493333pt;}
.yc{bottom:639.413333pt;}
.y67{bottom:640.453333pt;}
.yc6{bottom:647.893333pt;}
.y3c{bottom:648.613333pt;}
.yb{bottom:655.013333pt;}
.yee{bottom:660.213333pt;}
.y66{bottom:664.773333pt;}
.y82{bottom:666.133333pt;}
.ya{bottom:670.693333pt;}
.yc5{bottom:671.813333pt;}
.yed{bottom:675.813333pt;}
.y3b{bottom:680.293333pt;}
.y65{bottom:689.093333pt;}
.y9{bottom:694.613333pt;}
.y3a{bottom:695.893333pt;}
.yec{bottom:699.493333pt;}
.y39{bottom:711.573333pt;}
.yc4{bottom:714.693333pt;}
.yeb{bottom:715.093333pt;}
.y38{bottom:727.173333pt;}
.y64{bottom:729.013333pt;}
.yc3{bottom:730.373333pt;}
.y8{bottom:736.213333pt;}
.yea{bottom:738.693333pt;}
.y37{bottom:742.773333pt;}
.yc2{bottom:745.973333pt;}
.ye9{bottom:754.373333pt;}
.yc1{bottom:761.653333pt;}
.y7{bottom:767.813333pt;}
.y63{bottom:768.933333pt;}
.y36{bottom:774.453333pt;}
.ye8{bottom:777.973333pt;}
.ya3{bottom:778.053333pt;}
.y35{bottom:790.053333pt;}
.y61{bottom:793.253333pt;}
.ye7{bottom:793.653333pt;}
.y6{bottom:799.653333pt;}
.y34{bottom:805.733333pt;}
.ye6{bottom:817.253333pt;}
.y33{bottom:821.333333pt;}
.yc0{bottom:824.853333pt;}
.y5{bottom:831.653333pt;}
.ye5{bottom:832.853333pt;}
.y60{bottom:833.173333pt;}
.y32{bottom:836.933333pt;}
.ybf{bottom:840.533333pt;}
.ye4{bottom:856.533333pt;}
.y5e{bottom:857.493333pt;}
.y31{bottom:860.853333pt;}
.y4{bottom:863.733333pt;}
.ya2{bottom:868.613333pt;}
.ybe{bottom:872.133333pt;}
.ya1{bottom:884.213333pt;}
.ybd{bottom:887.813333pt;}
.ye3{bottom:895.813333pt;}
.y5c{bottom:897.413333pt;}
.y3{bottom:897.760000pt;}
.ya0{bottom:899.840000pt;}
.y30{bottom:903.840000pt;}
.ye2{bottom:911.440000pt;}
.y9f{bottom:915.520000pt;}
.y2f{bottom:919.440000pt;}
.y5b{bottom:921.680000pt;}
.y9e{bottom:931.120000pt;}
.y2e{bottom:935.040000pt;}
.y59{bottom:946.000000pt;}
.y81{bottom:947.120000pt;}
.ybc{bottom:950.720000pt;}
.y9d{bottom:955.040000pt;}
.ye1{bottom:958.720000pt;}
.y80{bottom:962.800000pt;}
.y2d{bottom:966.720000pt;}
.y57{bottom:970.320000pt;}
.ye0{bottom:974.320000pt;}
.y7f{bottom:978.400000pt;}
.y2c{bottom:982.320000pt;}
.y2b{bottom:998.000000pt;}
.y7e{bottom:1002.320000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.h9{height:23.600000pt;}
.hb{height:23.626667pt;}
.ha{height:23.680000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.hc{height:39.200000pt;}
.hd{height:39.280000pt;}
.h6{height:45.037812pt;}
.h7{height:45.246562pt;}
.h5{height:49.581562pt;}
.h11{height:54.927899pt;}
.h8{height:60.961875pt;}
.h4{height:63.128437pt;}
.hf{height:133.120000pt;}
.he{height:148.640000pt;}
.h10{height:148.666667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w7{width:17.200000pt;}
.w8{width:86.826667pt;}
.w4{width:140.080000pt;}
.wb{width:174.960000pt;}
.wa{width:187.066667pt;}
.w3{width:189.946667pt;}
.w9{width:204.960000pt;}
.w5{width:340.346667pt;}
.w6{width:671.733333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:3.520000pt;}
.x1{left:60.480000pt;}
.x9{left:78.000000pt;}
.xd{left:84.479988pt;}
.xe{left:98.879988pt;}
.x8{left:125.199988pt;}
.xa{left:165.466667pt;}
.x2{left:180.266655pt;}
.x5{left:251.786667pt;}
.xb{left:371.146667pt;}
.x6{left:392.506667pt;}
.xc{left:558.853333pt;}
.x7{left:606.053322pt;}
.x3{left:704.053322pt;}
}




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