
    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_6f547b3611c78b133639708c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.982000;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_21e2a40be3e315b0b2a3a999.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.980000;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_141d963b3b414dac986fccc2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.985000;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_88c9df80ccf322148133e361.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.731445;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_d438a7a69547ed6a8de16779.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_891c20cc7676204ea62d170a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.923000;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_ba986c1941eef1f2337b299e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666000;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-132.660378px;}
.v1{vertical-align:-80.467248px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:16.978321px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000027px;}
.ls1{letter-spacing:0.102403px;}
.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;}
}
.ws2{word-spacing:-52.800000px;}
.ws0{word-spacing:-47.520002px;}
.wsa{word-spacing:-42.240003px;}
.wsd{word-spacing:-36.960000px;}
.wsb{word-spacing:-35.640001px;}
.ws10{word-spacing:-31.680001px;}
.ws3{word-spacing:-29.832003px;}
.ws7{word-spacing:-29.040002px;}
.ws6{word-spacing:-23.760001px;}
.wse{word-spacing:-21.606002px;}
.wsf{word-spacing:-19.320000px;}
.ws9{word-spacing:-18.480000px;}
.ws4{word-spacing:-17.160001px;}
.ws5{word-spacing:-15.840001px;}
.ws1{word-spacing:0.000000px;}
.ws8{word-spacing:483.334266px;}
.wsc{word-spacing:1384.036078px;}
._d{margin-left:-4775.385745px;}
._a{margin-left:-1737.149690px;}
._9{margin-left:-1691.503332px;}
._8{margin-left:-1624.501325px;}
._b{margin-left:-1576.613692px;}
._f{margin-left:-18.960000px;}
._3{margin-left:-14.904000px;}
._10{margin-left:-12.096000px;}
._1{margin-left:-9.816000px;}
._7{margin-left:-8.586000px;}
._4{margin-left:-7.341975px;}
._5{margin-left:-6.240000px;}
._2{margin-left:-4.320000px;}
._c{margin-left:-2.856000px;}
._0{margin-left:-1.848000px;}
._e{width:107.806245px;}
._6{width:111.200608px;}
._11{width:148.433076px;}
.fca{color:rgb(121,64,154);}
.fc9{color:rgb(230,0,126);}
.fc8{color:rgb(194,123,160);}
.fc7{color:rgb(43,51,122);}
.fc3{color:transparent;}
.fc4{color:rgb(231,36,105);}
.fc2{color:rgb(255,51,28);}
.fc1{color:rgb(255,41,41);}
.fc6{color:rgb(67,67,67);}
.fc5{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs13{font-size:47.290808px;}
.fsb{font-size:72.000002px;}
.fs6{font-size:78.000005px;}
.fs8{font-size:84.000000px;}
.fse{font-size:90.000003px;}
.fsa{font-size:96.000006px;}
.fs4{font-size:108.000003px;}
.fsc{font-size:120.000001px;}
.fs12{font-size:124.403399px;}
.fsd{font-size:132.000007px;}
.fs3{font-size:135.600012px;}
.fs5{font-size:144.000005px;}
.fs7{font-size:149.999999px;}
.fs14{font-size:162.000005px;}
.fs16{font-size:167.999999px;}
.fs18{font-size:180.000006px;}
.fs9{font-size:192.000012px;}
.fs15{font-size:204.000001px;}
.fs1{font-size:216.000007px;}
.fs17{font-size:228.000013px;}
.fs2{font-size:240.000002px;}
.fs11{font-size:240.780608px;}
.fs10{font-size:252.000008px;}
.fs0{font-size:264.000014px;}
.fsf{font-size:360.000012px;}
.y0{bottom:0.000000px;}
.yb{bottom:17.893662px;}
.y9{bottom:24.599286px;}
.y37{bottom:26.150679px;}
.y77{bottom:26.192115px;}
.y7d{bottom:28.902395px;}
.y53{bottom:30.578083px;}
.yf{bottom:33.146975px;}
.y32{bottom:41.144600px;}
.y36{bottom:45.590679px;}
.y8{bottom:56.999283px;}
.y31{bottom:62.744601px;}
.y35{bottom:65.030680px;}
.y4d{bottom:66.930614px;}
.y7c{bottom:72.102396px;}
.y52{bottom:73.778084px;}
.y30{bottom:83.912602px;}
.y3d{bottom:84.337307px;}
.y34{bottom:84.470681px;}
.y82{bottom:87.569867px;}
.y4c{bottom:102.930615px;}
.y2f{bottom:103.352602px;}
.y33{bottom:103.910676px;}
.y2e{bottom:122.792604px;}
.y5f{bottom:143.205984px;}
.y1e{bottom:145.819351px;}
.y44{bottom:157.829653px;}
.y2a{bottom:164.252196px;}
.y1d{bottom:171.019352px;}
.y41{bottom:172.423785px;}
.y3c{bottom:182.170364px;}
.y67{bottom:183.276836px;}
.y29{bottom:185.852196px;}
.y6c{bottom:190.431126px;}
.y58{bottom:192.041456px;}
.y84{bottom:200.447951px;}
.y1c{bottom:201.547347px;}
.y56{bottom:204.636191px;}
.y28{bottom:207.452192px;}
.y43{bottom:223.407390px;}
.y27{bottom:229.052194px;}
.y89{bottom:239.230635px;}
.y5a{bottom:239.678427px;}
.y57{bottom:249.641453px;}
.y55{bottom:253.011193px;}
.y83{bottom:258.047949px;}
.y40{bottom:260.167759px;}
.y46{bottom:260.192232px;}
.ya{bottom:261.421272px;}
.y6f{bottom:269.000422px;}
.y22{bottom:275.613418px;}
.y5d{bottom:284.978154px;}
.y3f{bottom:287.167760px;}
.y3e{bottom:288.564714px;}
.y21{bottom:295.773419px;}
.y6e{bottom:302.520696px;}
.y88{bottom:314.830615px;}
.y80{bottom:317.494930px;}
.y11{bottom:326.369350px;}
.y20{bottom:329.253416px;}
.y59{bottom:329.483107px;}
.y2d{bottom:338.264152px;}
.y4b{bottom:338.756315px;}
.y42{bottom:344.960538px;}
.y10{bottom:346.529349px;}
.y1f{bottom:349.413420px;}
.y2c{bottom:359.324153px;}
.y7f{bottom:362.134936px;}
.y6a{bottom:367.171940px;}
.y3{bottom:371.852450px;}
.y2b{bottom:383.372154px;}
.y47{bottom:386.676614px;}
.y45{bottom:389.617556px;}
.y87{bottom:390.430629px;}
.y13{bottom:415.853846px;}
.y5c{bottom:428.100108px;}
.y5b{bottom:432.304267px;}
.y51{bottom:442.014902px;}
.y12{bottom:448.109848px;}
.y2{bottom:451.652458px;}
.y63{bottom:461.332568px;}
.y86{bottom:466.030625px;}
.y7b{bottom:473.271480px;}
.y50{bottom:486.084377px;}
.y26{bottom:502.988469px;}
.y7a{bottom:516.471482px;}
.y25{bottom:521.276481px;}
.y65{bottom:526.694755px;}
.y5e{bottom:532.404917px;}
.y85{bottom:541.630623px;}
.y1{bottom:552.856374px;}
.y24{bottom:554.990471px;}
.y6d{bottom:555.542351px;}
.y1b{bottom:555.606717px;}
.y54{bottom:559.951597px;}
.y17{bottom:569.666827px;}
.y1a{bottom:575.190712px;}
.y23{bottom:577.382474px;}
.y16{bottom:588.386828px;}
.y62{bottom:595.648989px;}
.ye{bottom:596.813379px;}
.y7{bottom:597.804664px;}
.y19{bottom:601.686710px;}
.y76{bottom:602.213573px;}
.y4f{bottom:604.656062px;}
.y15{bottom:607.106829px;}
.y64{bottom:611.840439px;}
.y61{bottom:614.200280px;}
.y18{bottom:621.270712px;}
.y4a{bottom:622.739285px;}
.y66{bottom:631.208294px;}
.y14{bottom:631.298829px;}
.y6{bottom:638.484655px;}
.y73{bottom:647.456579px;}
.y4e{bottom:648.725535px;}
.y75{bottom:652.613568px;}
.y6b{bottom:658.484286px;}
.y70{bottom:661.114606px;}
.y72{bottom:664.262827px;}
.y60{bottom:664.600275px;}
.yd{bottom:668.813381px;}
.y78{bottom:675.985271px;}
.y3b{bottom:678.151555px;}
.y5{bottom:679.164655px;}
.y69{bottom:679.690155px;}
.y49{bottom:680.339287px;}
.y8a{bottom:681.279923px;}
.y81{bottom:682.090095px;}
.y7e{bottom:683.219294px;}
.y3a{bottom:699.751549px;}
.y39{bottom:721.351550px;}
.y4{bottom:737.411811px;}
.y71{bottom:738.852757px;}
.yc{bottom:740.813387px;}
.y48{bottom:740.819292px;}
.y38{bottom:742.951547px;}
.y74{bottom:743.352757px;}
.y79{bottom:743.699289px;}
.y68{bottom:759.685662px;}
.h15{height:35.468106px;}
.hd{height:54.000002px;}
.h8{height:56.062504px;}
.hc{height:58.500004px;}
.h9{height:63.000000px;}
.h10{height:67.500002px;}
.hb{height:72.000005px;}
.h5{height:81.000003px;}
.he{height:90.000001px;}
.h14{height:93.302550px;}
.hf{height:99.000005px;}
.h4{height:101.700009px;}
.h6{height:108.000003px;}
.h7{height:112.499999px;}
.h16{height:121.500004px;}
.h18{height:126.000000px;}
.h1a{height:135.000004px;}
.ha{height:144.000009px;}
.h17{height:153.000000px;}
.h2{height:162.000005px;}
.h12{height:167.958990px;}
.h19{height:171.000010px;}
.h3{height:180.000001px;}
.h13{height:180.585456px;}
.h1{height:198.000011px;}
.h11{height:239.941414px;}
.h0{height:810.000000px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x32{left:9.584646px;}
.x61{left:10.992193px;}
.x57{left:13.288810px;}
.x5{left:18.000001px;}
.x6{left:19.662926px;}
.x5c{left:22.290355px;}
.x4{left:24.141734px;}
.x58{left:25.753940px;}
.x1{left:27.303704px;}
.x9{left:33.197835px;}
.x3e{left:35.766732px;}
.x47{left:37.266747px;}
.x60{left:39.117194px;}
.x55{left:40.290369px;}
.x37{left:46.598665px;}
.x63{left:51.492129px;}
.x5a{left:75.321788px;}
.x45{left:89.715862px;}
.x68{left:99.773632px;}
.x42{left:105.337140px;}
.x44{left:118.467866px;}
.x52{left:121.483568px;}
.x41{left:144.723883px;}
.x43{left:161.444710px;}
.x4e{left:176.846462px;}
.x35{left:180.005739px;}
.x3{left:192.742950px;}
.x36{left:231.913162px;}
.x2{left:235.835030px;}
.x62{left:244.922250px;}
.x69{left:248.692328px;}
.x2b{left:299.358158px;}
.x2a{left:301.635153px;}
.x2d{left:306.306162px;}
.xc{left:310.657027px;}
.x2c{left:314.253174px;}
.x40{left:326.968244px;}
.xb{left:348.698295px;}
.x6a{left:386.463196px;}
.x38{left:394.629314px;}
.x46{left:414.966506px;}
.x5e{left:424.442455px;}
.x50{left:437.447309px;}
.x7{left:463.892752px;}
.xd{left:482.598289px;}
.xe{left:486.629095px;}
.x39{left:553.412129px;}
.x17{left:562.408613px;}
.x34{left:567.921938px;}
.x16{left:580.292605px;}
.x33{left:585.674386px;}
.x3b{left:612.480404px;}
.x11{left:648.613428px;}
.x10{left:651.849467px;}
.x12{left:666.060576px;}
.xf{left:669.861012px;}
.x5b{left:677.067513px;}
.x4d{left:687.391503px;}
.x3f{left:758.468583px;}
.x3c{left:760.597760px;}
.x3d{left:766.690262px;}
.x3a{left:782.383908px;}
.x67{left:797.687013px;}
.x59{left:838.604839px;}
.x19{left:846.689965px;}
.x8{left:861.122022px;}
.x1a{left:863.673319px;}
.x18{left:878.509772px;}
.x14{left:887.234054px;}
.x4c{left:902.384542px;}
.x4b{left:905.665043px;}
.x27{left:907.997413px;}
.x15{left:913.676103px;}
.x13{left:916.632378px;}
.x29{left:918.914442px;}
.x28{left:939.974478px;}
.x54{left:943.000005px;}
.x26{left:948.821494px;}
.x4f{left:977.255964px;}
.x53{left:983.322200px;}
.x5d{left:991.886882px;}
.x22{left:1005.402766px;}
.x21{left:1007.454781px;}
.x20{left:1010.289776px;}
.x5f{left:1021.405533px;}
.x1f{left:1023.375807px;}
.x64{left:1040.093583px;}
.x1c{left:1051.344912px;}
.x1e{left:1066.355267px;}
.x66{left:1078.225260px;}
.x1b{left:1083.804904px;}
.x4a{left:1085.273585px;}
.x1d{left:1094.915369px;}
.x2f{left:1140.199151px;}
.x2e{left:1143.781158px;}
.x30{left:1145.410147px;}
.x31{left:1160.908192px;}
.x65{left:1168.738642px;}
.x24{left:1224.807455px;}
.x23{left:1226.070781px;}
.x25{left:1231.610868px;}
.x49{left:1249.748473px;}
.x48{left:1266.596478px;}
.x51{left:1402.137863px;}
.x56{left:1403.585122px;}
.xa{left:1412.979584px;}
@media print{
.v2{vertical-align:-117.920336pt;}
.v1{vertical-align:-71.526442pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:15.091840pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000024pt;}
.ls1{letter-spacing:0.091025pt;}
.ws2{word-spacing:-46.933334pt;}
.ws0{word-spacing:-42.240001pt;}
.wsa{word-spacing:-37.546669pt;}
.wsd{word-spacing:-32.853333pt;}
.wsb{word-spacing:-31.680001pt;}
.ws10{word-spacing:-28.160001pt;}
.ws3{word-spacing:-26.517336pt;}
.ws7{word-spacing:-25.813335pt;}
.ws6{word-spacing:-21.120001pt;}
.wse{word-spacing:-19.205335pt;}
.wsf{word-spacing:-17.173333pt;}
.ws9{word-spacing:-16.426667pt;}
.ws4{word-spacing:-15.253334pt;}
.ws5{word-spacing:-14.080000pt;}
.ws1{word-spacing:0.000000pt;}
.ws8{word-spacing:429.630459pt;}
.wsc{word-spacing:1230.254291pt;}
._d{margin-left:-4244.787329pt;}
._a{margin-left:-1544.133057pt;}
._9{margin-left:-1503.558517pt;}
._8{margin-left:-1444.001178pt;}
._b{margin-left:-1401.434393pt;}
._f{margin-left:-16.853333pt;}
._3{margin-left:-13.248000pt;}
._10{margin-left:-10.752000pt;}
._1{margin-left:-8.725334pt;}
._7{margin-left:-7.632000pt;}
._4{margin-left:-6.526200pt;}
._5{margin-left:-5.546667pt;}
._2{margin-left:-3.840000pt;}
._c{margin-left:-2.538667pt;}
._0{margin-left:-1.642667pt;}
._e{width:95.827773pt;}
._6{width:98.844985pt;}
._11{width:131.940512pt;}
.fs13{font-size:42.036273pt;}
.fsb{font-size:64.000002pt;}
.fs6{font-size:69.333338pt;}
.fs8{font-size:74.666666pt;}
.fse{font-size:80.000003pt;}
.fsa{font-size:85.333339pt;}
.fs4{font-size:96.000003pt;}
.fsc{font-size:106.666667pt;}
.fs12{font-size:110.580800pt;}
.fsd{font-size:117.333340pt;}
.fs3{font-size:120.533344pt;}
.fs5{font-size:128.000004pt;}
.fs7{font-size:133.333332pt;}
.fs14{font-size:144.000005pt;}
.fs16{font-size:149.333333pt;}
.fs18{font-size:160.000005pt;}
.fs9{font-size:170.666677pt;}
.fs15{font-size:181.333334pt;}
.fs1{font-size:192.000006pt;}
.fs17{font-size:202.666678pt;}
.fs2{font-size:213.333335pt;}
.fs11{font-size:214.027207pt;}
.fs10{font-size:224.000007pt;}
.fs0{font-size:234.666680pt;}
.fsf{font-size:320.000010pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:15.905477pt;}
.y9{bottom:21.866032pt;}
.y37{bottom:23.245048pt;}
.y77{bottom:23.281880pt;}
.y7d{bottom:25.691018pt;}
.y53{bottom:27.180518pt;}
.yf{bottom:29.463978pt;}
.y32{bottom:36.572978pt;}
.y36{bottom:40.525048pt;}
.y8{bottom:50.666030pt;}
.y31{bottom:55.772979pt;}
.y35{bottom:57.805049pt;}
.y4d{bottom:59.493879pt;}
.y7c{bottom:64.091019pt;}
.y52{bottom:65.580519pt;}
.y30{bottom:74.588979pt;}
.y3d{bottom:74.966495pt;}
.y34{bottom:75.085049pt;}
.y82{bottom:77.839881pt;}
.y4c{bottom:91.493880pt;}
.y2f{bottom:91.868980pt;}
.y33{bottom:92.365045pt;}
.y2e{bottom:109.148981pt;}
.y5f{bottom:127.294208pt;}
.y1e{bottom:129.617201pt;}
.y44{bottom:140.293024pt;}
.y2a{bottom:146.001952pt;}
.y1d{bottom:152.017202pt;}
.y41{bottom:153.265587pt;}
.y3c{bottom:161.929212pt;}
.y67{bottom:162.912743pt;}
.y29{bottom:165.201952pt;}
.y6c{bottom:169.272112pt;}
.y58{bottom:170.703516pt;}
.y84{bottom:178.175957pt;}
.y1c{bottom:179.153198pt;}
.y56{bottom:181.898837pt;}
.y28{bottom:184.401949pt;}
.y43{bottom:198.584346pt;}
.y27{bottom:203.601950pt;}
.y89{bottom:212.649454pt;}
.y5a{bottom:213.047491pt;}
.y57{bottom:221.903514pt;}
.y55{bottom:224.898838pt;}
.y83{bottom:229.375954pt;}
.y40{bottom:231.260230pt;}
.y46{bottom:231.281984pt;}
.ya{bottom:232.374464pt;}
.y6f{bottom:239.111487pt;}
.y22{bottom:244.989705pt;}
.y5d{bottom:253.313915pt;}
.y3f{bottom:255.260231pt;}
.y3e{bottom:256.501968pt;}
.y21{bottom:262.909705pt;}
.y6e{bottom:268.907286pt;}
.y88{bottom:279.849436pt;}
.y80{bottom:282.217716pt;}
.y11{bottom:290.106089pt;}
.y20{bottom:292.669703pt;}
.y59{bottom:292.873873pt;}
.y2d{bottom:300.679247pt;}
.y4b{bottom:301.116725pt;}
.y42{bottom:306.631590pt;}
.y10{bottom:308.026088pt;}
.y1f{bottom:310.589707pt;}
.y2c{bottom:319.399247pt;}
.y7f{bottom:321.897721pt;}
.y6a{bottom:326.375057pt;}
.y3{bottom:330.535512pt;}
.y2b{bottom:340.775248pt;}
.y47{bottom:343.712546pt;}
.y45{bottom:346.326716pt;}
.y87{bottom:347.049448pt;}
.y13{bottom:369.647863pt;}
.y5c{bottom:380.533429pt;}
.y5b{bottom:384.270459pt;}
.y51{bottom:392.902136pt;}
.y12{bottom:398.319865pt;}
.y2{bottom:401.468852pt;}
.y63{bottom:410.073394pt;}
.y86{bottom:414.249444pt;}
.y7b{bottom:420.685760pt;}
.y50{bottom:432.075002pt;}
.y26{bottom:447.100861pt;}
.y7a{bottom:459.085762pt;}
.y25{bottom:463.356872pt;}
.y65{bottom:468.173116pt;}
.y5e{bottom:473.248815pt;}
.y85{bottom:481.449442pt;}
.y1{bottom:491.427888pt;}
.y24{bottom:493.324863pt;}
.y6d{bottom:493.815423pt;}
.y1b{bottom:493.872638pt;}
.y54{bottom:497.734753pt;}
.y17{bottom:506.370513pt;}
.y1a{bottom:511.280633pt;}
.y23{bottom:513.228865pt;}
.y16{bottom:523.010514pt;}
.y62{bottom:529.465768pt;}
.ye{bottom:530.500781pt;}
.y7{bottom:531.381924pt;}
.y19{bottom:534.832631pt;}
.y76{bottom:535.300954pt;}
.y4f{bottom:537.472055pt;}
.y15{bottom:539.650514pt;}
.y64{bottom:543.858168pt;}
.y61{bottom:545.955804pt;}
.y18{bottom:552.240633pt;}
.y4a{bottom:553.546031pt;}
.y66{bottom:561.074039pt;}
.y14{bottom:561.154515pt;}
.y6{bottom:567.541915pt;}
.y73{bottom:575.516959pt;}
.y4e{bottom:576.644920pt;}
.y75{bottom:580.100950pt;}
.y6b{bottom:585.319366pt;}
.y70{bottom:587.657428pt;}
.y72{bottom:590.455846pt;}
.y60{bottom:590.755800pt;}
.yd{bottom:594.500783pt;}
.y78{bottom:600.875796pt;}
.y3b{bottom:602.801382pt;}
.y5{bottom:603.701915pt;}
.y69{bottom:604.169026pt;}
.y49{bottom:604.746033pt;}
.y8a{bottom:605.582153pt;}
.y81{bottom:606.302306pt;}
.y7e{bottom:607.306039pt;}
.y3a{bottom:622.001377pt;}
.y39{bottom:641.201377pt;}
.y4{bottom:655.477165pt;}
.y71{bottom:656.758006pt;}
.yc{bottom:658.500789pt;}
.y48{bottom:658.506038pt;}
.y38{bottom:660.401375pt;}
.y74{bottom:660.758006pt;}
.y79{bottom:661.066035pt;}
.y68{bottom:675.276144pt;}
.h15{height:31.527205pt;}
.hd{height:48.000002pt;}
.h8{height:49.833337pt;}
.hc{height:52.000004pt;}
.h9{height:56.000000pt;}
.h10{height:60.000002pt;}
.hb{height:64.000004pt;}
.h5{height:72.000002pt;}
.he{height:80.000001pt;}
.h14{height:82.935600pt;}
.hf{height:88.000005pt;}
.h4{height:90.400008pt;}
.h6{height:96.000003pt;}
.h7{height:99.999999pt;}
.h16{height:108.000003pt;}
.h18{height:112.000000pt;}
.h1a{height:120.000004pt;}
.ha{height:128.000008pt;}
.h17{height:136.000000pt;}
.h2{height:144.000005pt;}
.h12{height:149.296880pt;}
.h19{height:152.000009pt;}
.h3{height:160.000001pt;}
.h13{height:160.520405pt;}
.h1{height:176.000010pt;}
.h11{height:213.281257pt;}
.h0{height:720.000000pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x32{left:8.519685pt;}
.x61{left:9.770838pt;}
.x57{left:11.812275pt;}
.x5{left:16.000001pt;}
.x6{left:17.478157pt;}
.x5c{left:19.813649pt;}
.x4{left:21.459319pt;}
.x58{left:22.892391pt;}
.x1{left:24.269959pt;}
.x9{left:29.509187pt;}
.x3e{left:31.792651pt;}
.x47{left:33.125997pt;}
.x60{left:34.770839pt;}
.x55{left:35.813661pt;}
.x37{left:41.421035pt;}
.x63{left:45.770781pt;}
.x5a{left:66.952700pt;}
.x45{left:79.747433pt;}
.x68{left:88.687673pt;}
.x42{left:93.633013pt;}
.x44{left:105.304769pt;}
.x52{left:107.985393pt;}
.x41{left:128.643451pt;}
.x43{left:143.506409pt;}
.x4e{left:157.196855pt;}
.x35{left:160.005101pt;}
.x3{left:171.327066pt;}
.x36{left:206.145033pt;}
.x2{left:209.631138pt;}
.x62{left:217.708667pt;}
.x69{left:221.059847pt;}
.x2b{left:266.096141pt;}
.x2a{left:268.120136pt;}
.x2d{left:272.272144pt;}
.xc{left:276.139580pt;}
.x2c{left:279.336155pt;}
.x40{left:290.638439pt;}
.xb{left:309.954040pt;}
.x6a{left:343.522841pt;}
.x38{left:350.781612pt;}
.x46{left:368.859117pt;}
.x5e{left:377.282182pt;}
.x50{left:388.842052pt;}
.x7{left:412.349113pt;}
.xd{left:428.976257pt;}
.xe{left:432.559196pt;}
.x39{left:491.921893pt;}
.x17{left:499.918767pt;}
.x34{left:504.819500pt;}
.x16{left:515.815649pt;}
.x33{left:520.599455pt;}
.x3b{left:544.427025pt;}
.x11{left:576.545269pt;}
.x10{left:579.421749pt;}
.x12{left:592.053845pt;}
.xf{left:595.432011pt;}
.x5b{left:601.837789pt;}
.x4d{left:611.014670pt;}
.x3f{left:674.194296pt;}
.x3c{left:676.086898pt;}
.x3d{left:681.502455pt;}
.x3a{left:695.452362pt;}
.x67{left:709.055123pt;}
.x59{left:745.426524pt;}
.x19{left:752.613302pt;}
.x8{left:765.441797pt;}
.x1a{left:767.709617pt;}
.x18{left:780.897575pt;}
.x14{left:788.652492pt;}
.x4c{left:802.119593pt;}
.x4b{left:805.035594pt;}
.x27{left:807.108812pt;}
.x15{left:812.156536pt;}
.x13{left:814.784336pt;}
.x29{left:816.812837pt;}
.x28{left:835.532870pt;}
.x54{left:838.222227pt;}
.x26{left:843.396884pt;}
.x4f{left:868.671968pt;}
.x53{left:874.064178pt;}
.x5d{left:881.677228pt;}
.x22{left:893.691348pt;}
.x21{left:895.515361pt;}
.x20{left:898.035357pt;}
.x5f{left:907.916029pt;}
.x1f{left:909.667384pt;}
.x64{left:924.527630pt;}
.x1c{left:934.528811pt;}
.x1e{left:947.871348pt;}
.x66{left:958.422454pt;}
.x1b{left:963.382137pt;}
.x4a{left:964.687631pt;}
.x1d{left:973.258106pt;}
.x2f{left:1013.510356pt;}
.x2e{left:1016.694363pt;}
.x30{left:1018.142353pt;}
.x31{left:1031.918393pt;}
.x65{left:1038.878793pt;}
.x24{left:1088.717738pt;}
.x23{left:1089.840694pt;}
.x25{left:1094.765216pt;}
.x49{left:1110.887532pt;}
.x48{left:1125.863536pt;}
.x51{left:1246.344767pt;}
.x56{left:1247.631220pt;}
.xa{left:1255.981852pt;}
}




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