
    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_ef7faf3bbeafac53cff5444a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.106934;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_33a7758f78f50bd376e03254.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_24b313711f18bc5c8435b537.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.895996;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_ba5969e4fc128a4934e04258.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.935547;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;}
.m1{transform:matrix(0.249948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249948,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-18.713993px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.149934px;}
.ls2{letter-spacing:15.993097px;}
.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;}
}
.ws4{word-spacing:-18.413045px;}
.ws0{word-spacing:-16.811765px;}
.ws5{word-spacing:-15.210703px;}
.ws2{word-spacing:-0.011974px;}
.ws3{word-spacing:0.000000px;}
.ws1{word-spacing:0.016754px;}
.ws7{word-spacing:2.652710px;}
.ws6{word-spacing:45.856263px;}
._3{margin-left:-2.358616px;}
._0{margin-left:-1.027778px;}
._2{width:1.014243px;}
._4{width:2.131448px;}
._b{width:3.502260px;}
._5{width:5.142094px;}
._6{width:6.229992px;}
._7{width:7.278930px;}
._26{width:9.220376px;}
._28{width:10.266179px;}
._11{width:11.326278px;}
._24{width:12.587933px;}
._1e{width:13.975735px;}
._8{width:15.541739px;}
._1f{width:17.367542px;}
._10{width:20.209788px;}
._c{width:21.267420px;}
._1a{width:22.565015px;}
._f{width:23.580237px;}
._27{width:24.765090px;}
._9{width:28.090491px;}
._1b{width:29.365020px;}
._14{width:30.481787px;}
._1c{width:32.203300px;}
._e{width:33.402650px;}
._d{width:34.905750px;}
._25{width:36.495069px;}
._20{width:37.754362px;}
._19{width:40.403566px;}
._18{width:41.529688px;}
._2d{width:42.663949px;}
._33{width:43.814868px;}
._23{width:44.893234px;}
._22{width:46.562921px;}
._12{width:51.256951px;}
._21{width:55.309317px;}
._1d{width:58.273037px;}
._17{width:59.825119px;}
._15{width:61.016455px;}
._2e{width:66.803523px;}
._13{width:68.996593px;}
._32{width:72.606886px;}
._16{width:78.957673px;}
._2c{width:86.898595px;}
._2b{width:88.471883px;}
._35{width:93.592653px;}
._34{width:95.324697px;}
._2a{width:105.559838px;}
._29{width:107.332085px;}
._2f{width:142.272122px;}
._31{width:149.093702px;}
._30{width:150.616500px;}
._a{width:1113.672467px;}
._1{width:1791.983411px;}
.fc0{color:rgb(76,76,78);}
.fs3{font-size:35.996566px;}
.fs2{font-size:41.756023px;}
.fs4{font-size:54.714758px;}
.fs0{font-size:60.473976px;}
.fs1{font-size:66.233974px;}
.y0{bottom:0.000000px;}
.y2{bottom:56.635327px;}
.y3{bottom:59.155326px;}
.yf{bottom:78.593819px;}
.y3c{bottom:113.150505px;}
.y65{bottom:115.309154px;}
.y3b{bottom:148.786290px;}
.y64{bottom:150.946290px;}
.y3a{bottom:166.784933px;}
.y63{bottom:168.944932px;}
.y39{bottom:203.501169px;}
.ye{bottom:203.501619px;}
.y62{bottom:209.617866px;}
.yd{bottom:224.380260px;}
.y38{bottom:225.459810px;}
.y61{bottom:231.216508px;}
.yc{bottom:245.617402px;}
.y37{bottom:247.056951px;}
.y60{bottom:253.175149px;}
.yb{bottom:266.496043px;}
.y36{bottom:269.015592px;}
.y5f{bottom:275.132290px;}
.y35{bottom:290.972734px;}
.y5e{bottom:296.730181px;}
.y34{bottom:312.570625px;}
.y5d{bottom:318.688823px;}
.y33{bottom:334.529266px;}
.y5c{bottom:340.285964px;}
.y32{bottom:356.486407px;}
.y5b{bottom:362.244605px;}
.y31{bottom:378.085049px;}
.y5a{bottom:384.201746px;}
.ya{bottom:389.963994px;}
.y30{bottom:400.043690px;}
.y59{bottom:405.799638px;}
.y2f{bottom:421.640231px;}
.y58{bottom:427.758279px;}
.y9{bottom:429.200528px;}
.y2e{bottom:443.598873px;}
.y8{bottom:448.997670px;}
.y57{bottom:449.715420px;}
.y2d{bottom:465.556014px;}
.y7{bottom:468.796312px;}
.y56{bottom:471.314061px;}
.y2c{bottom:487.154655px;}
.y6{bottom:488.594955px;}
.y55{bottom:493.272703px;}
.y5{bottom:508.393597px;}
.y2b{bottom:509.113296px;}
.y54{bottom:514.869244px;}
.y4{bottom:528.190139px;}
.y2a{bottom:530.709838px;}
.y53{bottom:536.827885px;}
.y29{bottom:552.668479px;}
.y52{bottom:558.785026px;}
.y28{bottom:574.625620px;}
.y51{bottom:580.383668px;}
.y27{bottom:596.224262px;}
.y50{bottom:602.342309px;}
.y26{bottom:618.182903px;}
.y4f{bottom:623.938850px;}
.y25{bottom:639.779444px;}
.y4e{bottom:645.897492px;}
.y24{bottom:661.738085px;}
.y4d{bottom:667.854633px;}
.y23{bottom:683.696727px;}
.y4c{bottom:689.453274px;}
.y22{bottom:705.293868px;}
.y4b{bottom:711.411915px;}
.y21{bottom:727.251759px;}
.y4a{bottom:733.009057px;}
.y20{bottom:749.209650px;}
.y49{bottom:754.967698px;}
.y1f{bottom:770.806792px;}
.y48{bottom:776.926339px;}
.y1e{bottom:792.765433px;}
.y47{bottom:798.523481px;}
.y1d{bottom:814.362574px;}
.y46{bottom:820.482122px;}
.y1c{bottom:836.320465px;}
.y45{bottom:842.080013px;}
.y1b{bottom:858.278357px;}
.y44{bottom:864.037154px;}
.y1a{bottom:879.875498px;}
.y19{bottom:901.834139px;}
.y43{bottom:906.515487px;}
.y42{bottom:924.512630px;}
.y18{bottom:932.431727px;}
.y41{bottom:943.589323px;}
.y17{bottom:955.109618px;}
.y16{bottom:972.746611px;}
.y40{bottom:987.505105px;}
.y15{bottom:1008.743597px;}
.y13{bottom:1008.743897px;}
.y3f{bottom:1009.103746px;}
.y14{bottom:1014.863594px;}
.y3e{bottom:1031.062388px;}
.y12{bottom:1053.018929px;}
.y11{bottom:1074.617570px;}
.y3d{bottom:1118.533053px;}
.y10{bottom:1118.534553px;}
.y1{bottom:1195.567022px;}
.h6{height:26.206484px;}
.h5{height:37.433622px;}
.h7{height:39.833840px;}
.h2{height:43.406613px;}
.h3{height:48.220144px;}
.h8{height:49.050926px;}
.h1{height:54.213974px;}
.h4{height:59.377722px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:84.964166px;}
.xa{left:88.569115px;}
.x3{left:96.482061px;}
.x4{left:108.002060px;}
.x9{left:116.285503px;}
.x5{left:123.113960px;}
.xb{left:235.076999px;}
.x6{left:259.909396px;}
.x7{left:265.669394px;}
.x2{left:380.135848px;}
.x8{left:391.657343px;}
.xc{left:456.820317px;}
.xd{left:459.328316px;}
.x11{left:464.726814px;}
.xe{left:489.925538px;}
.x10{left:518.720736px;}
.xf{left:575.236456px;}
.x12{left:606.914814px;}
@media print{
.v1{vertical-align:-16.634660pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.133275pt;}
.ls2{letter-spacing:14.216086pt;}
.ws4{word-spacing:-16.367151pt;}
.ws0{word-spacing:-14.943791pt;}
.ws5{word-spacing:-13.520625pt;}
.ws2{word-spacing:-0.010643pt;}
.ws3{word-spacing:0.000000pt;}
.ws1{word-spacing:0.014893pt;}
.ws7{word-spacing:2.357964pt;}
.ws6{word-spacing:40.761122pt;}
._3{margin-left:-2.096547pt;}
._0{margin-left:-0.913580pt;}
._2{width:0.901549pt;}
._4{width:1.894620pt;}
._b{width:3.113120pt;}
._5{width:4.570750pt;}
._6{width:5.537771pt;}
._7{width:6.470160pt;}
._26{width:8.195890pt;}
._28{width:9.125492pt;}
._11{width:10.067803pt;}
._24{width:11.189274pt;}
._1e{width:12.422875pt;}
._8{width:13.814879pt;}
._1f{width:15.437815pt;}
._10{width:17.964256pt;}
._c{width:18.904373pt;}
._1a{width:20.057791pt;}
._f{width:20.960211pt;}
._27{width:22.013414pt;}
._9{width:24.969326pt;}
._1b{width:26.102240pt;}
._14{width:27.094922pt;}
._1c{width:28.625156pt;}
._e{width:29.691244pt;}
._d{width:31.027333pt;}
._25{width:32.440061pt;}
._20{width:33.559433pt;}
._19{width:35.914281pt;}
._18{width:36.915278pt;}
._2d{width:37.923510pt;}
._33{width:38.946549pt;}
._23{width:39.905097pt;}
._22{width:41.389263pt;}
._12{width:45.561734pt;}
._21{width:49.163837pt;}
._1d{width:51.798255pt;}
._17{width:53.177884pt;}
._15{width:54.236849pt;}
._2e{width:59.380909pt;}
._13{width:61.330304pt;}
._32{width:64.539455pt;}
._16{width:70.184599pt;}
._2c{width:77.243196pt;}
._2b{width:78.641674pt;}
._35{width:83.193470pt;}
._34{width:84.733064pt;}
._2a{width:93.830967pt;}
._29{width:95.406297pt;}
._2f{width:126.464108pt;}
._31{width:132.527735pt;}
._30{width:133.881333pt;}
._a{width:989.931081pt;}
._1{width:1592.874143pt;}
.fs3{font-size:31.996947pt;}
.fs2{font-size:37.116465pt;}
.fs4{font-size:48.635341pt;}
.fs0{font-size:53.754645pt;}
.fs1{font-size:58.874643pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:50.342513pt;}
.y3{bottom:52.582512pt;}
.yf{bottom:69.861172pt;}
.y3c{bottom:100.578226pt;}
.y65{bottom:102.497026pt;}
.y3b{bottom:132.254480pt;}
.y64{bottom:134.174480pt;}
.y3a{bottom:148.253274pt;}
.y63{bottom:150.173273pt;}
.y39{bottom:180.889928pt;}
.ye{bottom:180.890328pt;}
.y62{bottom:186.326992pt;}
.yd{bottom:199.449120pt;}
.y38{bottom:200.408720pt;}
.y61{bottom:205.525784pt;}
.yc{bottom:218.326579pt;}
.y37{bottom:219.606179pt;}
.y60{bottom:225.044577pt;}
.yb{bottom:236.885372pt;}
.y36{bottom:239.124971pt;}
.y5f{bottom:244.562036pt;}
.y35{bottom:258.642430pt;}
.y5e{bottom:263.760161pt;}
.y34{bottom:277.840556pt;}
.y5d{bottom:283.278953pt;}
.y33{bottom:297.359348pt;}
.y5c{bottom:302.476412pt;}
.y32{bottom:316.876807pt;}
.y5b{bottom:321.995205pt;}
.y31{bottom:336.075599pt;}
.y5a{bottom:341.512663pt;}
.ya{bottom:346.634661pt;}
.y30{bottom:355.594391pt;}
.y59{bottom:360.710789pt;}
.y2f{bottom:374.791317pt;}
.y58{bottom:380.229581pt;}
.y9{bottom:381.511581pt;}
.y2e{bottom:394.310109pt;}
.y8{bottom:399.109040pt;}
.y57{bottom:399.747040pt;}
.y2d{bottom:413.827568pt;}
.y7{bottom:416.707833pt;}
.y56{bottom:418.945832pt;}
.y2c{bottom:433.026360pt;}
.y6{bottom:434.306626pt;}
.y55{bottom:438.464625pt;}
.y5{bottom:451.905419pt;}
.y2b{bottom:452.545152pt;}
.y54{bottom:457.661550pt;}
.y4{bottom:469.502346pt;}
.y2a{bottom:471.742078pt;}
.y53{bottom:477.180342pt;}
.y29{bottom:491.260870pt;}
.y52{bottom:496.697801pt;}
.y28{bottom:510.778329pt;}
.y51{bottom:515.896594pt;}
.y27{bottom:529.977121pt;}
.y50{bottom:535.415386pt;}
.y26{bottom:549.495914pt;}
.y4f{bottom:554.612311pt;}
.y25{bottom:568.692839pt;}
.y4e{bottom:574.131104pt;}
.y24{bottom:588.211631pt;}
.y4d{bottom:593.648563pt;}
.y23{bottom:607.730424pt;}
.y4c{bottom:612.847355pt;}
.y22{bottom:626.927883pt;}
.y4b{bottom:632.366147pt;}
.y21{bottom:646.446008pt;}
.y4a{bottom:651.563606pt;}
.y20{bottom:665.964134pt;}
.y49{bottom:671.082398pt;}
.y1f{bottom:685.161593pt;}
.y48{bottom:690.601190pt;}
.y1e{bottom:704.680385pt;}
.y47{bottom:709.798649pt;}
.y1d{bottom:723.877844pt;}
.y46{bottom:729.317442pt;}
.y1c{bottom:743.395969pt;}
.y45{bottom:748.515567pt;}
.y1b{bottom:762.914095pt;}
.y44{bottom:768.033026pt;}
.y1a{bottom:782.111554pt;}
.y19{bottom:801.630346pt;}
.y43{bottom:805.791544pt;}
.y42{bottom:821.789005pt;}
.y18{bottom:828.828202pt;}
.y41{bottom:838.746065pt;}
.y17{bottom:848.986327pt;}
.y16{bottom:864.663654pt;}
.y40{bottom:877.782316pt;}
.y15{bottom:896.660975pt;}
.y13{bottom:896.661241pt;}
.y3f{bottom:896.981108pt;}
.y14{bottom:902.100972pt;}
.y3e{bottom:916.499900pt;}
.y12{bottom:936.016826pt;}
.y11{bottom:955.215618pt;}
.y3d{bottom:994.251602pt;}
.y10{bottom:994.252936pt;}
.y1{bottom:1062.726242pt;}
.h6{height:23.294652pt;}
.h5{height:33.274331pt;}
.h7{height:35.407858pt;}
.h2{height:38.583656pt;}
.h3{height:42.862350pt;}
.h8{height:43.600823pt;}
.h1{height:48.190199pt;}
.h4{height:52.780198pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:75.523703pt;}
.xa{left:78.728102pt;}
.x3{left:85.761832pt;}
.x4{left:96.001831pt;}
.x9{left:103.364892pt;}
.x5{left:109.434631pt;}
.xb{left:208.957332pt;}
.x6{left:231.030574pt;}
.x7{left:236.150572pt;}
.x2{left:337.898532pt;}
.x8{left:348.139861pt;}
.xc{left:406.062504pt;}
.xd{left:408.291837pt;}
.x11{left:413.090501pt;}
.xe{left:435.489368pt;}
.x10{left:461.085099pt;}
.xf{left:511.321294pt;}
.x12{left:539.479835pt;}
}




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