
    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_8435736d5e49febb4d57ec73.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_da94159a45f2002afc892a83.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_214284e58ec408fcda17b79a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_9077ed77674289b71ebd2b00.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.962402;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_40493e55f019d162e18a826b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.941406;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_b4909c9efa73501e4168bb4a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_de67eda0ecb5e24c7ee9cc68.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_b2e5295f61686cd2b6b02e9f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.948242;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:-2.880000px;}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-5.484000px;}
.ls9{letter-spacing:-0.876000px;}
.ls12{letter-spacing:-0.306600px;}
.ls8{letter-spacing:-0.153600px;}
.ls6{letter-spacing:-0.144000px;}
.ls14{letter-spacing:-0.139800px;}
.ls1c{letter-spacing:-0.026640px;}
.ls11{letter-spacing:-0.013320px;}
.ls5{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.009360px;}
.ls7{letter-spacing:0.018000px;}
.lse{letter-spacing:0.026640px;}
.ls2{letter-spacing:0.053280px;}
.lsc{letter-spacing:0.078600px;}
.ls1b{letter-spacing:0.090600px;}
.ls1a{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.173280px;}
.ls16{letter-spacing:0.180000px;}
.ls4{letter-spacing:1.286640px;}
.ls15{letter-spacing:3.804000px;}
.ls18{letter-spacing:5.606640px;}
.ls19{letter-spacing:12.806640px;}
.ls13{letter-spacing:13.526640px;}
.ls10{letter-spacing:14.006640px;}
.lsb{letter-spacing:17.820000px;}
.ls1{letter-spacing:30.249360px;}
.lsf{letter-spacing:41.366640px;}
.ls17{letter-spacing:199.406640px;}
.ls3{letter-spacing:1075.166640px;}
.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;}
}
.wsf{word-spacing:-60.120000px;}
.wsd{word-spacing:-18.405240px;}
.ws7{word-spacing:-18.314640px;}
.wsc{word-spacing:-16.893360px;}
.ws8{word-spacing:-16.766640px;}
.ws9{word-spacing:-16.740000px;}
.ws3{word-spacing:-16.713360px;}
.wsa{word-spacing:-16.700040px;}
.wsb{word-spacing:-16.573560px;}
.wse{word-spacing:-16.559760px;}
.ws1{word-spacing:-15.030000px;}
.ws2{word-spacing:-15.012000px;}
.ws6{word-spacing:-14.967480px;}
.ws0{word-spacing:-14.868000px;}
.ws4{word-spacing:-13.310640px;}
.ws5{word-spacing:0.000000px;}
._1d{margin-left:-9.420960px;}
._5{margin-left:-6.935640px;}
._f{margin-left:-3.775560px;}
._9{margin-left:-2.410920px;}
._2{margin-left:-1.169280px;}
._4{width:1.815960px;}
._a{width:2.855520px;}
._11{width:3.916680px;}
._6{width:4.983000px;}
._d{width:6.312600px;}
._12{width:7.815600px;}
._14{width:9.378720px;}
._15{width:10.460880px;}
._17{width:11.663280px;}
._b{width:13.106160px;}
._c{width:14.188320px;}
._16{width:15.631200px;}
._10{width:17.915760px;}
._13{width:19.839600px;}
._19{width:21.342600px;}
._1a{width:22.714680px;}
._e{width:23.879640px;}
._1b{width:25.062720px;}
._1f{width:27.433200px;}
._18{width:41.160000px;}
._20{width:58.267560px;}
._0{width:80.418000px;}
._1e{width:199.406640px;}
._1{width:200.988000px;}
._1c{width:216.371880px;}
._3{width:350.695200px;}
._8{width:431.064000px;}
._7{width:740.784000px;}
.fc3{color:rgb(0,112,192);}
.fc1{color:rgb(0,0,0);}
.fc2{color:rgb(5,99,193);}
.fc0{color:rgb(47,84,150);}
.fs3{font-size:47.880000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:60.120000px;}
.fs6{font-size:65.880000px;}
.fs5{font-size:72.000000px;}
.fs1{font-size:83.880000px;}
.fs4{font-size:96.120000px;}
.y0{bottom:0.000000px;}
.y7c{bottom:11.970000px;}
.y75{bottom:12.060000px;}
.y5{bottom:23.940000px;}
.y4{bottom:37.710000px;}
.y89{bottom:37.800000px;}
.y7b{bottom:37.890000px;}
.ya5{bottom:37.920000px;}
.y27{bottom:43.740000px;}
.y79{bottom:48.690000px;}
.y7a{bottom:63.720000px;}
.y26{bottom:63.810000px;}
.y3{bottom:70.290000px;}
.y88{bottom:89.550000px;}
.y78{bottom:89.640000px;}
.y77{bottom:115.470000px;}
.y85{bottom:115.560000px;}
.y4b{bottom:121.950000px;}
.ya3{bottom:126.000000px;}
.yc2{bottom:126.450000px;}
.ye3{bottom:133.650000px;}
.y84{bottom:141.390000px;}
.y6a{bottom:146.250000px;}
.y4a{bottom:147.780000px;}
.ya2{bottom:151.830000px;}
.yc1{bottom:152.280000px;}
.ye2{bottom:159.510000px;}
.y83{bottom:167.250000px;}
.y69{bottom:172.110000px;}
.y49{bottom:173.730000px;}
.ya1{bottom:177.780000px;}
.yc0{bottom:178.230000px;}
.ye1{bottom:185.430000px;}
.y24{bottom:187.770000px;}
.y68{bottom:198.030000px;}
.y48{bottom:199.560000px;}
.ya0{bottom:203.520000px;}
.ybf{bottom:204.060000px;}
.y82{bottom:208.200000px;}
.ye0{bottom:211.260000px;}
.y23{bottom:213.600000px;}
.y67{bottom:223.860000px;}
.y47{bottom:225.480000px;}
.y9f{bottom:229.530000px;}
.ybe{bottom:229.890000px;}
.y81{bottom:234.030000px;}
.ydf{bottom:237.090000px;}
.y22{bottom:239.430000px;}
.y66{bottom:249.780000px;}
.y46{bottom:251.310000px;}
.y9e{bottom:255.360000px;}
.ybd{bottom:255.810000px;}
.y80{bottom:259.950000px;}
.yde{bottom:263.010000px;}
.y21{bottom:265.350000px;}
.y65{bottom:275.610000px;}
.y45{bottom:277.140000px;}
.y9d{bottom:281.280000px;}
.ybc{bottom:281.640000px;}
.y7f{bottom:285.780000px;}
.ydd{bottom:288.840000px;}
.y20{bottom:291.180000px;}
.y64{bottom:301.530000px;}
.y44{bottom:303.060000px;}
.y9c{bottom:307.110000px;}
.ybb{bottom:307.560000px;}
.ydc{bottom:314.760000px;}
.y1f{bottom:317.100000px;}
.y7e{bottom:326.640000px;}
.y63{bottom:327.360000px;}
.y43{bottom:328.890000px;}
.y9b{bottom:333.030000px;}
.yba{bottom:333.390000px;}
.ydb{bottom:340.590000px;}
.y7d{bottom:341.310000px;}
.y1e{bottom:342.930000px;}
.y62{bottom:353.280000px;}
.y42{bottom:354.810000px;}
.y9a{bottom:358.860000px;}
.yda{bottom:366.510000px;}
.y1d{bottom:368.850000px;}
.y97{bottom:373.530000px;}
.yb9{bottom:375.330000px;}
.y61{bottom:379.110000px;}
.y41{bottom:380.640000px;}
.yd9{bottom:392.340000px;}
.y76{bottom:393.060000px;}
.y1c{bottom:394.680000px;}
.y99{bottom:399.360000px;}
.y60{bottom:405.030000px;}
.y40{bottom:406.560000px;}
.yb8{bottom:417.720000px;}
.yd8{bottom:418.260000px;}
.y1b{bottom:420.600000px;}
.y98{bottom:425.280000px;}
.y5f{bottom:430.860000px;}
.y3f{bottom:432.390000px;}
.yb7{bottom:443.640000px;}
.yd7{bottom:444.090000px;}
.y1a{bottom:446.430000px;}
.y96{bottom:451.830000px;}
.y5e{bottom:456.780000px;}
.y3e{bottom:458.310000px;}
.yb6{bottom:469.470000px;}
.yd6{bottom:470.010000px;}
.y19{bottom:472.350000px;}
.y5d{bottom:482.610000px;}
.y3d{bottom:484.140000px;}
.yb5{bottom:495.390000px;}
.yd5{bottom:495.840000px;}
.y18{bottom:498.180000px;}
.y5c{bottom:508.530000px;}
.y3c{bottom:510.060000px;}
.y95{bottom:516.360000px;}
.yb4{bottom:521.220000px;}
.yd4{bottom:521.760000px;}
.y74{bottom:523.110000px;}
.y17{bottom:524.100000px;}
.y5b{bottom:534.360000px;}
.y3b{bottom:535.890000px;}
.y94{bottom:542.280000px;}
.y16{bottom:549.930000px;}
.y5a{bottom:560.280000px;}
.y3a{bottom:561.810000px;}
.yb3{bottom:562.080000px;}
.yd3{bottom:562.530000px;}
.y93{bottom:568.020000px;}
.y15{bottom:575.880000px;}
.y59{bottom:586.140000px;}
.y39{bottom:587.670000px;}
.yb2{bottom:588.030000px;}
.yd2{bottom:588.480000px;}
.y92{bottom:594.060000px;}
.y14{bottom:601.710000px;}
.y58{bottom:612.060000px;}
.y73{bottom:613.500000px;}
.y38{bottom:613.590000px;}
.yb1{bottom:613.860000px;}
.yd1{bottom:614.400000px;}
.y91{bottom:619.890000px;}
.y13{bottom:627.630000px;}
.y57{bottom:637.890000px;}
.y37{bottom:639.420000px;}
.yb0{bottom:639.780000px;}
.yd0{bottom:640.140000px;}
.y90{bottom:645.720000px;}
.y12{bottom:653.460000px;}
.y56{bottom:663.720000px;}
.y36{bottom:665.340000px;}
.yaf{bottom:665.610000px;}
.ycf{bottom:666.150000px;}
.y11{bottom:679.380000px;}
.y8f{bottom:686.670000px;}
.y72{bottom:691.080000px;}
.y35{bottom:691.170000px;}
.yce{bottom:691.980000px;}
.y10{bottom:705.210000px;}
.y55{bottom:707.550000px;}
.yae{bottom:709.440000px;}
.y8e{bottom:712.500000px;}
.y34{bottom:717.090000px;}
.ycd{bottom:717.900000px;}
.y71{bottom:735.990000px;}
.y8d{bottom:738.420000px;}
.y33{bottom:742.920000px;}
.ycc{bottom:743.730000px;}
.y54{bottom:751.470000px;}
.yad{bottom:753.360000px;}
.yf{bottom:755.430000px;}
.y8c{bottom:764.250000px;}
.y32{bottom:768.750000px;}
.ycb{bottom:769.650000px;}
.y53{bottom:777.390000px;}
.yac{bottom:779.280000px;}
.y70{bottom:781.530000px;}
.y31{bottom:794.670000px;}
.yca{bottom:795.480000px;}
.y52{bottom:803.220000px;}
.y8b{bottom:805.110000px;}
.y6f{bottom:807.360000px;}
.ye{bottom:807.900000px;}
.y8a{bottom:819.780000px;}
.y30{bottom:820.500000px;}
.yc9{bottom:821.400000px;}
.y51{bottom:829.140000px;}
.yab{bottom:831.030000px;}
.y6e{bottom:833.280000px;}
.yd{bottom:840.660000px;}
.y2f{bottom:846.420000px;}
.yc8{bottom:847.230000px;}
.y50{bottom:854.970000px;}
.yaa{bottom:856.860000px;}
.y6d{bottom:859.110000px;}
.yc{bottom:869.190000px;}
.y87{bottom:871.530000px;}
.y2e{bottom:872.250000px;}
.yc7{bottom:873.150000px;}
.ya9{bottom:882.780000px;}
.y6c{bottom:885.030000px;}
.y4f{bottom:895.740000px;}
.ya6{bottom:897.360000px;}
.yb{bottom:897.630000px;}
.y2d{bottom:898.170000px;}
.yc6{bottom:898.980000px;}
.y6b{bottom:910.860000px;}
.ya8{bottom:923.190000px;}
.yc5{bottom:924.900000px;}
.ya{bottom:936.150000px;}
.y4e{bottom:936.780000px;}
.y2c{bottom:942.990000px;}
.ya7{bottom:949.110000px;}
.y9{bottom:962.340000px;}
.y4d{bottom:962.610000px;}
.yc4{bottom:966.750000px;}
.ye5{bottom:970.530000px;}
.ya4{bottom:975.750000px;}
.y2b{bottom:988.530000px;}
.y8{bottom:994.140000px;}
.ye4{bottom:996.390000px;}
.y86{bottom:1001.610000px;}
.yc3{bottom:1011.600000px;}
.y2a{bottom:1014.390000px;}
.y7{bottom:1025.820000px;}
.y29{bottom:1040.310000px;}
.y6{bottom:1057.590000px;}
.y4c{bottom:1066.050000px;}
.y28{bottom:1066.140000px;}
.y2{bottom:1097.460000px;}
.y25{bottom:1099.170000px;}
.y1{bottom:1120.140000px;}
.hf{height:25.830000px;}
.ha{height:25.920000px;}
.h8{height:43.945137px;}
.h4{height:49.937344px;}
.hc{height:51.750000px;}
.h10{height:51.780000px;}
.h1{height:56.320312px;}
.h3{height:62.703281px;}
.h9{height:65.526152px;}
.h7{height:68.710781px;}
.h5{height:72.277734px;}
.h6{height:75.093750px;}
.he{height:77.580000px;}
.h2{height:87.484219px;}
.hb{height:129.330000px;}
.hd{height:129.360000px;}
.h0{height:1188.000000px;}
.w2{width:53.130000px;}
.w6{width:54.180000px;}
.w15{width:55.200000px;}
.w5{width:58.800000px;}
.w12{width:77.220000px;}
.wb{width:77.250000px;}
.w4{width:81.900000px;}
.wd{width:87.750000px;}
.wf{width:88.950000px;}
.w10{width:96.840000px;}
.w7{width:106.200000px;}
.w13{width:106.230000px;}
.wa{width:110.700000px;}
.wc{width:119.070000px;}
.we{width:121.530000px;}
.w8{width:136.830000px;}
.w11{width:152.040000px;}
.w14{width:174.000000px;}
.w9{width:185.790000px;}
.w3{width:209.250000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x12{left:4.500000px;}
.xb{left:8.100000px;}
.x2{left:106.829986px;}
.x1{left:107.999986px;}
.x9{left:134.999986px;}
.x6{left:144.719986px;}
.xa{left:162.029986px;}
.x1c{left:163.200000px;}
.x1d{left:166.529986px;}
.x17{left:196.950000px;}
.x3{left:237.989986px;}
.x18{left:260.040000px;}
.x11{left:293.790000px;}
.x4{left:313.589986px;}
.xc{left:371.280000px;}
.x13{left:404.490000px;}
.x7{left:442.469986px;}
.x19{left:447.960000px;}
.xd{left:453.180000px;}
.x5{left:461.459986px;}
.x14{left:481.740000px;}
.xe{left:511.980000px;}
.x1a{left:554.190000px;}
.xf{left:566.160000px;}
.x15{left:600.810000px;}
.x1b{left:636.090000px;}
.x10{left:672.360000px;}
.x16{left:688.560000px;}
.x8{left:784.949986px;}
@media print{
.v1{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-4.874667pt;}
.ls9{letter-spacing:-0.778667pt;}
.ls12{letter-spacing:-0.272533pt;}
.ls8{letter-spacing:-0.136533pt;}
.ls6{letter-spacing:-0.128000pt;}
.ls14{letter-spacing:-0.124267pt;}
.ls1c{letter-spacing:-0.023680pt;}
.ls11{letter-spacing:-0.011840pt;}
.ls5{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.008320pt;}
.ls7{letter-spacing:0.016000pt;}
.lse{letter-spacing:0.023680pt;}
.ls2{letter-spacing:0.047360pt;}
.lsc{letter-spacing:0.069867pt;}
.ls1b{letter-spacing:0.080533pt;}
.ls1a{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.154027pt;}
.ls16{letter-spacing:0.160000pt;}
.ls4{letter-spacing:1.143680pt;}
.ls15{letter-spacing:3.381333pt;}
.ls18{letter-spacing:4.983680pt;}
.ls19{letter-spacing:11.383680pt;}
.ls13{letter-spacing:12.023680pt;}
.ls10{letter-spacing:12.450347pt;}
.lsb{letter-spacing:15.840000pt;}
.ls1{letter-spacing:26.888320pt;}
.lsf{letter-spacing:36.770347pt;}
.ls17{letter-spacing:177.250347pt;}
.ls3{letter-spacing:955.703680pt;}
.wsf{word-spacing:-53.440000pt;}
.wsd{word-spacing:-16.360213pt;}
.ws7{word-spacing:-16.279680pt;}
.wsc{word-spacing:-15.016320pt;}
.ws8{word-spacing:-14.903680pt;}
.ws9{word-spacing:-14.880000pt;}
.ws3{word-spacing:-14.856320pt;}
.wsa{word-spacing:-14.844480pt;}
.wsb{word-spacing:-14.732053pt;}
.wse{word-spacing:-14.719787pt;}
.ws1{word-spacing:-13.360000pt;}
.ws2{word-spacing:-13.344000pt;}
.ws6{word-spacing:-13.304427pt;}
.ws0{word-spacing:-13.216000pt;}
.ws4{word-spacing:-11.831680pt;}
.ws5{word-spacing:0.000000pt;}
._1d{margin-left:-8.374187pt;}
._5{margin-left:-6.165013pt;}
._f{margin-left:-3.356053pt;}
._9{margin-left:-2.143040pt;}
._2{margin-left:-1.039360pt;}
._4{width:1.614187pt;}
._a{width:2.538240pt;}
._11{width:3.481493pt;}
._6{width:4.429333pt;}
._d{width:5.611200pt;}
._12{width:6.947200pt;}
._14{width:8.336640pt;}
._15{width:9.298560pt;}
._17{width:10.367360pt;}
._b{width:11.649920pt;}
._c{width:12.611840pt;}
._16{width:13.894400pt;}
._10{width:15.925120pt;}
._13{width:17.635200pt;}
._19{width:18.971200pt;}
._1a{width:20.190827pt;}
._e{width:21.226347pt;}
._1b{width:22.277973pt;}
._1f{width:24.385067pt;}
._18{width:36.586667pt;}
._20{width:51.793387pt;}
._0{width:71.482667pt;}
._1e{width:177.250347pt;}
._1{width:178.656000pt;}
._1c{width:192.330560pt;}
._3{width:311.729067pt;}
._8{width:383.168000pt;}
._7{width:658.474667pt;}
.fs3{font-size:42.560000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.440000pt;}
.fs6{font-size:58.560000pt;}
.fs5{font-size:64.000000pt;}
.fs1{font-size:74.560000pt;}
.fs4{font-size:85.440000pt;}
.y0{bottom:0.000000pt;}
.y7c{bottom:10.640000pt;}
.y75{bottom:10.720000pt;}
.y5{bottom:21.280000pt;}
.y4{bottom:33.520000pt;}
.y89{bottom:33.600000pt;}
.y7b{bottom:33.680000pt;}
.ya5{bottom:33.706667pt;}
.y27{bottom:38.880000pt;}
.y79{bottom:43.280000pt;}
.y7a{bottom:56.640000pt;}
.y26{bottom:56.720000pt;}
.y3{bottom:62.480000pt;}
.y88{bottom:79.600000pt;}
.y78{bottom:79.680000pt;}
.y77{bottom:102.640000pt;}
.y85{bottom:102.720000pt;}
.y4b{bottom:108.400000pt;}
.ya3{bottom:112.000000pt;}
.yc2{bottom:112.400000pt;}
.ye3{bottom:118.800000pt;}
.y84{bottom:125.680000pt;}
.y6a{bottom:130.000000pt;}
.y4a{bottom:131.360000pt;}
.ya2{bottom:134.960000pt;}
.yc1{bottom:135.360000pt;}
.ye2{bottom:141.786667pt;}
.y83{bottom:148.666667pt;}
.y69{bottom:152.986667pt;}
.y49{bottom:154.426667pt;}
.ya1{bottom:158.026667pt;}
.yc0{bottom:158.426667pt;}
.ye1{bottom:164.826667pt;}
.y24{bottom:166.906667pt;}
.y68{bottom:176.026667pt;}
.y48{bottom:177.386667pt;}
.ya0{bottom:180.906667pt;}
.ybf{bottom:181.386667pt;}
.y82{bottom:185.066667pt;}
.ye0{bottom:187.786667pt;}
.y23{bottom:189.866667pt;}
.y67{bottom:198.986667pt;}
.y47{bottom:200.426667pt;}
.y9f{bottom:204.026667pt;}
.ybe{bottom:204.346667pt;}
.y81{bottom:208.026667pt;}
.ydf{bottom:210.746667pt;}
.y22{bottom:212.826667pt;}
.y66{bottom:222.026667pt;}
.y46{bottom:223.386667pt;}
.y9e{bottom:226.986667pt;}
.ybd{bottom:227.386667pt;}
.y80{bottom:231.066667pt;}
.yde{bottom:233.786667pt;}
.y21{bottom:235.866667pt;}
.y65{bottom:244.986667pt;}
.y45{bottom:246.346667pt;}
.y9d{bottom:250.026667pt;}
.ybc{bottom:250.346667pt;}
.y7f{bottom:254.026667pt;}
.ydd{bottom:256.746667pt;}
.y20{bottom:258.826667pt;}
.y64{bottom:268.026667pt;}
.y44{bottom:269.386667pt;}
.y9c{bottom:272.986667pt;}
.ybb{bottom:273.386667pt;}
.ydc{bottom:279.786667pt;}
.y1f{bottom:281.866667pt;}
.y7e{bottom:290.346667pt;}
.y63{bottom:290.986667pt;}
.y43{bottom:292.346667pt;}
.y9b{bottom:296.026667pt;}
.yba{bottom:296.346667pt;}
.ydb{bottom:302.746667pt;}
.y7d{bottom:303.386667pt;}
.y1e{bottom:304.826667pt;}
.y62{bottom:314.026667pt;}
.y42{bottom:315.386667pt;}
.y9a{bottom:318.986667pt;}
.yda{bottom:325.786667pt;}
.y1d{bottom:327.866667pt;}
.y97{bottom:332.026667pt;}
.yb9{bottom:333.626667pt;}
.y61{bottom:336.986667pt;}
.y41{bottom:338.346667pt;}
.yd9{bottom:348.746667pt;}
.y76{bottom:349.386667pt;}
.y1c{bottom:350.826667pt;}
.y99{bottom:354.986667pt;}
.y60{bottom:360.026667pt;}
.y40{bottom:361.386667pt;}
.yb8{bottom:371.306667pt;}
.yd8{bottom:371.786667pt;}
.y1b{bottom:373.866667pt;}
.y98{bottom:378.026667pt;}
.y5f{bottom:382.986667pt;}
.y3f{bottom:384.346667pt;}
.yb7{bottom:394.346667pt;}
.yd7{bottom:394.746667pt;}
.y1a{bottom:396.826667pt;}
.y96{bottom:401.626667pt;}
.y5e{bottom:406.026667pt;}
.y3e{bottom:407.386667pt;}
.yb6{bottom:417.306667pt;}
.yd6{bottom:417.786667pt;}
.y19{bottom:419.866667pt;}
.y5d{bottom:428.986667pt;}
.y3d{bottom:430.346667pt;}
.yb5{bottom:440.346667pt;}
.yd5{bottom:440.746667pt;}
.y18{bottom:442.826667pt;}
.y5c{bottom:452.026667pt;}
.y3c{bottom:453.386667pt;}
.y95{bottom:458.986667pt;}
.yb4{bottom:463.306667pt;}
.yd4{bottom:463.786667pt;}
.y74{bottom:464.986667pt;}
.y17{bottom:465.866667pt;}
.y5b{bottom:474.986667pt;}
.y3b{bottom:476.346667pt;}
.y94{bottom:482.026667pt;}
.y16{bottom:488.826667pt;}
.y5a{bottom:498.026667pt;}
.y3a{bottom:499.386667pt;}
.yb3{bottom:499.626667pt;}
.yd3{bottom:500.026667pt;}
.y93{bottom:504.906667pt;}
.y15{bottom:511.893333pt;}
.y59{bottom:521.013333pt;}
.y39{bottom:522.373333pt;}
.yb2{bottom:522.693333pt;}
.yd2{bottom:523.093333pt;}
.y92{bottom:528.053333pt;}
.y14{bottom:534.853333pt;}
.y58{bottom:544.053333pt;}
.y73{bottom:545.333333pt;}
.y38{bottom:545.413333pt;}
.yb1{bottom:545.653333pt;}
.yd1{bottom:546.133333pt;}
.y91{bottom:551.013333pt;}
.y13{bottom:557.893333pt;}
.y57{bottom:567.013333pt;}
.y37{bottom:568.373333pt;}
.yb0{bottom:568.693333pt;}
.yd0{bottom:569.013333pt;}
.y90{bottom:573.973333pt;}
.y12{bottom:580.853333pt;}
.y56{bottom:589.973333pt;}
.y36{bottom:591.413333pt;}
.yaf{bottom:591.653333pt;}
.ycf{bottom:592.133333pt;}
.y11{bottom:603.893333pt;}
.y8f{bottom:610.373333pt;}
.y72{bottom:614.293333pt;}
.y35{bottom:614.373333pt;}
.yce{bottom:615.093333pt;}
.y10{bottom:626.853333pt;}
.y55{bottom:628.933333pt;}
.yae{bottom:630.613333pt;}
.y8e{bottom:633.333333pt;}
.y34{bottom:637.413333pt;}
.ycd{bottom:638.133333pt;}
.y71{bottom:654.213333pt;}
.y8d{bottom:656.373333pt;}
.y33{bottom:660.373333pt;}
.ycc{bottom:661.093333pt;}
.y54{bottom:667.973333pt;}
.yad{bottom:669.653333pt;}
.yf{bottom:671.493333pt;}
.y8c{bottom:679.333333pt;}
.y32{bottom:683.333333pt;}
.ycb{bottom:684.133333pt;}
.y53{bottom:691.013333pt;}
.yac{bottom:692.693333pt;}
.y70{bottom:694.693333pt;}
.y31{bottom:706.373333pt;}
.yca{bottom:707.093333pt;}
.y52{bottom:713.973333pt;}
.y8b{bottom:715.653333pt;}
.y6f{bottom:717.653333pt;}
.ye{bottom:718.133333pt;}
.y8a{bottom:728.693333pt;}
.y30{bottom:729.333333pt;}
.yc9{bottom:730.133333pt;}
.y51{bottom:737.013333pt;}
.yab{bottom:738.693333pt;}
.y6e{bottom:740.693333pt;}
.yd{bottom:747.253333pt;}
.y2f{bottom:752.373333pt;}
.yc8{bottom:753.093333pt;}
.y50{bottom:759.973333pt;}
.yaa{bottom:761.653333pt;}
.y6d{bottom:763.653333pt;}
.yc{bottom:772.613333pt;}
.y87{bottom:774.693333pt;}
.y2e{bottom:775.333333pt;}
.yc7{bottom:776.133333pt;}
.ya9{bottom:784.693333pt;}
.y6c{bottom:786.693333pt;}
.y4f{bottom:796.213333pt;}
.ya6{bottom:797.653333pt;}
.yb{bottom:797.893333pt;}
.y2d{bottom:798.373333pt;}
.yc6{bottom:799.093333pt;}
.y6b{bottom:809.653333pt;}
.ya8{bottom:820.613333pt;}
.yc5{bottom:822.133333pt;}
.ya{bottom:832.133333pt;}
.y4e{bottom:832.693333pt;}
.y2c{bottom:838.213333pt;}
.ya7{bottom:843.653333pt;}
.y9{bottom:855.413333pt;}
.y4d{bottom:855.653333pt;}
.yc4{bottom:859.333333pt;}
.ye5{bottom:862.693333pt;}
.ya4{bottom:867.333333pt;}
.y2b{bottom:878.693333pt;}
.y8{bottom:883.680000pt;}
.ye4{bottom:885.680000pt;}
.y86{bottom:890.320000pt;}
.yc3{bottom:899.200000pt;}
.y2a{bottom:901.680000pt;}
.y7{bottom:911.840000pt;}
.y29{bottom:924.720000pt;}
.y6{bottom:940.080000pt;}
.y4c{bottom:947.600000pt;}
.y28{bottom:947.680000pt;}
.y2{bottom:975.520000pt;}
.y25{bottom:977.040000pt;}
.y1{bottom:995.680000pt;}
.hf{height:22.960000pt;}
.ha{height:23.040000pt;}
.h8{height:39.062344pt;}
.h4{height:44.388750pt;}
.hc{height:46.000000pt;}
.h10{height:46.026667pt;}
.h1{height:50.062500pt;}
.h3{height:55.736250pt;}
.h9{height:58.245469pt;}
.h7{height:61.076250pt;}
.h5{height:64.246875pt;}
.h6{height:66.750000pt;}
.he{height:68.960000pt;}
.h2{height:77.763750pt;}
.hb{height:114.960000pt;}
.hd{height:114.986667pt;}
.h0{height:1056.000000pt;}
.w2{width:47.226667pt;}
.w6{width:48.160000pt;}
.w15{width:49.066667pt;}
.w5{width:52.266667pt;}
.w12{width:68.640000pt;}
.wb{width:68.666667pt;}
.w4{width:72.800000pt;}
.wd{width:78.000000pt;}
.wf{width:79.066667pt;}
.w10{width:86.080000pt;}
.w7{width:94.400000pt;}
.w13{width:94.426667pt;}
.wa{width:98.400000pt;}
.wc{width:105.840000pt;}
.we{width:108.026667pt;}
.w8{width:121.626667pt;}
.w11{width:135.146667pt;}
.w14{width:154.666667pt;}
.w9{width:165.146667pt;}
.w3{width:186.000000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x12{left:4.000000pt;}
.xb{left:7.200000pt;}
.x2{left:94.959988pt;}
.x1{left:95.999988pt;}
.x9{left:119.999988pt;}
.x6{left:128.639988pt;}
.xa{left:144.026655pt;}
.x1c{left:145.066667pt;}
.x1d{left:148.026655pt;}
.x17{left:175.066667pt;}
.x3{left:211.546655pt;}
.x18{left:231.146667pt;}
.x11{left:261.146667pt;}
.x4{left:278.746655pt;}
.xc{left:330.026667pt;}
.x13{left:359.546667pt;}
.x7{left:393.306655pt;}
.x19{left:398.186667pt;}
.xd{left:402.826667pt;}
.x5{left:410.186655pt;}
.x14{left:428.213333pt;}
.xe{left:455.093333pt;}
.x1a{left:492.613333pt;}
.xf{left:503.253333pt;}
.x15{left:534.053333pt;}
.x1b{left:565.413333pt;}
.x10{left:597.653333pt;}
.x16{left:612.053333pt;}
.x8{left:697.733321pt;}
}




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