
    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_67800fa97cece4233977930a.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_b0f1af5528b69a376d25135a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.100000;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_6118f734c37d60f9d6994787.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.854000;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_4931b308c15a95d13d12d400.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.057129;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_8eb86e7224e91f3e963c6333.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.984375;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_a69eaedcf4b52ff846e422be.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.003418;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_99d65dc93b61bebb76e88533.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.003418;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);}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:-0.594000px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.021600px;}
.ls0{letter-spacing:0.171600px;}
.ls4{letter-spacing:1.953600px;}
.ls2{letter-spacing:2.943600px;}
.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:-20.856000px;}
.ws4{word-spacing:-18.453600px;}
.ws1{word-spacing:-16.671600px;}
.ws0{word-spacing:-16.500000px;}
.ws3{word-spacing:0.000000px;}
._1b{margin-left:-15.642000px;}
._d{margin-left:-5.716200px;}
._4{margin-left:-4.464000px;}
._3{margin-left:-3.096000px;}
._0{margin-left:-1.656000px;}
._1{width:1.008000px;}
._10{width:2.049600px;}
._2{width:3.096000px;}
._13{width:4.288800px;}
._7{width:5.306400px;}
._6{width:7.067340px;}
._a{width:8.329860px;}
._16{width:10.137600px;}
._c{width:11.279400px;}
._15{width:12.335400px;}
._b{width:13.569600px;}
._8{width:14.982000px;}
._1d{width:16.347000px;}
._9{width:17.529000px;}
._1a{width:19.186200px;}
._f{width:20.413800px;}
._17{width:22.040400px;}
._5{width:23.133000px;}
._19{width:24.221400px;}
._e{width:26.175600px;}
._14{width:27.390000px;}
._18{width:28.914000px;}
._12{width:30.798660px;}
._11{width:33.547380px;}
._1e{width:34.704660px;}
._1c{width:53.783400px;}
.fc1{color:rgb(33,37,41);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y1f{bottom:11.550030px;}
.y1d{bottom:15.841920px;}
.y4e{bottom:16.576170px;}
.y1c{bottom:36.841845px;}
.y4d{bottom:37.576125px;}
.y5b{bottom:44.660175px;}
.y1e{bottom:56.354505px;}
.y1b{bottom:57.841845px;}
.y4c{bottom:58.576125px;}
.y64{bottom:63.746550px;}
.y5a{bottom:64.160175px;}
.y1a{bottom:78.841845px;}
.y59{bottom:83.660175px;}
.y63{bottom:84.746550px;}
.y4b{bottom:98.660175px;}
.y19{bottom:99.841845px;}
.y58{bottom:103.160175px;}
.y62{bottom:105.746550px;}
.y4a{bottom:118.160175px;}
.y18{bottom:120.841845px;}
.y57{bottom:122.660175px;}
.y61{bottom:126.746550px;}
.y20{bottom:127.275975px;}
.y1{bottom:127.559055px;}
.y49{bottom:137.660175px;}
.y17{bottom:141.841845px;}
.y56{bottom:142.160175px;}
.y60{bottom:147.746550px;}
.y48{bottom:157.160175px;}
.y55{bottom:161.660175px;}
.y16{bottom:162.841845px;}
.y5f{bottom:168.746550px;}
.y47{bottom:176.660175px;}
.y54{bottom:181.160175px;}
.y15{bottom:183.841845px;}
.y5e{bottom:189.746550px;}
.y46{bottom:196.160175px;}
.y53{bottom:200.660175px;}
.y14{bottom:204.841845px;}
.y5d{bottom:210.746550px;}
.y45{bottom:215.660175px;}
.y52{bottom:220.160175px;}
.y13{bottom:225.841845px;}
.y51{bottom:239.660175px;}
.y12{bottom:246.841845px;}
.y44{bottom:256.576125px;}
.y50{bottom:259.160175px;}
.y11{bottom:267.841845px;}
.y43{bottom:277.576125px;}
.y4f{bottom:278.660175px;}
.y10{bottom:288.841845px;}
.y42{bottom:298.576125px;}
.yf{bottom:309.841845px;}
.y41{bottom:319.576125px;}
.ye{bottom:330.841845px;}
.y40{bottom:340.576125px;}
.yd{bottom:351.841845px;}
.y3f{bottom:361.576125px;}
.yc{bottom:372.841845px;}
.y3e{bottom:382.576125px;}
.yb{bottom:393.841845px;}
.y3d{bottom:403.576125px;}
.ya{bottom:414.841845px;}
.y3c{bottom:424.576125px;}
.y3b{bottom:445.576125px;}
.y3a{bottom:466.576125px;}
.y39{bottom:487.576125px;}
.y38{bottom:508.576125px;}
.y37{bottom:529.576125px;}
.y36{bottom:550.576125px;}
.y9{bottom:561.841845px;}
.y35{bottom:571.576125px;}
.y8{bottom:582.841845px;}
.y34{bottom:592.576125px;}
.y7{bottom:603.841845px;}
.y33{bottom:613.576125px;}
.y6{bottom:624.841845px;}
.y32{bottom:634.576125px;}
.y31{bottom:655.576125px;}
.y30{bottom:676.576125px;}
.y2f{bottom:697.576125px;}
.y2e{bottom:718.576125px;}
.y5{bottom:733.365795px;}
.y2d{bottom:739.576125px;}
.y4{bottom:754.365795px;}
.y2c{bottom:760.576125px;}
.y3{bottom:775.365795px;}
.y2b{bottom:781.576125px;}
.y2{bottom:792.841845px;}
.y2a{bottom:802.576125px;}
.y29{bottom:823.576125px;}
.y28{bottom:844.576125px;}
.y5c{bottom:847.355550px;}
.y27{bottom:865.576125px;}
.y26{bottom:886.576125px;}
.y25{bottom:907.576125px;}
.y24{bottom:928.576125px;}
.y23{bottom:949.576125px;}
.y22{bottom:970.576125px;}
.y21{bottom:991.576125px;}
.h7{height:27.750015px;}
.h3{height:43.989258px;}
.ha{height:46.787109px;}
.hb{height:47.791992px;}
.h6{height:51.465820px;}
.h5{height:54.720000px;}
.h8{height:56.100000px;}
.h4{height:61.200000px;}
.hc{height:285.670350px;}
.h2{height:1012.254750px;}
.h9{height:1012.537950px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w7{width:526.497000px;}
.w5{width:526.612500px;}
.w3{width:526.893000px;}
.w8{width:527.503500px;}
.w6{width:527.520000px;}
.w9{width:551.555550px;}
.w4{width:561.838350px;}
.w2{width:572.593350px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:4.537800px;}
.x4{left:18.200100px;}
.xc{left:25.797750px;}
.xe{left:37.500000px;}
.x3{left:44.840100px;}
.x5{left:54.092100px;}
.xa{left:58.537800px;}
.x1{left:165.540900px;}
.xd{left:172.328700px;}
.xb{left:183.013500px;}
.x8{left:283.954650px;}
.x9{left:306.610050px;}
.x7{left:310.114650px;}
.x6{left:412.804500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-0.528000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.019200pt;}
.ls0{letter-spacing:0.152533pt;}
.ls4{letter-spacing:1.736533pt;}
.ls2{letter-spacing:2.616533pt;}
.ws2{word-spacing:-18.538667pt;}
.ws4{word-spacing:-16.403200pt;}
.ws1{word-spacing:-14.819200pt;}
.ws0{word-spacing:-14.666667pt;}
.ws3{word-spacing:0.000000pt;}
._1b{margin-left:-13.904000pt;}
._d{margin-left:-5.081067pt;}
._4{margin-left:-3.968000pt;}
._3{margin-left:-2.752000pt;}
._0{margin-left:-1.472000pt;}
._1{width:0.896000pt;}
._10{width:1.821867pt;}
._2{width:2.752000pt;}
._13{width:3.812267pt;}
._7{width:4.716800pt;}
._6{width:6.282080pt;}
._a{width:7.404320pt;}
._16{width:9.011200pt;}
._c{width:10.026133pt;}
._15{width:10.964800pt;}
._b{width:12.061867pt;}
._8{width:13.317333pt;}
._1d{width:14.530667pt;}
._9{width:15.581333pt;}
._1a{width:17.054400pt;}
._f{width:18.145600pt;}
._17{width:19.591467pt;}
._5{width:20.562667pt;}
._19{width:21.530133pt;}
._e{width:23.267200pt;}
._14{width:24.346667pt;}
._18{width:25.701333pt;}
._12{width:27.376587pt;}
._11{width:29.819893pt;}
._1e{width:30.848587pt;}
._1c{width:47.807467pt;}
.fs2{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y1f{bottom:10.266693pt;}
.y1d{bottom:14.081707pt;}
.y4e{bottom:14.734373pt;}
.y1c{bottom:32.748307pt;}
.y4d{bottom:33.401000pt;}
.y5b{bottom:39.697933pt;}
.y1e{bottom:50.092893pt;}
.y1b{bottom:51.414973pt;}
.y4c{bottom:52.067667pt;}
.y64{bottom:56.663600pt;}
.y5a{bottom:57.031267pt;}
.y1a{bottom:70.081640pt;}
.y59{bottom:74.364600pt;}
.y63{bottom:75.330267pt;}
.y4b{bottom:87.697933pt;}
.y19{bottom:88.748307pt;}
.y58{bottom:91.697933pt;}
.y62{bottom:93.996933pt;}
.y4a{bottom:105.031267pt;}
.y18{bottom:107.414973pt;}
.y57{bottom:109.031267pt;}
.y61{bottom:112.663600pt;}
.y20{bottom:113.134200pt;}
.y1{bottom:113.385827pt;}
.y49{bottom:122.364600pt;}
.y17{bottom:126.081640pt;}
.y56{bottom:126.364600pt;}
.y60{bottom:131.330267pt;}
.y48{bottom:139.697933pt;}
.y55{bottom:143.697933pt;}
.y16{bottom:144.748307pt;}
.y5f{bottom:149.996933pt;}
.y47{bottom:157.031267pt;}
.y54{bottom:161.031267pt;}
.y15{bottom:163.414973pt;}
.y5e{bottom:168.663600pt;}
.y46{bottom:174.364600pt;}
.y53{bottom:178.364600pt;}
.y14{bottom:182.081640pt;}
.y5d{bottom:187.330267pt;}
.y45{bottom:191.697933pt;}
.y52{bottom:195.697933pt;}
.y13{bottom:200.748307pt;}
.y51{bottom:213.031267pt;}
.y12{bottom:219.414973pt;}
.y44{bottom:228.067667pt;}
.y50{bottom:230.364600pt;}
.y11{bottom:238.081640pt;}
.y43{bottom:246.734333pt;}
.y4f{bottom:247.697933pt;}
.y10{bottom:256.748307pt;}
.y42{bottom:265.401000pt;}
.yf{bottom:275.414973pt;}
.y41{bottom:284.067667pt;}
.ye{bottom:294.081640pt;}
.y40{bottom:302.734333pt;}
.yd{bottom:312.748307pt;}
.y3f{bottom:321.401000pt;}
.yc{bottom:331.414973pt;}
.y3e{bottom:340.067667pt;}
.yb{bottom:350.081640pt;}
.y3d{bottom:358.734333pt;}
.ya{bottom:368.748307pt;}
.y3c{bottom:377.401000pt;}
.y3b{bottom:396.067667pt;}
.y3a{bottom:414.734333pt;}
.y39{bottom:433.401000pt;}
.y38{bottom:452.067667pt;}
.y37{bottom:470.734333pt;}
.y36{bottom:489.401000pt;}
.y9{bottom:499.414973pt;}
.y35{bottom:508.067667pt;}
.y8{bottom:518.081640pt;}
.y34{bottom:526.734333pt;}
.y7{bottom:536.748307pt;}
.y33{bottom:545.401000pt;}
.y6{bottom:555.414973pt;}
.y32{bottom:564.067667pt;}
.y31{bottom:582.734333pt;}
.y30{bottom:601.401000pt;}
.y2f{bottom:620.067667pt;}
.y2e{bottom:638.734333pt;}
.y5{bottom:651.880707pt;}
.y2d{bottom:657.401000pt;}
.y4{bottom:670.547373pt;}
.y2c{bottom:676.067667pt;}
.y3{bottom:689.214040pt;}
.y2b{bottom:694.734333pt;}
.y2{bottom:704.748307pt;}
.y2a{bottom:713.401000pt;}
.y29{bottom:732.067667pt;}
.y28{bottom:750.734333pt;}
.y5c{bottom:753.204933pt;}
.y27{bottom:769.401000pt;}
.y26{bottom:788.067667pt;}
.y25{bottom:806.734333pt;}
.y24{bottom:825.401000pt;}
.y23{bottom:844.067667pt;}
.y22{bottom:862.734333pt;}
.y21{bottom:881.401000pt;}
.h7{height:24.666680pt;}
.h3{height:39.101562pt;}
.ha{height:41.588542pt;}
.hb{height:42.481771pt;}
.h6{height:45.747396pt;}
.h5{height:48.640000pt;}
.h8{height:49.866667pt;}
.h4{height:54.400000pt;}
.hc{height:253.929200pt;}
.h2{height:899.782000pt;}
.h9{height:900.033733pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w7{width:467.997333pt;}
.w5{width:468.100000pt;}
.w3{width:468.349333pt;}
.w8{width:468.892000pt;}
.w6{width:468.906667pt;}
.w9{width:490.271600pt;}
.w4{width:499.411867pt;}
.w2{width:508.971867pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:4.033600pt;}
.x4{left:16.177867pt;}
.xc{left:22.931333pt;}
.xe{left:33.333333pt;}
.x3{left:39.857867pt;}
.x5{left:48.081867pt;}
.xa{left:52.033600pt;}
.x1{left:147.147467pt;}
.xd{left:153.181067pt;}
.xb{left:162.678667pt;}
.x8{left:252.404133pt;}
.x9{left:272.542267pt;}
.x7{left:275.657467pt;}
.x6{left:366.937333pt;}
}




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