
    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_28ba8549be52edd62412283d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_d96be0b5aa8f777d091bd723.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_c3eece61c0434596e30d515a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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.249521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249528,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-79.919968px;}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.064988px;}
.ls5{letter-spacing:0.393096px;}
.ls1{letter-spacing:0.393184px;}
.ls3{letter-spacing:183.623927px;}
.ls0{letter-spacing:186.509325px;}
.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;}
}
.ws0{word-spacing:-16.919993px;}
.ws1{word-spacing:0.000000px;}
._10{margin-left:-14.427862px;}
._19{margin-left:-12.256688px;}
._a{margin-left:-5.630044px;}
._9{margin-left:-4.264181px;}
._b{margin-left:-2.602825px;}
._0{margin-left:-1.530531px;}
._1{width:1.096558px;}
._12{width:2.110624px;}
._6{width:3.185381px;}
._4{width:4.406613px;}
._5{width:5.538263px;}
._3{width:6.852432px;}
._2{width:8.430479px;}
._f{width:9.662321px;}
._d{width:11.132811px;}
._c{width:12.845603px;}
._13{width:14.037043px;}
._11{width:15.422274px;}
._1a{width:18.391463px;}
._14{width:19.815739px;}
._8{width:21.065557px;}
._7{width:22.607322px;}
._e{width:24.508077px;}
._16{width:25.658496px;}
._15{width:26.755165px;}
._18{width:32.219042px;}
._17{width:186.509762px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:44.668062px;}
.fs5{font-size:56.174378px;}
.fs2{font-size:61.588175px;}
.fs0{font-size:67.679973px;}
.fs4{font-size:78.508169px;}
.fs3{font-size:84.599966px;}
.y0{bottom:0.000000px;}
.y32{bottom:106.019958px;}
.y6c{bottom:107.279957px;}
.y5d{bottom:122.579951px;}
.y31{bottom:123.299951px;}
.y6b{bottom:127.259949px;}
.y64{bottom:131.039948px;}
.y5c{bottom:139.139944px;}
.y69{bottom:139.859944px;}
.y63{bottom:143.099943px;}
.y30{bottom:143.819942px;}
.y6a{bottom:147.239941px;}
.y68{bottom:147.599941px;}
.y5b{bottom:156.419937px;}
.y67{bottom:159.119936px;}
.y6e{bottom:159.839936px;}
.y2f{bottom:163.799934px;}
.y5a{bottom:164.159934px;}
.y61{bottom:167.219933px;}
.y62{bottom:174.959930px;}
.y59{bottom:176.399929px;}
.y2e{bottom:183.779926px;}
.y60{bottom:187.199925px;}
.y2d{bottom:203.759918px;}
.y58{bottom:207.179917px;}
.y2c{bottom:223.739911px;}
.y57{bottom:227.159909px;}
.y2b{bottom:243.719903px;}
.y55{bottom:247.139901px;}
.y56{bottom:254.879898px;}
.y2a{bottom:263.699895px;}
.y54{bottom:267.119893px;}
.y29{bottom:283.679887px;}
.y53{bottom:286.919885px;}
.y28{bottom:303.659879px;}
.y52{bottom:306.899877px;}
.y27{bottom:323.639871px;}
.y51{bottom:326.879869px;}
.y26{bottom:343.439863px;}
.y50{bottom:346.859861px;}
.y25{bottom:363.419855px;}
.y4f{bottom:366.839853px;}
.y24{bottom:383.399847px;}
.y4e{bottom:386.819845px;}
.y23{bottom:403.379839px;}
.y4d{bottom:406.799837px;}
.y22{bottom:423.359831px;}
.y4c{bottom:426.779829px;}
.y21{bottom:443.339823px;}
.y4b{bottom:446.759821px;}
.y20{bottom:463.319815px;}
.y4a{bottom:466.739813px;}
.y1f{bottom:483.299807px;}
.y49{bottom:486.719805px;}
.y1e{bottom:503.279799px;}
.y48{bottom:506.699797px;}
.y1d{bottom:523.259791px;}
.y47{bottom:526.679789px;}
.y1c{bottom:543.239783px;}
.y46{bottom:546.479781px;}
.y1b{bottom:563.219775px;}
.y45{bottom:566.459773px;}
.y1a{bottom:583.019767px;}
.y44{bottom:586.439765px;}
.y19{bottom:602.999759px;}
.y43{bottom:606.419757px;}
.y18{bottom:622.979751px;}
.y42{bottom:626.399749px;}
.y17{bottom:642.959743px;}
.y41{bottom:646.379741px;}
.y40{bottom:666.359733px;}
.y16{bottom:682.919727px;}
.y3f{bottom:686.339725px;}
.y15{bottom:702.539719px;}
.y3e{bottom:706.319717px;}
.y14{bottom:722.879711px;}
.y3d{bottom:726.299709px;}
.y13{bottom:742.859703px;}
.y3c{bottom:746.279701px;}
.y12{bottom:762.839695px;}
.y3b{bottom:766.259693px;}
.y11{bottom:782.819687px;}
.y3a{bottom:786.059686px;}
.y10{bottom:803.339679px;}
.y39{bottom:806.039678px;}
.y38{bottom:826.019670px;}
.yf{bottom:826.379669px;}
.y5f{bottom:845.999662px;}
.ye{bottom:848.699661px;}
.y37{bottom:865.979654px;}
.yd{bottom:869.219652px;}
.y6d{bottom:873.719651px;}
.y36{bottom:885.599646px;}
.y66{bottom:885.959646px;}
.yc{bottom:893.159643px;}
.y35{bottom:905.939638px;}
.yb{bottom:911.159636px;}
.y65{bottom:913.679635px;}
.y34{bottom:925.919630px;}
.ya{bottom:929.339628px;}
.y33{bottom:945.899622px;}
.y9{bottom:947.339621px;}
.y5e{bottom:965.519614px;}
.y8{bottom:965.879614px;}
.y7{bottom:985.859606px;}
.y6{bottom:1005.839598px;}
.y5{bottom:1025.819590px;}
.y4{bottom:1045.619582px;}
.y3{bottom:1064.339574px;}
.y2{bottom:1077.479569px;}
.y1{bottom:1092.059563px;}
.h2{height:43.817450px;}
.h3{height:43.839260px;}
.h9{height:55.132080px;}
.h4{height:60.445426px;}
.ha{height:66.391145px;}
.h1{height:66.424192px;}
.h8{height:68.208723px;}
.h7{height:77.013140px;}
.h6{height:77.051474px;}
.h5{height:85.260903px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:158.759936px;}
.x9{left:209.520274px;}
.xc{left:214.379914px;}
.x5{left:226.799909px;}
.x11{left:230.579908px;}
.x12{left:242.459903px;}
.x7{left:371.879851px;}
.xa{left:383.759846px;}
.xb{left:389.339844px;}
.xd{left:480.779808px;}
.xe{left:486.359805px;}
.x8{left:544.859782px;}
.xf{left:549.179780px;}
.x10{left:554.759778px;}
.x2{left:631.979747px;}
.x6{left:682.019727px;}
.x4{left:724.499710px;}
.x3{left:732.959699px;}
@media print{
.v1{vertical-align:-71.039972pt;}
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.057767pt;}
.ls5{letter-spacing:0.349419pt;}
.ls1{letter-spacing:0.349497pt;}
.ls3{letter-spacing:163.221268pt;}
.ls0{letter-spacing:165.786067pt;}
.ws0{word-spacing:-15.039994pt;}
.ws1{word-spacing:0.000000pt;}
._10{margin-left:-12.824766pt;}
._19{margin-left:-10.894834pt;}
._a{margin-left:-5.004484pt;}
._9{margin-left:-3.790383pt;}
._b{margin-left:-2.313623pt;}
._0{margin-left:-1.360472pt;}
._1{width:0.974718pt;}
._12{width:1.876110pt;}
._6{width:2.831450pt;}
._4{width:3.916990pt;}
._5{width:4.922901pt;}
._3{width:6.091051pt;}
._2{width:7.493759pt;}
._f{width:8.588729pt;}
._d{width:9.895832pt;}
._c{width:11.418314pt;}
._13{width:12.477372pt;}
._11{width:13.708688pt;}
._1a{width:16.347967pt;}
._14{width:17.613990pt;}
._8{width:18.724940pt;}
._7{width:20.095398pt;}
._e{width:21.784958pt;}
._16{width:22.807552pt;}
._15{width:23.782369pt;}
._18{width:28.639149pt;}
._17{width:165.786455pt;}
.fs1{font-size:39.704944pt;}
.fs5{font-size:49.932780pt;}
.fs2{font-size:54.745045pt;}
.fs0{font-size:60.159976pt;}
.fs4{font-size:69.785039pt;}
.fs3{font-size:75.199970pt;}
.y0{bottom:0.000000pt;}
.y32{bottom:94.239962pt;}
.y6c{bottom:95.359962pt;}
.y5d{bottom:108.959956pt;}
.y31{bottom:109.599956pt;}
.y6b{bottom:113.119955pt;}
.y64{bottom:116.479953pt;}
.y5c{bottom:123.679951pt;}
.y69{bottom:124.319950pt;}
.y63{bottom:127.199949pt;}
.y30{bottom:127.839949pt;}
.y6a{bottom:130.879948pt;}
.y68{bottom:131.199948pt;}
.y5b{bottom:139.039944pt;}
.y67{bottom:141.439943pt;}
.y6e{bottom:142.079943pt;}
.y2f{bottom:145.599942pt;}
.y5a{bottom:145.919942pt;}
.y61{bottom:148.639941pt;}
.y62{bottom:155.519938pt;}
.y59{bottom:156.799937pt;}
.y2e{bottom:163.359935pt;}
.y60{bottom:166.399933pt;}
.y2d{bottom:181.119928pt;}
.y58{bottom:184.159926pt;}
.y2c{bottom:198.879920pt;}
.y57{bottom:201.919919pt;}
.y2b{bottom:216.639913pt;}
.y55{bottom:219.679912pt;}
.y56{bottom:226.559909pt;}
.y2a{bottom:234.399906pt;}
.y54{bottom:237.439905pt;}
.y29{bottom:252.159899pt;}
.y53{bottom:255.039898pt;}
.y28{bottom:269.919892pt;}
.y52{bottom:272.799891pt;}
.y27{bottom:287.679885pt;}
.y51{bottom:290.559884pt;}
.y26{bottom:305.279878pt;}
.y50{bottom:308.319877pt;}
.y25{bottom:323.039871pt;}
.y4f{bottom:326.079870pt;}
.y24{bottom:340.799864pt;}
.y4e{bottom:343.839862pt;}
.y23{bottom:358.559857pt;}
.y4d{bottom:361.599855pt;}
.y22{bottom:376.319849pt;}
.y4c{bottom:379.359848pt;}
.y21{bottom:394.079842pt;}
.y4b{bottom:397.119841pt;}
.y20{bottom:411.839835pt;}
.y4a{bottom:414.879834pt;}
.y1f{bottom:429.599828pt;}
.y49{bottom:432.639827pt;}
.y1e{bottom:447.359821pt;}
.y48{bottom:450.399820pt;}
.y1d{bottom:465.119814pt;}
.y47{bottom:468.159813pt;}
.y1c{bottom:482.879807pt;}
.y46{bottom:485.759806pt;}
.y1b{bottom:500.639800pt;}
.y45{bottom:503.519799pt;}
.y1a{bottom:518.239793pt;}
.y44{bottom:521.279791pt;}
.y19{bottom:535.999786pt;}
.y43{bottom:539.039784pt;}
.y18{bottom:553.759778pt;}
.y42{bottom:556.799777pt;}
.y17{bottom:571.519771pt;}
.y41{bottom:574.559770pt;}
.y40{bottom:592.319763pt;}
.y16{bottom:607.039757pt;}
.y3f{bottom:610.079756pt;}
.y15{bottom:624.479750pt;}
.y3e{bottom:627.839749pt;}
.y14{bottom:642.559743pt;}
.y3d{bottom:645.599742pt;}
.y13{bottom:660.319736pt;}
.y3c{bottom:663.359735pt;}
.y12{bottom:678.079729pt;}
.y3b{bottom:681.119728pt;}
.y11{bottom:695.839722pt;}
.y3a{bottom:698.719721pt;}
.y10{bottom:714.079714pt;}
.y39{bottom:716.479713pt;}
.y38{bottom:734.239706pt;}
.yf{bottom:734.559706pt;}
.y5f{bottom:751.999699pt;}
.ye{bottom:754.399698pt;}
.y37{bottom:769.759692pt;}
.yd{bottom:772.639691pt;}
.y6d{bottom:776.639689pt;}
.y36{bottom:787.199685pt;}
.y66{bottom:787.519685pt;}
.yc{bottom:793.919682pt;}
.y35{bottom:805.279678pt;}
.yb{bottom:809.919676pt;}
.y65{bottom:812.159675pt;}
.y34{bottom:823.039671pt;}
.ya{bottom:826.079670pt;}
.y33{bottom:840.799664pt;}
.y9{bottom:842.079663pt;}
.y5e{bottom:858.239657pt;}
.y8{bottom:858.559657pt;}
.y7{bottom:876.319649pt;}
.y6{bottom:894.079642pt;}
.y5{bottom:911.839635pt;}
.y4{bottom:929.439628pt;}
.y3{bottom:946.079622pt;}
.y2{bottom:957.759617pt;}
.y1{bottom:970.719612pt;}
.h2{height:38.948844pt;}
.h3{height:38.968231pt;}
.h9{height:49.006293pt;}
.h4{height:53.729268pt;}
.ha{height:59.014351pt;}
.h1{height:59.043726pt;}
.h8{height:60.629976pt;}
.h7{height:68.456124pt;}
.h6{height:68.490199pt;}
.h5{height:75.787470pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:141.119944pt;}
.x9{left:186.240243pt;}
.xc{left:190.559924pt;}
.x5{left:201.599919pt;}
.x11{left:204.959918pt;}
.x12{left:215.519914pt;}
.x7{left:330.559868pt;}
.xa{left:341.119864pt;}
.xb{left:346.079862pt;}
.xd{left:427.359829pt;}
.xe{left:432.319827pt;}
.x8{left:484.319806pt;}
.xf{left:488.159805pt;}
.x10{left:493.119803pt;}
.x2{left:561.759775pt;}
.x6{left:606.239758pt;}
.x4{left:643.999742pt;}
.x3{left:651.519732pt;}
}




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