
    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_db9579d8f18aeaacf9dd15e0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_596a91378c088984ecd73e4b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.693359;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_bc0304113604562dc3c3ca00.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.095703;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;}
.m2{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.019831px;}
.ls1{letter-spacing:6.461405px;}
.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:-18.000014px;}
.ws2{word-spacing:-16.560013px;}
.ws0{word-spacing:0.000000px;}
._c{margin-left:-2.711244px;}
._1{margin-left:-1.321174px;}
._0{width:1.684646px;}
._6{width:2.823250px;}
._4{width:4.228936px;}
._5{width:5.301927px;}
._2{width:7.278669px;}
._3{width:8.507545px;}
._7{width:9.698394px;}
._9{width:11.399209px;}
._8{width:12.762487px;}
._d{width:14.008758px;}
._e{width:15.330073px;}
._a{width:16.724486px;}
._b{width:19.153218px;}
._f{width:226.476906px;}
._16{width:259.353341px;}
._13{width:272.105066px;}
._14{width:370.155252px;}
._17{width:371.180882px;}
._10{width:372.728108px;}
._12{width:373.864265px;}
._11{width:375.305168px;}
._15{width:384.942768px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:59.760048px;}
.fs4{font-size:66.240053px;}
.fs0{font-size:72.000058px;}
.fs2{font-size:84.240067px;}
.fs1{font-size:95.760077px;}
.y0{bottom:0.000000px;}
.y2{bottom:57.721546px;}
.y31{bottom:89.580972px;}
.y5d{bottom:100.200980px;}
.y30{bottom:110.280988px;}
.y5c{bottom:118.201595px;}
.y5b{bottom:136.201609px;}
.y2f{bottom:140.161612px;}
.y5a{bottom:162.481630px;}
.y2e{bottom:173.281639px;}
.y83{bottom:176.521641px;}
.y59{bottom:189.481652px;}
.y82{bottom:195.421656px;}
.y2d{bottom:206.221665px;}
.y58{bottom:210.181668px;}
.y81{bottom:214.501672px;}
.y2c{bottom:226.921682px;}
.y57{bottom:239.881692px;}
.y80{bottom:242.401694px;}
.y2b{bottom:247.621698px;}
.y56{bottom:260.581708px;}
.y7f{bottom:261.481709px;}
.y2a{bottom:268.321715px;}
.y55{bottom:281.281725px;}
.y29{bottom:289.021731px;}
.y7e{bottom:289.381732px;}
.y54{bottom:301.981742px;}
.y7d{bottom:308.281747px;}
.y28{bottom:309.721748px;}
.y7c{bottom:327.361762px;}
.y27{bottom:330.421764px;}
.y53{bottom:331.681765px;}
.y26{bottom:351.121781px;}
.y52{bottom:352.381782px;}
.y7b{bottom:355.261784px;}
.y25{bottom:371.821797px;}
.y7a{bottom:374.341799px;}
.y51{bottom:382.081806px;}
.y24{bottom:392.521814px;}
.y79{bottom:402.241822px;}
.y50{bottom:402.781822px;}
.y78{bottom:421.141837px;}
.y23{bottom:422.221838px;}
.y4f{bottom:432.481846px;}
.y22{bottom:442.921854px;}
.y77{bottom:449.221859px;}
.y4e{bottom:462.181870px;}
.y21{bottom:463.621871px;}
.y76{bottom:468.121874px;}
.y20{bottom:484.321887px;}
.y75{bottom:487.201890px;}
.y4d{bottom:491.881894px;}
.y1f{bottom:505.021904px;}
.y74{bottom:515.101912px;}
.y4c{bottom:521.581917px;}
.y1e{bottom:525.721921px;}
.y73{bottom:534.001927px;}
.y1d{bottom:546.421937px;}
.y4b{bottom:551.281941px;}
.y72{bottom:553.081942px;}
.y1c{bottom:567.121954px;}
.y4a{bottom:571.801957px;}
.y71{bottom:581.701965px;}
.y1b{bottom:587.821970px;}
.y49{bottom:601.501981px;}
.y70{bottom:614.821992px;}
.y1a{bottom:617.701994px;}
.y48{bottom:622.201998px;}
.y19{bottom:641.642013px;}
.y47{bottom:642.902014px;}
.y6f{bottom:647.762018px;}
.y6e{bottom:668.462035px;}
.y18{bottom:671.342037px;}
.y46{bottom:672.962038px;}
.y6d{bottom:698.342059px;}
.y17{bottom:701.042061px;}
.y45{bottom:706.082065px;}
.y16{bottom:721.742077px;}
.y6c{bottom:731.462085px;}
.y44{bottom:739.022091px;}
.y15{bottom:742.442094px;}
.y43{bottom:759.722108px;}
.y14{bottom:763.142111px;}
.y6b{bottom:764.402112px;}
.y42{bottom:780.422124px;}
.y13{bottom:783.842127px;}
.y6a{bottom:785.102128px;}
.y41{bottom:801.122141px;}
.y12{bottom:804.542144px;}
.y69{bottom:805.802145px;}
.y11{bottom:825.242160px;}
.y68{bottom:826.502161px;}
.y40{bottom:830.822165px;}
.y10{bottom:845.942177px;}
.y67{bottom:847.202178px;}
.y3f{bottom:851.522181px;}
.yf{bottom:866.642193px;}
.y66{bottom:867.902194px;}
.y3e{bottom:872.222198px;}
.ye{bottom:887.342210px;}
.y65{bottom:888.602211px;}
.y3d{bottom:892.922214px;}
.yd{bottom:908.042226px;}
.y64{bottom:909.302227px;}
.y3c{bottom:913.622231px;}
.yc{bottom:928.742243px;}
.y63{bottom:930.002244px;}
.y3b{bottom:934.322247px;}
.yb{bottom:949.442260px;}
.y3a{bottom:955.022264px;}
.y62{bottom:959.882268px;}
.ya{bottom:970.142276px;}
.y39{bottom:975.722281px;}
.y9{bottom:990.842293px;}
.y61{bottom:993.182295px;}
.y38{bottom:996.422297px;}
.y8{bottom:1011.542309px;}
.y37{bottom:1017.122314px;}
.y60{bottom:1026.122321px;}
.y7{bottom:1032.242326px;}
.y36{bottom:1037.822330px;}
.y5f{bottom:1046.822337px;}
.y6{bottom:1053.482343px;}
.y35{bottom:1058.522347px;}
.y5e{bottom:1067.522354px;}
.y5{bottom:1086.782369px;}
.y34{bottom:1088.222371px;}
.y33{bottom:1108.922387px;}
.y4{bottom:1114.502392px;}
.y32{bottom:1129.622404px;}
.y3{bottom:1150.322420px;}
.y1{bottom:1166.522433px;}
.h6{height:41.522729px;}
.h7{height:46.025193px;}
.h1{height:50.027384px;}
.h5{height:57.092389px;}
.h8{height:58.283484px;}
.h4{height:63.351613px;}
.h2{height:64.899896px;}
.h3{height:74.121387px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x2{left:54.179955px;}
.x3{left:59.940048px;}
.x8{left:87.300721px;}
.x5{left:90.169722px;}
.xa{left:93.960075px;}
.x9{left:97.020727px;}
.x6{left:152.640122px;}
.xb{left:175.500140px;}
.x4{left:356.940142px;}
.x7{left:446.580530px;}
.x1{left:839.160671px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.017628pt;}
.ls1{letter-spacing:5.743471pt;}
.ws1{word-spacing:-16.000013pt;}
.ws2{word-spacing:-14.720012pt;}
.ws0{word-spacing:0.000000pt;}
._c{margin-left:-2.409994pt;}
._1{margin-left:-1.174377pt;}
._0{width:1.497464pt;}
._6{width:2.509555pt;}
._4{width:3.759054pt;}
._5{width:4.712824pt;}
._2{width:6.469928pt;}
._3{width:7.562262pt;}
._7{width:8.620794pt;}
._9{width:10.132630pt;}
._8{width:11.344433pt;}
._d{width:12.452229pt;}
._e{width:13.626732pt;}
._a{width:14.866210pt;}
._b{width:17.025083pt;}
._f{width:201.312805pt;}
._16{width:230.536303pt;}
._13{width:241.871170pt;}
._14{width:329.026891pt;}
._17{width:329.938561pt;}
._10{width:331.313874pt;}
._12{width:332.323791pt;}
._11{width:333.604593pt;}
._15{width:342.171350pt;}
.fs3{font-size:53.120042pt;}
.fs4{font-size:58.880047pt;}
.fs0{font-size:64.000051pt;}
.fs2{font-size:74.880060pt;}
.fs1{font-size:85.120068pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:51.308041pt;}
.y31{bottom:79.627530pt;}
.y5d{bottom:89.067538pt;}
.y30{bottom:98.027545pt;}
.y5c{bottom:105.068084pt;}
.y5b{bottom:121.068097pt;}
.y2f{bottom:124.588100pt;}
.y5a{bottom:144.428116pt;}
.y2e{bottom:154.028123pt;}
.y83{bottom:156.908126pt;}
.y59{bottom:168.428135pt;}
.y82{bottom:173.708139pt;}
.y2d{bottom:183.308147pt;}
.y58{bottom:186.828149pt;}
.y81{bottom:190.668153pt;}
.y2c{bottom:201.708161pt;}
.y57{bottom:213.228171pt;}
.y80{bottom:215.468172pt;}
.y2b{bottom:220.108176pt;}
.y56{bottom:231.628185pt;}
.y7f{bottom:232.428186pt;}
.y2a{bottom:238.508191pt;}
.y55{bottom:250.028200pt;}
.y29{bottom:256.908206pt;}
.y7e{bottom:257.228206pt;}
.y54{bottom:268.428215pt;}
.y7d{bottom:274.028219pt;}
.y28{bottom:275.308220pt;}
.y7c{bottom:290.988233pt;}
.y27{bottom:293.708235pt;}
.y53{bottom:294.828236pt;}
.y26{bottom:312.108250pt;}
.y52{bottom:313.228251pt;}
.y7b{bottom:315.788253pt;}
.y25{bottom:330.508264pt;}
.y7a{bottom:332.748266pt;}
.y51{bottom:339.628272pt;}
.y24{bottom:348.908279pt;}
.y79{bottom:357.548286pt;}
.y50{bottom:358.028286pt;}
.y78{bottom:374.348299pt;}
.y23{bottom:375.308300pt;}
.y4f{bottom:384.428308pt;}
.y22{bottom:393.708315pt;}
.y77{bottom:399.308319pt;}
.y4e{bottom:410.828329pt;}
.y21{bottom:412.108330pt;}
.y76{bottom:416.108333pt;}
.y20{bottom:430.508344pt;}
.y75{bottom:433.068346pt;}
.y4d{bottom:437.228350pt;}
.y1f{bottom:448.908359pt;}
.y74{bottom:457.868366pt;}
.y4c{bottom:463.628371pt;}
.y1e{bottom:467.308374pt;}
.y73{bottom:474.668380pt;}
.y1d{bottom:485.708389pt;}
.y4b{bottom:490.028392pt;}
.y72{bottom:491.628393pt;}
.y1c{bottom:504.108403pt;}
.y4a{bottom:508.268407pt;}
.y71{bottom:517.068414pt;}
.y1b{bottom:522.508418pt;}
.y49{bottom:534.668428pt;}
.y70{bottom:546.508437pt;}
.y1a{bottom:549.068439pt;}
.y48{bottom:553.068442pt;}
.y19{bottom:570.348456pt;}
.y47{bottom:571.468457pt;}
.y6f{bottom:575.788461pt;}
.y6e{bottom:594.188475pt;}
.y18{bottom:596.748477pt;}
.y46{bottom:598.188479pt;}
.y6d{bottom:620.748497pt;}
.y17{bottom:623.148499pt;}
.y45{bottom:627.628502pt;}
.y16{bottom:641.548513pt;}
.y6c{bottom:650.188520pt;}
.y44{bottom:656.908526pt;}
.y15{bottom:659.948528pt;}
.y43{bottom:675.308540pt;}
.y14{bottom:678.348543pt;}
.y6b{bottom:679.468544pt;}
.y42{bottom:693.708555pt;}
.y13{bottom:696.748557pt;}
.y6a{bottom:697.868558pt;}
.y41{bottom:712.108570pt;}
.y12{bottom:715.148572pt;}
.y69{bottom:716.268573pt;}
.y11{bottom:733.548587pt;}
.y68{bottom:734.668588pt;}
.y40{bottom:738.508591pt;}
.y10{bottom:751.948602pt;}
.y67{bottom:753.068602pt;}
.y3f{bottom:756.908606pt;}
.yf{bottom:770.348616pt;}
.y66{bottom:771.468617pt;}
.y3e{bottom:775.308620pt;}
.ye{bottom:788.748631pt;}
.y65{bottom:789.868632pt;}
.y3d{bottom:793.708635pt;}
.yd{bottom:807.148646pt;}
.y64{bottom:808.268647pt;}
.y3c{bottom:812.108650pt;}
.yc{bottom:825.548660pt;}
.y63{bottom:826.668661pt;}
.y3b{bottom:830.508664pt;}
.yb{bottom:843.948675pt;}
.y3a{bottom:848.908679pt;}
.y62{bottom:853.228683pt;}
.ya{bottom:862.348690pt;}
.y39{bottom:867.308694pt;}
.y9{bottom:880.748705pt;}
.y61{bottom:882.828706pt;}
.y38{bottom:885.708709pt;}
.y8{bottom:899.148719pt;}
.y37{bottom:904.108723pt;}
.y60{bottom:912.108730pt;}
.y7{bottom:917.548734pt;}
.y36{bottom:922.508738pt;}
.y5f{bottom:930.508744pt;}
.y6{bottom:936.428749pt;}
.y35{bottom:940.908753pt;}
.y5e{bottom:948.908759pt;}
.y5{bottom:966.028773pt;}
.y34{bottom:967.308774pt;}
.y33{bottom:985.708789pt;}
.y4{bottom:990.668793pt;}
.y32{bottom:1004.108803pt;}
.y3{bottom:1022.508818pt;}
.y1{bottom:1036.908830pt;}
.h6{height:36.909092pt;}
.h7{height:40.911283pt;}
.h1{height:44.468786pt;}
.h5{height:50.748791pt;}
.h8{height:51.807541pt;}
.h4{height:56.312545pt;}
.h2{height:57.688796pt;}
.h3{height:65.885678pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2{left:48.159960pt;}
.x3{left:53.280043pt;}
.x8{left:77.600641pt;}
.x5{left:80.150864pt;}
.xa{left:83.520067pt;}
.x9{left:86.240646pt;}
.x6{left:135.680109pt;}
.xb{left:156.000125pt;}
.x4{left:317.280126pt;}
.x7{left:396.960471pt;}
.x1{left:745.920597pt;}
}




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