
    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_297b84c47fc9c5c9b07b1c1a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_c38133e23c976b757a59fca1.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_75bc3ad32c573a49be3c5113.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_c78bee88644704eafbfe8644.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.783691;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_cf5b54b838ee9f69dcdff9c4.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_b43d203b652c158fb613c73f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938965;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_477ad3a199a9dbc52a307b7a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.978027;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_6c1e248c9c252c5a61d9b0c3.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.978027;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:ffa;src:url('chunks/assets/font_de35596123c5e1efb8be07ad.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.973633;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:ffb;src:url('chunks/assets/font_5a71be84f4153ae9440f06c7.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.973633;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);}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-0.612000px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.033840px;}
.ls7{letter-spacing:0.070560px;}
.lsa{letter-spacing:0.106800px;}
.ls2{letter-spacing:0.119520px;}
.lsd{letter-spacing:0.120000px;}
.ls1{letter-spacing:0.180000px;}
.lse{letter-spacing:0.259920px;}
.lsf{letter-spacing:0.298800px;}
.ls9{letter-spacing:0.306600px;}
.ls0{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.540000px;}
.ls11{letter-spacing:16.506720px;}
.ls4{letter-spacing:38.082720px;}
.ls8{letter-spacing:43.842720px;}
.ls6{letter-spacing:44.562720px;}
.ls10{letter-spacing:46.002720px;}
.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;}
}
.ws4{word-spacing:-59.760000px;}
.ws1{word-spacing:-15.300000px;}
.ws5{word-spacing:-15.246600px;}
.ws0{word-spacing:-14.940000px;}
.ws2{word-spacing:-13.500000px;}
.ws3{word-spacing:0.000000px;}
._7{margin-left:-3.960000px;}
._6{margin-left:-2.952000px;}
._0{margin-left:-1.376880px;}
._2{width:1.489920px;}
._8{width:2.571600px;}
._1{width:3.855840px;}
._9{width:4.916640px;}
._5{width:85.656000px;}
._4{width:687.306000px;}
._3{width:748.236000px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:2.880000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y6c{bottom:3.240000px;}
.yf1{bottom:11.880000px;}
.yfe{bottom:20.340000px;}
.yfc{bottom:20.514000px;}
.y70{bottom:20.520000px;}
.y6e{bottom:20.565000px;}
.ya{bottom:58.320000px;}
.yf5{bottom:76.725000px;}
.y9{bottom:76.896000px;}
.ya6{bottom:111.276000px;}
.ya5{bottom:114.516000px;}
.y94{bottom:121.356000px;}
.yc2{bottom:122.076000px;}
.yeb{bottom:124.236000px;}
.ydb{bottom:126.576000px;}
.y3a{bottom:127.836000px;}
.yba{bottom:128.556000px;}
.ya4{bottom:131.796000px;}
.y9b{bottom:132.516000px;}
.y93{bottom:138.636000px;}
.yc1{bottom:139.356000px;}
.yea{bottom:141.516000px;}
.yfb{bottom:143.676000px;}
.y6a{bottom:143.856000px;}
.y39{bottom:145.116000px;}
.ya3{bottom:149.076000px;}
.y9a{bottom:149.796000px;}
.y92{bottom:155.910000px;}
.yc0{bottom:156.630000px;}
.ye9{bottom:158.790000px;}
.y69{bottom:161.130000px;}
.y38{bottom:162.210000px;}
.ya2{bottom:166.350000px;}
.y99{bottom:167.070000px;}
.ybf{bottom:171.390000px;}
.y91{bottom:173.010000px;}
.ye8{bottom:176.070000px;}
.y68{bottom:178.410000px;}
.yfa{bottom:178.950000px;}
.y37{bottom:179.490000px;}
.ya1{bottom:183.450000px;}
.y98{bottom:184.350000px;}
.ybe{bottom:189.390000px;}
.y90{bottom:190.290000px;}
.ye7{bottom:193.350000px;}
.y67{bottom:195.510000px;}
.y36{bottom:196.770000px;}
.ya0{bottom:200.730000px;}
.y97{bottom:201.450000px;}
.yb9{bottom:201.630000px;}
.ybd{bottom:207.390000px;}
.y8f{bottom:207.570000px;}
.ye6{bottom:210.450000px;}
.y66{bottom:212.790000px;}
.y35{bottom:214.050000px;}
.yf9{bottom:214.950000px;}
.y9f{bottom:218.010000px;}
.yf8{bottom:218.370000px;}
.y96{bottom:218.730000px;}
.yb8{bottom:218.910000px;}
.y8e{bottom:224.850000px;}
.ye5{bottom:227.730000px;}
.y65{bottom:230.070000px;}
.y34{bottom:231.330000px;}
.y95{bottom:232.770000px;}
.y9e{bottom:235.290000px;}
.yb7{bottom:236.010000px;}
.y8d{bottom:242.130000px;}
.ybc{bottom:242.490000px;}
.ye4{bottom:245.010000px;}
.y64{bottom:247.350000px;}
.y33{bottom:248.430000px;}
.y9d{bottom:252.570000px;}
.yb6{bottom:253.290000px;}
.yf7{bottom:257.250000px;}
.y8c{bottom:259.230000px;}
.ybb{bottom:260.490000px;}
.ye3{bottom:262.290000px;}
.y63{bottom:264.630000px;}
.y32{bottom:265.710000px;}
.y9c{bottom:266.430000px;}
.yb5{bottom:270.570000px;}
.y8b{bottom:276.510000px;}
.ye2{bottom:279.570000px;}
.y62{bottom:281.730000px;}
.y31{bottom:282.990000px;}
.yb4{bottom:285.330000px;}
.y8a{bottom:293.790000px;}
.yf6{bottom:295.950000px;}
.ye1{bottom:296.850000px;}
.y61{bottom:299.010000px;}
.y30{bottom:300.270000px;}
.yb3{bottom:303.330000px;}
.y89{bottom:311.070000px;}
.ye0{bottom:313.950000px;}
.y60{bottom:316.290000px;}
.y2f{bottom:317.595000px;}
.yb2{bottom:321.375000px;}
.yda{bottom:326.055000px;}
.y88{bottom:328.395000px;}
.ydf{bottom:331.275000px;}
.y5f{bottom:333.615000px;}
.y2e{bottom:334.875000px;}
.yb1{bottom:339.375000px;}
.yd9{bottom:343.335000px;}
.y87{bottom:345.675000px;}
.yde{bottom:348.555000px;}
.y5e{bottom:350.895000px;}
.y2d{bottom:351.975000px;}
.yb0{bottom:357.375000px;}
.yd8{bottom:360.615000px;}
.y86{bottom:362.775000px;}
.ydd{bottom:365.835000px;}
.y5d{bottom:368.175000px;}
.y2c{bottom:369.255000px;}
.yaf{bottom:375.375000px;}
.yd7{bottom:377.895000px;}
.ydc{bottom:379.875000px;}
.y85{bottom:380.055000px;}
.y115{bottom:383.115000px;}
.y5c{bottom:385.275000px;}
.y2b{bottom:386.535000px;}
.yae{bottom:393.375000px;}
.yd6{bottom:395.175000px;}
.y84{bottom:397.335000px;}
.y114{bottom:400.395000px;}
.y5b{bottom:402.555000px;}
.y2a{bottom:403.815000px;}
.yf4{bottom:407.955000px;}
.yad{bottom:411.375000px;}
.yd5{bottom:412.275000px;}
.y83{bottom:414.615000px;}
.y113{bottom:417.495000px;}
.y5a{bottom:419.835000px;}
.y29{bottom:421.095000px;}
.yac{bottom:429.375000px;}
.yd4{bottom:429.555000px;}
.y82{bottom:431.895000px;}
.y112{bottom:434.775000px;}
.y59{bottom:437.115000px;}
.y28{bottom:438.375000px;}
.yd3{bottom:446.835000px;}
.yf3{bottom:447.015000px;}
.yab{bottom:447.375000px;}
.y81{bottom:449.175000px;}
.y111{bottom:452.055000px;}
.y58{bottom:454.395000px;}
.y27{bottom:455.475000px;}
.yd2{bottom:464.115000px;}
.yaa{bottom:465.375000px;}
.y80{bottom:466.275000px;}
.y110{bottom:469.335000px;}
.y57{bottom:471.675000px;}
.y26{bottom:472.755000px;}
.yd1{bottom:481.395000px;}
.ya9{bottom:483.375000px;}
.y7f{bottom:483.555000px;}
.yf2{bottom:485.895000px;}
.y10f{bottom:486.615000px;}
.y56{bottom:488.775000px;}
.y25{bottom:490.035000px;}
.yd0{bottom:498.675000px;}
.y10e{bottom:500.475000px;}
.y7e{bottom:500.835000px;}
.ya8{bottom:501.375000px;}
.y55{bottom:506.055000px;}
.y24{bottom:507.315000px;}
.ycf{bottom:515.775000px;}
.y7d{bottom:518.115000px;}
.ya7{bottom:519.375000px;}
.y54{bottom:523.335000px;}
.y23{bottom:524.595000px;}
.yf0{bottom:524.955000px;}
.yce{bottom:533.055000px;}
.y7c{bottom:535.395000px;}
.y53{bottom:540.615000px;}
.y22{bottom:541.875000px;}
.ycd{bottom:550.335000px;}
.y7b{bottom:552.675000px;}
.y52{bottom:557.895000px;}
.y21{bottom:558.975000px;}
.yef{bottom:564.015000px;}
.ycc{bottom:567.615000px;}
.y7a{bottom:569.805000px;}
.y51{bottom:575.205000px;}
.y20{bottom:576.285000px;}
.ycb{bottom:582.405000px;}
.y79{bottom:587.085000px;}
.yee{bottom:588.525000px;}
.y50{bottom:592.305000px;}
.y1f{bottom:593.565000px;}
.yca{bottom:600.405000px;}
.y78{bottom:604.365000px;}
.yed{bottom:605.805000px;}
.y4f{bottom:609.585000px;}
.y1e{bottom:610.845000px;}
.yc9{bottom:618.405000px;}
.y77{bottom:621.645000px;}
.yec{bottom:623.265000px;}
.y4e{bottom:626.865000px;}
.y1d{bottom:628.125000px;}
.yc8{bottom:636.405000px;}
.y76{bottom:638.925000px;}
.y4d{bottom:644.145000px;}
.y1c{bottom:645.225000px;}
.yc7{bottom:654.405000px;}
.y75{bottom:656.025000px;}
.y4c{bottom:661.425000px;}
.y1b{bottom:662.505000px;}
.yc6{bottom:672.405000px;}
.y74{bottom:673.305000px;}
.y10d{bottom:677.085000px;}
.y4b{bottom:678.525000px;}
.y1a{bottom:679.785000px;}
.y73{bottom:688.065000px;}
.yc5{bottom:690.405000px;}
.y10c{bottom:694.365000px;}
.y4a{bottom:695.805000px;}
.y19{bottom:697.065000px;}
.y72{bottom:706.065000px;}
.yc4{bottom:708.405000px;}
.y10b{bottom:711.645000px;}
.y49{bottom:713.085000px;}
.y18{bottom:714.345000px;}
.yc3{bottom:726.405000px;}
.y10a{bottom:728.925000px;}
.y48{bottom:730.365000px;}
.y17{bottom:731.625000px;}
.y71{bottom:741.345000px;}
.y109{bottom:746.025000px;}
.y47{bottom:747.645000px;}
.y16{bottom:748.725000px;}
.y108{bottom:763.305000px;}
.y46{bottom:764.925000px;}
.y15{bottom:766.005000px;}
.y6f{bottom:776.625000px;}
.y107{bottom:780.585000px;}
.y45{bottom:782.025000px;}
.y14{bottom:783.285000px;}
.y106{bottom:797.865000px;}
.y44{bottom:799.305000px;}
.y13{bottom:800.565000px;}
.y6d{bottom:811.905000px;}
.y105{bottom:815.145000px;}
.y43{bottom:816.585000px;}
.y12{bottom:817.845000px;}
.y104{bottom:832.470000px;}
.y42{bottom:833.910000px;}
.y11{bottom:837.330000px;}
.y6b{bottom:847.230000px;}
.y103{bottom:849.570000px;}
.y41{bottom:851.190000px;}
.y10{bottom:854.970000px;}
.y102{bottom:866.850000px;}
.y40{bottom:868.470000px;}
.yf{bottom:874.050000px;}
.y101{bottom:884.130000px;}
.y3f{bottom:885.570000px;}
.ye{bottom:892.590000px;}
.y100{bottom:901.410000px;}
.y3e{bottom:902.850000px;}
.yd{bottom:910.590000px;}
.yff{bottom:918.690000px;}
.y3d{bottom:920.130000px;}
.yc{bottom:931.290000px;}
.yfd{bottom:933.450000px;}
.y3c{bottom:937.410000px;}
.yb{bottom:951.810000px;}
.y3b{bottom:954.690000px;}
.y8{bottom:973.050000px;}
.y7{bottom:991.770000px;}
.y6{bottom:1007.610000px;}
.y5{bottom:1025.430000px;}
.y4{bottom:1042.170000px;}
.y3{bottom:1084.140000px;}
.y2{bottom:1102.680000px;}
.y1{bottom:1119.960000px;}
.h13{height:2.082656px;}
.h9{height:17.100000px;}
.hc{height:17.280000px;}
.hd{height:17.316000px;}
.he{height:34.380000px;}
.ha{height:34.416000px;}
.hb{height:34.560000px;}
.h5{height:39.049805px;}
.h4{height:42.164648px;}
.h1{height:43.215117px;}
.h14{height:43.506914px;}
.h11{height:45.024258px;}
.hf{height:45.549492px;}
.h8{height:45.753750px;}
.h7{height:46.736719px;}
.h2{height:47.901094px;}
.h3{height:50.800781px;}
.h6{height:65.884219px;}
.h12{height:80.280000px;}
.h10{height:270.615000px;}
.h0{height:1188.000000px;}
.w15{width:102.060000px;}
.we{width:113.220000px;}
.w2{width:124.560000px;}
.wb{width:145.080000px;}
.w12{width:146.700000px;}
.w5{width:150.120000px;}
.w8{width:155.880000px;}
.w6{width:175.890000px;}
.w13{width:183.270000px;}
.wc{width:187.590000px;}
.wd{width:218.010000px;}
.w7{width:228.810000px;}
.w10{width:257.790000px;}
.wa{width:266.610000px;}
.w4{width:268.050000px;}
.w9{width:276.735000px;}
.w17{width:282.270000px;}
.wf{width:301.395000px;}
.w3{width:306.615000px;}
.w16{width:314.715000px;}
.w14{width:345.855000px;}
.w11{width:700.665000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x20{left:1.080000px;}
.x10{left:7.740000px;}
.x1c{left:18.180000px;}
.x1e{left:58.545000px;}
.x1f{left:91.800000px;}
.x1{left:108.035986px;}
.x22{left:118.836000px;}
.x1b{left:119.916000px;}
.x8{left:123.875986px;}
.x2{left:135.755986px;}
.xf{left:162.029986px;}
.x4{left:169.769986px;}
.x9{left:178.229986px;}
.x7{left:187.589986px;}
.x25{left:211.530000px;}
.x11{left:234.030000px;}
.x1d{left:236.190000px;}
.x19{left:254.550000px;}
.x27{left:255.629986px;}
.x15{left:259.590000px;}
.x17{left:265.350000px;}
.x23{left:267.870000px;}
.x28{left:329.474986px;}
.xb{left:333.794986px;}
.x21{left:350.319000px;}
.xd{left:398.954986px;}
.xe{left:403.994986px;}
.x6{left:409.034986px;}
.xc{left:412.454986px;}
.x5{left:424.874986px;}
.x16{left:436.215000px;}
.x1a{left:442.875000px;}
.x24{left:453.495000px;}
.xa{left:459.074986px;}
.x26{left:527.145000px;}
.x3{left:531.104986px;}
.x12{left:541.365000px;}
.x18{left:542.805000px;}
.x14{left:810.149986px;}
.x13{left:843.809986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-0.544000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.030080pt;}
.ls7{letter-spacing:0.062720pt;}
.lsa{letter-spacing:0.094933pt;}
.ls2{letter-spacing:0.106240pt;}
.lsd{letter-spacing:0.106667pt;}
.ls1{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.231040pt;}
.lsf{letter-spacing:0.265600pt;}
.ls9{letter-spacing:0.272533pt;}
.ls0{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.480000pt;}
.ls11{letter-spacing:14.672640pt;}
.ls4{letter-spacing:33.851307pt;}
.ls8{letter-spacing:38.971307pt;}
.ls6{letter-spacing:39.611307pt;}
.ls10{letter-spacing:40.891307pt;}
.ws4{word-spacing:-53.120000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.552533pt;}
.ws0{word-spacing:-13.280000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws3{word-spacing:0.000000pt;}
._7{margin-left:-3.520000pt;}
._6{margin-left:-2.624000pt;}
._0{margin-left:-1.223893pt;}
._2{width:1.324373pt;}
._8{width:2.285867pt;}
._1{width:3.427413pt;}
._9{width:4.370347pt;}
._5{width:76.138667pt;}
._4{width:610.938667pt;}
._3{width:665.098667pt;}
.fs4{font-size:2.560000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y6c{bottom:2.880000pt;}
.yf1{bottom:10.560000pt;}
.yfe{bottom:18.080000pt;}
.yfc{bottom:18.234667pt;}
.y70{bottom:18.240000pt;}
.y6e{bottom:18.280000pt;}
.ya{bottom:51.840000pt;}
.yf5{bottom:68.200000pt;}
.y9{bottom:68.352000pt;}
.ya6{bottom:98.912000pt;}
.ya5{bottom:101.792000pt;}
.y94{bottom:107.872000pt;}
.yc2{bottom:108.512000pt;}
.yeb{bottom:110.432000pt;}
.ydb{bottom:112.512000pt;}
.y3a{bottom:113.632000pt;}
.yba{bottom:114.272000pt;}
.ya4{bottom:117.152000pt;}
.y9b{bottom:117.792000pt;}
.y93{bottom:123.232000pt;}
.yc1{bottom:123.872000pt;}
.yea{bottom:125.792000pt;}
.yfb{bottom:127.712000pt;}
.y6a{bottom:127.872000pt;}
.y39{bottom:128.992000pt;}
.ya3{bottom:132.512000pt;}
.y9a{bottom:133.152000pt;}
.y92{bottom:138.586667pt;}
.yc0{bottom:139.226667pt;}
.ye9{bottom:141.146667pt;}
.y69{bottom:143.226667pt;}
.y38{bottom:144.186667pt;}
.ya2{bottom:147.866667pt;}
.y99{bottom:148.506667pt;}
.ybf{bottom:152.346667pt;}
.y91{bottom:153.786667pt;}
.ye8{bottom:156.506667pt;}
.y68{bottom:158.586667pt;}
.yfa{bottom:159.066667pt;}
.y37{bottom:159.546667pt;}
.ya1{bottom:163.066667pt;}
.y98{bottom:163.866667pt;}
.ybe{bottom:168.346667pt;}
.y90{bottom:169.146667pt;}
.ye7{bottom:171.866667pt;}
.y67{bottom:173.786667pt;}
.y36{bottom:174.906667pt;}
.ya0{bottom:178.426667pt;}
.y97{bottom:179.066667pt;}
.yb9{bottom:179.226667pt;}
.ybd{bottom:184.346667pt;}
.y8f{bottom:184.506667pt;}
.ye6{bottom:187.066667pt;}
.y66{bottom:189.146667pt;}
.y35{bottom:190.266667pt;}
.yf9{bottom:191.066667pt;}
.y9f{bottom:193.786667pt;}
.yf8{bottom:194.106667pt;}
.y96{bottom:194.426667pt;}
.yb8{bottom:194.586667pt;}
.y8e{bottom:199.866667pt;}
.ye5{bottom:202.426667pt;}
.y65{bottom:204.506667pt;}
.y34{bottom:205.626667pt;}
.y95{bottom:206.906667pt;}
.y9e{bottom:209.146667pt;}
.yb7{bottom:209.786667pt;}
.y8d{bottom:215.226667pt;}
.ybc{bottom:215.546667pt;}
.ye4{bottom:217.786667pt;}
.y64{bottom:219.866667pt;}
.y33{bottom:220.826667pt;}
.y9d{bottom:224.506667pt;}
.yb6{bottom:225.146667pt;}
.yf7{bottom:228.666667pt;}
.y8c{bottom:230.426667pt;}
.ybb{bottom:231.546667pt;}
.ye3{bottom:233.146667pt;}
.y63{bottom:235.226667pt;}
.y32{bottom:236.186667pt;}
.y9c{bottom:236.826667pt;}
.yb5{bottom:240.506667pt;}
.y8b{bottom:245.786667pt;}
.ye2{bottom:248.506667pt;}
.y62{bottom:250.426667pt;}
.y31{bottom:251.546667pt;}
.yb4{bottom:253.626667pt;}
.y8a{bottom:261.146667pt;}
.yf6{bottom:263.066667pt;}
.ye1{bottom:263.866667pt;}
.y61{bottom:265.786667pt;}
.y30{bottom:266.906667pt;}
.yb3{bottom:269.626667pt;}
.y89{bottom:276.506667pt;}
.ye0{bottom:279.066667pt;}
.y60{bottom:281.146667pt;}
.y2f{bottom:282.306667pt;}
.yb2{bottom:285.666667pt;}
.yda{bottom:289.826667pt;}
.y88{bottom:291.906667pt;}
.ydf{bottom:294.466667pt;}
.y5f{bottom:296.546667pt;}
.y2e{bottom:297.666667pt;}
.yb1{bottom:301.666667pt;}
.yd9{bottom:305.186667pt;}
.y87{bottom:307.266667pt;}
.yde{bottom:309.826667pt;}
.y5e{bottom:311.906667pt;}
.y2d{bottom:312.866667pt;}
.yb0{bottom:317.666667pt;}
.yd8{bottom:320.546667pt;}
.y86{bottom:322.466667pt;}
.ydd{bottom:325.186667pt;}
.y5d{bottom:327.266667pt;}
.y2c{bottom:328.226667pt;}
.yaf{bottom:333.666667pt;}
.yd7{bottom:335.906667pt;}
.ydc{bottom:337.666667pt;}
.y85{bottom:337.826667pt;}
.y115{bottom:340.546667pt;}
.y5c{bottom:342.466667pt;}
.y2b{bottom:343.586667pt;}
.yae{bottom:349.666667pt;}
.yd6{bottom:351.266667pt;}
.y84{bottom:353.186667pt;}
.y114{bottom:355.906667pt;}
.y5b{bottom:357.826667pt;}
.y2a{bottom:358.946667pt;}
.yf4{bottom:362.626667pt;}
.yad{bottom:365.666667pt;}
.yd5{bottom:366.466667pt;}
.y83{bottom:368.546667pt;}
.y113{bottom:371.106667pt;}
.y5a{bottom:373.186667pt;}
.y29{bottom:374.306667pt;}
.yac{bottom:381.666667pt;}
.yd4{bottom:381.826667pt;}
.y82{bottom:383.906667pt;}
.y112{bottom:386.466667pt;}
.y59{bottom:388.546667pt;}
.y28{bottom:389.666667pt;}
.yd3{bottom:397.186667pt;}
.yf3{bottom:397.346667pt;}
.yab{bottom:397.666667pt;}
.y81{bottom:399.266667pt;}
.y111{bottom:401.826667pt;}
.y58{bottom:403.906667pt;}
.y27{bottom:404.866667pt;}
.yd2{bottom:412.546667pt;}
.yaa{bottom:413.666667pt;}
.y80{bottom:414.466667pt;}
.y110{bottom:417.186667pt;}
.y57{bottom:419.266667pt;}
.y26{bottom:420.226667pt;}
.yd1{bottom:427.906667pt;}
.ya9{bottom:429.666667pt;}
.y7f{bottom:429.826667pt;}
.yf2{bottom:431.906667pt;}
.y10f{bottom:432.546667pt;}
.y56{bottom:434.466667pt;}
.y25{bottom:435.586667pt;}
.yd0{bottom:443.266667pt;}
.y10e{bottom:444.866667pt;}
.y7e{bottom:445.186667pt;}
.ya8{bottom:445.666667pt;}
.y55{bottom:449.826667pt;}
.y24{bottom:450.946667pt;}
.ycf{bottom:458.466667pt;}
.y7d{bottom:460.546667pt;}
.ya7{bottom:461.666667pt;}
.y54{bottom:465.186667pt;}
.y23{bottom:466.306667pt;}
.yf0{bottom:466.626667pt;}
.yce{bottom:473.826667pt;}
.y7c{bottom:475.906667pt;}
.y53{bottom:480.546667pt;}
.y22{bottom:481.666667pt;}
.ycd{bottom:489.186667pt;}
.y7b{bottom:491.266667pt;}
.y52{bottom:495.906667pt;}
.y21{bottom:496.866667pt;}
.yef{bottom:501.346667pt;}
.ycc{bottom:504.546667pt;}
.y7a{bottom:506.493333pt;}
.y51{bottom:511.293333pt;}
.y20{bottom:512.253333pt;}
.ycb{bottom:517.693333pt;}
.y79{bottom:521.853333pt;}
.yee{bottom:523.133333pt;}
.y50{bottom:526.493333pt;}
.y1f{bottom:527.613333pt;}
.yca{bottom:533.693333pt;}
.y78{bottom:537.213333pt;}
.yed{bottom:538.493333pt;}
.y4f{bottom:541.853333pt;}
.y1e{bottom:542.973333pt;}
.yc9{bottom:549.693333pt;}
.y77{bottom:552.573333pt;}
.yec{bottom:554.013333pt;}
.y4e{bottom:557.213333pt;}
.y1d{bottom:558.333333pt;}
.yc8{bottom:565.693333pt;}
.y76{bottom:567.933333pt;}
.y4d{bottom:572.573333pt;}
.y1c{bottom:573.533333pt;}
.yc7{bottom:581.693333pt;}
.y75{bottom:583.133333pt;}
.y4c{bottom:587.933333pt;}
.y1b{bottom:588.893333pt;}
.yc6{bottom:597.693333pt;}
.y74{bottom:598.493333pt;}
.y10d{bottom:601.853333pt;}
.y4b{bottom:603.133333pt;}
.y1a{bottom:604.253333pt;}
.y73{bottom:611.613333pt;}
.yc5{bottom:613.693333pt;}
.y10c{bottom:617.213333pt;}
.y4a{bottom:618.493333pt;}
.y19{bottom:619.613333pt;}
.y72{bottom:627.613333pt;}
.yc4{bottom:629.693333pt;}
.y10b{bottom:632.573333pt;}
.y49{bottom:633.853333pt;}
.y18{bottom:634.973333pt;}
.yc3{bottom:645.693333pt;}
.y10a{bottom:647.933333pt;}
.y48{bottom:649.213333pt;}
.y17{bottom:650.333333pt;}
.y71{bottom:658.973333pt;}
.y109{bottom:663.133333pt;}
.y47{bottom:664.573333pt;}
.y16{bottom:665.533333pt;}
.y108{bottom:678.493333pt;}
.y46{bottom:679.933333pt;}
.y15{bottom:680.893333pt;}
.y6f{bottom:690.333333pt;}
.y107{bottom:693.853333pt;}
.y45{bottom:695.133333pt;}
.y14{bottom:696.253333pt;}
.y106{bottom:709.213333pt;}
.y44{bottom:710.493333pt;}
.y13{bottom:711.613333pt;}
.y6d{bottom:721.693333pt;}
.y105{bottom:724.573333pt;}
.y43{bottom:725.853333pt;}
.y12{bottom:726.973333pt;}
.y104{bottom:739.973333pt;}
.y42{bottom:741.253333pt;}
.y11{bottom:744.293333pt;}
.y6b{bottom:753.093333pt;}
.y103{bottom:755.173333pt;}
.y41{bottom:756.613333pt;}
.y10{bottom:759.973333pt;}
.y102{bottom:770.533333pt;}
.y40{bottom:771.973333pt;}
.yf{bottom:776.933333pt;}
.y101{bottom:785.893333pt;}
.y3f{bottom:787.173333pt;}
.ye{bottom:793.413333pt;}
.y100{bottom:801.253333pt;}
.y3e{bottom:802.533333pt;}
.yd{bottom:809.413333pt;}
.yff{bottom:816.613333pt;}
.y3d{bottom:817.893333pt;}
.yc{bottom:827.813333pt;}
.yfd{bottom:829.733333pt;}
.y3c{bottom:833.253333pt;}
.yb{bottom:846.053333pt;}
.y3b{bottom:848.613333pt;}
.y8{bottom:864.933333pt;}
.y7{bottom:881.573333pt;}
.y6{bottom:895.653333pt;}
.y5{bottom:911.493333pt;}
.y4{bottom:926.373333pt;}
.y3{bottom:963.680000pt;}
.y2{bottom:980.160000pt;}
.y1{bottom:995.520000pt;}
.h13{height:1.851250pt;}
.h9{height:15.200000pt;}
.hc{height:15.360000pt;}
.hd{height:15.392000pt;}
.he{height:30.560000pt;}
.ha{height:30.592000pt;}
.hb{height:30.720000pt;}
.h5{height:34.710938pt;}
.h4{height:37.479688pt;}
.h1{height:38.413438pt;}
.h14{height:38.672812pt;}
.h11{height:40.021563pt;}
.hf{height:40.488438pt;}
.h8{height:40.670000pt;}
.h7{height:41.543750pt;}
.h2{height:42.578750pt;}
.h3{height:45.156250pt;}
.h6{height:58.563750pt;}
.h12{height:71.360000pt;}
.h10{height:240.546667pt;}
.h0{height:1056.000000pt;}
.w15{width:90.720000pt;}
.we{width:100.640000pt;}
.w2{width:110.720000pt;}
.wb{width:128.960000pt;}
.w12{width:130.400000pt;}
.w5{width:133.440000pt;}
.w8{width:138.560000pt;}
.w6{width:156.346667pt;}
.w13{width:162.906667pt;}
.wc{width:166.746667pt;}
.wd{width:193.786667pt;}
.w7{width:203.386667pt;}
.w10{width:229.146667pt;}
.wa{width:236.986667pt;}
.w4{width:238.266667pt;}
.w9{width:245.986667pt;}
.w17{width:250.906667pt;}
.wf{width:267.906667pt;}
.w3{width:272.546667pt;}
.w16{width:279.746667pt;}
.w14{width:307.426667pt;}
.w11{width:622.813333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x20{left:0.960000pt;}
.x10{left:6.880000pt;}
.x1c{left:16.160000pt;}
.x1e{left:52.040000pt;}
.x1f{left:81.600000pt;}
.x1{left:96.031988pt;}
.x22{left:105.632000pt;}
.x1b{left:106.592000pt;}
.x8{left:110.111988pt;}
.x2{left:120.671988pt;}
.xf{left:144.026655pt;}
.x4{left:150.906655pt;}
.x9{left:158.426655pt;}
.x7{left:166.746655pt;}
.x25{left:188.026667pt;}
.x11{left:208.026667pt;}
.x1d{left:209.946667pt;}
.x19{left:226.266667pt;}
.x27{left:227.226655pt;}
.x15{left:230.746667pt;}
.x17{left:235.866667pt;}
.x23{left:238.106667pt;}
.x28{left:292.866655pt;}
.xb{left:296.706655pt;}
.x21{left:311.394667pt;}
.xd{left:354.626655pt;}
.xe{left:359.106655pt;}
.x6{left:363.586655pt;}
.xc{left:366.626655pt;}
.x5{left:377.666655pt;}
.x16{left:387.746667pt;}
.x1a{left:393.666667pt;}
.x24{left:403.106667pt;}
.xa{left:408.066655pt;}
.x26{left:468.573333pt;}
.x3{left:472.093321pt;}
.x12{left:481.213333pt;}
.x18{left:482.493333pt;}
.x14{left:720.133321pt;}
.x13{left:750.053321pt;}
}




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