
    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_7c74af530c67ae3d1303b848.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.939453;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_e916a1f18a6cc7a4639de5a3.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_93a6e3faaaf533a0449c59af.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.908000;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);}
.v2{vertical-align:-4.291695px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:4.291695px;}
.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;}
}
.ws7{word-spacing:-33.240000px;}
.ws6{word-spacing:-24.930001px;}
.wsb{word-spacing:-23.268000px;}
.ws0{word-spacing:-19.944001px;}
.ws1{word-spacing:0.000000px;}
.ws9{word-spacing:3.704019px;}
.wsa{word-spacing:78.084848px;}
.ws5{word-spacing:233.195578px;}
.ws3{word-spacing:236.169908px;}
.ws4{word-spacing:318.661585px;}
.ws2{word-spacing:414.830236px;}
.ws8{word-spacing:567.987318px;}
._7{margin-left:-13.200000px;}
._2{margin-left:-10.560001px;}
._0{margin-left:-8.250000px;}
._3{margin-left:-7.104000px;}
._1{margin-left:-5.280000px;}
._9{margin-left:-3.960000px;}
._5{margin-left:-1.944000px;}
._6{width:2.770035px;}
._a{width:26.972019px;}
._4{width:108.000849px;}
._8{width:1269.829376px;}
.fc7{color:rgb(0,0,255);}
.fc6{color:rgb(56,118,29);}
.fc5{color:rgb(255,24,24);}
.fc4{color:rgb(14,40,65);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(127,127,127);}
.fc2{color:rgb(70,120,134);}
.fc0{color:rgb(23,21,74);}
.fs1{font-size:72.000002px;}
.fsa{font-size:78.000005px;}
.fs9{font-size:84.000000px;}
.fs6{font-size:90.000003px;}
.fs2{font-size:96.000006px;}
.fs4{font-size:108.000003px;}
.fsc{font-size:114.000007px;}
.fs8{font-size:120.000001px;}
.fsb{font-size:126.000004px;}
.fs3{font-size:132.000007px;}
.fs0{font-size:149.999999px;}
.fs5{font-size:178.200006px;}
.fs7{font-size:198.000006px;}
.fsd{font-size:450.000014px;}
.y0{bottom:0.000000px;}
.y33{bottom:28.951073px;}
.y32{bottom:54.151072px;}
.y46{bottom:55.081276px;}
.y28{bottom:70.753115px;}
.y45{bottom:78.481277px;}
.y58{bottom:94.258111px;}
.yd{bottom:103.361429px;}
.yf{bottom:106.239089px;}
.y31{bottom:118.874880px;}
.y3{bottom:129.421391px;}
.y36{bottom:134.620151px;}
.y30{bottom:144.074879px;}
.y57{bottom:146.224001px;}
.y3c{bottom:162.613235px;}
.y44{bottom:168.844223px;}
.y26{bottom:179.333717px;}
.y27{bottom:180.544003px;}
.y3b{bottom:187.813229px;}
.y16{bottom:190.969468px;}
.y1e{bottom:194.592744px;}
.y43{bottom:199.941962px;}
.y3e{bottom:201.244228px;}
.y5a{bottom:212.151032px;}
.y2f{bottom:212.165765px;}
.y3a{bottom:213.013227px;}
.y5{bottom:218.613797px;}
.y1d{bottom:221.592745px;}
.yc{bottom:221.758109px;}
.y59{bottom:245.271026px;}
.y56{bottom:245.444391px;}
.y1c{bottom:248.592746px;}
.y15{bottom:250.212269px;}
.y4{bottom:251.733791px;}
.y25{bottom:254.314369px;}
.y42{bottom:270.031759px;}
.y22{bottom:275.054350px;}
.y3d{bottom:276.115984px;}
.y24{bottom:279.514368px;}
.y38{bottom:280.308297px;}
.y2e{bottom:280.742349px;}
.y14{bottom:282.612275px;}
.y55{bottom:297.410180px;}
.y21{bottom:300.254347px;}
.y23{bottom:304.714368px;}
.y2d{bottom:305.942348px;}
.y3f{bottom:309.455180px;}
.y4e{bottom:313.159126px;}
.y41{bottom:313.622588px;}
.y7{bottom:337.021889px;}
.ye{bottom:337.546398px;}
.y13{bottom:341.855188px;}
.y40{bottom:342.422587px;}
.y9{bottom:344.718419px;}
.ya{bottom:344.827432px;}
.y4d{bottom:345.559116px;}
.y5b{bottom:356.507351px;}
.y35{bottom:358.128534px;}
.y2{bottom:369.250980px;}
.y2c{bottom:370.665346px;}
.y12{bottom:374.255194px;}
.y20{bottom:375.898808px;}
.y4c{bottom:377.959117px;}
.y1b{bottom:383.592750px;}
.y53{bottom:395.346258px;}
.y2b{bottom:395.865344px;}
.y4b{bottom:410.359125px;}
.y1a{bottom:410.592751px;}
.y1{bottom:414.250981px;}
.y19{bottom:437.592755px;}
.y4a{bottom:442.759130px;}
.y54{bottom:447.312164px;}
.y29{bottom:449.085820px;}
.y37{bottom:451.055782px;}
.yb{bottom:456.725432px;}
.y48{bottom:458.349796px;}
.y8{bottom:461.783504px;}
.y18{bottom:464.592754px;}
.y39{bottom:465.183780px;}
.y11{bottom:468.411356px;}
.y2a{bottom:470.859560px;}
.y34{bottom:478.877010px;}
.y47{bottom:481.749797px;}
.y51{bottom:488.098696px;}
.y52{bottom:493.236139px;}
.y50{bottom:494.520466px;}
.y4f{bottom:495.493455px;}
.y49{bottom:495.592793px;}
.y10{bottom:516.525356px;}
.y17{bottom:546.307204px;}
.y1f{bottom:546.440856px;}
.y6{bottom:559.232715px;}
.h2{height:52.488283px;}
.hd{height:56.862309px;}
.hb{height:61.236328px;}
.h10{height:65.522463px;}
.h8{height:65.610354px;}
.hf{height:69.890629px;}
.h3{height:69.984379px;}
.h6{height:78.626956px;}
.h5{height:78.732424px;}
.he{height:83.106450px;}
.ha{height:87.480469px;}
.hc{height:91.854495px;}
.h4{height:96.228521px;}
.h1{height:109.350585px;}
.h7{height:124.740004px;}
.h9{height:138.600004px;}
.h11{height:328.051768px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x33{left:25.901694px;}
.xd{left:29.875985px;}
.x34{left:34.128194px;}
.x39{left:36.177166px;}
.x3c{left:40.050238px;}
.x43{left:41.509491px;}
.x24{left:48.586769px;}
.x1b{left:51.193675px;}
.x42{left:55.826578px;}
.x44{left:59.518280px;}
.x1c{left:63.435132px;}
.x13{left:67.001103px;}
.x45{left:75.950789px;}
.x10{left:84.079659px;}
.x8{left:100.899453px;}
.x40{left:117.872953px;}
.x11{left:120.070871px;}
.x41{left:130.735635px;}
.x4{left:133.129136px;}
.x27{left:186.445873px;}
.x1a{left:213.413396px;}
.xa{left:215.460479px;}
.x47{left:218.553194px;}
.x32{left:219.841545px;}
.x2{left:229.237207px;}
.x1{left:234.067912px;}
.xe{left:242.832068px;}
.x18{left:245.327138px;}
.x12{left:250.483190px;}
.x36{left:263.722655px;}
.x37{left:282.056083px;}
.x38{left:288.540572px;}
.x16{left:291.906538px;}
.x9{left:298.124301px;}
.x14{left:302.697516px;}
.x17{left:316.384255px;}
.x46{left:319.969338px;}
.x15{left:324.403222px;}
.x1e{left:329.468931px;}
.x1d{left:331.221371px;}
.x3a{left:334.729004px;}
.x19{left:336.901972px;}
.x26{left:337.999027px;}
.x3{left:343.051715px;}
.x35{left:346.034689px;}
.x3f{left:355.414916px;}
.x28{left:377.943651px;}
.x2c{left:381.579687px;}
.x2a{left:386.863212px;}
.x3e{left:395.881066px;}
.x29{left:402.726516px;}
.x2e{left:405.142273px;}
.x2b{left:407.282720px;}
.x3d{left:408.807081px;}
.xf{left:411.382352px;}
.x2d{left:440.826258px;}
.x7{left:490.098436px;}
.x25{left:512.638776px;}
.x20{left:572.627092px;}
.x1f{left:584.883921px;}
.x5{left:594.341007px;}
.x21{left:599.477336px;}
.xc{left:674.756954px;}
.x6{left:683.674278px;}
.x31{left:686.350406px;}
.x2f{left:702.754852px;}
.x30{left:704.058210px;}
.x22{left:830.809942px;}
.x23{left:833.136279px;}
.xb{left:847.393508px;}
.x3b{left:899.263491px;}
@media print{
.v2{vertical-align:-3.814840pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:3.814840pt;}
.ls0{letter-spacing:0.000000pt;}
.ws7{word-spacing:-29.546667pt;}
.ws6{word-spacing:-22.160001pt;}
.wsb{word-spacing:-20.682667pt;}
.ws0{word-spacing:-17.728001pt;}
.ws1{word-spacing:0.000000pt;}
.ws9{word-spacing:3.292461pt;}
.wsa{word-spacing:69.408754pt;}
.ws5{word-spacing:207.284959pt;}
.ws3{word-spacing:209.928807pt;}
.ws4{word-spacing:283.254742pt;}
.ws2{word-spacing:368.737988pt;}
.ws8{word-spacing:504.877616pt;}
._7{margin-left:-11.733333pt;}
._2{margin-left:-9.386667pt;}
._0{margin-left:-7.333333pt;}
._3{margin-left:-6.314667pt;}
._1{margin-left:-4.693334pt;}
._9{margin-left:-3.520000pt;}
._5{margin-left:-1.728000pt;}
._6{width:2.462254pt;}
._a{width:23.975128pt;}
._4{width:96.000755pt;}
._8{width:1128.737223pt;}
.fs1{font-size:64.000002pt;}
.fsa{font-size:69.333338pt;}
.fs9{font-size:74.666666pt;}
.fs6{font-size:80.000003pt;}
.fs2{font-size:85.333339pt;}
.fs4{font-size:96.000003pt;}
.fsc{font-size:101.333339pt;}
.fs8{font-size:106.666667pt;}
.fsb{font-size:112.000004pt;}
.fs3{font-size:117.333340pt;}
.fs0{font-size:133.333332pt;}
.fs5{font-size:158.400005pt;}
.fs7{font-size:176.000006pt;}
.fsd{font-size:400.000013pt;}
.y0{bottom:0.000000pt;}
.y33{bottom:25.734288pt;}
.y32{bottom:48.134286pt;}
.y46{bottom:48.961134pt;}
.y28{bottom:62.891658pt;}
.y45{bottom:69.761135pt;}
.y58{bottom:83.784987pt;}
.yd{bottom:91.876826pt;}
.yf{bottom:94.434746pt;}
.y31{bottom:105.666560pt;}
.y3{bottom:115.041236pt;}
.y36{bottom:119.662357pt;}
.y30{bottom:128.066559pt;}
.y57{bottom:129.976890pt;}
.y3c{bottom:144.545097pt;}
.y44{bottom:150.083754pt;}
.y26{bottom:159.407749pt;}
.y27{bottom:160.483558pt;}
.y3b{bottom:166.945092pt;}
.y16{bottom:169.750638pt;}
.y1e{bottom:172.971328pt;}
.y43{bottom:177.726188pt;}
.y3e{bottom:178.883758pt;}
.y5a{bottom:188.578695pt;}
.y2f{bottom:188.591791pt;}
.y3a{bottom:189.345091pt;}
.y5{bottom:194.323375pt;}
.y1d{bottom:196.971329pt;}
.yc{bottom:197.118319pt;}
.y59{bottom:218.018690pt;}
.y56{bottom:218.172792pt;}
.y1c{bottom:220.971330pt;}
.y15{bottom:222.410906pt;}
.y4{bottom:223.763370pt;}
.y25{bottom:226.057217pt;}
.y42{bottom:240.028230pt;}
.y22{bottom:244.492756pt;}
.y3d{bottom:245.436431pt;}
.y24{bottom:248.457216pt;}
.y38{bottom:249.162931pt;}
.y2e{bottom:249.548755pt;}
.y14{bottom:251.210911pt;}
.y55{bottom:264.364604pt;}
.y21{bottom:266.892753pt;}
.y23{bottom:270.857216pt;}
.y2d{bottom:271.948753pt;}
.y3f{bottom:275.071272pt;}
.y4e{bottom:278.363668pt;}
.y41{bottom:278.775634pt;}
.y7{bottom:299.575012pt;}
.ye{bottom:300.041242pt;}
.y13{bottom:303.871278pt;}
.y40{bottom:304.375632pt;}
.y9{bottom:306.416373pt;}
.ya{bottom:306.513273pt;}
.y4d{bottom:307.163659pt;}
.y5b{bottom:316.895423pt;}
.y35{bottom:318.336475pt;}
.y2{bottom:328.223093pt;}
.y2c{bottom:329.480307pt;}
.y12{bottom:332.671283pt;}
.y20{bottom:334.132273pt;}
.y4c{bottom:335.963659pt;}
.y1b{bottom:340.971334pt;}
.y53{bottom:351.418896pt;}
.y2b{bottom:351.880306pt;}
.y4b{bottom:364.763666pt;}
.y1a{bottom:364.971334pt;}
.y1{bottom:368.223095pt;}
.y19{bottom:388.971338pt;}
.y4a{bottom:393.563671pt;}
.y54{bottom:397.610812pt;}
.y29{bottom:399.187395pt;}
.y37{bottom:400.938473pt;}
.yb{bottom:405.978162pt;}
.y48{bottom:407.422041pt;}
.y8{bottom:410.474226pt;}
.y18{bottom:412.971337pt;}
.y39{bottom:413.496693pt;}
.y11{bottom:416.365650pt;}
.y2a{bottom:418.541831pt;}
.y34{bottom:425.668453pt;}
.y47{bottom:428.222041pt;}
.y51{bottom:433.865508pt;}
.y52{bottom:438.432124pt;}
.y50{bottom:439.573748pt;}
.y4f{bottom:440.438627pt;}
.y49{bottom:440.526927pt;}
.y10{bottom:459.133649pt;}
.y17{bottom:485.606403pt;}
.y1f{bottom:485.725205pt;}
.y6{bottom:497.095747pt;}
.h2{height:46.656251pt;}
.hd{height:50.544274pt;}
.hb{height:54.432291pt;}
.h10{height:58.242189pt;}
.h8{height:58.320314pt;}
.hf{height:62.125004pt;}
.h3{height:62.208337pt;}
.h6{height:69.890627pt;}
.h5{height:69.984377pt;}
.he{height:73.872400pt;}
.ha{height:77.760417pt;}
.hc{height:81.648440pt;}
.h4{height:85.536463pt;}
.h1{height:97.200520pt;}
.h7{height:110.880004pt;}
.h9{height:123.200004pt;}
.h11{height:291.601572pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x33{left:23.023728pt;}
.xd{left:26.556431pt;}
.x34{left:30.336172pt;}
.x39{left:32.157481pt;}
.x3c{left:35.600211pt;}
.x43{left:36.897325pt;}
.x24{left:43.188239pt;}
.x1b{left:45.505488pt;}
.x42{left:49.623625pt;}
.x44{left:52.905138pt;}
.x1c{left:56.386784pt;}
.x13{left:59.556536pt;}
.x45{left:67.511812pt;}
.x10{left:74.737474pt;}
.x8{left:89.688403pt;}
.x40{left:104.775958pt;}
.x11{left:106.729663pt;}
.x41{left:116.209454pt;}
.x4{left:118.337010pt;}
.x27{left:165.729665pt;}
.x1a{left:189.700796pt;}
.xa{left:191.520426pt;}
.x47{left:194.269506pt;}
.x32{left:195.414706pt;}
.x2{left:203.766407pt;}
.x1{left:208.060367pt;}
.xe{left:215.850727pt;}
.x18{left:218.068567pt;}
.x12{left:222.651724pt;}
.x36{left:234.420138pt;}
.x37{left:250.716518pt;}
.x38{left:256.480508pt;}
.x16{left:259.472478pt;}
.x9{left:264.999378pt;}
.x14{left:269.064459pt;}
.x17{left:281.230449pt;}
.x46{left:284.417189pt;}
.x15{left:288.358419pt;}
.x1e{left:292.861272pt;}
.x1d{left:294.418996pt;}
.x3a{left:297.536893pt;}
.x19{left:299.468420pt;}
.x26{left:300.443580pt;}
.x3{left:304.934858pt;}
.x35{left:307.586390pt;}
.x3f{left:315.924370pt;}
.x28{left:335.949912pt;}
.x2c{left:339.181944pt;}
.x2a{left:343.878411pt;}
.x3e{left:351.894281pt;}
.x29{left:357.979125pt;}
.x2e{left:360.126465pt;}
.x2b{left:362.029085pt;}
.x3d{left:363.384072pt;}
.xf{left:365.673202pt;}
.x2d{left:391.845563pt;}
.x7{left:435.643054pt;}
.x25{left:455.678912pt;}
.x20{left:509.001860pt;}
.x1f{left:519.896819pt;}
.x5{left:528.303117pt;}
.x21{left:532.868743pt;}
.xc{left:599.783959pt;}
.x6{left:607.710469pt;}
.x31{left:610.089250pt;}
.x2f{left:624.670980pt;}
.x30{left:625.829520pt;}
.x22{left:738.497727pt;}
.x23{left:740.565582pt;}
.xb{left:753.238674pt;}
.x3b{left:799.345326pt;}
}




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