
    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_049283be3a35e95b27f5c499.woff')format("woff");}.ff1{font-family:ff1;line-height:1.006000;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_d1d4518b021379b3286d9896.woff')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_2b5cc40b94e1b5ad53b5af3c.woff')format("woff");}.ff3{font-family:ff3;line-height:0.881836;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_5ad043c55672ba70c8ed6f3c.woff')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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);}
.v2{vertical-align:-30.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.048000px;}
.ls0{letter-spacing:21.559200px;}
.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:-17.160000px;}
.ws0{word-spacing:-9.984000px;}
.ws2{word-spacing:0.000000px;}
.ws3{word-spacing:1161.312000px;}
._a{margin-left:-53.764800px;}
._e{width:1.320000px;}
._f{width:2.376000px;}
._c{width:3.564000px;}
._0{width:4.686000px;}
._1{width:5.742000px;}
._2{width:7.128000px;}
._d{width:8.646000px;}
._b{width:10.428000px;}
._3{width:11.550000px;}
._4{width:12.870000px;}
._8{width:14.058000px;}
._5{width:18.216000px;}
._12{width:22.770000px;}
._13{width:24.024000px;}
._15{width:31.662000px;}
._9{width:34.038000px;}
._7{width:88.704000px;}
._14{width:94.290000px;}
._10{width:241.098000px;}
._11{width:242.154000px;}
._6{width:367.422000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(17,106,120);}
.fs3{font-size:38.400000px;}
.fs4{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs2{font-size:84.000000px;}
.fs5{font-size:90.000000px;}
.fs6{font-size:96.000000px;}
.fs0{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y1d{bottom:35.058000px;}
.y2d{bottom:57.558000px;}
.y2c{bottom:80.058000px;}
.y14a{bottom:116.733000px;}
.y159{bottom:117.483000px;}
.y62{bottom:117.633000px;}
.y103{bottom:121.908000px;}
.y123{bottom:121.983000px;}
.y133{bottom:126.108000px;}
.y4c{bottom:130.158000px;}
.y95{bottom:132.108000px;}
.yad{bottom:132.858000px;}
.y149{bottom:142.608000px;}
.yd6{bottom:142.983000px;}
.y122{bottom:147.858000px;}
.y61{bottom:158.508000px;}
.yac{bottom:158.733000px;}
.y102{bottom:162.783000px;}
.y7a{bottom:164.733000px;}
.yc7{bottom:166.608000px;}
.y132{bottom:166.983000px;}
.y148{bottom:168.483000px;}
.y4b{bottom:171.033000px;}
.y94{bottom:172.983000px;}
.y121{bottom:173.733000px;}
.yd5{bottom:183.858000px;}
.y60{bottom:184.383000px;}
.yab{bottom:184.608000px;}
.yc6{bottom:192.483000px;}
.y131{bottom:192.858000px;}
.y1c{bottom:196.533000px;}
.y4a{bottom:196.908000px;}
.y114{bottom:198.858000px;}
.y158{bottom:199.233000px;}
.y120{bottom:199.608000px;}
.y101{bottom:203.658000px;}
.y79{bottom:205.608000px;}
.y147{bottom:209.358000px;}
.y5f{bottom:210.258000px;}
.y93{bottom:213.858000px;}
.yc5{bottom:218.358000px;}
.y1b{bottom:222.408000px;}
.yd4{bottom:224.733000px;}
.yaa{bottom:225.483000px;}
.y113{bottom:229.233000px;}
.y130{bottom:233.733000px;}
.y5e{bottom:236.133000px;}
.y49{bottom:237.783000px;}
.y157{bottom:240.108000px;}
.y11f{bottom:240.483000px;}
.yc4{bottom:244.233000px;}
.y100{bottom:244.533000px;}
.y78{bottom:246.483000px;}
.y1a{bottom:248.283000px;}
.y146{bottom:250.233000px;}
.yd3{bottom:250.608000px;}
.y92{bottom:254.733000px;}
.y12f{bottom:259.608000px;}
.y5d{bottom:262.008000px;}
.y48{bottom:263.658000px;}
.y112{bottom:264.108000px;}
.ya9{bottom:266.358000px;}
.y19{bottom:274.158000px;}
.yd2{bottom:276.483000px;}
.y156{bottom:280.983000px;}
.y11e{bottom:281.358000px;}
.yc3{bottom:285.108000px;}
.yff{bottom:285.408000px;}
.y12e{bottom:285.483000px;}
.y77{bottom:287.358000px;}
.y5c{bottom:287.883000px;}
.y145{bottom:291.108000px;}
.y91{bottom:295.608000px;}
.y18{bottom:300.033000px;}
.yd1{bottom:302.358000px;}
.y2b{bottom:304.083000px;}
.y111{bottom:304.983000px;}
.ya8{bottom:307.233000px;}
.y12d{bottom:311.358000px;}
.y5b{bottom:313.758000px;}
.y144{bottom:316.983000px;}
.y155{bottom:321.858000px;}
.y11d{bottom:322.233000px;}
.y17{bottom:325.908000px;}
.yc2{bottom:325.983000px;}
.yfe{bottom:326.283000px;}
.y76{bottom:328.233000px;}
.y110{bottom:330.858000px;}
.y90{bottom:336.483000px;}
.y2a{bottom:338.583000px;}
.y5a{bottom:339.633000px;}
.y143{bottom:342.858000px;}
.yea{bottom:347.733000px;}
.ya7{bottom:348.108000px;}
.y16{bottom:351.783000px;}
.yc1{bottom:351.858000px;}
.yfd{bottom:352.158000px;}
.y12c{bottom:352.233000px;}
.y47{bottom:356.283000px;}
.y10f{bottom:356.733000px;}
.y8f{bottom:362.358000px;}
.y59{bottom:365.508000px;}
.y75{bottom:369.108000px;}
.y11c{bottom:373.983000px;}
.y15{bottom:377.658000px;}
.yfc{bottom:378.033000px;}
.y46{bottom:382.158000px;}
.yc0{bottom:382.233000px;}
.y10e{bottom:382.608000px;}
.y142{bottom:383.733000px;}
.ye9{bottom:388.608000px;}
.ya6{bottom:388.983000px;}
.y58{bottom:391.383000px;}
.y8e{bottom:392.733000px;}
.y12b{bottom:393.108000px;}
.y11b{bottom:399.858000px;}
.y14{bottom:403.533000px;}
.yfb{bottom:403.908000px;}
.y45{bottom:408.033000px;}
.y10d{bottom:408.483000px;}
.y74{bottom:409.983000px;}
.ya5{bottom:414.858000px;}
.y12a{bottom:418.983000px;}
.ybf{bottom:423.108000px;}
.y141{bottom:424.608000px;}
.y11a{bottom:425.733000px;}
.y8d{bottom:427.608000px;}
.y13{bottom:429.408000px;}
.ye8{bottom:429.483000px;}
.yfa{bottom:429.783000px;}
.y44{bottom:433.908000px;}
.y10c{bottom:434.358000px;}
.y129{bottom:449.358000px;}
.y73{bottom:450.858000px;}
.y140{bottom:454.983000px;}
.y12{bottom:455.283000px;}
.y154{bottom:455.358000px;}
.yf9{bottom:455.658000px;}
.ya4{bottom:455.733000px;}
.y43{bottom:459.783000px;}
.ybe{bottom:463.983000px;}
.y119{bottom:466.608000px;}
.y8c{bottom:468.483000px;}
.ye7{bottom:470.358000px;}
.y57{bottom:471.783000px;}
.y10b{bottom:475.233000px;}
.yd0{bottom:476.733000px;}
.y11{bottom:481.158000px;}
.ya3{bottom:481.608000px;}
.y42{bottom:485.658000px;}
.ybd{bottom:489.858000px;}
.y128{bottom:490.233000px;}
.y72{bottom:491.733000px;}
.y118{bottom:492.483000px;}
.y8b{bottom:494.358000px;}
.ye6{bottom:496.233000px;}
.yf8{bottom:496.533000px;}
.y29{bottom:499.308000px;}
.ycf{bottom:502.608000px;}
.y10{bottom:507.033000px;}
.ya2{bottom:507.483000px;}
.y41{bottom:511.533000px;}
.y10a{bottom:516.108000px;}
.y56{bottom:517.758000px;}
.y8a{bottom:520.233000px;}
.yf7{bottom:526.908000px;}
.ybc{bottom:530.733000px;}
.y127{bottom:531.108000px;}
.y71{bottom:532.608000px;}
.yf{bottom:532.908000px;}
.ya1{bottom:533.358000px;}
.y28{bottom:533.808000px;}
.ye5{bottom:537.108000px;}
.y40{bottom:537.408000px;}
.y109{bottom:541.983000px;}
.yce{bottom:543.483000px;}
.y89{bottom:546.108000px;}
.ybb{bottom:556.608000px;}
.ye{bottom:558.783000px;}
.yf6{bottom:561.783000px;}
.y153{bottom:562.983000px;}
.y3f{bottom:563.283000px;}
.y55{bottom:563.733000px;}
.y108{bottom:567.858000px;}
.y13f{bottom:571.608000px;}
.y88{bottom:571.983000px;}
.y70{bottom:573.483000px;}
.ya0{bottom:574.233000px;}
.ye4{bottom:577.983000px;}
.yba{bottom:582.483000px;}
.ycd{bottom:584.358000px;}
.yd{bottom:584.658000px;}
.y3e{bottom:589.158000px;}
.y152{bottom:593.358000px;}
.y107{bottom:593.733000px;}
.y87{bottom:597.858000px;}
.y54{bottom:602.733000px;}
.ye3{bottom:603.858000px;}
.y117{bottom:604.608000px;}
.yb9{bottom:608.358000px;}
.yc{bottom:610.533000px;}
.y13e{bottom:612.483000px;}
.y126{bottom:612.858000px;}
.y6f{bottom:614.358000px;}
.ycc{bottom:614.733000px;}
.y3d{bottom:615.033000px;}
.y9f{bottom:615.108000px;}
.y106{bottom:619.608000px;}
.y151{bottom:634.233000px;}
.yb{bottom:636.408000px;}
.y13d{bottom:638.358000px;}
.y86{bottom:638.733000px;}
.y3c{bottom:640.908000px;}
.yf5{bottom:643.533000px;}
.y27{bottom:644.583000px;}
.ye2{bottom:644.733000px;}
.y116{bottom:645.483000px;}
.y53{bottom:646.233000px;}
.yb8{bottom:649.233000px;}
.ycb{bottom:649.608000px;}
.y125{bottom:653.733000px;}
.y6e{bottom:655.233000px;}
.y9e{bottom:655.983000px;}
.y150{bottom:660.108000px;}
.y105{bottom:660.483000px;}
.ya{bottom:662.283000px;}
.y13c{bottom:664.233000px;}
.y3b{bottom:666.783000px;}
.y26{bottom:675.258000px;}
.y85{bottom:679.608000px;}
.yf4{bottom:684.408000px;}
.ye1{bottom:685.608000px;}
.y14f{bottom:685.983000px;}
.y115{bottom:686.358000px;}
.y9{bottom:688.158000px;}
.yb7{bottom:690.108000px;}
.yca{bottom:690.483000px;}
.y3a{bottom:692.658000px;}
.y6d{bottom:696.108000px;}
.y9d{bottom:696.858000px;}
.y52{bottom:701.208000px;}
.y104{bottom:701.358000px;}
.y84{bottom:705.483000px;}
.y25{bottom:705.933000px;}
.ye0{bottom:711.483000px;}
.y14e{bottom:711.858000px;}
.y8{bottom:714.033000px;}
.yb6{bottom:715.983000px;}
.yc9{bottom:716.358000px;}
.y39{bottom:718.533000px;}
.yf3{bottom:725.283000px;}
.y9c{bottom:727.233000px;}
.y83{bottom:731.358000px;}
.y24{bottom:736.608000px;}
.y6c{bottom:736.983000px;}
.y7{bottom:739.908000px;}
.ydf{bottom:741.858000px;}
.y51{bottom:742.083000px;}
.yc8{bottom:742.233000px;}
.y38{bottom:744.408000px;}
.yb5{bottom:746.358000px;}
.yf2{bottom:751.158000px;}
.y14d{bottom:752.733000px;}
.y13b{bottom:756.858000px;}
.y82{bottom:757.233000px;}
.y6b{bottom:762.858000px;}
.y23{bottom:767.283000px;}
.y6{bottom:767.958000px;}
.y9b{bottom:768.108000px;}
.y37{bottom:770.283000px;}
.yf1{bottom:777.033000px;}
.yde{bottom:782.733000px;}
.y50{bottom:782.958000px;}
.y81{bottom:783.108000px;}
.yb4{bottom:787.233000px;}
.y6a{bottom:788.733000px;}
.y14c{bottom:793.608000px;}
.y36{bottom:796.158000px;}
.y13a{bottom:797.733000px;}
.y22{bottom:797.958000px;}
.yf0{bottom:802.908000px;}
.ydd{bottom:808.608000px;}
.y9a{bottom:808.983000px;}
.y69{bottom:814.608000px;}
.y4f{bottom:815.433000px;}
.y35{bottom:822.033000px;}
.y80{bottom:823.983000px;}
.yb3{bottom:828.108000px;}
.y21{bottom:828.633000px;}
.yef{bottom:828.783000px;}
.ydc{bottom:834.483000px;}
.y139{bottom:838.608000px;}
.y68{bottom:840.483000px;}
.y34{bottom:847.908000px;}
.y99{bottom:849.858000px;}
.yee{bottom:854.658000px;}
.y20{bottom:859.308000px;}
.ydb{bottom:860.358000px;}
.y138{bottom:864.483000px;}
.y7f{bottom:864.858000px;}
.y67{bottom:866.358000px;}
.yb2{bottom:868.983000px;}
.y33{bottom:873.783000px;}
.y14b{bottom:875.358000px;}
.yed{bottom:880.533000px;}
.y1f{bottom:889.983000px;}
.y137{bottom:890.358000px;}
.y98{bottom:890.733000px;}
.y5{bottom:895.383000px;}
.y32{bottom:899.658000px;}
.yda{bottom:901.233000px;}
.y7e{bottom:905.733000px;}
.y66{bottom:907.233000px;}
.yb1{bottom:909.858000px;}
.y4e{bottom:914.658000px;}
.y136{bottom:916.233000px;}
.y1e{bottom:923.808000px;}
.y4{bottom:927.858000px;}
.y97{bottom:931.608000px;}
.y124{bottom:935.733000px;}
.y65{bottom:937.608000px;}
.y31{bottom:940.533000px;}
.yd9{bottom:942.108000px;}
.y7d{bottom:946.608000px;}
.yb0{bottom:950.733000px;}
.y135{bottom:957.108000px;}
.yec{bottom:960.933000px;}
.y4d{bottom:966.408000px;}
.y64{bottom:972.483000px;}
.y3{bottom:974.808000px;}
.yaf{bottom:976.608000px;}
.y30{bottom:981.408000px;}
.yd8{bottom:982.983000px;}
.y7c{bottom:987.483000px;}
.y134{bottom:997.983000px;}
.yae{bottom:1002.483000px;}
.yeb{bottom:1006.908000px;}
.y2f{bottom:1007.283000px;}
.y96{bottom:1013.358000px;}
.y2{bottom:1021.758000px;}
.yd7{bottom:1023.858000px;}
.y7b{bottom:1028.358000px;}
.y2e{bottom:1039.758000px;}
.y63{bottom:1054.233000px;}
.h8{height:50.160000px;}
.h3{height:50.490000px;}
.h5{height:59.376000px;}
.h4{height:64.260000px;}
.h6{height:68.850000px;}
.h7{height:73.440000px;}
.h2{height:91.800000px;}
.h1{height:1187.956500px;}
.h0{height:1188.000000px;}
.w1{width:917.956500px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x7{left:22.800000px;}
.x6{left:108.150000px;}
.x9{left:114.900000px;}
.x1{left:118.950000px;}
.xf{left:138.150000px;}
.x2{left:153.825000px;}
.x10{left:168.150000px;}
.x8{left:247.800000px;}
.xc{left:261.150000px;}
.x3{left:319.500000px;}
.xe{left:358.575000px;}
.xd{left:389.925000px;}
.xb{left:398.700000px;}
.x5{left:402.675000px;}
.x11{left:416.850000px;}
.x4{left:423.150000px;}
.xa{left:473.925000px;}
@media print{
.v2{vertical-align:-26.666667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.666667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.042667pt;}
.ls0{letter-spacing:19.163733pt;}
.ws1{word-spacing:-15.253333pt;}
.ws0{word-spacing:-8.874667pt;}
.ws2{word-spacing:0.000000pt;}
.ws3{word-spacing:1032.277333pt;}
._a{margin-left:-47.790933pt;}
._e{width:1.173333pt;}
._f{width:2.112000pt;}
._c{width:3.168000pt;}
._0{width:4.165333pt;}
._1{width:5.104000pt;}
._2{width:6.336000pt;}
._d{width:7.685333pt;}
._b{width:9.269333pt;}
._3{width:10.266667pt;}
._4{width:11.440000pt;}
._8{width:12.496000pt;}
._5{width:16.192000pt;}
._12{width:20.240000pt;}
._13{width:21.354667pt;}
._15{width:28.144000pt;}
._9{width:30.256000pt;}
._7{width:78.848000pt;}
._14{width:83.813333pt;}
._10{width:214.309333pt;}
._11{width:215.248000pt;}
._6{width:326.597333pt;}
.fs3{font-size:34.133333pt;}
.fs4{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs2{font-size:74.666667pt;}
.fs5{font-size:80.000000pt;}
.fs6{font-size:85.333333pt;}
.fs0{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y1d{bottom:31.162667pt;}
.y2d{bottom:51.162667pt;}
.y2c{bottom:71.162667pt;}
.y14a{bottom:103.762667pt;}
.y159{bottom:104.429333pt;}
.y62{bottom:104.562667pt;}
.y103{bottom:108.362667pt;}
.y123{bottom:108.429333pt;}
.y133{bottom:112.096000pt;}
.y4c{bottom:115.696000pt;}
.y95{bottom:117.429333pt;}
.yad{bottom:118.096000pt;}
.y149{bottom:126.762667pt;}
.yd6{bottom:127.096000pt;}
.y122{bottom:131.429333pt;}
.y61{bottom:140.896000pt;}
.yac{bottom:141.096000pt;}
.y102{bottom:144.696000pt;}
.y7a{bottom:146.429333pt;}
.yc7{bottom:148.096000pt;}
.y132{bottom:148.429333pt;}
.y148{bottom:149.762667pt;}
.y4b{bottom:152.029333pt;}
.y94{bottom:153.762667pt;}
.y121{bottom:154.429333pt;}
.yd5{bottom:163.429333pt;}
.y60{bottom:163.896000pt;}
.yab{bottom:164.096000pt;}
.yc6{bottom:171.096000pt;}
.y131{bottom:171.429333pt;}
.y1c{bottom:174.696000pt;}
.y4a{bottom:175.029333pt;}
.y114{bottom:176.762667pt;}
.y158{bottom:177.096000pt;}
.y120{bottom:177.429333pt;}
.y101{bottom:181.029333pt;}
.y79{bottom:182.762667pt;}
.y147{bottom:186.096000pt;}
.y5f{bottom:186.896000pt;}
.y93{bottom:190.096000pt;}
.yc5{bottom:194.096000pt;}
.y1b{bottom:197.696000pt;}
.yd4{bottom:199.762667pt;}
.yaa{bottom:200.429333pt;}
.y113{bottom:203.762667pt;}
.y130{bottom:207.762667pt;}
.y5e{bottom:209.896000pt;}
.y49{bottom:211.362667pt;}
.y157{bottom:213.429333pt;}
.y11f{bottom:213.762667pt;}
.yc4{bottom:217.096000pt;}
.y100{bottom:217.362667pt;}
.y78{bottom:219.096000pt;}
.y1a{bottom:220.696000pt;}
.y146{bottom:222.429333pt;}
.yd3{bottom:222.762667pt;}
.y92{bottom:226.429333pt;}
.y12f{bottom:230.762667pt;}
.y5d{bottom:232.896000pt;}
.y48{bottom:234.362667pt;}
.y112{bottom:234.762667pt;}
.ya9{bottom:236.762667pt;}
.y19{bottom:243.696000pt;}
.yd2{bottom:245.762667pt;}
.y156{bottom:249.762667pt;}
.y11e{bottom:250.096000pt;}
.yc3{bottom:253.429333pt;}
.yff{bottom:253.696000pt;}
.y12e{bottom:253.762667pt;}
.y77{bottom:255.429333pt;}
.y5c{bottom:255.896000pt;}
.y145{bottom:258.762667pt;}
.y91{bottom:262.762667pt;}
.y18{bottom:266.696000pt;}
.yd1{bottom:268.762667pt;}
.y2b{bottom:270.296000pt;}
.y111{bottom:271.096000pt;}
.ya8{bottom:273.096000pt;}
.y12d{bottom:276.762667pt;}
.y5b{bottom:278.896000pt;}
.y144{bottom:281.762667pt;}
.y155{bottom:286.096000pt;}
.y11d{bottom:286.429333pt;}
.y17{bottom:289.696000pt;}
.yc2{bottom:289.762667pt;}
.yfe{bottom:290.029333pt;}
.y76{bottom:291.762667pt;}
.y110{bottom:294.096000pt;}
.y90{bottom:299.096000pt;}
.y2a{bottom:300.962667pt;}
.y5a{bottom:301.896000pt;}
.y143{bottom:304.762667pt;}
.yea{bottom:309.096000pt;}
.ya7{bottom:309.429333pt;}
.y16{bottom:312.696000pt;}
.yc1{bottom:312.762667pt;}
.yfd{bottom:313.029333pt;}
.y12c{bottom:313.096000pt;}
.y47{bottom:316.696000pt;}
.y10f{bottom:317.096000pt;}
.y8f{bottom:322.096000pt;}
.y59{bottom:324.896000pt;}
.y75{bottom:328.096000pt;}
.y11c{bottom:332.429333pt;}
.y15{bottom:335.696000pt;}
.yfc{bottom:336.029333pt;}
.y46{bottom:339.696000pt;}
.yc0{bottom:339.762667pt;}
.y10e{bottom:340.096000pt;}
.y142{bottom:341.096000pt;}
.ye9{bottom:345.429333pt;}
.ya6{bottom:345.762667pt;}
.y58{bottom:347.896000pt;}
.y8e{bottom:349.096000pt;}
.y12b{bottom:349.429333pt;}
.y11b{bottom:355.429333pt;}
.y14{bottom:358.696000pt;}
.yfb{bottom:359.029333pt;}
.y45{bottom:362.696000pt;}
.y10d{bottom:363.096000pt;}
.y74{bottom:364.429333pt;}
.ya5{bottom:368.762667pt;}
.y12a{bottom:372.429333pt;}
.ybf{bottom:376.096000pt;}
.y141{bottom:377.429333pt;}
.y11a{bottom:378.429333pt;}
.y8d{bottom:380.096000pt;}
.y13{bottom:381.696000pt;}
.ye8{bottom:381.762667pt;}
.yfa{bottom:382.029333pt;}
.y44{bottom:385.696000pt;}
.y10c{bottom:386.096000pt;}
.y129{bottom:399.429333pt;}
.y73{bottom:400.762667pt;}
.y140{bottom:404.429333pt;}
.y12{bottom:404.696000pt;}
.y154{bottom:404.762667pt;}
.yf9{bottom:405.029333pt;}
.ya4{bottom:405.096000pt;}
.y43{bottom:408.696000pt;}
.ybe{bottom:412.429333pt;}
.y119{bottom:414.762667pt;}
.y8c{bottom:416.429333pt;}
.ye7{bottom:418.096000pt;}
.y57{bottom:419.362667pt;}
.y10b{bottom:422.429333pt;}
.yd0{bottom:423.762667pt;}
.y11{bottom:427.696000pt;}
.ya3{bottom:428.096000pt;}
.y42{bottom:431.696000pt;}
.ybd{bottom:435.429333pt;}
.y128{bottom:435.762667pt;}
.y72{bottom:437.096000pt;}
.y118{bottom:437.762667pt;}
.y8b{bottom:439.429333pt;}
.ye6{bottom:441.096000pt;}
.yf8{bottom:441.362667pt;}
.y29{bottom:443.829333pt;}
.ycf{bottom:446.762667pt;}
.y10{bottom:450.696000pt;}
.ya2{bottom:451.096000pt;}
.y41{bottom:454.696000pt;}
.y10a{bottom:458.762667pt;}
.y56{bottom:460.229333pt;}
.y8a{bottom:462.429333pt;}
.yf7{bottom:468.362667pt;}
.ybc{bottom:471.762667pt;}
.y127{bottom:472.096000pt;}
.y71{bottom:473.429333pt;}
.yf{bottom:473.696000pt;}
.ya1{bottom:474.096000pt;}
.y28{bottom:474.496000pt;}
.ye5{bottom:477.429333pt;}
.y40{bottom:477.696000pt;}
.y109{bottom:481.762667pt;}
.yce{bottom:483.096000pt;}
.y89{bottom:485.429333pt;}
.ybb{bottom:494.762667pt;}
.ye{bottom:496.696000pt;}
.yf6{bottom:499.362667pt;}
.y153{bottom:500.429333pt;}
.y3f{bottom:500.696000pt;}
.y55{bottom:501.096000pt;}
.y108{bottom:504.762667pt;}
.y13f{bottom:508.096000pt;}
.y88{bottom:508.429333pt;}
.y70{bottom:509.762667pt;}
.ya0{bottom:510.429333pt;}
.ye4{bottom:513.762667pt;}
.yba{bottom:517.762667pt;}
.ycd{bottom:519.429333pt;}
.yd{bottom:519.696000pt;}
.y3e{bottom:523.696000pt;}
.y152{bottom:527.429333pt;}
.y107{bottom:527.762667pt;}
.y87{bottom:531.429333pt;}
.y54{bottom:535.762667pt;}
.ye3{bottom:536.762667pt;}
.y117{bottom:537.429333pt;}
.yb9{bottom:540.762667pt;}
.yc{bottom:542.696000pt;}
.y13e{bottom:544.429333pt;}
.y126{bottom:544.762667pt;}
.y6f{bottom:546.096000pt;}
.ycc{bottom:546.429333pt;}
.y3d{bottom:546.696000pt;}
.y9f{bottom:546.762667pt;}
.y106{bottom:550.762667pt;}
.y151{bottom:563.762667pt;}
.yb{bottom:565.696000pt;}
.y13d{bottom:567.429333pt;}
.y86{bottom:567.762667pt;}
.y3c{bottom:569.696000pt;}
.yf5{bottom:572.029333pt;}
.y27{bottom:572.962667pt;}
.ye2{bottom:573.096000pt;}
.y116{bottom:573.762667pt;}
.y53{bottom:574.429333pt;}
.yb8{bottom:577.096000pt;}
.ycb{bottom:577.429333pt;}
.y125{bottom:581.096000pt;}
.y6e{bottom:582.429333pt;}
.y9e{bottom:583.096000pt;}
.y150{bottom:586.762667pt;}
.y105{bottom:587.096000pt;}
.ya{bottom:588.696000pt;}
.y13c{bottom:590.429333pt;}
.y3b{bottom:592.696000pt;}
.y26{bottom:600.229333pt;}
.y85{bottom:604.096000pt;}
.yf4{bottom:608.362667pt;}
.ye1{bottom:609.429333pt;}
.y14f{bottom:609.762667pt;}
.y115{bottom:610.096000pt;}
.y9{bottom:611.696000pt;}
.yb7{bottom:613.429333pt;}
.yca{bottom:613.762667pt;}
.y3a{bottom:615.696000pt;}
.y6d{bottom:618.762667pt;}
.y9d{bottom:619.429333pt;}
.y52{bottom:623.296000pt;}
.y104{bottom:623.429333pt;}
.y84{bottom:627.096000pt;}
.y25{bottom:627.496000pt;}
.ye0{bottom:632.429333pt;}
.y14e{bottom:632.762667pt;}
.y8{bottom:634.696000pt;}
.yb6{bottom:636.429333pt;}
.yc9{bottom:636.762667pt;}
.y39{bottom:638.696000pt;}
.yf3{bottom:644.696000pt;}
.y9c{bottom:646.429333pt;}
.y83{bottom:650.096000pt;}
.y24{bottom:654.762667pt;}
.y6c{bottom:655.096000pt;}
.y7{bottom:657.696000pt;}
.ydf{bottom:659.429333pt;}
.y51{bottom:659.629333pt;}
.yc8{bottom:659.762667pt;}
.y38{bottom:661.696000pt;}
.yb5{bottom:663.429333pt;}
.yf2{bottom:667.696000pt;}
.y14d{bottom:669.096000pt;}
.y13b{bottom:672.762667pt;}
.y82{bottom:673.096000pt;}
.y6b{bottom:678.096000pt;}
.y23{bottom:682.029333pt;}
.y6{bottom:682.629333pt;}
.y9b{bottom:682.762667pt;}
.y37{bottom:684.696000pt;}
.yf1{bottom:690.696000pt;}
.yde{bottom:695.762667pt;}
.y50{bottom:695.962667pt;}
.y81{bottom:696.096000pt;}
.yb4{bottom:699.762667pt;}
.y6a{bottom:701.096000pt;}
.y14c{bottom:705.429333pt;}
.y36{bottom:707.696000pt;}
.y13a{bottom:709.096000pt;}
.y22{bottom:709.296000pt;}
.yf0{bottom:713.696000pt;}
.ydd{bottom:718.762667pt;}
.y9a{bottom:719.096000pt;}
.y69{bottom:724.096000pt;}
.y4f{bottom:724.829333pt;}
.y35{bottom:730.696000pt;}
.y80{bottom:732.429333pt;}
.yb3{bottom:736.096000pt;}
.y21{bottom:736.562667pt;}
.yef{bottom:736.696000pt;}
.ydc{bottom:741.762667pt;}
.y139{bottom:745.429333pt;}
.y68{bottom:747.096000pt;}
.y34{bottom:753.696000pt;}
.y99{bottom:755.429333pt;}
.yee{bottom:759.696000pt;}
.y20{bottom:763.829333pt;}
.ydb{bottom:764.762667pt;}
.y138{bottom:768.429333pt;}
.y7f{bottom:768.762667pt;}
.y67{bottom:770.096000pt;}
.yb2{bottom:772.429333pt;}
.y33{bottom:776.696000pt;}
.y14b{bottom:778.096000pt;}
.yed{bottom:782.696000pt;}
.y1f{bottom:791.096000pt;}
.y137{bottom:791.429333pt;}
.y98{bottom:791.762667pt;}
.y5{bottom:795.896000pt;}
.y32{bottom:799.696000pt;}
.yda{bottom:801.096000pt;}
.y7e{bottom:805.096000pt;}
.y66{bottom:806.429333pt;}
.yb1{bottom:808.762667pt;}
.y4e{bottom:813.029333pt;}
.y136{bottom:814.429333pt;}
.y1e{bottom:821.162667pt;}
.y4{bottom:824.762667pt;}
.y97{bottom:828.096000pt;}
.y124{bottom:831.762667pt;}
.y65{bottom:833.429333pt;}
.y31{bottom:836.029333pt;}
.yd9{bottom:837.429333pt;}
.y7d{bottom:841.429333pt;}
.yb0{bottom:845.096000pt;}
.y135{bottom:850.762667pt;}
.yec{bottom:854.162667pt;}
.y4d{bottom:859.029333pt;}
.y64{bottom:864.429333pt;}
.y3{bottom:866.496000pt;}
.yaf{bottom:868.096000pt;}
.y30{bottom:872.362667pt;}
.yd8{bottom:873.762667pt;}
.y7c{bottom:877.762667pt;}
.y134{bottom:887.096000pt;}
.yae{bottom:891.096000pt;}
.yeb{bottom:895.029333pt;}
.y2f{bottom:895.362667pt;}
.y96{bottom:900.762667pt;}
.y2{bottom:908.229333pt;}
.yd7{bottom:910.096000pt;}
.y7b{bottom:914.096000pt;}
.y2e{bottom:924.229333pt;}
.y63{bottom:937.096000pt;}
.h8{height:44.586667pt;}
.h3{height:44.880000pt;}
.h5{height:52.778667pt;}
.h4{height:57.120000pt;}
.h6{height:61.200000pt;}
.h7{height:65.280000pt;}
.h2{height:81.600000pt;}
.h1{height:1055.961333pt;}
.h0{height:1056.000000pt;}
.w1{width:815.961333pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x7{left:20.266667pt;}
.x6{left:96.133333pt;}
.x9{left:102.133333pt;}
.x1{left:105.733333pt;}
.xf{left:122.800000pt;}
.x2{left:136.733333pt;}
.x10{left:149.466667pt;}
.x8{left:220.266667pt;}
.xc{left:232.133333pt;}
.x3{left:284.000000pt;}
.xe{left:318.733333pt;}
.xd{left:346.600000pt;}
.xb{left:354.400000pt;}
.x5{left:357.933333pt;}
.x11{left:370.533333pt;}
.x4{left:376.133333pt;}
.xa{left:421.266667pt;}
}




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