
    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_c15d2fc3bd618b1d587f4378.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.987000;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_64d2fe4a278d6ad777b71df8.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.980000;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_eee62ef63ea60b47c042837c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.954000;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_0c184eda915ecc44f4d6413f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.939000;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_a432648429ca51381f287a9e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.952000;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_798b0373c99af4098020e450.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.959000;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;}
.v1{vertical-align:10.798800px;}
.v2{vertical-align:508.755000px;}
.ls2{letter-spacing:-2.880000px;}
.ls1{letter-spacing:-1.260000px;}
.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:-66.240000px;}
.ws6{word-spacing:-64.800000px;}
.ws7{word-spacing:-61.920000px;}
.ws8{word-spacing:-55.350000px;}
.ws2{word-spacing:-46.920000px;}
.ws3{word-spacing:-45.900000px;}
.ws5{word-spacing:-33.120000px;}
.ws4{word-spacing:-32.400000px;}
.ws9{word-spacing:0.000000px;}
.wsa{word-spacing:1.260000px;}
.ws0{word-spacing:99.137400px;}
._9{margin-left:-19.620000px;}
._11{margin-left:-14.580000px;}
._5{margin-left:-11.520000px;}
._c{margin-left:-9.840000px;}
._b{margin-left:-8.820000px;}
._8{margin-left:-7.320000px;}
._a{margin-left:-6.120000px;}
._6{margin-left:-4.080000px;}
._4{margin-left:-3.060000px;}
._2{margin-left:-1.260000px;}
._3{width:1.260000px;}
._f{width:2.880000px;}
._7{width:4.080000px;}
._10{width:5.160000px;}
._0{width:84.043440px;}
._d{width:89.376000px;}
._e{width:177.408000px;}
._1{width:2917.932360px;}
.fcb{color:rgb(83,94,180);}
.fca{color:rgb(73,188,57);}
.fc9{color:rgb(243,91,111);}
.fc6{color:rgb(255,255,255);}
.fc4{color:rgb(35,31,32);}
.fcc{color:transparent;}
.fc8{color:rgb(77,127,201);}
.fc3{color:rgb(86,90,91);}
.fc2{color:rgb(224,242,201);}
.fc7{color:rgb(213,230,32);}
.fc5{color:rgb(74,76,80);}
.fc1{color:rgb(26,50,81);}
.fc0{color:rgb(113,194,45);}
.fsa{font-size:126.000000px;}
.fs9{font-size:144.000000px;}
.fs8{font-size:168.000000px;}
.fs1{font-size:191.880000px;}
.fs7{font-size:204.000000px;}
.fs2{font-size:216.000000px;}
.fsb{font-size:246.000000px;}
.fs3{font-size:252.000000px;}
.fs6{font-size:288.000000px;}
.fs0{font-size:324.000000px;}
.fs5{font-size:360.000000px;}
.fs4{font-size:720.000000px;}
.y0{bottom:0.000000px;}
.y1d{bottom:148.322100px;}
.y1b{bottom:157.182900px;}
.y1c{bottom:198.722100px;}
.y1a{bottom:232.203900px;}
.y19{bottom:307.224900px;}
.y18{bottom:382.245900px;}
.y17{bottom:481.137450px;}
.y16{bottom:556.158450px;}
.y2a{bottom:621.705750px;}
.y15{bottom:631.179450px;}
.y2c{bottom:639.553350px;}
.y29{bottom:664.905750px;}
.y2b{bottom:682.753350px;}
.y14{bottom:706.200450px;}
.y13{bottom:819.602250px;}
.y12{bottom:894.623250px;}
.y11{bottom:1005.079800px;}
.y10{bottom:1080.100800px;}
.y25{bottom:1124.337300px;}
.yf{bottom:1155.121800px;}
.y24{bottom:1167.537300px;}
.y23{bottom:1210.737300px;}
.y2e{bottom:1224.620850px;}
.ye{bottom:1230.142800px;}
.y2d{bottom:1267.820850px;}
.y22{bottom:1329.186900px;}
.yd{bottom:1345.365000px;}
.y21{bottom:1372.386900px;}
.y20{bottom:1415.586900px;}
.yc{bottom:1420.386000px;}
.y28{bottom:1489.589700px;}
.yb{bottom:1495.407000px;}
.y27{bottom:1527.389700px;}
.y26{bottom:1565.188500px;}
.ya{bottom:1570.428000px;}
.y9{bottom:1645.449000px;}
.y8{bottom:1720.470000px;}
.y1f{bottom:1757.511600px;}
.y7{bottom:1827.420450px;}
.y1e{bottom:1832.535600px;}
.y34{bottom:2059.087050px;}
.y33{bottom:2134.117050px;}
.y32{bottom:2209.147050px;}
.y31{bottom:2284.177050px;}
.y30{bottom:2359.207050px;}
.y2f{bottom:2490.615300px;}
.y3b{bottom:2644.807050px;}
.y3a{bottom:2695.207050px;}
.y39{bottom:2745.607050px;}
.y38{bottom:2796.007050px;}
.y37{bottom:2846.407050px;}
.y36{bottom:2896.807050px;}
.y35{bottom:2947.207050px;}
.y44{bottom:3783.159150px;}
.y43{bottom:3858.189150px;}
.y42{bottom:3933.219150px;}
.y41{bottom:4008.249150px;}
.y40{bottom:4083.279150px;}
.y3f{bottom:4158.309150px;}
.y3e{bottom:4233.339150px;}
.y3d{bottom:4308.369150px;}
.y3c{bottom:4432.038600px;}
.y2{bottom:4610.709300px;}
.y4{bottom:4647.817350px;}
.y5{bottom:4714.326450px;}
.y6{bottom:4733.515200px;}
.y1{bottom:4965.849600px;}
.y3{bottom:4968.864300px;}
.h12{height:97.272000px;}
.h10{height:106.272000px;}
.h11{height:111.168000px;}
.hd{height:122.808000px;}
.hc{height:129.696000px;}
.ha{height:149.124000px;}
.h9{height:150.552000px;}
.hb{height:157.488000px;}
.h5{height:166.752000px;}
.h3{height:177.550800px;}
.h15{height:179.826000px;}
.h14{height:184.500000px;}
.h4{height:185.976000px;}
.h13{height:189.912000px;}
.he{height:212.256000px;}
.hf{height:212.544000px;}
.h8{height:222.336000px;}
.h2{height:243.000000px;}
.h7{height:265.680000px;}
.h6{height:774.435000px;}
.h0{height:5055.585000px;}
.h1{height:5055.750000px;}
.w0{width:3575.910000px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.x5{left:80.630850px;}
.x1a{left:134.570850px;}
.x8{left:139.087650px;}
.x18{left:159.663600px;}
.x1b{left:166.202700px;}
.x19{left:200.426550px;}
.xb{left:246.707850px;}
.x15{left:266.346000px;}
.xa{left:289.763850px;}
.x14{left:301.626000px;}
.x9{left:326.159850px;}
.x17{left:998.799600px;}
.x16{left:1088.223600px;}
.x4{left:1190.635950px;}
.x10{left:1651.978200px;}
.xe{left:1658.261250px;}
.x12{left:1663.452450px;}
.x13{left:1673.604450px;}
.xd{left:1682.417250px;}
.x11{left:1713.497700px;}
.xf{left:1742.771550px;}
.xc{left:1771.373250px;}
.x6{left:2233.252500px;}
.x7{left:2388.708300px;}
.x2{left:2472.360300px;}
.x3{left:3235.645800px;}
.x1{left:3310.440000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:9.598933pt;}
.v2{vertical-align:452.226667pt;}
.ls2{letter-spacing:-2.560000pt;}
.ls1{letter-spacing:-1.120000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-58.880000pt;}
.ws6{word-spacing:-57.600000pt;}
.ws7{word-spacing:-55.040000pt;}
.ws8{word-spacing:-49.200000pt;}
.ws2{word-spacing:-41.706667pt;}
.ws3{word-spacing:-40.800000pt;}
.ws5{word-spacing:-29.440000pt;}
.ws4{word-spacing:-28.800000pt;}
.ws9{word-spacing:0.000000pt;}
.wsa{word-spacing:1.120000pt;}
.ws0{word-spacing:88.122133pt;}
._9{margin-left:-17.440000pt;}
._11{margin-left:-12.960000pt;}
._5{margin-left:-10.240000pt;}
._c{margin-left:-8.746667pt;}
._b{margin-left:-7.840000pt;}
._8{margin-left:-6.506667pt;}
._a{margin-left:-5.440000pt;}
._6{margin-left:-3.626667pt;}
._4{margin-left:-2.720000pt;}
._2{margin-left:-1.120000pt;}
._3{width:1.120000pt;}
._f{width:2.560000pt;}
._7{width:3.626667pt;}
._10{width:4.586667pt;}
._0{width:74.705280pt;}
._d{width:79.445333pt;}
._e{width:157.696000pt;}
._1{width:2593.717653pt;}
.fsa{font-size:112.000000pt;}
.fs9{font-size:128.000000pt;}
.fs8{font-size:149.333333pt;}
.fs1{font-size:170.560000pt;}
.fs7{font-size:181.333333pt;}
.fs2{font-size:192.000000pt;}
.fsb{font-size:218.666667pt;}
.fs3{font-size:224.000000pt;}
.fs6{font-size:256.000000pt;}
.fs0{font-size:288.000000pt;}
.fs5{font-size:320.000000pt;}
.fs4{font-size:640.000000pt;}
.y0{bottom:0.000000pt;}
.y1d{bottom:131.841867pt;}
.y1b{bottom:139.718133pt;}
.y1c{bottom:176.641867pt;}
.y1a{bottom:206.403467pt;}
.y19{bottom:273.088800pt;}
.y18{bottom:339.774133pt;}
.y17{bottom:427.677733pt;}
.y16{bottom:494.363067pt;}
.y2a{bottom:552.627333pt;}
.y15{bottom:561.048400pt;}
.y2c{bottom:568.491867pt;}
.y29{bottom:591.027333pt;}
.y2b{bottom:606.891867pt;}
.y14{bottom:627.733733pt;}
.y13{bottom:728.535333pt;}
.y12{bottom:795.220667pt;}
.y11{bottom:893.404267pt;}
.y10{bottom:960.089600pt;}
.y25{bottom:999.410933pt;}
.yf{bottom:1026.774933pt;}
.y24{bottom:1037.810933pt;}
.y23{bottom:1076.210933pt;}
.y2e{bottom:1088.551867pt;}
.ye{bottom:1093.460267pt;}
.y2d{bottom:1126.951867pt;}
.y22{bottom:1181.499467pt;}
.yd{bottom:1195.880000pt;}
.y21{bottom:1219.899467pt;}
.y20{bottom:1258.299467pt;}
.yc{bottom:1262.565333pt;}
.y28{bottom:1324.079733pt;}
.yb{bottom:1329.250667pt;}
.y27{bottom:1357.679733pt;}
.y26{bottom:1391.278667pt;}
.ya{bottom:1395.936000pt;}
.y9{bottom:1462.621333pt;}
.y8{bottom:1529.306667pt;}
.y1f{bottom:1562.232533pt;}
.y7{bottom:1624.373733pt;}
.y1e{bottom:1628.920533pt;}
.y34{bottom:1830.299600pt;}
.y33{bottom:1896.992933pt;}
.y32{bottom:1963.686267pt;}
.y31{bottom:2030.379600pt;}
.y30{bottom:2097.072933pt;}
.y2f{bottom:2213.880267pt;}
.y3b{bottom:2350.939600pt;}
.y3a{bottom:2395.739600pt;}
.y39{bottom:2440.539600pt;}
.y38{bottom:2485.339600pt;}
.y37{bottom:2530.139600pt;}
.y36{bottom:2574.939600pt;}
.y35{bottom:2619.739600pt;}
.y44{bottom:3362.808133pt;}
.y43{bottom:3429.501467pt;}
.y42{bottom:3496.194800pt;}
.y41{bottom:3562.888133pt;}
.y40{bottom:3629.581467pt;}
.y3f{bottom:3696.274800pt;}
.y3e{bottom:3762.968133pt;}
.y3d{bottom:3829.661467pt;}
.y3c{bottom:3939.589867pt;}
.y2{bottom:4098.408267pt;}
.y4{bottom:4131.393200pt;}
.y5{bottom:4190.512400pt;}
.y6{bottom:4207.569067pt;}
.y1{bottom:4414.088533pt;}
.y3{bottom:4416.768267pt;}
.h12{height:86.464000pt;}
.h10{height:94.464000pt;}
.h11{height:98.816000pt;}
.hd{height:109.162667pt;}
.hc{height:115.285333pt;}
.ha{height:132.554667pt;}
.h9{height:133.824000pt;}
.hb{height:139.989333pt;}
.h5{height:148.224000pt;}
.h3{height:157.822933pt;}
.h15{height:159.845333pt;}
.h14{height:164.000000pt;}
.h4{height:165.312000pt;}
.h13{height:168.810667pt;}
.he{height:188.672000pt;}
.hf{height:188.928000pt;}
.h8{height:197.632000pt;}
.h2{height:216.000000pt;}
.h7{height:236.160000pt;}
.h6{height:688.386667pt;}
.h0{height:4493.853333pt;}
.h1{height:4494.000000pt;}
.w0{width:3178.586667pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x5{left:71.671867pt;}
.x1a{left:119.618533pt;}
.x8{left:123.633467pt;}
.x18{left:141.923200pt;}
.x1b{left:147.735733pt;}
.x19{left:178.156933pt;}
.xb{left:219.295867pt;}
.x15{left:236.752000pt;}
.xa{left:257.567867pt;}
.x14{left:268.112000pt;}
.x9{left:289.919867pt;}
.x17{left:887.821867pt;}
.x16{left:967.309867pt;}
.x4{left:1058.343067pt;}
.x10{left:1468.425067pt;}
.xe{left:1474.010000pt;}
.x12{left:1478.624400pt;}
.x13{left:1487.648400pt;}
.xd{left:1495.482000pt;}
.x11{left:1523.109067pt;}
.xf{left:1549.130267pt;}
.xc{left:1574.554000pt;}
.x6{left:1985.113333pt;}
.x7{left:2123.296267pt;}
.x2{left:2197.653600pt;}
.x3{left:2876.129600pt;}
.x1{left:2942.613333pt;}
}




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