
    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_8d1e0e624ae0b908d918b974.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.121582;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_ff1bd314430f30cb70051fa9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.885000;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_d74b0e62aec7e3977dc19d05.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.931000;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_a88808cdfa08000dd02c1e17.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.700000;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_cb34d3b3b6d13807afcd1805.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.104004;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_b7a0ac86b879369a87540c48.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.120117;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);}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-11.144250px;}
.ls4{letter-spacing:-10.573875px;}
.ls5{letter-spacing:-0.585000px;}
.ls3{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.117000px;}
.ls1{letter-spacing:0.175500px;}
.ls2{letter-spacing:0.292500px;}
.ls0{letter-spacing:10.656000px;}
.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;}
}
.ws1{word-spacing:0.000000px;}
.ws0{word-spacing:10.179000px;}
.ws3{word-spacing:10.734825px;}
.ws2{word-spacing:10.749375px;}
._2{margin-left:-10.656000px;}
._9{margin-left:-1.170000px;}
._3{width:1.999500px;}
._4{width:3.207000px;}
._5{width:4.983000px;}
._7{width:6.048000px;}
._6{width:7.312500px;}
._1{width:13.344000px;}
._8{width:790.085400px;}
._a{width:1121.598000px;}
._0{width:1133.577000px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:43.875000px;}
.fs2{font-size:48.000000px;}
.fs0{font-size:51.000000px;}
.fs6{font-size:57.000000px;}
.fs4{font-size:58.500000px;}
.fs3{font-size:64.500000px;}
.fs1{font-size:171.052800px;}
.y0{bottom:0.000000px;}
.y1{bottom:85.649550px;}
.y58{bottom:126.240975px;}
.y2b{bottom:126.687600px;}
.y57{bottom:142.547850px;}
.y7b{bottom:142.562850px;}
.y2a{bottom:142.994475px;}
.y56{bottom:158.854725px;}
.y29{bottom:159.301350px;}
.y55{bottom:175.161600px;}
.y7a{bottom:175.176600px;}
.y28{bottom:175.608225px;}
.y54{bottom:191.468475px;}
.y79{bottom:191.483475px;}
.y27{bottom:191.915100px;}
.y53{bottom:207.775350px;}
.y78{bottom:207.790350px;}
.y26{bottom:208.221975px;}
.y52{bottom:224.082225px;}
.y77{bottom:224.097225px;}
.y25{bottom:224.528850px;}
.y51{bottom:240.389100px;}
.y76{bottom:240.404100px;}
.y24{bottom:240.835725px;}
.y50{bottom:256.695975px;}
.y75{bottom:256.710975px;}
.y23{bottom:257.142600px;}
.y4f{bottom:273.002850px;}
.y74{bottom:273.017850px;}
.y22{bottom:273.449475px;}
.y4e{bottom:289.309725px;}
.y73{bottom:289.324725px;}
.y21{bottom:289.737450px;}
.y72{bottom:305.607225px;}
.y4d{bottom:305.616600px;}
.y20{bottom:306.044325px;}
.y71{bottom:321.914100px;}
.y4c{bottom:321.923475px;}
.y1f{bottom:322.351200px;}
.y70{bottom:338.220975px;}
.y4b{bottom:338.230350px;}
.y1e{bottom:338.658075px;}
.y6f{bottom:354.527850px;}
.y4a{bottom:354.537225px;}
.y1d{bottom:354.964950px;}
.y6e{bottom:370.834725px;}
.y49{bottom:370.844100px;}
.y1c{bottom:371.271825px;}
.y6d{bottom:387.141600px;}
.y48{bottom:387.150975px;}
.y1b{bottom:387.578700px;}
.y6c{bottom:403.448475px;}
.y47{bottom:403.457850px;}
.y1a{bottom:403.885575px;}
.y6b{bottom:419.755350px;}
.y46{bottom:419.764725px;}
.y19{bottom:420.192450px;}
.y45{bottom:436.058475px;}
.y6a{bottom:436.062225px;}
.y18{bottom:436.499325px;}
.y44{bottom:452.365350px;}
.y69{bottom:452.369100px;}
.y17{bottom:452.774475px;}
.y43{bottom:468.672225px;}
.y68{bottom:468.675975px;}
.y16{bottom:469.081350px;}
.y42{bottom:484.979100px;}
.y67{bottom:484.982850px;}
.y15{bottom:485.388225px;}
.y41{bottom:501.285975px;}
.y66{bottom:501.289725px;}
.y14{bottom:501.695100px;}
.y65{bottom:517.572225px;}
.y40{bottom:517.592850px;}
.y13{bottom:518.001975px;}
.y64{bottom:533.879100px;}
.y3f{bottom:533.899725px;}
.y12{bottom:534.308850px;}
.y63{bottom:550.185975px;}
.y3e{bottom:550.199100px;}
.y11{bottom:550.615725px;}
.y62{bottom:566.492850px;}
.y3d{bottom:566.505975px;}
.y10{bottom:566.922600px;}
.y61{bottom:582.799725px;}
.y3c{bottom:582.812850px;}
.yf{bottom:583.229475px;}
.y60{bottom:599.106600px;}
.y3b{bottom:599.119725px;}
.ye{bottom:599.536350px;}
.y3a{bottom:615.405975px;}
.y5f{bottom:615.413475px;}
.yd{bottom:615.843225px;}
.y39{bottom:631.712850px;}
.y5e{bottom:631.720350px;}
.yc{bottom:632.150100px;}
.y38{bottom:648.019725px;}
.y5d{bottom:648.027225px;}
.yb{bottom:648.456975px;}
.y37{bottom:664.326600px;}
.y5c{bottom:664.334100px;}
.ya{bottom:664.763850px;}
.y36{bottom:680.633475px;}
.y5b{bottom:680.640975px;}
.y9{bottom:681.070725px;}
.y35{bottom:696.940350px;}
.y5a{bottom:696.947850px;}
.y8{bottom:697.377600px;}
.y34{bottom:713.247225px;}
.y59{bottom:713.254725px;}
.y7{bottom:713.684475px;}
.y33{bottom:729.554100px;}
.y6{bottom:729.991350px;}
.y32{bottom:745.860975px;}
.y31{bottom:762.167850px;}
.y5{bottom:776.064225px;}
.y30{bottom:778.474725px;}
.y4{bottom:793.656600px;}
.y2f{bottom:794.781600px;}
.y2e{bottom:831.204450px;}
.y3{bottom:835.330050px;}
.y2{bottom:855.705150px;}
.y2d{bottom:867.892950px;}
.y2c{bottom:881.392950px;}
.h4{height:35.328000px;}
.h2{height:45.745605px;}
.h9{height:51.127441px;}
.he{height:51.844482px;}
.h6{height:52.472900px;}
.hb{height:52.502900px;}
.hc{height:52.525400px;}
.h8{height:52.548500px;}
.ha{height:52.555400px;}
.hd{height:52.570400px;}
.h7{height:52.599800px;}
.h5{height:57.854736px;}
.h3{height:148.644883px;}
.h1{height:935.250000px;}
.h0{height:935.433000px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x6{left:93.543300px;}
.x1{left:107.149650px;}
.x7{left:119.055150px;}
.x4{left:132.661500px;}
.x3{left:415.535250px;}
.x8{left:453.200775px;}
.x5{left:473.435100px;}
.x2{left:517.476900px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-9.906000pt;}
.ls4{letter-spacing:-9.399000pt;}
.ls5{letter-spacing:-0.520000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.104000pt;}
.ls1{letter-spacing:0.156000pt;}
.ls2{letter-spacing:0.260000pt;}
.ls0{letter-spacing:9.472000pt;}
.ws1{word-spacing:0.000000pt;}
.ws0{word-spacing:9.048000pt;}
.ws3{word-spacing:9.542067pt;}
.ws2{word-spacing:9.555000pt;}
._2{margin-left:-9.472000pt;}
._9{margin-left:-1.040000pt;}
._3{width:1.777333pt;}
._4{width:2.850667pt;}
._5{width:4.429333pt;}
._7{width:5.376000pt;}
._6{width:6.500000pt;}
._1{width:11.861333pt;}
._8{width:702.298133pt;}
._a{width:996.976000pt;}
._0{width:1007.624000pt;}
.fs5{font-size:39.000000pt;}
.fs2{font-size:42.666667pt;}
.fs0{font-size:45.333333pt;}
.fs6{font-size:50.666667pt;}
.fs4{font-size:52.000000pt;}
.fs3{font-size:57.333333pt;}
.fs1{font-size:152.046933pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:76.132933pt;}
.y58{bottom:112.214200pt;}
.y2b{bottom:112.611200pt;}
.y57{bottom:126.709200pt;}
.y7b{bottom:126.722533pt;}
.y2a{bottom:127.106200pt;}
.y56{bottom:141.204200pt;}
.y29{bottom:141.601200pt;}
.y55{bottom:155.699200pt;}
.y7a{bottom:155.712533pt;}
.y28{bottom:156.096200pt;}
.y54{bottom:170.194200pt;}
.y79{bottom:170.207533pt;}
.y27{bottom:170.591200pt;}
.y53{bottom:184.689200pt;}
.y78{bottom:184.702533pt;}
.y26{bottom:185.086200pt;}
.y52{bottom:199.184200pt;}
.y77{bottom:199.197533pt;}
.y25{bottom:199.581200pt;}
.y51{bottom:213.679200pt;}
.y76{bottom:213.692533pt;}
.y24{bottom:214.076200pt;}
.y50{bottom:228.174200pt;}
.y75{bottom:228.187533pt;}
.y23{bottom:228.571200pt;}
.y4f{bottom:242.669200pt;}
.y74{bottom:242.682533pt;}
.y22{bottom:243.066200pt;}
.y4e{bottom:257.164200pt;}
.y73{bottom:257.177533pt;}
.y21{bottom:257.544400pt;}
.y72{bottom:271.650867pt;}
.y4d{bottom:271.659200pt;}
.y20{bottom:272.039400pt;}
.y71{bottom:286.145867pt;}
.y4c{bottom:286.154200pt;}
.y1f{bottom:286.534400pt;}
.y70{bottom:300.640867pt;}
.y4b{bottom:300.649200pt;}
.y1e{bottom:301.029400pt;}
.y6f{bottom:315.135867pt;}
.y4a{bottom:315.144200pt;}
.y1d{bottom:315.524400pt;}
.y6e{bottom:329.630867pt;}
.y49{bottom:329.639200pt;}
.y1c{bottom:330.019400pt;}
.y6d{bottom:344.125867pt;}
.y48{bottom:344.134200pt;}
.y1b{bottom:344.514400pt;}
.y6c{bottom:358.620867pt;}
.y47{bottom:358.629200pt;}
.y1a{bottom:359.009400pt;}
.y6b{bottom:373.115867pt;}
.y46{bottom:373.124200pt;}
.y19{bottom:373.504400pt;}
.y45{bottom:387.607533pt;}
.y6a{bottom:387.610867pt;}
.y18{bottom:387.999400pt;}
.y44{bottom:402.102533pt;}
.y69{bottom:402.105867pt;}
.y17{bottom:402.466200pt;}
.y43{bottom:416.597533pt;}
.y68{bottom:416.600867pt;}
.y16{bottom:416.961200pt;}
.y42{bottom:431.092533pt;}
.y67{bottom:431.095867pt;}
.y15{bottom:431.456200pt;}
.y41{bottom:445.587533pt;}
.y66{bottom:445.590867pt;}
.y14{bottom:445.951200pt;}
.y65{bottom:460.064200pt;}
.y40{bottom:460.082533pt;}
.y13{bottom:460.446200pt;}
.y64{bottom:474.559200pt;}
.y3f{bottom:474.577533pt;}
.y12{bottom:474.941200pt;}
.y63{bottom:489.054200pt;}
.y3e{bottom:489.065867pt;}
.y11{bottom:489.436200pt;}
.y62{bottom:503.549200pt;}
.y3d{bottom:503.560867pt;}
.y10{bottom:503.931200pt;}
.y61{bottom:518.044200pt;}
.y3c{bottom:518.055867pt;}
.yf{bottom:518.426200pt;}
.y60{bottom:532.539200pt;}
.y3b{bottom:532.550867pt;}
.ye{bottom:532.921200pt;}
.y3a{bottom:547.027533pt;}
.y5f{bottom:547.034200pt;}
.yd{bottom:547.416200pt;}
.y39{bottom:561.522533pt;}
.y5e{bottom:561.529200pt;}
.yc{bottom:561.911200pt;}
.y38{bottom:576.017533pt;}
.y5d{bottom:576.024200pt;}
.yb{bottom:576.406200pt;}
.y37{bottom:590.512533pt;}
.y5c{bottom:590.519200pt;}
.ya{bottom:590.901200pt;}
.y36{bottom:605.007533pt;}
.y5b{bottom:605.014200pt;}
.y9{bottom:605.396200pt;}
.y35{bottom:619.502533pt;}
.y5a{bottom:619.509200pt;}
.y8{bottom:619.891200pt;}
.y34{bottom:633.997533pt;}
.y59{bottom:634.004200pt;}
.y7{bottom:634.386200pt;}
.y33{bottom:648.492533pt;}
.y6{bottom:648.881200pt;}
.y32{bottom:662.987533pt;}
.y31{bottom:677.482533pt;}
.y5{bottom:689.834867pt;}
.y30{bottom:691.977533pt;}
.y4{bottom:705.472533pt;}
.y2f{bottom:706.472533pt;}
.y2e{bottom:738.848400pt;}
.y3{bottom:742.515600pt;}
.y2{bottom:760.626800pt;}
.y2d{bottom:771.460400pt;}
.y2c{bottom:783.460400pt;}
.h4{height:31.402667pt;}
.h2{height:40.662760pt;}
.h9{height:45.446615pt;}
.he{height:46.083984pt;}
.h6{height:46.642578pt;}
.hb{height:46.669245pt;}
.hc{height:46.689245pt;}
.h8{height:46.709778pt;}
.ha{height:46.715911pt;}
.hd{height:46.729245pt;}
.h7{height:46.755378pt;}
.h5{height:51.426432pt;}
.h3{height:132.128785pt;}
.h1{height:831.333333pt;}
.h0{height:831.496000pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x6{left:83.149600pt;}
.x1{left:95.244133pt;}
.x7{left:105.826800pt;}
.x4{left:117.921333pt;}
.x3{left:369.364667pt;}
.x8{left:402.845133pt;}
.x5{left:420.831200pt;}
.x2{left:459.979467pt;}
}




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