
    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_0394a653abae706c38604279.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_3168ab21cf31d9055af6bd48.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_508967d48e9298fdb8fccf39.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_22befef364938a8ec4800f7c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_b415aec07f971abecbf63f2d.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_e2b8775af51c9b285b606326.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_176a9c48764a00befd7520b9.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_a10229a6e5e90dea80ef6124.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.941895;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_9816a6a7bd8a276ba4551ab1.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.934082;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_2b84710ee03e28c01bfdb297.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_35af8b39201301965b55d3c7.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.937500;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:ffd;src:url('chunks/assets/font_cb24e063683632af514d65df.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.372070;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:ffe;src:url('chunks/assets/font_bc7e38e1b75382390d6d9fe4.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.885742;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;}
.ls1{letter-spacing:-0.298200px;}
.ls4{letter-spacing:-0.209400px;}
.ls7{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.360000px;}
.ls2{letter-spacing:22.741920px;}
.ls6{letter-spacing:24.181920px;}
.ls3{letter-spacing:64.026720px;}
.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;}
.ws5{word-spacing:-20.700000px;}
.ws0{word-spacing:-20.340000px;}
.ws1{word-spacing:-20.041800px;}
.ws3{word-spacing:-18.177960px;}
.ws7{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.856000px;}
.ws6{word-spacing:-14.572800px;}
.ws2{word-spacing:0.000000px;}
._0{margin-left:-1.464480px;}
._1{width:1.758720px;}
.fc1{color:rgb(192,192,192);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:81.360000px;}
.y0{bottom:0.000000px;}
.y132{bottom:4.500000px;}
.y125{bottom:25.192500px;}
.y131{bottom:45.900000px;}
.y124{bottom:67.126500px;}
.y130{bottom:87.480000px;}
.y123{bottom:87.826500px;}
.y122{bottom:108.526500px;}
.y24{bottom:113.076000px;}
.yf1{bottom:114.156000px;}
.y108{bottom:114.703500px;}
.y121{bottom:129.226500px;}
.y12f{bottom:129.645000px;}
.y86{bottom:131.796000px;}
.y23{bottom:136.476000px;}
.yf0{bottom:137.556000px;}
.ya2{bottom:145.836000px;}
.y68{bottom:147.636000px;}
.y120{bottom:149.926500px;}
.y12e{bottom:150.345000px;}
.ybb{bottom:155.370000px;}
.yd4{bottom:158.250000px;}
.y47{bottom:158.790000px;}
.y22{bottom:159.690000px;}
.yef{bottom:160.770000px;}
.y107{bottom:166.170000px;}
.ya1{bottom:169.230000px;}
.y67{bottom:170.850000px;}
.y12d{bottom:171.045000px;}
.y85{bottom:176.070000px;}
.yba{bottom:178.590000px;}
.y21{bottom:182.910000px;}
.y46{bottom:183.630000px;}
.yee{bottom:183.990000px;}
.y106{bottom:189.390000px;}
.y11f{bottom:191.686500px;}
.y12c{bottom:191.745000px;}
.ya0{bottom:192.450000px;}
.y66{bottom:194.250000px;}
.y84{bottom:199.290000px;}
.yd3{bottom:202.530000px;}
.y20{bottom:206.310000px;}
.y45{bottom:208.290000px;}
.y11e{bottom:212.386500px;}
.y12b{bottom:212.445000px;}
.y105{bottom:212.790000px;}
.y9f{bottom:215.850000px;}
.y65{bottom:217.470000px;}
.y83{bottom:222.690000px;}
.yb9{bottom:223.590000px;}
.yed{bottom:228.450000px;}
.y44{bottom:232.950000px;}
.y82{bottom:245.910000px;}
.yd2{bottom:246.810000px;}
.y1f{bottom:250.590000px;}
.yec{bottom:251.670000px;}
.y12a{bottom:253.665000px;}
.y11d{bottom:253.831500px;}
.y104{bottom:257.070000px;}
.y43{bottom:257.790000px;}
.y9e{bottom:260.130000px;}
.y64{bottom:261.390000px;}
.yb8{bottom:268.590000px;}
.yd1{bottom:270.030000px;}
.y1e{bottom:273.810000px;}
.y103{bottom:280.290000px;}
.y42{bottom:282.450000px;}
.y9d{bottom:283.350000px;}
.y81{bottom:290.910000px;}
.yb7{bottom:291.990000px;}
.y129{bottom:295.065000px;}
.y11c{bottom:295.411500px;}
.yeb{bottom:296.670000px;}
.y1d{bottom:297.030000px;}
.y63{bottom:306.030000px;}
.y9c{bottom:306.570000px;}
.y41{bottom:307.110000px;}
.yd0{bottom:315.030000px;}
.yb6{bottom:315.210000px;}
.y102{bottom:324.570000px;}
.y62{bottom:329.295000px;}
.y9b{bottom:330.015000px;}
.y128{bottom:334.125000px;}
.y80{bottom:335.955000px;}
.y11b{bottom:337.531500px;}
.yb5{bottom:338.475000px;}
.y1c{bottom:341.355000px;}
.yea{bottom:341.715000px;}
.y101{bottom:347.835000px;}
.y40{bottom:352.335000px;}
.y61{bottom:352.695000px;}
.y9a{bottom:353.235000px;}
.y11a{bottom:358.231500px;}
.y7f{bottom:359.175000px;}
.ycf{bottom:360.075000px;}
.yb4{bottom:361.875000px;}
.y1b{bottom:364.395000px;}
.y127{bottom:375.375000px;}
.y60{bottom:375.915000px;}
.y99{bottom:376.455000px;}
.y119{bottom:378.931500px;}
.y7e{bottom:382.575000px;}
.yb3{bottom:385.095000px;}
.ye9{bottom:385.995000px;}
.y100{bottom:393.915000px;}
.y3f{bottom:396.615000px;}
.y118{bottom:399.631500px;}
.yce{bottom:404.355000px;}
.yb2{bottom:408.495000px;}
.y1a{bottom:409.035000px;}
.ye8{bottom:409.215000px;}
.y3e{bottom:420.015000px;}
.y5f{bottom:420.195000px;}
.y117{bottom:420.331500px;}
.y98{bottom:421.455000px;}
.y7d{bottom:427.575000px;}
.y19{bottom:432.255000px;}
.ye7{bottom:432.615000px;}
.yff{bottom:435.495000px;}
.y116{bottom:441.031500px;}
.y3d{bottom:443.235000px;}
.y5e{bottom:443.595000px;}
.ycd{bottom:448.635000px;}
.yb1{bottom:453.495000px;}
.y18{bottom:455.655000px;}
.ye6{bottom:455.835000px;}
.yfe{bottom:458.715000px;}
.y115{bottom:461.731500px;}
.y3c{bottom:466.455000px;}
.y7c{bottom:472.575000px;}
.y17{bottom:478.875000px;}
.ye5{bottom:479.055000px;}
.yfd{bottom:481.935000px;}
.y114{bottom:482.461500px;}
.y5d{bottom:487.515000px;}
.y3b{bottom:489.855000px;}
.ycc{bottom:492.915000px;}
.y7b{bottom:495.795000px;}
.yb0{bottom:498.495000px;}
.y16{bottom:502.095000px;}
.ye4{bottom:502.455000px;}
.y113{bottom:503.161500px;}
.y3a{bottom:513.075000px;}
.yaf{bottom:521.715000px;}
.y112{bottom:523.861500px;}
.ye3{bottom:525.675000px;}
.yfc{bottom:526.215000px;}
.y5c{bottom:531.615000px;}
.y39{bottom:536.475000px;}
.ycb{bottom:537.195000px;}
.y7a{bottom:540.075000px;}
.y111{bottom:544.561500px;}
.yae{bottom:544.935000px;}
.y15{bottom:546.375000px;}
.yfb{bottom:549.615000px;}
.y97{bottom:558.075000px;}
.y38{bottom:559.695000px;}
.y79{bottom:563.475000px;}
.y110{bottom:565.261500px;}
.yad{bottom:568.335000px;}
.y14{bottom:569.775000px;}
.ye2{bottom:570.675000px;}
.y5b{bottom:575.895000px;}
.yca{bottom:581.475000px;}
.y10f{bottom:585.961500px;}
.y78{bottom:586.695000px;}
.yac{bottom:591.555000px;}
.y13{bottom:592.995000px;}
.yfa{bottom:593.535000px;}
.y96{bottom:603.825000px;}
.y37{bottom:604.725000px;}
.y10e{bottom:606.661500px;}
.yab{bottom:614.805000px;}
.ye1{bottom:615.705000px;}
.y12{bottom:616.245000px;}
.y5a{bottom:620.205000px;}
.yc9{bottom:625.785000px;}
.y95{bottom:628.485000px;}
.y36{bottom:629.205000px;}
.y77{bottom:631.005000px;}
.yf9{bottom:638.205000px;}
.ye0{bottom:639.105000px;}
.y11{bottom:639.645000px;}
.y10d{bottom:647.881500px;}
.yc8{bottom:649.185000px;}
.y94{bottom:653.145000px;}
.y35{bottom:654.045000px;}
.y76{bottom:654.225000px;}
.yaa{bottom:659.085000px;}
.yf8{bottom:661.425000px;}
.ydf{bottom:662.325000px;}
.y59{bottom:665.025000px;}
.yc7{bottom:672.405000px;}
.y93{bottom:677.805000px;}
.y34{bottom:678.705000px;}
.ya9{bottom:682.485000px;}
.y10{bottom:683.925000px;}
.yde{bottom:685.545000px;}
.y58{bottom:688.245000px;}
.y10c{bottom:689.641500px;}
.y75{bottom:699.225000px;}
.y92{bottom:702.465000px;}
.y33{bottom:703.365000px;}
.ya8{bottom:705.705000px;}
.yf{bottom:707.145000px;}
.y57{bottom:711.465000px;}
.yc6{bottom:717.405000px;}
.y91{bottom:727.305000px;}
.y32{bottom:728.205000px;}
.yf7{bottom:729.105000px;}
.ye{bottom:730.545000px;}
.y10b{bottom:731.401500px;}
.y133{bottom:733.425000px;}
.y74{bottom:744.225000px;}
.ya7{bottom:750.705000px;}
.y10a{bottom:752.146500px;}
.yf6{bottom:752.325000px;}
.yd{bottom:753.765000px;}
.y56{bottom:756.465000px;}
.y126{bottom:756.825000px;}
.yc5{bottom:763.125000px;}
.y73{bottom:767.625000px;}
.y90{bottom:772.485000px;}
.y31{bottom:773.385000px;}
.ydd{bottom:775.545000px;}
.yc{bottom:776.985000px;}
.yc4{bottom:787.605000px;}
.y72{bottom:790.845000px;}
.y109{bottom:794.086500px;}
.y8f{bottom:795.705000px;}
.y30{bottom:796.605000px;}
.ydc{bottom:798.945000px;}
.yb{bottom:800.385000px;}
.y55{bottom:801.465000px;}
.yc3{bottom:812.445000px;}
.y71{bottom:814.065000px;}
.y8e{bottom:819.105000px;}
.yf5{bottom:819.465000px;}
.ydb{bottom:822.165000px;}
.y54{bottom:824.865000px;}
.yc2{bottom:837.105000px;}
.y70{bottom:837.465000px;}
.y2f{bottom:840.885000px;}
.y8d{bottom:842.325000px;}
.ya{bottom:844.665000px;}
.yda{bottom:845.385000px;}
.y53{bottom:848.085000px;}
.yc1{bottom:861.765000px;}
.y2e{bottom:864.150000px;}
.ya6{bottom:865.590000px;}
.y9{bottom:867.930000px;}
.yd9{bottom:868.830000px;}
.y52{bottom:871.530000px;}
.y6f{bottom:882.510000px;}
.y8c{bottom:886.290000px;}
.yc0{bottom:886.650000px;}
.y2d{bottom:887.550000px;}
.y8{bottom:891.150000px;}
.y51{bottom:894.750000px;}
.ya5{bottom:909.870000px;}
.y2c{bottom:910.770000px;}
.ybf{bottom:911.310000px;}
.yd8{bottom:913.830000px;}
.y7{bottom:914.550000px;}
.y6e{bottom:927.510000px;}
.y8b{bottom:930.930000px;}
.ya4{bottom:933.270000px;}
.y6{bottom:937.770000px;}
.y50{bottom:939.750000px;}
.y6d{bottom:950.730000px;}
.y8a{bottom:954.150000px;}
.yf4{bottom:955.050000px;}
.y2b{bottom:955.770000px;}
.ya3{bottom:956.490000px;}
.yd7{bottom:958.830000px;}
.y4f{bottom:964.230000px;}
.y89{bottom:977.550000px;}
.yf3{bottom:978.270000px;}
.ybe{bottom:979.710000px;}
.y5{bottom:981.510000px;}
.yd6{bottom:982.050000px;}
.y4e{bottom:989.070000px;}
.y6c{bottom:995.730000px;}
.y2a{bottom:1000.770000px;}
.ybd{bottom:1003.110000px;}
.y4d{bottom:1013.730000px;}
.y6b{bottom:1020.390000px;}
.y88{bottom:1021.830000px;}
.yf2{bottom:1023.270000px;}
.y29{bottom:1023.990000px;}
.y4{bottom:1025.790000px;}
.yd5{bottom:1026.330000px;}
.y4c{bottom:1038.390000px;}
.y6a{bottom:1045.050000px;}
.ybc{bottom:1047.030000px;}
.y28{bottom:1047.390000px;}
.y4b{bottom:1063.230000px;}
.y87{bottom:1068.270000px;}
.y69{bottom:1069.710000px;}
.y3{bottom:1070.610000px;}
.y4a{bottom:1087.890000px;}
.y27{bottom:1091.670000px;}
.y49{bottom:1112.550000px;}
.y2{bottom:1114.350000px;}
.y26{bottom:1114.890000px;}
.y48{bottom:1137.420000px;}
.y1{bottom:1137.780000px;}
.y25{bottom:1138.320000px;}
.hf{height:50.585625px;}
.he{height:58.651172px;}
.h6{height:62.132344px;}
.hb{height:70.664062px;}
.h9{height:71.428359px;}
.hc{height:72.562500px;}
.h4{height:79.810664px;}
.h3{height:79.850391px;}
.h8{height:81.161367px;}
.h2{height:81.995625px;}
.h7{height:83.625259px;}
.h5{height:84.697031px;}
.hd{height:391.935000px;}
.ha{height:810.270000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:646.830000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:112.483500px;}
.xb{left:123.166500px;}
.x4{left:127.656000px;}
.xd{left:133.363500px;}
.x1{left:143.676000px;}
.x5{left:154.650000px;}
.x6{left:181.650000px;}
.x3{left:195.690000px;}
.x8{left:208.650000px;}
.xe{left:231.688500px;}
.x9{left:235.650000px;}
.x7{left:246.090000px;}
.x2{left:313.275000px;}
.xa{left:388.515000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-0.265067pt;}
.ls4{letter-spacing:-0.186133pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.320000pt;}
.ls2{letter-spacing:20.215040pt;}
.ls6{letter-spacing:21.495040pt;}
.ls3{letter-spacing:56.912640pt;}
.ws4{word-spacing:-53.120000pt;}
.ws5{word-spacing:-18.400000pt;}
.ws0{word-spacing:-18.080000pt;}
.ws1{word-spacing:-17.814933pt;}
.ws3{word-spacing:-16.158187pt;}
.ws7{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.872000pt;}
.ws6{word-spacing:-12.953600pt;}
.ws2{word-spacing:0.000000pt;}
._0{margin-left:-1.301760pt;}
._1{width:1.563307pt;}
.fs1{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:72.320000pt;}
.y0{bottom:0.000000pt;}
.y132{bottom:4.000000pt;}
.y125{bottom:22.393333pt;}
.y131{bottom:40.800000pt;}
.y124{bottom:59.668000pt;}
.y130{bottom:77.760000pt;}
.y123{bottom:78.068000pt;}
.y122{bottom:96.468000pt;}
.y24{bottom:100.512000pt;}
.yf1{bottom:101.472000pt;}
.y108{bottom:101.958667pt;}
.y121{bottom:114.868000pt;}
.y12f{bottom:115.240000pt;}
.y86{bottom:117.152000pt;}
.y23{bottom:121.312000pt;}
.yf0{bottom:122.272000pt;}
.ya2{bottom:129.632000pt;}
.y68{bottom:131.232000pt;}
.y120{bottom:133.268000pt;}
.y12e{bottom:133.640000pt;}
.ybb{bottom:138.106667pt;}
.yd4{bottom:140.666667pt;}
.y47{bottom:141.146667pt;}
.y22{bottom:141.946667pt;}
.yef{bottom:142.906667pt;}
.y107{bottom:147.706667pt;}
.ya1{bottom:150.426667pt;}
.y67{bottom:151.866667pt;}
.y12d{bottom:152.040000pt;}
.y85{bottom:156.506667pt;}
.yba{bottom:158.746667pt;}
.y21{bottom:162.586667pt;}
.y46{bottom:163.226667pt;}
.yee{bottom:163.546667pt;}
.y106{bottom:168.346667pt;}
.y11f{bottom:170.388000pt;}
.y12c{bottom:170.440000pt;}
.ya0{bottom:171.066667pt;}
.y66{bottom:172.666667pt;}
.y84{bottom:177.146667pt;}
.yd3{bottom:180.026667pt;}
.y20{bottom:183.386667pt;}
.y45{bottom:185.146667pt;}
.y11e{bottom:188.788000pt;}
.y12b{bottom:188.840000pt;}
.y105{bottom:189.146667pt;}
.y9f{bottom:191.866667pt;}
.y65{bottom:193.306667pt;}
.y83{bottom:197.946667pt;}
.yb9{bottom:198.746667pt;}
.yed{bottom:203.066667pt;}
.y44{bottom:207.066667pt;}
.y82{bottom:218.586667pt;}
.yd2{bottom:219.386667pt;}
.y1f{bottom:222.746667pt;}
.yec{bottom:223.706667pt;}
.y12a{bottom:225.480000pt;}
.y11d{bottom:225.628000pt;}
.y104{bottom:228.506667pt;}
.y43{bottom:229.146667pt;}
.y9e{bottom:231.226667pt;}
.y64{bottom:232.346667pt;}
.yb8{bottom:238.746667pt;}
.yd1{bottom:240.026667pt;}
.y1e{bottom:243.386667pt;}
.y103{bottom:249.146667pt;}
.y42{bottom:251.066667pt;}
.y9d{bottom:251.866667pt;}
.y81{bottom:258.586667pt;}
.yb7{bottom:259.546667pt;}
.y129{bottom:262.280000pt;}
.y11c{bottom:262.588000pt;}
.yeb{bottom:263.706667pt;}
.y1d{bottom:264.026667pt;}
.y63{bottom:272.026667pt;}
.y9c{bottom:272.506667pt;}
.y41{bottom:272.986667pt;}
.yd0{bottom:280.026667pt;}
.yb6{bottom:280.186667pt;}
.y102{bottom:288.506667pt;}
.y62{bottom:292.706667pt;}
.y9b{bottom:293.346667pt;}
.y128{bottom:297.000000pt;}
.y80{bottom:298.626667pt;}
.y11b{bottom:300.028000pt;}
.yb5{bottom:300.866667pt;}
.y1c{bottom:303.426667pt;}
.yea{bottom:303.746667pt;}
.y101{bottom:309.186667pt;}
.y40{bottom:313.186667pt;}
.y61{bottom:313.506667pt;}
.y9a{bottom:313.986667pt;}
.y11a{bottom:318.428000pt;}
.y7f{bottom:319.266667pt;}
.ycf{bottom:320.066667pt;}
.yb4{bottom:321.666667pt;}
.y1b{bottom:323.906667pt;}
.y127{bottom:333.666667pt;}
.y60{bottom:334.146667pt;}
.y99{bottom:334.626667pt;}
.y119{bottom:336.828000pt;}
.y7e{bottom:340.066667pt;}
.yb3{bottom:342.306667pt;}
.ye9{bottom:343.106667pt;}
.y100{bottom:350.146667pt;}
.y3f{bottom:352.546667pt;}
.y118{bottom:355.228000pt;}
.yce{bottom:359.426667pt;}
.yb2{bottom:363.106667pt;}
.y1a{bottom:363.586667pt;}
.ye8{bottom:363.746667pt;}
.y3e{bottom:373.346667pt;}
.y5f{bottom:373.506667pt;}
.y117{bottom:373.628000pt;}
.y98{bottom:374.626667pt;}
.y7d{bottom:380.066667pt;}
.y19{bottom:384.226667pt;}
.ye7{bottom:384.546667pt;}
.yff{bottom:387.106667pt;}
.y116{bottom:392.028000pt;}
.y3d{bottom:393.986667pt;}
.y5e{bottom:394.306667pt;}
.ycd{bottom:398.786667pt;}
.yb1{bottom:403.106667pt;}
.y18{bottom:405.026667pt;}
.ye6{bottom:405.186667pt;}
.yfe{bottom:407.746667pt;}
.y115{bottom:410.428000pt;}
.y3c{bottom:414.626667pt;}
.y7c{bottom:420.066667pt;}
.y17{bottom:425.666667pt;}
.ye5{bottom:425.826667pt;}
.yfd{bottom:428.386667pt;}
.y114{bottom:428.854667pt;}
.y5d{bottom:433.346667pt;}
.y3b{bottom:435.426667pt;}
.ycc{bottom:438.146667pt;}
.y7b{bottom:440.706667pt;}
.yb0{bottom:443.106667pt;}
.y16{bottom:446.306667pt;}
.ye4{bottom:446.626667pt;}
.y113{bottom:447.254667pt;}
.y3a{bottom:456.066667pt;}
.yaf{bottom:463.746667pt;}
.y112{bottom:465.654667pt;}
.ye3{bottom:467.266667pt;}
.yfc{bottom:467.746667pt;}
.y5c{bottom:472.546667pt;}
.y39{bottom:476.866667pt;}
.ycb{bottom:477.506667pt;}
.y7a{bottom:480.066667pt;}
.y111{bottom:484.054667pt;}
.yae{bottom:484.386667pt;}
.y15{bottom:485.666667pt;}
.yfb{bottom:488.546667pt;}
.y97{bottom:496.066667pt;}
.y38{bottom:497.506667pt;}
.y79{bottom:500.866667pt;}
.y110{bottom:502.454667pt;}
.yad{bottom:505.186667pt;}
.y14{bottom:506.466667pt;}
.ye2{bottom:507.266667pt;}
.y5b{bottom:511.906667pt;}
.yca{bottom:516.866667pt;}
.y10f{bottom:520.854667pt;}
.y78{bottom:521.506667pt;}
.yac{bottom:525.826667pt;}
.y13{bottom:527.106667pt;}
.yfa{bottom:527.586667pt;}
.y96{bottom:536.733333pt;}
.y37{bottom:537.533333pt;}
.y10e{bottom:539.254667pt;}
.yab{bottom:546.493333pt;}
.ye1{bottom:547.293333pt;}
.y12{bottom:547.773333pt;}
.y5a{bottom:551.293333pt;}
.yc9{bottom:556.253333pt;}
.y95{bottom:558.653333pt;}
.y36{bottom:559.293333pt;}
.y77{bottom:560.893333pt;}
.yf9{bottom:567.293333pt;}
.ye0{bottom:568.093333pt;}
.y11{bottom:568.573333pt;}
.y10d{bottom:575.894667pt;}
.yc8{bottom:577.053333pt;}
.y94{bottom:580.573333pt;}
.y35{bottom:581.373333pt;}
.y76{bottom:581.533333pt;}
.yaa{bottom:585.853333pt;}
.yf8{bottom:587.933333pt;}
.ydf{bottom:588.733333pt;}
.y59{bottom:591.133333pt;}
.yc7{bottom:597.693333pt;}
.y93{bottom:602.493333pt;}
.y34{bottom:603.293333pt;}
.ya9{bottom:606.653333pt;}
.y10{bottom:607.933333pt;}
.yde{bottom:609.373333pt;}
.y58{bottom:611.773333pt;}
.y10c{bottom:613.014667pt;}
.y75{bottom:621.533333pt;}
.y92{bottom:624.413333pt;}
.y33{bottom:625.213333pt;}
.ya8{bottom:627.293333pt;}
.yf{bottom:628.573333pt;}
.y57{bottom:632.413333pt;}
.yc6{bottom:637.693333pt;}
.y91{bottom:646.493333pt;}
.y32{bottom:647.293333pt;}
.yf7{bottom:648.093333pt;}
.ye{bottom:649.373333pt;}
.y10b{bottom:650.134667pt;}
.y133{bottom:651.933333pt;}
.y74{bottom:661.533333pt;}
.ya7{bottom:667.293333pt;}
.y10a{bottom:668.574667pt;}
.yf6{bottom:668.733333pt;}
.yd{bottom:670.013333pt;}
.y56{bottom:672.413333pt;}
.y126{bottom:672.733333pt;}
.yc5{bottom:678.333333pt;}
.y73{bottom:682.333333pt;}
.y90{bottom:686.653333pt;}
.y31{bottom:687.453333pt;}
.ydd{bottom:689.373333pt;}
.yc{bottom:690.653333pt;}
.yc4{bottom:700.093333pt;}
.y72{bottom:702.973333pt;}
.y109{bottom:705.854667pt;}
.y8f{bottom:707.293333pt;}
.y30{bottom:708.093333pt;}
.ydc{bottom:710.173333pt;}
.yb{bottom:711.453333pt;}
.y55{bottom:712.413333pt;}
.yc3{bottom:722.173333pt;}
.y71{bottom:723.613333pt;}
.y8e{bottom:728.093333pt;}
.yf5{bottom:728.413333pt;}
.ydb{bottom:730.813333pt;}
.y54{bottom:733.213333pt;}
.yc2{bottom:744.093333pt;}
.y70{bottom:744.413333pt;}
.y2f{bottom:747.453333pt;}
.y8d{bottom:748.733333pt;}
.ya{bottom:750.813333pt;}
.yda{bottom:751.453333pt;}
.y53{bottom:753.853333pt;}
.yc1{bottom:766.013333pt;}
.y2e{bottom:768.133333pt;}
.ya6{bottom:769.413333pt;}
.y9{bottom:771.493333pt;}
.yd9{bottom:772.293333pt;}
.y52{bottom:774.693333pt;}
.y6f{bottom:784.453333pt;}
.y8c{bottom:787.813333pt;}
.yc0{bottom:788.133333pt;}
.y2d{bottom:788.933333pt;}
.y8{bottom:792.133333pt;}
.y51{bottom:795.333333pt;}
.ya5{bottom:808.773333pt;}
.y2c{bottom:809.573333pt;}
.ybf{bottom:810.053333pt;}
.yd8{bottom:812.293333pt;}
.y7{bottom:812.933333pt;}
.y6e{bottom:824.453333pt;}
.y8b{bottom:827.493333pt;}
.ya4{bottom:829.573333pt;}
.y6{bottom:833.573333pt;}
.y50{bottom:835.333333pt;}
.y6d{bottom:845.093333pt;}
.y8a{bottom:848.133333pt;}
.yf4{bottom:848.933333pt;}
.y2b{bottom:849.573333pt;}
.ya3{bottom:850.213333pt;}
.yd7{bottom:852.293333pt;}
.y4f{bottom:857.093333pt;}
.y89{bottom:868.933333pt;}
.yf3{bottom:869.573333pt;}
.ybe{bottom:870.853333pt;}
.y5{bottom:872.453333pt;}
.yd6{bottom:872.933333pt;}
.y4e{bottom:879.173333pt;}
.y6c{bottom:885.093333pt;}
.y2a{bottom:889.573333pt;}
.ybd{bottom:891.653333pt;}
.y4d{bottom:901.093333pt;}
.y6b{bottom:907.013333pt;}
.y88{bottom:908.293333pt;}
.yf2{bottom:909.573333pt;}
.y29{bottom:910.213333pt;}
.y4{bottom:911.813333pt;}
.yd5{bottom:912.293333pt;}
.y4c{bottom:923.013333pt;}
.y6a{bottom:928.933333pt;}
.ybc{bottom:930.693333pt;}
.y28{bottom:931.013333pt;}
.y4b{bottom:945.093333pt;}
.y87{bottom:949.573333pt;}
.y69{bottom:950.853333pt;}
.y3{bottom:951.653333pt;}
.y4a{bottom:967.013333pt;}
.y27{bottom:970.373333pt;}
.y49{bottom:988.933333pt;}
.y2{bottom:990.533333pt;}
.y26{bottom:991.013333pt;}
.y48{bottom:1011.040000pt;}
.y1{bottom:1011.360000pt;}
.y25{bottom:1011.840000pt;}
.hf{height:44.965000pt;}
.he{height:52.134375pt;}
.h6{height:55.228750pt;}
.hb{height:62.812500pt;}
.h9{height:63.491875pt;}
.hc{height:64.500000pt;}
.h4{height:70.942812pt;}
.h3{height:70.978125pt;}
.h8{height:72.143438pt;}
.h2{height:72.885000pt;}
.h7{height:74.333564pt;}
.h5{height:75.286250pt;}
.hd{height:348.386667pt;}
.ha{height:720.240000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:574.960000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:99.985333pt;}
.xb{left:109.481333pt;}
.x4{left:113.472000pt;}
.xd{left:118.545333pt;}
.x1{left:127.712000pt;}
.x5{left:137.466667pt;}
.x6{left:161.466667pt;}
.x3{left:173.946667pt;}
.x8{left:185.466667pt;}
.xe{left:205.945333pt;}
.x9{left:209.466667pt;}
.x7{left:218.746667pt;}
.x2{left:278.466667pt;}
.xa{left:345.346667pt;}
}




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