
    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_689c59df911bcd40298b24c1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.933105;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_37bc16748aa799844084d40c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914062;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_d3627ec8de37ac0b3755b920.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040039;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_9bc7850080e18f204287cc05.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_dfe07d5b0e17197a78a3e985.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914062;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_6193fc93719873dbca485474.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_0fc7c3b41e85a1b9c9fd4e53.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.000000px;}
.v1{vertical-align:23.760000px;}
.lsc{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.540000px;}
.ls7{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.305400px;}
.ls6{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.053280px;}
.ls9{letter-spacing:-0.034560px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.017280px;}
.ls4{letter-spacing:0.144720px;}
.lsf{letter-spacing:0.152400px;}
.ls3{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.259800px;}
.ls1{letter-spacing:0.259920px;}
.ls0{letter-spacing:0.360000px;}
.lse{letter-spacing:39.905280px;}
.ls10{letter-spacing:199.416000px;}
.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;}
}
.ws5{word-spacing:-19.405440px;}
.wsc{word-spacing:-16.712400px;}
.wsb{word-spacing:-16.560000px;}
.wsa{word-spacing:-16.254600px;}
.ws3{word-spacing:-15.300000px;}
.ws4{word-spacing:-14.940000px;}
.ws2{word-spacing:-14.580000px;}
.ws8{word-spacing:-13.500000px;}
.ws0{word-spacing:-12.060000px;}
.ws1{word-spacing:-11.700000px;}
.ws6{word-spacing:-10.440000px;}
.ws7{word-spacing:-9.000000px;}
.ws9{word-spacing:0.000000px;}
._c{margin-left:-4.422240px;}
._b{margin-left:-2.928240px;}
._0{margin-left:-1.254240px;}
._2{width:1.254960px;}
._5{width:2.514480px;}
._7{width:3.644400px;}
._8{width:4.780800px;}
._6{width:6.155280px;}
._4{width:8.126640px;}
._3{width:9.382320px;}
._22{width:10.491840px;}
._d{width:11.533680px;}
._10{width:13.266720px;}
._12{width:14.970240px;}
._e{width:18.346320px;}
._f{width:19.900080px;}
._15{width:21.088320px;}
._9{width:22.410000px;}
._a{width:23.425920px;}
._17{width:24.575040px;}
._18{width:25.811040px;}
._25{width:27.158400px;}
._14{width:28.814400px;}
._13{width:29.940480px;}
._16{width:31.134720px;}
._23{width:32.192640px;}
._26{width:33.243840px;}
._20{width:34.378560px;}
._21{width:35.755200px;}
._27{width:37.293120px;}
._28{width:38.950080px;}
._24{width:53.521920px;}
._1a{width:65.776320px;}
._1e{width:105.454080px;}
._1c{width:120.424320px;}
._1b{width:124.067520px;}
._11{width:157.757520px;}
._29{width:183.286080px;}
._19{width:187.597440px;}
._1f{width:197.792640px;}
._1d{width:212.497920px;}
._1{width:1305.088800px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:36.000000px;}
.fs5{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y8d{bottom:2.700000px;}
.y9a{bottom:2.880000px;}
.y6d{bottom:6.300000px;}
.y8f{bottom:6.345000px;}
.y76{bottom:6.480000px;}
.y2{bottom:6.840000px;}
.y74{bottom:17.280000px;}
.y7b{bottom:28.080000px;}
.y71{bottom:28.260000px;}
.y73{bottom:39.060000px;}
.y78{bottom:39.240000px;}
.y7a{bottom:49.860000px;}
.y70{bottom:50.040000px;}
.y81{bottom:50.085000px;}
.y72{bottom:60.840000px;}
.y82{bottom:61.065000px;}
.y4{bottom:70.416000px;}
.y6f{bottom:71.820000px;}
.y80{bottom:71.865000px;}
.y83{bottom:82.845000px;}
.y7f{bottom:93.645000px;}
.y7e{bottom:115.605000px;}
.yba{bottom:118.476000px;}
.y8b{bottom:119.196000px;}
.y3d{bottom:120.096000px;}
.y6b{bottom:125.136000px;}
.yf0{bottom:130.536000px;}
.yb9{bottom:140.256000px;}
.y8a{bottom:140.976000px;}
.y3c{bottom:141.876000px;}
.y6a{bottom:146.916000px;}
.yef{bottom:152.310000px;}
.ycd{bottom:158.250000px;}
.yb8{bottom:162.030000px;}
.y89{bottom:162.750000px;}
.y3b{bottom:163.650000px;}
.ya5{bottom:167.070000px;}
.y69{bottom:168.690000px;}
.yee{bottom:174.090000px;}
.yb7{bottom:177.510000px;}
.ycc{bottom:180.030000px;}
.y88{bottom:184.530000px;}
.y3a{bottom:185.430000px;}
.ya4{bottom:188.850000px;}
.y68{bottom:190.650000px;}
.yed{bottom:195.870000px;}
.yb6{bottom:199.290000px;}
.ycb{bottom:201.990000px;}
.y87{bottom:206.490000px;}
.y39{bottom:207.390000px;}
.ya3{bottom:210.630000px;}
.y67{bottom:212.430000px;}
.yec{bottom:217.650000px;}
.yca{bottom:223.770000px;}
.y86{bottom:228.270000px;}
.y38{bottom:229.170000px;}
.ya2{bottom:232.410000px;}
.y66{bottom:234.210000px;}
.yeb{bottom:239.610000px;}
.yc9{bottom:245.550000px;}
.y85{bottom:250.050000px;}
.y37{bottom:250.950000px;}
.ya1{bottom:254.190000px;}
.y65{bottom:255.990000px;}
.yea{bottom:261.390000px;}
.yc8{bottom:267.330000px;}
.y84{bottom:271.830000px;}
.y36{bottom:272.730000px;}
.ya0{bottom:276.150000px;}
.y64{bottom:277.950000px;}
.ye9{bottom:283.170000px;}
.y7d{bottom:288.030000px;}
.yc7{bottom:289.110000px;}
.y35{bottom:294.690000px;}
.y9f{bottom:297.930000px;}
.y63{bottom:299.730000px;}
.ye8{bottom:304.950000px;}
.yc6{bottom:311.070000px;}
.y34{bottom:316.470000px;}
.y9e{bottom:319.710000px;}
.y62{bottom:321.510000px;}
.ye7{bottom:326.910000px;}
.yc5{bottom:332.850000px;}
.y33{bottom:334.470000px;}
.y9d{bottom:341.535000px;}
.y61{bottom:343.335000px;}
.y32{bottom:348.195000px;}
.ye6{bottom:348.735000px;}
.yc4{bottom:354.675000px;}
.y31{bottom:362.775000px;}
.y9c{bottom:363.495000px;}
.y60{bottom:365.115000px;}
.ye5{bottom:370.515000px;}
.yc3{bottom:376.455000px;}
.y9b{bottom:378.975000px;}
.y30{bottom:380.055000px;}
.y5f{bottom:387.075000px;}
.ye4{bottom:392.295000px;}
.y2f{bottom:397.335000px;}
.yc2{bottom:398.415000px;}
.y99{bottom:400.755000px;}
.y5e{bottom:408.855000px;}
.ye3{bottom:414.075000px;}
.y2e{bottom:414.615000px;}
.y7c{bottom:419.835000px;}
.yc1{bottom:420.195000px;}
.y5d{bottom:430.635000px;}
.y2d{bottom:431.715000px;}
.ye2{bottom:436.035000px;}
.yc0{bottom:441.975000px;}
.y2c{bottom:448.995000px;}
.y5c{bottom:452.415000px;}
.ye1{bottom:457.815000px;}
.ybf{bottom:463.755000px;}
.y2b{bottom:466.275000px;}
.y5b{bottom:474.375000px;}
.ye0{bottom:479.595000px;}
.y2a{bottom:483.555000px;}
.ybe{bottom:485.535000px;}
.y79{bottom:486.075000px;}
.y5a{bottom:496.155000px;}
.y29{bottom:500.835000px;}
.ydf{bottom:501.375000px;}
.ybd{bottom:507.495000px;}
.y28{bottom:517.935000px;}
.yb5{bottom:519.015000px;}
.ybc{bottom:522.975000px;}
.yde{bottom:523.335000px;}
.y27{bottom:535.215000px;}
.y59{bottom:539.715000px;}
.yb4{bottom:540.795000px;}
.ybb{bottom:544.755000px;}
.ydd{bottom:545.115000px;}
.y77{bottom:552.135000px;}
.y26{bottom:552.495000px;}
.y58{bottom:561.495000px;}
.yb3{bottom:562.755000px;}
.ydc{bottom:566.895000px;}
.y25{bottom:569.775000px;}
.y57{bottom:583.455000px;}
.yb2{bottom:584.535000px;}
.y24{bottom:587.055000px;}
.ydb{bottom:588.675000px;}
.y23{bottom:604.365000px;}
.y56{bottom:605.265000px;}
.yb1{bottom:606.345000px;}
.yda{bottom:610.485000px;}
.y75{bottom:618.405000px;}
.y22{bottom:621.465000px;}
.y55{bottom:627.045000px;}
.yb0{bottom:628.125000px;}
.yd9{bottom:632.445000px;}
.y21{bottom:638.745000px;}
.y54{bottom:648.825000px;}
.yaf{bottom:650.085000px;}
.yd8{bottom:654.225000px;}
.y20{bottom:656.025000px;}
.y53{bottom:670.605000px;}
.yae{bottom:671.865000px;}
.y1f{bottom:673.305000px;}
.yd7{bottom:676.005000px;}
.y98{bottom:679.965000px;}
.y6e{bottom:684.645000px;}
.y1e{bottom:690.585000px;}
.y52{bottom:692.565000px;}
.yad{bottom:693.645000px;}
.yd6{bottom:697.785000px;}
.y97{bottom:701.745000px;}
.y1d{bottom:707.865000px;}
.y51{bottom:714.345000px;}
.yac{bottom:715.425000px;}
.yd5{bottom:719.745000px;}
.y96{bottom:723.525000px;}
.y1c{bottom:724.965000px;}
.y50{bottom:736.125000px;}
.yab{bottom:737.205000px;}
.yd4{bottom:741.525000px;}
.y1b{bottom:742.245000px;}
.y95{bottom:745.305000px;}
.y4f{bottom:757.905000px;}
.yaa{bottom:759.165000px;}
.y1a{bottom:759.525000px;}
.yd3{bottom:763.305000px;}
.y94{bottom:767.265000px;}
.y6c{bottom:772.665000px;}
.y19{bottom:776.805000px;}
.y4e{bottom:779.865000px;}
.ya9{bottom:780.945000px;}
.yd2{bottom:785.085000px;}
.y93{bottom:789.045000px;}
.y18{bottom:794.085000px;}
.y4d{bottom:801.645000px;}
.ya8{bottom:802.725000px;}
.yd1{bottom:806.865000px;}
.y92{bottom:810.825000px;}
.y17{bottom:811.365000px;}
.ya7{bottom:818.205000px;}
.y4c{bottom:823.425000px;}
.yd0{bottom:828.825000px;}
.y16{bottom:829.005000px;}
.y91{bottom:832.605000px;}
.ya6{bottom:839.985000px;}
.ycf{bottom:844.305000px;}
.y4b{bottom:845.205000px;}
.y15{bottom:847.185000px;}
.y90{bottom:854.565000px;}
.y14{bottom:862.665000px;}
.yce{bottom:866.085000px;}
.y4a{bottom:866.985000px;}
.y8e{bottom:870.045000px;}
.y13{bottom:878.190000px;}
.y49{bottom:888.990000px;}
.y8c{bottom:891.870000px;}
.y12{bottom:898.350000px;}
.y48{bottom:910.770000px;}
.y11{bottom:913.830000px;}
.y10{bottom:925.530000px;}
.y47{bottom:932.550000px;}
.yf{bottom:944.610000px;}
.y46{bottom:954.330000px;}
.ye{bottom:963.510000px;}
.y45{bottom:976.290000px;}
.yd{bottom:982.770000px;}
.y44{bottom:998.070000px;}
.yc{bottom:1003.650000px;}
.y43{bottom:1019.850000px;}
.yb{bottom:1026.150000px;}
.y42{bottom:1041.630000px;}
.ya{bottom:1046.850000px;}
.y9{bottom:1061.430000px;}
.y41{bottom:1063.410000px;}
.y8{bottom:1078.710000px;}
.y40{bottom:1085.370000px;}
.y7{bottom:1095.990000px;}
.y3f{bottom:1107.150000px;}
.y6{bottom:1113.090000px;}
.y3e{bottom:1128.930000px;}
.y5{bottom:1130.370000px;}
.y3{bottom:1147.680000px;}
.y1{bottom:1161.720000px;}
.h10{height:21.780000px;}
.h19{height:21.816000px;}
.hb{height:25.136719px;}
.h2{height:26.640000px;}
.h7{height:34.036523px;}
.h5{height:39.760312px;}
.h4{height:41.726953px;}
.h6{height:42.164648px;}
.hc{height:43.136719px;}
.hf{height:46.251562px;}
.hd{height:46.736719px;}
.h16{height:48.224531px;}
.he{height:49.255313px;}
.h9{height:50.273438px;}
.h3{height:50.414062px;}
.ha{height:53.224453px;}
.h17{height:54.596250px;}
.h8{height:54.864844px;}
.h14{height:65.340000px;}
.h12{height:65.520000px;}
.h13{height:65.556000px;}
.h11{height:87.300000px;}
.h15{height:131.076000px;}
.h18{height:252.570000px;}
.h1a{height:272.910000px;}
.h1e{height:278.355000px;}
.h1d{height:294.150000px;}
.h1b{height:304.455000px;}
.h1c{height:313.410000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:53.100000px;}
.w8{width:123.156000px;}
.w6{width:148.140000px;}
.w5{width:148.176000px;}
.w7{width:152.490000px;}
.w9{width:569.085000px;}
.w3{width:627.405000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.640000px;}
.x1{left:108.036000px;}
.x7{left:109.475987px;}
.x8{left:112.715987px;}
.xc{left:116.135987px;}
.xd{left:118.295987px;}
.xb{left:121.715987px;}
.x10{left:129.275987px;}
.x5{left:134.315987px;}
.x20{left:140.265000px;}
.x24{left:144.035987px;}
.x23{left:150.509987px;}
.x22{left:153.045000px;}
.x12{left:159.510000px;}
.x3{left:161.130000px;}
.x1f{left:175.365000px;}
.x17{left:183.269987px;}
.x18{left:189.029987px;}
.x1d{left:200.025000px;}
.x16{left:216.029987px;}
.x6{left:257.789987px;}
.x19{left:270.029987px;}
.x9{left:287.534987px;}
.x13{left:308.415000px;}
.x11{left:356.654987px;}
.xa{left:363.854987px;}
.x1b{left:393.555000px;}
.x21{left:397.515000px;}
.x1e{left:411.015000px;}
.xf{left:418.574987px;}
.xe{left:420.194987px;}
.x1c{left:424.155000px;}
.x4{left:446.474987px;}
.x1a{left:447.780000px;}
.x14{left:457.275000px;}
.x15{left:610.485000px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsc{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.480000pt;}
.ls7{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.271467pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.047360pt;}
.ls9{letter-spacing:-0.030720pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.015360pt;}
.ls4{letter-spacing:0.128640pt;}
.lsf{letter-spacing:0.135467pt;}
.ls3{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.230933pt;}
.ls1{letter-spacing:0.231040pt;}
.ls0{letter-spacing:0.320000pt;}
.lse{letter-spacing:35.471360pt;}
.ls10{letter-spacing:177.258667pt;}
.ws5{word-spacing:-17.249280pt;}
.wsc{word-spacing:-14.855467pt;}
.wsb{word-spacing:-14.720000pt;}
.wsa{word-spacing:-14.448533pt;}
.ws3{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.280000pt;}
.ws2{word-spacing:-12.960000pt;}
.ws8{word-spacing:-12.000000pt;}
.ws0{word-spacing:-10.720000pt;}
.ws1{word-spacing:-10.400000pt;}
.ws6{word-spacing:-9.280000pt;}
.ws7{word-spacing:-8.000000pt;}
.ws9{word-spacing:0.000000pt;}
._c{margin-left:-3.930880pt;}
._b{margin-left:-2.602880pt;}
._0{margin-left:-1.114880pt;}
._2{width:1.115520pt;}
._5{width:2.235093pt;}
._7{width:3.239467pt;}
._8{width:4.249600pt;}
._6{width:5.471360pt;}
._4{width:7.223680pt;}
._3{width:8.339840pt;}
._22{width:9.326080pt;}
._d{width:10.252160pt;}
._10{width:11.792640pt;}
._12{width:13.306880pt;}
._e{width:16.307840pt;}
._f{width:17.688960pt;}
._15{width:18.745173pt;}
._9{width:19.920000pt;}
._a{width:20.823040pt;}
._17{width:21.844480pt;}
._18{width:22.943147pt;}
._25{width:24.140800pt;}
._14{width:25.612800pt;}
._13{width:26.613760pt;}
._16{width:27.675307pt;}
._23{width:28.615680pt;}
._26{width:29.550080pt;}
._20{width:30.558720pt;}
._21{width:31.782400pt;}
._27{width:33.149440pt;}
._28{width:34.622293pt;}
._24{width:47.575040pt;}
._1a{width:58.467840pt;}
._1e{width:93.736960pt;}
._1c{width:107.043840pt;}
._1b{width:110.282240pt;}
._11{width:140.228907pt;}
._29{width:162.920960pt;}
._19{width:166.753280pt;}
._1f{width:175.815680pt;}
._1d{width:188.887040pt;}
._1{width:1160.078933pt;}
.fs6{font-size:32.000000pt;}
.fs5{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y8d{bottom:2.400000pt;}
.y9a{bottom:2.560000pt;}
.y6d{bottom:5.600000pt;}
.y8f{bottom:5.640000pt;}
.y76{bottom:5.760000pt;}
.y2{bottom:6.080000pt;}
.y74{bottom:15.360000pt;}
.y7b{bottom:24.960000pt;}
.y71{bottom:25.120000pt;}
.y73{bottom:34.720000pt;}
.y78{bottom:34.880000pt;}
.y7a{bottom:44.320000pt;}
.y70{bottom:44.480000pt;}
.y81{bottom:44.520000pt;}
.y72{bottom:54.080000pt;}
.y82{bottom:54.280000pt;}
.y4{bottom:62.592000pt;}
.y6f{bottom:63.840000pt;}
.y80{bottom:63.880000pt;}
.y83{bottom:73.640000pt;}
.y7f{bottom:83.240000pt;}
.y7e{bottom:102.760000pt;}
.yba{bottom:105.312000pt;}
.y8b{bottom:105.952000pt;}
.y3d{bottom:106.752000pt;}
.y6b{bottom:111.232000pt;}
.yf0{bottom:116.032000pt;}
.yb9{bottom:124.672000pt;}
.y8a{bottom:125.312000pt;}
.y3c{bottom:126.112000pt;}
.y6a{bottom:130.592000pt;}
.yef{bottom:135.386667pt;}
.ycd{bottom:140.666667pt;}
.yb8{bottom:144.026667pt;}
.y89{bottom:144.666667pt;}
.y3b{bottom:145.466667pt;}
.ya5{bottom:148.506667pt;}
.y69{bottom:149.946667pt;}
.yee{bottom:154.746667pt;}
.yb7{bottom:157.786667pt;}
.ycc{bottom:160.026667pt;}
.y88{bottom:164.026667pt;}
.y3a{bottom:164.826667pt;}
.ya4{bottom:167.866667pt;}
.y68{bottom:169.466667pt;}
.yed{bottom:174.106667pt;}
.yb6{bottom:177.146667pt;}
.ycb{bottom:179.546667pt;}
.y87{bottom:183.546667pt;}
.y39{bottom:184.346667pt;}
.ya3{bottom:187.226667pt;}
.y67{bottom:188.826667pt;}
.yec{bottom:193.466667pt;}
.yca{bottom:198.906667pt;}
.y86{bottom:202.906667pt;}
.y38{bottom:203.706667pt;}
.ya2{bottom:206.586667pt;}
.y66{bottom:208.186667pt;}
.yeb{bottom:212.986667pt;}
.yc9{bottom:218.266667pt;}
.y85{bottom:222.266667pt;}
.y37{bottom:223.066667pt;}
.ya1{bottom:225.946667pt;}
.y65{bottom:227.546667pt;}
.yea{bottom:232.346667pt;}
.yc8{bottom:237.626667pt;}
.y84{bottom:241.626667pt;}
.y36{bottom:242.426667pt;}
.ya0{bottom:245.466667pt;}
.y64{bottom:247.066667pt;}
.ye9{bottom:251.706667pt;}
.y7d{bottom:256.026667pt;}
.yc7{bottom:256.986667pt;}
.y35{bottom:261.946667pt;}
.y9f{bottom:264.826667pt;}
.y63{bottom:266.426667pt;}
.ye8{bottom:271.066667pt;}
.yc6{bottom:276.506667pt;}
.y34{bottom:281.306667pt;}
.y9e{bottom:284.186667pt;}
.y62{bottom:285.786667pt;}
.ye7{bottom:290.586667pt;}
.yc5{bottom:295.866667pt;}
.y33{bottom:297.306667pt;}
.y9d{bottom:303.586667pt;}
.y61{bottom:305.186667pt;}
.y32{bottom:309.506667pt;}
.ye6{bottom:309.986667pt;}
.yc4{bottom:315.266667pt;}
.y31{bottom:322.466667pt;}
.y9c{bottom:323.106667pt;}
.y60{bottom:324.546667pt;}
.ye5{bottom:329.346667pt;}
.yc3{bottom:334.626667pt;}
.y9b{bottom:336.866667pt;}
.y30{bottom:337.826667pt;}
.y5f{bottom:344.066667pt;}
.ye4{bottom:348.706667pt;}
.y2f{bottom:353.186667pt;}
.yc2{bottom:354.146667pt;}
.y99{bottom:356.226667pt;}
.y5e{bottom:363.426667pt;}
.ye3{bottom:368.066667pt;}
.y2e{bottom:368.546667pt;}
.y7c{bottom:373.186667pt;}
.yc1{bottom:373.506667pt;}
.y5d{bottom:382.786667pt;}
.y2d{bottom:383.746667pt;}
.ye2{bottom:387.586667pt;}
.yc0{bottom:392.866667pt;}
.y2c{bottom:399.106667pt;}
.y5c{bottom:402.146667pt;}
.ye1{bottom:406.946667pt;}
.ybf{bottom:412.226667pt;}
.y2b{bottom:414.466667pt;}
.y5b{bottom:421.666667pt;}
.ye0{bottom:426.306667pt;}
.y2a{bottom:429.826667pt;}
.ybe{bottom:431.586667pt;}
.y79{bottom:432.066667pt;}
.y5a{bottom:441.026667pt;}
.y29{bottom:445.186667pt;}
.ydf{bottom:445.666667pt;}
.ybd{bottom:451.106667pt;}
.y28{bottom:460.386667pt;}
.yb5{bottom:461.346667pt;}
.ybc{bottom:464.866667pt;}
.yde{bottom:465.186667pt;}
.y27{bottom:475.746667pt;}
.y59{bottom:479.746667pt;}
.yb4{bottom:480.706667pt;}
.ybb{bottom:484.226667pt;}
.ydd{bottom:484.546667pt;}
.y77{bottom:490.786667pt;}
.y26{bottom:491.106667pt;}
.y58{bottom:499.106667pt;}
.yb3{bottom:500.226667pt;}
.ydc{bottom:503.906667pt;}
.y25{bottom:506.466667pt;}
.y57{bottom:518.626667pt;}
.yb2{bottom:519.586667pt;}
.y24{bottom:521.826667pt;}
.ydb{bottom:523.266667pt;}
.y23{bottom:537.213333pt;}
.y56{bottom:538.013333pt;}
.yb1{bottom:538.973333pt;}
.yda{bottom:542.653333pt;}
.y75{bottom:549.693333pt;}
.y22{bottom:552.413333pt;}
.y55{bottom:557.373333pt;}
.yb0{bottom:558.333333pt;}
.yd9{bottom:562.173333pt;}
.y21{bottom:567.773333pt;}
.y54{bottom:576.733333pt;}
.yaf{bottom:577.853333pt;}
.yd8{bottom:581.533333pt;}
.y20{bottom:583.133333pt;}
.y53{bottom:596.093333pt;}
.yae{bottom:597.213333pt;}
.y1f{bottom:598.493333pt;}
.yd7{bottom:600.893333pt;}
.y98{bottom:604.413333pt;}
.y6e{bottom:608.573333pt;}
.y1e{bottom:613.853333pt;}
.y52{bottom:615.613333pt;}
.yad{bottom:616.573333pt;}
.yd6{bottom:620.253333pt;}
.y97{bottom:623.773333pt;}
.y1d{bottom:629.213333pt;}
.y51{bottom:634.973333pt;}
.yac{bottom:635.933333pt;}
.yd5{bottom:639.773333pt;}
.y96{bottom:643.133333pt;}
.y1c{bottom:644.413333pt;}
.y50{bottom:654.333333pt;}
.yab{bottom:655.293333pt;}
.yd4{bottom:659.133333pt;}
.y1b{bottom:659.773333pt;}
.y95{bottom:662.493333pt;}
.y4f{bottom:673.693333pt;}
.yaa{bottom:674.813333pt;}
.y1a{bottom:675.133333pt;}
.yd3{bottom:678.493333pt;}
.y94{bottom:682.013333pt;}
.y6c{bottom:686.813333pt;}
.y19{bottom:690.493333pt;}
.y4e{bottom:693.213333pt;}
.ya9{bottom:694.173333pt;}
.yd2{bottom:697.853333pt;}
.y93{bottom:701.373333pt;}
.y18{bottom:705.853333pt;}
.y4d{bottom:712.573333pt;}
.ya8{bottom:713.533333pt;}
.yd1{bottom:717.213333pt;}
.y92{bottom:720.733333pt;}
.y17{bottom:721.213333pt;}
.ya7{bottom:727.293333pt;}
.y4c{bottom:731.933333pt;}
.yd0{bottom:736.733333pt;}
.y16{bottom:736.893333pt;}
.y91{bottom:740.093333pt;}
.ya6{bottom:746.653333pt;}
.ycf{bottom:750.493333pt;}
.y4b{bottom:751.293333pt;}
.y15{bottom:753.053333pt;}
.y90{bottom:759.613333pt;}
.y14{bottom:766.813333pt;}
.yce{bottom:769.853333pt;}
.y4a{bottom:770.653333pt;}
.y8e{bottom:773.373333pt;}
.y13{bottom:780.613333pt;}
.y49{bottom:790.213333pt;}
.y8c{bottom:792.773333pt;}
.y12{bottom:798.533333pt;}
.y48{bottom:809.573333pt;}
.y11{bottom:812.293333pt;}
.y10{bottom:822.693333pt;}
.y47{bottom:828.933333pt;}
.yf{bottom:839.653333pt;}
.y46{bottom:848.293333pt;}
.ye{bottom:856.453333pt;}
.y45{bottom:867.813333pt;}
.yd{bottom:873.573333pt;}
.y44{bottom:887.173333pt;}
.yc{bottom:892.133333pt;}
.y43{bottom:906.533333pt;}
.yb{bottom:912.133333pt;}
.y42{bottom:925.893333pt;}
.ya{bottom:930.533333pt;}
.y9{bottom:943.493333pt;}
.y41{bottom:945.253333pt;}
.y8{bottom:958.853333pt;}
.y40{bottom:964.773333pt;}
.y7{bottom:974.213333pt;}
.y3f{bottom:984.133333pt;}
.y6{bottom:989.413333pt;}
.y3e{bottom:1003.493333pt;}
.y5{bottom:1004.773333pt;}
.y3{bottom:1020.160000pt;}
.y1{bottom:1032.640000pt;}
.h10{height:19.360000pt;}
.h19{height:19.392000pt;}
.hb{height:22.343750pt;}
.h2{height:23.680000pt;}
.h7{height:30.254687pt;}
.h5{height:35.342500pt;}
.h4{height:37.090625pt;}
.h6{height:37.479688pt;}
.hc{height:38.343750pt;}
.hf{height:41.112500pt;}
.hd{height:41.543750pt;}
.h16{height:42.866250pt;}
.he{height:43.782500pt;}
.h9{height:44.687500pt;}
.h3{height:44.812500pt;}
.ha{height:47.310625pt;}
.h17{height:48.530000pt;}
.h8{height:48.768750pt;}
.h14{height:58.080000pt;}
.h12{height:58.240000pt;}
.h13{height:58.272000pt;}
.h11{height:77.600000pt;}
.h15{height:116.512000pt;}
.h18{height:224.506667pt;}
.h1a{height:242.586667pt;}
.h1e{height:247.426667pt;}
.h1d{height:261.466667pt;}
.h1b{height:270.626667pt;}
.h1c{height:278.586667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:47.200000pt;}
.w8{width:109.472000pt;}
.w6{width:131.680000pt;}
.w5{width:131.712000pt;}
.w7{width:135.546667pt;}
.w9{width:505.853333pt;}
.w3{width:557.693333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.680000pt;}
.x1{left:96.032000pt;}
.x7{left:97.311988pt;}
.x8{left:100.191988pt;}
.xc{left:103.231988pt;}
.xd{left:105.151988pt;}
.xb{left:108.191988pt;}
.x10{left:114.911988pt;}
.x5{left:119.391988pt;}
.x20{left:124.680000pt;}
.x24{left:128.031988pt;}
.x23{left:133.786655pt;}
.x22{left:136.040000pt;}
.x12{left:141.786667pt;}
.x3{left:143.226667pt;}
.x1f{left:155.880000pt;}
.x17{left:162.906655pt;}
.x18{left:168.026655pt;}
.x1d{left:177.800000pt;}
.x16{left:192.026655pt;}
.x6{left:229.146655pt;}
.x19{left:240.026655pt;}
.x9{left:255.586655pt;}
.x13{left:274.146667pt;}
.x11{left:317.026655pt;}
.xa{left:323.426655pt;}
.x1b{left:349.826667pt;}
.x21{left:353.346667pt;}
.x1e{left:365.346667pt;}
.xf{left:372.066655pt;}
.xe{left:373.506655pt;}
.x1c{left:377.026667pt;}
.x4{left:396.866655pt;}
.x1a{left:398.026667pt;}
.x14{left:406.466667pt;}
.x15{left:542.653333pt;}
}




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