
    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_65b991b741ed88be9bee20cc.woff2')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_1e8fb8801afa21374ba641c6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.952148;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_16e2ab3538232bfe09fd3319.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_56fb88cf1be623929674062e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.960000;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);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:8.586000px;}
.ls2{letter-spacing:875.069000px;}
.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:-21.129671px;}
.ws2{word-spacing:-14.958000px;}
.ws6{word-spacing:-14.210587px;}
.ws0{word-spacing:-11.633594px;}
.ws5{word-spacing:0.000000px;}
.ws4{word-spacing:280.512000px;}
.ws3{word-spacing:357.457320px;}
._16{margin-left:-9.198674px;}
._e{margin-left:-7.785008px;}
._4{margin-left:-4.414676px;}
._18{margin-left:-3.188496px;}
._3{margin-left:-2.111440px;}
._0{margin-left:-1.007965px;}
._1{width:1.133960px;}
._2{width:2.603909px;}
._a{width:3.660328px;}
._c{width:4.762525px;}
._9{width:5.778000px;}
._b{width:6.843452px;}
._8{width:7.943440px;}
._6{width:9.707159px;}
._d{width:11.503256px;}
._f{width:12.528774px;}
._10{width:13.615629px;}
._7{width:16.815637px;}
._5{width:19.268938px;}
._14{width:21.224226px;}
._15{width:115.830040px;}
._17{width:263.441644px;}
._11{width:385.405884px;}
._12{width:407.929320px;}
._13{width:504.097884px;}
.fc3{color:rgb(15,39,83);}
.fc1{color:rgb(27,138,174);}
.fc5{color:rgb(60,60,60);}
.fc4{color:rgb(83,83,83);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs4{font-size:37.801758px;}
.fs0{font-size:41.998536px;}
.fs3{font-size:48.001464px;}
.fs7{font-size:51.301758px;}
.fs1{font-size:54.000000px;}
.fs5{font-size:70.198242px;}
.fs2{font-size:91.801758px;}
.y0{bottom:0.000000px;}
.y70{bottom:4.528782px;}
.y6f{bottom:22.487762px;}
.y6e{bottom:40.440889px;}
.y26{bottom:46.734370px;}
.y6d{bottom:58.394016px;}
.y25{bottom:59.015622px;}
.y24{bottom:71.302734px;}
.y6c{bottom:76.347141px;}
.y6b{bottom:94.306121px;}
.y6a{bottom:112.259248px;}
.y4f{bottom:124.329960px;}
.y69{bottom:130.212375px;}
.y21{bottom:136.529280px;}
.y4e{bottom:143.232309px;}
.y20{bottom:155.431629px;}
.y4d{bottom:162.128799px;}
.y66{bottom:167.683593px;}
.y68{bottom:167.724093px;}
.y1f{bottom:174.328119px;}
.y4c{bottom:181.031148px;}
.y1e{bottom:193.230458px;}
.y65{bottom:196.429688px;}
.y4b{bottom:199.927638px;}
.y1d{bottom:212.132807px;}
.y4a{bottom:218.829987px;}
.y1c{bottom:231.029280px;}
.y49{bottom:237.732336px;}
.y64{bottom:252.041016px;}
.y48{bottom:256.628826px;}
.y1b{bottom:263.431629px;}
.y47{bottom:275.531175px;}
.y1a{bottom:282.328119px;}
.y63{bottom:282.697266px;}
.y46{bottom:294.427665px;}
.y19{bottom:301.230447px;}
.y45{bottom:313.330014px;}
.y18{bottom:320.132796px;}
.y44{bottom:332.232363px;}
.y62{bottom:338.302729px;}
.y17{bottom:339.029286px;}
.y43{bottom:351.128853px;}
.y61{bottom:357.205078px;}
.y16{bottom:357.931635px;}
.y42{bottom:370.031202px;}
.y15{bottom:376.828125px;}
.y60{bottom:387.861329px;}
.y41{bottom:388.927692px;}
.y14{bottom:407.484375px;}
.y40{bottom:407.830041px;}
.y3f{bottom:426.732390px;}
.y5f{bottom:443.472651px;}
.y3e{bottom:445.628880px;}
.y5e{bottom:462.369141px;}
.y3d{bottom:464.531229px;}
.y13{bottom:476.583983px;}
.y5d{bottom:493.025391px;}
.y12{bottom:493.382810px;}
.y3c{bottom:496.927719px;}
.y11{bottom:510.187495px;}
.y3b{bottom:529.330068px;}
.y10{bottom:531.486328px;}
.y3a{bottom:548.232417px;}
.y5c{bottom:548.636718px;}
.yf{bottom:557.285157px;}
.y39{bottom:567.128907px;}
.y5b{bottom:579.292968px;}
.y38{bottom:586.031239px;}
.y37{bottom:604.927729px;}
.ye{bottom:607.541039px;}
.yd{bottom:620.771503px;}
.y36{bottom:623.830068px;}
.yc{bottom:634.001967px;}
.y5a{bottom:634.898438px;}
.y35{bottom:642.732417px;}
.yb{bottom:647.232431px;}
.ya{bottom:660.457036px;}
.y34{bottom:661.628885px;}
.y59{bottom:665.554688px;}
.y9{bottom:673.687500px;}
.y33{bottom:680.531233px;}
.y8{bottom:694.646484px;}
.y23{bottom:699.146481px;}
.y32{bottom:699.427723px;}
.y7{bottom:713.847657px;}
.y31{bottom:718.330073px;}
.y22{bottom:718.347657px;}
.y58{bottom:721.166010px;}
.y30{bottom:737.232405px;}
.y57{bottom:740.068359px;}
.y67{bottom:743.397000px;}
.y2f{bottom:756.128895px;}
.y6{bottom:756.158206px;}
.y56{bottom:770.718750px;}
.y2e{bottom:775.031244px;}
.y5{bottom:793.710931px;}
.y2d{bottom:793.927707px;}
.y2c{bottom:812.830056px;}
.y55{bottom:826.330052px;}
.y4{bottom:831.269532px;}
.y2b{bottom:831.732405px;}
.y54{bottom:845.232401px;}
.y2a{bottom:850.628895px;}
.y53{bottom:864.128891px;}
.y52{bottom:883.031239px;}
.y29{bottom:883.031244px;}
.y3{bottom:899.378907px;}
.y51{bottom:901.927730px;}
.y28{bottom:901.927734px;}
.y27{bottom:920.830079px;}
.y2{bottom:939.462894px;}
.y1{bottom:955.212891px;}
.y50{bottom:974.730470px;}
.h9{height:26.244141px;}
.h5{height:27.557629px;}
.ha{height:28.048904px;}
.h1{height:30.617097px;}
.h4{height:34.993255px;}
.hd{height:35.617086px;}
.hf{height:37.399182px;}
.h2{height:39.366211px;}
.h8{height:39.366277px;}
.h7{height:39.366295px;}
.hc{height:39.366301px;}
.hb{height:39.366319px;}
.h6{height:52.443023px;}
.h3{height:68.582368px;}
.he{height:191.566500px;}
.h0{height:1020.000000px;}
.w1{width:544.254000px;}
.w0{width:700.500000px;}
.x0{left:0.000000px;}
.xb{left:11.584593px;}
.xc{left:45.000609px;}
.x3{left:78.662109px;}
.x8{left:83.162100px;}
.x5{left:94.412109px;}
.x4{left:95.537109px;}
.x9{left:123.662100px;}
.xa{left:151.101562px;}
.x6{left:181.482421px;}
.x7{left:187.787119px;}
.x1{left:205.335938px;}
.x2{left:288.351562px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:7.632000pt;}
.ls2{letter-spacing:777.839111pt;}
.ws1{word-spacing:-18.781930pt;}
.ws2{word-spacing:-13.296000pt;}
.ws6{word-spacing:-12.631633pt;}
.ws0{word-spacing:-10.340973pt;}
.ws5{word-spacing:0.000000pt;}
.ws4{word-spacing:249.344000pt;}
.ws3{word-spacing:317.739840pt;}
._16{margin-left:-8.176599pt;}
._e{margin-left:-6.920007pt;}
._4{margin-left:-3.924156pt;}
._18{margin-left:-2.834219pt;}
._3{margin-left:-1.876836pt;}
._0{margin-left:-0.895969pt;}
._1{width:1.007965pt;}
._2{width:2.314586pt;}
._a{width:3.253625pt;}
._c{width:4.233356pt;}
._9{width:5.136000pt;}
._b{width:6.083069pt;}
._8{width:7.060836pt;}
._6{width:8.628586pt;}
._d{width:10.225117pt;}
._f{width:11.136688pt;}
._10{width:12.102782pt;}
._7{width:14.947233pt;}
._5{width:17.127945pt;}
._14{width:18.865979pt;}
._15{width:102.960035pt;}
._17{width:234.170350pt;}
._11{width:342.583008pt;}
._12{width:362.603840pt;}
._13{width:448.087008pt;}
.fs6{font-size:32.000000pt;}
.fs4{font-size:33.601563pt;}
.fs0{font-size:37.332032pt;}
.fs3{font-size:42.667968pt;}
.fs7{font-size:45.601563pt;}
.fs1{font-size:48.000000pt;}
.fs5{font-size:62.398437pt;}
.fs2{font-size:81.601563pt;}
.y0{bottom:0.000000pt;}
.y70{bottom:4.025584pt;}
.y6f{bottom:19.989121pt;}
.y6e{bottom:35.947457pt;}
.y26{bottom:41.541662pt;}
.y6d{bottom:51.905792pt;}
.y25{bottom:52.458331pt;}
.y24{bottom:63.380208pt;}
.y6c{bottom:67.864125pt;}
.y6b{bottom:83.827663pt;}
.y6a{bottom:99.785998pt;}
.y4f{bottom:110.515520pt;}
.y69{bottom:115.744333pt;}
.y21{bottom:121.359360pt;}
.y4e{bottom:127.317608pt;}
.y20{bottom:138.161448pt;}
.y4d{bottom:144.114488pt;}
.y66{bottom:149.052083pt;}
.y68{bottom:149.088083pt;}
.y1f{bottom:154.958328pt;}
.y4c{bottom:160.916576pt;}
.y1e{bottom:171.760407pt;}
.y65{bottom:174.604167pt;}
.y4b{bottom:177.713456pt;}
.y1d{bottom:188.562495pt;}
.y4a{bottom:194.515544pt;}
.y1c{bottom:205.359360pt;}
.y49{bottom:211.317632pt;}
.y64{bottom:224.036459pt;}
.y48{bottom:228.114512pt;}
.y1b{bottom:234.161448pt;}
.y47{bottom:244.916600pt;}
.y1a{bottom:250.958328pt;}
.y63{bottom:251.286459pt;}
.y46{bottom:261.713480pt;}
.y19{bottom:267.760397pt;}
.y45{bottom:278.515568pt;}
.y18{bottom:284.562485pt;}
.y44{bottom:295.317656pt;}
.y62{bottom:300.713537pt;}
.y17{bottom:301.359365pt;}
.y43{bottom:312.114536pt;}
.y61{bottom:317.515625pt;}
.y16{bottom:318.161453pt;}
.y42{bottom:328.916624pt;}
.y15{bottom:334.958333pt;}
.y60{bottom:344.765625pt;}
.y41{bottom:345.713504pt;}
.y14{bottom:362.208333pt;}
.y40{bottom:362.515592pt;}
.y3f{bottom:379.317680pt;}
.y5f{bottom:394.197912pt;}
.y3e{bottom:396.114560pt;}
.y5e{bottom:410.994792pt;}
.y3d{bottom:412.916648pt;}
.y13{bottom:423.630207pt;}
.y5d{bottom:438.244792pt;}
.y12{bottom:438.562497pt;}
.y3c{bottom:441.713528pt;}
.y11{bottom:453.499995pt;}
.y3b{bottom:470.515616pt;}
.y10{bottom:472.432291pt;}
.y3a{bottom:487.317704pt;}
.y5c{bottom:487.677083pt;}
.yf{bottom:495.364584pt;}
.y39{bottom:504.114584pt;}
.y5b{bottom:514.927083pt;}
.y38{bottom:520.916657pt;}
.y37{bottom:537.713537pt;}
.ye{bottom:540.036479pt;}
.yd{bottom:551.796891pt;}
.y36{bottom:554.515616pt;}
.yc{bottom:563.557304pt;}
.y5a{bottom:564.354167pt;}
.y35{bottom:571.317704pt;}
.yb{bottom:575.317717pt;}
.ya{bottom:587.072921pt;}
.y34{bottom:588.114564pt;}
.y59{bottom:591.604167pt;}
.y9{bottom:598.833333pt;}
.y33{bottom:604.916652pt;}
.y8{bottom:617.463541pt;}
.y23{bottom:621.463539pt;}
.y32{bottom:621.713532pt;}
.y7{bottom:634.531251pt;}
.y31{bottom:638.515620pt;}
.y22{bottom:638.531251pt;}
.y58{bottom:641.036453pt;}
.y30{bottom:655.317693pt;}
.y57{bottom:657.838541pt;}
.y67{bottom:660.797333pt;}
.y2f{bottom:672.114573pt;}
.y6{bottom:672.140627pt;}
.y56{bottom:685.083333pt;}
.y2e{bottom:688.916661pt;}
.y5{bottom:705.520828pt;}
.y2d{bottom:705.713517pt;}
.y2c{bottom:722.515605pt;}
.y55{bottom:734.515601pt;}
.y4{bottom:738.906251pt;}
.y2b{bottom:739.317693pt;}
.y54{bottom:751.317689pt;}
.y2a{bottom:756.114573pt;}
.y53{bottom:768.114569pt;}
.y52{bottom:784.916657pt;}
.y29{bottom:784.916661pt;}
.y3{bottom:799.447917pt;}
.y51{bottom:801.713537pt;}
.y28{bottom:801.713541pt;}
.y27{bottom:818.515625pt;}
.y2{bottom:835.078128pt;}
.y1{bottom:849.078125pt;}
.y50{bottom:866.427084pt;}
.h9{height:23.328125pt;}
.h5{height:24.495670pt;}
.ha{height:24.932359pt;}
.h1{height:27.215197pt;}
.h4{height:31.105115pt;}
.hd{height:31.659632pt;}
.hf{height:33.243717pt;}
.h2{height:34.992188pt;}
.h8{height:34.992246pt;}
.h7{height:34.992262pt;}
.hc{height:34.992267pt;}
.hb{height:34.992284pt;}
.h6{height:46.616020pt;}
.h3{height:60.962105pt;}
.he{height:170.281333pt;}
.h0{height:906.666667pt;}
.w1{width:483.781333pt;}
.w0{width:622.666667pt;}
.x0{left:0.000000pt;}
.xb{left:10.297416pt;}
.xc{left:40.000541pt;}
.x3{left:69.921875pt;}
.x8{left:73.921867pt;}
.x5{left:83.921875pt;}
.x4{left:84.921875pt;}
.x9{left:109.921867pt;}
.xa{left:134.312500pt;}
.x6{left:161.317708pt;}
.x7{left:166.921884pt;}
.x1{left:182.520833pt;}
.x2{left:256.312500pt;}
}




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