
    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_5764813bb7856e564ed379aa.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_4bf1a8bfe476823c7832c884.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.088379;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_d73b55c5378b3d7e8f6d7689.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_4002678bb1fd1ab62c18be6d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_a2c4affe693818b08e02496d.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_643a56151b7cd923e22b5682.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.372070;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_fadc43be610fd5852b1d6651.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_c94b0d19ad81051cd1561fc4.woff2')format("woff");}.ff8{font-family:ff8;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:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lse{letter-spacing:-0.186600px;}
.ls7{letter-spacing:-0.135000px;}
.lsb{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.lsf{letter-spacing:-0.063600px;}
.ls10{letter-spacing:-0.048960px;}
.ls8{letter-spacing:-0.008400px;}
.ls4{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.045360px;}
.lsd{letter-spacing:0.048960px;}
.ls2{letter-spacing:0.065520px;}
.ls1{letter-spacing:0.090000px;}
.ls12{letter-spacing:0.108600px;}
.ls5{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.173400px;}
.ls3{letter-spacing:0.180000px;}
.ls0{letter-spacing:13.347360px;}
.ls14{letter-spacing:47.726640px;}
.ls13{letter-spacing:80.846640px;}
.ls11{letter-spacing:202.773600px;}
.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;}
}
.ws6{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.ws4{word-spacing:-13.399800px;}
.wsa{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.wsc{word-spacing:-13.177440px;}
.wsb{word-spacing:-13.162800px;}
.ws8{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-8.553600px;}
.ws7{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
._25{margin-left:-11.504040px;}
._14{margin-left:-3.788282px;}
._6{margin-left:-2.480880px;}
._0{margin-left:-1.110000px;}
._2{width:1.135750px;}
._1{width:2.348388px;}
._3{width:3.694560px;}
._4{width:4.990200px;}
._5{width:6.103437px;}
._f{width:7.243203px;}
._e{width:8.717400px;}
._9{width:9.919800px;}
._10{width:10.941840px;}
._11{width:12.084120px;}
._a{width:14.335104px;}
._8{width:15.364557px;}
._7{width:16.413000px;}
._d{width:17.516396px;}
._c{width:18.517200px;}
._b{width:19.647360px;}
._1d{width:20.873520px;}
._12{width:21.943800px;}
._13{width:23.333160px;}
._22{width:24.589080px;}
._26{width:29.699280px;}
._2a{width:31.301400px;}
._1e{width:32.344560px;}
._21{width:34.929720px;}
._18{width:39.514080px;}
._24{width:41.283844px;}
._15{width:52.244280px;}
._23{width:60.382800px;}
._28{width:62.853240px;}
._27{width:63.907560px;}
._17{width:72.404280px;}
._19{width:73.887480px;}
._1f{width:84.588840px;}
._1c{width:106.953480px;}
._16{width:137.253960px;}
._29{width:158.137920px;}
._1a{width:176.985960px;}
._2b{width:188.493000px;}
._1b{width:194.488200px;}
._20{width:350.920440px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs5{font-size:42.120000px;}
.fs2{font-size:45.000000px;}
.fs7{font-size:47.880000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs3{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y6c{bottom:7.830000px;}
.y6a{bottom:7.920000px;}
.y82{bottom:25.380000px;}
.y69{bottom:25.470000px;}
.y2{bottom:73.380000px;}
.y28{bottom:74.190000px;}
.y1{bottom:100.200000px;}
.y55{bottom:131.430000px;}
.y26{bottom:142.410000px;}
.y54{bottom:149.070000px;}
.y25{bottom:159.960000px;}
.y53{bottom:166.620000px;}
.y24{bottom:177.510000px;}
.yb6{bottom:191.460000px;}
.y52{bottom:193.170000px;}
.y93{bottom:196.680000px;}
.y23{bottom:204.420000px;}
.y75{bottom:209.010000px;}
.y92{bottom:214.230000px;}
.y51{bottom:225.840000px;}
.yb5{bottom:226.650000px;}
.yb4{bottom:244.200000px;}
.y74{bottom:244.560000px;}
.y91{bottom:249.870000px;}
.y22{bottom:252.750000px;}
.ydc{bottom:260.310000px;}
.y50{bottom:261.390000px;}
.yb3{bottom:261.840000px;}
.y73{bottom:262.200000px;}
.y90{bottom:267.420000px;}
.y21{bottom:270.660000px;}
.ydb{bottom:277.860000px;}
.y4f{bottom:278.940000px;}
.yb2{bottom:279.390000px;}
.y72{bottom:279.750000px;}
.y8f{bottom:284.970000px;}
.yda{bottom:295.500000px;}
.y4e{bottom:296.580000px;}
.yb1{bottom:296.940000px;}
.y71{bottom:306.300000px;}
.y20{bottom:307.650000px;}
.y8e{bottom:311.610000px;}
.y4d{bottom:314.130000px;}
.yd9{bottom:322.050000px;}
.yb0{bottom:323.850000px;}
.y1f{bottom:325.290000px;}
.yd8{bottom:339.600000px;}
.y4c{bottom:340.770000px;}
.y70{bottom:341.220000px;}
.y1e{bottom:342.840000px;}
.y8d{bottom:344.550000px;}
.y6f{bottom:353.370000px;}
.yd7{bottom:357.240000px;}
.y8c{bottom:371.910000px;}
.yaf{bottom:372.180000px;}
.y4b{bottom:376.320000px;}
.y1d{bottom:378.390000px;}
.yd6{bottom:383.790000px;}
.yae{bottom:389.730000px;}
.y4a{bottom:393.870000px;}
.y1c{bottom:396.030000px;}
.y6e{bottom:398.280000px;}
.yd5{bottom:401.340000px;}
.yad{bottom:407.370000px;}
.y49{bottom:411.510000px;}
.y1b{bottom:413.580000px;}
.y8b{bottom:416.820000px;}
.yac{bottom:424.920000px;}
.y6d{bottom:425.640000px;}
.yd4{bottom:427.980000px;}
.y48{bottom:429.060000px;}
.y1a{bottom:431.220000px;}
.yab{bottom:442.470000px;}
.yd3{bottom:445.530000px;}
.y47{bottom:446.700000px;}
.y19{bottom:448.770000px;}
.y6b{bottom:453.000000px;}
.yd2{bottom:472.200000px;}
.y46{bottom:473.280000px;}
.yaa{bottom:478.140000px;}
.y68{bottom:480.300000px;}
.y8a{bottom:483.090000px;}
.y18{bottom:484.350000px;}
.yd1{bottom:489.750000px;}
.ya9{bottom:495.690000px;}
.y17{bottom:501.990000px;}
.yd0{bottom:507.300000px;}
.y45{bottom:508.830000px;}
.ya8{bottom:513.330000px;}
.y89{bottom:518.730000px;}
.y16{bottom:519.540000px;}
.y44{bottom:526.470000px;}
.ycf{bottom:533.940000px;}
.y88{bottom:536.280000px;}
.y15{bottom:537.090000px;}
.y43{bottom:544.020000px;}
.y67{bottom:546.630000px;}
.ya7{bottom:548.880000px;}
.yce{bottom:551.490000px;}
.y87{bottom:553.920000px;}
.y14{bottom:554.730000px;}
.y42{bottom:561.660000px;}
.ya6{bottom:566.430000px;}
.y86{bottom:571.470000px;}
.ycd{bottom:578.130000px;}
.y41{bottom:579.210000px;}
.y66{bottom:582.180000px;}
.ya5{bottom:584.070000px;}
.y13{bottom:590.280000px;}
.ycc{bottom:595.680000px;}
.y85{bottom:598.020000px;}
.y65{bottom:599.820000px;}
.ya4{bottom:601.620000px;}
.y40{bottom:605.760000px;}
.y12{bottom:607.920000px;}
.y64{bottom:617.370000px;}
.ya3{bottom:619.260000px;}
.ycb{bottom:622.230000px;}
.y84{bottom:627.990000px;}
.y11{bottom:634.830000px;}
.y63{bottom:635.010000px;}
.yca{bottom:639.870000px;}
.y3f{bottom:641.400000px;}
.ya2{bottom:654.810000px;}
.yc9{bottom:657.420000px;}
.y3e{bottom:658.950000px;}
.y62{bottom:661.560000px;}
.ya1{bottom:672.360000px;}
.y83{bottom:672.990000px;}
.y3d{bottom:676.590000px;}
.y10{bottom:683.070000px;}
.yc8{bottom:684.060000px;}
.ya0{bottom:690.000000px;}
.y3c{bottom:694.140000px;}
.yc7{bottom:701.610000px;}
.y9f{bottom:707.550000px;}
.y81{bottom:717.900000px;}
.yf{bottom:718.890000px;}
.y3b{bottom:720.690000px;}
.y9e{bottom:725.100000px;}
.yc6{bottom:728.160000px;}
.y61{bottom:730.050000px;}
.yc5{bottom:745.800000px;}
.y9d{bottom:752.010000px;}
.ye{bottom:754.890000px;}
.y3a{bottom:756.600000px;}
.yc4{bottom:772.350000px;}
.y60{bottom:778.290000px;}
.y80{bottom:784.140000px;}
.yc3{bottom:789.990000px;}
.yd{bottom:794.400000px;}
.y5f{bottom:795.930000px;}
.y9c{bottom:800.340000px;}
.y39{bottom:804.930000px;}
.yc2{bottom:807.540000px;}
.yc{bottom:812.040000px;}
.y5e{bottom:813.480000px;}
.y9b{bottom:817.890000px;}
.y7f{bottom:819.780000px;}
.y38{bottom:822.480000px;}
.yb{bottom:829.590000px;}
.y5d{bottom:831.030000px;}
.yc1{bottom:834.450000px;}
.y9a{bottom:835.530000px;}
.y7e{bottom:837.330000px;}
.y37{bottom:840.030000px;}
.ya{bottom:843.450000px;}
.y5c{bottom:848.670000px;}
.y99{bottom:853.080000px;}
.y7d{bottom:854.880000px;}
.y36{bottom:857.670000px;}
.y9{bottom:864.780000px;}
.y35{bottom:875.220000px;}
.y7c{bottom:881.430000px;}
.y8{bottom:882.330000px;}
.yc0{bottom:882.690000px;}
.y98{bottom:888.630000px;}
.y7{bottom:899.970000px;}
.ybf{bottom:900.330000px;}
.y97{bottom:906.270000px;}
.y34{bottom:910.860000px;}
.y7b{bottom:914.100000px;}
.ybe{bottom:917.880000px;}
.y33{bottom:928.410000px;}
.y6{bottom:932.100000px;}
.y96{bottom:939.210000px;}
.ybd{bottom:944.790000px;}
.y32{bottom:945.960000px;}
.y7a{bottom:947.040000px;}
.y5{bottom:951.450000px;}
.y31{bottom:963.600000px;}
.y79{bottom:974.400000px;}
.y30{bottom:981.150000px;}
.ybc{bottom:981.780000px;}
.y95{bottom:984.120000px;}
.y4{bottom:989.700000px;}
.y5b{bottom:998.790000px;}
.ybb{bottom:1008.690000px;}
.y3{bottom:1014.390000px;}
.y2f{bottom:1016.820000px;}
.y78{bottom:1019.340000px;}
.y5a{bottom:1025.370000px;}
.y94{bottom:1029.060000px;}
.y2e{bottom:1034.370000px;}
.yba{bottom:1045.800000px;}
.y77{bottom:1046.700000px;}
.y2d{bottom:1051.920000px;}
.y59{bottom:1060.920000px;}
.yb9{bottom:1063.350000px;}
.y2c{bottom:1069.560000px;}
.y76{bottom:1073.970000px;}
.y58{bottom:1078.560000px;}
.y2b{bottom:1087.110000px;}
.yb8{bottom:1090.260000px;}
.y57{bottom:1096.110000px;}
.y56{bottom:1113.750000px;}
.y2a{bottom:1122.750000px;}
.yb7{bottom:1127.610000px;}
.y29{bottom:1140.300000px;}
.y27{bottom:1194.300000px;}
.hf{height:26.550000px;}
.he{height:26.580000px;}
.h10{height:26.640000px;}
.h2{height:32.918906px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.h11{height:41.661211px;}
.h13{height:44.100000px;}
.hd{height:44.190000px;}
.h12{height:44.220000px;}
.h7{height:50.902383px;}
.h8{height:52.311445px;}
.h9{height:55.779258px;}
.h5{height:57.323320px;}
.hc{height:59.973223px;}
.h14{height:61.793886px;}
.hb{height:62.585859px;}
.ha{height:68.582109px;}
.h4{height:72.985430px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w14{width:84.150000px;}
.w15{width:87.960000px;}
.w4{width:93.690000px;}
.w13{width:111.330000px;}
.w11{width:114.150000px;}
.w12{width:115.380000px;}
.w5{width:133.050000px;}
.w9{width:154.020000px;}
.we{width:158.430000px;}
.w8{width:163.260000px;}
.w3{width:170.040000px;}
.wf{width:186.660000px;}
.wb{width:201.990000px;}
.w7{width:211.530000px;}
.wc{width:220.410000px;}
.wa{width:224.640000px;}
.w16{width:239.130000px;}
.w6{width:262.170000px;}
.wd{width:331.860000px;}
.w10{width:409.080000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.740000px;}
.x1{left:68.040000px;}
.x16{left:111.239987px;}
.x9{left:161.909987px;}
.x11{left:183.630000px;}
.xf{left:228.000000px;}
.x2{left:231.149987px;}
.x5{left:239.610000px;}
.xd{left:271.470000px;}
.xa{left:281.100000px;}
.x12{left:299.730000px;}
.x6{left:334.020000px;}
.x13{left:411.780000px;}
.x10{left:415.380000px;}
.x7{left:428.430000px;}
.xb{left:445.080000px;}
.xe{left:492.600000px;}
.x14{left:496.650000px;}
.x8{left:562.290000px;}
.x15{left:585.330000px;}
.xc{left:599.820000px;}
.x3{left:808.619987px;}
@media print{
.v1{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lse{letter-spacing:-0.165867pt;}
.ls7{letter-spacing:-0.120000pt;}
.lsb{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.lsf{letter-spacing:-0.056533pt;}
.ls10{letter-spacing:-0.043520pt;}
.ls8{letter-spacing:-0.007467pt;}
.ls4{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.040320pt;}
.lsd{letter-spacing:0.043520pt;}
.ls2{letter-spacing:0.058240pt;}
.ls1{letter-spacing:0.080000pt;}
.ls12{letter-spacing:0.096533pt;}
.ls5{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.154133pt;}
.ls3{letter-spacing:0.160000pt;}
.ls0{letter-spacing:11.864320pt;}
.ls14{letter-spacing:42.423680pt;}
.ls13{letter-spacing:71.863680pt;}
.ls11{letter-spacing:180.243200pt;}
.ws6{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.ws4{word-spacing:-11.910933pt;}
.wsa{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.wsc{word-spacing:-11.713280pt;}
.wsb{word-spacing:-11.700267pt;}
.ws8{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-7.603200pt;}
.ws7{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
._25{margin-left:-10.225813pt;}
._14{margin-left:-3.367362pt;}
._6{margin-left:-2.205226pt;}
._0{margin-left:-0.986667pt;}
._2{width:1.009555pt;}
._1{width:2.087456pt;}
._3{width:3.284053pt;}
._4{width:4.435734pt;}
._5{width:5.425277pt;}
._f{width:6.438403pt;}
._e{width:7.748800pt;}
._9{width:8.817600pt;}
._10{width:9.726080pt;}
._11{width:10.741440pt;}
._a{width:12.742315pt;}
._8{width:13.657384pt;}
._7{width:14.589334pt;}
._d{width:15.570130pt;}
._c{width:16.459734pt;}
._b{width:17.464320pt;}
._1d{width:18.554240pt;}
._12{width:19.505600pt;}
._13{width:20.740587pt;}
._22{width:21.856960pt;}
._26{width:26.399360pt;}
._2a{width:27.823467pt;}
._1e{width:28.750720pt;}
._21{width:31.048640pt;}
._18{width:35.123627pt;}
._24{width:36.696750pt;}
._15{width:46.439360pt;}
._23{width:53.673600pt;}
._28{width:55.869547pt;}
._27{width:56.806720pt;}
._17{width:64.359360pt;}
._19{width:65.677760pt;}
._1f{width:75.190080pt;}
._1c{width:95.069760pt;}
._16{width:122.003520pt;}
._29{width:140.567040pt;}
._1a{width:157.320853pt;}
._2b{width:167.549333pt;}
._1b{width:172.878400pt;}
._20{width:311.929280pt;}
.fs0{font-size:34.560000pt;}
.fs5{font-size:37.440000pt;}
.fs2{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs3{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y6c{bottom:6.960000pt;}
.y6a{bottom:7.040000pt;}
.y82{bottom:22.560000pt;}
.y69{bottom:22.640000pt;}
.y2{bottom:65.226667pt;}
.y28{bottom:65.946667pt;}
.y1{bottom:89.066667pt;}
.y55{bottom:116.826667pt;}
.y26{bottom:126.586667pt;}
.y54{bottom:132.506667pt;}
.y25{bottom:142.186667pt;}
.y53{bottom:148.106667pt;}
.y24{bottom:157.786667pt;}
.yb6{bottom:170.186667pt;}
.y52{bottom:171.706667pt;}
.y93{bottom:174.826667pt;}
.y23{bottom:181.706667pt;}
.y75{bottom:185.786667pt;}
.y92{bottom:190.426667pt;}
.y51{bottom:200.746667pt;}
.yb5{bottom:201.466667pt;}
.yb4{bottom:217.066667pt;}
.y74{bottom:217.386667pt;}
.y91{bottom:222.106667pt;}
.y22{bottom:224.666667pt;}
.ydc{bottom:231.386667pt;}
.y50{bottom:232.346667pt;}
.yb3{bottom:232.746667pt;}
.y73{bottom:233.066667pt;}
.y90{bottom:237.706667pt;}
.y21{bottom:240.586667pt;}
.ydb{bottom:246.986667pt;}
.y4f{bottom:247.946667pt;}
.yb2{bottom:248.346667pt;}
.y72{bottom:248.666667pt;}
.y8f{bottom:253.306667pt;}
.yda{bottom:262.666667pt;}
.y4e{bottom:263.626667pt;}
.yb1{bottom:263.946667pt;}
.y71{bottom:272.266667pt;}
.y20{bottom:273.466667pt;}
.y8e{bottom:276.986667pt;}
.y4d{bottom:279.226667pt;}
.yd9{bottom:286.266667pt;}
.yb0{bottom:287.866667pt;}
.y1f{bottom:289.146667pt;}
.yd8{bottom:301.866667pt;}
.y4c{bottom:302.906667pt;}
.y70{bottom:303.306667pt;}
.y1e{bottom:304.746667pt;}
.y8d{bottom:306.266667pt;}
.y6f{bottom:314.106667pt;}
.yd7{bottom:317.546667pt;}
.y8c{bottom:330.586667pt;}
.yaf{bottom:330.826667pt;}
.y4b{bottom:334.506667pt;}
.y1d{bottom:336.346667pt;}
.yd6{bottom:341.146667pt;}
.yae{bottom:346.426667pt;}
.y4a{bottom:350.106667pt;}
.y1c{bottom:352.026667pt;}
.y6e{bottom:354.026667pt;}
.yd5{bottom:356.746667pt;}
.yad{bottom:362.106667pt;}
.y49{bottom:365.786667pt;}
.y1b{bottom:367.626667pt;}
.y8b{bottom:370.506667pt;}
.yac{bottom:377.706667pt;}
.y6d{bottom:378.346667pt;}
.yd4{bottom:380.426667pt;}
.y48{bottom:381.386667pt;}
.y1a{bottom:383.306667pt;}
.yab{bottom:393.306667pt;}
.yd3{bottom:396.026667pt;}
.y47{bottom:397.066667pt;}
.y19{bottom:398.906667pt;}
.y6b{bottom:402.666667pt;}
.yd2{bottom:419.733333pt;}
.y46{bottom:420.693333pt;}
.yaa{bottom:425.013333pt;}
.y68{bottom:426.933333pt;}
.y8a{bottom:429.413333pt;}
.y18{bottom:430.533333pt;}
.yd1{bottom:435.333333pt;}
.ya9{bottom:440.613333pt;}
.y17{bottom:446.213333pt;}
.yd0{bottom:450.933333pt;}
.y45{bottom:452.293333pt;}
.ya8{bottom:456.293333pt;}
.y89{bottom:461.093333pt;}
.y16{bottom:461.813333pt;}
.y44{bottom:467.973333pt;}
.ycf{bottom:474.613333pt;}
.y88{bottom:476.693333pt;}
.y15{bottom:477.413333pt;}
.y43{bottom:483.573333pt;}
.y67{bottom:485.893333pt;}
.ya7{bottom:487.893333pt;}
.yce{bottom:490.213333pt;}
.y87{bottom:492.373333pt;}
.y14{bottom:493.093333pt;}
.y42{bottom:499.253333pt;}
.ya6{bottom:503.493333pt;}
.y86{bottom:507.973333pt;}
.ycd{bottom:513.893333pt;}
.y41{bottom:514.853333pt;}
.y66{bottom:517.493333pt;}
.ya5{bottom:519.173333pt;}
.y13{bottom:524.693333pt;}
.ycc{bottom:529.493333pt;}
.y85{bottom:531.573333pt;}
.y65{bottom:533.173333pt;}
.ya4{bottom:534.773333pt;}
.y40{bottom:538.453333pt;}
.y12{bottom:540.373333pt;}
.y64{bottom:548.773333pt;}
.ya3{bottom:550.453333pt;}
.ycb{bottom:553.093333pt;}
.y84{bottom:558.213333pt;}
.y11{bottom:564.293333pt;}
.y63{bottom:564.453333pt;}
.yca{bottom:568.773333pt;}
.y3f{bottom:570.133333pt;}
.ya2{bottom:582.053333pt;}
.yc9{bottom:584.373333pt;}
.y3e{bottom:585.733333pt;}
.y62{bottom:588.053333pt;}
.ya1{bottom:597.653333pt;}
.y83{bottom:598.213333pt;}
.y3d{bottom:601.413333pt;}
.y10{bottom:607.173333pt;}
.yc8{bottom:608.053333pt;}
.ya0{bottom:613.333333pt;}
.y3c{bottom:617.013333pt;}
.yc7{bottom:623.653333pt;}
.y9f{bottom:628.933333pt;}
.y81{bottom:638.133333pt;}
.yf{bottom:639.013333pt;}
.y3b{bottom:640.613333pt;}
.y9e{bottom:644.533333pt;}
.yc6{bottom:647.253333pt;}
.y61{bottom:648.933333pt;}
.yc5{bottom:662.933333pt;}
.y9d{bottom:668.453333pt;}
.ye{bottom:671.013333pt;}
.y3a{bottom:672.533333pt;}
.yc4{bottom:686.533333pt;}
.y60{bottom:691.813333pt;}
.y80{bottom:697.013333pt;}
.yc3{bottom:702.213333pt;}
.yd{bottom:706.133333pt;}
.y5f{bottom:707.493333pt;}
.y9c{bottom:711.413333pt;}
.y39{bottom:715.493333pt;}
.yc2{bottom:717.813333pt;}
.yc{bottom:721.813333pt;}
.y5e{bottom:723.093333pt;}
.y9b{bottom:727.013333pt;}
.y7f{bottom:728.693333pt;}
.y38{bottom:731.093333pt;}
.yb{bottom:737.413333pt;}
.y5d{bottom:738.693333pt;}
.yc1{bottom:741.733333pt;}
.y9a{bottom:742.693333pt;}
.y7e{bottom:744.293333pt;}
.y37{bottom:746.693333pt;}
.ya{bottom:749.733333pt;}
.y5c{bottom:754.373333pt;}
.y99{bottom:758.293333pt;}
.y7d{bottom:759.893333pt;}
.y36{bottom:762.373333pt;}
.y9{bottom:768.693333pt;}
.y35{bottom:777.973333pt;}
.y7c{bottom:783.493333pt;}
.y8{bottom:784.293333pt;}
.yc0{bottom:784.613333pt;}
.y98{bottom:789.893333pt;}
.y7{bottom:799.973333pt;}
.ybf{bottom:800.293333pt;}
.y97{bottom:805.573333pt;}
.y34{bottom:809.653333pt;}
.y7b{bottom:812.533333pt;}
.ybe{bottom:815.893333pt;}
.y33{bottom:825.253333pt;}
.y6{bottom:828.533333pt;}
.y96{bottom:834.853333pt;}
.ybd{bottom:839.813333pt;}
.y32{bottom:840.853333pt;}
.y7a{bottom:841.813333pt;}
.y5{bottom:845.733333pt;}
.y31{bottom:856.533333pt;}
.y79{bottom:866.133333pt;}
.y30{bottom:872.133333pt;}
.ybc{bottom:872.693333pt;}
.y95{bottom:874.773333pt;}
.y4{bottom:879.733333pt;}
.y5b{bottom:887.813333pt;}
.ybb{bottom:896.613333pt;}
.y3{bottom:901.680000pt;}
.y2f{bottom:903.840000pt;}
.y78{bottom:906.080000pt;}
.y5a{bottom:911.440000pt;}
.y94{bottom:914.720000pt;}
.y2e{bottom:919.440000pt;}
.yba{bottom:929.600000pt;}
.y77{bottom:930.400000pt;}
.y2d{bottom:935.040000pt;}
.y59{bottom:943.040000pt;}
.yb9{bottom:945.200000pt;}
.y2c{bottom:950.720000pt;}
.y76{bottom:954.640000pt;}
.y58{bottom:958.720000pt;}
.y2b{bottom:966.320000pt;}
.yb8{bottom:969.120000pt;}
.y57{bottom:974.320000pt;}
.y56{bottom:990.000000pt;}
.y2a{bottom:998.000000pt;}
.yb7{bottom:1002.320000pt;}
.y29{bottom:1013.600000pt;}
.y27{bottom:1061.600000pt;}
.hf{height:23.600000pt;}
.he{height:23.626667pt;}
.h10{height:23.680000pt;}
.h2{height:29.261250pt;}
.h6{height:31.806562pt;}
.h3{height:34.804688pt;}
.h11{height:37.032187pt;}
.h13{height:39.200000pt;}
.hd{height:39.280000pt;}
.h12{height:39.306667pt;}
.h7{height:45.246562pt;}
.h8{height:46.499062pt;}
.h9{height:49.581562pt;}
.h5{height:50.954062pt;}
.hc{height:53.309531pt;}
.h14{height:54.927899pt;}
.hb{height:55.631875pt;}
.ha{height:60.961875pt;}
.h4{height:64.875937pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w14{width:74.800000pt;}
.w15{width:78.186667pt;}
.w4{width:83.280000pt;}
.w13{width:98.960000pt;}
.w11{width:101.466667pt;}
.w12{width:102.560000pt;}
.w5{width:118.266667pt;}
.w9{width:136.906667pt;}
.we{width:140.826667pt;}
.w8{width:145.120000pt;}
.w3{width:151.146667pt;}
.wf{width:165.920000pt;}
.wb{width:179.546667pt;}
.w7{width:188.026667pt;}
.wc{width:195.920000pt;}
.wa{width:199.680000pt;}
.w16{width:212.560000pt;}
.w6{width:233.040000pt;}
.wd{width:294.986667pt;}
.w10{width:363.626667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.880000pt;}
.x1{left:60.480000pt;}
.x16{left:98.879988pt;}
.x9{left:143.919988pt;}
.x11{left:163.226667pt;}
.xf{left:202.666667pt;}
.x2{left:205.466655pt;}
.x5{left:212.986667pt;}
.xd{left:241.306667pt;}
.xa{left:249.866667pt;}
.x12{left:266.426667pt;}
.x6{left:296.906667pt;}
.x13{left:366.026667pt;}
.x10{left:369.226667pt;}
.x7{left:380.826667pt;}
.xb{left:395.626667pt;}
.xe{left:437.866667pt;}
.x14{left:441.466667pt;}
.x8{left:499.813333pt;}
.x15{left:520.293333pt;}
.xc{left:533.173333pt;}
.x3{left:718.773322pt;}
}




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