
    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_eab4a713e9a71cabb30dc5d7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.937988;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_42f3514ae472dc80b83c3465.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.962402;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_6a9047dbf274b18a029a734a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.941406;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_8de1c47acc32642dd56ae534.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.948242;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:-62.645547px;}
.v3{vertical-align:-59.025582px;}
.v4{vertical-align:-50.342957px;}
.v1{vertical-align:-29.512791px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:110.606296px;}
.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;}
}
.ws7{word-spacing:-71.099964px;}
.wsa{word-spacing:-47.340011px;}
.ws9{word-spacing:-29.118214px;}
.ws3{word-spacing:-26.326028px;}
.ws5{word-spacing:-24.730611px;}
.ws8{word-spacing:-23.334518px;}
.ws1{word-spacing:-21.060034px;}
.ws4{word-spacing:-17.550822px;}
.ws6{word-spacing:-10.357342px;}
.ws0{word-spacing:0.000000px;}
.ws2{word-spacing:238.665093px;}
._10{margin-left:-12.661914px;}
._13{margin-left:-8.830072px;}
._0{margin-left:-7.568633px;}
._3{margin-left:-5.886715px;}
._5{margin-left:-4.415036px;}
._4{margin-left:-2.943357px;}
._1{margin-left:-1.261439px;}
._2{width:1.261439px;}
._6{width:2.771993px;}
._7{width:3.784317px;}
._12{width:5.255995px;}
._b{width:27.944697px;}
._8{width:32.721096px;}
._f{width:84.585434px;}
._9{width:105.119906px;}
._e{width:108.345388px;}
._11{width:110.707426px;}
._a{width:112.039381px;}
._c{width:292.383030px;}
._d{width:1057.965402px;}
._14{width:3181.115347px;}
.fc4{color:transparent;}
.fc2{color:rgb(0,61,130);}
.fc3{color:rgb(127,127,127);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsb{font-size:57.599261px;}
.fs8{font-size:63.360367px;}
.fs5{font-size:84.240136px;}
.fs9{font-size:89.280182px;}
.fs6{font-size:95.039814px;}
.fs3{font-size:105.119906px;}
.fs1{font-size:125.999675px;}
.fsa{font-size:147.600504px;}
.fs4{font-size:189.360042px;}
.fs0{font-size:210.239811px;}
.fs2{font-size:252.720409px;}
.fs7{font-size:284.399856px;}
.y0{bottom:0.000000px;}
.y54{bottom:109.617190px;}
.y94{bottom:112.138375px;}
.y27{bottom:115.013394px;}
.y18{bottom:116.102008px;}
.y77{bottom:127.437906px;}
.y9d{bottom:128.350115px;}
.yf{bottom:137.336882px;}
.y14{bottom:142.921919px;}
.y50{bottom:143.095461px;}
.y88{bottom:145.254957px;}
.y9c{bottom:145.805021px;}
.yc{bottom:147.414425px;}
.y93{bottom:151.025273px;}
.y34{bottom:160.201591px;}
.ye{bottom:162.543638px;}
.y9b{bottom:163.088440px;}
.y6e{bottom:165.599707px;}
.y13{bottom:168.115808px;}
.yb{bottom:172.621181px;}
.y9a{bottom:180.547723px;}
.y53{bottom:180.899161px;}
.yd{bottom:187.737527px;}
.y33{bottom:192.059165px;}
.y6d{bottom:194.045219px;}
.y99{bottom:197.831185px;}
.y12{bottom:200.700761px;}
.y7f{bottom:207.179240px;}
.y95{bottom:207.899015px;}
.y17{bottom:210.238473px;}
.y3e{bottom:210.418416px;}
.y98{bottom:215.105892px;}
.y76{bottom:218.158263px;}
.y52{bottom:218.336508px;}
.y91{bottom:219.606916px;}
.y6c{bottom:222.480605px;}
.y87{bottom:222.660943px;}
.y32{bottom:223.923524px;}
.y1a{bottom:225.001333px;}
.ya{bottom:225.174875px;}
.y11{bottom:225.894650px;}
.y60{bottom:230.578457px;}
.y16{bottom:235.438764px;}
.y3d{bottom:235.612305px;}
.y46{bottom:239.573764px;}
.y90{bottom:241.562523px;}
.y97{bottom:245.155249px;}
.y3{bottom:249.123527px;}
.y19{bottom:250.195222px;}
.y6b{bottom:250.741939px;}
.y86{bottom:251.096704px;}
.y10{bottom:251.101406px;}
.y5f{bottom:253.259525px;}
.y31{bottom:255.954114px;}
.y26{bottom:260.104768px;}
.y15{bottom:260.633971px;}
.y3c{bottom:260.819061px;}
.y5e{bottom:275.940521px;}
.y6a{bottom:279.177325px;}
.y85{bottom:279.545310px;}
.y3b{bottom:286.023243px;}
.y7e{bottom:286.557991px;}
.y75{bottom:287.461600px;}
.y30{bottom:287.821201px;}
.y5d{bottom:298.621518px;}
.y25{bottom:301.680545px;}
.y4b{bottom:303.473838px;}
.y7d{bottom:304.203969px;}
.y69{bottom:307.624324px;}
.y45{bottom:308.702687px;}
.y74{bottom:308.877034px;}
.y4d{bottom:309.602659px;}
.y3a{bottom:311.402223px;}
.y8f{bottom:312.125788px;}
.y2f{bottom:319.862700px;}
.y7c{bottom:322.014513px;}
.y44{bottom:330.118121px;}
.y4c{bottom:332.277147px;}
.y8e{bottom:334.261023px;}
.y5c{bottom:334.621095px;}
.y68{bottom:336.059674px;}
.y39{bottom:336.596112px;}
.y4a{bottom:341.820005px;}
.y2{bottom:342.358024px;}
.y2e{bottom:351.718877px;}
.y5b{bottom:357.302091px;}
.y84{bottom:362.517117px;}
.y38{bottom:362.522784px;}
.y43{bottom:373.134378px;}
.y73{bottom:377.995081px;}
.y9{bottom:378.897087px;}
.y51{bottom:383.580146px;}
.y24{bottom:384.665196px;}
.y83{bottom:390.965722px;}
.y67{bottom:392.756395px;}
.y5a{bottom:393.116075px;}
.y1{bottom:399.049879px;}
.y7b{bottom:401.215862px;}
.y8d{bottom:404.644661px;}
.y42{bottom:407.704294px;}
.y37{bottom:409.144216px;}
.y23{bottom:413.100957px;}
.y2d{bottom:415.616553px;}
.y59{bottom:415.797072px;}
.y66{bottom:421.203394px;}
.y49{bottom:425.700207px;}
.y8c{bottom:426.779895px;}
.y41{bottom:429.119761px;}
.y2c{bottom:434.340133px;}
.y36{bottom:434.523227px;}
.y96{bottom:443.151604px;}
.y72{bottom:447.298385px;}
.y8b{bottom:448.915130px;}
.y65{bottom:449.638744px;}
.y2b{bottom:453.063679px;}
.y35{bottom:460.265759px;}
.y1e{bottom:460.439810px;}
.y7a{bottom:462.956324px;}
.y71{bottom:468.713852px;}
.y82{bottom:474.117196px;}
.y64{bottom:478.085743px;}
.y79{bottom:480.602333px;}
.y8{bottom:482.945632px;}
.y58{bottom:487.622210px;}
.y1d{bottom:488.875161px;}
.y4e{bottom:488.880313px;}
.y70{bottom:490.140228px;}
.y22{bottom:496.265275px;}
.y40{bottom:498.423064px;}
.y81{bottom:502.565802px;}
.y63{bottom:506.521129px;}
.y57{bottom:510.303206px;}
.y7{bottom:511.381393px;}
.y2a{bottom:516.961356px;}
.y8a{bottom:519.298767px;}
.y3f{bottom:519.838532px;}
.y21{bottom:524.701036px;}
.y80{bottom:530.821896px;}
.y62{bottom:534.782463px;}
.y29{bottom:535.673993px;}
.y48{bottom:539.103556px;}
.y6{bottom:539.817154px;}
.y89{bottom:541.434002px;}
.y78{bottom:542.157673px;}
.y1c{bottom:545.583494px;}
.y56{bottom:546.117155px;}
.y20{bottom:552.957130px;}
.y28{bottom:554.582827px;}
.y6f{bottom:559.443531px;}
.y47{bottom:561.778075px;}
.y61{bottom:563.217849px;}
.y5{bottom:568.086093px;}
.y55{bottom:568.983816px;}
.y92{bottom:572.579667px;}
.y1b{bottom:574.018880px;}
.y4{bottom:652.136716px;}
.y1f{bottom:659.336070px;}
.y4f{bottom:720.540692px;}
.h15{height:42.496330px;}
.hc{height:47.644026px;}
.h8{height:61.329123px;}
.h10{height:61.575920px;}
.hf{height:62.151780px;}
.h11{height:63.344634px;}
.hd{height:65.259977px;}
.he{height:67.134512px;}
.ha{height:69.470020px;}
.h9{height:71.465485px;}
.h6{height:76.838134px;}
.h12{height:77.556727px;}
.h5{height:79.045242px;}
.h14{height:91.731209px;}
.h3{height:94.745849px;}
.h13{height:107.457203px;}
.h7{height:137.859288px;}
.h2{height:153.060331px;}
.h4{height:183.987368px;}
.hb{height:207.050871px;}
.h0{height:892.980015px;}
.h1{height:893.250000px;}
.w0{width:1262.880060px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x8{left:37.081293px;}
.x7{left:60.469468px;}
.x1b{left:86.577369px;}
.x1e{left:91.078430px;}
.x5{left:101.514111px;}
.x37{left:102.959213px;}
.x6{left:108.725710px;}
.x2f{left:118.442128px;}
.x1a{left:121.313918px;}
.x1f{left:126.542020px;}
.x36{left:131.042302px;}
.x29{left:133.556932px;}
.x31{left:135.364976px;}
.x2d{left:139.140637px;}
.x33{left:142.200075px;}
.x35{left:146.340501px;}
.x34{left:148.314083px;}
.x15{left:152.284201px;}
.x30{left:166.320963px;}
.x1{left:168.304779px;}
.x2e{left:174.604235px;}
.x19{left:175.666902px;}
.x4{left:196.388935px;}
.x20{left:245.522155px;}
.x27{left:247.321719px;}
.x17{left:253.080328px;}
.x2{left:257.769624px;}
.x16{left:259.024028px;}
.x21{left:304.023393px;}
.x24{left:365.218845px;}
.x3{left:373.138703px;}
.x9{left:388.263545px;}
.x25{left:483.115956px;}
.x26{left:506.160656px;}
.xe{left:542.162188px;}
.xf{left:558.183462px;}
.xd{left:571.325448px;}
.x18{left:658.433776px;}
.x2a{left:702.902498px;}
.x2c{left:732.419722px;}
.x2b{left:738.358289px;}
.x28{left:748.444874px;}
.x10{left:758.348938px;}
.x11{left:763.201332px;}
.x1c{left:775.432446px;}
.x1d{left:810.902569px;}
.x22{left:861.116868px;}
.x14{left:901.080019px;}
.x12{left:931.865409px;}
.x13{left:946.261917px;}
.x23{left:972.548398px;}
.x3c{left:1017.527469px;}
.x3b{left:1042.004694px;}
.x3a{left:1045.788406px;}
.x32{left:1052.644948px;}
.x38{left:1054.603706px;}
.xa{left:1066.144969px;}
.x39{left:1087.904986px;}
.xb{left:1096.923957px;}
.xc{left:1102.502528px;}
@media print{
.v2{vertical-align:-55.684931pt;}
.v3{vertical-align:-52.467184pt;}
.v4{vertical-align:-44.749295pt;}
.v1{vertical-align:-26.233592pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:98.316707pt;}
.ws7{word-spacing:-63.199968pt;}
.wsa{word-spacing:-42.080009pt;}
.ws9{word-spacing:-25.882857pt;}
.ws3{word-spacing:-23.400914pt;}
.ws5{word-spacing:-21.982765pt;}
.ws8{word-spacing:-20.741794pt;}
.ws1{word-spacing:-18.720030pt;}
.ws4{word-spacing:-15.600730pt;}
.ws6{word-spacing:-9.206527pt;}
.ws0{word-spacing:0.000000pt;}
.ws2{word-spacing:212.146749pt;}
._10{margin-left:-11.255034pt;}
._13{margin-left:-7.848953pt;}
._0{margin-left:-6.727674pt;}
._3{margin-left:-5.232635pt;}
._5{margin-left:-3.924476pt;}
._4{margin-left:-2.616318pt;}
._1{margin-left:-1.121279pt;}
._2{width:1.121279pt;}
._6{width:2.463994pt;}
._7{width:3.363837pt;}
._12{width:4.671996pt;}
._b{width:24.839731pt;}
._8{width:29.085419pt;}
._f{width:75.187053pt;}
._9{width:93.439916pt;}
._e{width:96.307011pt;}
._11{width:98.406601pt;}
._a{width:99.590561pt;}
._c{width:259.896027pt;}
._d{width:940.413690pt;}
._14{width:2827.658086pt;}
.fsb{font-size:51.199344pt;}
.fs8{font-size:56.320326pt;}
.fs5{font-size:74.880121pt;}
.fs9{font-size:79.360162pt;}
.fs6{font-size:84.479834pt;}
.fs3{font-size:93.439916pt;}
.fs1{font-size:111.999711pt;}
.fsa{font-size:131.200448pt;}
.fs4{font-size:168.320037pt;}
.fs0{font-size:186.879832pt;}
.fs2{font-size:224.640364pt;}
.fs7{font-size:252.799872pt;}
.y0{bottom:0.000000pt;}
.y54{bottom:97.437502pt;}
.y94{bottom:99.678556pt;}
.y27{bottom:102.234128pt;}
.y18{bottom:103.201785pt;}
.y77{bottom:113.278139pt;}
.y9d{bottom:114.088991pt;}
.yf{bottom:122.077229pt;}
.y14{bottom:127.041705pt;}
.y50{bottom:127.195965pt;}
.y88{bottom:129.115517pt;}
.y9c{bottom:129.604463pt;}
.yc{bottom:131.035045pt;}
.y93{bottom:134.244687pt;}
.y34{bottom:142.401414pt;}
.ye{bottom:144.483234pt;}
.y9b{bottom:144.967502pt;}
.y6e{bottom:147.199740pt;}
.y13{bottom:149.436273pt;}
.yb{bottom:153.441050pt;}
.y9a{bottom:160.486865pt;}
.y53{bottom:160.799254pt;}
.yd{bottom:166.877802pt;}
.y33{bottom:170.719258pt;}
.y6d{bottom:172.484639pt;}
.y99{bottom:175.849942pt;}
.y12{bottom:178.400676pt;}
.y7f{bottom:184.159324pt;}
.y95{bottom:184.799124pt;}
.y17{bottom:186.878642pt;}
.y3e{bottom:187.038592pt;}
.y98{bottom:191.205237pt;}
.y76{bottom:193.918456pt;}
.y52{bottom:194.076896pt;}
.y91{bottom:195.206148pt;}
.y6c{bottom:197.760538pt;}
.y87{bottom:197.920839pt;}
.y32{bottom:199.043133pt;}
.y1a{bottom:200.001185pt;}
.ya{bottom:200.155444pt;}
.y11{bottom:200.795244pt;}
.y60{bottom:204.958629pt;}
.y16{bottom:209.278901pt;}
.y3d{bottom:209.433160pt;}
.y46{bottom:212.954457pt;}
.y90{bottom:214.722243pt;}
.y97{bottom:217.915777pt;}
.y3{bottom:221.443135pt;}
.y19{bottom:222.395753pt;}
.y6b{bottom:222.881724pt;}
.y86{bottom:223.197071pt;}
.y10{bottom:223.201249pt;}
.y5f{bottom:225.119577pt;}
.y31{bottom:227.514768pt;}
.y26{bottom:231.204239pt;}
.y15{bottom:231.674640pt;}
.y3c{bottom:231.839165pt;}
.y5e{bottom:245.280463pt;}
.y6a{bottom:248.157622pt;}
.y85{bottom:248.484720pt;}
.y3b{bottom:254.242883pt;}
.y7e{bottom:254.718214pt;}
.y75{bottom:255.521422pt;}
.y30{bottom:255.841067pt;}
.y5d{bottom:265.441349pt;}
.y25{bottom:268.160484pt;}
.y4b{bottom:269.754522pt;}
.y7d{bottom:270.403528pt;}
.y69{bottom:273.443844pt;}
.y45{bottom:274.402389pt;}
.y74{bottom:274.557363pt;}
.y4d{bottom:275.202364pt;}
.y3a{bottom:276.801976pt;}
.y8f{bottom:277.445145pt;}
.y2f{bottom:284.322400pt;}
.y7c{bottom:286.235123pt;}
.y44{bottom:293.438330pt;}
.y4c{bottom:295.357464pt;}
.y8e{bottom:297.120909pt;}
.y5c{bottom:297.440973pt;}
.y68{bottom:298.719711pt;}
.y39{bottom:299.196544pt;}
.y4a{bottom:303.840004pt;}
.y2{bottom:304.318244pt;}
.y2e{bottom:312.639002pt;}
.y5b{bottom:317.601859pt;}
.y84{bottom:322.237437pt;}
.y38{bottom:322.242475pt;}
.y43{bottom:331.675002pt;}
.y73{bottom:335.995628pt;}
.y9{bottom:336.797411pt;}
.y51{bottom:340.960130pt;}
.y24{bottom:341.924619pt;}
.y83{bottom:347.525087pt;}
.y67{bottom:349.116795pt;}
.y5a{bottom:349.436511pt;}
.y1{bottom:354.711004pt;}
.y7b{bottom:356.636322pt;}
.y8d{bottom:359.684143pt;}
.y42{bottom:362.403817pt;}
.y37{bottom:363.683748pt;}
.y23{bottom:367.200851pt;}
.y2d{bottom:369.436936pt;}
.y59{bottom:369.597397pt;}
.y66{bottom:374.403016pt;}
.y49{bottom:378.400184pt;}
.y8c{bottom:379.359907pt;}
.y41{bottom:381.439788pt;}
.y2c{bottom:386.080118pt;}
.y36{bottom:386.242868pt;}
.y96{bottom:393.912537pt;}
.y72{bottom:397.598564pt;}
.y8b{bottom:399.035671pt;}
.y65{bottom:399.678884pt;}
.y2b{bottom:402.723270pt;}
.y35{bottom:409.125119pt;}
.y1e{bottom:409.279831pt;}
.y7a{bottom:411.516732pt;}
.y71{bottom:416.634535pt;}
.y82{bottom:421.437508pt;}
.y64{bottom:424.965105pt;}
.y79{bottom:427.202074pt;}
.y8{bottom:429.285007pt;}
.y58{bottom:433.441964pt;}
.y1d{bottom:434.555698pt;}
.y4e{bottom:434.560278pt;}
.y70{bottom:435.680203pt;}
.y22{bottom:441.124689pt;}
.y40{bottom:443.042724pt;}
.y81{bottom:446.725157pt;}
.y63{bottom:450.241003pt;}
.y57{bottom:453.602850pt;}
.y7{bottom:454.561239pt;}
.y2a{bottom:459.521205pt;}
.y8a{bottom:461.598904pt;}
.y3f{bottom:462.078695pt;}
.y21{bottom:466.400921pt;}
.y80{bottom:471.841685pt;}
.y62{bottom:475.362189pt;}
.y29{bottom:476.154660pt;}
.y48{bottom:479.203161pt;}
.y6{bottom:479.837471pt;}
.y89{bottom:481.274668pt;}
.y78{bottom:481.917932pt;}
.y1c{bottom:484.963106pt;}
.y56{bottom:485.437471pt;}
.y20{bottom:491.517449pt;}
.y28{bottom:492.962513pt;}
.y6f{bottom:497.283139pt;}
.y47{bottom:499.358288pt;}
.y61{bottom:500.638088pt;}
.y5{bottom:504.965416pt;}
.y55{bottom:505.763392pt;}
.y92{bottom:508.959704pt;}
.y1b{bottom:510.239004pt;}
.y4{bottom:579.677081pt;}
.y1f{bottom:586.076507pt;}
.y4f{bottom:640.480615pt;}
.h15{height:37.774516pt;}
.hc{height:42.350245pt;}
.h8{height:54.514776pt;}
.h10{height:54.734151pt;}
.hf{height:55.246027pt;}
.h11{height:56.306341pt;}
.hd{height:58.008869pt;}
.he{height:59.675122pt;}
.ha{height:61.751129pt;}
.h9{height:63.524875pt;}
.h6{height:68.300564pt;}
.h12{height:68.939313pt;}
.h5{height:70.262437pt;}
.h14{height:81.538852pt;}
.h3{height:84.218533pt;}
.h13{height:95.517513pt;}
.h7{height:122.541590pt;}
.h2{height:136.053628pt;}
.h4{height:163.544327pt;}
.hb{height:184.045219pt;}
.h0{height:793.760013pt;}
.h1{height:794.000000pt;}
.w0{width:1122.560053pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x8{left:32.961149pt;}
.x7{left:53.750638pt;}
.x1b{left:76.957661pt;}
.x1e{left:80.958604pt;}
.x5{left:90.234765pt;}
.x37{left:91.519300pt;}
.x6{left:96.645075pt;}
.x2f{left:105.281892pt;}
.x1a{left:107.834594pt;}
.x1f{left:112.481795pt;}
.x36{left:116.482046pt;}
.x29{left:118.717273pt;}
.x31{left:120.324423pt;}
.x2d{left:123.680566pt;}
.x33{left:126.400067pt;}
.x35{left:130.080446pt;}
.x34{left:131.834741pt;}
.x15{left:135.363734pt;}
.x30{left:147.840856pt;}
.x1{left:149.604248pt;}
.x2e{left:155.203764pt;}
.x19{left:156.148357pt;}
.x4{left:174.567942pt;}
.x20{left:218.241916pt;}
.x27{left:219.841528pt;}
.x17{left:224.960292pt;}
.x2{left:229.128555pt;}
.x16{left:230.243580pt;}
.x21{left:270.243016pt;}
.x24{left:324.638974pt;}
.x3{left:331.678847pt;}
.x9{left:345.123151pt;}
.x25{left:429.436406pt;}
.x26{left:449.920583pt;}
.xe{left:481.921945pt;}
.xf{left:496.163078pt;}
.xd{left:507.844842pt;}
.x18{left:585.274467pt;}
.x2a{left:624.802221pt;}
.x2c{left:651.039753pt;}
.x2b{left:656.318479pt;}
.x28{left:665.284333pt;}
.x10{left:674.087945pt;}
.x11{left:678.401184pt;}
.x1c{left:689.273285pt;}
.x1d{left:720.802284pt;}
.x22{left:765.437216pt;}
.x14{left:800.960017pt;}
.x12{left:828.324808pt;}
.x13{left:841.121704pt;}
.x23{left:864.487465pt;}
.x3c{left:904.468861pt;}
.x3b{left:926.226395pt;}
.x3a{left:929.589694pt;}
.x32{left:935.684398pt;}
.x38{left:937.425516pt;}
.xa{left:947.684417pt;}
.x39{left:967.026654pt;}
.xb{left:975.043517pt;}
.xc{left:980.002247pt;}
}




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