
    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_2976097f04949fa1b235b054.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_550b94a3c3211391f2a9a211.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_43fb2acac47a70d64ccd3955.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.050293;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_f64c6eb1a8bcecd426c60752.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.120605;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_a8ec98d71948be7d97504ed0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.073242;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_bf298d2064bcfd0416db0117.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.073242;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_48084da3bcc86340906a0d19.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.050293;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls5{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.144000px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.174000px;}
.ls1{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.720000px;}
.lsa{letter-spacing:2.160000px;}
.lse{letter-spacing:4.320000px;}
.lsc{letter-spacing:6.480000px;}
.lsd{letter-spacing:11.520000px;}
.ls8{letter-spacing:13.680000px;}
.ls6{letter-spacing:23.040000px;}
.lsb{letter-spacing:25.200000px;}
.lsf{letter-spacing:27.360000px;}
.ls7{letter-spacing:36.720000px;}
.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:-18.000000px;}
.ws4{word-spacing:-17.856000px;}
.ws2{word-spacing:-17.712000px;}
.ws0{word-spacing:-13.505760px;}
.ws3{word-spacing:0.000000px;}
._7{margin-left:-5.280000px;}
._8{margin-left:-4.079040px;}
._1a{margin-left:-2.472960px;}
._2{margin-left:-1.283520px;}
._0{width:1.055520px;}
._12{width:2.101440px;}
._19{width:3.261120px;}
._d{width:5.112000px;}
._e{width:6.624000px;}
._13{width:8.016480px;}
._14{width:9.864000px;}
._15{width:11.088000px;}
._f{width:12.888000px;}
._10{width:14.328000px;}
._a{width:15.683520px;}
._9{width:16.704000px;}
._20{width:19.008000px;}
._6{width:20.016000px;}
._23{width:21.240000px;}
._4{width:22.392000px;}
._16{width:23.677440px;}
._29{width:25.344000px;}
._2a{width:26.843520px;}
._27{width:27.864000px;}
._17{width:29.280000px;}
._5{width:31.104000px;}
._1b{width:32.256000px;}
._25{width:33.552000px;}
._1e{width:35.208000px;}
._1f{width:36.576000px;}
._26{width:37.608480px;}
._2c{width:39.168000px;}
._2b{width:40.404480px;}
._c{width:41.819520px;}
._b{width:42.840000px;}
._18{width:45.144000px;}
._11{width:46.584000px;}
._2f{width:47.664000px;}
._24{width:50.976000px;}
._21{width:54.648000px;}
._22{width:55.872000px;}
._28{width:56.880000px;}
._2d{width:60.264000px;}
._2e{width:61.848000px;}
._1c{width:65.016000px;}
._1d{width:66.192480px;}
._1{width:82.776000px;}
._30{width:85.608000px;}
._31{width:86.976000px;}
._3{width:194.376000px;}
._32{width:1701.636000px;}
.fc4{color:transparent;}
.fc3{color:rgb(68,114,196);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,112,192);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yd{bottom:4.319850px;}
.y8{bottom:4.500000px;}
.y3{bottom:5.400000px;}
.y9{bottom:6.300000px;}
.yf{bottom:12.600000px;}
.y6{bottom:14.400000px;}
.y7{bottom:19.080000px;}
.yc{bottom:20.160000px;}
.y2{bottom:40.140000px;}
.y5{bottom:49.140000px;}
.y34{bottom:110.700000px;}
.y5d{bottom:115.560000px;}
.yc5{bottom:124.560000px;}
.y91{bottom:130.320000px;}
.y83{bottom:133.560000px;}
.y33{bottom:134.460000px;}
.y5c{bottom:139.320000px;}
.yc4{bottom:148.320000px;}
.y82{bottom:157.320000px;}
.y32{bottom:158.400000px;}
.y5b{bottom:163.260000px;}
.ya1{bottom:172.260000px;}
.ye4{bottom:180.540000px;}
.y81{bottom:181.260000px;}
.y31{bottom:182.160000px;}
.y5a{bottom:187.020000px;}
.ya0{bottom:196.020000px;}
.ye3{bottom:204.330000px;}
.y80{bottom:205.050000px;}
.y30{bottom:205.950000px;}
.y59{bottom:210.810000px;}
.y9f{bottom:219.810000px;}
.ye2{bottom:228.270000px;}
.y7f{bottom:228.810000px;}
.y2f{bottom:229.710000px;}
.y90{bottom:234.570000px;}
.y58{bottom:243.570000px;}
.y7e{bottom:252.570000px;}
.y2e{bottom:253.650000px;}
.y8f{bottom:258.330000px;}
.ye1{bottom:261.030000px;}
.y57{bottom:267.330000px;}
.y7d{bottom:276.330000px;}
.y8e{bottom:282.270000px;}
.ye0{bottom:284.790000px;}
.y2d{bottom:286.410000px;}
.y56{bottom:291.270000px;}
.yc3{bottom:300.270000px;}
.yc8{bottom:306.030000px;}
.ydf{bottom:308.550000px;}
.y7c{bottom:309.270000px;}
.y55{bottom:315.030000px;}
.y2c{bottom:319.170000px;}
.ya9{bottom:324.030000px;}
.y7b{bottom:333.030000px;}
.y54{bottom:338.790000px;}
.yde{bottom:341.490000px;}
.y9e{bottom:347.790000px;}
.y2b{bottom:351.930000px;}
.y7a{bottom:356.790000px;}
.y53{bottom:362.550000px;}
.ydd{bottom:365.250000px;}
.yc2{bottom:365.790000px;}
.y9d{bottom:371.550000px;}
.y2a{bottom:375.870000px;}
.y79{bottom:380.550000px;}
.y52{bottom:386.490000px;}
.ydc{bottom:389.010000px;}
.yc1{bottom:389.550000px;}
.y9c{bottom:395.490000px;}
.y78{bottom:404.490000px;}
.y29{bottom:408.630000px;}
.y51{bottom:410.250000px;}
.ydb{bottom:412.770000px;}
.yc0{bottom:413.490000px;}
.y9b{bottom:419.250000px;}
.y77{bottom:428.250000px;}
.y50{bottom:434.010000px;}
.ybf{bottom:437.295000px;}
.y28{bottom:441.435000px;}
.y9a{bottom:443.055000px;}
.yda{bottom:445.755000px;}
.y76{bottom:452.055000px;}
.ybe{bottom:461.055000px;}
.y27{bottom:465.195000px;}
.y4f{bottom:466.815000px;}
.yd9{bottom:469.515000px;}
.yc7{bottom:475.815000px;}
.y75{bottom:484.815000px;}
.y26{bottom:489.135000px;}
.y4e{bottom:490.755000px;}
.yd8{bottom:493.275000px;}
.ya8{bottom:499.755000px;}
.y74{bottom:508.755000px;}
.y25{bottom:512.895000px;}
.y4d{bottom:514.515000px;}
.y99{bottom:523.515000px;}
.yd7{bottom:526.035000px;}
.y73{bottom:532.515000px;}
.y24{bottom:536.655000px;}
.y4c{bottom:538.275000px;}
.ybd{bottom:541.515000px;}
.y98{bottom:547.275000px;}
.yd6{bottom:549.975000px;}
.y72{bottom:556.275000px;}
.y23{bottom:560.415000px;}
.y4b{bottom:562.035000px;}
.ybc{bottom:565.275000px;}
.y97{bottom:571.035000px;}
.y71{bottom:580.035000px;}
.yd5{bottom:582.735000px;}
.y22{bottom:584.355000px;}
.y4a{bottom:585.975000px;}
.ybb{bottom:589.035000px;}
.y8d{bottom:594.975000px;}
.y70{bottom:603.975000px;}
.y21{bottom:608.115000px;}
.y49{bottom:609.735000px;}
.yba{bottom:612.975000px;}
.yd4{bottom:615.495000px;}
.ye{bottom:617.475000px;}
.y8c{bottom:618.735000px;}
.y6f{bottom:627.735000px;}
.y20{bottom:631.875000px;}
.y48{bottom:633.495000px;}
.yb6{bottom:636.735000px;}
.yd3{bottom:639.255000px;}
.y8b{bottom:642.495000px;}
.y6e{bottom:651.495000px;}
.ye8{bottom:654.195000px;}
.y1f{bottom:655.635000px;}
.yb5{bottom:660.495000px;}
.yd2{bottom:663.195000px;}
.y47{bottom:666.255000px;}
.y6d{bottom:675.285000px;}
.y1e{bottom:679.425000px;}
.yb4{bottom:684.285000px;}
.ye7{bottom:686.985000px;}
.y46{bottom:690.225000px;}
.ycd{bottom:693.285000px;}
.yd1{bottom:695.985000px;}
.y6c{bottom:699.225000px;}
.yb3{bottom:708.225000px;}
.y1d{bottom:712.365000px;}
.y45{bottom:713.985000px;}
.yb9{bottom:717.225000px;}
.yd0{bottom:719.745000px;}
.y6b{bottom:722.985000px;}
.yae{bottom:731.985000px;}
.y44{bottom:737.745000px;}
.yb8{bottom:740.985000px;}
.ye6{bottom:743.505000px;}
.y1c{bottom:745.125000px;}
.y6a{bottom:746.745000px;}
.ycf{bottom:752.505000px;}
.yb2{bottom:755.745000px;}
.y43{bottom:761.505000px;}
.yad{bottom:764.745000px;}
.y96{bottom:770.505000px;}
.yce{bottom:776.265000px;}
.y1b{bottom:777.885000px;}
.y69{bottom:779.505000px;}
.y42{bottom:785.265000px;}
.yac{bottom:788.505000px;}
.y95{bottom:794.265000px;}
.ye5{bottom:800.205000px;}
.y68{bottom:803.265000px;}
.y41{bottom:809.205000px;}
.y1a{bottom:810.645000px;}
.yab{bottom:812.265000px;}
.y8a{bottom:818.205000px;}
.ycc{bottom:821.265000px;}
.y67{bottom:827.205000px;}
.y40{bottom:832.965000px;}
.yaa{bottom:836.205000px;}
.y19{bottom:841.425000px;}
.y89{bottom:841.965000px;}
.ycb{bottom:845.205000px;}
.y66{bottom:850.965000px;}
.y3f{bottom:856.725000px;}
.ya7{bottom:859.965000px;}
.y88{bottom:865.725000px;}
.y18{bottom:867.345000px;}
.yb7{bottom:868.965000px;}
.y65{bottom:874.725000px;}
.yb1{bottom:883.725000px;}
.y3e{bottom:889.485000px;}
.ya6{bottom:892.725000px;}
.y64{bottom:898.485000px;}
.y17{bottom:906.945000px;}
.yb0{bottom:907.485000px;}
.y87{bottom:913.470000px;}
.ya5{bottom:916.530000px;}
.y3d{bottom:922.470000px;}
.yc6{bottom:931.470000px;}
.y16{bottom:932.910000px;}
.y86{bottom:937.230000px;}
.ya4{bottom:940.470000px;}
.y63{bottom:946.230000px;}
.y3c{bottom:955.230000px;}
.ya3{bottom:964.230000px;}
.y15{bottom:965.850000px;}
.y62{bottom:969.990000px;}
.y3b{bottom:978.990000px;}
.ya2{bottom:987.990000px;}
.y61{bottom:993.750000px;}
.yca{bottom:996.990000px;}
.y14{bottom:998.610000px;}
.y85{bottom:1002.750000px;}
.y3a{bottom:1011.750000px;}
.y60{bottom:1017.690000px;}
.yc9{bottom:1020.750000px;}
.y13{bottom:1031.370000px;}
.y84{bottom:1035.690000px;}
.y94{bottom:1041.450000px;}
.y39{bottom:1044.690000px;}
.y5f{bottom:1050.450000px;}
.yaf{bottom:1059.450000px;}
.y38{bottom:1068.450000px;}
.y12{bottom:1071.510000px;}
.y93{bottom:1074.210000px;}
.y5e{bottom:1083.210000px;}
.y37{bottom:1092.210000px;}
.y11{bottom:1101.210000px;}
.y92{bottom:1106.970000px;}
.y36{bottom:1115.970000px;}
.y10{bottom:1130.910000px;}
.y35{bottom:1139.910000px;}
.y4{bottom:1191.780000px;}
.y1{bottom:1200.780000px;}
.yb{bottom:1246.320000px;}
.ya{bottom:1261.980000px;}
.h6{height:19.620000px;}
.h8{height:21.420000px;}
.hb{height:28.260000px;}
.hf{height:40.254961px;}
.h9{height:49.868086px;}
.h2{height:54.900000px;}
.hd{height:60.082031px;}
.h7{height:61.189805px;}
.hc{height:61.734375px;}
.h4{height:63.900000px;}
.he{height:65.122031px;}
.ha{height:65.884219px;}
.h5{height:67.824844px;}
.h3{height:73.722656px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:75.240000px;}
.w8{width:84.990000px;}
.w5{width:188.130000px;}
.w4{width:192.090000px;}
.w6{width:200.595000px;}
.w2{width:359.175000px;}
.w7{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:1.440000px;}
.xd{left:10.800000px;}
.x5{left:21.780000px;}
.xa{left:31.185000px;}
.x7{left:47.340000px;}
.x3{left:51.120000px;}
.xb{left:106.235987px;}
.x12{left:124.415987px;}
.x10{left:131.075987px;}
.x2{left:161.145000px;}
.xe{left:171.389987px;}
.x1{left:212.430000px;}
.xf{left:290.234987px;}
.x13{left:309.134987px;}
.x11{left:340.274987px;}
.x8{left:420.375000px;}
.x9{left:656.205000px;}
.x4{left:761.010000px;}
.xc{left:807.990000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.128000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.154667pt;}
.ls1{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.640000pt;}
.lsa{letter-spacing:1.920000pt;}
.lse{letter-spacing:3.840000pt;}
.lsc{letter-spacing:5.760000pt;}
.lsd{letter-spacing:10.240000pt;}
.ls8{letter-spacing:12.160000pt;}
.ls6{letter-spacing:20.480000pt;}
.lsb{letter-spacing:22.400000pt;}
.lsf{letter-spacing:24.320000pt;}
.ls7{letter-spacing:32.640000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.872000pt;}
.ws2{word-spacing:-15.744000pt;}
.ws0{word-spacing:-12.005120pt;}
.ws3{word-spacing:0.000000pt;}
._7{margin-left:-4.693333pt;}
._8{margin-left:-3.625813pt;}
._1a{margin-left:-2.198187pt;}
._2{margin-left:-1.140907pt;}
._0{width:0.938240pt;}
._12{width:1.867947pt;}
._19{width:2.898773pt;}
._d{width:4.544000pt;}
._e{width:5.888000pt;}
._13{width:7.125760pt;}
._14{width:8.768000pt;}
._15{width:9.856000pt;}
._f{width:11.456000pt;}
._10{width:12.736000pt;}
._a{width:13.940907pt;}
._9{width:14.848000pt;}
._20{width:16.896000pt;}
._6{width:17.792000pt;}
._23{width:18.880000pt;}
._4{width:19.904000pt;}
._16{width:21.046613pt;}
._29{width:22.528000pt;}
._2a{width:23.860907pt;}
._27{width:24.768000pt;}
._17{width:26.026667pt;}
._5{width:27.648000pt;}
._1b{width:28.672000pt;}
._25{width:29.824000pt;}
._1e{width:31.296000pt;}
._1f{width:32.512000pt;}
._26{width:33.429760pt;}
._2c{width:34.816000pt;}
._2b{width:35.915093pt;}
._c{width:37.172907pt;}
._b{width:38.080000pt;}
._18{width:40.128000pt;}
._11{width:41.408000pt;}
._2f{width:42.368000pt;}
._24{width:45.312000pt;}
._21{width:48.576000pt;}
._22{width:49.664000pt;}
._28{width:50.560000pt;}
._2d{width:53.568000pt;}
._2e{width:54.976000pt;}
._1c{width:57.792000pt;}
._1d{width:58.837760pt;}
._1{width:73.578667pt;}
._30{width:76.096000pt;}
._31{width:77.312000pt;}
._3{width:172.778667pt;}
._32{width:1512.565333pt;}
.fs3{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:3.839867pt;}
.y8{bottom:4.000000pt;}
.y3{bottom:4.800000pt;}
.y9{bottom:5.600000pt;}
.yf{bottom:11.200000pt;}
.y6{bottom:12.800000pt;}
.y7{bottom:16.960000pt;}
.yc{bottom:17.920000pt;}
.y2{bottom:35.680000pt;}
.y5{bottom:43.680000pt;}
.y34{bottom:98.400000pt;}
.y5d{bottom:102.720000pt;}
.yc5{bottom:110.720000pt;}
.y91{bottom:115.840000pt;}
.y83{bottom:118.720000pt;}
.y33{bottom:119.520000pt;}
.y5c{bottom:123.840000pt;}
.yc4{bottom:131.840000pt;}
.y82{bottom:139.840000pt;}
.y32{bottom:140.800000pt;}
.y5b{bottom:145.120000pt;}
.ya1{bottom:153.120000pt;}
.ye4{bottom:160.480000pt;}
.y81{bottom:161.120000pt;}
.y31{bottom:161.920000pt;}
.y5a{bottom:166.240000pt;}
.ya0{bottom:174.240000pt;}
.ye3{bottom:181.626667pt;}
.y80{bottom:182.266667pt;}
.y30{bottom:183.066667pt;}
.y59{bottom:187.386667pt;}
.y9f{bottom:195.386667pt;}
.ye2{bottom:202.906667pt;}
.y7f{bottom:203.386667pt;}
.y2f{bottom:204.186667pt;}
.y90{bottom:208.506667pt;}
.y58{bottom:216.506667pt;}
.y7e{bottom:224.506667pt;}
.y2e{bottom:225.466667pt;}
.y8f{bottom:229.626667pt;}
.ye1{bottom:232.026667pt;}
.y57{bottom:237.626667pt;}
.y7d{bottom:245.626667pt;}
.y8e{bottom:250.906667pt;}
.ye0{bottom:253.146667pt;}
.y2d{bottom:254.586667pt;}
.y56{bottom:258.906667pt;}
.yc3{bottom:266.906667pt;}
.yc8{bottom:272.026667pt;}
.ydf{bottom:274.266667pt;}
.y7c{bottom:274.906667pt;}
.y55{bottom:280.026667pt;}
.y2c{bottom:283.706667pt;}
.ya9{bottom:288.026667pt;}
.y7b{bottom:296.026667pt;}
.y54{bottom:301.146667pt;}
.yde{bottom:303.546667pt;}
.y9e{bottom:309.146667pt;}
.y2b{bottom:312.826667pt;}
.y7a{bottom:317.146667pt;}
.y53{bottom:322.266667pt;}
.ydd{bottom:324.666667pt;}
.yc2{bottom:325.146667pt;}
.y9d{bottom:330.266667pt;}
.y2a{bottom:334.106667pt;}
.y79{bottom:338.266667pt;}
.y52{bottom:343.546667pt;}
.ydc{bottom:345.786667pt;}
.yc1{bottom:346.266667pt;}
.y9c{bottom:351.546667pt;}
.y78{bottom:359.546667pt;}
.y29{bottom:363.226667pt;}
.y51{bottom:364.666667pt;}
.ydb{bottom:366.906667pt;}
.yc0{bottom:367.546667pt;}
.y9b{bottom:372.666667pt;}
.y77{bottom:380.666667pt;}
.y50{bottom:385.786667pt;}
.ybf{bottom:388.706667pt;}
.y28{bottom:392.386667pt;}
.y9a{bottom:393.826667pt;}
.yda{bottom:396.226667pt;}
.y76{bottom:401.826667pt;}
.ybe{bottom:409.826667pt;}
.y27{bottom:413.506667pt;}
.y4f{bottom:414.946667pt;}
.yd9{bottom:417.346667pt;}
.yc7{bottom:422.946667pt;}
.y75{bottom:430.946667pt;}
.y26{bottom:434.786667pt;}
.y4e{bottom:436.226667pt;}
.yd8{bottom:438.466667pt;}
.ya8{bottom:444.226667pt;}
.y74{bottom:452.226667pt;}
.y25{bottom:455.906667pt;}
.y4d{bottom:457.346667pt;}
.y99{bottom:465.346667pt;}
.yd7{bottom:467.586667pt;}
.y73{bottom:473.346667pt;}
.y24{bottom:477.026667pt;}
.y4c{bottom:478.466667pt;}
.ybd{bottom:481.346667pt;}
.y98{bottom:486.466667pt;}
.yd6{bottom:488.866667pt;}
.y72{bottom:494.466667pt;}
.y23{bottom:498.146667pt;}
.y4b{bottom:499.586667pt;}
.ybc{bottom:502.466667pt;}
.y97{bottom:507.586667pt;}
.y71{bottom:515.586667pt;}
.yd5{bottom:517.986667pt;}
.y22{bottom:519.426667pt;}
.y4a{bottom:520.866667pt;}
.ybb{bottom:523.586667pt;}
.y8d{bottom:528.866667pt;}
.y70{bottom:536.866667pt;}
.y21{bottom:540.546667pt;}
.y49{bottom:541.986667pt;}
.yba{bottom:544.866667pt;}
.yd4{bottom:547.106667pt;}
.ye{bottom:548.866667pt;}
.y8c{bottom:549.986667pt;}
.y6f{bottom:557.986667pt;}
.y20{bottom:561.666667pt;}
.y48{bottom:563.106667pt;}
.yb6{bottom:565.986667pt;}
.yd3{bottom:568.226667pt;}
.y8b{bottom:571.106667pt;}
.y6e{bottom:579.106667pt;}
.ye8{bottom:581.506667pt;}
.y1f{bottom:582.786667pt;}
.yb5{bottom:587.106667pt;}
.yd2{bottom:589.506667pt;}
.y47{bottom:592.226667pt;}
.y6d{bottom:600.253333pt;}
.y1e{bottom:603.933333pt;}
.yb4{bottom:608.253333pt;}
.ye7{bottom:610.653333pt;}
.y46{bottom:613.533333pt;}
.ycd{bottom:616.253333pt;}
.yd1{bottom:618.653333pt;}
.y6c{bottom:621.533333pt;}
.yb3{bottom:629.533333pt;}
.y1d{bottom:633.213333pt;}
.y45{bottom:634.653333pt;}
.yb9{bottom:637.533333pt;}
.yd0{bottom:639.773333pt;}
.y6b{bottom:642.653333pt;}
.yae{bottom:650.653333pt;}
.y44{bottom:655.773333pt;}
.yb8{bottom:658.653333pt;}
.ye6{bottom:660.893333pt;}
.y1c{bottom:662.333333pt;}
.y6a{bottom:663.773333pt;}
.ycf{bottom:668.893333pt;}
.yb2{bottom:671.773333pt;}
.y43{bottom:676.893333pt;}
.yad{bottom:679.773333pt;}
.y96{bottom:684.893333pt;}
.yce{bottom:690.013333pt;}
.y1b{bottom:691.453333pt;}
.y69{bottom:692.893333pt;}
.y42{bottom:698.013333pt;}
.yac{bottom:700.893333pt;}
.y95{bottom:706.013333pt;}
.ye5{bottom:711.293333pt;}
.y68{bottom:714.013333pt;}
.y41{bottom:719.293333pt;}
.y1a{bottom:720.573333pt;}
.yab{bottom:722.013333pt;}
.y8a{bottom:727.293333pt;}
.ycc{bottom:730.013333pt;}
.y67{bottom:735.293333pt;}
.y40{bottom:740.413333pt;}
.yaa{bottom:743.293333pt;}
.y19{bottom:747.933333pt;}
.y89{bottom:748.413333pt;}
.ycb{bottom:751.293333pt;}
.y66{bottom:756.413333pt;}
.y3f{bottom:761.533333pt;}
.ya7{bottom:764.413333pt;}
.y88{bottom:769.533333pt;}
.y18{bottom:770.973333pt;}
.yb7{bottom:772.413333pt;}
.y65{bottom:777.533333pt;}
.yb1{bottom:785.533333pt;}
.y3e{bottom:790.653333pt;}
.ya6{bottom:793.533333pt;}
.y64{bottom:798.653333pt;}
.y17{bottom:806.173333pt;}
.yb0{bottom:806.653333pt;}
.y87{bottom:811.973333pt;}
.ya5{bottom:814.693333pt;}
.y3d{bottom:819.973333pt;}
.yc6{bottom:827.973333pt;}
.y16{bottom:829.253333pt;}
.y86{bottom:833.093333pt;}
.ya4{bottom:835.973333pt;}
.y63{bottom:841.093333pt;}
.y3c{bottom:849.093333pt;}
.ya3{bottom:857.093333pt;}
.y15{bottom:858.533333pt;}
.y62{bottom:862.213333pt;}
.y3b{bottom:870.213333pt;}
.ya2{bottom:878.213333pt;}
.y61{bottom:883.333333pt;}
.yca{bottom:886.213333pt;}
.y14{bottom:887.653333pt;}
.y85{bottom:891.333333pt;}
.y3a{bottom:899.333333pt;}
.y60{bottom:904.613333pt;}
.yc9{bottom:907.333333pt;}
.y13{bottom:916.773333pt;}
.y84{bottom:920.613333pt;}
.y94{bottom:925.733333pt;}
.y39{bottom:928.613333pt;}
.y5f{bottom:933.733333pt;}
.yaf{bottom:941.733333pt;}
.y38{bottom:949.733333pt;}
.y12{bottom:952.453333pt;}
.y93{bottom:954.853333pt;}
.y5e{bottom:962.853333pt;}
.y37{bottom:970.853333pt;}
.y11{bottom:978.853333pt;}
.y92{bottom:983.973333pt;}
.y36{bottom:991.973333pt;}
.y10{bottom:1005.253333pt;}
.y35{bottom:1013.253333pt;}
.y4{bottom:1059.360000pt;}
.y1{bottom:1067.360000pt;}
.yb{bottom:1107.840000pt;}
.ya{bottom:1121.760000pt;}
.h6{height:17.440000pt;}
.h8{height:19.040000pt;}
.hb{height:25.120000pt;}
.hf{height:35.782187pt;}
.h9{height:44.327188pt;}
.h2{height:48.800000pt;}
.hd{height:53.406250pt;}
.h7{height:54.390938pt;}
.hc{height:54.875000pt;}
.h4{height:56.800000pt;}
.he{height:57.886250pt;}
.ha{height:58.563750pt;}
.h5{height:60.288750pt;}
.h3{height:65.531250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.880000pt;}
.w8{width:75.546667pt;}
.w5{width:167.226667pt;}
.w4{width:170.746667pt;}
.w6{width:178.306667pt;}
.w2{width:319.266667pt;}
.w7{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:1.280000pt;}
.xd{left:9.600000pt;}
.x5{left:19.360000pt;}
.xa{left:27.720000pt;}
.x7{left:42.080000pt;}
.x3{left:45.440000pt;}
.xb{left:94.431988pt;}
.x12{left:110.591988pt;}
.x10{left:116.511988pt;}
.x2{left:143.240000pt;}
.xe{left:152.346655pt;}
.x1{left:188.826667pt;}
.xf{left:257.986655pt;}
.x13{left:274.786655pt;}
.x11{left:302.466655pt;}
.x8{left:373.666667pt;}
.x9{left:583.293333pt;}
.x4{left:676.453333pt;}
.xc{left:718.213333pt;}
}




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