
    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_37cecdb05ff4dc6cfe97a9c4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.993000;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_ec4d03c63aac0f73efcfc490.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.033000;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_ea328101ac1873ba7104d11a.woff2')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_d2cde4c3bf463853968f0302.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.734375;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);}
.v1{vertical-align:-42.542835px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.000014px;}
.ls6{letter-spacing:107.986083px;}
.ls1{letter-spacing:107.986397px;}
.ls3{letter-spacing:107.991577px;}
.ls4{letter-spacing:108.000426px;}
.ls2{letter-spacing:108.000498px;}
.ls5{letter-spacing:2496.768137px;}
.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;}
}
.ws3{word-spacing:-37.098001px;}
.ws1{word-spacing:-31.500001px;}
.ws5{word-spacing:-29.836048px;}
.ws2{word-spacing:-27.000001px;}
.ws4{word-spacing:-0.119344px;}
.ws0{word-spacing:0.000000px;}
._9{margin-left:-18.360001px;}
._5{margin-left:-13.860000px;}
._4{margin-left:-12.474000px;}
._0{margin-left:-10.764720px;}
._8{margin-left:-9.180000px;}
._6{margin-left:-6.300000px;}
._7{margin-left:-5.292000px;}
._2{margin-left:-3.318100px;}
._1{margin-left:-2.218826px;}
._3{margin-left:-1.134000px;}
.fc3{color:transparent;}
.fc1{color:rgb(255,217,102);}
.fc4{color:rgb(0,0,0);}
.fc2{color:rgb(202,202,202);}
.fc0{color:rgb(255,255,255);}
.fs9{font-size:108.000003px;}
.fs10{font-size:108.750000px;}
.fs3{font-size:114.055195px;}
.fsa{font-size:119.344193px;}
.fs6{font-size:126.000004px;}
.fs5{font-size:132.000007px;}
.fs8{font-size:141.483623px;}
.fs7{font-size:142.313405px;}
.fsc{font-size:153.000005px;}
.fs2{font-size:158.487607px;}
.fs4{font-size:162.000005px;}
.fsf{font-size:180.000006px;}
.fsb{font-size:185.399839px;}
.fse{font-size:199.999829px;}
.fs1{font-size:209.294422px;}
.fs0{font-size:215.294407px;}
.fsd{font-size:222.000001px;}
.y0{bottom:0.000000px;}
.y43{bottom:40.161616px;}
.y58{bottom:59.225067px;}
.y3b{bottom:61.207543px;}
.y15{bottom:70.201490px;}
.y42{bottom:81.335357px;}
.y25{bottom:91.991177px;}
.y3a{bottom:93.607544px;}
.y5d{bottom:97.565102px;}
.y57{bottom:105.125069px;}
.y12{bottom:106.565271px;}
.y61{bottom:112.374220px;}
.y24{bottom:124.391178px;}
.y4{bottom:128.806152px;}
.y20{bottom:138.610301px;}
.y11{bottom:142.475250px;}
.y60{bottom:143.367938px;}
.y56{bottom:151.025059px;}
.y23{bottom:156.791186px;}
.y39{bottom:158.407546px;}
.y41{bottom:163.682828px;}
.y5c{bottom:164.165082px;}
.y1f{bottom:171.010309px;}
.y3{bottom:172.820597px;}
.y10{bottom:178.385274px;}
.y48{bottom:184.006156px;}
.y18{bottom:188.527993px;}
.y1b{bottom:188.529275px;}
.y22{bottom:189.191192px;}
.y38{bottom:190.807547px;}
.y31{bottom:196.062264px;}
.y55{bottom:196.925061px;}
.y29{bottom:200.636098px;}
.y1e{bottom:203.410315px;}
.y40{bottom:204.856558px;}
.y4f{bottom:205.705112px;}
.y47{bottom:216.631157px;}
.y17{bottom:220.928001px;}
.y1a{bottom:220.929283px;}
.y37{bottom:223.207548px;}
.y30{bottom:228.687265px;}
.y5b{bottom:230.765073px;}
.y28{bottom:233.261099px;}
.y4e{bottom:238.330113px;}
.y54{bottom:242.825062px;}
.ya{bottom:247.415906px;}
.y46{bottom:249.256159px;}
.yf{bottom:250.205265px;}
.y16{bottom:253.328006px;}
.y19{bottom:253.329289px;}
.y2f{bottom:261.312266px;}
.y27{bottom:265.886100px;}
.y1d{bottom:266.725267px;}
.y4d{bottom:270.955114px;}
.y21{bottom:272.423464px;}
.y45{bottom:281.881160px;}
.ye{bottom:286.115266px;}
.y3f{bottom:287.204041px;}
.y36{bottom:288.007550px;}
.y53{bottom:288.725069px;}
.y9{bottom:292.955907px;}
.y2e{bottom:293.937267px;}
.y5a{bottom:297.365075px;}
.y26{bottom:298.511101px;}
.y1c{bottom:299.125273px;}
.y4c{bottom:303.580115px;}
.y44{bottom:314.506161px;}
.y35{bottom:320.407540px;}
.yd{bottom:322.025267px;}
.y3e{bottom:328.377794px;}
.y14{bottom:331.959074px;}
.y52{bottom:334.625076px;}
.y8{bottom:338.495903px;}
.y34{bottom:352.807541px;}
.yc{bottom:357.935268px;}
.y59{bottom:363.965081px;}
.y51{bottom:380.525078px;}
.y2d{bottom:381.635397px;}
.y7{bottom:384.035899px;}
.y33{bottom:385.207548px;}
.y5f{bottom:387.613044px;}
.y4b{bottom:402.688962px;}
.y3d{bottom:410.725276px;}
.y2c{bottom:414.260398px;}
.y13{bottom:424.328045px;}
.y32{bottom:428.243263px;}
.y6{bottom:429.575901px;}
.yb{bottom:429.755259px;}
.y4a{bottom:435.313963px;}
.y2{bottom:437.133528px;}
.y2b{bottom:446.885399px;}
.y3c{bottom:451.899018px;}
.y49{bottom:467.938964px;}
.y2a{bottom:479.510400px;}
.y5e{bottom:496.813033px;}
.y50{bottom:500.317028px;}
.y5{bottom:505.932990px;}
.y1{bottom:509.970092px;}
.ha{height:78.840003px;}
.h12{height:79.387500px;}
.h4{height:83.260292px;}
.hb{height:83.979495px;}
.hc{height:87.121261px;}
.h7{height:91.980003px;}
.h6{height:96.360005px;}
.h9{height:103.283044px;}
.h8{height:103.888785px;}
.he{height:111.690004px;}
.h3{height:115.695953px;}
.h5{height:136.566004px;}
.h11{height:151.740005px;}
.h2{height:152.784928px;}
.hd{height:156.292065px;}
.h1{height:157.164917px;}
.hf{height:162.060001px;}
.h10{height:168.599856px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x3{left:46.939963px;}
.x15{left:51.011815px;}
.x2{left:52.291231px;}
.x4{left:54.011364px;}
.x12{left:55.922470px;}
.x6{left:57.631857px;}
.x7{left:62.580710px;}
.x16{left:76.080710px;}
.xf{left:88.591537px;}
.x5{left:100.939964px;}
.x9{left:193.694890px;}
.xa{left:205.077764px;}
.x1{left:335.561827px;}
.x18{left:407.612747px;}
.x17{left:413.537672px;}
.xe{left:455.196862px;}
.x14{left:468.696862px;}
.xb{left:561.032489px;}
.xc{left:628.996070px;}
.x11{left:698.131874px;}
.x13{left:725.001964px;}
.xd{left:726.386873px;}
.x10{left:741.439981px;}
.x8{left:855.091557px;}
@media print{
.v1{vertical-align:-37.815853pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.000012pt;}
.ls6{letter-spacing:95.987630pt;}
.ls1{letter-spacing:95.987908pt;}
.ls3{letter-spacing:95.992513pt;}
.ls4{letter-spacing:96.000379pt;}
.ls2{letter-spacing:96.000443pt;}
.ls5{letter-spacing:2219.349455pt;}
.ws3{word-spacing:-32.976001pt;}
.ws1{word-spacing:-28.000001pt;}
.ws5{word-spacing:-26.520932pt;}
.ws2{word-spacing:-24.000001pt;}
.ws4{word-spacing:-0.106084pt;}
.ws0{word-spacing:0.000000pt;}
._9{margin-left:-16.320001pt;}
._5{margin-left:-12.320000pt;}
._4{margin-left:-11.088000pt;}
._0{margin-left:-9.568640pt;}
._8{margin-left:-8.160000pt;}
._6{margin-left:-5.600000pt;}
._7{margin-left:-4.704000pt;}
._2{margin-left:-2.949422pt;}
._1{margin-left:-1.972290pt;}
._3{margin-left:-1.008000pt;}
.fs9{font-size:96.000003pt;}
.fs10{font-size:96.666667pt;}
.fs3{font-size:101.382395pt;}
.fsa{font-size:106.083727pt;}
.fs6{font-size:112.000004pt;}
.fs5{font-size:117.333340pt;}
.fs8{font-size:125.763220pt;}
.fs7{font-size:126.500804pt;}
.fsc{font-size:136.000004pt;}
.fs2{font-size:140.877873pt;}
.fs4{font-size:144.000005pt;}
.fsf{font-size:160.000005pt;}
.fsb{font-size:164.799857pt;}
.fse{font-size:177.777626pt;}
.fs1{font-size:186.039486pt;}
.fs0{font-size:191.372806pt;}
.fsd{font-size:197.333334pt;}
.y0{bottom:0.000000pt;}
.y43{bottom:35.699214pt;}
.y58{bottom:52.644504pt;}
.y3b{bottom:54.406704pt;}
.y15{bottom:62.401325pt;}
.y42{bottom:72.298095pt;}
.y25{bottom:81.769935pt;}
.y3a{bottom:83.206705pt;}
.y5d{bottom:86.724535pt;}
.y57{bottom:93.444506pt;}
.y12{bottom:94.724686pt;}
.y61{bottom:99.888196pt;}
.y24{bottom:110.569936pt;}
.y4{bottom:114.494357pt;}
.y20{bottom:123.209157pt;}
.y11{bottom:126.644667pt;}
.y60{bottom:127.438167pt;}
.y56{bottom:134.244497pt;}
.y23{bottom:139.369943pt;}
.y39{bottom:140.806707pt;}
.y41{bottom:145.495847pt;}
.y5c{bottom:145.924517pt;}
.y1f{bottom:152.009164pt;}
.y3{bottom:153.618309pt;}
.y10{bottom:158.564688pt;}
.y48{bottom:163.561028pt;}
.y18{bottom:167.580438pt;}
.y1b{bottom:167.581578pt;}
.y22{bottom:168.169948pt;}
.y38{bottom:169.606708pt;}
.y31{bottom:174.277568pt;}
.y55{bottom:175.044498pt;}
.y29{bottom:178.343198pt;}
.y1e{bottom:180.809169pt;}
.y40{bottom:182.094719pt;}
.y4f{bottom:182.848989pt;}
.y47{bottom:192.561029pt;}
.y17{bottom:196.380445pt;}
.y1a{bottom:196.381585pt;}
.y37{bottom:198.406709pt;}
.y30{bottom:203.277569pt;}
.y5b{bottom:205.124509pt;}
.y28{bottom:207.343199pt;}
.y4e{bottom:211.848989pt;}
.y54{bottom:215.844500pt;}
.ya{bottom:219.925250pt;}
.y46{bottom:221.561030pt;}
.yf{bottom:222.404680pt;}
.y16{bottom:225.180450pt;}
.y19{bottom:225.181590pt;}
.y2f{bottom:232.277570pt;}
.y27{bottom:236.343200pt;}
.y1d{bottom:237.089126pt;}
.y4d{bottom:240.848990pt;}
.y21{bottom:242.154190pt;}
.y45{bottom:250.561031pt;}
.ye{bottom:254.324681pt;}
.y3f{bottom:255.292481pt;}
.y36{bottom:256.006711pt;}
.y53{bottom:256.644506pt;}
.y9{bottom:260.405251pt;}
.y2e{bottom:261.277571pt;}
.y5a{bottom:264.324511pt;}
.y26{bottom:265.343201pt;}
.y1c{bottom:265.889131pt;}
.y4c{bottom:269.848991pt;}
.y44{bottom:279.561032pt;}
.y35{bottom:284.806702pt;}
.yd{bottom:286.244682pt;}
.y3e{bottom:291.891372pt;}
.y14{bottom:295.074732pt;}
.y52{bottom:297.444512pt;}
.y8{bottom:300.885247pt;}
.y34{bottom:313.606703pt;}
.yc{bottom:318.164683pt;}
.y59{bottom:323.524516pt;}
.y51{bottom:338.244514pt;}
.y2d{bottom:339.231464pt;}
.y7{bottom:341.365244pt;}
.y33{bottom:342.406710pt;}
.y5f{bottom:344.544928pt;}
.y4b{bottom:357.945744pt;}
.y3d{bottom:365.089134pt;}
.y2c{bottom:368.231465pt;}
.y13{bottom:377.180485pt;}
.y32{bottom:380.660678pt;}
.y6{bottom:381.845245pt;}
.yb{bottom:382.004675pt;}
.y4a{bottom:386.945745pt;}
.y2{bottom:388.563136pt;}
.y2b{bottom:397.231465pt;}
.y3c{bottom:401.688016pt;}
.y49{bottom:415.945746pt;}
.y2a{bottom:426.231466pt;}
.y5e{bottom:441.611585pt;}
.y50{bottom:444.726247pt;}
.y5{bottom:449.718213pt;}
.y1{bottom:453.306748pt;}
.ha{height:70.080002pt;}
.h12{height:70.566667pt;}
.h4{height:74.009149pt;}
.hb{height:74.648440pt;}
.hc{height:77.441121pt;}
.h7{height:81.760003pt;}
.h6{height:85.653338pt;}
.h9{height:91.807151pt;}
.h8{height:92.345587pt;}
.he{height:99.280003pt;}
.h3{height:102.840847pt;}
.h5{height:121.392004pt;}
.h11{height:134.880004pt;}
.h2{height:135.808825pt;}
.hd{height:138.926280pt;}
.h1{height:139.702148pt;}
.hf{height:144.053334pt;}
.h10{height:149.866538pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x3{left:41.724411pt;}
.x15{left:45.343835pt;}
.x2{left:46.481094pt;}
.x4{left:48.010102pt;}
.x12{left:49.708863pt;}
.x6{left:51.228318pt;}
.x7{left:55.627298pt;}
.x16{left:67.627298pt;}
.xf{left:78.748033pt;}
.x5{left:89.724413pt;}
.x9{left:172.173236pt;}
.xa{left:182.291346pt;}
.x1{left:298.277180pt;}
.x18{left:362.322442pt;}
.x17{left:367.589042pt;}
.xe{left:404.619433pt;}
.x14{left:416.619433pt;}
.xb{left:498.695546pt;}
.xc{left:559.107618pt;}
.x11{left:620.561666pt;}
.x13{left:644.446191pt;}
.xd{left:645.677221pt;}
.x10{left:659.057761pt;}
.x8{left:760.081384pt;}
}




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