
    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_8d2abe9c8e0598a693199908.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_931b63a17fb4c0bb02457aa9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.933594;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_895e869612b2cfc5c9150d1a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_f39644a831546d5aa576ac8a.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_4f9fcef5404c5176158c6efd.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.896973;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_7ed38ca0e6260a1abcb7d140.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.722656;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_4466ba890116d6e625b156de.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;}
.m0{transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.440000px;}
.v3{vertical-align:30.240000px;}
.v1{vertical-align:38.880000px;}
.ls2{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.250560px;}
.ls3{letter-spacing:0.397461px;}
.ls1{letter-spacing:0.707048px;}
.ls4{letter-spacing:30.353778px;}
.ls5{letter-spacing:33.232051px;}
.ls6{letter-spacing:43.630294px;}
.lsa{letter-spacing:177.722566px;}
.ls0{letter-spacing:251.096942px;}
.ls9{letter-spacing:291.414351px;}
.ls7{letter-spacing:337.466720px;}
.lsb{letter-spacing:343.223266px;}
.ls8{letter-spacing:455.475914px;}
.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;}
}
.ws6{word-spacing:-72.000000px;}
.ws5{word-spacing:-60.480000px;}
.ws0{word-spacing:-60.120000px;}
.ws1{word-spacing:-20.880000px;}
.ws4{word-spacing:-18.000000px;}
.ws2{word-spacing:-13.679850px;}
.ws3{word-spacing:0.000000px;}
._37{margin-left:-17.344761px;}
._39{margin-left:-9.752912px;}
._38{margin-left:-8.506044px;}
._2d{margin-left:-7.488000px;}
._d{margin-left:-6.410785px;}
._a{margin-left:-4.799087px;}
._8{margin-left:-3.525217px;}
._7{margin-left:-2.395516px;}
._3{margin-left:-1.033573px;}
._5{width:1.158057px;}
._6{width:2.299287px;}
._10{width:3.337372px;}
._9{width:4.501557px;}
._c{width:5.581233px;}
._13{width:7.005550px;}
._14{width:8.372191px;}
._15{width:10.293994px;}
._11{width:11.492700px;}
._12{width:12.989051px;}
._f{width:14.749969px;}
._e{width:15.816673px;}
._16{width:16.913865px;}
._17{width:20.596491px;}
._b{width:21.751459px;}
._18{width:23.188635px;}
._1b{width:24.724985px;}
._19{width:30.041055px;}
._1a{width:31.998020px;}
._2{width:107.870478px;}
._4{width:111.135519px;}
._2c{width:120.408346px;}
._2b{width:126.365830px;}
._0{width:137.260955px;}
._31{width:153.749525px;}
._1{width:161.870478px;}
._2e{width:164.131533px;}
._27{width:175.504233px;}
._1e{width:197.703813px;}
._34{width:198.840348px;}
._28{width:259.694618px;}
._26{width:282.002504px;}
._32{width:308.169807px;}
._35{width:333.653296px;}
._29{width:334.905119px;}
._33{width:369.869947px;}
._1d{width:390.126987px;}
._25{width:411.802419px;}
._30{width:422.332600px;}
._1c{width:427.670826px;}
._2f{width:455.432740px;}
._24{width:461.851102px;}
._2a{width:482.412004px;}
._36{width:491.432740px;}
._1f{width:504.547219px;}
._22{width:524.418024px;}
._23{width:682.794723px;}
._21{width:687.176894px;}
._20{width:718.794723px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:41.760000px;}
.fs3{font-size:50.400000px;}
.fs6{font-size:54.719400px;}
.fs9{font-size:60.480000px;}
.fs8{font-size:66.239400px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:83.520000px;}
.fs4{font-size:96.479400px;}
.fs1{font-size:216.000000px;}
.fs0{font-size:240.480000px;}
.y0{bottom:0.000000px;}
.y2{bottom:35.640000px;}
.y1f{bottom:50.040000px;}
.ye9{bottom:85.680000px;}
.ye8{bottom:109.439850px;}
.y103{bottom:111.600000px;}
.y76{bottom:114.479850px;}
.y3b{bottom:115.560000px;}
.yce{bottom:116.280000px;}
.y8b{bottom:119.520000px;}
.y59{bottom:120.960000px;}
.yba{bottom:122.400000px;}
.y9f{bottom:127.800000px;}
.y102{bottom:135.720000px;}
.y75{bottom:138.240000px;}
.y3a{bottom:138.960000px;}
.ycd{bottom:139.680000px;}
.y8a{bottom:142.920000px;}
.y58{bottom:144.360000px;}
.yb9{bottom:146.160000px;}
.ye7{bottom:148.680000px;}
.y1d{bottom:152.280000px;}
.y101{bottom:159.480000px;}
.y74{bottom:162.000000px;}
.y39{bottom:162.720000px;}
.ycc{bottom:163.080000px;}
.y89{bottom:166.680000px;}
.y57{bottom:168.120000px;}
.yb8{bottom:169.920000px;}
.y9e{bottom:170.640000px;}
.y1c{bottom:175.680000px;}
.y100{bottom:183.240000px;}
.y73{bottom:185.760000px;}
.y38{bottom:186.480000px;}
.ye6{bottom:190.080000px;}
.y56{bottom:191.880000px;}
.yb7{bottom:193.680000px;}
.y1b{bottom:199.440000px;}
.ycb{bottom:201.600000px;}
.y88{bottom:205.560000px;}
.yff{bottom:207.000000px;}
.y72{bottom:209.520000px;}
.y37{bottom:210.600000px;}
.y9d{bottom:212.400000px;}
.ye5{bottom:213.480000px;}
.y55{bottom:215.640000px;}
.yb6{bottom:217.440000px;}
.y1a{bottom:223.200000px;}
.yca{bottom:225.000000px;}
.yfe{bottom:230.760000px;}
.y71{bottom:233.280000px;}
.y36{bottom:234.360000px;}
.y9c{bottom:235.800000px;}
.ye4{bottom:236.879850px;}
.y54{bottom:239.400000px;}
.yb5{bottom:241.200000px;}
.y87{bottom:245.520000px;}
.y19{bottom:246.959850px;}
.yc9{bottom:248.040000px;}
.yfd{bottom:254.520000px;}
.y70{bottom:257.040000px;}
.y35{bottom:258.120000px;}
.y9b{bottom:259.920000px;}
.y53{bottom:263.520000px;}
.yb4{bottom:265.320000px;}
.y18{bottom:270.720000px;}
.yc8{bottom:271.440000px;}
.ye3{bottom:274.680000px;}
.yfc{bottom:278.280000px;}
.y6f{bottom:280.800000px;}
.y52{bottom:287.280000px;}
.y86{bottom:287.640000px;}
.yb3{bottom:289.080000px;}
.y17{bottom:294.480000px;}
.yc7{bottom:294.840000px;}
.y34{bottom:298.080000px;}
.y9a{bottom:298.800000px;}
.yfb{bottom:302.040000px;}
.y51{bottom:311.040000px;}
.yb2{bottom:312.840000px;}
.ye2{bottom:313.560000px;}
.y16{bottom:318.240000px;}
.y6e{bottom:320.040000px;}
.yfa{bottom:325.800000px;}
.yc6{bottom:334.440000px;}
.y50{bottom:334.800000px;}
.yb1{bottom:336.600000px;}
.ye1{bottom:336.960000px;}
.y99{bottom:337.320000px;}
.y33{bottom:339.840000px;}
.y15{bottom:342.360000px;}
.y6d{bottom:343.440000px;}
.yf9{bottom:349.920000px;}
.y4f{bottom:358.560000px;}
.ye0{bottom:360.360000px;}
.y32{bottom:363.240000px;}
.y14{bottom:366.120000px;}
.yf8{bottom:373.680000px;}
.yb0{bottom:375.480000px;}
.y98{bottom:376.560000px;}
.y4e{bottom:382.320000px;}
.y6c{bottom:383.400000px;}
.ydf{bottom:383.760000px;}
.y13{bottom:389.880000px;}
.yf7{bottom:397.440000px;}
.yc5{bottom:398.880000px;}
.y97{bottom:399.960000px;}
.y31{bottom:402.480000px;}
.y4d{bottom:406.080000px;}
.y12{bottom:413.640000px;}
.yaf{bottom:414.360000px;}
.yf6{bottom:421.200000px;}
.yde{bottom:421.560000px;}
.y96{bottom:423.720000px;}
.y6b{bottom:425.520000px;}
.y30{bottom:425.880000px;}
.y4c{bottom:429.840000px;}
.yc4{bottom:436.680000px;}
.y11{bottom:437.400000px;}
.yae{bottom:438.120000px;}
.yf5{bottom:444.960000px;}
.y85{bottom:445.320000px;}
.y95{bottom:447.480000px;}
.y6a{bottom:448.919850px;}
.y2f{bottom:450.000000px;}
.y4b{bottom:453.960000px;}
.yc3{bottom:460.080000px;}
.ydd{bottom:460.440000px;}
.y10{bottom:461.160000px;}
.yad{bottom:461.880000px;}
.yf4{bottom:468.720000px;}
.y94{bottom:471.240000px;}
.y69{bottom:472.680000px;}
.y2e{bottom:473.759850px;}
.y4a{bottom:477.720000px;}
.ydc{bottom:483.840000px;}
.yc2{bottom:484.560000px;}
.yf{bottom:484.919850px;}
.yac{bottom:486.360000px;}
.yf3{bottom:492.480000px;}
.y68{bottom:496.440000px;}
.y2d{bottom:497.520000px;}
.y49{bottom:501.480000px;}
.ydb{bottom:507.240000px;}
.ye{bottom:508.680000px;}
.yc1{bottom:509.040000px;}
.y93{bottom:510.120000px;}
.yab{bottom:510.480000px;}
.yf2{bottom:516.240000px;}
.y67{bottom:520.200000px;}
.y48{bottom:525.240000px;}
.y84{bottom:527.040000px;}
.yda{bottom:530.280000px;}
.yd{bottom:532.800000px;}
.yc0{bottom:533.520000px;}
.yaa{bottom:535.320000px;}
.y2c{bottom:536.759850px;}
.yf1{bottom:540.360000px;}
.y66{bottom:544.320000px;}
.y47{bottom:549.000000px;}
.y92{bottom:550.080000px;}
.y83{bottom:550.440000px;}
.yd9{bottom:553.680000px;}
.yc{bottom:556.560000px;}
.ybf{bottom:558.000000px;}
.ya9{bottom:559.800000px;}
.y2b{bottom:560.160000px;}
.yf0{bottom:564.120000px;}
.y65{bottom:568.080000px;}
.y82{bottom:574.200000px;}
.yd8{bottom:577.080000px;}
.ybe{bottom:582.840000px;}
.y2a{bottom:583.919850px;}
.ya8{bottom:584.640000px;}
.yef{bottom:587.880000px;}
.y46{bottom:588.240000px;}
.y91{bottom:592.200000px;}
.yb{bottom:596.160000px;}
.y81{bottom:597.960000px;}
.yd7{bottom:600.480000px;}
.y64{bottom:606.600000px;}
.ybd{bottom:607.320000px;}
.y29{bottom:607.680000px;}
.ya7{bottom:608.759850px;}
.yee{bottom:611.640000px;}
.y90{bottom:615.600000px;}
.y80{bottom:621.720000px;}
.yd6{bottom:623.880000px;}
.y45{bottom:626.759850px;}
.y28{bottom:631.440000px;}
.ya6{bottom:633.600000px;}
.yed{bottom:635.400000px;}
.ya{bottom:637.560000px;}
.y8f{bottom:639.360000px;}
.y63{bottom:645.840000px;}
.ybc{bottom:655.560000px;}
.ya5{bottom:657.720000px;}
.y7f{bottom:660.960000px;}
.yd5{bottom:662.040000px;}
.y8e{bottom:663.120000px;}
.y44{bottom:665.640000px;}
.y9{bottom:666.720000px;}
.y62{bottom:669.240000px;}
.y27{bottom:670.680000px;}
.yec{bottom:675.360000px;}
.y8{bottom:681.120000px;}
.ya4{bottom:682.920000px;}
.y7e{bottom:684.360000px;}
.y43{bottom:689.040000px;}
.y61{bottom:693.000000px;}
.y26{bottom:694.080000px;}
.yd4{bottom:701.640000px;}
.y8d{bottom:702.000000px;}
.ya3{bottom:707.040000px;}
.y7d{bottom:708.120000px;}
.y7{bottom:710.640000px;}
.y42{bottom:713.160000px;}
.y60{bottom:717.120000px;}
.yeb{bottom:717.480000px;}
.y25{bottom:717.840000px;}
.y6{bottom:726.120000px;}
.ya2{bottom:731.520000px;}
.y7c{bottom:731.880000px;}
.ybb{bottom:732.240000px;}
.y41{bottom:736.920000px;}
.y5f{bottom:740.880000px;}
.y8c{bottom:741.240000px;}
.y24{bottom:741.600000px;}
.yd3{bottom:743.040000px;}
.y7b{bottom:755.640000px;}
.y40{bottom:760.680000px;}
.y5e{bottom:764.640000px;}
.y23{bottom:765.360000px;}
.yd2{bottom:766.440000px;}
.y5{bottom:770.400000px;}
.ya1{bottom:771.839850px;}
.y7a{bottom:779.760000px;}
.y3f{bottom:784.440000px;}
.y5d{bottom:788.400000px;}
.yd1{bottom:789.839850px;}
.ya0{bottom:794.160000px;}
.y4{bottom:801.720000px;}
.y79{bottom:803.519850px;}
.y22{bottom:805.320000px;}
.y3e{bottom:808.200000px;}
.y5c{bottom:812.160000px;}
.yd0{bottom:812.880000px;}
.y78{bottom:827.280000px;}
.yea{bottom:827.640000px;}
.y3d{bottom:831.960000px;}
.y3{bottom:833.400000px;}
.y5b{bottom:835.920000px;}
.y21{bottom:847.440000px;}
.y77{bottom:851.040000px;}
.ycf{bottom:851.400000px;}
.y20{bottom:871.560000px;}
.y3c{bottom:871.920000px;}
.y5a{bottom:874.800000px;}
.y1{bottom:877.680000px;}
.y1e{bottom:923.040000px;}
.h5{height:28.995469px;}
.h2{height:34.157813px;}
.h10{height:47.544882px;}
.h9{height:47.988281px;}
.hd{height:48.796875px;}
.hf{height:49.042969px;}
.h8{height:49.992188px;}
.hc{height:51.679688px;}
.he{height:52.031250px;}
.h11{height:53.119688px;}
.h12{height:53.120287px;}
.hb{height:56.604375px;}
.h7{height:56.889844px;}
.ha{height:57.990937px;}
.h6{height:59.235469px;}
.h3{height:65.387406px;}
.h4{height:75.965218px;}
.h1{height:162.981562px;}
.h0{height:972.000000px;}
.w0{width:756.000000px;}
.x0{left:0.000000px;}
.x2{left:81.000000px;}
.x1{left:83.160000px;}
.x3{left:103.320000px;}
.xc{left:108.000000px;}
.xb{left:113.400000px;}
.x4{left:127.080000px;}
.x8{left:174.960000px;}
.xe{left:180.360000px;}
.x5{left:184.320000px;}
.x9{left:198.720000px;}
.x7{left:206.640000px;}
.xd{left:238.680000px;}
.x6{left:258.840000px;}
.xa{left:341.640000px;}
@media print{
.v2{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.280000pt;}
.v3{vertical-align:26.880000pt;}
.v1{vertical-align:34.560000pt;}
.ls2{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.222720pt;}
.ls3{letter-spacing:0.353298pt;}
.ls1{letter-spacing:0.628487pt;}
.ls4{letter-spacing:26.981136pt;}
.ls5{letter-spacing:29.539601pt;}
.ls6{letter-spacing:38.782483pt;}
.lsa{letter-spacing:157.975615pt;}
.ls0{letter-spacing:223.197282pt;}
.ls9{letter-spacing:259.034979pt;}
.ls7{letter-spacing:299.970418pt;}
.lsb{letter-spacing:305.087348pt;}
.ls8{letter-spacing:404.867480pt;}
.ws6{word-spacing:-64.000000pt;}
.ws5{word-spacing:-53.760000pt;}
.ws0{word-spacing:-53.440000pt;}
.ws1{word-spacing:-18.560000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws2{word-spacing:-12.159867pt;}
.ws3{word-spacing:0.000000pt;}
._37{margin-left:-15.417565pt;}
._39{margin-left:-8.669255pt;}
._38{margin-left:-7.560928pt;}
._2d{margin-left:-6.656000pt;}
._d{margin-left:-5.698476pt;}
._a{margin-left:-4.265855pt;}
._8{margin-left:-3.133526pt;}
._7{margin-left:-2.129348pt;}
._3{margin-left:-0.918732pt;}
._5{width:1.029384pt;}
._6{width:2.043811pt;}
._10{width:2.966553pt;}
._9{width:4.001384pt;}
._c{width:4.961096pt;}
._13{width:6.227156pt;}
._14{width:7.441948pt;}
._15{width:9.150217pt;}
._11{width:10.215733pt;}
._12{width:11.545823pt;}
._f{width:13.111084pt;}
._e{width:14.059265pt;}
._16{width:15.034547pt;}
._17{width:18.307992pt;}
._b{width:19.334630pt;}
._18{width:20.612120pt;}
._1b{width:21.977764pt;}
._19{width:26.703160pt;}
._1a{width:28.442685pt;}
._2{width:95.884869pt;}
._4{width:98.787128pt;}
._2c{width:107.029641pt;}
._2b{width:112.325182pt;}
._0{width:122.009738pt;}
._31{width:136.666244pt;}
._1{width:143.884869pt;}
._2e{width:145.894696pt;}
._27{width:156.003762pt;}
._1e{width:175.736722pt;}
._34{width:176.746976pt;}
._28{width:230.839661pt;}
._26{width:250.668892pt;}
._32{width:273.928718pt;}
._35{width:296.580707pt;}
._29{width:297.693439pt;}
._33{width:328.773286pt;}
._1d{width:346.779544pt;}
._25{width:366.046595pt;}
._30{width:375.406756pt;}
._1c{width:380.151845pt;}
._2f{width:404.829103pt;}
._24{width:410.534313pt;}
._2a{width:428.810670pt;}
._36{width:436.829103pt;}
._1f{width:448.486417pt;}
._22{width:466.149355pt;}
._23{width:606.928643pt;}
._21{width:610.823906pt;}
._20{width:638.928643pt;}
.fs7{font-size:37.120000pt;}
.fs3{font-size:44.800000pt;}
.fs6{font-size:48.639467pt;}
.fs9{font-size:53.760000pt;}
.fs8{font-size:58.879467pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.240000pt;}
.fs4{font-size:85.759467pt;}
.fs1{font-size:192.000000pt;}
.fs0{font-size:213.760000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:31.680000pt;}
.y1f{bottom:44.480000pt;}
.ye9{bottom:76.160000pt;}
.ye8{bottom:97.279867pt;}
.y103{bottom:99.200000pt;}
.y76{bottom:101.759867pt;}
.y3b{bottom:102.720000pt;}
.yce{bottom:103.360000pt;}
.y8b{bottom:106.240000pt;}
.y59{bottom:107.520000pt;}
.yba{bottom:108.800000pt;}
.y9f{bottom:113.600000pt;}
.y102{bottom:120.640000pt;}
.y75{bottom:122.880000pt;}
.y3a{bottom:123.520000pt;}
.ycd{bottom:124.160000pt;}
.y8a{bottom:127.040000pt;}
.y58{bottom:128.320000pt;}
.yb9{bottom:129.920000pt;}
.ye7{bottom:132.160000pt;}
.y1d{bottom:135.360000pt;}
.y101{bottom:141.760000pt;}
.y74{bottom:144.000000pt;}
.y39{bottom:144.640000pt;}
.ycc{bottom:144.960000pt;}
.y89{bottom:148.160000pt;}
.y57{bottom:149.440000pt;}
.yb8{bottom:151.040000pt;}
.y9e{bottom:151.680000pt;}
.y1c{bottom:156.160000pt;}
.y100{bottom:162.880000pt;}
.y73{bottom:165.120000pt;}
.y38{bottom:165.760000pt;}
.ye6{bottom:168.960000pt;}
.y56{bottom:170.560000pt;}
.yb7{bottom:172.160000pt;}
.y1b{bottom:177.280000pt;}
.ycb{bottom:179.200000pt;}
.y88{bottom:182.720000pt;}
.yff{bottom:184.000000pt;}
.y72{bottom:186.240000pt;}
.y37{bottom:187.200000pt;}
.y9d{bottom:188.800000pt;}
.ye5{bottom:189.760000pt;}
.y55{bottom:191.680000pt;}
.yb6{bottom:193.280000pt;}
.y1a{bottom:198.400000pt;}
.yca{bottom:200.000000pt;}
.yfe{bottom:205.120000pt;}
.y71{bottom:207.360000pt;}
.y36{bottom:208.320000pt;}
.y9c{bottom:209.600000pt;}
.ye4{bottom:210.559867pt;}
.y54{bottom:212.800000pt;}
.yb5{bottom:214.400000pt;}
.y87{bottom:218.240000pt;}
.y19{bottom:219.519867pt;}
.yc9{bottom:220.480000pt;}
.yfd{bottom:226.240000pt;}
.y70{bottom:228.480000pt;}
.y35{bottom:229.440000pt;}
.y9b{bottom:231.040000pt;}
.y53{bottom:234.240000pt;}
.yb4{bottom:235.840000pt;}
.y18{bottom:240.640000pt;}
.yc8{bottom:241.280000pt;}
.ye3{bottom:244.160000pt;}
.yfc{bottom:247.360000pt;}
.y6f{bottom:249.600000pt;}
.y52{bottom:255.360000pt;}
.y86{bottom:255.680000pt;}
.yb3{bottom:256.960000pt;}
.y17{bottom:261.760000pt;}
.yc7{bottom:262.080000pt;}
.y34{bottom:264.960000pt;}
.y9a{bottom:265.600000pt;}
.yfb{bottom:268.480000pt;}
.y51{bottom:276.480000pt;}
.yb2{bottom:278.080000pt;}
.ye2{bottom:278.720000pt;}
.y16{bottom:282.880000pt;}
.y6e{bottom:284.480000pt;}
.yfa{bottom:289.600000pt;}
.yc6{bottom:297.280000pt;}
.y50{bottom:297.600000pt;}
.yb1{bottom:299.200000pt;}
.ye1{bottom:299.520000pt;}
.y99{bottom:299.840000pt;}
.y33{bottom:302.080000pt;}
.y15{bottom:304.320000pt;}
.y6d{bottom:305.280000pt;}
.yf9{bottom:311.040000pt;}
.y4f{bottom:318.720000pt;}
.ye0{bottom:320.320000pt;}
.y32{bottom:322.880000pt;}
.y14{bottom:325.440000pt;}
.yf8{bottom:332.160000pt;}
.yb0{bottom:333.760000pt;}
.y98{bottom:334.720000pt;}
.y4e{bottom:339.840000pt;}
.y6c{bottom:340.800000pt;}
.ydf{bottom:341.120000pt;}
.y13{bottom:346.560000pt;}
.yf7{bottom:353.280000pt;}
.yc5{bottom:354.560000pt;}
.y97{bottom:355.520000pt;}
.y31{bottom:357.760000pt;}
.y4d{bottom:360.960000pt;}
.y12{bottom:367.680000pt;}
.yaf{bottom:368.320000pt;}
.yf6{bottom:374.400000pt;}
.yde{bottom:374.720000pt;}
.y96{bottom:376.640000pt;}
.y6b{bottom:378.240000pt;}
.y30{bottom:378.560000pt;}
.y4c{bottom:382.080000pt;}
.yc4{bottom:388.160000pt;}
.y11{bottom:388.800000pt;}
.yae{bottom:389.440000pt;}
.yf5{bottom:395.520000pt;}
.y85{bottom:395.840000pt;}
.y95{bottom:397.760000pt;}
.y6a{bottom:399.039867pt;}
.y2f{bottom:400.000000pt;}
.y4b{bottom:403.520000pt;}
.yc3{bottom:408.960000pt;}
.ydd{bottom:409.280000pt;}
.y10{bottom:409.920000pt;}
.yad{bottom:410.560000pt;}
.yf4{bottom:416.640000pt;}
.y94{bottom:418.880000pt;}
.y69{bottom:420.160000pt;}
.y2e{bottom:421.119867pt;}
.y4a{bottom:424.640000pt;}
.ydc{bottom:430.080000pt;}
.yc2{bottom:430.720000pt;}
.yf{bottom:431.039867pt;}
.yac{bottom:432.320000pt;}
.yf3{bottom:437.760000pt;}
.y68{bottom:441.280000pt;}
.y2d{bottom:442.240000pt;}
.y49{bottom:445.760000pt;}
.ydb{bottom:450.880000pt;}
.ye{bottom:452.160000pt;}
.yc1{bottom:452.480000pt;}
.y93{bottom:453.440000pt;}
.yab{bottom:453.760000pt;}
.yf2{bottom:458.880000pt;}
.y67{bottom:462.400000pt;}
.y48{bottom:466.880000pt;}
.y84{bottom:468.480000pt;}
.yda{bottom:471.360000pt;}
.yd{bottom:473.600000pt;}
.yc0{bottom:474.240000pt;}
.yaa{bottom:475.840000pt;}
.y2c{bottom:477.119867pt;}
.yf1{bottom:480.320000pt;}
.y66{bottom:483.840000pt;}
.y47{bottom:488.000000pt;}
.y92{bottom:488.960000pt;}
.y83{bottom:489.280000pt;}
.yd9{bottom:492.160000pt;}
.yc{bottom:494.720000pt;}
.ybf{bottom:496.000000pt;}
.ya9{bottom:497.600000pt;}
.y2b{bottom:497.920000pt;}
.yf0{bottom:501.440000pt;}
.y65{bottom:504.960000pt;}
.y82{bottom:510.400000pt;}
.yd8{bottom:512.960000pt;}
.ybe{bottom:518.080000pt;}
.y2a{bottom:519.039867pt;}
.ya8{bottom:519.680000pt;}
.yef{bottom:522.560000pt;}
.y46{bottom:522.880000pt;}
.y91{bottom:526.400000pt;}
.yb{bottom:529.920000pt;}
.y81{bottom:531.520000pt;}
.yd7{bottom:533.760000pt;}
.y64{bottom:539.200000pt;}
.ybd{bottom:539.840000pt;}
.y29{bottom:540.160000pt;}
.ya7{bottom:541.119867pt;}
.yee{bottom:543.680000pt;}
.y90{bottom:547.200000pt;}
.y80{bottom:552.640000pt;}
.yd6{bottom:554.560000pt;}
.y45{bottom:557.119867pt;}
.y28{bottom:561.280000pt;}
.ya6{bottom:563.200000pt;}
.yed{bottom:564.800000pt;}
.ya{bottom:566.720000pt;}
.y8f{bottom:568.320000pt;}
.y63{bottom:574.080000pt;}
.ybc{bottom:582.720000pt;}
.ya5{bottom:584.640000pt;}
.y7f{bottom:587.520000pt;}
.yd5{bottom:588.480000pt;}
.y8e{bottom:589.440000pt;}
.y44{bottom:591.680000pt;}
.y9{bottom:592.640000pt;}
.y62{bottom:594.880000pt;}
.y27{bottom:596.160000pt;}
.yec{bottom:600.320000pt;}
.y8{bottom:605.440000pt;}
.ya4{bottom:607.040000pt;}
.y7e{bottom:608.320000pt;}
.y43{bottom:612.480000pt;}
.y61{bottom:616.000000pt;}
.y26{bottom:616.960000pt;}
.yd4{bottom:623.680000pt;}
.y8d{bottom:624.000000pt;}
.ya3{bottom:628.480000pt;}
.y7d{bottom:629.440000pt;}
.y7{bottom:631.680000pt;}
.y42{bottom:633.920000pt;}
.y60{bottom:637.440000pt;}
.yeb{bottom:637.760000pt;}
.y25{bottom:638.080000pt;}
.y6{bottom:645.440000pt;}
.ya2{bottom:650.240000pt;}
.y7c{bottom:650.560000pt;}
.ybb{bottom:650.880000pt;}
.y41{bottom:655.040000pt;}
.y5f{bottom:658.560000pt;}
.y8c{bottom:658.880000pt;}
.y24{bottom:659.200000pt;}
.yd3{bottom:660.480000pt;}
.y7b{bottom:671.680000pt;}
.y40{bottom:676.160000pt;}
.y5e{bottom:679.680000pt;}
.y23{bottom:680.320000pt;}
.yd2{bottom:681.280000pt;}
.y5{bottom:684.800000pt;}
.ya1{bottom:686.079867pt;}
.y7a{bottom:693.120000pt;}
.y3f{bottom:697.280000pt;}
.y5d{bottom:700.800000pt;}
.yd1{bottom:702.079867pt;}
.ya0{bottom:705.920000pt;}
.y4{bottom:712.640000pt;}
.y79{bottom:714.239867pt;}
.y22{bottom:715.840000pt;}
.y3e{bottom:718.400000pt;}
.y5c{bottom:721.920000pt;}
.yd0{bottom:722.560000pt;}
.y78{bottom:735.360000pt;}
.yea{bottom:735.680000pt;}
.y3d{bottom:739.520000pt;}
.y3{bottom:740.800000pt;}
.y5b{bottom:743.040000pt;}
.y21{bottom:753.280000pt;}
.y77{bottom:756.480000pt;}
.ycf{bottom:756.800000pt;}
.y20{bottom:774.720000pt;}
.y3c{bottom:775.040000pt;}
.y5a{bottom:777.600000pt;}
.y1{bottom:780.160000pt;}
.y1e{bottom:820.480000pt;}
.h5{height:25.773750pt;}
.h2{height:30.362500pt;}
.h10{height:42.262117pt;}
.h9{height:42.656250pt;}
.hd{height:43.375000pt;}
.hf{height:43.593750pt;}
.h8{height:44.437500pt;}
.hc{height:45.937500pt;}
.he{height:46.250000pt;}
.h11{height:47.217500pt;}
.h12{height:47.218033pt;}
.hb{height:50.315000pt;}
.h7{height:50.568750pt;}
.ha{height:51.547500pt;}
.h6{height:52.653750pt;}
.h3{height:58.122139pt;}
.h4{height:67.524639pt;}
.h1{height:144.872500pt;}
.h0{height:864.000000pt;}
.w0{width:672.000000pt;}
.x0{left:0.000000pt;}
.x2{left:72.000000pt;}
.x1{left:73.920000pt;}
.x3{left:91.840000pt;}
.xc{left:96.000000pt;}
.xb{left:100.800000pt;}
.x4{left:112.960000pt;}
.x8{left:155.520000pt;}
.xe{left:160.320000pt;}
.x5{left:163.840000pt;}
.x9{left:176.640000pt;}
.x7{left:183.680000pt;}
.xd{left:212.160000pt;}
.x6{left:230.080000pt;}
.xa{left:303.680000pt;}
}




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