
    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_64cb35612fbc306719de134f.woff')format("woff");}.ff1{font-family:ff1;line-height:0.973145;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_2991172d74b7c4e2ac990e9c.woff')format("woff");}.ff2{font-family:ff2;line-height:0.972656;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_8818aea6528a9e8ed2f6c6d7.woff')format("woff");}.ff3{font-family:ff3;line-height:0.973145;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_d8aba40d0d4a4c61ca72d96c.woff')format("woff");}.ff4{font-family:ff4;line-height:1.026855;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_3fb21874b9d5994be099954e.woff')format("woff");}.ff5{font-family:ff5;line-height:0.794922;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_dac35dfeffb444b0c5bc8816.woff')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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;}
.ls3{letter-spacing:0.008199px;}
.ls4{letter-spacing:0.018299px;}
.ls1{letter-spacing:0.068041px;}
.ls2{letter-spacing:107.972093px;}
.ls5{letter-spacing:108.000426px;}
.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:-32.076002px;}
.ws1{word-spacing:-30.360000px;}
.ws2{word-spacing:-29.160000px;}
.ws6{word-spacing:-27.702002px;}
.ws5{word-spacing:-27.474002px;}
.ws3{word-spacing:-0.132000px;}
.ws0{word-spacing:0.000000px;}
._1{margin-left:-1.573322px;}
._0{width:1.000165px;}
._7{width:42.167983px;}
._3{width:60.251984px;}
._2{width:108.113481px;}
._6{width:207.013345px;}
._4{width:264.013346px;}
._5{width:266.173346px;}
.fc2{color:rgb(0,151,167);}
.fc4{color:rgb(89,89,89);}
.fc3{color:rgb(27,27,27);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(34,34,34);}
.fs3{font-size:60.000000px;}
.fs7{font-size:96.000006px;}
.fs6{font-size:102.000000px;}
.fs1{font-size:108.000003px;}
.fs2{font-size:114.000007px;}
.fs4{font-size:120.000001px;}
.fs5{font-size:132.000007px;}
.fs0{font-size:167.999999px;}
.y0{bottom:0.000000px;}
.yb{bottom:11.832281px;}
.y34{bottom:26.079096px;}
.y1e{bottom:33.975060px;}
.y3f{bottom:38.894888px;}
.y5f{bottom:41.135922px;}
.y4f{bottom:54.275945px;}
.y33{bottom:58.209097px;}
.ya{bottom:63.078215px;}
.y3e{bottom:67.964889px;}
.y5e{bottom:75.155912px;}
.y1d{bottom:75.375050px;}
.y27{bottom:75.996253px;}
.y4e{bottom:84.515957px;}
.y32{bottom:90.339075px;}
.y9{bottom:102.408216px;}
.y5d{bottom:109.175890px;}
.y26{bottom:111.996254px;}
.y3d{bottom:115.718891px;}
.y13{bottom:119.214018px;}
.y4d{bottom:120.155947px;}
.y31{bottom:122.469076px;}
.y1c{bottom:134.775041px;}
.y8{bottom:141.738218px;}
.y5c{bottom:143.195891px;}
.y25{bottom:147.996255px;}
.y66{bottom:148.055937px;}
.y3c{bottom:148.208892px;}
.y30{bottom:154.599077px;}
.y12{bottom:160.614008px;}
.y4c{bottom:161.555937px;}
.y3b{bottom:180.698893px;}
.y24{bottom:183.996256px;}
.y2f{bottom:186.729078px;}
.y65{bottom:189.455915px;}
.y1b{bottom:194.175032px;}
.y5b{bottom:195.215916px;}
.y11{bottom:202.013987px;}
.y4b{bottom:202.955916px;}
.y7{bottom:206.336293px;}
.y2e{bottom:218.859102px;}
.y23{bottom:219.996258px;}
.y3a{bottom:231.188894px;}
.y1a{bottom:235.575011px;}
.y55{bottom:236.345951px;}
.y4a{bottom:244.355906px;}
.y6{bottom:245.666295px;}
.y5a{bottom:247.235928px;}
.y64{bottom:248.855906px;}
.y2d{bottom:250.989103px;}
.y22{bottom:255.996259px;}
.y10{bottom:261.413978px;}
.y54{bottom:272.255929px;}
.y19{bottom:276.975001px;}
.y59{bottom:281.255918px;}
.y39{bottom:281.678896px;}
.y5{bottom:284.996296px;}
.y44{bottom:288.171249px;}
.y63{bottom:290.255896px;}
.y21{bottom:291.996260px;}
.y49{bottom:299.255919px;}
.y2c{bottom:301.119105px;}
.yf{bottom:302.813968px;}
.y53{bottom:308.165908px;}
.y38{bottom:314.168908px;}
.y58{bottom:315.275897px;}
.y18{bottom:318.374991px;}
.y43{bottom:324.081261px;}
.y4{bottom:324.326297px;}
.y20{bottom:327.996261px;}
.y48{bottom:333.275897px;}
.y57{bottom:349.295898px;}
.y62{bottom:349.655909px;}
.y2b{bottom:351.249095px;}
.y52{bottom:362.075903px;}
.ye{bottom:362.213981px;}
.y37{bottom:364.658898px;}
.y47{bottom:367.295899px;}
.y17{bottom:377.775004px;}
.y42{bottom:377.991256px;}
.y2a{bottom:383.379096px;}
.y61{bottom:391.055906px;}
.y3{bottom:394.368421px;}
.y36{bottom:397.148903px;}
.y1f{bottom:399.996263px;}
.y56{bottom:401.315900px;}
.yd{bottom:403.613978px;}
.y41{bottom:413.901253px;}
.y29{bottom:415.509097px;}
.y51{bottom:415.985900px;}
.y16{bottom:419.175001px;}
.y46{bottom:419.315900px;}
.y35{bottom:429.638901px;}
.y60{bottom:432.455901px;}
.y2{bottom:443.148424px;}
.yc{bottom:445.013972px;}
.y40{bottom:449.811254px;}
.y50{bottom:451.895901px;}
.y45{bottom:453.335901px;}
.y15{bottom:460.574995px;}
.y28{bottom:465.639090px;}
.y14{bottom:513.132988px;}
.y1{bottom:527.690816px;}
.h4{height:45.380860px;}
.hc{height:72.609380px;}
.h8{height:77.147461px;}
.h2{height:81.632815px;}
.hb{height:81.685549px;}
.h3{height:86.223638px;}
.h5{height:90.761719px;}
.ha{height:90.899419px;}
.h7{height:95.683594px;}
.h6{height:99.837896px;}
.h9{height:105.251959px;}
.h1{height:127.066406px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.xc{left:92.250003px;}
.x7{left:101.220478px;}
.x9{left:103.189965px;}
.xd{left:104.314965px;}
.xb{left:105.355919px;}
.x8{left:106.564965px;}
.xa{left:109.221596px;}
.x4{left:112.954729px;}
.xe{left:115.006859px;}
.x10{left:120.375004px;}
.x2{left:123.630744px;}
.x5{left:146.066933px;}
.xf{left:158.314966px;}
.x1{left:178.622376px;}
.x3{left:214.432747px;}
.x6{left:869.190778px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.007288pt;}
.ls4{letter-spacing:0.016266pt;}
.ls1{letter-spacing:0.060481pt;}
.ls2{letter-spacing:95.975194pt;}
.ls5{letter-spacing:96.000379pt;}
.ws4{word-spacing:-28.512002pt;}
.ws1{word-spacing:-26.986667pt;}
.ws2{word-spacing:-25.920000pt;}
.ws6{word-spacing:-24.624001pt;}
.ws5{word-spacing:-24.421335pt;}
.ws3{word-spacing:-0.117333pt;}
.ws0{word-spacing:0.000000pt;}
._1{margin-left:-1.398509pt;}
._0{width:0.889036pt;}
._7{width:37.482651pt;}
._3{width:53.557319pt;}
._2{width:96.100872pt;}
._6{width:184.011863pt;}
._4{width:234.678530pt;}
._5{width:236.598530pt;}
.fs3{font-size:53.333334pt;}
.fs7{font-size:85.333339pt;}
.fs6{font-size:90.666667pt;}
.fs1{font-size:96.000003pt;}
.fs2{font-size:101.333339pt;}
.fs4{font-size:106.666667pt;}
.fs5{font-size:117.333340pt;}
.fs0{font-size:149.333333pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:10.517583pt;}
.y34{bottom:23.181418pt;}
.y1e{bottom:30.200054pt;}
.y3f{bottom:34.573234pt;}
.y5f{bottom:36.565264pt;}
.y4f{bottom:48.245284pt;}
.y33{bottom:51.741419pt;}
.ya{bottom:56.069525pt;}
.y3e{bottom:60.413235pt;}
.y5e{bottom:66.805255pt;}
.y1d{bottom:67.000045pt;}
.y27{bottom:67.552225pt;}
.y4e{bottom:75.125295pt;}
.y32{bottom:80.301400pt;}
.y9{bottom:91.029526pt;}
.y5d{bottom:97.045236pt;}
.y26{bottom:99.552226pt;}
.y3d{bottom:102.861236pt;}
.y13{bottom:105.968016pt;}
.y4d{bottom:106.805286pt;}
.y31{bottom:108.861401pt;}
.y1c{bottom:119.800037pt;}
.y8{bottom:125.989527pt;}
.y5c{bottom:127.285237pt;}
.y25{bottom:131.552227pt;}
.y66{bottom:131.605277pt;}
.y3c{bottom:131.741237pt;}
.y30{bottom:137.421402pt;}
.y12{bottom:142.768007pt;}
.y4c{bottom:143.605277pt;}
.y3b{bottom:160.621238pt;}
.y24{bottom:163.552228pt;}
.y2f{bottom:165.981403pt;}
.y65{bottom:168.405258pt;}
.y1b{bottom:172.600028pt;}
.y5b{bottom:173.525258pt;}
.y11{bottom:179.567988pt;}
.y4b{bottom:180.405258pt;}
.y7{bottom:183.410039pt;}
.y2e{bottom:194.541424pt;}
.y23{bottom:195.552229pt;}
.y3a{bottom:205.501239pt;}
.y1a{bottom:209.400009pt;}
.y55{bottom:210.085289pt;}
.y4a{bottom:217.205250pt;}
.y6{bottom:218.370040pt;}
.y5a{bottom:219.765270pt;}
.y64{bottom:221.205250pt;}
.y2d{bottom:223.101425pt;}
.y22{bottom:227.552230pt;}
.y10{bottom:232.367980pt;}
.y54{bottom:242.005270pt;}
.y19{bottom:246.200001pt;}
.y59{bottom:250.005261pt;}
.y39{bottom:250.381241pt;}
.y5{bottom:253.330041pt;}
.y44{bottom:256.152221pt;}
.y63{bottom:258.005241pt;}
.y21{bottom:259.552231pt;}
.y49{bottom:266.005261pt;}
.y2c{bottom:267.661426pt;}
.yf{bottom:269.167971pt;}
.y53{bottom:273.925251pt;}
.y38{bottom:279.261252pt;}
.y58{bottom:280.245242pt;}
.y18{bottom:282.999992pt;}
.y43{bottom:288.072232pt;}
.y4{bottom:288.290042pt;}
.y20{bottom:291.552232pt;}
.y48{bottom:296.245242pt;}
.y57{bottom:310.485243pt;}
.y62{bottom:310.805253pt;}
.y2b{bottom:312.221418pt;}
.y52{bottom:321.845247pt;}
.ye{bottom:321.967983pt;}
.y37{bottom:324.141243pt;}
.y47{bottom:326.485243pt;}
.y17{bottom:335.800003pt;}
.y42{bottom:335.992227pt;}
.y2a{bottom:340.781419pt;}
.y61{bottom:347.605250pt;}
.y3{bottom:350.549708pt;}
.y36{bottom:353.021247pt;}
.y1f{bottom:355.552234pt;}
.y56{bottom:356.725244pt;}
.yd{bottom:358.767980pt;}
.y41{bottom:367.912224pt;}
.y29{bottom:369.341420pt;}
.y51{bottom:369.765245pt;}
.y16{bottom:372.600001pt;}
.y46{bottom:372.725245pt;}
.y35{bottom:381.901245pt;}
.y60{bottom:384.405245pt;}
.y2{bottom:393.909710pt;}
.yc{bottom:395.567975pt;}
.y40{bottom:399.832226pt;}
.y50{bottom:401.685246pt;}
.y45{bottom:402.965246pt;}
.y15{bottom:409.399996pt;}
.y28{bottom:413.901413pt;}
.y14{bottom:456.118211pt;}
.y1{bottom:469.058503pt;}
.h4{height:40.338542pt;}
.hc{height:64.541671pt;}
.h8{height:68.575521pt;}
.h2{height:72.562502pt;}
.hb{height:72.609377pt;}
.h3{height:76.643234pt;}
.h5{height:80.677084pt;}
.ha{height:80.799484pt;}
.h7{height:85.052084pt;}
.h6{height:88.744797pt;}
.h9{height:93.557297pt;}
.h1{height:112.947916pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.xc{left:82.000003pt;}
.x7{left:89.973758pt;}
.x9{left:91.724413pt;}
.xd{left:92.724413pt;}
.xb{left:93.649706pt;}
.x8{left:94.724413pt;}
.xa{left:97.085863pt;}
.x4{left:100.404203pt;}
.xe{left:102.228319pt;}
.x10{left:107.000003pt;}
.x2{left:109.893995pt;}
.x5{left:129.837274pt;}
.xf{left:140.724415pt;}
.x1{left:158.775445pt;}
.x3{left:190.606886pt;}
.x6{left:772.614025pt;}
}




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