
    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_3e49943f8f0341e5ec4b20ed.woff')format("woff");}.ff1{font-family:ff1;line-height:1.230000;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_d003c6079c6b0dfe4b03d663.woff')format("woff");}.ff2{font-family:ff2;line-height:0.944000;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_2a48e11f3621797f9cd3c17b.woff')format("woff");}.ff3{font-family:ff3;line-height:1.230000;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_a4a24222a188da5e42f1e599.woff')format("woff");}.ff4{font-family:ff4;line-height:0.746094;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_6b9f5e4ac6e6483a148fa4e0.woff')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_d735bf70ecdfa88fe34d9fd5.woff')format("woff");}.ff6{font-family:ff6;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;}
.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);}
.v1{vertical-align:-18.853201px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:46.281601px;}
.v3{vertical-align:157.118378px;}
.v4{vertical-align:175.544529px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:107.947128px;}
.ls1{letter-spacing:107.953140px;}
.ls0{letter-spacing:117.304703px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-87.780006px;}
.ws1{word-spacing:-83.099999px;}
.ws5{word-spacing:0.000000px;}
.ws4{word-spacing:876.973117px;}
.ws3{word-spacing:1125.661524px;}
.ws2{word-spacing:1190.958656px;}
._0{margin-left:-54.060003px;}
._e{margin-left:-38.400769px;}
._a{margin-left:-33.000000px;}
._b{margin-left:-22.200000px;}
._11{margin-left:-19.819200px;}
._5{margin-left:-17.687999px;}
._c{margin-left:-16.500000px;}
._10{margin-left:-13.941600px;}
._4{margin-left:-11.088000px;}
._9{margin-left:-9.210001px;}
._8{margin-left:-6.660001px;}
._1{margin-left:-5.610000px;}
._3{margin-left:-4.590000px;}
._2{margin-left:-3.570000px;}
._6{margin-left:-1.920000px;}
._d{width:1.747281px;}
._f{width:3.020346px;}
._7{width:4.704000px;}
._12{width:1002.603970px;}
.fc4{color:rgb(89,89,89);}
.fc3{color:rgb(34,34,34);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(20,130,165);}
.fc0{color:rgb(35,80,120);}
.fs7{font-size:167.999999px;}
.fs5{font-size:188.399999px;}
.fs8{font-size:210.000013px;}
.fs6{font-size:240.000002px;}
.fs3{font-size:299.999998px;}
.fs4{font-size:300.006010px;}
.fs2{font-size:330.000023px;}
.fs1{font-size:335.999999px;}
.fs0{font-size:510.000028px;}
.y0{bottom:0.000000px;}
.y20{bottom:146.222273px;}
.y48{bottom:186.914244px;}
.y4c{bottom:211.082316px;}
.y1f{bottom:249.722276px;}
.y4b{bottom:267.602307px;}
.y47{bottom:290.416306px;}
.y4a{bottom:324.122297px;}
.y1e{bottom:353.222279px;}
.y49{bottom:380.642290px;}
.y46{bottom:393.918368px;}
.y1d{bottom:456.722283px;}
.y6{bottom:463.454440px;}
.y45{bottom:497.420442px;}
.y44{bottom:600.922504px;}
.y1c{bottom:663.722289px;}
.y43{bottom:704.424566px;}
.y53{bottom:740.820278px;}
.y3f{bottom:748.517637px;}
.y1b{bottom:767.222293px;}
.y42{bottom:807.926628px;}
.y3e{bottom:852.017640px;}
.y1a{bottom:870.722296px;}
.y41{bottom:911.428696px;}
.y3d{bottom:955.517644px;}
.y19{bottom:974.222299px;}
.y40{bottom:1012.861258px;}
.y3c{bottom:1059.017647px;}
.y3b{bottom:1162.517650px;}
.y18{bottom:1181.222306px;}
.y28{bottom:1194.888739px;}
.y3a{bottom:1266.017654px;}
.y17{bottom:1284.722309px;}
.y27{bottom:1298.388742px;}
.y39{bottom:1369.517657px;}
.y16{bottom:1388.222313px;}
.y26{bottom:1401.888745px;}
.y38{bottom:1473.017660px;}
.y15{bottom:1491.722316px;}
.y25{bottom:1505.388749px;}
.y37{bottom:1576.517664px;}
.y14{bottom:1595.222319px;}
.y24{bottom:1608.888752px;}
.y52{bottom:1639.304369px;}
.y36{bottom:1680.017667px;}
.y23{bottom:1712.388755px;}
.y51{bottom:1730.762942px;}
.y50{bottom:1781.162937px;}
.y13{bottom:1802.222326px;}
.y8{bottom:1814.892234px;}
.y22{bottom:1815.888759px;}
.y12{bottom:1905.722329px;}
.y21{bottom:1919.388762px;}
.y11{bottom:2009.222332px;}
.y9{bottom:2020.863765px;}
.y35{bottom:2094.170793px;}
.y10{bottom:2112.722336px;}
.y34{bottom:2197.670796px;}
.yf{bottom:2216.222339px;}
.y2e{bottom:2223.011759px;}
.y4e{bottom:2285.720727px;}
.y33{bottom:2301.170799px;}
.y2d{bottom:2326.511763px;}
.y4f{bottom:2400.139082px;}
.y32{bottom:2404.670803px;}
.ye{bottom:2423.222346px;}
.y2c{bottom:2430.011766px;}
.y31{bottom:2508.170806px;}
.yd{bottom:2526.722349px;}
.y2b{bottom:2533.511769px;}
.y30{bottom:2611.670809px;}
.yc{bottom:2630.222352px;}
.y2a{bottom:2637.011772px;}
.y2f{bottom:2715.170812px;}
.yb{bottom:2733.722356px;}
.y29{bottom:2740.511776px;}
.y5{bottom:2850.299292px;}
.y7{bottom:2850.299967px;}
.ya{bottom:2850.301429px;}
.y4d{bottom:2883.553171px;}
.y4{bottom:3192.403016px;}
.y54{bottom:3222.948084px;}
.y3{bottom:3293.203008px;}
.y2{bottom:3394.003000px;}
.y1{bottom:3595.206129px;}
.hb{height:122.308593px;}
.h8{height:137.252343px;}
.ha{height:149.736994px;}
.hd{height:152.885751px;}
.h9{height:174.726564px;}
.h5{height:218.554686px;}
.h7{height:218.559066px;}
.h4{height:219.140623px;}
.h6{height:219.145015px;}
.h2{height:250.655999px;}
.hc{height:297.853122px;}
.h3{height:320.100022px;}
.h1{height:494.700027px;}
.h0{height:3888.000000px;}
.w0{width:5184.000000px;}
.x0{left:0.000000px;}
.xd{left:74.748929px;}
.xf{left:79.597353px;}
.x5{left:118.125004px;}
.xe{left:176.737213px;}
.x10{left:181.585637px;}
.xa{left:1230.649493px;}
.x9{left:1276.363503px;}
.xb{left:1286.987385px;}
.x4{left:1332.554713px;}
.xc{left:1388.975669px;}
.x3{left:1521.150124px;}
.x2{left:1597.412301px;}
.x1{left:1736.896556px;}
.x1c{left:2445.307925px;}
.x19{left:2533.169028px;}
.x17{left:2593.205655px;}
.x1a{left:2596.160254px;}
.x18{left:2643.199397px;}
.x1b{left:2702.041590px;}
.x16{left:2929.421726px;}
.x13{left:3963.389696px;}
.x11{left:3964.585571px;}
.x15{left:3984.998190px;}
.x6{left:3998.817128px;}
.x7{left:4006.765928px;}
.x8{left:4007.961803px;}
.x14{left:4065.377980px;}
.x12{left:4066.573855px;}
.x1d{left:4423.915942px;}
@media print{
.v1{vertical-align:-16.758401pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:41.139201pt;}
.v3{vertical-align:139.660780pt;}
.v4{vertical-align:156.039581pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:95.953003pt;}
.ls1{letter-spacing:95.958347pt;}
.ls0{letter-spacing:104.270847pt;}
.ws0{word-spacing:-78.026672pt;}
.ws1{word-spacing:-73.866666pt;}
.ws5{word-spacing:0.000000pt;}
.ws4{word-spacing:779.531660pt;}
.ws3{word-spacing:1000.588021pt;}
.ws2{word-spacing:1058.629916pt;}
._0{margin-left:-48.053336pt;}
._e{margin-left:-34.134017pt;}
._a{margin-left:-29.333333pt;}
._b{margin-left:-19.733333pt;}
._11{margin-left:-17.617066pt;}
._5{margin-left:-15.722666pt;}
._c{margin-left:-14.666667pt;}
._10{margin-left:-12.392533pt;}
._4{margin-left:-9.856000pt;}
._9{margin-left:-8.186667pt;}
._8{margin-left:-5.920000pt;}
._1{margin-left:-4.986667pt;}
._3{margin-left:-4.080000pt;}
._2{margin-left:-3.173334pt;}
._6{margin-left:-1.706666pt;}
._d{width:1.553139pt;}
._f{width:2.684752pt;}
._7{width:4.181333pt;}
._12{width:891.203529pt;}
.fs7{font-size:149.333333pt;}
.fs5{font-size:167.466665pt;}
.fs8{font-size:186.666678pt;}
.fs6{font-size:213.333335pt;}
.fs3{font-size:266.666665pt;}
.fs4{font-size:266.672009pt;}
.fs2{font-size:293.333353pt;}
.fs1{font-size:298.666666pt;}
.fs0{font-size:453.333359pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:129.975354pt;}
.y48{bottom:166.145995pt;}
.y4c{bottom:187.628725pt;}
.y1f{bottom:221.975357pt;}
.y4b{bottom:237.868717pt;}
.y47{bottom:258.147828pt;}
.y4a{bottom:288.108709pt;}
.y1e{bottom:313.975359pt;}
.y49{bottom:338.348702pt;}
.y46{bottom:350.149661pt;}
.y1d{bottom:405.975362pt;}
.y6{bottom:411.959503pt;}
.y45{bottom:442.151504pt;}
.y44{bottom:534.153337pt;}
.y1c{bottom:589.975368pt;}
.y43{bottom:626.155169pt;}
.y53{bottom:658.506913pt;}
.y3f{bottom:665.349011pt;}
.y1b{bottom:681.975371pt;}
.y42{bottom:718.157002pt;}
.y3e{bottom:757.349014pt;}
.y1a{bottom:773.975374pt;}
.y41{bottom:810.158841pt;}
.y3d{bottom:849.349017pt;}
.y19{bottom:865.975377pt;}
.y40{bottom:900.321118pt;}
.y3c{bottom:941.349020pt;}
.y3b{bottom:1033.349022pt;}
.y18{bottom:1049.975383pt;}
.y28{bottom:1062.123323pt;}
.y3a{bottom:1125.349025pt;}
.y17{bottom:1141.975386pt;}
.y27{bottom:1154.123326pt;}
.y39{bottom:1217.349028pt;}
.y16{bottom:1233.975389pt;}
.y26{bottom:1246.123329pt;}
.y38{bottom:1309.349031pt;}
.y15{bottom:1325.975392pt;}
.y25{bottom:1338.123332pt;}
.y37{bottom:1401.349034pt;}
.y14{bottom:1417.975395pt;}
.y24{bottom:1430.123335pt;}
.y52{bottom:1457.159439pt;}
.y36{bottom:1493.349037pt;}
.y23{bottom:1522.123338pt;}
.y51{bottom:1538.455949pt;}
.y50{bottom:1583.255944pt;}
.y13{bottom:1601.975401pt;}
.y8{bottom:1613.237541pt;}
.y22{bottom:1614.123341pt;}
.y12{bottom:1693.975404pt;}
.y21{bottom:1706.123344pt;}
.y11{bottom:1785.975407pt;}
.y9{bottom:1796.323347pt;}
.y35{bottom:1861.485149pt;}
.y10{bottom:1877.975410pt;}
.y34{bottom:1953.485152pt;}
.yf{bottom:1969.975412pt;}
.y2e{bottom:1976.010453pt;}
.y4e{bottom:2031.751757pt;}
.y33{bottom:2045.485155pt;}
.y2d{bottom:2068.010456pt;}
.y4f{bottom:2133.456962pt;}
.y32{bottom:2137.485158pt;}
.ye{bottom:2153.975418pt;}
.y2c{bottom:2160.010459pt;}
.y31{bottom:2229.485161pt;}
.yd{bottom:2245.975421pt;}
.y2b{bottom:2252.010461pt;}
.y30{bottom:2321.485164pt;}
.yc{bottom:2337.975424pt;}
.y2a{bottom:2344.010464pt;}
.y2f{bottom:2413.485167pt;}
.yb{bottom:2429.975427pt;}
.y29{bottom:2436.010467pt;}
.y5{bottom:2533.599370pt;}
.y7{bottom:2533.599970pt;}
.ya{bottom:2533.601270pt;}
.y4d{bottom:2563.158374pt;}
.y4{bottom:2837.691570pt;}
.y54{bottom:2864.842741pt;}
.y3{bottom:2927.291563pt;}
.y2{bottom:3016.891556pt;}
.y1{bottom:3195.738782pt;}
.hb{height:108.718750pt;}
.h8{height:122.002082pt;}
.ha{height:133.099550pt;}
.hd{height:135.898446pt;}
.h9{height:155.312501pt;}
.h5{height:194.270832pt;}
.h7{height:194.274725pt;}
.h4{height:194.791665pt;}
.h6{height:194.795569pt;}
.h2{height:222.805333pt;}
.hc{height:264.758331pt;}
.h3{height:284.533353pt;}
.h1{height:439.733358pt;}
.h0{height:3456.000000pt;}
.w0{width:4608.000000pt;}
.x0{left:0.000000pt;}
.xd{left:66.443492pt;}
.xf{left:70.753202pt;}
.x5{left:105.000003pt;}
.xe{left:157.099745pt;}
.x10{left:161.409455pt;}
.xa{left:1093.910660pt;}
.x9{left:1134.545336pt;}
.xb{left:1143.988787pt;}
.x4{left:1184.493078pt;}
.xc{left:1234.645040pt;}
.x3{left:1352.133443pt;}
.x2{left:1419.922045pt;}
.x1{left:1543.908049pt;}
.x1c{left:2173.607045pt;}
.x19{left:2251.705803pt;}
.x17{left:2305.071694pt;}
.x1a{left:2307.698004pt;}
.x18{left:2349.510575pt;}
.x1b{left:2401.814747pt;}
.x16{left:2603.930423pt;}
.x13{left:3523.013063pt;}
.x11{left:3524.076063pt;}
.x15{left:3542.220613pt;}
.x6{left:3554.504114pt;}
.x7{left:3561.569714pt;}
.x8{left:3562.632714pt;}
.x14{left:3613.669316pt;}
.x12{left:3614.732316pt;}
.x1d{left:3932.369726pt;}
}




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