
    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_918fcd5e6c12540e9fb8c764.woff')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_dd1935f0f300172a98c2786b.woff')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_ce43e27ac3359e6ef9cc4475.woff')format("woff");}.ff3{font-family:ff3;line-height:0.940430;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);}
.m1{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);}
.v3{vertical-align:-12.993795px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:2.159640px;}
.v5{vertical-align:22.500001px;}
.v1{vertical-align:25.694443px;}
.v2{vertical-align:35.625358px;}
.v4{vertical-align:46.108576px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:42.004719px;}
.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;}
}
.ws5{word-spacing:-29.916001px;}
.ws2{word-spacing:-16.620000px;}
.ws7{word-spacing:-11.080001px;}
.ws0{word-spacing:0.000000px;}
.ws9{word-spacing:33.409202px;}
.ws8{word-spacing:60.306819px;}
.wsa{word-spacing:163.287743px;}
.ws4{word-spacing:1317.112170px;}
.ws3{word-spacing:1413.587988px;}
.ws6{word-spacing:1784.718642px;}
.ws1{word-spacing:4046.380479px;}
._7{margin-left:-15.984001px;}
._1{margin-left:-14.520001px;}
._2{margin-left:-11.880000px;}
._8{margin-left:-7.992000px;}
._5{margin-left:-6.600000px;}
._4{margin-left:-4.440000px;}
._0{margin-left:-2.376000px;}
._3{margin-left:-1.080000px;}
._a{width:1.407450px;}
._9{width:2.408250px;}
._6{width:11.991795px;}
._c{width:60.001203px;}
._d{width:80.250820px;}
._b{width:2548.252752px;}
.fc7{color:rgb(0,44,115);}
.fc6{color:transparent;}
.fc5{color:rgb(62,142,222);}
.fc8{color:rgb(50,63,79);}
.fc4{color:rgb(97,155,254);}
.fc1{color:rgb(88,132,243);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(127,127,127);}
.fc0{color:rgb(255,255,255);}
.fse{font-size:40.000002px;}
.fs8{font-size:54.000002px;}
.fs3{font-size:60.000000px;}
.fsf{font-size:66.000004px;}
.fsa{font-size:72.000002px;}
.fs7{font-size:84.000000px;}
.fs2{font-size:96.000006px;}
.fsb{font-size:102.000000px;}
.fsd{font-size:108.000003px;}
.fs4{font-size:120.000001px;}
.fs9{font-size:126.000004px;}
.fs1{font-size:132.000007px;}
.fsc{font-size:144.000005px;}
.fs6{font-size:192.000012px;}
.fs0{font-size:216.000007px;}
.fs5{font-size:222.000001px;}
.y0{bottom:0.000000px;}
.yb{bottom:6.787249px;}
.y56{bottom:6.787268px;}
.y9{bottom:9.269978px;}
.y6{bottom:15.713673px;}
.y58{bottom:18.902476px;}
.ya{bottom:24.787249px;}
.y55{bottom:24.787267px;}
.y8{bottom:27.269978px;}
.y54{bottom:54.856608px;}
.y70{bottom:66.920669px;}
.y52{bottom:67.892782px;}
.y53{bottom:81.229084px;}
.y2c{bottom:88.289977px;}
.y6b{bottom:112.207196px;}
.y2a{bottom:122.710630px;}
.y6f{bottom:139.437384px;}
.y6a{bottom:141.247194px;}
.y29{bottom:148.540630px;}
.y2b{bottom:155.992648px;}
.y5{bottom:157.627059px;}
.y6e{bottom:167.037381px;}
.y71{bottom:168.254419px;}
.y28{bottom:174.370621px;}
.y50{bottom:178.103694px;}
.y41{bottom:181.915787px;}
.y51{bottom:182.749315px;}
.y69{bottom:183.607247px;}
.y6d{bottom:194.637378px;}
.y27{bottom:197.050621px;}
.y4f{bottom:208.133688px;}
.y40{bottom:209.455788px;}
.y68{bottom:212.647233px;}
.y6c{bottom:223.677375px;}
.y39{bottom:226.791353px;}
.y3f{bottom:236.995782px;}
.y18{bottom:242.015416px;}
.y67{bottom:255.007287px;}
.y38{bottom:260.811348px;}
.y3e{bottom:264.535779px;}
.y1b{bottom:267.935405px;}
.y13{bottom:275.699998px;}
.y4{bottom:277.864340px;}
.y66{bottom:282.607307px;}
.y4d{bottom:284.076448px;}
.y3d{bottom:292.075780px;}
.y17{bottom:293.855395px;}
.y37{bottom:294.831347px;}
.y4e{bottom:302.036584px;}
.y65{bottom:310.207338px;}
.y25{bottom:311.526175px;}
.y12{bottom:312.420022px;}
.y4c{bottom:314.106442px;}
.y1a{bottom:319.775401px;}
.y24{bottom:337.356176px;}
.y64{bottom:337.807369px;}
.y26{bottom:344.808053px;}
.y16{bottom:345.695396px;}
.y3{bottom:357.454471px;}
.y23{bottom:360.036172px;}
.y63{bottom:365.407366px;}
.y11{bottom:367.020008px;}
.y19{bottom:371.615397px;}
.y22{bottom:385.866172px;}
.y4b{bottom:388.598819px;}
.y62{bottom:393.007352px;}
.y15{bottom:397.535389px;}
.y49{bottom:403.289135px;}
.y10{bottom:421.620006px;}
.y61{bottom:422.047349px;}
.y2{bottom:422.254484px;}
.y4a{bottom:427.478815px;}
.y48{bottom:433.319129px;}
.y3c{bottom:439.533704px;}
.y30{bottom:444.914021px;}
.y36{bottom:448.568010px;}
.y60{bottom:464.407324px;}
.y3b{bottom:467.073698px;}
.y35{bottom:468.008015px;}
.yf{bottom:476.219993px;}
.y2f{bottom:478.934011px;}
.y1{bottom:487.054475px;}
.y34{bottom:487.448011px;}
.y5f{bottom:492.007321px;}
.y3a{bottom:494.613695px;}
.y20{bottom:500.341445px;}
.y46{bottom:510.734392px;}
.y2e{bottom:512.954012px;}
.y33{bottom:513.188012px;}
.y5e{bottom:521.047330px;}
.y1f{bottom:526.171446px;}
.ye{bottom:530.099997px;}
.y32{bottom:532.628012px;}
.y21{bottom:533.623559px;}
.y45{bottom:540.764388px;}
.y2d{bottom:546.974011px;}
.y1e{bottom:548.851442px;}
.y31{bottom:552.068011px;}
.y47{bottom:552.501701px;}
.y5d{bottom:563.407327px;}
.yd{bottom:566.099998px;}
.y44{bottom:570.794384px;}
.y1d{bottom:574.681442px;}
.y5c{bottom:591.007324px;}
.y43{bottom:600.824378px;}
.yc{bottom:602.819993px;}
.y5b{bottom:618.607321px;}
.y5a{bottom:647.647319px;}
.y59{bottom:695.708740px;}
.y1c{bottom:713.844001px;}
.y14{bottom:724.248001px;}
.y7{bottom:725.544002px;}
.y57{bottom:730.147769px;}
.y42{bottom:737.920774px;}
.hd{height:39.339845px;}
.h4{height:43.681641px;}
.h6{height:43.710938px;}
.h18{height:48.082034px;}
.h17{height:51.640627px;}
.hf{height:52.453127px;}
.h11{height:55.986328px;}
.hc{height:61.195312px;}
.h7{height:69.405381px;}
.h3{height:69.937504px;}
.h10{height:74.308594px;}
.h13{height:78.679690px;}
.h14{height:79.336219px;}
.h8{height:79.336296px;}
.h9{height:87.421876px;}
.he{height:91.792972px;}
.h2{height:96.164068px;}
.h16{height:104.835941px;}
.h12{height:104.906253px;}
.h15{height:124.788266px;}
.hb{height:139.875009px;}
.h5{height:157.253911px;}
.h1{height:157.359380px;}
.ha{height:161.622071px;}
.h0{height:810.000000px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x5{left:40.499881px;}
.x12{left:54.000002px;}
.x24{left:57.376418px;}
.x16{left:65.916512px;}
.x1{left:80.999879px;}
.x3{left:83.342241px;}
.x2{left:86.992327px;}
.x25{left:92.392041px;}
.x15{left:109.962428px;}
.xa{left:116.698451px;}
.x17{left:118.186793px;}
.xb{left:124.676980px;}
.x26{left:143.430131px;}
.x28{left:169.330085px;}
.xc{left:178.054571px;}
.x2c{left:186.957996px;}
.x6{left:205.431262px;}
.x2f{left:215.578942px;}
.x27{left:220.376961px;}
.x22{left:227.172517px;}
.x9{left:243.405807px;}
.x19{left:250.875368px;}
.x13{left:289.037061px;}
.x14{left:299.385010px;}
.x2a{left:363.224790px;}
.x23{left:371.627843px;}
.x1a{left:539.470649px;}
.x2d{left:604.643119px;}
.xd{left:610.520190px;}
.x2b{left:612.658808px;}
.xe{left:657.219722px;}
.x18{left:743.625024px;}
.x7{left:944.418688px;}
.x8{left:966.469868px;}
.x29{left:998.307786px;}
.x2e{left:1061.427296px;}
.x10{left:1084.342793px;}
.xf{left:1152.353534px;}
.x1e{left:1153.518011px;}
.x11{left:1155.048191px;}
.x1d{left:1168.396541px;}
.x1f{left:1173.343610px;}
.x1b{left:1175.484227px;}
.x1c{left:1178.334236px;}
.x20{left:1237.132761px;}
.x21{left:1365.377696px;}
.x4{left:1369.547214px;}
@media print{
.v3{vertical-align:-11.550040pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:1.919680pt;}
.v5{vertical-align:20.000001pt;}
.v1{vertical-align:22.839505pt;}
.v2{vertical-align:31.666985pt;}
.v4{vertical-align:40.985401pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:37.337528pt;}
.ws5{word-spacing:-26.592001pt;}
.ws2{word-spacing:-14.773333pt;}
.ws7{word-spacing:-9.848889pt;}
.ws0{word-spacing:0.000000pt;}
.ws9{word-spacing:29.697068pt;}
.ws8{word-spacing:53.606062pt;}
.wsa{word-spacing:145.144661pt;}
.ws4{word-spacing:1170.766373pt;}
.ws3{word-spacing:1256.522656pt;}
.ws6{word-spacing:1586.416571pt;}
.ws1{word-spacing:3596.782648pt;}
._7{margin-left:-14.208000pt;}
._1{margin-left:-12.906667pt;}
._2{margin-left:-10.560000pt;}
._8{margin-left:-7.104000pt;}
._5{margin-left:-5.866667pt;}
._4{margin-left:-3.946667pt;}
._0{margin-left:-2.112000pt;}
._3{margin-left:-0.960000pt;}
._a{width:1.251067pt;}
._9{width:2.140667pt;}
._6{width:10.659374pt;}
._c{width:53.334403pt;}
._d{width:71.334062pt;}
._b{width:2265.113558pt;}
.fse{font-size:35.555558pt;}
.fs8{font-size:48.000002pt;}
.fs3{font-size:53.333334pt;}
.fsf{font-size:58.666670pt;}
.fsa{font-size:64.000002pt;}
.fs7{font-size:74.666666pt;}
.fs2{font-size:85.333339pt;}
.fsb{font-size:90.666667pt;}
.fsd{font-size:96.000003pt;}
.fs4{font-size:106.666667pt;}
.fs9{font-size:112.000004pt;}
.fs1{font-size:117.333340pt;}
.fsc{font-size:128.000004pt;}
.fs6{font-size:170.666677pt;}
.fs0{font-size:192.000006pt;}
.fs5{font-size:197.333334pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:6.033110pt;}
.y56{bottom:6.033127pt;}
.y9{bottom:8.239980pt;}
.y6{bottom:13.967709pt;}
.y58{bottom:16.802200pt;}
.ya{bottom:22.033111pt;}
.y55{bottom:22.033126pt;}
.y8{bottom:24.239981pt;}
.y54{bottom:48.761430pt;}
.y70{bottom:59.485039pt;}
.y52{bottom:60.349140pt;}
.y53{bottom:72.203630pt;}
.y2c{bottom:78.479980pt;}
.y6b{bottom:99.739730pt;}
.y2a{bottom:109.076115pt;}
.y6f{bottom:123.944341pt;}
.y6a{bottom:125.553061pt;}
.y29{bottom:132.036115pt;}
.y2b{bottom:138.660131pt;}
.y5{bottom:140.112941pt;}
.y6e{bottom:148.477672pt;}
.y71{bottom:149.559484pt;}
.y28{bottom:154.996108pt;}
.y50{bottom:158.314395pt;}
.y41{bottom:161.702922pt;}
.y51{bottom:162.443835pt;}
.y69{bottom:163.206442pt;}
.y6d{bottom:173.011002pt;}
.y27{bottom:175.156108pt;}
.y4f{bottom:185.007723pt;}
.y40{bottom:186.182923pt;}
.y68{bottom:189.019763pt;}
.y6c{bottom:198.824333pt;}
.y39{bottom:201.592313pt;}
.y3f{bottom:210.662918pt;}
.y18{bottom:215.124814pt;}
.y67{bottom:226.673144pt;}
.y38{bottom:231.832309pt;}
.y3e{bottom:235.142914pt;}
.y1b{bottom:238.164805pt;}
.y13{bottom:245.066665pt;}
.y4{bottom:246.990525pt;}
.y66{bottom:251.206495pt;}
.y4d{bottom:252.512398pt;}
.y3d{bottom:259.622915pt;}
.y17{bottom:261.204795pt;}
.y37{bottom:262.072308pt;}
.y4e{bottom:268.476964pt;}
.y65{bottom:275.739856pt;}
.y25{bottom:276.912156pt;}
.y12{bottom:277.706686pt;}
.y4c{bottom:279.205726pt;}
.y1a{bottom:284.244801pt;}
.y24{bottom:299.872157pt;}
.y64{bottom:300.273217pt;}
.y26{bottom:306.496047pt;}
.y16{bottom:307.284797pt;}
.y3{bottom:317.737307pt;}
.y23{bottom:320.032153pt;}
.y63{bottom:324.806547pt;}
.y11{bottom:326.240007pt;}
.y19{bottom:330.324798pt;}
.y22{bottom:342.992153pt;}
.y4b{bottom:345.421172pt;}
.y62{bottom:349.339868pt;}
.y15{bottom:353.364790pt;}
.y49{bottom:358.479231pt;}
.y10{bottom:374.773339pt;}
.y61{bottom:375.153199pt;}
.y2{bottom:375.337319pt;}
.y4a{bottom:379.981169pt;}
.y48{bottom:385.172559pt;}
.y3c{bottom:390.696625pt;}
.y30{bottom:395.479130pt;}
.y36{bottom:398.727120pt;}
.y60{bottom:412.806510pt;}
.y3b{bottom:415.176620pt;}
.y35{bottom:416.007124pt;}
.yf{bottom:423.306661pt;}
.y2f{bottom:425.719121pt;}
.y1{bottom:432.937311pt;}
.y34{bottom:433.287121pt;}
.y5f{bottom:437.339841pt;}
.y3a{bottom:439.656618pt;}
.y20{bottom:444.747951pt;}
.y46{bottom:453.986126pt;}
.y2e{bottom:455.959122pt;}
.y33{bottom:456.167122pt;}
.y5e{bottom:463.153182pt;}
.y1f{bottom:467.707952pt;}
.ye{bottom:471.199997pt;}
.y32{bottom:473.447122pt;}
.y21{bottom:474.332052pt;}
.y45{bottom:480.679456pt;}
.y2d{bottom:486.199121pt;}
.y1e{bottom:487.867949pt;}
.y31{bottom:490.727121pt;}
.y47{bottom:491.112623pt;}
.y5d{bottom:500.806513pt;}
.yd{bottom:503.199998pt;}
.y44{bottom:507.372786pt;}
.y1d{bottom:510.827948pt;}
.y5c{bottom:525.339844pt;}
.y43{bottom:534.066114pt;}
.yc{bottom:535.839994pt;}
.y5b{bottom:549.873175pt;}
.y5a{bottom:575.686505pt;}
.y59{bottom:618.407769pt;}
.y1c{bottom:634.528001pt;}
.y14{bottom:643.776001pt;}
.y7{bottom:644.928002pt;}
.y57{bottom:649.020239pt;}
.y42{bottom:655.929577pt;}
.hd{height:34.968751pt;}
.h4{height:38.828125pt;}
.h6{height:38.854167pt;}
.h18{height:42.739586pt;}
.h17{height:45.902780pt;}
.hf{height:46.625001pt;}
.h11{height:49.765625pt;}
.hc{height:54.395833pt;}
.h7{height:61.693672pt;}
.h3{height:62.166671pt;}
.h10{height:66.052084pt;}
.h13{height:69.937502pt;}
.h14{height:70.521084pt;}
.h8{height:70.521152pt;}
.h9{height:77.708334pt;}
.he{height:81.593753pt;}
.h2{height:85.479171pt;}
.h16{height:93.187503pt;}
.h12{height:93.250003pt;}
.h15{height:110.922904pt;}
.hb{height:124.333341pt;}
.h5{height:139.781254pt;}
.h1{height:139.875004pt;}
.ha{height:143.664063pt;}
.h0{height:720.000000pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x5{left:35.999894pt;}
.x12{left:48.000002pt;}
.x24{left:51.001261pt;}
.x16{left:58.592455pt;}
.x1{left:71.999892pt;}
.x3{left:74.081992pt;}
.x2{left:77.326512pt;}
.x25{left:82.126259pt;}
.x15{left:97.744380pt;}
.xa{left:103.731956pt;}
.x17{left:105.054927pt;}
.xb{left:110.823983pt;}
.x26{left:127.493450pt;}
.x28{left:150.515631pt;}
.xc{left:158.270730pt;}
.x2c{left:166.184885pt;}
.x6{left:182.605566pt;}
.x2f{left:191.625726pt;}
.x27{left:195.890632pt;}
.x22{left:201.931126pt;}
.x9{left:216.360717pt;}
.x19{left:223.000327pt;}
.x13{left:256.921832pt;}
.x14{left:266.120009pt;}
.x2a{left:322.866480pt;}
.x23{left:330.335861pt;}
.x1a{left:479.529465pt;}
.x2d{left:537.460550pt;}
.xd{left:542.684613pt;}
.x2b{left:544.585607pt;}
.xe{left:584.195309pt;}
.x18{left:661.000021pt;}
.x7{left:839.483278pt;}
.x8{left:859.084327pt;}
.x29{left:887.384698pt;}
.x2e{left:943.490930pt;}
.x10{left:963.860261pt;}
.xf{left:1024.314253pt;}
.x1e{left:1025.349343pt;}
.x11{left:1026.709503pt;}
.x1d{left:1038.574703pt;}
.x1f{left:1042.972097pt;}
.x1b{left:1044.874868pt;}
.x1c{left:1047.408210pt;}
.x20{left:1099.673565pt;}
.x21{left:1213.669063pt;}
.x4{left:1217.375301pt;}
}




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