
    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_32f42f1145615faf05e738d3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_d06e1866db0f13ebfd470556.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_89d08f893366b4b59f2f8dc8.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_f740a43f5af998245bdc38ab.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_1085f0ada07f9dd5dd32ac35.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.172852;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_da4345c708a608c1e55c8453.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.981934;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_73a17e9965c4ad47f5e57d33.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_db58556e040ae5e68721f2fc.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.401855;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:ff9;src:url('chunks/assets/font_2710b34715f0f043077b6c32.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.983398;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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls21{letter-spacing:-0.960000px;}
.lsf{letter-spacing:-0.579600px;}
.ls22{letter-spacing:-0.540000px;}
.ls17{letter-spacing:-0.533400px;}
.lsd{letter-spacing:-0.326400px;}
.ls10{letter-spacing:-0.214800px;}
.ls16{letter-spacing:-0.208800px;}
.lsc{letter-spacing:-0.115800px;}
.ls9{letter-spacing:-0.064800px;}
.ls8{letter-spacing:-0.058320px;}
.ls12{letter-spacing:-0.055440px;}
.ls1b{letter-spacing:-0.038160px;}
.ls7{letter-spacing:0.000000px;}
.ls23{letter-spacing:0.060600px;}
.ls18{letter-spacing:0.140400px;}
.ls4{letter-spacing:0.149760px;}
.ls6{letter-spacing:0.174000px;}
.ls3{letter-spacing:0.174240px;}
.ls1f{letter-spacing:0.179280px;}
.lsb{letter-spacing:0.180000px;}
.lse{letter-spacing:0.186600px;}
.ls11{letter-spacing:0.314400px;}
.ls14{letter-spacing:0.416880px;}
.ls24{letter-spacing:0.455520px;}
.ls1a{letter-spacing:0.479400px;}
.ls1d{letter-spacing:0.479520px;}
.ls20{letter-spacing:0.659520px;}
.lsa{letter-spacing:0.660000px;}
.ls5{letter-spacing:0.894240px;}
.ls2{letter-spacing:1.258560px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:2.016000px;}
.ls1e{letter-spacing:12.186720px;}
.ls1c{letter-spacing:42.426720px;}
.ls19{letter-spacing:85.770720px;}
.ls13{letter-spacing:103.770720px;}
.ls15{letter-spacing:105.210720px;}
.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;}
}
.ws0{word-spacing:-41.040000px;}
.ws5{word-spacing:-14.970240px;}
.ws4{word-spacing:-14.165760px;}
.wsc{word-spacing:-13.820160px;}
.wsa{word-spacing:-13.692360px;}
.ws10{word-spacing:-13.685040px;}
.ws3{word-spacing:-13.505760px;}
.wsf{word-spacing:-13.467600px;}
.wsd{word-spacing:-13.450320px;}
.ws1{word-spacing:-13.447440px;}
.ws2{word-spacing:-13.440960px;}
.ws8{word-spacing:-13.389960px;}
.wse{word-spacing:-13.296960px;}
.wsb{word-spacing:-13.290960px;}
.ws6{word-spacing:-9.437760px;}
.ws7{word-spacing:-8.786880px;}
.ws9{word-spacing:0.000000px;}
._4{margin-left:-1318.367760px;}
._1{margin-left:-1207.355760px;}
._2{margin-left:-916.069920px;}
._5{margin-left:-528.635520px;}
._7{margin-left:-4.735440px;}
._6{margin-left:-3.734640px;}
._e{margin-left:-2.091600px;}
._3{margin-left:-1.089360px;}
._0{width:1.394400px;}
._a{width:2.581920px;}
._b{width:3.645360px;}
._9{width:5.075280px;}
._8{width:6.415920px;}
._c{width:7.546320px;}
._f{width:9.143280px;}
._10{width:10.258800px;}
._11{width:12.005760px;}
._d{width:14.760720px;}
._14{width:16.135200px;}
._18{width:17.189280px;}
._13{width:27.144720px;}
._12{width:28.206720px;}
._19{width:34.122960px;}
._1a{width:35.123760px;}
._15{width:43.032000px;}
._17{width:59.153760px;}
._16{width:60.238080px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(33,33,33);}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ya3{bottom:7.380000px;}
.ya1{bottom:7.560000px;}
.yb6{bottom:7.740000px;}
.y6{bottom:61.236000px;}
.yd1{bottom:87.876000px;}
.y64{bottom:89.136000px;}
.y8e{bottom:98.136000px;}
.yd0{bottom:107.136000px;}
.y63{bottom:110.196000px;}
.yb1{bottom:114.336000px;}
.y8d{bottom:119.196000px;}
.y30{bottom:120.096000px;}
.y75{bottom:123.876000px;}
.ycf{bottom:128.196000px;}
.y62{bottom:131.256000px;}
.yb0{bottom:135.396000px;}
.y8c{bottom:140.256000px;}
.y2f{bottom:141.156000px;}
.y74{bottom:144.936000px;}
.yce{bottom:149.256000px;}
.y61{bottom:152.310000px;}
.yaf{bottom:156.450000px;}
.y8b{bottom:161.310000px;}
.y2e{bottom:162.210000px;}
.y73{bottom:165.990000px;}
.ycd{bottom:170.310000px;}
.y60{bottom:173.370000px;}
.yae{bottom:177.510000px;}
.y8a{bottom:182.370000px;}
.y2d{bottom:183.270000px;}
.y72{bottom:187.050000px;}
.ycc{bottom:191.370000px;}
.y5f{bottom:194.430000px;}
.yad{bottom:198.570000px;}
.y89{bottom:203.430000px;}
.y2c{bottom:204.330000px;}
.y71{bottom:208.110000px;}
.ycb{bottom:212.430000px;}
.y5e{bottom:215.490000px;}
.yac{bottom:219.630000px;}
.y88{bottom:224.490000px;}
.y2b{bottom:225.390000px;}
.y70{bottom:229.170000px;}
.yca{bottom:233.490000px;}
.y5d{bottom:236.550000px;}
.yab{bottom:240.690000px;}
.y87{bottom:245.550000px;}
.y2a{bottom:246.450000px;}
.y6f{bottom:250.230000px;}
.yc9{bottom:254.550000px;}
.y5c{bottom:257.610000px;}
.yaa{bottom:261.750000px;}
.y29{bottom:267.510000px;}
.y6e{bottom:271.290000px;}
.y86{bottom:275.610000px;}
.y5b{bottom:278.670000px;}
.ya9{bottom:282.855000px;}
.y28{bottom:288.615000px;}
.y6d{bottom:292.395000px;}
.y85{bottom:296.715000px;}
.y5a{bottom:299.775000px;}
.ya8{bottom:303.915000px;}
.y27{bottom:309.675000px;}
.y6c{bottom:313.455000px;}
.y84{bottom:317.775000px;}
.y59{bottom:320.835000px;}
.ya7{bottom:324.975000px;}
.y26{bottom:330.735000px;}
.y6b{bottom:334.515000px;}
.y83{bottom:338.835000px;}
.y58{bottom:341.895000px;}
.ya6{bottom:346.035000px;}
.y25{bottom:351.795000px;}
.y6a{bottom:355.575000px;}
.y82{bottom:359.895000px;}
.y57{bottom:362.955000px;}
.ya5{bottom:367.095000px;}
.y24{bottom:372.855000px;}
.y69{bottom:376.635000px;}
.y81{bottom:380.955000px;}
.ya4{bottom:382.215000px;}
.y56{bottom:393.015000px;}
.y23{bottom:393.915000px;}
.y68{bottom:397.695000px;}
.y80{bottom:402.015000px;}
.ya2{bottom:408.315000px;}
.y55{bottom:414.075000px;}
.y22{bottom:414.975000px;}
.y67{bottom:418.755000px;}
.y7f{bottom:423.075000px;}
.ya0{bottom:434.415000px;}
.y54{bottom:435.135000px;}
.y21{bottom:436.035000px;}
.y66{bottom:439.815000px;}
.y7e{bottom:444.135000px;}
.y53{bottom:456.195000px;}
.y65{bottom:456.915000px;}
.y20{bottom:457.095000px;}
.y7d{bottom:465.195000px;}
.y9f{bottom:467.175000px;}
.y52{bottom:477.255000px;}
.y1f{bottom:478.155000px;}
.y7c{bottom:486.255000px;}
.y9e{bottom:488.235000px;}
.y51{bottom:498.315000px;}
.y1e{bottom:499.215000px;}
.y7b{bottom:507.315000px;}
.y9d{bottom:509.295000px;}
.y50{bottom:519.375000px;}
.y1d{bottom:520.275000px;}
.y7a{bottom:528.375000px;}
.y9c{bottom:530.355000px;}
.y4f{bottom:540.435000px;}
.y1c{bottom:541.335000px;}
.y79{bottom:549.435000px;}
.y9b{bottom:551.415000px;}
.y4e{bottom:561.495000px;}
.y1b{bottom:562.395000px;}
.y78{bottom:570.525000px;}
.y9a{bottom:572.505000px;}
.y4d{bottom:582.585000px;}
.y1a{bottom:583.485000px;}
.y77{bottom:591.585000px;}
.y99{bottom:593.565000px;}
.y4c{bottom:603.645000px;}
.yc8{bottom:604.545000px;}
.y19{bottom:606.885000px;}
.y76{bottom:612.645000px;}
.y98{bottom:614.625000px;}
.yc7{bottom:625.605000px;}
.y4b{bottom:633.705000px;}
.y97{bottom:635.685000px;}
.y18{bottom:636.765000px;}
.yc6{bottom:646.665000px;}
.y4a{bottom:654.765000px;}
.y96{bottom:656.745000px;}
.y17{bottom:657.825000px;}
.yc5{bottom:667.545000px;}
.y49{bottom:675.825000px;}
.y95{bottom:677.805000px;}
.y16{bottom:678.885000px;}
.yc4{bottom:688.605000px;}
.y48{bottom:696.885000px;}
.y94{bottom:698.865000px;}
.y15{bottom:699.945000px;}
.yc3{bottom:709.665000px;}
.y47{bottom:717.945000px;}
.y93{bottom:719.925000px;}
.y14{bottom:721.005000px;}
.yc2{bottom:730.725000px;}
.y46{bottom:739.005000px;}
.y92{bottom:740.985000px;}
.y13{bottom:742.065000px;}
.yc1{bottom:751.785000px;}
.y45{bottom:760.065000px;}
.y91{bottom:762.045000px;}
.y12{bottom:763.125000px;}
.yc0{bottom:772.845000px;}
.y44{bottom:781.125000px;}
.y90{bottom:783.105000px;}
.y11{bottom:784.185000px;}
.ybf{bottom:793.905000px;}
.y8f{bottom:800.205000px;}
.y43{bottom:802.185000px;}
.y10{bottom:805.245000px;}
.ybe{bottom:814.965000px;}
.y42{bottom:823.245000px;}
.yf{bottom:826.305000px;}
.ybd{bottom:836.025000px;}
.y41{bottom:844.305000px;}
.ye{bottom:847.410000px;}
.ybc{bottom:857.130000px;}
.y40{bottom:865.410000px;}
.yd{bottom:870.990000px;}
.ybb{bottom:878.190000px;}
.y3f{bottom:886.470000px;}
.yc{bottom:897.090000px;}
.yba{bottom:899.250000px;}
.y3e{bottom:907.530000px;}
.yb{bottom:913.650000px;}
.yb9{bottom:920.310000px;}
.y3d{bottom:928.590000px;}
.ya{bottom:935.970000px;}
.yb8{bottom:941.370000px;}
.y3c{bottom:949.650000px;}
.y9{bottom:961.350000px;}
.yb7{bottom:962.430000px;}
.y3b{bottom:970.710000px;}
.yb5{bottom:977.550000px;}
.y3a{bottom:991.770000px;}
.y8{bottom:995.010000px;}
.yb4{bottom:1000.410000px;}
.y39{bottom:1012.830000px;}
.yb3{bottom:1022.910000px;}
.y7{bottom:1028.670000px;}
.y38{bottom:1033.890000px;}
.yb2{bottom:1045.410000px;}
.y37{bottom:1054.950000px;}
.y5{bottom:1067.910000px;}
.y36{bottom:1076.010000px;}
.y35{bottom:1097.070000px;}
.y4{bottom:1097.970000px;}
.y34{bottom:1118.130000px;}
.y3{bottom:1128.030000px;}
.y33{bottom:1139.220000px;}
.y2{bottom:1158.120000px;}
.y32{bottom:1170.000000px;}
.y1{bottom:1191.420000px;}
.y31{bottom:1193.220000px;}
.he{height:21.780000px;}
.hd{height:21.960000px;}
.hf{height:22.140000px;}
.h8{height:38.671172px;}
.h9{height:48.029766px;}
.ha{height:48.088125px;}
.h2{height:56.146289px;}
.h3{height:59.439023px;}
.hc{height:60.226875px;}
.h6{height:61.189805px;}
.hb{height:61.423863px;}
.h4{height:65.884219px;}
.h7{height:67.824844px;}
.h5{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:199.830000px;}
.w5{width:208.470000px;}
.w3{width:360.435000px;}
.w6{width:560.985000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:7.740000px;}
.x2{left:52.919987px;}
.x1{left:53.999987px;}
.xf{left:61.920000px;}
.x5{left:69.119987px;}
.x8{left:70.199987px;}
.x3{left:74.519987px;}
.xb{left:75.599987px;}
.x13{left:80.999987px;}
.xa{left:108.035987px;}
.x9{left:116.675987px;}
.x7{left:297.614987px;}
.xd{left:340.274987px;}
.x11{left:423.075000px;}
.xe{left:456.014987px;}
.x12{left:623.625000px;}
.x6{left:739.589987px;}
.xc{left:757.229987px;}
.x4{left:775.229987px;}
.x14{left:839.309987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls21{letter-spacing:-0.853333pt;}
.lsf{letter-spacing:-0.515200pt;}
.ls22{letter-spacing:-0.480000pt;}
.ls17{letter-spacing:-0.474133pt;}
.lsd{letter-spacing:-0.290133pt;}
.ls10{letter-spacing:-0.190933pt;}
.ls16{letter-spacing:-0.185600pt;}
.lsc{letter-spacing:-0.102933pt;}
.ls9{letter-spacing:-0.057600pt;}
.ls8{letter-spacing:-0.051840pt;}
.ls12{letter-spacing:-0.049280pt;}
.ls1b{letter-spacing:-0.033920pt;}
.ls7{letter-spacing:0.000000pt;}
.ls23{letter-spacing:0.053867pt;}
.ls18{letter-spacing:0.124800pt;}
.ls4{letter-spacing:0.133120pt;}
.ls6{letter-spacing:0.154667pt;}
.ls3{letter-spacing:0.154880pt;}
.ls1f{letter-spacing:0.159360pt;}
.lsb{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.165867pt;}
.ls11{letter-spacing:0.279467pt;}
.ls14{letter-spacing:0.370560pt;}
.ls24{letter-spacing:0.404907pt;}
.ls1a{letter-spacing:0.426133pt;}
.ls1d{letter-spacing:0.426240pt;}
.ls20{letter-spacing:0.586240pt;}
.lsa{letter-spacing:0.586667pt;}
.ls5{letter-spacing:0.794880pt;}
.ls2{letter-spacing:1.118720pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.792000pt;}
.ls1e{letter-spacing:10.832640pt;}
.ls1c{letter-spacing:37.712640pt;}
.ls19{letter-spacing:76.240640pt;}
.ls13{letter-spacing:92.240640pt;}
.ls15{letter-spacing:93.520640pt;}
.ws0{word-spacing:-36.480000pt;}
.ws5{word-spacing:-13.306880pt;}
.ws4{word-spacing:-12.591787pt;}
.wsc{word-spacing:-12.284587pt;}
.wsa{word-spacing:-12.170987pt;}
.ws10{word-spacing:-12.164480pt;}
.ws3{word-spacing:-12.005120pt;}
.wsf{word-spacing:-11.971200pt;}
.wsd{word-spacing:-11.955840pt;}
.ws1{word-spacing:-11.953280pt;}
.ws2{word-spacing:-11.947520pt;}
.ws8{word-spacing:-11.902187pt;}
.wse{word-spacing:-11.819520pt;}
.wsb{word-spacing:-11.814187pt;}
.ws6{word-spacing:-8.389120pt;}
.ws7{word-spacing:-7.810560pt;}
.ws9{word-spacing:0.000000pt;}
._4{margin-left:-1171.882453pt;}
._1{margin-left:-1073.205120pt;}
._2{margin-left:-814.284373pt;}
._5{margin-left:-469.898240pt;}
._7{margin-left:-4.209280pt;}
._6{margin-left:-3.319680pt;}
._e{margin-left:-1.859200pt;}
._3{margin-left:-0.968320pt;}
._0{width:1.239467pt;}
._a{width:2.295040pt;}
._b{width:3.240320pt;}
._9{width:4.511360pt;}
._8{width:5.703040pt;}
._c{width:6.707840pt;}
._f{width:8.127360pt;}
._10{width:9.118933pt;}
._11{width:10.671787pt;}
._d{width:13.120640pt;}
._14{width:14.342400pt;}
._18{width:15.279360pt;}
._13{width:24.128640pt;}
._12{width:25.072640pt;}
._19{width:30.331520pt;}
._1a{width:31.221120pt;}
._15{width:38.250667pt;}
._17{width:52.581120pt;}
._16{width:53.544960pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ya3{bottom:6.560000pt;}
.ya1{bottom:6.720000pt;}
.yb6{bottom:6.880000pt;}
.y6{bottom:54.432000pt;}
.yd1{bottom:78.112000pt;}
.y64{bottom:79.232000pt;}
.y8e{bottom:87.232000pt;}
.yd0{bottom:95.232000pt;}
.y63{bottom:97.952000pt;}
.yb1{bottom:101.632000pt;}
.y8d{bottom:105.952000pt;}
.y30{bottom:106.752000pt;}
.y75{bottom:110.112000pt;}
.ycf{bottom:113.952000pt;}
.y62{bottom:116.672000pt;}
.yb0{bottom:120.352000pt;}
.y8c{bottom:124.672000pt;}
.y2f{bottom:125.472000pt;}
.y74{bottom:128.832000pt;}
.yce{bottom:132.672000pt;}
.y61{bottom:135.386667pt;}
.yaf{bottom:139.066667pt;}
.y8b{bottom:143.386667pt;}
.y2e{bottom:144.186667pt;}
.y73{bottom:147.546667pt;}
.ycd{bottom:151.386667pt;}
.y60{bottom:154.106667pt;}
.yae{bottom:157.786667pt;}
.y8a{bottom:162.106667pt;}
.y2d{bottom:162.906667pt;}
.y72{bottom:166.266667pt;}
.ycc{bottom:170.106667pt;}
.y5f{bottom:172.826667pt;}
.yad{bottom:176.506667pt;}
.y89{bottom:180.826667pt;}
.y2c{bottom:181.626667pt;}
.y71{bottom:184.986667pt;}
.ycb{bottom:188.826667pt;}
.y5e{bottom:191.546667pt;}
.yac{bottom:195.226667pt;}
.y88{bottom:199.546667pt;}
.y2b{bottom:200.346667pt;}
.y70{bottom:203.706667pt;}
.yca{bottom:207.546667pt;}
.y5d{bottom:210.266667pt;}
.yab{bottom:213.946667pt;}
.y87{bottom:218.266667pt;}
.y2a{bottom:219.066667pt;}
.y6f{bottom:222.426667pt;}
.yc9{bottom:226.266667pt;}
.y5c{bottom:228.986667pt;}
.yaa{bottom:232.666667pt;}
.y29{bottom:237.786667pt;}
.y6e{bottom:241.146667pt;}
.y86{bottom:244.986667pt;}
.y5b{bottom:247.706667pt;}
.ya9{bottom:251.426667pt;}
.y28{bottom:256.546667pt;}
.y6d{bottom:259.906667pt;}
.y85{bottom:263.746667pt;}
.y5a{bottom:266.466667pt;}
.ya8{bottom:270.146667pt;}
.y27{bottom:275.266667pt;}
.y6c{bottom:278.626667pt;}
.y84{bottom:282.466667pt;}
.y59{bottom:285.186667pt;}
.ya7{bottom:288.866667pt;}
.y26{bottom:293.986667pt;}
.y6b{bottom:297.346667pt;}
.y83{bottom:301.186667pt;}
.y58{bottom:303.906667pt;}
.ya6{bottom:307.586667pt;}
.y25{bottom:312.706667pt;}
.y6a{bottom:316.066667pt;}
.y82{bottom:319.906667pt;}
.y57{bottom:322.626667pt;}
.ya5{bottom:326.306667pt;}
.y24{bottom:331.426667pt;}
.y69{bottom:334.786667pt;}
.y81{bottom:338.626667pt;}
.ya4{bottom:339.746667pt;}
.y56{bottom:349.346667pt;}
.y23{bottom:350.146667pt;}
.y68{bottom:353.506667pt;}
.y80{bottom:357.346667pt;}
.ya2{bottom:362.946667pt;}
.y55{bottom:368.066667pt;}
.y22{bottom:368.866667pt;}
.y67{bottom:372.226667pt;}
.y7f{bottom:376.066667pt;}
.ya0{bottom:386.146667pt;}
.y54{bottom:386.786667pt;}
.y21{bottom:387.586667pt;}
.y66{bottom:390.946667pt;}
.y7e{bottom:394.786667pt;}
.y53{bottom:405.506667pt;}
.y65{bottom:406.146667pt;}
.y20{bottom:406.306667pt;}
.y7d{bottom:413.506667pt;}
.y9f{bottom:415.266667pt;}
.y52{bottom:424.226667pt;}
.y1f{bottom:425.026667pt;}
.y7c{bottom:432.226667pt;}
.y9e{bottom:433.986667pt;}
.y51{bottom:442.946667pt;}
.y1e{bottom:443.746667pt;}
.y7b{bottom:450.946667pt;}
.y9d{bottom:452.706667pt;}
.y50{bottom:461.666667pt;}
.y1d{bottom:462.466667pt;}
.y7a{bottom:469.666667pt;}
.y9c{bottom:471.426667pt;}
.y4f{bottom:480.386667pt;}
.y1c{bottom:481.186667pt;}
.y79{bottom:488.386667pt;}
.y9b{bottom:490.146667pt;}
.y4e{bottom:499.106667pt;}
.y1b{bottom:499.906667pt;}
.y78{bottom:507.133333pt;}
.y9a{bottom:508.893333pt;}
.y4d{bottom:517.853333pt;}
.y1a{bottom:518.653333pt;}
.y77{bottom:525.853333pt;}
.y99{bottom:527.613333pt;}
.y4c{bottom:536.573333pt;}
.yc8{bottom:537.373333pt;}
.y19{bottom:539.453333pt;}
.y76{bottom:544.573333pt;}
.y98{bottom:546.333333pt;}
.yc7{bottom:556.093333pt;}
.y4b{bottom:563.293333pt;}
.y97{bottom:565.053333pt;}
.y18{bottom:566.013333pt;}
.yc6{bottom:574.813333pt;}
.y4a{bottom:582.013333pt;}
.y96{bottom:583.773333pt;}
.y17{bottom:584.733333pt;}
.yc5{bottom:593.373333pt;}
.y49{bottom:600.733333pt;}
.y95{bottom:602.493333pt;}
.y16{bottom:603.453333pt;}
.yc4{bottom:612.093333pt;}
.y48{bottom:619.453333pt;}
.y94{bottom:621.213333pt;}
.y15{bottom:622.173333pt;}
.yc3{bottom:630.813333pt;}
.y47{bottom:638.173333pt;}
.y93{bottom:639.933333pt;}
.y14{bottom:640.893333pt;}
.yc2{bottom:649.533333pt;}
.y46{bottom:656.893333pt;}
.y92{bottom:658.653333pt;}
.y13{bottom:659.613333pt;}
.yc1{bottom:668.253333pt;}
.y45{bottom:675.613333pt;}
.y91{bottom:677.373333pt;}
.y12{bottom:678.333333pt;}
.yc0{bottom:686.973333pt;}
.y44{bottom:694.333333pt;}
.y90{bottom:696.093333pt;}
.y11{bottom:697.053333pt;}
.ybf{bottom:705.693333pt;}
.y8f{bottom:711.293333pt;}
.y43{bottom:713.053333pt;}
.y10{bottom:715.773333pt;}
.ybe{bottom:724.413333pt;}
.y42{bottom:731.773333pt;}
.yf{bottom:734.493333pt;}
.ybd{bottom:743.133333pt;}
.y41{bottom:750.493333pt;}
.ye{bottom:753.253333pt;}
.ybc{bottom:761.893333pt;}
.y40{bottom:769.253333pt;}
.yd{bottom:774.213333pt;}
.ybb{bottom:780.613333pt;}
.y3f{bottom:787.973333pt;}
.yc{bottom:797.413333pt;}
.yba{bottom:799.333333pt;}
.y3e{bottom:806.693333pt;}
.yb{bottom:812.133333pt;}
.yb9{bottom:818.053333pt;}
.y3d{bottom:825.413333pt;}
.ya{bottom:831.973333pt;}
.yb8{bottom:836.773333pt;}
.y3c{bottom:844.133333pt;}
.y9{bottom:854.533333pt;}
.yb7{bottom:855.493333pt;}
.y3b{bottom:862.853333pt;}
.yb5{bottom:868.933333pt;}
.y3a{bottom:881.573333pt;}
.y8{bottom:884.453333pt;}
.yb4{bottom:889.253333pt;}
.y39{bottom:900.293333pt;}
.yb3{bottom:909.253333pt;}
.y7{bottom:914.373333pt;}
.y38{bottom:919.013333pt;}
.yb2{bottom:929.253333pt;}
.y37{bottom:937.733333pt;}
.y5{bottom:949.253333pt;}
.y36{bottom:956.453333pt;}
.y35{bottom:975.173333pt;}
.y4{bottom:975.973333pt;}
.y34{bottom:993.893333pt;}
.y3{bottom:1002.693333pt;}
.y33{bottom:1012.640000pt;}
.y2{bottom:1029.440000pt;}
.y32{bottom:1040.000000pt;}
.y1{bottom:1059.040000pt;}
.y31{bottom:1060.640000pt;}
.he{height:19.360000pt;}
.hd{height:19.520000pt;}
.hf{height:19.680000pt;}
.h8{height:34.374375pt;}
.h9{height:42.693125pt;}
.ha{height:42.745000pt;}
.h2{height:49.907812pt;}
.h3{height:52.834688pt;}
.hc{height:53.535000pt;}
.h6{height:54.390938pt;}
.hb{height:54.598989pt;}
.h4{height:58.563750pt;}
.h7{height:60.288750pt;}
.h5{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:177.626667pt;}
.w5{width:185.306667pt;}
.w3{width:320.386667pt;}
.w6{width:498.653333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:6.880000pt;}
.x2{left:47.039988pt;}
.x1{left:47.999988pt;}
.xf{left:55.040000pt;}
.x5{left:61.439988pt;}
.x8{left:62.399988pt;}
.x3{left:66.239988pt;}
.xb{left:67.199988pt;}
.x13{left:71.999988pt;}
.xa{left:96.031988pt;}
.x9{left:103.711988pt;}
.x7{left:264.546655pt;}
.xd{left:302.466655pt;}
.x11{left:376.066667pt;}
.xe{left:405.346655pt;}
.x12{left:554.333333pt;}
.x6{left:657.413322pt;}
.xc{left:673.093322pt;}
.x4{left:689.093322pt;}
.x14{left:746.053322pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  