
    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_9cc92ad80b7142c468f8ff1e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.992188;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_243450a806869c8ec787c26d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.993164;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_64e798dae14fcc2a751d5bbe.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.975098;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_56758a83c63de65241a578f0.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_67210b8ce9c4c00bee8e76d4.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_c9d41f6a0d84b1a4a7f7b82f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.031738;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;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.043541px;}
.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:-51.111798px;}
.ws4{word-spacing:-45.275946px;}
.ws3{word-spacing:-33.239975px;}
.ws6{word-spacing:-31.577895px;}
.ws5{word-spacing:-18.282005px;}
.ws2{word-spacing:-9.971980px;}
.ws0{word-spacing:0.000000px;}
._7{margin-left:-21.781527px;}
._e{margin-left:-10.373966px;}
._0{margin-left:-7.103975px;}
._1{margin-left:-5.279981px;}
._5{margin-left:-4.202061px;}
._6{margin-left:-3.129294px;}
._2{margin-left:-1.727994px;}
._3{width:1.190587px;}
._4{width:2.821386px;}
._d{width:4.439997px;}
._8{width:74.995298px;}
._c{width:107.971944px;}
._b{width:585.814522px;}
._9{width:697.549210px;}
._a{width:1216.326917px;}
.fc3{color:rgb(0,75,83);}
.fc2{color:rgb(87,223,197);}
.fc1{color:rgb(0,151,167);}
.fc5{color:rgb(153,153,153);}
.fc4{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:35.999928px;}
.fs3{font-size:41.999766px;}
.fs7{font-size:48.000054px;}
.fse{font-size:57.000036px;}
.fs6{font-size:59.999730px;}
.fs8{font-size:66.000018px;}
.fsb{font-size:83.999982px;}
.fs0{font-size:95.999658px;}
.fs9{font-size:107.999784px;}
.fsf{font-size:113.999622px;}
.fs5{font-size:119.999910px;}
.fs2{font-size:134.351732px;}
.fsc{font-size:184.799781px;}
.fs1{font-size:187.757625px;}
.fs4{font-size:208.619584px;}
.fsd{font-size:221.999407px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.001215px;}
.y60{bottom:17.427952px;}
.y2f{bottom:19.669889px;}
.y54{bottom:20.572364px;}
.y37{bottom:26.799258px;}
.y17{bottom:41.133106px;}
.y4a{bottom:41.910814px;}
.y45{bottom:52.425396px;}
.y53{bottom:56.980715px;}
.y5f{bottom:61.399704px;}
.y41{bottom:63.775260px;}
.y44{bottom:64.665372px;}
.y36{bottom:68.199175px;}
.y16{bottom:77.133034px;}
.y49{bottom:83.310721px;}
.y5e{bottom:86.599654px;}
.yb{bottom:87.260351px;}
.y2d{bottom:90.370681px;}
.y1e{bottom:91.756824px;}
.y52{bottom:92.980643px;}
.y43{bottom:102.083403px;}
.y6b{bottom:102.641726px;}
.y39{bottom:106.086142px;}
.y35{bottom:109.599079px;}
.y6{bottom:112.221367px;}
.y15{bottom:113.132962px;}
.y42{bottom:114.683378px;}
.y6f{bottom:123.633382px;}
.y48{bottom:124.710638px;}
.y38{bottom:125.886103px;}
.y1d{bottom:127.756752px;}
.y51{bottom:128.980571px;}
.y5d{bottom:133.393667px;}
.y6a{bottom:138.641655px;}
.y5{bottom:141.021310px;}
.y40{bottom:141.175106px;}
.y6e{bottom:143.298343px;}
.y14{bottom:149.132890px;}
.y2c{bottom:149.770563px;}
.y72{bottom:153.209175px;}
.y5c{bottom:158.593616px;}
.y6d{bottom:162.963303px;}
.y4{bottom:169.821252px;}
.y71{bottom:173.009135px;}
.y69{bottom:174.641583px;}
.y25{bottom:181.167160px;}
.y3f{bottom:182.575023px;}
.y13{bottom:185.132818px;}
.y70{bottom:192.809096px;}
.y50{bottom:197.380383px;}
.y3{bottom:198.621195px;}
.y34{bottom:201.398823px;}
.y20{bottom:203.769700px;}
.y5b{bottom:205.387629px;}
.y78{bottom:208.012023px;}
.y2b{bottom:209.170444px;}
.y68{bottom:210.641511px;}
.y4f{bottom:218.980340px;}
.y12{bottom:221.132747px;}
.y47{bottom:223.974940px;}
.y2{bottom:227.421137px;}
.y5a{bottom:230.587579px;}
.y1f{bottom:239.769628px;}
.y24{bottom:240.818591px;}
.y77{bottom:242.211955px;}
.y67{bottom:246.641439px;}
.y11{bottom:257.132675px;}
.y3e{bottom:259.974869px;}
.y33{bottom:260.798704px;}
.y2a{bottom:268.570326px;}
.y59{bottom:277.381580px;}
.y66{bottom:282.641367px;}
.ya{bottom:284.989107px;}
.y76{bottom:285.411868px;}
.y4e{bottom:290.980196px;}
.y10{bottom:293.132612px;}
.y79{bottom:299.111891px;}
.y23{bottom:300.470068px;}
.y3d{bottom:301.374786px;}
.y58{bottom:302.581530px;}
.y1c{bottom:313.373828px;}
.y65{bottom:318.641295px;}
.y32{bottom:320.198586px;}
.y9{bottom:325.294626px;}
.y29{bottom:327.970207px;}
.yf{bottom:329.132540px;}
.y3a{bottom:329.255975px;}
.y46{bottom:342.774703px;}
.y1b{bottom:349.373756px;}
.y57{bottom:349.375509px;}
.y75{bottom:353.811732px;}
.y64{bottom:354.641232px;}
.y22{bottom:361.721907px;}
.y4d{bottom:362.980053px;}
.ye{bottom:365.132468px;}
.y8{bottom:365.600146px;}
.y28{bottom:369.370124px;}
.y56{bottom:374.575459px;}
.y3c{bottom:378.774631px;}
.y31{bottom:379.598467px;}
.y1a{bottom:385.373684px;}
.y63{bottom:390.641160px;}
.yd{bottom:401.132396px;}
.y74{bottom:403.011596px;}
.y7{bottom:409.109997px;}
.y27{bottom:410.770042px;}
.y3b{bottom:420.174549px;}
.y55{bottom:421.370668px;}
.y21{bottom:421.373384px;}
.y19{bottom:421.373613px;}
.y2e{bottom:422.082000px;}
.y62{bottom:426.641089px;}
.y4c{bottom:434.979909px;}
.y30{bottom:438.998348px;}
.y73{bottom:446.211510px;}
.yc{bottom:481.919417px;}
.y26{bottom:501.159552px;}
.y61{bottom:502.679969px;}
.y4b{bottom:511.869049px;}
.y18{bottom:511.869141px;}
.y6c{bottom:517.604786px;}
.hc{height:28.142522px;}
.h5{height:32.832825px;}
.h9{height:38.507856px;}
.h12{height:44.559110px;}
.hd{height:46.904086px;}
.h13{height:48.049818px;}
.ha{height:51.594741px;}
.he{height:61.154284px;}
.hf{height:65.666002px;}
.h2{height:75.046608px;}
.hb{height:78.626796px;}
.h8{height:87.363216px;}
.h14{height:89.117869px;}
.h7{height:93.808524px;}
.h4{height:102.338233px;}
.h10{height:142.660378px;}
.h3{height:144.943753px;}
.h6{height:161.048614px;}
.h11{height:171.377472px;}
.h1{height:607.498785px;}
.h0{height:607.500000px;}
.w1{width:1079.997840px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x6{left:57.829610px;}
.x14{left:62.548108px;}
.x1a{left:67.755102px;}
.x11{left:69.002157px;}
.x3{left:70.065803px;}
.x7{left:73.683399px;}
.x17{left:75.321062px;}
.x1b{left:76.640747px;}
.xa{left:78.292166px;}
.x24{left:81.889080px;}
.x8{left:84.454562px;}
.x9{left:87.497369px;}
.xd{left:93.693708px;}
.x15{left:111.829520px;}
.x1c{left:121.753696px;}
.xe{left:147.693601px;}
.x1f{left:216.594279px;}
.x21{left:231.267400px;}
.x20{left:243.645300px;}
.x1e{left:348.864477px;}
.x22{left:354.621507px;}
.x23{left:408.621400px;}
.x18{left:416.511330px;}
.x1d{left:458.225528px;}
.x1{left:463.068000px;}
.x4{left:508.423482px;}
.x5{left:537.672151px;}
.x12{left:644.812678px;}
.xc{left:705.618678px;}
.x13{left:731.778767px;}
.x10{left:751.003979px;}
.x16{left:856.377258px;}
.x19{left:874.377222px;}
.xf{left:878.649796px;}
.x2{left:902.491992px;}
.xb{left:921.601127px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.038704pt;}
.ws1{word-spacing:-45.432709pt;}
.ws4{word-spacing:-40.245286pt;}
.ws3{word-spacing:-29.546645pt;}
.ws6{word-spacing:-28.069240pt;}
.ws5{word-spacing:-16.250671pt;}
.ws2{word-spacing:-8.863982pt;}
.ws0{word-spacing:0.000000pt;}
._7{margin-left:-19.361358pt;}
._e{margin-left:-9.221303pt;}
._0{margin-left:-6.314644pt;}
._1{margin-left:-4.693317pt;}
._5{margin-left:-3.735165pt;}
._6{margin-left:-2.781594pt;}
._2{margin-left:-1.535995pt;}
._3{width:1.058299pt;}
._4{width:2.507899pt;}
._d{width:3.946664pt;}
._8{width:66.662487pt;}
._c{width:95.975061pt;}
._b{width:520.724019pt;}
._9{width:620.043742pt;}
._a{width:1081.179482pt;}
.fsa{font-size:31.999936pt;}
.fs3{font-size:37.333125pt;}
.fs7{font-size:42.666715pt;}
.fse{font-size:50.666699pt;}
.fs6{font-size:53.333094pt;}
.fs8{font-size:58.666683pt;}
.fsb{font-size:74.666651pt;}
.fs0{font-size:85.333030pt;}
.fs9{font-size:95.999808pt;}
.fsf{font-size:101.332998pt;}
.fs5{font-size:106.666587pt;}
.fs2{font-size:119.423762pt;}
.fsc{font-size:164.266472pt;}
.fs1{font-size:166.895667pt;}
.fs4{font-size:185.439630pt;}
.fsd{font-size:197.332806pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.001080pt;}
.y60{bottom:15.491513pt;}
.y2f{bottom:17.484346pt;}
.y54{bottom:18.286546pt;}
.y37{bottom:23.821563pt;}
.y17{bottom:36.562761pt;}
.y4a{bottom:37.254057pt;}
.y45{bottom:46.600352pt;}
.y53{bottom:50.649525pt;}
.y5f{bottom:54.577515pt;}
.y41{bottom:56.689120pt;}
.y44{bottom:57.480331pt;}
.y36{bottom:60.621489pt;}
.y16{bottom:68.562697pt;}
.y49{bottom:74.053974pt;}
.y5e{bottom:76.977470pt;}
.yb{bottom:77.564757pt;}
.y2d{bottom:80.329495pt;}
.y1e{bottom:81.561621pt;}
.y52{bottom:82.649461pt;}
.y43{bottom:90.740803pt;}
.y6b{bottom:91.237090pt;}
.y39{bottom:94.298793pt;}
.y35{bottom:97.421404pt;}
.y6{bottom:99.752327pt;}
.y15{bottom:100.562633pt;}
.y42{bottom:101.940780pt;}
.y6f{bottom:109.896339pt;}
.y48{bottom:110.853901pt;}
.y38{bottom:111.898758pt;}
.y1d{bottom:113.561557pt;}
.y51{bottom:114.649397pt;}
.y5d{bottom:118.572148pt;}
.y6a{bottom:123.237026pt;}
.y5{bottom:125.352275pt;}
.y40{bottom:125.488983pt;}
.y6e{bottom:127.376305pt;}
.y14{bottom:132.562569pt;}
.y2c{bottom:133.129389pt;}
.y72{bottom:136.185933pt;}
.y5c{bottom:140.972103pt;}
.y6d{bottom:144.856270pt;}
.y4{bottom:150.952224pt;}
.y71{bottom:153.785898pt;}
.y69{bottom:155.236962pt;}
.y25{bottom:161.037476pt;}
.y3f{bottom:162.288909pt;}
.y13{bottom:164.562505pt;}
.y70{bottom:171.385863pt;}
.y50{bottom:175.449229pt;}
.y3{bottom:176.552173pt;}
.y34{bottom:179.021176pt;}
.y20{bottom:181.128622pt;}
.y5b{bottom:182.566781pt;}
.y78{bottom:184.899576pt;}
.y2b{bottom:185.929284pt;}
.y68{bottom:187.236898pt;}
.y4f{bottom:194.649191pt;}
.y12{bottom:196.562441pt;}
.y47{bottom:199.088836pt;}
.y2{bottom:202.152122pt;}
.y5a{bottom:204.966737pt;}
.y1f{bottom:213.128558pt;}
.y24{bottom:214.060970pt;}
.y77{bottom:215.299515pt;}
.y67{bottom:219.236835pt;}
.y11{bottom:228.562378pt;}
.y3e{bottom:231.088772pt;}
.y33{bottom:231.821070pt;}
.y2a{bottom:238.729178pt;}
.y59{bottom:246.561405pt;}
.y66{bottom:251.236771pt;}
.ya{bottom:253.323651pt;}
.y76{bottom:253.699439pt;}
.y4e{bottom:258.649063pt;}
.y10{bottom:260.562322pt;}
.y79{bottom:265.877237pt;}
.y23{bottom:267.084505pt;}
.y3d{bottom:267.888699pt;}
.y58{bottom:268.961360pt;}
.y1c{bottom:278.554514pt;}
.y65{bottom:283.236707pt;}
.y32{bottom:284.620965pt;}
.y9{bottom:289.150779pt;}
.y29{bottom:291.529073pt;}
.yf{bottom:292.562258pt;}
.y3a{bottom:292.671978pt;}
.y46{bottom:304.688625pt;}
.y1b{bottom:310.554450pt;}
.y57{bottom:310.556008pt;}
.y75{bottom:314.499317pt;}
.y64{bottom:315.236651pt;}
.y22{bottom:321.530584pt;}
.y4d{bottom:322.648936pt;}
.ye{bottom:324.562194pt;}
.y8{bottom:324.977907pt;}
.y28{bottom:328.329000pt;}
.y56{bottom:332.955963pt;}
.y3c{bottom:336.688561pt;}
.y31{bottom:337.420860pt;}
.y1a{bottom:342.554386pt;}
.y63{bottom:347.236587pt;}
.yd{bottom:356.562130pt;}
.y74{bottom:358.232530pt;}
.y7{bottom:363.653330pt;}
.y27{bottom:365.128926pt;}
.y3b{bottom:373.488488pt;}
.y55{bottom:374.551705pt;}
.y21{bottom:374.554119pt;}
.y19{bottom:374.554322pt;}
.y2e{bottom:375.184000pt;}
.y62{bottom:379.236523pt;}
.y4c{bottom:386.648808pt;}
.y30{bottom:390.220754pt;}
.y73{bottom:396.632453pt;}
.yc{bottom:428.372815pt;}
.y26{bottom:445.475157pt;}
.y61{bottom:446.826639pt;}
.y4b{bottom:454.994710pt;}
.y18{bottom:454.994792pt;}
.y6c{bottom:460.093143pt;}
.hc{height:25.015575pt;}
.h5{height:29.184733pt;}
.h9{height:34.229205pt;}
.h12{height:39.608098pt;}
.hd{height:41.692521pt;}
.h13{height:42.710949pt;}
.ha{height:45.861992pt;}
.he{height:54.359364pt;}
.hf{height:58.369779pt;}
.h2{height:66.708096pt;}
.hb{height:69.890485pt;}
.h8{height:77.656192pt;}
.h14{height:79.215883pt;}
.h7{height:83.385354pt;}
.h4{height:90.967318pt;}
.h10{height:126.809225pt;}
.h3{height:128.838891pt;}
.h6{height:143.154324pt;}
.h11{height:152.335530pt;}
.h1{height:539.998920pt;}
.h0{height:540.000000pt;}
.w1{width:959.998080pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x6{left:51.404098pt;}
.x14{left:55.598318pt;}
.x1a{left:60.226758pt;}
.x11{left:61.335250pt;}
.x3{left:62.280714pt;}
.x7{left:65.496355pt;}
.x17{left:66.952055pt;}
.x1b{left:68.125108pt;}
.xa{left:69.593036pt;}
.x24{left:72.790293pt;}
.x8{left:75.070722pt;}
.x9{left:77.775439pt;}
.xd{left:83.283296pt;}
.x15{left:99.404018pt;}
.x1c{left:108.225507pt;}
.xe{left:131.283200pt;}
.x1f{left:192.528248pt;}
.x21{left:205.571022pt;}
.x20{left:216.573600pt;}
.x1e{left:310.101757pt;}
.x22{left:315.219118pt;}
.x23{left:363.219022pt;}
.x18{left:370.232293pt;}
.x1d{left:407.311580pt;}
.x1{left:411.616000pt;}
.x4{left:451.931984pt;}
.x5{left:477.930801pt;}
.x12{left:573.166825pt;}
.xc{left:627.216603pt;}
.x13{left:650.470015pt;}
.x10{left:667.559092pt;}
.x16{left:761.224229pt;}
.x19{left:777.224197pt;}
.xf{left:781.022041pt;}
.x2{left:802.215104pt;}
.xb{left:819.201001pt;}
}




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