
    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_aba8158d72a0f85bc14212ea.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a310d920a87f92fee46c45c4.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_ad49de002dc1bb0a63fed69a.woff')format("woff");}.ff3{font-family:ff3;line-height:0.861816;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_a62ae6f392a149fff11631f3.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_f5e88f41d7a231aef78080c9.woff')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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.108900px;}
.ls0{letter-spacing:0.109350px;}
.ls4{letter-spacing:0.119790px;}
.ls3{letter-spacing:107.986537px;}
.ls2{letter-spacing:108.000566px;}
.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;}
}
.ws0{word-spacing:-39.888001px;}
.ws1{word-spacing:0.000000px;}
._a{margin-left:-17.760000px;}
._6{margin-left:-12.432000px;}
._9{margin-left:-10.656000px;}
._5{margin-left:-9.240000px;}
._8{margin-left:-7.920000px;}
._3{margin-left:-6.912000px;}
._2{margin-left:-5.184000px;}
._1{margin-left:-3.888000px;}
._b{margin-left:-2.577971px;}
._7{width:1.716739px;}
._0{width:2.927250px;}
._4{width:107.986537px;}
.fc4{color:rgb(19,31,51);}
.fc2{color:rgb(240,81,35);}
.fc3{color:rgb(255,95,5);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(16,40,76);}
.fs1{font-size:144.000005px;}
.fs4{font-size:167.999999px;}
.fs0{font-size:216.000007px;}
.fs3{font-size:240.000002px;}
.fs2{font-size:432.000014px;}
.y0{bottom:0.000000px;}
.y20{bottom:305.548985px;}
.y1f{bottom:348.748987px;}
.y1e{bottom:391.949044px;}
.y1d{bottom:435.148990px;}
.y73{bottom:470.817903px;}
.y1c{bottom:479.788991px;}
.yb{bottom:521.622432px;}
.y72{bottom:571.617861px;}
.ya{bottom:572.022411px;}
.y1b{bottom:579.149107px;}
.y1a{bottom:622.349040px;}
.y9{bottom:622.422402px;}
.y47{bottom:657.016097px;}
.y19{bottom:665.548997px;}
.y71{bottom:672.417842px;}
.y8{bottom:672.822392px;}
.y46{bottom:700.215985px;}
.y18{bottom:708.748965px;}
.y7{bottom:723.222382px;}
.y45{bottom:743.415874px;}
.y17{bottom:753.388955px;}
.y70{bottom:773.217823px;}
.y6{bottom:773.622373px;}
.y44{bottom:786.615651px;}
.y16{bottom:803.789001px;}
.y43{bottom:831.255652px;}
.y15{bottom:854.189070px;}
.y6f{bottom:878.337804px;}
.y5{bottom:878.742354px;}
.y14{bottom:953.549085px;}
.y13{bottom:996.749075px;}
.y12{bottom:1083.149066px;}
.y11{bottom:1126.349057px;}
.y10{bottom:1169.549058px;}
.y6e{bottom:1201.815139px;}
.yf{bottom:1214.189048px;}
.y57{bottom:1229.231052px;}
.y6d{bottom:1245.015140px;}
.ye{bottom:1264.589039px;}
.y56{bottom:1279.631099px;}
.y6c{bottom:1288.215142px;}
.yd{bottom:1314.989018px;}
.y6b{bottom:1331.415143px;}
.y42{bottom:1335.255218px;}
.y6a{bottom:1374.615145px;}
.y55{bottom:1380.431215px;}
.y69{bottom:1417.815258px;}
.y54{bottom:1430.831284px;}
.yc{bottom:1441.709022px;}
.y68{bottom:1461.015260px;}
.y53{bottom:1481.231330px;}
.y67{bottom:1504.215261px;}
.y66{bottom:1547.415263px;}
.y52{bottom:1582.031446px;}
.y65{bottom:1592.055264px;}
.y51{bottom:1632.431515px;}
.y64{bottom:1677.015267px;}
.y50{bottom:1682.831551px;}
.y63{bottom:1720.215268px;}
.y62{bottom:1763.415270px;}
.y4f{bottom:1783.631633px;}
.y61{bottom:1806.615383px;}
.y4e{bottom:1834.031634px;}
.y60{bottom:1849.815385px;}
.y38{bottom:1883.655611px;}
.y4d{bottom:1884.431613px;}
.y5f{bottom:1894.455274px;}
.y37{bottom:1934.055500px;}
.y5e{bottom:1979.415276px;}
.y36{bottom:1984.455389px;}
.y4c{bottom:1985.231583px;}
.y5d{bottom:2022.615390px;}
.y4b{bottom:2035.631573px;}
.y5c{bottom:2065.815392px;}
.y41{bottom:2068.215129px;}
.y35{bottom:2085.255280px;}
.y4a{bottom:2086.031564px;}
.y5b{bottom:2109.015393px;}
.y40{bottom:2111.415131px;}
.y34{bottom:2135.655338px;}
.y49{bottom:2136.431554px;}
.y5a{bottom:2152.215439px;}
.y3f{bottom:2154.615132px;}
.y33{bottom:2186.055396px;}
.y59{bottom:2195.415396px;}
.y3e{bottom:2197.815088px;}
.y58{bottom:2240.055397px;}
.y3d{bottom:2241.015022px;}
.y48{bottom:2241.551535px;}
.y3c{bottom:2284.215024px;}
.y32{bottom:2285.415477px;}
.y31{bottom:2328.615434px;}
.y3b{bottom:2328.855025px;}
.y30{bottom:2371.815401px;}
.y2f{bottom:2415.015358px;}
.y2e{bottom:2458.215292px;}
.y2d{bottom:2501.415293px;}
.y2c{bottom:2587.815183px;}
.y2b{bottom:2631.015185px;}
.y2a{bottom:2674.215119px;}
.y29{bottom:2718.855075px;}
.y28{bottom:2819.655056px;}
.y27{bottom:2870.055035px;}
.y26{bottom:2920.455025px;}
.y25{bottom:2970.855016px;}
.y3a{bottom:2999.654994px;}
.y24{bottom:3021.255006px;}
.y23{bottom:3071.654996px;}
.y39{bottom:3104.774975px;}
.y22{bottom:3122.054975px;}
.y21{bottom:3176.774977px;}
.y3{bottom:3512.225407px;}
.y2{bottom:3569.000407px;}
.y1{bottom:3630.095409px;}
.y4{bottom:3739.320000px;}
.h6{height:104.906253px;}
.h2{height:108.914066px;}
.h7{height:122.308593px;}
.h5{height:122.390625px;}
.h1{height:163.265630px;}
.h4{height:174.726564px;}
.h3{height:295.312509px;}
.h0{height:3888.000000px;}
.w0{width:5184.000000px;}
.x0{left:0.000000px;}
.x8{left:176.625006px;}
.x9{left:178.260373px;}
.xa{left:230.625007px;}
.xb{left:235.880867px;}
.xc{left:284.625009px;}
.x4{left:1142.897380px;}
.x1{left:1198.810613px;}
.x11{left:1427.625046px;}
.x15{left:1429.260413px;}
.x2{left:1433.566396px;}
.x14{left:1481.625047px;}
.x12{left:1486.880907px;}
.x13{left:1535.625049px;}
.x3{left:2266.813535px;}
.xd{left:2678.625086px;}
.xe{left:2683.880945px;}
.xf{left:2732.625087px;}
.x10{left:3927.938976px;}
.x5{left:3929.625126px;}
.x6{left:3931.260493px;}
.x7{left:3983.625127px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.096800pt;}
.ls0{letter-spacing:0.097200pt;}
.ls4{letter-spacing:0.106480pt;}
.ls3{letter-spacing:95.988033pt;}
.ls2{letter-spacing:96.000503pt;}
.ws0{word-spacing:-35.456001pt;}
.ws1{word-spacing:0.000000pt;}
._a{margin-left:-15.786667pt;}
._6{margin-left:-11.050667pt;}
._9{margin-left:-9.472000pt;}
._5{margin-left:-8.213333pt;}
._8{margin-left:-7.040000pt;}
._3{margin-left:-6.144000pt;}
._2{margin-left:-4.608000pt;}
._1{margin-left:-3.456000pt;}
._b{margin-left:-2.291530pt;}
._7{width:1.525990pt;}
._0{width:2.602000pt;}
._4{width:95.988033pt;}
.fs1{font-size:128.000004pt;}
.fs4{font-size:149.333333pt;}
.fs0{font-size:192.000006pt;}
.fs3{font-size:213.333335pt;}
.fs2{font-size:384.000012pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:271.599098pt;}
.y1f{bottom:309.999099pt;}
.y1e{bottom:348.399151pt;}
.y1d{bottom:386.799102pt;}
.y73{bottom:418.504803pt;}
.y1c{bottom:426.479103pt;}
.yb{bottom:463.664384pt;}
.y72{bottom:508.104766pt;}
.ya{bottom:508.464366pt;}
.y1b{bottom:514.799206pt;}
.y1a{bottom:553.199147pt;}
.y9{bottom:553.264357pt;}
.y47{bottom:584.014308pt;}
.y19{bottom:591.599108pt;}
.y71{bottom:597.704749pt;}
.y8{bottom:598.064349pt;}
.y46{bottom:622.414209pt;}
.y18{bottom:629.999080pt;}
.y7{bottom:642.864340pt;}
.y45{bottom:660.814111pt;}
.y17{bottom:669.679071pt;}
.y70{bottom:687.304731pt;}
.y6{bottom:687.664331pt;}
.y44{bottom:699.213912pt;}
.y16{bottom:714.479112pt;}
.y43{bottom:738.893913pt;}
.y15{bottom:759.279174pt;}
.y6f{bottom:780.744714pt;}
.y5{bottom:781.104314pt;}
.y14{bottom:847.599187pt;}
.y13{bottom:885.999178pt;}
.y12{bottom:962.799170pt;}
.y11{bottom:1001.199161pt;}
.y10{bottom:1039.599163pt;}
.y6e{bottom:1068.280124pt;}
.yf{bottom:1079.279154pt;}
.y57{bottom:1092.649824pt;}
.y6d{bottom:1106.680125pt;}
.ye{bottom:1124.079145pt;}
.y56{bottom:1137.449866pt;}
.y6c{bottom:1145.080126pt;}
.yd{bottom:1168.879127pt;}
.y6b{bottom:1183.480127pt;}
.y42{bottom:1186.893527pt;}
.y6a{bottom:1221.880129pt;}
.y55{bottom:1227.049969pt;}
.y69{bottom:1260.280230pt;}
.y54{bottom:1271.850030pt;}
.yc{bottom:1281.519130pt;}
.y68{bottom:1298.680231pt;}
.y53{bottom:1316.650072pt;}
.y67{bottom:1337.080232pt;}
.y66{bottom:1375.480233pt;}
.y52{bottom:1406.250174pt;}
.y65{bottom:1415.160235pt;}
.y51{bottom:1451.050236pt;}
.y64{bottom:1490.680237pt;}
.y50{bottom:1495.850267pt;}
.y63{bottom:1529.080238pt;}
.y62{bottom:1567.480240pt;}
.y4f{bottom:1585.450340pt;}
.y61{bottom:1605.880341pt;}
.y4e{bottom:1630.250342pt;}
.y60{bottom:1644.280342pt;}
.y38{bottom:1674.360543pt;}
.y4d{bottom:1675.050323pt;}
.y5f{bottom:1683.960243pt;}
.y37{bottom:1719.160444pt;}
.y5e{bottom:1759.480246pt;}
.y36{bottom:1763.960346pt;}
.y4c{bottom:1764.650296pt;}
.y5d{bottom:1797.880347pt;}
.y4b{bottom:1809.450287pt;}
.y5c{bottom:1836.280348pt;}
.y41{bottom:1838.413448pt;}
.y35{bottom:1853.560249pt;}
.y4a{bottom:1854.250279pt;}
.y5b{bottom:1874.680349pt;}
.y40{bottom:1876.813449pt;}
.y34{bottom:1898.360300pt;}
.y49{bottom:1899.050270pt;}
.y5a{bottom:1913.080391pt;}
.y3f{bottom:1915.213451pt;}
.y33{bottom:1943.160352pt;}
.y59{bottom:1951.480352pt;}
.y3e{bottom:1953.613412pt;}
.y58{bottom:1991.160353pt;}
.y3d{bottom:1992.013353pt;}
.y48{bottom:1992.490253pt;}
.y3c{bottom:2030.413354pt;}
.y32{bottom:2031.480424pt;}
.y31{bottom:2069.880386pt;}
.y3b{bottom:2070.093356pt;}
.y30{bottom:2108.280357pt;}
.y2f{bottom:2146.680318pt;}
.y2e{bottom:2185.080259pt;}
.y2d{bottom:2223.480261pt;}
.y2c{bottom:2300.280163pt;}
.y2b{bottom:2338.680164pt;}
.y2a{bottom:2377.080105pt;}
.y29{bottom:2416.760067pt;}
.y28{bottom:2506.360050pt;}
.y27{bottom:2551.160031pt;}
.y26{bottom:2595.960022pt;}
.y25{bottom:2640.760014pt;}
.y3a{bottom:2666.359995pt;}
.y24{bottom:2685.560005pt;}
.y23{bottom:2730.359997pt;}
.y39{bottom:2759.799978pt;}
.y22{bottom:2775.159978pt;}
.y21{bottom:2823.799980pt;}
.y3{bottom:3121.978139pt;}
.y2{bottom:3172.444806pt;}
.y1{bottom:3226.751475pt;}
.y4{bottom:3323.840000pt;}
.h6{height:93.250003pt;}
.h2{height:96.812503pt;}
.h7{height:108.718750pt;}
.h5{height:108.791666pt;}
.h1{height:145.125005pt;}
.h4{height:155.312501pt;}
.h3{height:262.500008pt;}
.h0{height:3456.000000pt;}
.w0{width:4608.000000pt;}
.x0{left:0.000000pt;}
.x8{left:157.000005pt;}
.x9{left:158.453665pt;}
.xa{left:205.000007pt;}
.xb{left:209.671882pt;}
.xc{left:253.000008pt;}
.x4{left:1015.908783pt;}
.x1{left:1065.609434pt;}
.x11{left:1269.000041pt;}
.x15{left:1270.453701pt;}
.x2{left:1274.281241pt;}
.x14{left:1317.000042pt;}
.x12{left:1321.671917pt;}
.x13{left:1365.000044pt;}
.x3{left:2014.945364pt;}
.xd{left:2381.000076pt;}
.xe{left:2385.671951pt;}
.xf{left:2429.000078pt;}
.x10{left:3491.501312pt;}
.x5{left:3493.000112pt;}
.x6{left:3494.453772pt;}
.x7{left:3541.000113pt;}
}




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