
    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_5e91ae7d242f3b39559b41c9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_d2c248673594ce30e20cb549.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.850586;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_826491d48b3b0e82c53b6b4a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_f428f5502bf5da58f97e0e51.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.117188;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.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_75651a1de0541b3ce6834004.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.112305;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_9f442e752deb079ffc4aa8e5.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.104004;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);}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-0.288000px;}
.ls2{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.072000px;}
.ls5{letter-spacing:0.120000px;}
.lsa{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.360000px;}
.ls1{letter-spacing:1.440000px;}
.ls9{letter-spacing:2.160000px;}
.ls7{letter-spacing:4.320000px;}
.ls6{letter-spacing:6.480000px;}
.ls0{letter-spacing:19.440000px;}
.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;}
}
.ws2{word-spacing:-21.420000px;}
.ws3{word-spacing:-21.060000px;}
.ws5{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.712000px;}
.ws1{word-spacing:0.000000px;}
._a{margin-left:-5.064000px;}
._b{margin-left:-3.606720px;}
._9{margin-left:-2.508480px;}
._0{margin-left:-1.457280px;}
._1{width:1.722240px;}
._11{width:3.384000px;}
._14{width:4.968000px;}
._e{width:6.552000px;}
._f{width:7.560000px;}
._12{width:8.928000px;}
._c{width:10.728000px;}
._d{width:11.808000px;}
._7{width:13.176000px;}
._8{width:14.688000px;}
._10{width:16.129440px;}
._6{width:17.141040px;}
._5{width:18.481680px;}
._17{width:19.894320px;}
._15{width:21.456000px;}
._16{width:22.608000px;}
._25{width:24.192000px;}
._18{width:26.712000px;}
._19{width:27.743040px;}
._23{width:29.016000px;}
._1e{width:30.888000px;}
._1f{width:32.040000px;}
._1b{width:33.912000px;}
._1c{width:35.027520px;}
._29{width:36.496080px;}
._1d{width:37.920240px;}
._2{width:38.975760px;}
._24{width:40.248000px;}
._3{width:44.338320px;}
._4{width:45.382560px;}
._21{width:49.824000px;}
._20{width:57.600000px;}
._2c{width:82.008000px;}
._2a{width:89.400000px;}
._2b{width:108.180000px;}
._1a{width:110.676000px;}
._13{width:180.000000px;}
._22{width:181.416000px;}
._28{width:223.320000px;}
._27{width:225.756000px;}
._26{width:228.936000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,10);}
.fc3{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ya4{bottom:12.420000px;}
.y97{bottom:12.600000px;}
.y9d{bottom:12.780000px;}
.ya1{bottom:19.800000px;}
.y91{bottom:20.700000px;}
.ya3{bottom:33.120000px;}
.y96{bottom:33.300000px;}
.y9c{bottom:33.525000px;}
.ya0{bottom:40.500000px;}
.y94{bottom:42.120000px;}
.y9a{bottom:42.165000px;}
.y95{bottom:54.000000px;}
.y9b{bottom:54.225000px;}
.y9f{bottom:61.200000px;}
.y93{bottom:62.820000px;}
.y99{bottom:62.865000px;}
.y6{bottom:71.460000px;}
.y5{bottom:91.980000px;}
.y34{bottom:92.160000px;}
.y4{bottom:111.240000px;}
.y33{bottom:112.500000px;}
.y3{bottom:130.140000px;}
.y32{bottom:131.760000px;}
.y2{bottom:149.256000px;}
.y31{bottom:152.310000px;}
.y71{bottom:175.170000px;}
.y125{bottom:179.670000px;}
.y53{bottom:184.710000px;}
.yd2{bottom:186.330000px;}
.yef{bottom:187.230000px;}
.yfc{bottom:188.130000px;}
.yb4{bottom:191.370000px;}
.y8e{bottom:196.050000px;}
.y124{bottom:200.370000px;}
.y2e{bottom:200.910000px;}
.y70{bottom:206.130000px;}
.y52{bottom:215.850000px;}
.yd1{bottom:217.290000px;}
.yee{bottom:218.370000px;}
.y123{bottom:221.430000px;}
.y2d{bottom:221.610000px;}
.yb3{bottom:222.330000px;}
.y8d{bottom:227.190000px;}
.yfb{bottom:234.030000px;}
.y6f{bottom:237.270000px;}
.y122{bottom:242.130000px;}
.y2c{bottom:242.310000px;}
.y51{bottom:246.810000px;}
.yd0{bottom:248.430000px;}
.yed{bottom:249.330000px;}
.yb2{bottom:253.470000px;}
.y8c{bottom:258.150000px;}
.y121{bottom:262.830000px;}
.y2b{bottom:264.630000px;}
.yfa{bottom:265.170000px;}
.y6e{bottom:268.230000px;}
.y50{bottom:277.950000px;}
.ycf{bottom:279.390000px;}
.yec{bottom:280.470000px;}
.y120{bottom:283.710000px;}
.yb1{bottom:284.430000px;}
.y2a{bottom:286.950000px;}
.y8b{bottom:289.290000px;}
.yf9{bottom:296.130000px;}
.y6d{bottom:299.370000px;}
.y11f{bottom:304.410000px;}
.y4f{bottom:308.910000px;}
.y29{bottom:309.270000px;}
.yce{bottom:310.530000px;}
.yeb{bottom:311.430000px;}
.yb0{bottom:315.570000px;}
.y8a{bottom:320.250000px;}
.yf8{bottom:327.270000px;}
.y6c{bottom:330.330000px;}
.y28{bottom:331.590000px;}
.y11e{bottom:338.430000px;}
.y4e{bottom:340.050000px;}
.ycd{bottom:341.490000px;}
.yea{bottom:342.570000px;}
.yaf{bottom:346.530000px;}
.y89{bottom:351.390000px;}
.y27{bottom:353.910000px;}
.yf7{bottom:358.230000px;}
.y11d{bottom:359.490000px;}
.y6b{bottom:361.470000px;}
.y4d{bottom:371.010000px;}
.ycc{bottom:372.630000px;}
.ye9{bottom:373.530000px;}
.y26{bottom:376.410000px;}
.yae{bottom:377.670000px;}
.y11c{bottom:380.190000px;}
.y88{bottom:382.350000px;}
.yf6{bottom:389.415000px;}
.y6a{bottom:392.475000px;}
.y25{bottom:398.775000px;}
.y11b{bottom:400.935000px;}
.y4c{bottom:402.195000px;}
.ycb{bottom:403.635000px;}
.ye8{bottom:404.715000px;}
.yad{bottom:408.675000px;}
.y87{bottom:413.535000px;}
.yf5{bottom:420.375000px;}
.y24{bottom:421.095000px;}
.y11a{bottom:421.815000px;}
.y69{bottom:423.435000px;}
.y4b{bottom:433.155000px;}
.yca{bottom:434.775000px;}
.ye7{bottom:435.675000px;}
.yac{bottom:439.815000px;}
.y119{bottom:442.695000px;}
.y23{bottom:443.415000px;}
.y86{bottom:444.495000px;}
.yf4{bottom:451.515000px;}
.y68{bottom:454.575000px;}
.y118{bottom:463.395000px;}
.y4a{bottom:464.115000px;}
.y22{bottom:465.735000px;}
.ye6{bottom:466.635000px;}
.yab{bottom:470.775000px;}
.y85{bottom:475.635000px;}
.yf3{bottom:482.475000px;}
.y67{bottom:485.535000px;}
.y21{bottom:488.055000px;}
.y49{bottom:495.255000px;}
.yc9{bottom:496.875000px;}
.y117{bottom:497.415000px;}
.ye5{bottom:497.775000px;}
.yaa{bottom:501.915000px;}
.y84{bottom:506.595000px;}
.y20{bottom:508.755000px;}
.yf2{bottom:513.615000px;}
.y66{bottom:516.675000px;}
.y116{bottom:518.115000px;}
.y48{bottom:526.215000px;}
.yc8{bottom:527.835000px;}
.ye4{bottom:528.735000px;}
.y1f{bottom:529.455000px;}
.ya9{bottom:532.875000px;}
.y13d{bottom:537.375000px;}
.y83{bottom:537.735000px;}
.y115{bottom:538.815000px;}
.yf1{bottom:544.575000px;}
.y65{bottom:547.635000px;}
.y47{bottom:557.355000px;}
.y13c{bottom:558.075000px;}
.yc7{bottom:558.975000px;}
.y114{bottom:559.515000px;}
.ye3{bottom:559.875000px;}
.ya8{bottom:564.015000px;}
.y1e{bottom:565.095000px;}
.y82{bottom:568.695000px;}
.y64{bottom:578.775000px;}
.y113{bottom:580.395000px;}
.y1d{bottom:585.615000px;}
.y46{bottom:588.315000px;}
.yc6{bottom:589.935000px;}
.ye2{bottom:590.835000px;}
.ya7{bottom:594.975000px;}
.y13b{bottom:599.475000px;}
.y81{bottom:599.835000px;}
.yf0{bottom:603.075000px;}
.y1c{bottom:606.135000px;}
.y63{bottom:609.735000px;}
.y112{bottom:614.595000px;}
.y45{bottom:619.455000px;}
.y13a{bottom:620.355000px;}
.yc5{bottom:621.075000px;}
.ye1{bottom:621.975000px;}
.y1b{bottom:626.655000px;}
.y80{bottom:630.795000px;}
.y111{bottom:635.475000px;}
.y62{bottom:640.905000px;}
.y139{bottom:641.085000px;}
.y1a{bottom:647.205000px;}
.ya6{bottom:649.545000px;}
.y44{bottom:650.445000px;}
.yc4{bottom:652.065000px;}
.ye0{bottom:652.965000px;}
.y110{bottom:656.205000px;}
.y138{bottom:661.785000px;}
.y7f{bottom:661.965000px;}
.y19{bottom:667.725000px;}
.y61{bottom:671.865000px;}
.y10f{bottom:676.905000px;}
.y43{bottom:681.585000px;}
.y137{bottom:682.485000px;}
.yc3{bottom:683.205000px;}
.ydf{bottom:684.105000px;}
.y18{bottom:688.245000px;}
.y7e{bottom:692.925000px;}
.ya5{bottom:695.985000px;}
.y60{bottom:703.005000px;}
.y136{bottom:703.185000px;}
.y17{bottom:708.765000px;}
.y10e{bottom:711.105000px;}
.ya2{bottom:711.465000px;}
.y42{bottom:712.545000px;}
.yc2{bottom:714.165000px;}
.yde{bottom:715.065000px;}
.y135{bottom:723.885000px;}
.y7d{bottom:724.065000px;}
.y16{bottom:729.285000px;}
.y10d{bottom:731.985000px;}
.y5f{bottom:733.965000px;}
.y41{bottom:743.685000px;}
.y134{bottom:744.585000px;}
.yc1{bottom:745.305000px;}
.ydd{bottom:746.205000px;}
.y15{bottom:749.805000px;}
.y10c{bottom:752.685000px;}
.y7c{bottom:755.025000px;}
.y5e{bottom:765.105000px;}
.y133{bottom:765.285000px;}
.y14{bottom:770.325000px;}
.y40{bottom:772.305000px;}
.yc0{bottom:776.265000px;}
.ydc{bottom:777.165000px;}
.y9e{bottom:784.365000px;}
.y132{bottom:785.985000px;}
.y7b{bottom:786.165000px;}
.y10b{bottom:786.885000px;}
.y5d{bottom:796.065000px;}
.y3f{bottom:798.045000px;}
.y13{bottom:801.285000px;}
.y131{bottom:806.685000px;}
.ybf{bottom:807.405000px;}
.y10a{bottom:807.585000px;}
.ydb{bottom:808.305000px;}
.y7a{bottom:817.125000px;}
.y12{bottom:821.985000px;}
.y3e{bottom:823.965000px;}
.y5c{bottom:827.205000px;}
.y130{bottom:827.385000px;}
.y109{bottom:828.285000px;}
.ybe{bottom:838.365000px;}
.yda{bottom:839.265000px;}
.y11{bottom:842.685000px;}
.y79{bottom:848.265000px;}
.y108{bottom:848.985000px;}
.y3d{bottom:852.405000px;}
.y5b{bottom:858.165000px;}
.y12f{bottom:868.965000px;}
.ybd{bottom:869.505000px;}
.y107{bottom:869.865000px;}
.yd9{bottom:870.405000px;}
.y10{bottom:873.465000px;}
.y98{bottom:876.705000px;}
.y78{bottom:879.225000px;}
.y3c{bottom:883.365000px;}
.y5a{bottom:889.305000px;}
.y12e{bottom:889.665000px;}
.y106{bottom:890.565000px;}
.yf{bottom:894.210000px;}
.ybc{bottom:900.510000px;}
.yd8{bottom:901.410000px;}
.y77{bottom:910.410000px;}
.y3b{bottom:914.550000px;}
.ye{bottom:914.910000px;}
.y59{bottom:920.310000px;}
.y105{bottom:924.630000px;}
.y12d{bottom:931.110000px;}
.ybb{bottom:931.650000px;}
.yd7{bottom:932.550000px;}
.y76{bottom:941.370000px;}
.y104{bottom:945.330000px;}
.y3a{bottom:945.510000px;}
.yd{bottom:945.870000px;}
.y58{bottom:951.450000px;}
.y12c{bottom:951.810000px;}
.yba{bottom:962.610000px;}
.yd6{bottom:963.510000px;}
.y103{bottom:966.030000px;}
.yc{bottom:968.910000px;}
.y92{bottom:970.710000px;}
.y75{bottom:972.510000px;}
.y39{bottom:976.470000px;}
.y57{bottom:982.410000px;}
.y102{bottom:986.730000px;}
.y12b{bottom:993.210000px;}
.yb9{bottom:993.750000px;}
.yd5{bottom:994.650000px;}
.yb{bottom:997.530000px;}
.y101{bottom:1007.430000px;}
.y38{bottom:1007.610000px;}
.y12a{bottom:1013.910000px;}
.yb8{bottom:1024.710000px;}
.yd4{bottom:1025.610000px;}
.y74{bottom:1027.050000px;}
.ya{bottom:1027.230000px;}
.y129{bottom:1034.610000px;}
.y37{bottom:1038.570000px;}
.y56{bottom:1038.750000px;}
.y100{bottom:1039.290000px;}
.y128{bottom:1055.490000px;}
.yb7{bottom:1055.670000px;}
.y9{bottom:1056.030000px;}
.yd3{bottom:1056.750000px;}
.y73{bottom:1058.010000px;}
.yff{bottom:1059.990000px;}
.y90{bottom:1064.670000px;}
.y36{bottom:1069.710000px;}
.y127{bottom:1076.190000px;}
.yfe{bottom:1080.690000px;}
.y8{bottom:1084.650000px;}
.yb6{bottom:1086.810000px;}
.y55{bottom:1087.710000px;}
.y126{bottom:1096.890000px;}
.y7{bottom:1113.270000px;}
.y35{bottom:1114.710000px;}
.y72{bottom:1114.890000px;}
.yfd{bottom:1115.970000px;}
.yb5{bottom:1117.770000px;}
.y54{bottom:1118.850000px;}
.y8f{bottom:1121.550000px;}
.y30{bottom:1140.270000px;}
.y2f{bottom:1167.480000px;}
.y1{bottom:1192.320000px;}
.hb{height:37.440000px;}
.ha{height:53.573906px;}
.h4{height:55.825312px;}
.hf{height:58.500000px;}
.h3{height:59.383125px;}
.h8{height:63.949219px;}
.h2{height:64.546875px;}
.h7{height:64.898438px;}
.h9{height:74.820586px;}
.he{height:77.940000px;}
.hc{height:79.560000px;}
.hd{height:79.596000px;}
.h5{height:85.052461px;}
.h6{height:85.847344px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:336.135000px;}
.w4{width:337.575000px;}
.w1{width:894.000000px;}
.w2{width:894.059987px;}
.w0{width:894.060000px;}
.x0{left:0.000000px;}
.x10{left:6.480000px;}
.x12{left:7.560000px;}
.xb{left:126.395987px;}
.x1{left:127.475987px;}
.xf{left:129.636000px;}
.x3{left:133.595987px;}
.x7{left:138.095987px;}
.x4{left:174.989987px;}
.xc{left:180.389987px;}
.x8{left:181.469987px;}
.xe{left:262.154987px;}
.x6{left:281.774987px;}
.x5{left:287.174987px;}
.xd{left:297.434987px;}
.x13{left:376.274987px;}
.x11{left:467.205000px;}
.x9{left:471.704987px;}
.xa{left:705.389987px;}
.x2{left:809.099987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.256000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.064000pt;}
.ls5{letter-spacing:0.106667pt;}
.lsa{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.320000pt;}
.ls1{letter-spacing:1.280000pt;}
.ls9{letter-spacing:1.920000pt;}
.ls7{letter-spacing:3.840000pt;}
.ls6{letter-spacing:5.760000pt;}
.ls0{letter-spacing:17.280000pt;}
.ws2{word-spacing:-19.040000pt;}
.ws3{word-spacing:-18.720000pt;}
.ws5{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.744000pt;}
.ws1{word-spacing:0.000000pt;}
._a{margin-left:-4.501333pt;}
._b{margin-left:-3.205973pt;}
._9{margin-left:-2.229760pt;}
._0{margin-left:-1.295360pt;}
._1{width:1.530880pt;}
._11{width:3.008000pt;}
._14{width:4.416000pt;}
._e{width:5.824000pt;}
._f{width:6.720000pt;}
._12{width:7.936000pt;}
._c{width:9.536000pt;}
._d{width:10.496000pt;}
._7{width:11.712000pt;}
._8{width:13.056000pt;}
._10{width:14.337280pt;}
._6{width:15.236480pt;}
._5{width:16.428160pt;}
._17{width:17.683840pt;}
._15{width:19.072000pt;}
._16{width:20.096000pt;}
._25{width:21.504000pt;}
._18{width:23.744000pt;}
._19{width:24.660480pt;}
._23{width:25.792000pt;}
._1e{width:27.456000pt;}
._1f{width:28.480000pt;}
._1b{width:30.144000pt;}
._1c{width:31.135573pt;}
._29{width:32.440960pt;}
._1d{width:33.706880pt;}
._2{width:34.645120pt;}
._24{width:35.776000pt;}
._3{width:39.411840pt;}
._4{width:40.340053pt;}
._21{width:44.288000pt;}
._20{width:51.200000pt;}
._2c{width:72.896000pt;}
._2a{width:79.466667pt;}
._2b{width:96.160000pt;}
._1a{width:98.378667pt;}
._13{width:160.000000pt;}
._22{width:161.258667pt;}
._28{width:198.506667pt;}
._27{width:200.672000pt;}
._26{width:203.498667pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ya4{bottom:11.040000pt;}
.y97{bottom:11.200000pt;}
.y9d{bottom:11.360000pt;}
.ya1{bottom:17.600000pt;}
.y91{bottom:18.400000pt;}
.ya3{bottom:29.440000pt;}
.y96{bottom:29.600000pt;}
.y9c{bottom:29.800000pt;}
.ya0{bottom:36.000000pt;}
.y94{bottom:37.440000pt;}
.y9a{bottom:37.480000pt;}
.y95{bottom:48.000000pt;}
.y9b{bottom:48.200000pt;}
.y9f{bottom:54.400000pt;}
.y93{bottom:55.840000pt;}
.y99{bottom:55.880000pt;}
.y6{bottom:63.520000pt;}
.y5{bottom:81.760000pt;}
.y34{bottom:81.920000pt;}
.y4{bottom:98.880000pt;}
.y33{bottom:100.000000pt;}
.y3{bottom:115.680000pt;}
.y32{bottom:117.120000pt;}
.y2{bottom:132.672000pt;}
.y31{bottom:135.386667pt;}
.y71{bottom:155.706667pt;}
.y125{bottom:159.706667pt;}
.y53{bottom:164.186667pt;}
.yd2{bottom:165.626667pt;}
.yef{bottom:166.426667pt;}
.yfc{bottom:167.226667pt;}
.yb4{bottom:170.106667pt;}
.y8e{bottom:174.266667pt;}
.y124{bottom:178.106667pt;}
.y2e{bottom:178.586667pt;}
.y70{bottom:183.226667pt;}
.y52{bottom:191.866667pt;}
.yd1{bottom:193.146667pt;}
.yee{bottom:194.106667pt;}
.y123{bottom:196.826667pt;}
.y2d{bottom:196.986667pt;}
.yb3{bottom:197.626667pt;}
.y8d{bottom:201.946667pt;}
.yfb{bottom:208.026667pt;}
.y6f{bottom:210.906667pt;}
.y122{bottom:215.226667pt;}
.y2c{bottom:215.386667pt;}
.y51{bottom:219.386667pt;}
.yd0{bottom:220.826667pt;}
.yed{bottom:221.626667pt;}
.yb2{bottom:225.306667pt;}
.y8c{bottom:229.466667pt;}
.y121{bottom:233.626667pt;}
.y2b{bottom:235.226667pt;}
.yfa{bottom:235.706667pt;}
.y6e{bottom:238.426667pt;}
.y50{bottom:247.066667pt;}
.ycf{bottom:248.346667pt;}
.yec{bottom:249.306667pt;}
.y120{bottom:252.186667pt;}
.yb1{bottom:252.826667pt;}
.y2a{bottom:255.066667pt;}
.y8b{bottom:257.146667pt;}
.yf9{bottom:263.226667pt;}
.y6d{bottom:266.106667pt;}
.y11f{bottom:270.586667pt;}
.y4f{bottom:274.586667pt;}
.y29{bottom:274.906667pt;}
.yce{bottom:276.026667pt;}
.yeb{bottom:276.826667pt;}
.yb0{bottom:280.506667pt;}
.y8a{bottom:284.666667pt;}
.yf8{bottom:290.906667pt;}
.y6c{bottom:293.626667pt;}
.y28{bottom:294.746667pt;}
.y11e{bottom:300.826667pt;}
.y4e{bottom:302.266667pt;}
.ycd{bottom:303.546667pt;}
.yea{bottom:304.506667pt;}
.yaf{bottom:308.026667pt;}
.y89{bottom:312.346667pt;}
.y27{bottom:314.586667pt;}
.yf7{bottom:318.426667pt;}
.y11d{bottom:319.546667pt;}
.y6b{bottom:321.306667pt;}
.y4d{bottom:329.786667pt;}
.ycc{bottom:331.226667pt;}
.ye9{bottom:332.026667pt;}
.y26{bottom:334.586667pt;}
.yae{bottom:335.706667pt;}
.y11c{bottom:337.946667pt;}
.y88{bottom:339.866667pt;}
.yf6{bottom:346.146667pt;}
.y6a{bottom:348.866667pt;}
.y25{bottom:354.466667pt;}
.y11b{bottom:356.386667pt;}
.y4c{bottom:357.506667pt;}
.ycb{bottom:358.786667pt;}
.ye8{bottom:359.746667pt;}
.yad{bottom:363.266667pt;}
.y87{bottom:367.586667pt;}
.yf5{bottom:373.666667pt;}
.y24{bottom:374.306667pt;}
.y11a{bottom:374.946667pt;}
.y69{bottom:376.386667pt;}
.y4b{bottom:385.026667pt;}
.yca{bottom:386.466667pt;}
.ye7{bottom:387.266667pt;}
.yac{bottom:390.946667pt;}
.y119{bottom:393.506667pt;}
.y23{bottom:394.146667pt;}
.y86{bottom:395.106667pt;}
.yf4{bottom:401.346667pt;}
.y68{bottom:404.066667pt;}
.y118{bottom:411.906667pt;}
.y4a{bottom:412.546667pt;}
.y22{bottom:413.986667pt;}
.ye6{bottom:414.786667pt;}
.yab{bottom:418.466667pt;}
.y85{bottom:422.786667pt;}
.yf3{bottom:428.866667pt;}
.y67{bottom:431.586667pt;}
.y21{bottom:433.826667pt;}
.y49{bottom:440.226667pt;}
.yc9{bottom:441.666667pt;}
.y117{bottom:442.146667pt;}
.ye5{bottom:442.466667pt;}
.yaa{bottom:446.146667pt;}
.y84{bottom:450.306667pt;}
.y20{bottom:452.226667pt;}
.yf2{bottom:456.546667pt;}
.y66{bottom:459.266667pt;}
.y116{bottom:460.546667pt;}
.y48{bottom:467.746667pt;}
.yc8{bottom:469.186667pt;}
.ye4{bottom:469.986667pt;}
.y1f{bottom:470.626667pt;}
.ya9{bottom:473.666667pt;}
.y13d{bottom:477.666667pt;}
.y83{bottom:477.986667pt;}
.y115{bottom:478.946667pt;}
.yf1{bottom:484.066667pt;}
.y65{bottom:486.786667pt;}
.y47{bottom:495.426667pt;}
.y13c{bottom:496.066667pt;}
.yc7{bottom:496.866667pt;}
.y114{bottom:497.346667pt;}
.ye3{bottom:497.666667pt;}
.ya8{bottom:501.346667pt;}
.y1e{bottom:502.306667pt;}
.y82{bottom:505.506667pt;}
.y64{bottom:514.466667pt;}
.y113{bottom:515.906667pt;}
.y1d{bottom:520.546667pt;}
.y46{bottom:522.946667pt;}
.yc6{bottom:524.386667pt;}
.ye2{bottom:525.186667pt;}
.ya7{bottom:528.866667pt;}
.y13b{bottom:532.866667pt;}
.y81{bottom:533.186667pt;}
.yf0{bottom:536.066667pt;}
.y1c{bottom:538.786667pt;}
.y63{bottom:541.986667pt;}
.y112{bottom:546.306667pt;}
.y45{bottom:550.626667pt;}
.y13a{bottom:551.426667pt;}
.yc5{bottom:552.066667pt;}
.ye1{bottom:552.866667pt;}
.y1b{bottom:557.026667pt;}
.y80{bottom:560.706667pt;}
.y111{bottom:564.866667pt;}
.y62{bottom:569.693333pt;}
.y139{bottom:569.853333pt;}
.y1a{bottom:575.293333pt;}
.ya6{bottom:577.373333pt;}
.y44{bottom:578.173333pt;}
.yc4{bottom:579.613333pt;}
.ye0{bottom:580.413333pt;}
.y110{bottom:583.293333pt;}
.y138{bottom:588.253333pt;}
.y7f{bottom:588.413333pt;}
.y19{bottom:593.533333pt;}
.y61{bottom:597.213333pt;}
.y10f{bottom:601.693333pt;}
.y43{bottom:605.853333pt;}
.y137{bottom:606.653333pt;}
.yc3{bottom:607.293333pt;}
.ydf{bottom:608.093333pt;}
.y18{bottom:611.773333pt;}
.y7e{bottom:615.933333pt;}
.ya5{bottom:618.653333pt;}
.y60{bottom:624.893333pt;}
.y136{bottom:625.053333pt;}
.y17{bottom:630.013333pt;}
.y10e{bottom:632.093333pt;}
.ya2{bottom:632.413333pt;}
.y42{bottom:633.373333pt;}
.yc2{bottom:634.813333pt;}
.yde{bottom:635.613333pt;}
.y135{bottom:643.453333pt;}
.y7d{bottom:643.613333pt;}
.y16{bottom:648.253333pt;}
.y10d{bottom:650.653333pt;}
.y5f{bottom:652.413333pt;}
.y41{bottom:661.053333pt;}
.y134{bottom:661.853333pt;}
.yc1{bottom:662.493333pt;}
.ydd{bottom:663.293333pt;}
.y15{bottom:666.493333pt;}
.y10c{bottom:669.053333pt;}
.y7c{bottom:671.133333pt;}
.y5e{bottom:680.093333pt;}
.y133{bottom:680.253333pt;}
.y14{bottom:684.733333pt;}
.y40{bottom:686.493333pt;}
.yc0{bottom:690.013333pt;}
.ydc{bottom:690.813333pt;}
.y9e{bottom:697.213333pt;}
.y132{bottom:698.653333pt;}
.y7b{bottom:698.813333pt;}
.y10b{bottom:699.453333pt;}
.y5d{bottom:707.613333pt;}
.y3f{bottom:709.373333pt;}
.y13{bottom:712.253333pt;}
.y131{bottom:717.053333pt;}
.ybf{bottom:717.693333pt;}
.y10a{bottom:717.853333pt;}
.ydb{bottom:718.493333pt;}
.y7a{bottom:726.333333pt;}
.y12{bottom:730.653333pt;}
.y3e{bottom:732.413333pt;}
.y5c{bottom:735.293333pt;}
.y130{bottom:735.453333pt;}
.y109{bottom:736.253333pt;}
.ybe{bottom:745.213333pt;}
.yda{bottom:746.013333pt;}
.y11{bottom:749.053333pt;}
.y79{bottom:754.013333pt;}
.y108{bottom:754.653333pt;}
.y3d{bottom:757.693333pt;}
.y5b{bottom:762.813333pt;}
.y12f{bottom:772.413333pt;}
.ybd{bottom:772.893333pt;}
.y107{bottom:773.213333pt;}
.yd9{bottom:773.693333pt;}
.y10{bottom:776.413333pt;}
.y98{bottom:779.293333pt;}
.y78{bottom:781.533333pt;}
.y3c{bottom:785.213333pt;}
.y5a{bottom:790.493333pt;}
.y12e{bottom:790.813333pt;}
.y106{bottom:791.613333pt;}
.yf{bottom:794.853333pt;}
.ybc{bottom:800.453333pt;}
.yd8{bottom:801.253333pt;}
.y77{bottom:809.253333pt;}
.y3b{bottom:812.933333pt;}
.ye{bottom:813.253333pt;}
.y59{bottom:818.053333pt;}
.y105{bottom:821.893333pt;}
.y12d{bottom:827.653333pt;}
.ybb{bottom:828.133333pt;}
.yd7{bottom:828.933333pt;}
.y76{bottom:836.773333pt;}
.y104{bottom:840.293333pt;}
.y3a{bottom:840.453333pt;}
.yd{bottom:840.773333pt;}
.y58{bottom:845.733333pt;}
.y12c{bottom:846.053333pt;}
.yba{bottom:855.653333pt;}
.yd6{bottom:856.453333pt;}
.y103{bottom:858.693333pt;}
.yc{bottom:861.253333pt;}
.y92{bottom:862.853333pt;}
.y75{bottom:864.453333pt;}
.y39{bottom:867.973333pt;}
.y57{bottom:873.253333pt;}
.y102{bottom:877.093333pt;}
.y12b{bottom:882.853333pt;}
.yb9{bottom:883.333333pt;}
.yd5{bottom:884.133333pt;}
.yb{bottom:886.693333pt;}
.y101{bottom:895.493333pt;}
.y38{bottom:895.653333pt;}
.y12a{bottom:901.253333pt;}
.yb8{bottom:910.853333pt;}
.yd4{bottom:911.653333pt;}
.y74{bottom:912.933333pt;}
.ya{bottom:913.093333pt;}
.y129{bottom:919.653333pt;}
.y37{bottom:923.173333pt;}
.y56{bottom:923.333333pt;}
.y100{bottom:923.813333pt;}
.y128{bottom:938.213333pt;}
.yb7{bottom:938.373333pt;}
.y9{bottom:938.693333pt;}
.yd3{bottom:939.333333pt;}
.y73{bottom:940.453333pt;}
.yff{bottom:942.213333pt;}
.y90{bottom:946.373333pt;}
.y36{bottom:950.853333pt;}
.y127{bottom:956.613333pt;}
.yfe{bottom:960.613333pt;}
.y8{bottom:964.133333pt;}
.yb6{bottom:966.053333pt;}
.y55{bottom:966.853333pt;}
.y126{bottom:975.013333pt;}
.y7{bottom:989.573333pt;}
.y35{bottom:990.853333pt;}
.y72{bottom:991.013333pt;}
.yfd{bottom:991.973333pt;}
.yb5{bottom:993.573333pt;}
.y54{bottom:994.533333pt;}
.y8f{bottom:996.933333pt;}
.y30{bottom:1013.573333pt;}
.y2f{bottom:1037.760000pt;}
.y1{bottom:1059.840000pt;}
.hb{height:33.280000pt;}
.ha{height:47.621250pt;}
.h4{height:49.622500pt;}
.hf{height:52.000000pt;}
.h3{height:52.785000pt;}
.h8{height:56.843750pt;}
.h2{height:57.375000pt;}
.h7{height:57.687500pt;}
.h9{height:66.507188pt;}
.he{height:69.280000pt;}
.hc{height:70.720000pt;}
.hd{height:70.752000pt;}
.h5{height:75.602187pt;}
.h6{height:76.308750pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:298.786667pt;}
.w4{width:300.066667pt;}
.w1{width:794.666667pt;}
.w2{width:794.719988pt;}
.w0{width:794.720000pt;}
.x0{left:0.000000pt;}
.x10{left:5.760000pt;}
.x12{left:6.720000pt;}
.xb{left:112.351988pt;}
.x1{left:113.311988pt;}
.xf{left:115.232000pt;}
.x3{left:118.751988pt;}
.x7{left:122.751988pt;}
.x4{left:155.546655pt;}
.xc{left:160.346655pt;}
.x8{left:161.306655pt;}
.xe{left:233.026655pt;}
.x6{left:250.466655pt;}
.x5{left:255.266655pt;}
.xd{left:264.386655pt;}
.x13{left:334.466655pt;}
.x11{left:415.293333pt;}
.x9{left:419.293321pt;}
.xa{left:627.013321pt;}
.x2{left:719.199988pt;}
}




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