
    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_df99e95fa9d53f86750bd5a4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893066;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_499fd6717e337e603fe47f82.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.050293;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_a64528f9125742e49b836d17.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_90524a4237c6789aadd4929f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_3390700a28ea84f61a03fbfa.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_12020f08e9f2d0cd97c6a9ea.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.911133;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_12020f08e9f2d0cd97c6a9ea.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.911133;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:ff8;src:url('chunks/assets/font_e56512673b999cd0135f2800.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.893066;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:ff9;src:url('chunks/assets/font_e56512673b999cd0135f2800.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893066;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:ffa;src:url('chunks/assets/font_6b7b3d21dd4b1ca5d855cc3a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.690918;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:ffb;src:url('chunks/assets/font_be90b49d749364b05764955c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.715000;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);}
.v2{vertical-align:-19.980000px;}
.v1{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.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:-18.000000px;}
.ws1{word-spacing:-13.500000px;}
.ws6{word-spacing:-12.000000px;}
.ws3{word-spacing:-8.745000px;}
.ws0{word-spacing:-7.870500px;}
.ws5{word-spacing:-3.300000px;}
.ws4{word-spacing:0.000000px;}
._4{margin-left:-2187.444000px;}
._d{margin-left:-16.453800px;}
._1e{margin-left:-9.583200px;}
._2{margin-left:-6.226200px;}
._3{margin-left:-4.707000px;}
._0{margin-left:-3.040200px;}
._1{margin-left:-1.512000px;}
._15{width:1.029600px;}
._19{width:2.079000px;}
._11{width:3.418800px;}
._b{width:4.752000px;}
._9{width:6.157800px;}
._f{width:7.378800px;}
._14{width:9.233400px;}
._a{width:10.309200px;}
._12{width:11.312400px;}
._8{width:12.658800px;}
._13{width:13.886400px;}
._5{width:15.371400px;}
._17{width:17.760600px;}
._1d{width:18.882600px;}
._1b{width:19.918800px;}
._1c{width:21.192600px;}
._c{width:22.354200px;}
._e{width:23.991000px;}
._21{width:25.646400px;}
._10{width:28.551600px;}
._18{width:30.399600px;}
._16{width:31.963800px;}
._6{width:33.092400px;}
._1a{width:34.590600px;}
._7{width:50.523000px;}
._20{width:60.000000px;}
._1f{width:2318.916600px;}
.fc5{color:transparent;}
.fc4{color:rgb(24,23,23);}
.fc2{color:rgb(48,88,159);}
.fc6{color:rgb(33,33,33);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs2{font-size:31.482000px;}
.fs5{font-size:34.980000px;}
.fs0{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs4{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y12{bottom:20.907750px;}
.y13{bottom:30.289950px;}
.yc{bottom:30.301800px;}
.y55{bottom:30.906150px;}
.y54{bottom:33.478950px;}
.y10{bottom:33.691200px;}
.y34{bottom:64.842750px;}
.y33{bottom:84.342750px;}
.y32{bottom:112.346550px;}
.y52{bottom:121.432200px;}
.y31{bottom:131.846550px;}
.y51{bottom:140.932200px;}
.y30{bottom:151.346550px;}
.y50{bottom:160.432200px;}
.y2f{bottom:170.846550px;}
.y4f{bottom:179.932200px;}
.y2e{bottom:190.346550px;}
.y4e{bottom:199.432200px;}
.y2d{bottom:209.846550px;}
.y4d{bottom:227.436150px;}
.y2c{bottom:229.346550px;}
.y4c{bottom:246.936150px;}
.y2b{bottom:248.846550px;}
.y4b{bottom:266.436150px;}
.y2a{bottom:268.346550px;}
.y4a{bottom:285.936150px;}
.y29{bottom:287.846550px;}
.y49{bottom:305.436150px;}
.y28{bottom:307.346550px;}
.y48{bottom:324.936150px;}
.y27{bottom:335.350500px;}
.y47{bottom:352.940100px;}
.y26{bottom:354.850500px;}
.y46{bottom:372.440100px;}
.y25{bottom:374.350500px;}
.y45{bottom:391.940100px;}
.y24{bottom:393.850500px;}
.y44{bottom:411.440100px;}
.y23{bottom:413.350500px;}
.y43{bottom:430.940100px;}
.y22{bottom:432.850500px;}
.y42{bottom:450.440100px;}
.y21{bottom:452.350500px;}
.y41{bottom:469.940100px;}
.y20{bottom:471.850500px;}
.y40{bottom:489.440100px;}
.y1f{bottom:491.350500px;}
.y3f{bottom:508.940100px;}
.y1e{bottom:519.354450px;}
.y3e{bottom:528.440100px;}
.y1d{bottom:538.854450px;}
.y3d{bottom:547.940100px;}
.y1c{bottom:558.354450px;}
.y3c{bottom:567.440100px;}
.y1b{bottom:577.854450px;}
.y3b{bottom:586.940100px;}
.y1a{bottom:597.354450px;}
.y3a{bottom:606.440100px;}
.y19{bottom:616.854450px;}
.y39{bottom:625.940100px;}
.y18{bottom:636.354450px;}
.y38{bottom:645.440100px;}
.y17{bottom:655.854450px;}
.y37{bottom:664.940100px;}
.y16{bottom:675.354450px;}
.y36{bottom:684.440100px;}
.y15{bottom:694.854450px;}
.y35{bottom:703.940100px;}
.y14{bottom:714.354450px;}
.ya{bottom:758.604900px;}
.y9{bottom:772.104900px;}
.y8{bottom:785.604900px;}
.y7{bottom:812.604900px;}
.y6{bottom:826.104900px;}
.y5{bottom:857.600400px;}
.y4{bottom:871.100400px;}
.y3{bottom:880.104900px;}
.y2{bottom:907.104900px;}
.yb{bottom:912.864300px;}
.y1{bottom:920.604900px;}
.y65{bottom:944.845050px;}
.y64{bottom:956.845050px;}
.y63{bottom:968.845050px;}
.y11{bottom:972.985500px;}
.y62{bottom:980.845050px;}
.y61{bottom:992.845050px;}
.y60{bottom:1004.845050px;}
.y5f{bottom:1016.845050px;}
.y5e{bottom:1028.845050px;}
.ye{bottom:1029.889650px;}
.y5d{bottom:1040.845050px;}
.yd{bottom:1047.889650px;}
.y5c{bottom:1052.845050px;}
.y5b{bottom:1064.845050px;}
.y5a{bottom:1076.845050px;}
.yf{bottom:1083.927000px;}
.y59{bottom:1088.845050px;}
.y58{bottom:1100.845050px;}
.y57{bottom:1112.845050px;}
.y56{bottom:1144.345050px;}
.y53{bottom:1187.880600px;}
.hb{height:23.690068px;}
.h4{height:27.079523px;}
.h2{height:32.507812px;}
.ha{height:34.500000px;}
.h5{height:37.494141px;}
.h6{height:40.054688px;}
.hf{height:42.000000px;}
.he{height:44.730469px;}
.h3{height:45.061523px;}
.hc{height:45.826172px;}
.h7{height:48.796875px;}
.hd{height:55.075195px;}
.h9{height:58.898438px;}
.h8{height:84.000000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:597.000000px;}
.w2{width:702.000300px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:6.026100px;}
.x4{left:63.779550px;}
.x2{left:73.783500px;}
.x1{left:75.283500px;}
.x8{left:87.412950px;}
.xd{left:90.029550px;}
.xe{left:117.029550px;}
.x7{left:128.945700px;}
.x9{left:215.536500px;}
.x5{left:249.381750px;}
.xc{left:459.212550px;}
.x6{left:464.212800px;}
.xb{left:638.165100px;}
.x3{left:698.703000px;}
@media print{
.v2{vertical-align:-17.760000pt;}
.v1{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws6{word-spacing:-10.666667pt;}
.ws3{word-spacing:-7.773333pt;}
.ws0{word-spacing:-6.996000pt;}
.ws5{word-spacing:-2.933333pt;}
.ws4{word-spacing:0.000000pt;}
._4{margin-left:-1944.394667pt;}
._d{margin-left:-14.625600pt;}
._1e{margin-left:-8.518400pt;}
._2{margin-left:-5.534400pt;}
._3{margin-left:-4.184000pt;}
._0{margin-left:-2.702400pt;}
._1{margin-left:-1.344000pt;}
._15{width:0.915200pt;}
._19{width:1.848000pt;}
._11{width:3.038933pt;}
._b{width:4.224000pt;}
._9{width:5.473600pt;}
._f{width:6.558933pt;}
._14{width:8.207467pt;}
._a{width:9.163733pt;}
._12{width:10.055467pt;}
._8{width:11.252267pt;}
._13{width:12.343467pt;}
._5{width:13.663467pt;}
._17{width:15.787200pt;}
._1d{width:16.784533pt;}
._1b{width:17.705600pt;}
._1c{width:18.837867pt;}
._c{width:19.870400pt;}
._e{width:21.325333pt;}
._21{width:22.796800pt;}
._10{width:25.379200pt;}
._18{width:27.021867pt;}
._16{width:28.412267pt;}
._6{width:29.415467pt;}
._1a{width:30.747200pt;}
._7{width:44.909333pt;}
._20{width:53.333333pt;}
._1f{width:2061.259200pt;}
.fs2{font-size:27.984000pt;}
.fs5{font-size:31.093333pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs4{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y12{bottom:18.584667pt;}
.y13{bottom:26.924400pt;}
.yc{bottom:26.934933pt;}
.y55{bottom:27.472133pt;}
.y54{bottom:29.759067pt;}
.y10{bottom:29.947733pt;}
.y34{bottom:57.638000pt;}
.y33{bottom:74.971333pt;}
.y32{bottom:99.863600pt;}
.y52{bottom:107.939733pt;}
.y31{bottom:117.196933pt;}
.y51{bottom:125.273067pt;}
.y30{bottom:134.530267pt;}
.y50{bottom:142.606400pt;}
.y2f{bottom:151.863600pt;}
.y4f{bottom:159.939733pt;}
.y2e{bottom:169.196933pt;}
.y4e{bottom:177.273067pt;}
.y2d{bottom:186.530267pt;}
.y4d{bottom:202.165467pt;}
.y2c{bottom:203.863600pt;}
.y4c{bottom:219.498800pt;}
.y2b{bottom:221.196933pt;}
.y4b{bottom:236.832133pt;}
.y2a{bottom:238.530267pt;}
.y4a{bottom:254.165467pt;}
.y29{bottom:255.863600pt;}
.y49{bottom:271.498800pt;}
.y28{bottom:273.196933pt;}
.y48{bottom:288.832133pt;}
.y27{bottom:298.089333pt;}
.y47{bottom:313.724533pt;}
.y26{bottom:315.422667pt;}
.y46{bottom:331.057867pt;}
.y25{bottom:332.756000pt;}
.y45{bottom:348.391200pt;}
.y24{bottom:350.089333pt;}
.y44{bottom:365.724533pt;}
.y23{bottom:367.422667pt;}
.y43{bottom:383.057867pt;}
.y22{bottom:384.756000pt;}
.y42{bottom:400.391200pt;}
.y21{bottom:402.089333pt;}
.y41{bottom:417.724533pt;}
.y20{bottom:419.422667pt;}
.y40{bottom:435.057867pt;}
.y1f{bottom:436.756000pt;}
.y3f{bottom:452.391200pt;}
.y1e{bottom:461.648400pt;}
.y3e{bottom:469.724533pt;}
.y1d{bottom:478.981733pt;}
.y3d{bottom:487.057867pt;}
.y1c{bottom:496.315067pt;}
.y3c{bottom:504.391200pt;}
.y1b{bottom:513.648400pt;}
.y3b{bottom:521.724533pt;}
.y1a{bottom:530.981733pt;}
.y3a{bottom:539.057867pt;}
.y19{bottom:548.315067pt;}
.y39{bottom:556.391200pt;}
.y18{bottom:565.648400pt;}
.y38{bottom:573.724533pt;}
.y17{bottom:582.981733pt;}
.y37{bottom:591.057867pt;}
.y16{bottom:600.315067pt;}
.y36{bottom:608.391200pt;}
.y15{bottom:617.648400pt;}
.y35{bottom:625.724533pt;}
.y14{bottom:634.981733pt;}
.ya{bottom:674.315467pt;}
.y9{bottom:686.315467pt;}
.y8{bottom:698.315467pt;}
.y7{bottom:722.315467pt;}
.y6{bottom:734.315467pt;}
.y5{bottom:762.311467pt;}
.y4{bottom:774.311467pt;}
.y3{bottom:782.315467pt;}
.y2{bottom:806.315467pt;}
.yb{bottom:811.434933pt;}
.y1{bottom:818.315467pt;}
.y65{bottom:839.862267pt;}
.y64{bottom:850.528933pt;}
.y63{bottom:861.195600pt;}
.y11{bottom:864.876000pt;}
.y62{bottom:871.862267pt;}
.y61{bottom:882.528933pt;}
.y60{bottom:893.195600pt;}
.y5f{bottom:903.862267pt;}
.y5e{bottom:914.528933pt;}
.ye{bottom:915.457467pt;}
.y5d{bottom:925.195600pt;}
.yd{bottom:931.457467pt;}
.y5c{bottom:935.862267pt;}
.y5b{bottom:946.528933pt;}
.y5a{bottom:957.195600pt;}
.yf{bottom:963.490667pt;}
.y59{bottom:967.862267pt;}
.y58{bottom:978.528933pt;}
.y57{bottom:989.195600pt;}
.y56{bottom:1017.195600pt;}
.y53{bottom:1055.893867pt;}
.hb{height:21.057839pt;}
.h4{height:24.070687pt;}
.h2{height:28.895833pt;}
.ha{height:30.666667pt;}
.h5{height:33.328125pt;}
.h6{height:35.604167pt;}
.hf{height:37.333333pt;}
.he{height:39.760417pt;}
.h3{height:40.054688pt;}
.hc{height:40.734375pt;}
.h7{height:43.375000pt;}
.hd{height:48.955729pt;}
.h9{height:52.354167pt;}
.h8{height:74.666667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:530.666667pt;}
.w2{width:624.000267pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:5.356533pt;}
.x4{left:56.692933pt;}
.x2{left:65.585333pt;}
.x1{left:66.918667pt;}
.x8{left:77.700400pt;}
.xd{left:80.026267pt;}
.xe{left:104.026267pt;}
.x7{left:114.618400pt;}
.x9{left:191.588000pt;}
.x5{left:221.672667pt;}
.xc{left:408.188933pt;}
.x6{left:412.633600pt;}
.xb{left:567.257867pt;}
.x3{left:621.069333pt;}
}




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