
    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_a4d4738d43708062172ae3f8.woff')format("woff");}.ff1{font-family:ff1;line-height:0.946000;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_659a0818b7e9e9bee90f2c4e.woff')format("woff");}.ff2{font-family:ff2;line-height:0.959000;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_19bae8fb427b5c983e3cbfbf.woff')format("woff");}.ff3{font-family:ff3;line-height:0.701000;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_0c3a6c5c4354b1e684829f66.woff')format("woff");}.ff4{font-family:ff4;line-height:0.979980;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;}
.ls2{letter-spacing:-0.036000px;}
.ls0{letter-spacing:-0.013200px;}
.ls3{letter-spacing:-0.011635px;}
.ls4{letter-spacing:-0.008400px;}
.ls7{letter-spacing:-0.007200px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.021600px;}
.ls8{letter-spacing:0.120000px;}
.ls5{letter-spacing:22.024800px;}
.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:-50.040000px;}
.ws1{word-spacing:-50.004000px;}
.ws14{word-spacing:-16.680000px;}
.ws0{word-spacing:-5.034600px;}
.wsb{word-spacing:-2.263800px;}
.ws8{word-spacing:-1.412400px;}
.ws7{word-spacing:-1.313400px;}
.ws15{word-spacing:0.000000px;}
.wsd{word-spacing:0.039600px;}
.wsf{word-spacing:0.963600px;}
.ws4{word-spacing:1.663200px;}
.ws17{word-spacing:1.668000px;}
.wsa{word-spacing:1.834800px;}
.ws16{word-spacing:1.987200px;}
.ws11{word-spacing:2.001600px;}
.ws13{word-spacing:2.335200px;}
.ws9{word-spacing:3.055800px;}
.wse{word-spacing:3.524400px;}
.ws12{word-spacing:3.851053px;}
.ws10{word-spacing:5.004000px;}
.ws5{word-spacing:5.075400px;}
.ws6{word-spacing:12.705000px;}
.ws3{word-spacing:12.830400px;}
.wsc{word-spacing:13.431000px;}
._9{margin-left:-10.818000px;}
._1{margin-left:-6.580200px;}
._e{margin-left:-5.372400px;}
._2{margin-left:-3.570600px;}
._0{margin-left:-1.630200px;}
._4{width:1.320000px;}
._10{width:2.560484px;}
._a{width:3.600000px;}
._13{width:5.332800px;}
._3{width:6.349200px;}
._7{width:9.207000px;}
._6{width:10.441200px;}
._8{width:12.104400px;}
._14{width:13.137000px;}
._d{width:14.272800px;}
._b{width:15.630600px;}
._5{width:21.232200px;}
._c{width:33.271200px;}
._f{width:59.551200px;}
._12{width:61.677000px;}
._11{width:63.798000px;}
.fc2{color:rgb(248,152,40);}
.fc1{color:rgb(158,28,32);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs5{font-size:84.000000px;}
.fs4{font-size:116.346000px;}
.fs2{font-size:180.000000px;}
.fs1{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.082500px;}
.y2b{bottom:26.067750px;}
.y11{bottom:30.184950px;}
.y29{bottom:103.836150px;}
.y28{bottom:125.436150px;}
.y65{bottom:133.213650px;}
.y27{bottom:147.036150px;}
.y64{bottom:151.213650px;}
.y53{bottom:159.041850px;}
.y26{bottom:168.636150px;}
.y63{bottom:169.213650px;}
.y52{bottom:180.641850px;}
.y62{bottom:187.213650px;}
.y25{bottom:190.236150px;}
.y51{bottom:202.241850px;}
.y61{bottom:205.213650px;}
.y24{bottom:211.836150px;}
.y60{bottom:223.213650px;}
.y50{bottom:223.679850px;}
.y23{bottom:233.436150px;}
.y5f{bottom:241.213650px;}
.y4f{bottom:245.279850px;}
.y22{bottom:255.036150px;}
.y5e{bottom:259.213650px;}
.y4e{bottom:266.879850px;}
.y21{bottom:276.636150px;}
.y5d{bottom:277.213650px;}
.y4d{bottom:288.479850px;}
.y5c{bottom:295.213650px;}
.y20{bottom:298.236150px;}
.y4c{bottom:310.079850px;}
.y5b{bottom:313.213650px;}
.y5a{bottom:331.213650px;}
.y4b{bottom:331.679850px;}
.y1f{bottom:337.312350px;}
.y59{bottom:349.213650px;}
.y4a{bottom:353.279850px;}
.y58{bottom:367.213650px;}
.y49{bottom:374.879850px;}
.y57{bottom:385.213650px;}
.y48{bottom:396.479850px;}
.y56{bottom:403.213650px;}
.y1e{bottom:417.411600px;}
.y47{bottom:418.079850px;}
.y55{bottom:421.213650px;}
.y1d{bottom:439.011600px;}
.y54{bottom:439.213650px;}
.y46{bottom:439.679850px;}
.y1c{bottom:460.611600px;}
.y45{bottom:461.279850px;}
.y67{bottom:470.421300px;}
.y1b{bottom:482.211600px;}
.y44{bottom:482.879850px;}
.y1a{bottom:503.811600px;}
.y43{bottom:504.479850px;}
.y66{bottom:506.421300px;}
.y19{bottom:525.411600px;}
.y42{bottom:526.079850px;}
.y18{bottom:547.011600px;}
.y41{bottom:547.679850px;}
.y17{bottom:568.611600px;}
.y40{bottom:569.279850px;}
.y84{bottom:580.391850px;}
.y16{bottom:590.211600px;}
.y83{bottom:598.391700px;}
.y3f{bottom:605.563950px;}
.y15{bottom:611.811600px;}
.y82{bottom:616.391550px;}
.y81{bottom:634.391400px;}
.y3e{bottom:649.065450px;}
.y80{bottom:652.391250px;}
.y14{bottom:655.011600px;}
.y7f{bottom:670.391100px;}
.y13{bottom:676.611600px;}
.y7e{bottom:688.390950px;}
.y7d{bottom:706.390800px;}
.y12{bottom:715.687950px;}
.y7c{bottom:731.891550px;}
.y7b{bottom:749.891400px;}
.y3d{bottom:757.364400px;}
.y7a{bottom:767.891250px;}
.y3c{bottom:778.964400px;}
.yf{bottom:782.840700px;}
.y79{bottom:785.891100px;}
.y3b{bottom:800.564400px;}
.ye{bottom:802.340400px;}
.y78{bottom:811.391850px;}
.yd{bottom:821.840100px;}
.y3a{bottom:822.164400px;}
.y77{bottom:829.391700px;}
.yc{bottom:841.339800px;}
.y39{bottom:843.764400px;}
.y76{bottom:847.391550px;}
.yb{bottom:860.839500px;}
.y38{bottom:865.364400px;}
.y75{bottom:872.892300px;}
.ya{bottom:880.339200px;}
.y37{bottom:886.964400px;}
.y74{bottom:890.892150px;}
.y9{bottom:899.838900px;}
.y36{bottom:908.564400px;}
.y73{bottom:908.892000px;}
.y8{bottom:919.338600px;}
.y72{bottom:926.891850px;}
.y35{bottom:930.164400px;}
.y7{bottom:938.838300px;}
.y71{bottom:944.891700px;}
.y34{bottom:951.764400px;}
.y6{bottom:958.338000px;}
.y70{bottom:962.891550px;}
.y33{bottom:973.364400px;}
.y5{bottom:977.837700px;}
.y6f{bottom:980.891400px;}
.y32{bottom:994.964400px;}
.y4{bottom:997.337400px;}
.y6e{bottom:1006.392150px;}
.y31{bottom:1016.564400px;}
.y3{bottom:1016.837100px;}
.y6d{bottom:1024.392000px;}
.y2{bottom:1036.336800px;}
.y30{bottom:1038.164400px;}
.y6c{bottom:1042.391850px;}
.y2f{bottom:1059.764400px;}
.y6b{bottom:1067.892600px;}
.y2e{bottom:1081.364400px;}
.y6a{bottom:1085.892450px;}
.y10{bottom:1090.959750px;}
.y2d{bottom:1102.964400px;}
.y69{bottom:1103.892300px;}
.y68{bottom:1136.893800px;}
.y2c{bottom:1139.250750px;}
.y2a{bottom:1210.098300px;}
.h8{height:43.740000px;}
.h2{height:47.256000px;}
.h9{height:48.114000px;}
.h5{height:52.488000px;}
.h7{height:54.000000px;}
.h6{height:80.511432px;}
.h4{height:131.220000px;}
.h3{height:157.464000px;}
.h1{height:1262.835000px;}
.h0{height:1263.000000px;}
.w1{width:892.500000px;}
.w2{width:892.707000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x8{left:28.296300px;}
.x1{left:42.313050px;}
.x4{left:63.572850px;}
.x5{left:84.832650px;}
.x2{left:96.312600px;}
.x6{left:106.092450px;}
.xc{left:405.818400px;}
.xb{left:410.268900px;}
.x9{left:411.824100px;}
.xd{left:427.077450px;}
.xa{left:433.083600px;}
.x7{left:546.412800px;}
.x3{left:579.110400px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-0.032000pt;}
.ls0{letter-spacing:-0.011733pt;}
.ls3{letter-spacing:-0.010342pt;}
.ls4{letter-spacing:-0.007467pt;}
.ls7{letter-spacing:-0.006400pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.019200pt;}
.ls8{letter-spacing:0.106667pt;}
.ls5{letter-spacing:19.577600pt;}
.ws2{word-spacing:-44.480000pt;}
.ws1{word-spacing:-44.448000pt;}
.ws14{word-spacing:-14.826667pt;}
.ws0{word-spacing:-4.475200pt;}
.wsb{word-spacing:-2.012267pt;}
.ws8{word-spacing:-1.255467pt;}
.ws7{word-spacing:-1.167467pt;}
.ws15{word-spacing:0.000000pt;}
.wsd{word-spacing:0.035200pt;}
.wsf{word-spacing:0.856533pt;}
.ws4{word-spacing:1.478400pt;}
.ws17{word-spacing:1.482667pt;}
.wsa{word-spacing:1.630933pt;}
.ws16{word-spacing:1.766400pt;}
.ws11{word-spacing:1.779200pt;}
.ws13{word-spacing:2.075733pt;}
.ws9{word-spacing:2.716267pt;}
.wse{word-spacing:3.132800pt;}
.ws12{word-spacing:3.423158pt;}
.ws10{word-spacing:4.448000pt;}
.ws5{word-spacing:4.511467pt;}
.ws6{word-spacing:11.293333pt;}
.ws3{word-spacing:11.404800pt;}
.wsc{word-spacing:11.938667pt;}
._9{margin-left:-9.616000pt;}
._1{margin-left:-5.849067pt;}
._e{margin-left:-4.775467pt;}
._2{margin-left:-3.173867pt;}
._0{margin-left:-1.449067pt;}
._4{width:1.173333pt;}
._10{width:2.275986pt;}
._a{width:3.200000pt;}
._13{width:4.740267pt;}
._3{width:5.643733pt;}
._7{width:8.184000pt;}
._6{width:9.281067pt;}
._8{width:10.759467pt;}
._14{width:11.677333pt;}
._d{width:12.686933pt;}
._b{width:13.893867pt;}
._5{width:18.873067pt;}
._c{width:29.574400pt;}
._f{width:52.934400pt;}
._12{width:54.824000pt;}
._11{width:56.709333pt;}
.fs6{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs5{font-size:74.666667pt;}
.fs4{font-size:103.418667pt;}
.fs2{font-size:160.000000pt;}
.fs1{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.073333pt;}
.y2b{bottom:23.171333pt;}
.y11{bottom:26.831067pt;}
.y29{bottom:92.298800pt;}
.y28{bottom:111.498800pt;}
.y65{bottom:118.412133pt;}
.y27{bottom:130.698800pt;}
.y64{bottom:134.412133pt;}
.y53{bottom:141.370533pt;}
.y26{bottom:149.898800pt;}
.y63{bottom:150.412133pt;}
.y52{bottom:160.570533pt;}
.y62{bottom:166.412133pt;}
.y25{bottom:169.098800pt;}
.y51{bottom:179.770533pt;}
.y61{bottom:182.412133pt;}
.y24{bottom:188.298800pt;}
.y60{bottom:198.412133pt;}
.y50{bottom:198.826533pt;}
.y23{bottom:207.498800pt;}
.y5f{bottom:214.412133pt;}
.y4f{bottom:218.026533pt;}
.y22{bottom:226.698800pt;}
.y5e{bottom:230.412133pt;}
.y4e{bottom:237.226533pt;}
.y21{bottom:245.898800pt;}
.y5d{bottom:246.412133pt;}
.y4d{bottom:256.426533pt;}
.y5c{bottom:262.412133pt;}
.y20{bottom:265.098800pt;}
.y4c{bottom:275.626533pt;}
.y5b{bottom:278.412133pt;}
.y5a{bottom:294.412133pt;}
.y4b{bottom:294.826533pt;}
.y1f{bottom:299.833200pt;}
.y59{bottom:310.412133pt;}
.y4a{bottom:314.026533pt;}
.y58{bottom:326.412133pt;}
.y49{bottom:333.226533pt;}
.y57{bottom:342.412133pt;}
.y48{bottom:352.426533pt;}
.y56{bottom:358.412133pt;}
.y1e{bottom:371.032533pt;}
.y47{bottom:371.626533pt;}
.y55{bottom:374.412133pt;}
.y1d{bottom:390.232533pt;}
.y54{bottom:390.412133pt;}
.y46{bottom:390.826533pt;}
.y1c{bottom:409.432533pt;}
.y45{bottom:410.026533pt;}
.y67{bottom:418.152267pt;}
.y1b{bottom:428.632533pt;}
.y44{bottom:429.226533pt;}
.y1a{bottom:447.832533pt;}
.y43{bottom:448.426533pt;}
.y66{bottom:450.152267pt;}
.y19{bottom:467.032533pt;}
.y42{bottom:467.626533pt;}
.y18{bottom:486.232533pt;}
.y41{bottom:486.826533pt;}
.y17{bottom:505.432533pt;}
.y40{bottom:506.026533pt;}
.y84{bottom:515.903867pt;}
.y16{bottom:524.632533pt;}
.y83{bottom:531.903733pt;}
.y3f{bottom:538.279067pt;}
.y15{bottom:543.832533pt;}
.y82{bottom:547.903600pt;}
.y81{bottom:563.903467pt;}
.y3e{bottom:576.947067pt;}
.y80{bottom:579.903333pt;}
.y14{bottom:582.232533pt;}
.y7f{bottom:595.903200pt;}
.y13{bottom:601.432533pt;}
.y7e{bottom:611.903067pt;}
.y7d{bottom:627.902933pt;}
.y12{bottom:636.167067pt;}
.y7c{bottom:650.570267pt;}
.y7b{bottom:666.570133pt;}
.y3d{bottom:673.212800pt;}
.y7a{bottom:682.570000pt;}
.y3c{bottom:692.412800pt;}
.yf{bottom:695.858400pt;}
.y79{bottom:698.569867pt;}
.y3b{bottom:711.612800pt;}
.ye{bottom:713.191467pt;}
.y78{bottom:721.237200pt;}
.yd{bottom:730.524533pt;}
.y3a{bottom:730.812800pt;}
.y77{bottom:737.237067pt;}
.yc{bottom:747.857600pt;}
.y39{bottom:750.012800pt;}
.y76{bottom:753.236933pt;}
.yb{bottom:765.190667pt;}
.y38{bottom:769.212800pt;}
.y75{bottom:775.904267pt;}
.ya{bottom:782.523733pt;}
.y37{bottom:788.412800pt;}
.y74{bottom:791.904133pt;}
.y9{bottom:799.856800pt;}
.y36{bottom:807.612800pt;}
.y73{bottom:807.904000pt;}
.y8{bottom:817.189867pt;}
.y72{bottom:823.903867pt;}
.y35{bottom:826.812800pt;}
.y7{bottom:834.522933pt;}
.y71{bottom:839.903733pt;}
.y34{bottom:846.012800pt;}
.y6{bottom:851.856000pt;}
.y70{bottom:855.903600pt;}
.y33{bottom:865.212800pt;}
.y5{bottom:869.189067pt;}
.y6f{bottom:871.903467pt;}
.y32{bottom:884.412800pt;}
.y4{bottom:886.522133pt;}
.y6e{bottom:894.570800pt;}
.y31{bottom:903.612800pt;}
.y3{bottom:903.855200pt;}
.y6d{bottom:910.570667pt;}
.y2{bottom:921.188267pt;}
.y30{bottom:922.812800pt;}
.y6c{bottom:926.570533pt;}
.y2f{bottom:942.012800pt;}
.y6b{bottom:949.237867pt;}
.y2e{bottom:961.212800pt;}
.y6a{bottom:965.237733pt;}
.y10{bottom:969.742000pt;}
.y2d{bottom:980.412800pt;}
.y69{bottom:981.237600pt;}
.y68{bottom:1010.572267pt;}
.y2c{bottom:1012.667333pt;}
.y2a{bottom:1075.642933pt;}
.h8{height:38.880000pt;}
.h2{height:42.005333pt;}
.h9{height:42.768000pt;}
.h5{height:46.656000pt;}
.h7{height:48.000000pt;}
.h6{height:71.565717pt;}
.h4{height:116.640000pt;}
.h3{height:139.968000pt;}
.h1{height:1122.520000pt;}
.h0{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w2{width:793.517333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x8{left:25.152267pt;}
.x1{left:37.611600pt;}
.x4{left:56.509200pt;}
.x5{left:75.406800pt;}
.x2{left:85.611200pt;}
.x6{left:94.304400pt;}
.xc{left:360.727467pt;}
.xb{left:364.683467pt;}
.x9{left:366.065867pt;}
.xd{left:379.624400pt;}
.xa{left:384.963200pt;}
.x7{left:485.700267pt;}
.x3{left:514.764800pt;}
}




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