
    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;}
.ff1{font-family:sans-serif;visibility:hidden;}
.ff2{font-family:sans-serif;visibility:hidden;}
.ff3{font-family:sans-serif;visibility:hidden;}
.ff4{font-family:sans-serif;visibility:hidden;}
.ff5{font-family:sans-serif;visibility:hidden;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:275.409230px;}
.ls2{letter-spacing:291.243860px;}
.ls0{letter-spacing:294.378646px;}
.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:-294.378646px;}
.ws4{word-spacing:-291.243860px;}
.wsb{word-spacing:-275.409230px;}
.ws3{word-spacing:0.000000px;}
.ws0{word-spacing:152.010000px;}
.ws9{word-spacing:194.078041px;}
.ws7{word-spacing:283.556314px;}
.wsa{word-spacing:352.407559px;}
.wsc{word-spacing:387.560996px;}
.ws8{word-spacing:423.518235px;}
.ws2{word-spacing:455.367661px;}
.ws5{word-spacing:469.009295px;}
.ws6{word-spacing:641.828571px;}
._2{margin-left:-294.378646px;}
._8{margin-left:-291.243860px;}
._e{margin-left:-275.409230px;}
._3{margin-left:-10.125000px;}
._5{margin-left:-8.812500px;}
._7{margin-left:-6.843750px;}
._1{margin-left:-4.312500px;}
._6{margin-left:-2.531250px;}
._0{margin-left:-1.031250px;}
._d{width:371.489434px;}
._b{width:404.440110px;}
._c{width:428.731309px;}
._f{width:444.806621px;}
._a{width:461.681985px;}
._4{width:512.613286px;}
._9{width:526.254920px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:42.000000px;}
.fs3{font-size:48.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y37{bottom:15.143812px;}
.y25{bottom:20.781562px;}
.y24{bottom:41.289375px;}
.y96{bottom:63.541386px;}
.y70{bottom:73.261200px;}
.y32{bottom:79.797188px;}
.y86{bottom:80.965500px;}
.y4e{bottom:86.636729px;}
.y2c{bottom:89.010090px;}
.y31{bottom:101.805000px;}
.y6f{bottom:105.593413px;}
.y95{bottom:117.639540px;}
.y30{bottom:123.812813px;}
.y4d{bottom:126.362122px;}
.y2b{bottom:128.370351px;}
.y85{bottom:131.712863px;}
.y6e{bottom:137.925625px;}
.y2f{bottom:145.820625px;}
.y4c{bottom:166.087515px;}
.y2a{bottom:167.730612px;}
.y2d{bottom:168.449486px;}
.y6d{bottom:170.257837px;}
.y94{bottom:171.737693px;}
.y84{bottom:182.460225px;}
.y6c{bottom:202.590050px;}
.y4b{bottom:205.812908px;}
.y29{bottom:207.090872px;}
.y93{bottom:225.835847px;}
.y83{bottom:233.207587px;}
.y6b{bottom:234.922262px;}
.y4a{bottom:245.538302px;}
.y28{bottom:246.451133px;}
.y74{bottom:259.633034px;}
.y6a{bottom:267.254475px;}
.y92{bottom:279.934000px;}
.y73{bottom:281.640847px;}
.y82{bottom:283.954950px;}
.y49{bottom:285.263695px;}
.y27{bottom:285.811393px;}
.y69{bottom:299.586687px;}
.y72{bottom:303.648659px;}
.y48{bottom:324.989088px;}
.y26{bottom:325.171654px;}
.y71{bottom:325.656472px;}
.y68{bottom:331.918899px;}
.y91{bottom:334.032154px;}
.y81{bottom:334.702312px;}
.y2e{bottom:353.664284px;}
.y90{bottom:370.066289px;}
.y63{bottom:379.786104px;}
.y47{bottom:386.322091px;}
.y80{bottom:387.490404px;}
.y43{bottom:393.161632px;}
.y1e{bottom:395.534994px;}
.y46{bottom:408.329903px;}
.y62{bottom:412.118316px;}
.y8f{bottom:424.164443px;}
.y45{bottom:430.337716px;}
.y42{bottom:432.887026px;}
.y1d{bottom:434.895254px;}
.y7f{bottom:438.237766px;}
.y61{bottom:444.450528px;}
.y44{bottom:452.345528px;}
.y41{bottom:472.612419px;}
.y1c{bottom:474.255515px;}
.y67{bottom:476.240014px;}
.y60{bottom:476.782741px;}
.y8e{bottom:478.262596px;}
.y7e{bottom:488.985128px;}
.y66{bottom:498.247827px;}
.y5f{bottom:509.114953px;}
.y40{bottom:512.337812px;}
.y1b{bottom:513.615775px;}
.y65{bottom:520.255639px;}
.y8d{bottom:532.360750px;}
.y7d{bottom:539.732490px;}
.y5e{bottom:541.447165px;}
.y64{bottom:542.263452px;}
.y3f{bottom:552.063205px;}
.y1a{bottom:552.976036px;}
.y23{bottom:566.157937px;}
.y5d{bottom:573.779378px;}
.y8c{bottom:586.458903px;}
.y22{bottom:588.165750px;}
.y7c{bottom:590.479853px;}
.y3e{bottom:591.788598px;}
.y19{bottom:592.336297px;}
.y5c{bottom:606.111590px;}
.y21{bottom:610.173562px;}
.y3d{bottom:631.513991px;}
.y18{bottom:631.696557px;}
.y20{bottom:632.181375px;}
.y5b{bottom:638.443803px;}
.y8b{bottom:640.557057px;}
.y7b{bottom:641.227215px;}
.y1f{bottom:660.189187px;}
.y8{bottom:693.471832px;}
.y7{bottom:710.257770px;}
.y6{bottom:727.043707px;}
.y5{bottom:743.829645px;}
.y4{bottom:760.615582px;}
.y3{bottom:777.401520px;}
.y2{bottom:794.187457px;}
.y1{bottom:810.973395px;}
.y11{bottom:834.988337px;}
.y50{bottom:837.938371px;}
.y10{bottom:855.496149px;}
.y4f{bottom:858.446184px;}
.y56{bottom:872.594774px;}
.y75{bottom:874.279207px;}
.ya{bottom:878.065745px;}
.y12{bottom:878.106386px;}
.y38{bottom:879.102558px;}
.y51{bottom:893.938115px;}
.y9{bottom:898.573557px;}
.y76{bottom:913.842434px;}
.yb{bottom:915.113062px;}
.y17{bottom:921.763300px;}
.y87{bottom:923.749151px;}
.y57{bottom:924.382417px;}
.y13{bottom:928.566424px;}
.ye{bottom:929.812914px;}
.y39{bottom:930.013493px;}
.y52{bottom:948.362400px;}
.y77{bottom:953.405662px;}
.yc{bottom:962.734312px;}
.y58{bottom:976.170060px;}
.y14{bottom:979.026462px;}
.y88{bottom:979.601636px;}
.y3a{bottom:980.924428px;}
.y78{bottom:992.968889px;}
.y53{bottom:1002.786686px;}
.yd{bottom:1010.355562px;}
.y59{bottom:1027.957703px;}
.y15{bottom:1029.486500px;}
.y3b{bottom:1031.835364px;}
.y79{bottom:1032.532116px;}
.y89{bottom:1035.454122px;}
.yf{bottom:1039.966334px;}
.y54{bottom:1057.210972px;}
.y7a{bottom:1072.095344px;}
.y5a{bottom:1079.745346px;}
.y16{bottom:1079.946538px;}
.y55{bottom:1080.093708px;}
.y3c{bottom:1082.746299px;}
.y8a{bottom:1091.306608px;}
.y36{bottom:1162.706062px;}
.y35{bottom:1186.218562px;}
.y34{bottom:1209.731063px;}
.y33{bottom:1242.995250px;}
.h3{height:39.018000px;}
.h5{height:44.592000px;}
.h2{height:55.740000px;}
.h4{height:78.036000px;}
.h0{height:1263.600000px;}
.h1{height:1263.750000px;}
.w1{width:896.250000px;}
.w0{width:896.400000px;}
.x0{left:0.000000px;}
.x1{left:13.446000px;}
.x14{left:17.928000px;}
.xa{left:26.166825px;}
.x9{left:35.284013px;}
.x11{left:41.405625px;}
.xc{left:50.522813px;}
.xb{left:60.061875px;}
.x18{left:62.471513px;}
.x7{left:69.631669px;}
.xf{left:119.504105px;}
.xe{left:145.140000px;}
.x8{left:174.066544px;}
.xd{left:376.098281px;}
.x12{left:384.430312px;}
.x5{left:398.516250px;}
.x4{left:407.633438px;}
.x17{left:417.172500px;}
.x10{left:446.820938px;}
.x6{left:470.610000px;}
.x16{left:550.841384px;}
.x19{left:606.845625px;}
.x3{left:617.747344px;}
.x2{left:632.477813px;}
.x13{left:659.275312px;}
.x15{left:766.217250px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:244.808204pt;}
.ls2{letter-spacing:258.883431pt;}
.ls0{letter-spacing:261.669908pt;}
.ws1{word-spacing:-261.669908pt;}
.ws4{word-spacing:-258.883431pt;}
.wsb{word-spacing:-244.808204pt;}
.ws3{word-spacing:0.000000pt;}
.ws0{word-spacing:135.120000pt;}
.ws9{word-spacing:172.513814pt;}
.ws7{word-spacing:252.050057pt;}
.wsa{word-spacing:313.251164pt;}
.wsc{word-spacing:344.498663pt;}
.ws8{word-spacing:376.460653pt;}
.ws2{word-spacing:404.771254pt;}
.ws5{word-spacing:416.897151pt;}
.ws6{word-spacing:570.514286pt;}
._2{margin-left:-261.669908pt;}
._8{margin-left:-258.883431pt;}
._e{margin-left:-244.808204pt;}
._3{margin-left:-9.000000pt;}
._5{margin-left:-7.833333pt;}
._7{margin-left:-6.083333pt;}
._1{margin-left:-3.833333pt;}
._6{margin-left:-2.250000pt;}
._0{margin-left:-0.916667pt;}
._d{width:330.212830pt;}
._b{width:359.502320pt;}
._c{width:381.094497pt;}
._f{width:395.383663pt;}
._a{width:410.383986pt;}
._4{width:455.656254pt;}
._9{width:467.782151pt;}
.fs1{font-size:37.333333pt;}
.fs3{font-size:42.666667pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y37{bottom:13.461167pt;}
.y25{bottom:18.472500pt;}
.y24{bottom:36.701667pt;}
.y96{bottom:56.481232pt;}
.y70{bottom:65.121067pt;}
.y32{bottom:70.930833pt;}
.y86{bottom:71.969334pt;}
.y4e{bottom:77.010426pt;}
.y2c{bottom:79.120080pt;}
.y31{bottom:90.493333pt;}
.y6f{bottom:93.860811pt;}
.y95{bottom:104.568480pt;}
.y30{bottom:110.055833pt;}
.y4d{bottom:112.321886pt;}
.y2b{bottom:114.106979pt;}
.y85{bottom:117.078100pt;}
.y6e{bottom:122.600556pt;}
.y2f{bottom:129.618333pt;}
.y4c{bottom:147.633347pt;}
.y2a{bottom:149.093877pt;}
.y2d{bottom:149.732876pt;}
.y6d{bottom:151.340300pt;}
.y94{bottom:152.655727pt;}
.y84{bottom:162.186867pt;}
.y6c{bottom:180.080044pt;}
.y4b{bottom:182.944808pt;}
.y29{bottom:184.080775pt;}
.y93{bottom:200.742975pt;}
.y83{bottom:207.295633pt;}
.y6b{bottom:208.819789pt;}
.y4a{bottom:218.256268pt;}
.y28{bottom:219.067674pt;}
.y74{bottom:230.784919pt;}
.y6a{bottom:237.559533pt;}
.y92{bottom:248.830222pt;}
.y73{bottom:250.347419pt;}
.y82{bottom:252.404400pt;}
.y49{bottom:253.567729pt;}
.y27{bottom:254.054572pt;}
.y69{bottom:266.299277pt;}
.y72{bottom:269.909919pt;}
.y48{bottom:288.879189pt;}
.y26{bottom:289.041470pt;}
.y71{bottom:289.472419pt;}
.y68{bottom:295.039022pt;}
.y91{bottom:296.917470pt;}
.y81{bottom:297.513166pt;}
.y2e{bottom:314.368253pt;}
.y90{bottom:328.947813pt;}
.y63{bottom:337.587648pt;}
.y47{bottom:343.397414pt;}
.y80{bottom:344.435914pt;}
.y43{bottom:349.477007pt;}
.y1e{bottom:351.586661pt;}
.y46{bottom:362.959914pt;}
.y62{bottom:366.327392pt;}
.y8f{bottom:377.035060pt;}
.y45{bottom:382.522414pt;}
.y42{bottom:384.788467pt;}
.y1d{bottom:386.573559pt;}
.y7f{bottom:389.544681pt;}
.y61{bottom:395.067136pt;}
.y44{bottom:402.084914pt;}
.y41{bottom:420.099928pt;}
.y1c{bottom:421.560458pt;}
.y67{bottom:423.324457pt;}
.y60{bottom:423.806881pt;}
.y8e{bottom:425.122308pt;}
.y7e{bottom:434.653447pt;}
.y66{bottom:442.886957pt;}
.y5f{bottom:452.546625pt;}
.y40{bottom:455.411388pt;}
.y1b{bottom:456.547356pt;}
.y65{bottom:462.449457pt;}
.y8d{bottom:473.209555pt;}
.y7d{bottom:479.762214pt;}
.y5e{bottom:481.286369pt;}
.y64{bottom:482.011957pt;}
.y3f{bottom:490.722849pt;}
.y1a{bottom:491.534254pt;}
.y23{bottom:503.251500pt;}
.y5d{bottom:510.026114pt;}
.y8c{bottom:521.296803pt;}
.y22{bottom:522.814000pt;}
.y7c{bottom:524.870980pt;}
.y3e{bottom:526.034309pt;}
.y19{bottom:526.521153pt;}
.y5c{bottom:538.765858pt;}
.y21{bottom:542.376500pt;}
.y3d{bottom:561.345770pt;}
.y18{bottom:561.508051pt;}
.y20{bottom:561.939000pt;}
.y5b{bottom:567.505602pt;}
.y8b{bottom:569.384050pt;}
.y7b{bottom:569.979747pt;}
.y1f{bottom:586.834833pt;}
.y8{bottom:616.419406pt;}
.y7{bottom:631.340240pt;}
.y6{bottom:646.261073pt;}
.y5{bottom:661.181906pt;}
.y4{bottom:676.102740pt;}
.y3{bottom:691.023573pt;}
.y2{bottom:705.944406pt;}
.y1{bottom:720.865240pt;}
.y11{bottom:742.211855pt;}
.y50{bottom:744.834108pt;}
.y10{bottom:760.441022pt;}
.y4f{bottom:763.063274pt;}
.y56{bottom:775.639799pt;}
.y75{bottom:777.137073pt;}
.ya{bottom:780.502884pt;}
.y12{bottom:780.539010pt;}
.y38{bottom:781.424496pt;}
.y51{bottom:794.611657pt;}
.y9{bottom:798.732051pt;}
.y76{bottom:812.304386pt;}
.yb{bottom:813.433833pt;}
.y17{bottom:819.345156pt;}
.y87{bottom:821.110356pt;}
.y57{bottom:821.673260pt;}
.y13{bottom:825.392377pt;}
.ye{bottom:826.500368pt;}
.y39{bottom:826.678660pt;}
.y52{bottom:842.988800pt;}
.y77{bottom:847.471699pt;}
.yc{bottom:855.763833pt;}
.y58{bottom:867.706720pt;}
.y14{bottom:870.245744pt;}
.y88{bottom:870.757010pt;}
.y3a{bottom:871.932825pt;}
.y78{bottom:882.639012pt;}
.y53{bottom:891.365943pt;}
.yd{bottom:898.093833pt;}
.y59{bottom:913.740180pt;}
.y15{bottom:915.099111pt;}
.y3b{bottom:917.186990pt;}
.y79{bottom:917.806326pt;}
.y89{bottom:920.403664pt;}
.yf{bottom:924.414519pt;}
.y54{bottom:939.743086pt;}
.y7a{bottom:952.973639pt;}
.y5a{bottom:959.773641pt;}
.y16{bottom:959.952478pt;}
.y55{bottom:960.083296pt;}
.y3c{bottom:962.441155pt;}
.y8a{bottom:970.050318pt;}
.y36{bottom:1033.516500pt;}
.y35{bottom:1054.416500pt;}
.y34{bottom:1075.316500pt;}
.y33{bottom:1104.884667pt;}
.h3{height:34.682667pt;}
.h5{height:39.637333pt;}
.h2{height:49.546667pt;}
.h4{height:69.365333pt;}
.h0{height:1123.200000pt;}
.h1{height:1123.333333pt;}
.w1{width:796.666667pt;}
.w0{width:796.800000pt;}
.x0{left:0.000000pt;}
.x1{left:11.952000pt;}
.x14{left:15.936000pt;}
.xa{left:23.259400pt;}
.x9{left:31.363567pt;}
.x11{left:36.805000pt;}
.xc{left:44.909167pt;}
.xb{left:53.388333pt;}
.x18{left:55.530233pt;}
.x7{left:61.894817pt;}
.xf{left:106.225871pt;}
.xe{left:129.013333pt;}
.x8{left:154.725817pt;}
.xd{left:334.309583pt;}
.x12{left:341.715833pt;}
.x5{left:354.236667pt;}
.x4{left:362.340833pt;}
.x17{left:370.820000pt;}
.x10{left:397.174167pt;}
.x6{left:418.320000pt;}
.x16{left:489.636786pt;}
.x19{left:539.418333pt;}
.x3{left:549.108750pt;}
.x2{left:562.202500pt;}
.x13{left:586.022500pt;}
.x15{left:681.082000pt;}
}




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