
    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_88b4ba078c3921a34a03dcbc.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_5be37a2558665ab1c51c5ae5.woff')format("woff");}.ff2{font-family:ff2;line-height:0.972656;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_a23e8e67ed225292dbe194a2.woff')format("woff");}.ff3{font-family:ff3;line-height:0.771484;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_44cd3be664b73156a4f4e77e.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_e1879357d215f6341c93d4fc.woff')format("woff");}.ff5{font-family:ff5;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_948b6165aed174ab6912e33e.woff')format("woff");}.ff6{font-family:ff6;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;}
.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;}
.ls3{letter-spacing:-0.308400px;}
.ls2{letter-spacing:-0.223200px;}
.ls1{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.120000px;}
.ls4{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.155400px;}
.ls9{letter-spacing:0.216000px;}
.ls7{letter-spacing:0.504000px;}
.ls5{letter-spacing:0.576000px;}
.ls8{letter-spacing:0.720000px;}
.ls0{letter-spacing:20.160000px;}
.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;}
}
.ws1{word-spacing:-20.078640px;}
.ws7{word-spacing:-18.216000px;}
.ws3{word-spacing:-18.144000px;}
.ws5{word-spacing:-18.000000px;}
.ws0{word-spacing:-17.352000px;}
.ws6{word-spacing:-16.119240px;}
.ws2{word-spacing:-15.655440px;}
.ws4{word-spacing:0.000000px;}
._5{margin-left:-5.087040px;}
._4{margin-left:-3.312000px;}
._1{margin-left:-1.434480px;}
._0{width:1.032000px;}
._a{width:2.088000px;}
._12{width:3.306480px;}
._6{width:4.752000px;}
._17{width:5.776560px;}
._7{width:6.780960px;}
._9{width:8.051040px;}
._10{width:9.792000px;}
._16{width:10.824000px;}
._11{width:11.928000px;}
._1b{width:12.960000px;}
._f{width:14.544000px;}
._d{width:16.536000px;}
._3{width:19.092000px;}
._2{width:20.232000px;}
._8{width:21.624000px;}
._e{width:22.704000px;}
._13{width:24.042480px;}
._1a{width:25.920000px;}
._19{width:27.936000px;}
._b{width:29.418480px;}
._c{width:30.972960px;}
._1c{width:32.832000px;}
._1d{width:34.560000px;}
._18{width:35.826480px;}
._1e{width:37.440000px;}
._34{width:38.994480px;}
._2f{width:40.104000px;}
._3d{width:41.616000px;}
._4d{width:43.272000px;}
._14{width:46.344000px;}
._15{width:48.306480px;}
._35{width:49.800000px;}
._33{width:50.904000px;}
._1f{width:52.458480px;}
._4c{width:53.584560px;}
._22{width:55.002480px;}
._44{width:57.384000px;}
._20{width:58.896000px;}
._21{width:60.120000px;}
._4e{width:65.664000px;}
._27{width:67.104000px;}
._49{width:68.184000px;}
._4f{width:69.666480px;}
._50{width:70.703040px;}
._36{width:72.216000px;}
._2e{width:73.872000px;}
._51{width:75.096000px;}
._2b{width:80.712000px;}
._46{width:81.984000px;}
._3e{width:86.304000px;}
._25{width:88.776000px;}
._47{width:94.224000px;}
._30{width:98.280000px;}
._3b{width:101.520000px;}
._2a{width:104.184000px;}
._45{width:105.744000px;}
._3f{width:113.400000px;}
._4b{width:114.552000px;}
._43{width:118.584000px;}
._29{width:137.802480px;}
._41{width:145.944000px;}
._37{width:149.544000px;}
._38{width:154.938480px;}
._40{width:158.184000px;}
._48{width:170.424000px;}
._24{width:172.872000px;}
._26{width:192.816000px;}
._2c{width:217.944000px;}
._2d{width:222.984000px;}
._4a{width:227.484000px;}
._39{width:258.114480px;}
._31{width:266.976000px;}
._3c{width:269.904000px;}
._28{width:273.384000px;}
._3a{width:313.824000px;}
._32{width:319.320000px;}
._42{width:340.122480px;}
._23{width:429.624000px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(79,129,189);}
.fc0{color:rgb(0,72,126);}
.fs2{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y82{bottom:4.140000px;}
.y8e{bottom:4.495500px;}
.yad{bottom:4.500000px;}
.y98{bottom:14.755500px;}
.ybc{bottom:14.760000px;}
.y80{bottom:24.840000px;}
.yac{bottom:25.020000px;}
.y8d{bottom:25.195500px;}
.ybf{bottom:25.200000px;}
.yb{bottom:34.956000px;}
.y97{bottom:35.455500px;}
.ya2{bottom:35.460000px;}
.ya{bottom:39.276000px;}
.y81{bottom:45.540000px;}
.yab{bottom:45.720000px;}
.y8c{bottom:45.895500px;}
.yb9{bottom:45.900000px;}
.y96{bottom:56.155500px;}
.yb3{bottom:56.160000px;}
.ya1{bottom:56.205000px;}
.y83{bottom:63.400500px;}
.y3c{bottom:65.196000px;}
.yaa{bottom:66.465000px;}
.y8b{bottom:66.595500px;}
.yb8{bottom:66.600000px;}
.y95{bottom:76.855500px;}
.yb2{bottom:76.860000px;}
.y9e{bottom:76.905000px;}
.y6d{bottom:77.976000px;}
.yd7{bottom:79.236000px;}
.y3b{bottom:85.896000px;}
.ya9{bottom:87.165000px;}
.y86{bottom:87.289500px;}
.yb7{bottom:87.300000px;}
.y94{bottom:97.549500px;}
.yb1{bottom:97.560000px;}
.y9d{bottom:97.605000px;}
.y6c{bottom:98.676000px;}
.yd6{bottom:99.936000px;}
.y3a{bottom:106.596000px;}
.ya8{bottom:107.865000px;}
.y85{bottom:107.989500px;}
.yb6{bottom:108.000000px;}
.y93{bottom:118.249500px;}
.yb0{bottom:118.260000px;}
.y9c{bottom:118.305000px;}
.y76{bottom:119.016000px;}
.y6b{bottom:119.376000px;}
.yd5{bottom:120.636000px;}
.y39{bottom:127.296000px;}
.ya7{bottom:128.565000px;}
.y84{bottom:128.689500px;}
.yb5{bottom:128.700000px;}
.y92{bottom:138.949500px;}
.yaf{bottom:138.960000px;}
.y9b{bottom:139.005000px;}
.y75{bottom:139.716000px;}
.y6a{bottom:140.076000px;}
.yd4{bottom:141.336000px;}
.y38{bottom:147.996000px;}
.ya6{bottom:149.265000px;}
.y8a{bottom:149.389500px;}
.yb4{bottom:149.400000px;}
.y91{bottom:159.649500px;}
.ybb{bottom:159.660000px;}
.ya0{bottom:159.705000px;}
.y69{bottom:160.770000px;}
.yd3{bottom:162.030000px;}
.y37{bottom:168.690000px;}
.ya5{bottom:169.965000px;}
.y89{bottom:170.089500px;}
.ybe{bottom:170.100000px;}
.y90{bottom:180.349500px;}
.yba{bottom:180.360000px;}
.y9f{bottom:180.405000px;}
.y68{bottom:181.470000px;}
.yd2{bottom:182.730000px;}
.y36{bottom:189.390000px;}
.ya4{bottom:190.665000px;}
.y88{bottom:190.789500px;}
.ybd{bottom:190.800000px;}
.y8f{bottom:201.049500px;}
.y67{bottom:202.170000px;}
.yd1{bottom:203.430000px;}
.y35{bottom:210.090000px;}
.ya3{bottom:211.365000px;}
.y87{bottom:211.534500px;}
.y66{bottom:222.870000px;}
.yd0{bottom:224.130000px;}
.y34{bottom:230.790000px;}
.y65{bottom:243.570000px;}
.ycf{bottom:244.830000px;}
.y33{bottom:251.490000px;}
.y64{bottom:264.270000px;}
.yce{bottom:265.530000px;}
.y32{bottom:272.190000px;}
.y63{bottom:285.015000px;}
.ycd{bottom:286.275000px;}
.y31{bottom:292.935000px;}
.y7f{bottom:296.355000px;}
.y62{bottom:305.715000px;}
.ycc{bottom:306.975000px;}
.y30{bottom:313.635000px;}
.y61{bottom:326.415000px;}
.ycb{bottom:327.675000px;}
.y2f{bottom:334.335000px;}
.y60{bottom:347.115000px;}
.yca{bottom:348.375000px;}
.y2e{bottom:355.035000px;}
.y5f{bottom:367.815000px;}
.yc9{bottom:369.075000px;}
.y2d{bottom:375.735000px;}
.y5e{bottom:388.515000px;}
.yc8{bottom:389.775000px;}
.y2c{bottom:396.435000px;}
.y5d{bottom:409.215000px;}
.yc7{bottom:410.475000px;}
.y2b{bottom:417.135000px;}
.y5c{bottom:429.915000px;}
.yc6{bottom:431.175000px;}
.y2a{bottom:437.835000px;}
.y5b{bottom:450.615000px;}
.yc5{bottom:451.875000px;}
.y29{bottom:458.535000px;}
.y7e{bottom:470.955000px;}
.y5a{bottom:471.315000px;}
.yc4{bottom:472.575000px;}
.y28{bottom:479.235000px;}
.y74{bottom:491.655000px;}
.y59{bottom:492.015000px;}
.yc3{bottom:493.275000px;}
.y27{bottom:499.935000px;}
.y58{bottom:512.715000px;}
.yc2{bottom:513.975000px;}
.y26{bottom:520.635000px;}
.y57{bottom:533.415000px;}
.yc1{bottom:534.315000px;}
.y25{bottom:541.335000px;}
.y7d{bottom:553.755000px;}
.y56{bottom:554.115000px;}
.yc0{bottom:555.375000px;}
.y24{bottom:561.705000px;}
.y7c{bottom:574.485000px;}
.y55{bottom:574.845000px;}
.yae{bottom:576.465000px;}
.y23{bottom:582.225000px;}
.y54{bottom:595.545000px;}
.y22{bottom:602.745000px;}
.y73{bottom:615.885000px;}
.y53{bottom:616.245000px;}
.y21{bottom:623.625000px;}
.y52{bottom:636.945000px;}
.y20{bottom:644.325000px;}
.y51{bottom:657.645000px;}
.y1f{bottom:665.025000px;}
.y50{bottom:678.345000px;}
.y1e{bottom:685.365000px;}
.y7b{bottom:698.685000px;}
.y4f{bottom:699.045000px;}
.y1d{bottom:706.065000px;}
.y7a{bottom:719.385000px;}
.y4e{bottom:719.745000px;}
.y1c{bottom:727.125000px;}
.y4d{bottom:740.445000px;}
.y1b{bottom:747.825000px;}
.yd9{bottom:760.785000px;}
.y4c{bottom:761.145000px;}
.y1a{bottom:768.525000px;}
.yd8{bottom:781.485000px;}
.y4b{bottom:781.845000px;}
.y9a{bottom:787.965000px;}
.y19{bottom:788.865000px;}
.y72{bottom:802.185000px;}
.y4a{bottom:802.545000px;}
.y18{bottom:809.565000px;}
.y71{bottom:822.885000px;}
.y49{bottom:823.245000px;}
.y17{bottom:830.625000px;}
.yda{bottom:843.630000px;}
.y48{bottom:843.990000px;}
.y16{bottom:851.370000px;}
.y79{bottom:864.330000px;}
.y47{bottom:864.690000px;}
.y15{bottom:871.710000px;}
.y78{bottom:885.030000px;}
.y46{bottom:885.390000px;}
.y14{bottom:892.410000px;}
.y70{bottom:905.730000px;}
.y45{bottom:906.090000px;}
.y13{bottom:913.470000px;}
.y44{bottom:926.430000px;}
.y6f{bottom:926.790000px;}
.y12{bottom:934.170000px;}
.y43{bottom:947.490000px;}
.y11{bottom:954.870000px;}
.y42{bottom:968.190000px;}
.y10{bottom:975.210000px;}
.y77{bottom:988.530000px;}
.y41{bottom:988.890000px;}
.yf{bottom:995.730000px;}
.y6e{bottom:1009.230000px;}
.y40{bottom:1009.590000px;}
.ye{bottom:1017.510000px;}
.y99{bottom:1020.930000px;}
.y3f{bottom:1030.290000px;}
.yd{bottom:1045.050000px;}
.y3e{bottom:1050.990000px;}
.yc{bottom:1071.510000px;}
.y3d{bottom:1071.690000px;}
.y9{bottom:1088.070000px;}
.y8{bottom:1093.650000px;}
.y7{bottom:1116.150000px;}
.y6{bottom:1133.280000px;}
.y5{bottom:1150.380000px;}
.y4{bottom:1167.300000px;}
.y3{bottom:1184.940000px;}
.y2{bottom:1207.620000px;}
.y1{bottom:1238.580000px;}
.h5{height:45.170156px;}
.h7{height:50.068125px;}
.hb{height:50.273438px;}
.hd{height:50.800781px;}
.h4{height:54.421875px;}
.hc{height:62.085000px;}
.hf{height:62.100000px;}
.h6{height:63.673594px;}
.ha{height:70.664062px;}
.h9{height:72.562500px;}
.h3{height:81.632812px;}
.h8{height:96.508125px;}
.h2{height:105.996094px;}
.h11{height:207.000000px;}
.h10{height:227.550000px;}
.he{height:227.725500px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w4{width:135.216000px;}
.w5{width:138.441000px;}
.w3{width:170.100000px;}
.w2{width:197.670000px;}
.w1{width:893.250000px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x8{left:1.080000px;}
.x7{left:124.956000px;}
.x1{left:126.036000px;}
.x4{left:160.410000px;}
.xc{left:180.030000px;}
.x9{left:324.795000px;}
.x5{left:358.635000px;}
.x2{left:439.455000px;}
.x6{left:440.895000px;}
.x3{left:448.995000px;}
.xa{left:497.235000px;}
.xb{left:634.620000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-0.274133pt;}
.ls2{letter-spacing:-0.198400pt;}
.ls1{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.106667pt;}
.ls4{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.138133pt;}
.ls9{letter-spacing:0.192000pt;}
.ls7{letter-spacing:0.448000pt;}
.ls5{letter-spacing:0.512000pt;}
.ls8{letter-spacing:0.640000pt;}
.ls0{letter-spacing:17.920000pt;}
.ws1{word-spacing:-17.847680pt;}
.ws7{word-spacing:-16.192000pt;}
.ws3{word-spacing:-16.128000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws0{word-spacing:-15.424000pt;}
.ws6{word-spacing:-14.328213pt;}
.ws2{word-spacing:-13.915947pt;}
.ws4{word-spacing:0.000000pt;}
._5{margin-left:-4.521813pt;}
._4{margin-left:-2.944000pt;}
._1{margin-left:-1.275093pt;}
._0{width:0.917333pt;}
._a{width:1.856000pt;}
._12{width:2.939093pt;}
._6{width:4.224000pt;}
._17{width:5.134720pt;}
._7{width:6.027520pt;}
._9{width:7.156480pt;}
._10{width:8.704000pt;}
._16{width:9.621333pt;}
._11{width:10.602667pt;}
._1b{width:11.520000pt;}
._f{width:12.928000pt;}
._d{width:14.698667pt;}
._3{width:16.970667pt;}
._2{width:17.984000pt;}
._8{width:19.221333pt;}
._e{width:20.181333pt;}
._13{width:21.371093pt;}
._1a{width:23.040000pt;}
._19{width:24.832000pt;}
._b{width:26.149760pt;}
._c{width:27.531520pt;}
._1c{width:29.184000pt;}
._1d{width:30.720000pt;}
._18{width:31.845760pt;}
._1e{width:33.280000pt;}
._34{width:34.661760pt;}
._2f{width:35.648000pt;}
._3d{width:36.992000pt;}
._4d{width:38.464000pt;}
._14{width:41.194667pt;}
._15{width:42.939093pt;}
._35{width:44.266667pt;}
._33{width:45.248000pt;}
._1f{width:46.629760pt;}
._4c{width:47.630720pt;}
._22{width:48.891093pt;}
._44{width:51.008000pt;}
._20{width:52.352000pt;}
._21{width:53.440000pt;}
._4e{width:58.368000pt;}
._27{width:59.648000pt;}
._49{width:60.608000pt;}
._4f{width:61.925760pt;}
._50{width:62.847147pt;}
._36{width:64.192000pt;}
._2e{width:65.664000pt;}
._51{width:66.752000pt;}
._2b{width:71.744000pt;}
._46{width:72.874667pt;}
._3e{width:76.714667pt;}
._25{width:78.912000pt;}
._47{width:83.754667pt;}
._30{width:87.360000pt;}
._3b{width:90.240000pt;}
._2a{width:92.608000pt;}
._45{width:93.994667pt;}
._3f{width:100.800000pt;}
._4b{width:101.824000pt;}
._43{width:105.408000pt;}
._29{width:122.491093pt;}
._41{width:129.728000pt;}
._37{width:132.928000pt;}
._38{width:137.723093pt;}
._40{width:140.608000pt;}
._48{width:151.488000pt;}
._24{width:153.664000pt;}
._26{width:171.392000pt;}
._2c{width:193.728000pt;}
._2d{width:198.208000pt;}
._4a{width:202.208000pt;}
._39{width:229.435093pt;}
._31{width:237.312000pt;}
._3c{width:239.914667pt;}
._28{width:243.008000pt;}
._3a{width:278.954667pt;}
._32{width:283.840000pt;}
._42{width:302.331093pt;}
._23{width:381.888000pt;}
.fs2{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y82{bottom:3.680000pt;}
.y8e{bottom:3.996000pt;}
.yad{bottom:4.000000pt;}
.y98{bottom:13.116000pt;}
.ybc{bottom:13.120000pt;}
.y80{bottom:22.080000pt;}
.yac{bottom:22.240000pt;}
.y8d{bottom:22.396000pt;}
.ybf{bottom:22.400000pt;}
.yb{bottom:31.072000pt;}
.y97{bottom:31.516000pt;}
.ya2{bottom:31.520000pt;}
.ya{bottom:34.912000pt;}
.y81{bottom:40.480000pt;}
.yab{bottom:40.640000pt;}
.y8c{bottom:40.796000pt;}
.yb9{bottom:40.800000pt;}
.y96{bottom:49.916000pt;}
.yb3{bottom:49.920000pt;}
.ya1{bottom:49.960000pt;}
.y83{bottom:56.356000pt;}
.y3c{bottom:57.952000pt;}
.yaa{bottom:59.080000pt;}
.y8b{bottom:59.196000pt;}
.yb8{bottom:59.200000pt;}
.y95{bottom:68.316000pt;}
.yb2{bottom:68.320000pt;}
.y9e{bottom:68.360000pt;}
.y6d{bottom:69.312000pt;}
.yd7{bottom:70.432000pt;}
.y3b{bottom:76.352000pt;}
.ya9{bottom:77.480000pt;}
.y86{bottom:77.590667pt;}
.yb7{bottom:77.600000pt;}
.y94{bottom:86.710667pt;}
.yb1{bottom:86.720000pt;}
.y9d{bottom:86.760000pt;}
.y6c{bottom:87.712000pt;}
.yd6{bottom:88.832000pt;}
.y3a{bottom:94.752000pt;}
.ya8{bottom:95.880000pt;}
.y85{bottom:95.990667pt;}
.yb6{bottom:96.000000pt;}
.y93{bottom:105.110667pt;}
.yb0{bottom:105.120000pt;}
.y9c{bottom:105.160000pt;}
.y76{bottom:105.792000pt;}
.y6b{bottom:106.112000pt;}
.yd5{bottom:107.232000pt;}
.y39{bottom:113.152000pt;}
.ya7{bottom:114.280000pt;}
.y84{bottom:114.390667pt;}
.yb5{bottom:114.400000pt;}
.y92{bottom:123.510667pt;}
.yaf{bottom:123.520000pt;}
.y9b{bottom:123.560000pt;}
.y75{bottom:124.192000pt;}
.y6a{bottom:124.512000pt;}
.yd4{bottom:125.632000pt;}
.y38{bottom:131.552000pt;}
.ya6{bottom:132.680000pt;}
.y8a{bottom:132.790667pt;}
.yb4{bottom:132.800000pt;}
.y91{bottom:141.910667pt;}
.ybb{bottom:141.920000pt;}
.ya0{bottom:141.960000pt;}
.y69{bottom:142.906667pt;}
.yd3{bottom:144.026667pt;}
.y37{bottom:149.946667pt;}
.ya5{bottom:151.080000pt;}
.y89{bottom:151.190667pt;}
.ybe{bottom:151.200000pt;}
.y90{bottom:160.310667pt;}
.yba{bottom:160.320000pt;}
.y9f{bottom:160.360000pt;}
.y68{bottom:161.306667pt;}
.yd2{bottom:162.426667pt;}
.y36{bottom:168.346667pt;}
.ya4{bottom:169.480000pt;}
.y88{bottom:169.590667pt;}
.ybd{bottom:169.600000pt;}
.y8f{bottom:178.710667pt;}
.y67{bottom:179.706667pt;}
.yd1{bottom:180.826667pt;}
.y35{bottom:186.746667pt;}
.ya3{bottom:187.880000pt;}
.y87{bottom:188.030667pt;}
.y66{bottom:198.106667pt;}
.yd0{bottom:199.226667pt;}
.y34{bottom:205.146667pt;}
.y65{bottom:216.506667pt;}
.ycf{bottom:217.626667pt;}
.y33{bottom:223.546667pt;}
.y64{bottom:234.906667pt;}
.yce{bottom:236.026667pt;}
.y32{bottom:241.946667pt;}
.y63{bottom:253.346667pt;}
.ycd{bottom:254.466667pt;}
.y31{bottom:260.386667pt;}
.y7f{bottom:263.426667pt;}
.y62{bottom:271.746667pt;}
.ycc{bottom:272.866667pt;}
.y30{bottom:278.786667pt;}
.y61{bottom:290.146667pt;}
.ycb{bottom:291.266667pt;}
.y2f{bottom:297.186667pt;}
.y60{bottom:308.546667pt;}
.yca{bottom:309.666667pt;}
.y2e{bottom:315.586667pt;}
.y5f{bottom:326.946667pt;}
.yc9{bottom:328.066667pt;}
.y2d{bottom:333.986667pt;}
.y5e{bottom:345.346667pt;}
.yc8{bottom:346.466667pt;}
.y2c{bottom:352.386667pt;}
.y5d{bottom:363.746667pt;}
.yc7{bottom:364.866667pt;}
.y2b{bottom:370.786667pt;}
.y5c{bottom:382.146667pt;}
.yc6{bottom:383.266667pt;}
.y2a{bottom:389.186667pt;}
.y5b{bottom:400.546667pt;}
.yc5{bottom:401.666667pt;}
.y29{bottom:407.586667pt;}
.y7e{bottom:418.626667pt;}
.y5a{bottom:418.946667pt;}
.yc4{bottom:420.066667pt;}
.y28{bottom:425.986667pt;}
.y74{bottom:437.026667pt;}
.y59{bottom:437.346667pt;}
.yc3{bottom:438.466667pt;}
.y27{bottom:444.386667pt;}
.y58{bottom:455.746667pt;}
.yc2{bottom:456.866667pt;}
.y26{bottom:462.786667pt;}
.y57{bottom:474.146667pt;}
.yc1{bottom:474.946667pt;}
.y25{bottom:481.186667pt;}
.y7d{bottom:492.226667pt;}
.y56{bottom:492.546667pt;}
.yc0{bottom:493.666667pt;}
.y24{bottom:499.293333pt;}
.y7c{bottom:510.653333pt;}
.y55{bottom:510.973333pt;}
.yae{bottom:512.413333pt;}
.y23{bottom:517.533333pt;}
.y54{bottom:529.373333pt;}
.y22{bottom:535.773333pt;}
.y73{bottom:547.453333pt;}
.y53{bottom:547.773333pt;}
.y21{bottom:554.333333pt;}
.y52{bottom:566.173333pt;}
.y20{bottom:572.733333pt;}
.y51{bottom:584.573333pt;}
.y1f{bottom:591.133333pt;}
.y50{bottom:602.973333pt;}
.y1e{bottom:609.213333pt;}
.y7b{bottom:621.053333pt;}
.y4f{bottom:621.373333pt;}
.y1d{bottom:627.613333pt;}
.y7a{bottom:639.453333pt;}
.y4e{bottom:639.773333pt;}
.y1c{bottom:646.333333pt;}
.y4d{bottom:658.173333pt;}
.y1b{bottom:664.733333pt;}
.yd9{bottom:676.253333pt;}
.y4c{bottom:676.573333pt;}
.y1a{bottom:683.133333pt;}
.yd8{bottom:694.653333pt;}
.y4b{bottom:694.973333pt;}
.y9a{bottom:700.413333pt;}
.y19{bottom:701.213333pt;}
.y72{bottom:713.053333pt;}
.y4a{bottom:713.373333pt;}
.y18{bottom:719.613333pt;}
.y71{bottom:731.453333pt;}
.y49{bottom:731.773333pt;}
.y17{bottom:738.333333pt;}
.yda{bottom:749.893333pt;}
.y48{bottom:750.213333pt;}
.y16{bottom:756.773333pt;}
.y79{bottom:768.293333pt;}
.y47{bottom:768.613333pt;}
.y15{bottom:774.853333pt;}
.y78{bottom:786.693333pt;}
.y46{bottom:787.013333pt;}
.y14{bottom:793.253333pt;}
.y70{bottom:805.093333pt;}
.y45{bottom:805.413333pt;}
.y13{bottom:811.973333pt;}
.y44{bottom:823.493333pt;}
.y6f{bottom:823.813333pt;}
.y12{bottom:830.373333pt;}
.y43{bottom:842.213333pt;}
.y11{bottom:848.773333pt;}
.y42{bottom:860.613333pt;}
.y10{bottom:866.853333pt;}
.y77{bottom:878.693333pt;}
.y41{bottom:879.013333pt;}
.yf{bottom:885.093333pt;}
.y6e{bottom:897.093333pt;}
.y40{bottom:897.413333pt;}
.ye{bottom:904.453333pt;}
.y99{bottom:907.493333pt;}
.y3f{bottom:915.813333pt;}
.yd{bottom:928.933333pt;}
.y3e{bottom:934.213333pt;}
.yc{bottom:952.453333pt;}
.y3d{bottom:952.613333pt;}
.y9{bottom:967.173333pt;}
.y8{bottom:972.133333pt;}
.y7{bottom:992.133333pt;}
.y6{bottom:1007.360000pt;}
.y5{bottom:1022.560000pt;}
.y4{bottom:1037.600000pt;}
.y3{bottom:1053.280000pt;}
.y2{bottom:1073.440000pt;}
.y1{bottom:1100.960000pt;}
.h5{height:40.151250pt;}
.h7{height:44.505000pt;}
.hb{height:44.687500pt;}
.hd{height:45.156250pt;}
.h4{height:48.375000pt;}
.hc{height:55.186667pt;}
.hf{height:55.200000pt;}
.h6{height:56.598750pt;}
.ha{height:62.812500pt;}
.h9{height:64.500000pt;}
.h3{height:72.562500pt;}
.h8{height:85.785000pt;}
.h2{height:94.218750pt;}
.h11{height:184.000000pt;}
.h10{height:202.266667pt;}
.he{height:202.422667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w4{width:120.192000pt;}
.w5{width:123.058667pt;}
.w3{width:151.200000pt;}
.w2{width:175.706667pt;}
.w1{width:794.000000pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x8{left:0.960000pt;}
.x7{left:111.072000pt;}
.x1{left:112.032000pt;}
.x4{left:142.586667pt;}
.xc{left:160.026667pt;}
.x9{left:288.706667pt;}
.x5{left:318.786667pt;}
.x2{left:390.626667pt;}
.x6{left:391.906667pt;}
.x3{left:399.106667pt;}
.xa{left:441.986667pt;}
.xb{left:564.106667pt;}
}




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