
    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_0049eef3b6816fab06e5f701.woff')format("woff");}.ff1{font-family:ff1;line-height:0.939453;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_e9cf59d8b1311dc6a52b056c.woff')format("woff");}.ff2{font-family:ff2;line-height:1.061000;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_afb3b167533319359677126f.woff')format("woff");}.ff3{font-family:ff3;line-height:0.933000;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:-25.824781px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:50.592467px;}
.v4{vertical-align:76.194353px;}
.v1{vertical-align:80.930559px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:107.972021px;}
.ls2{letter-spacing:107.972030px;}
.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;}
}
.wsa{word-spacing:-73.692001px;}
.ws3{word-spacing:-34.914000px;}
.ws0{word-spacing:-29.916001px;}
.ws4{word-spacing:-23.268000px;}
.ws2{word-spacing:-22.428000px;}
.ws6{word-spacing:-20.826001px;}
.ws5{word-spacing:-19.944001px;}
.ws8{word-spacing:-19.224001px;}
.ws1{word-spacing:0.000000px;}
.ws7{word-spacing:870.337463px;}
.ws9{word-spacing:930.967258px;}
._d{margin-left:-18.216000px;}
._3{margin-left:-10.193038px;}
._b{margin-left:-8.388000px;}
._4{margin-left:-6.996000px;}
._0{margin-left:-5.940000px;}
._5{margin-left:-4.872000px;}
._2{margin-left:-3.612000px;}
._1{margin-left:-1.944000px;}
._7{width:1.296000px;}
._6{width:2.436000px;}
._9{width:4.452000px;}
._8{width:6.084000px;}
._a{width:321.833031px;}
._c{width:936.431037px;}
.fca{color:rgb(7,42,84);}
.fc9{color:rgb(0,79,159);}
.fc8{color:rgb(0,151,167);}
.fc7{color:rgb(4,51,92);}
.fc5{color:rgb(4,50,87);}
.fc6{color:rgb(19,41,75);}
.fc1{color:rgb(70,120,134);}
.fc4{color:rgb(0,132,255);}
.fc3{color:rgb(63,63,63);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:48.000003px;}
.fs6{font-size:60.000000px;}
.fs3{font-size:66.000004px;}
.fs7{font-size:72.000002px;}
.fs8{font-size:78.000005px;}
.fs4{font-size:84.000000px;}
.fs9{font-size:96.000006px;}
.fs1{font-size:108.000003px;}
.fs5{font-size:138.000001px;}
.fs0{font-size:240.000002px;}
.fs2{font-size:270.000009px;}
.fsa{font-size:276.000003px;}
.y0{bottom:0.000000px;}
.y57{bottom:9.061507px;}
.y5a{bottom:19.749007px;}
.y6{bottom:20.990533px;}
.y69{bottom:23.189384px;}
.y1e{bottom:26.362955px;}
.y56{bottom:30.436508px;}
.y1c{bottom:30.452888px;}
.y34{bottom:33.571292px;}
.y32{bottom:39.222865px;}
.y59{bottom:41.124008px;}
.y19{bottom:42.830869px;}
.y1d{bottom:51.562953px;}
.y55{bottom:51.811508px;}
.y68{bottom:58.248849px;}
.y33{bottom:58.321293px;}
.y2b{bottom:58.357224px;}
.y16{bottom:59.432900px;}
.y58{bottom:62.499009px;}
.y31{bottom:63.972866px;}
.y36{bottom:68.332170px;}
.y54{bottom:73.186510px;}
.y2a{bottom:81.982225px;}
.y1b{bottom:88.412912px;}
.y30{bottom:88.722865px;}
.y35{bottom:89.707171px;}
.y29{bottom:105.607225px;}
.y4c{bottom:107.720478px;}
.y67{bottom:116.208884px;}
.y15{bottom:117.392936px;}
.y72{bottom:125.421604px;}
.y4b{bottom:129.095478px;}
.y38{bottom:144.478273px;}
.y66{bottom:145.188885px;}
.y4{bottom:146.102914px;}
.y14{bottom:146.372936px;}
.y4a{bottom:150.470479px;}
.y71{bottom:152.331603px;}
.y50{bottom:161.512298px;}
.y49{bottom:167.632301px;}
.y65{bottom:174.168886px;}
.y3{bottom:175.262917px;}
.y13{bottom:175.352937px;}
.y70{bottom:179.241601px;}
.y4f{bottom:182.887299px;}
.y48{bottom:192.382301px;}
.y4e{bottom:204.262300px;}
.y1a{bottom:204.332961px;}
.y47{bottom:217.132302px;}
.y28{bottom:223.272156px;}
.y4d{bottom:225.637301px;}
.y3c{bottom:230.636739px;}
.y64{bottom:232.128922px;}
.y12{bottom:233.312973px;}
.y37{bottom:239.641571px;}
.y27{bottom:244.647159px;}
.y6f{bottom:247.557633px;}
.y3b{bottom:255.386739px;}
.y3f{bottom:256.594416px;}
.y63{bottom:261.108934px;}
.y11{bottom:262.292985px;}
.y26{bottom:266.022160px;}
.y6c{bottom:266.295690px;}
.y3e{bottom:268.696300px;}
.y40{bottom:281.344416px;}
.y46{bottom:283.271099px;}
.y25{bottom:287.397161px;}
.y62{bottom:290.088946px;}
.y6b{bottom:291.045691px;}
.y10{bottom:291.272997px;}
.y3d{bottom:293.446301px;}
.y45{bottom:308.021100px;}
.y61{bottom:319.068947px;}
.yf{bottom:320.252998px;}
.y5{bottom:322.900062px;}
.y3a{bottom:328.621541px;}
.y2{bottom:329.371900px;}
.y6e{bottom:330.357647px;}
.y44{bottom:332.771101px;}
.y6a{bottom:340.545693px;}
.y60{bottom:348.048937px;}
.ye{bottom:349.232988px;}
.y39{bottom:352.246541px;}
.y5f{bottom:377.028926px;}
.yd{bottom:378.212978px;}
.y43{bottom:386.803581px;}
.y1{bottom:394.171902px;}
.yc{bottom:407.192979px;}
.y42{bottom:411.553582px;}
.y2d{bottom:411.826713px;}
.y6d{bottom:413.157631px;}
.y24{bottom:427.125475px;}
.y53{bottom:429.964005px;}
.y2f{bottom:432.356813px;}
.y5e{bottom:434.988917px;}
.yb{bottom:436.172968px;}
.y41{bottom:436.303583px;}
.y2c{bottom:436.576714px;}
.y20{bottom:444.032718px;}
.y23{bottom:450.750476px;}
.y2e{bottom:453.731814px;}
.y52{bottom:454.714006px;}
.y5d{bottom:463.968918px;}
.ya{bottom:465.152969px;}
.y1f{bottom:469.232717px;}
.y51{bottom:479.464007px;}
.y18{bottom:490.460321px;}
.y5c{bottom:492.948908px;}
.y9{bottom:494.132959px;}
.y73{bottom:517.228474px;}
.y5b{bottom:521.928905px;}
.y8{bottom:523.112956px;}
.y22{bottom:529.938007px;}
.y17{bottom:531.860312px;}
.y7{bottom:552.092952px;}
.y21{bottom:566.688009px;}
.y74{bottom:572.241769px;}
.h10{height:40.368003px;}
.h4{height:48.114260px;}
.h7{height:50.460000px;}
.ha{height:60.552002px;}
.h8{height:60.564000px;}
.hb{height:65.598005px;}
.hc{height:69.216004px;}
.h5{height:70.644000px;}
.h2{height:78.732424px;}
.h6{height:99.498001px;}
.hd{height:121.236466px;}
.he{height:146.838353px;}
.h9{height:151.574558px;}
.h1{height:174.960939px;}
.h3{height:196.831061px;}
.hf{height:232.116002px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.xe{left:27.317067px;}
.x8{left:42.425197px;}
.x9{left:52.358271px;}
.x2f{left:58.313976px;}
.x13{left:60.934710px;}
.xb{left:63.079529px;}
.x12{left:65.213635px;}
.x10{left:72.610410px;}
.x11{left:84.391428px;}
.xf{left:86.587441px;}
.x2{left:113.246219px;}
.x2b{left:152.417964px;}
.xa{left:172.869340px;}
.x2d{left:200.267365px;}
.x20{left:249.232824px;}
.x25{left:260.654183px;}
.x1{left:293.258721px;}
.x1c{left:338.176534px;}
.x1d{left:340.579545px;}
.x35{left:367.379427px;}
.x38{left:373.832866px;}
.x33{left:380.074163px;}
.x26{left:395.045923px;}
.x1e{left:398.590922px;}
.x34{left:401.738345px;}
.x37{left:407.635764px;}
.x2a{left:438.738979px;}
.x29{left:442.033006px;}
.x28{left:449.233000px;}
.x15{left:488.147637px;}
.x36{left:491.167478px;}
.x3{left:493.546561px;}
.x14{left:495.661161px;}
.x4{left:572.733459px;}
.x2c{left:578.595124px;}
.x5{left:612.410465px;}
.x6{left:626.733461px;}
.x1a{left:633.241266px;}
.x1b{left:636.557352px;}
.x24{left:656.286275px;}
.x7{left:666.410466px;}
.x23{left:675.354052px;}
.xc{left:680.733461px;}
.x1f{left:706.092800px;}
.xd{left:720.410468px;}
.x31{left:780.662377px;}
.x2e{left:799.228004px;}
.x39{left:821.539444px;}
.x30{left:822.691650px;}
.x21{left:827.260603px;}
.x32{left:834.864819px;}
.x22{left:838.132536px;}
.x27{left:956.769274px;}
.x16{left:965.730130px;}
.x18{left:972.009454px;}
.x17{left:980.004160px;}
.x19{left:981.947412px;}
@media print{
.v2{vertical-align:-22.955361pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:44.971081pt;}
.v4{vertical-align:67.728314pt;}
.v1{vertical-align:71.938274pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:95.975130pt;}
.ls2{letter-spacing:95.975138pt;}
.wsa{word-spacing:-65.504001pt;}
.ws3{word-spacing:-31.034667pt;}
.ws0{word-spacing:-26.592001pt;}
.ws4{word-spacing:-20.682667pt;}
.ws2{word-spacing:-19.936000pt;}
.ws6{word-spacing:-18.512001pt;}
.ws5{word-spacing:-17.728001pt;}
.ws8{word-spacing:-17.088001pt;}
.ws1{word-spacing:0.000000pt;}
.ws7{word-spacing:773.633301pt;}
.ws9{word-spacing:827.526452pt;}
._d{margin-left:-16.192000pt;}
._3{margin-left:-9.060478pt;}
._b{margin-left:-7.456000pt;}
._4{margin-left:-6.218666pt;}
._0{margin-left:-5.280000pt;}
._5{margin-left:-4.330667pt;}
._2{margin-left:-3.210667pt;}
._1{margin-left:-1.728000pt;}
._7{width:1.152000pt;}
._6{width:2.165333pt;}
._9{width:3.957333pt;}
._8{width:5.408000pt;}
._a{width:286.073805pt;}
._c{width:832.383144pt;}
.fsb{font-size:42.666669pt;}
.fs6{font-size:53.333334pt;}
.fs3{font-size:58.666670pt;}
.fs7{font-size:64.000002pt;}
.fs8{font-size:69.333338pt;}
.fs4{font-size:74.666666pt;}
.fs9{font-size:85.333339pt;}
.fs1{font-size:96.000003pt;}
.fs5{font-size:122.666668pt;}
.fs0{font-size:213.333335pt;}
.fs2{font-size:240.000008pt;}
.fsa{font-size:245.333336pt;}
.y0{bottom:0.000000pt;}
.y57{bottom:8.054673pt;}
.y5a{bottom:17.554673pt;}
.y6{bottom:18.658251pt;}
.y69{bottom:20.612785pt;}
.y1e{bottom:23.433737pt;}
.y56{bottom:27.054674pt;}
.y1c{bottom:27.069234pt;}
.y34{bottom:29.841149pt;}
.y32{bottom:34.864769pt;}
.y59{bottom:36.554674pt;}
.y19{bottom:38.071884pt;}
.y1d{bottom:45.833736pt;}
.y55{bottom:46.054674pt;}
.y68{bottom:51.776754pt;}
.y33{bottom:51.841149pt;}
.y2b{bottom:51.873088pt;}
.y16{bottom:52.829244pt;}
.y58{bottom:55.554674pt;}
.y31{bottom:56.864770pt;}
.y36{bottom:60.739707pt;}
.y54{bottom:65.054676pt;}
.y2a{bottom:72.873089pt;}
.y1b{bottom:78.589255pt;}
.y30{bottom:78.864769pt;}
.y35{bottom:79.739707pt;}
.y29{bottom:93.873089pt;}
.y4c{bottom:95.751536pt;}
.y67{bottom:103.296786pt;}
.y15{bottom:104.349276pt;}
.y72{bottom:111.485870pt;}
.y4b{bottom:114.751536pt;}
.y38{bottom:128.425132pt;}
.y66{bottom:129.056787pt;}
.y4{bottom:129.869257pt;}
.y14{bottom:130.109277pt;}
.y4a{bottom:133.751537pt;}
.y71{bottom:135.405869pt;}
.y50{bottom:143.566487pt;}
.y49{bottom:149.006489pt;}
.y65{bottom:154.816788pt;}
.y3{bottom:155.789260pt;}
.y13{bottom:155.869278pt;}
.y70{bottom:159.325868pt;}
.y4f{bottom:162.566488pt;}
.y48{bottom:171.006490pt;}
.y4e{bottom:181.566489pt;}
.y1a{bottom:181.629299pt;}
.y47{bottom:193.006491pt;}
.y28{bottom:198.464139pt;}
.y4d{bottom:200.566490pt;}
.y3c{bottom:205.010434pt;}
.y64{bottom:206.336819pt;}
.y12{bottom:207.389309pt;}
.y37{bottom:213.014730pt;}
.y27{bottom:217.464142pt;}
.y6f{bottom:220.051230pt;}
.y3b{bottom:227.010435pt;}
.y3f{bottom:228.083925pt;}
.y63{bottom:232.096830pt;}
.y11{bottom:233.149320pt;}
.y26{bottom:236.464142pt;}
.y6c{bottom:236.707280pt;}
.y3e{bottom:238.841155pt;}
.y40{bottom:250.083926pt;}
.y46{bottom:251.796533pt;}
.y25{bottom:255.464143pt;}
.y62{bottom:257.856841pt;}
.y6b{bottom:258.707281pt;}
.y10{bottom:258.909331pt;}
.y3d{bottom:260.841156pt;}
.y45{bottom:273.796533pt;}
.y61{bottom:283.616842pt;}
.yf{bottom:284.669332pt;}
.y5{bottom:287.022277pt;}
.y3a{bottom:292.108036pt;}
.y2{bottom:292.775022pt;}
.y6e{bottom:293.651242pt;}
.y44{bottom:295.796534pt;}
.y6a{bottom:302.707282pt;}
.y60{bottom:309.376833pt;}
.ye{bottom:310.429323pt;}
.y39{bottom:313.108037pt;}
.y5f{bottom:335.136823pt;}
.yd{bottom:336.189313pt;}
.y43{bottom:343.825406pt;}
.y1{bottom:350.375024pt;}
.yc{bottom:361.949314pt;}
.y42{bottom:365.825406pt;}
.y2d{bottom:366.068189pt;}
.y6d{bottom:367.251227pt;}
.y24{bottom:379.667089pt;}
.y53{bottom:382.190227pt;}
.y2f{bottom:384.317167pt;}
.y5e{bottom:386.656815pt;}
.yb{bottom:387.709305pt;}
.y41{bottom:387.825407pt;}
.y2c{bottom:388.068190pt;}
.y20{bottom:394.695749pt;}
.y23{bottom:400.667090pt;}
.y2e{bottom:403.317168pt;}
.y52{bottom:404.190228pt;}
.y5d{bottom:412.416816pt;}
.ya{bottom:413.469306pt;}
.y1f{bottom:417.095748pt;}
.y51{bottom:426.190228pt;}
.y18{bottom:435.964730pt;}
.y5c{bottom:438.176807pt;}
.y9{bottom:439.229297pt;}
.y73{bottom:459.758643pt;}
.y5b{bottom:463.936805pt;}
.y8{bottom:464.989295pt;}
.y22{bottom:471.056006pt;}
.y17{bottom:472.764722pt;}
.y7{bottom:490.749290pt;}
.y21{bottom:503.722675pt;}
.y74{bottom:508.659350pt;}
.h10{height:35.882669pt;}
.h4{height:42.768232pt;}
.h7{height:44.853334pt;}
.ha{height:53.824002pt;}
.h8{height:53.834666pt;}
.hb{height:58.309337pt;}
.hc{height:61.525337pt;}
.h5{height:62.794666pt;}
.h2{height:69.984377pt;}
.h6{height:88.442668pt;}
.hd{height:107.765748pt;}
.he{height:130.522981pt;}
.h9{height:134.732941pt;}
.h1{height:155.520834pt;}
.h3{height:174.960943pt;}
.hf{height:206.325335pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.xe{left:24.281838pt;}
.x8{left:37.711286pt;}
.x9{left:46.540685pt;}
.x2f{left:51.834646pt;}
.x13{left:54.164187pt;}
.xb{left:56.070693pt;}
.x12{left:57.967676pt;}
.x10{left:64.542587pt;}
.x11{left:75.014602pt;}
.xf{left:76.966614pt;}
.x2{left:100.663306pt;}
.x2b{left:135.482634pt;}
.xa{left:153.661636pt;}
.x2d{left:178.015436pt;}
.x20{left:221.540288pt;}
.x25{left:231.692607pt;}
.x1{left:260.674418pt;}
.x1c{left:300.601364pt;}
.x1d{left:302.737374pt;}
.x35{left:326.559490pt;}
.x38{left:332.295881pt;}
.x33{left:337.843701pt;}
.x26{left:351.151931pt;}
.x1e{left:354.303041pt;}
.x34{left:357.100751pt;}
.x37{left:362.342902pt;}
.x2a{left:389.990203pt;}
.x29{left:392.918228pt;}
.x28{left:399.318222pt;}
.x15{left:433.909011pt;}
.x36{left:436.593314pt;}
.x3{left:438.708054pt;}
.x14{left:440.587699pt;}
.x4{left:509.096408pt;}
.x2c{left:514.306776pt;}
.x5{left:544.364857pt;}
.x6{left:557.096410pt;}
.x1a{left:562.881125pt;}
.x1b{left:565.828757pt;}
.x24{left:583.365578pt;}
.x7{left:592.364859pt;}
.x23{left:600.314713pt;}
.xc{left:605.096409pt;}
.x1f{left:627.638044pt;}
.xd{left:640.364860pt;}
.x31{left:693.922113pt;}
.x2e{left:710.424893pt;}
.x39{left:730.257283pt;}
.x30{left:731.281466pt;}
.x21{left:735.342759pt;}
.x32{left:742.102062pt;}
.x22{left:745.006699pt;}
.x27{left:850.461577pt;}
.x16{left:858.426782pt;}
.x18{left:864.008403pt;}
.x17{left:871.114809pt;}
.x19{left:872.842144pt;}
}




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