
    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_861d62fc6d9dbd87d7bc3a1e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.989000;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_21ec2371c97894286dc1ab89.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.942383;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_11aabf5f1572e69901c9c2f6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.972000;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_861f6c3b666209f74cb02d1b.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_48c222a6c1f2839848bb88b2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_b9d2a21772493136ca7c800e.woff2')format("woff");}.ff6{font-family:ff6;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;}
.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;}
.v1{vertical-align:2.554115px;}
.v3{vertical-align:43.199997px;}
.v2{vertical-align:64.783465px;}
.ls0{letter-spacing:0.000000px;}
.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:-28.896002px;}
.ws3{word-spacing:-0.044506px;}
.ws0{word-spacing:0.000000px;}
.ws2{word-spacing:337.171744px;}
._e{margin-left:-12.790830px;}
._2{margin-left:-10.080000px;}
._8{margin-left:-6.108000px;}
._7{margin-left:-4.968000px;}
._1{margin-left:-3.600000px;}
._4{margin-left:-2.472000px;}
._0{margin-left:-1.452000px;}
._5{width:1.042366px;}
._9{width:3.600000px;}
._11{width:15.943951px;}
._a{width:58.298824px;}
._b{width:60.796944px;}
._6{width:108.064972px;}
._16{width:191.551956px;}
._19{width:214.554877px;}
._c{width:324.832943px;}
._17{width:335.941931px;}
._14{width:351.853931px;}
._d{width:376.240943px;}
._15{width:787.026895px;}
._12{width:1038.954903px;}
._f{width:1059.757954px;}
._18{width:1070.850904px;}
._10{width:1123.194906px;}
._13{width:1274.754911px;}
._3{width:2183.069652px;}
.fc4{color:rgb(0,0,0);}
.fc3{color:rgb(67,67,67);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,151,167);}
.fc0{color:rgb(255,158,0);}
.fs5{font-size:44.506198px;}
.fs8{font-size:72.000002px;}
.fs6{font-size:84.000000px;}
.fs7{font-size:90.000003px;}
.fs1{font-size:96.000006px;}
.fs4{font-size:97.321197px;}
.fs3{font-size:108.000003px;}
.fs2{font-size:120.000001px;}
.fs0{font-size:132.000007px;}
.y0{bottom:0.000000px;}
.y2{bottom:42.620427px;}
.ye{bottom:58.089306px;}
.y18{bottom:58.727834px;}
.y17{bottom:118.395322px;}
.y57{bottom:126.383070px;}
.y4{bottom:130.412572px;}
.y46{bottom:138.915379px;}
.y55{bottom:147.983070px;}
.yd{bottom:149.175379px;}
.y16{bottom:150.795345px;}
.y3c{bottom:163.150608px;}
.y28{bottom:164.620910px;}
.y56{bottom:169.583068px;}
.y45{bottom:169.965391px;}
.y3{bottom:175.412574px;}
.y27{bottom:177.972770px;}
.y2d{bottom:178.104159px;}
.y15{bottom:183.195346px;}
.yc{bottom:186.435369px;}
.y52{bottom:191.181294px;}
.y26{bottom:191.324624px;}
.y2c{bottom:191.456012px;}
.y3b{bottom:195.542351px;}
.y44{bottom:201.015381px;}
.y54{bottom:201.981290px;}
.y25{bottom:204.676476px;}
.y2b{bottom:204.807865px;}
.y39{bottom:211.738217px;}
.y51{bottom:212.781295px;}
.y14{bottom:215.595347px;}
.y24{bottom:218.028332px;}
.y2a{bottom:218.159721px;}
.y53{bottom:223.581292px;}
.yb{bottom:223.695370px;}
.y3a{bottom:227.934072px;}
.y43{bottom:232.065370px;}
.y50{bottom:234.381292px;}
.y23{bottom:244.732054px;}
.y29{bottom:244.863443px;}
.y13{bottom:247.995348px;}
.y35{bottom:260.325816px;}
.ya{bottom:260.955360px;}
.y4f{bottom:261.376272px;}
.y42{bottom:263.115360px;}
.y19{bottom:263.196422px;}
.y1a{bottom:265.298451px;}
.y1{bottom:269.263694px;}
.y12{bottom:280.395350px;}
.y4e{bottom:288.371572px;}
.y32{bottom:292.717549px;}
.y36{bottom:292.717554px;}
.y34{bottom:292.717559px;}
.y41{bottom:294.165350px;}
.y22{bottom:297.416038px;}
.y9{bottom:298.215350px;}
.y4d{bottom:299.171571px;}
.y38{bottom:308.913414px;}
.y21{bottom:310.767903px;}
.y11{bottom:312.795339px;}
.y20{bottom:324.119758px;}
.y33{bottom:325.109280px;}
.y2f{bottom:325.109286px;}
.y40{bottom:325.215358px;}
.y4c{bottom:331.570381px;}
.y8{bottom:335.475340px;}
.y1f{bottom:337.471619px;}
.y10{bottom:345.195340px;}
.y1e{bottom:350.823473px;}
.y4b{bottom:353.170380px;}
.y3f{bottom:356.265358px;}
.y31{bottom:357.501024px;}
.y48{bottom:363.969802px;}
.y1d{bottom:364.175328px;}
.y7{bottom:372.735352px;}
.y37{bottom:373.696890px;}
.y4a{bottom:374.769212px;}
.y1c{bottom:377.527189px;}
.yf{bottom:377.595348px;}
.y3e{bottom:387.315356px;}
.y30{bottom:389.892756px;}
.y49{bottom:396.369211px;}
.y1b{bottom:404.230903px;}
.y6{bottom:409.995354px;}
.y3d{bottom:414.315355px;}
.y2e{bottom:422.284488px;}
.y47{bottom:423.364487px;}
.y5{bottom:459.497946px;}
.h7{height:33.249260px;}
.hb{height:52.417970px;}
.hc{height:52.453127px;}
.h8{height:61.195312px;}
.ha{height:66.357424px;}
.h2{height:70.781254px;}
.h6{height:71.755375px;}
.h4{height:79.628909px;}
.h5{height:82.183023px;}
.h3{height:90.240001px;}
.hd{height:95.653124px;}
.he{height:95.653128px;}
.hf{height:95.653146px;}
.h1{height:103.884006px;}
.h9{height:125.978777px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x9{left:81.717387px;}
.x6{left:82.824809px;}
.x1a{left:88.089458px;}
.x7{left:92.949809px;}
.x8{left:95.876567px;}
.x19{left:99.888775px;}
.x3{left:136.812998px;}
.x2{left:137.944966px;}
.x1{left:140.086375px;}
.x16{left:150.235655px;}
.xd{left:160.977188px;}
.x17{left:230.167324px;}
.xb{left:328.597436px;}
.x18{left:398.840559px;}
.x1b{left:410.557108px;}
.x1e{left:445.463362px;}
.x15{left:457.679360px;}
.x13{left:459.784067px;}
.xe{left:469.553591px;}
.xf{left:473.795549px;}
.x12{left:476.637990px;}
.x10{left:479.697405px;}
.x11{left:499.491404px;}
.x14{left:556.634695px;}
.x4{left:604.481695px;}
.x5{left:706.200896px;}
.x1d{left:804.197838px;}
.xc{left:814.921519px;}
.x1c{left:882.073828px;}
.xa{left:993.380245px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.270324pt;}
.v3{vertical-align:38.399997pt;}
.v2{vertical-align:57.585302pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-25.685335pt;}
.ws3{word-spacing:-0.039561pt;}
.ws0{word-spacing:0.000000pt;}
.ws2{word-spacing:299.708217pt;}
._e{margin-left:-11.369626pt;}
._2{margin-left:-8.960000pt;}
._8{margin-left:-5.429333pt;}
._7{margin-left:-4.416000pt;}
._1{margin-left:-3.200000pt;}
._4{margin-left:-2.197334pt;}
._0{margin-left:-1.290667pt;}
._5{width:0.926548pt;}
._9{width:3.200000pt;}
._11{width:14.172400pt;}
._a{width:51.821177pt;}
._b{width:54.041728pt;}
._6{width:96.057753pt;}
._16{width:170.268405pt;}
._19{width:190.715446pt;}
._c{width:288.740394pt;}
._17{width:298.615050pt;}
._14{width:312.759050pt;}
._d{width:334.436394pt;}
._15{width:699.579462pt;}
._12{width:923.515470pt;}
._f{width:942.007070pt;}
._18{width:951.867470pt;}
._10{width:998.395472pt;}
._13{width:1133.115476pt;}
._3{width:1940.506357pt;}
.fs5{font-size:39.561065pt;}
.fs8{font-size:64.000002pt;}
.fs6{font-size:74.666666pt;}
.fs7{font-size:80.000003pt;}
.fs1{font-size:85.333339pt;}
.fs4{font-size:86.507731pt;}
.fs3{font-size:96.000003pt;}
.fs2{font-size:106.666667pt;}
.fs0{font-size:117.333340pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:37.884824pt;}
.ye{bottom:51.634938pt;}
.y18{bottom:52.202519pt;}
.y17{bottom:105.240286pt;}
.y57{bottom:112.340506pt;}
.y4{bottom:115.922286pt;}
.y46{bottom:123.480337pt;}
.y55{bottom:131.540507pt;}
.yd{bottom:132.600337pt;}
.y16{bottom:134.040307pt;}
.y3c{bottom:145.022762pt;}
.y28{bottom:146.329697pt;}
.y56{bottom:150.740505pt;}
.y45{bottom:151.080348pt;}
.y3{bottom:155.922288pt;}
.y27{bottom:158.198018pt;}
.y2d{bottom:158.314808pt;}
.y15{bottom:162.840308pt;}
.yc{bottom:165.720328pt;}
.y52{bottom:169.938928pt;}
.y26{bottom:170.066332pt;}
.y2c{bottom:170.183122pt;}
.y3b{bottom:173.815423pt;}
.y44{bottom:178.680338pt;}
.y54{bottom:179.538924pt;}
.y25{bottom:181.934646pt;}
.y2b{bottom:182.051436pt;}
.y39{bottom:188.211749pt;}
.y51{bottom:189.138929pt;}
.y14{bottom:191.640309pt;}
.y24{bottom:193.802962pt;}
.y2a{bottom:193.919752pt;}
.y53{bottom:198.738926pt;}
.yb{bottom:198.840329pt;}
.y3a{bottom:202.608064pt;}
.y43{bottom:206.280329pt;}
.y50{bottom:208.338926pt;}
.y23{bottom:217.539604pt;}
.y29{bottom:217.656394pt;}
.y13{bottom:220.440310pt;}
.y35{bottom:231.400725pt;}
.ya{bottom:231.960320pt;}
.y4f{bottom:232.334464pt;}
.y42{bottom:233.880320pt;}
.y19{bottom:233.952375pt;}
.y1a{bottom:235.820845pt;}
.y1{bottom:239.345505pt;}
.y12{bottom:249.240311pt;}
.y4e{bottom:256.330286pt;}
.y32{bottom:260.193377pt;}
.y36{bottom:260.193381pt;}
.y34{bottom:260.193386pt;}
.y41{bottom:261.480311pt;}
.y22{bottom:264.369811pt;}
.y9{bottom:265.080311pt;}
.y4d{bottom:265.930285pt;}
.y38{bottom:274.589702pt;}
.y21{bottom:276.238136pt;}
.y11{bottom:278.040302pt;}
.y20{bottom:288.106452pt;}
.y33{bottom:288.986027pt;}
.y2f{bottom:288.986032pt;}
.y40{bottom:289.080318pt;}
.y4c{bottom:294.729227pt;}
.y8{bottom:298.200302pt;}
.y1f{bottom:299.974772pt;}
.y10{bottom:306.840303pt;}
.y1e{bottom:311.843087pt;}
.y4b{bottom:313.929227pt;}
.y3f{bottom:316.680318pt;}
.y31{bottom:317.778688pt;}
.y48{bottom:323.528713pt;}
.y1d{bottom:323.711403pt;}
.y7{bottom:331.320313pt;}
.y37{bottom:332.175013pt;}
.y4a{bottom:333.128188pt;}
.y1c{bottom:335.579723pt;}
.yf{bottom:335.640309pt;}
.y3e{bottom:344.280317pt;}
.y30{bottom:346.571339pt;}
.y49{bottom:352.328188pt;}
.y1b{bottom:359.316358pt;}
.y6{bottom:364.440314pt;}
.y3d{bottom:368.280316pt;}
.y2e{bottom:375.363990pt;}
.y47{bottom:376.323989pt;}
.y5{bottom:408.442619pt;}
.h7{height:29.554897pt;}
.hb{height:46.593751pt;}
.hc{height:46.625001pt;}
.h8{height:54.395833pt;}
.ha{height:58.984377pt;}
.h2{height:62.916671pt;}
.h6{height:63.782555pt;}
.h4{height:70.781252pt;}
.h5{height:73.051576pt;}
.h3{height:80.213334pt;}
.hd{height:85.024999pt;}
.he{height:85.025003pt;}
.hf{height:85.025019pt;}
.h1{height:92.341338pt;}
.h9{height:111.981135pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x9{left:72.637677pt;}
.x6{left:73.622052pt;}
.x1a{left:78.301740pt;}
.x7{left:82.622053pt;}
.x8{left:85.223615pt;}
.x19{left:88.790022pt;}
.x3{left:121.611554pt;}
.x2{left:122.617748pt;}
.x1{left:124.521222pt;}
.x16{left:133.542804pt;}
.xd{left:143.090834pt;}
.x17{left:204.593177pt;}
.xb{left:292.086609pt;}
.x18{left:354.524941pt;}
.x1b{left:364.939652pt;}
.x1e{left:395.967433pt;}
.x15{left:406.826098pt;}
.x13{left:408.696948pt;}
.xe{left:417.380969pt;}
.xf{left:421.151599pt;}
.x12{left:423.678214pt;}
.x10{left:426.397694pt;}
.x11{left:443.992359pt;}
.x14{left:494.786396pt;}
.x4{left:537.317062pt;}
.x5{left:627.734130pt;}
.x1d{left:714.842523pt;}
.xc{left:724.374683pt;}
.x1c{left:784.065625pt;}
.xa{left:883.004662pt;}
}




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