
    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_da1db1530e7a41b1cfeb76a0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.028000;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_d74b55f720230d6c438d3423.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.946000;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_13b9a1587dd25b00d78306f1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.946000;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_2fc94720a3817ac9f94258dc.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.041000;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_22db79f6e67f801400803841.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.946000;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_bc5a2cbb00b0cfe366ecdb59.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.023000;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:ff7;src:url('chunks/assets/font_06d4b58685c2406a323475d0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.989000;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:ff8;src:url('chunks/assets/font_eff5f1ca265c7e4bba030426.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.957000;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:ff9;src:url('chunks/assets/font_deee41cdeb93d65a787885b3.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.929000;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;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.014265px;}
.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:-102.139988px;}
.ws1{word-spacing:-60.289388px;}
.ws2{word-spacing:-42.391965px;}
.ws5{word-spacing:-34.309668px;}
.ws4{word-spacing:-34.022820px;}
.ws3{word-spacing:-32.299683px;}
.ws6{word-spacing:0.000000px;}
._e{margin-left:-28.124425px;}
._4{margin-left:-7.480199px;}
._2{margin-left:-6.264505px;}
._7{margin-left:-4.141607px;}
._1{margin-left:-3.131744px;}
._0{margin-left:-1.006126px;}
._8{width:1.492288px;}
._d{width:2.894485px;}
._5{width:5.766586px;}
._c{width:31.159459px;}
._6{width:70.112696px;}
._9{width:71.393845px;}
._3{width:130.464084px;}
._a{width:159.858015px;}
._b{width:160.894430px;}
.fc6{color:transparent;}
.fc5{color:rgb(17,86,105);}
.fc3{color:rgb(166,14,51);}
.fc4{color:rgb(247,247,247);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(98,33,102);}
.fsd{font-size:126.478885px;}
.fsf{font-size:127.545234px;}
.fs3{font-size:128.422608px;}
.fse{font-size:160.694941px;}
.fs9{font-size:213.036706px;}
.fs5{font-size:216.852695px;}
.fs4{font-size:219.050824px;}
.fsc{font-size:235.510917px;}
.fs8{font-size:252.003790px;}
.fs7{font-size:252.007949px;}
.fs0{font-size:268.667401px;}
.fs2{font-size:299.979480px;}
.fs1{font-size:360.171895px;}
.fs6{font-size:389.847283px;}
.fsb{font-size:471.021833px;}
.fs10{font-size:474.775303px;}
.fsa{font-size:506.790061px;}
.y0{bottom:0.000000px;}
.y7{bottom:0.000119px;}
.yc{bottom:9.577881px;}
.y34{bottom:13.621406px;}
.y16{bottom:14.539269px;}
.yf{bottom:14.549139px;}
.y10{bottom:17.910118px;}
.y3b{bottom:18.591154px;}
.y2{bottom:20.534647px;}
.y4b{bottom:23.601885px;}
.y6{bottom:27.102519px;}
.y38{bottom:35.151937px;}
.y57{bottom:35.305570px;}
.y48{bottom:35.313304px;}
.y36{bottom:38.845372px;}
.y4a{bottom:60.692466px;}
.y23{bottom:63.637335px;}
.y3a{bottom:77.468883px;}
.y15{bottom:89.613495px;}
.y33{bottom:93.498921px;}
.y49{bottom:97.783047px;}
.y4d{bottom:135.760574px;}
.y5{bottom:152.849656px;}
.ye{bottom:158.151996px;}
.y14{bottom:164.687721px;}
.y32{bottom:173.376435px;}
.y4c{bottom:175.169316px;}
.y13{bottom:239.761948px;}
.y31{bottom:253.253949px;}
.y4{bottom:278.596793px;}
.y12{bottom:314.836174px;}
.y30{bottom:333.131464px;}
.y40{bottom:353.620605px;}
.y11{bottom:389.910400px;}
.y3f{bottom:390.711186px;}
.y2f{bottom:413.008978px;}
.y3e{bottom:427.801767px;}
.y3d{bottom:464.892347px;}
.y2e{bottom:492.886492px;}
.y46{bottom:504.729970px;}
.y2d{bottom:572.764007px;}
.yd{bottom:600.390094px;}
.y2c{bottom:652.641521px;}
.y2b{bottom:732.519035px;}
.y55{bottom:753.508430px;}
.y45{bottom:780.765325px;}
.y54{bottom:791.758091px;}
.y2a{bottom:812.396550px;}
.y44{bottom:817.855906px;}
.y53{bottom:830.007753px;}
.y43{bottom:854.946486px;}
.y42{bottom:892.037067px;}
.y29{bottom:892.274064px;}
.y1a{bottom:892.411642px;}
.y41{bottom:926.948781px;}
.y28{bottom:972.151578px;}
.y19{bottom:989.164694px;}
.y27{bottom:1052.029093px;}
.y18{bottom:1085.917746px;}
.y26{bottom:1131.906607px;}
.y17{bottom:1182.670797px;}
.y25{bottom:1211.784121px;}
.y52{bottom:1234.894934px;}
.y51{bottom:1271.985515px;}
.y50{bottom:1309.076096px;}
.y4f{bottom:1346.166677px;}
.y24{bottom:1361.430062px;}
.y3c{bottom:1376.550062px;}
.y4e{bottom:1387.779173px;}
.y47{bottom:1417.230060px;}
.y37{bottom:1739.430047px;}
.y56{bottom:2166.390029px;}
.y39{bottom:2242.350026px;}
.y35{bottom:2616.390010px;}
.y22{bottom:2655.049580px;}
.y1{bottom:2968.109995px;}
.y21{bottom:2996.374223px;}
.y20{bottom:3084.126991px;}
.y1f{bottom:3171.879759px;}
.yb{bottom:3323.429981px;}
.y1e{bottom:3394.762231px;}
.y1d{bottom:3482.514999px;}
.y1c{bottom:3570.267767px;}
.y1b{bottom:3658.020535px;}
.ya{bottom:3872.103726px;}
.y9{bottom:3976.732027px;}
.y8{bottom:4081.360327px;}
.y3{bottom:4268.789941px;}
.h8{height:39.239998px;}
.h2{height:89.639996px;}
.h1c{height:95.744516px;}
.h9{height:95.931688px;}
.h1e{height:96.551742px;}
.h1d{height:120.039121px;}
.h19{height:138.239994px;}
.h14{height:159.138419px;}
.h17{height:160.559993px;}
.h13{height:167.659887px;}
.h15{height:171.359993px;}
.h10{height:174.664152px;}
.h1a{height:182.049938px;}
.hd{height:182.589969px;}
.hb{height:184.440794px;}
.hf{height:188.249938px;}
.h11{height:194.798930px;}
.h3{height:209.023238px;}
.ha{height:211.679991px;}
.h7{height:224.084671px;}
.h5{height:280.213735px;}
.he{height:291.215920px;}
.h18{height:364.099877px;}
.h1f{height:367.001309px;}
.h4{height:373.679984px;}
.h16{height:391.748717px;}
.hc{height:442.799982px;}
.h12{height:1263.599947px;}
.h1b{height:1428.839940px;}
.h6{height:5055.749789px;}
.h0{height:5055.749908px;}
.h1{height:5055.750000px;}
.wa{width:55.439998px;}
.wf{width:68.399997px;}
.wb{width:70.199997px;}
.we{width:74.159997px;}
.w5{width:140.759994px;}
.wc{width:289.439988px;}
.w6{width:979.919959px;}
.w8{width:1248.374756px;}
.w9{width:1295.279946px;}
.wd{width:1845.359923px;}
.w7{width:1990.799917px;}
.w2{width:2048.039915px;}
.w3{width:2463.119897px;}
.w4{width:3576.374851px;}
.w0{width:3576.375000px;}
.w1{width:3576.750000px;}
.x0{left:0.000000px;}
.x2{left:1.645230px;}
.xf{left:26.185002px;}
.xb{left:43.425743px;}
.x9{left:69.962973px;}
.x10{left:133.559994px;}
.x1d{left:138.272122px;}
.x1c{left:161.381292px;}
.x5{left:211.319991px;}
.x3{left:213.119991px;}
.x1b{left:215.713198px;}
.xe{left:320.399987px;}
.x7{left:377.999984px;}
.x15{left:424.439982px;}
.x16{left:448.088975px;}
.x17{left:533.541222px;}
.x18{left:565.071837px;}
.x4{left:605.725319px;}
.x1{left:650.879973px;}
.xc{left:935.999961px;}
.x6{left:938.519961px;}
.x1a{left:948.884540px;}
.xd{left:1014.479958px;}
.x11{left:1029.871289px;}
.x1e{left:1065.239956px;}
.x13{left:1083.810987px;}
.x19{left:1181.159818px;}
.x14{left:1298.172756px;}
.x12{left:1352.509627px;}
.xa{left:2055.239914px;}
.x8{left:2070.994486px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.012680pt;}
.ws0{word-spacing:-90.791101pt;}
.ws1{word-spacing:-53.590567pt;}
.ws2{word-spacing:-37.681747pt;}
.ws5{word-spacing:-30.497483pt;}
.ws4{word-spacing:-30.242507pt;}
.ws3{word-spacing:-28.710829pt;}
.ws6{word-spacing:0.000000pt;}
._e{margin-left:-24.999489pt;}
._4{margin-left:-6.649066pt;}
._2{margin-left:-5.568449pt;}
._7{margin-left:-3.681428pt;}
._1{margin-left:-2.783773pt;}
._0{margin-left:-0.894335pt;}
._8{width:1.326478pt;}
._d{width:2.572875pt;}
._5{width:5.125854pt;}
._c{width:27.697297pt;}
._6{width:62.322396pt;}
._9{width:63.461196pt;}
._3{width:115.968075pt;}
._a{width:142.096014pt;}
._b{width:143.017271pt;}
.fsd{font-size:112.425675pt;}
.fsf{font-size:113.373542pt;}
.fs3{font-size:114.153429pt;}
.fse{font-size:142.839948pt;}
.fs9{font-size:189.365961pt;}
.fs5{font-size:192.757951pt;}
.fs4{font-size:194.711844pt;}
.fsc{font-size:209.343037pt;}
.fs8{font-size:224.003369pt;}
.fs7{font-size:224.007065pt;}
.fs0{font-size:238.815468pt;}
.fs2{font-size:266.648426pt;}
.fs1{font-size:320.152796pt;}
.fs6{font-size:346.530918pt;}
.fsb{font-size:418.686074pt;}
.fs10{font-size:422.022492pt;}
.fsa{font-size:450.480054pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:0.000106pt;}
.yc{bottom:8.513672pt;}
.y34{bottom:12.107917pt;}
.y16{bottom:12.923794pt;}
.yf{bottom:12.932568pt;}
.y10{bottom:15.920105pt;}
.y3b{bottom:16.525470pt;}
.y2{bottom:18.253020pt;}
.y4b{bottom:20.979453pt;}
.y6{bottom:24.091128pt;}
.y38{bottom:31.246166pt;}
.y57{bottom:31.382729pt;}
.y48{bottom:31.389604pt;}
.y36{bottom:34.529220pt;}
.y4a{bottom:53.948858pt;}
.y23{bottom:56.566520pt;}
.y3a{bottom:68.861230pt;}
.y15{bottom:79.656440pt;}
.y33{bottom:83.110152pt;}
.y49{bottom:86.918264pt;}
.y4d{bottom:120.676066pt;}
.y5{bottom:135.866361pt;}
.ye{bottom:140.579552pt;}
.y14{bottom:146.389086pt;}
.y32{bottom:154.112387pt;}
.y4c{bottom:155.706059pt;}
.y13{bottom:213.121731pt;}
.y31{bottom:225.114622pt;}
.y4{bottom:247.641594pt;}
.y12{bottom:279.854377pt;}
.y30{bottom:296.116857pt;}
.y40{bottom:314.329427pt;}
.y11{bottom:346.587023pt;}
.y3f{bottom:347.298832pt;}
.y2f{bottom:367.119092pt;}
.y3e{bottom:380.268237pt;}
.y3d{bottom:413.237642pt;}
.y2e{bottom:438.121327pt;}
.y46{bottom:448.648862pt;}
.y2d{bottom:509.123562pt;}
.yd{bottom:533.680084pt;}
.y2c{bottom:580.125796pt;}
.y2b{bottom:651.128031pt;}
.y55{bottom:669.785271pt;}
.y45{bottom:694.013622pt;}
.y54{bottom:703.784970pt;}
.y2a{bottom:722.130266pt;}
.y44{bottom:726.983027pt;}
.y53{bottom:737.784669pt;}
.y43{bottom:759.952432pt;}
.y42{bottom:792.921837pt;}
.y29{bottom:793.132501pt;}
.y1a{bottom:793.254793pt;}
.y41{bottom:823.954472pt;}
.y28{bottom:864.134736pt;}
.y19{bottom:879.257506pt;}
.y27{bottom:935.136971pt;}
.y18{bottom:965.260218pt;}
.y26{bottom:1006.139206pt;}
.y17{bottom:1051.262931pt;}
.y25{bottom:1077.141441pt;}
.y52{bottom:1097.684386pt;}
.y51{bottom:1130.653791pt;}
.y50{bottom:1163.623196pt;}
.y4f{bottom:1196.592601pt;}
.y24{bottom:1210.160055pt;}
.y3c{bottom:1223.600055pt;}
.y4e{bottom:1233.581487pt;}
.y47{bottom:1259.760053pt;}
.y37{bottom:1546.160041pt;}
.y56{bottom:1925.680026pt;}
.y39{bottom:1993.200023pt;}
.y35{bottom:2325.680009pt;}
.y22{bottom:2360.044071pt;}
.y1{bottom:2638.319996pt;}
.y21{bottom:2663.443754pt;}
.y20{bottom:2741.446214pt;}
.y1f{bottom:2819.448675pt;}
.yb{bottom:2954.159983pt;}
.y1e{bottom:3017.566428pt;}
.y1d{bottom:3095.568888pt;}
.y1c{bottom:3173.571348pt;}
.y1b{bottom:3251.573809pt;}
.ya{bottom:3441.869979pt;}
.y9{bottom:3534.872913pt;}
.y8{bottom:3627.875846pt;}
.y3{bottom:3794.479948pt;}
.h8{height:34.879999pt;}
.h2{height:79.679997pt;}
.h1c{height:85.106236pt;}
.h9{height:85.272612pt;}
.h1e{height:85.823771pt;}
.h1d{height:106.701441pt;}
.h19{height:122.879995pt;}
.h14{height:141.456373pt;}
.h17{height:142.719994pt;}
.h13{height:149.031011pt;}
.h15{height:152.319994pt;}
.h10{height:155.257024pt;}
.h1a{height:161.822168pt;}
.hd{height:162.302195pt;}
.hb{height:163.947372pt;}
.hf{height:167.333278pt;}
.h11{height:173.154604pt;}
.h3{height:185.798434pt;}
.ha{height:188.159992pt;}
.h7{height:199.186375pt;}
.h5{height:249.078875pt;}
.he{height:258.858596pt;}
.h18{height:323.644335pt;}
.h1f{height:326.223386pt;}
.h4{height:332.159986pt;}
.h16{height:348.221082pt;}
.hc{height:393.599984pt;}
.h12{height:1123.199953pt;}
.h1b{height:1270.079947pt;}
.h6{height:4493.999813pt;}
.h0{height:4493.999919pt;}
.h1{height:4494.000000pt;}
.wa{width:49.279998pt;}
.wf{width:60.799997pt;}
.wb{width:62.399997pt;}
.we{width:65.919997pt;}
.w5{width:125.119995pt;}
.wc{width:257.279989pt;}
.w6{width:871.039964pt;}
.w8{width:1109.666450pt;}
.w9{width:1151.359952pt;}
.wd{width:1640.319932pt;}
.w7{width:1769.599926pt;}
.w2{width:1820.479924pt;}
.w3{width:2189.439909pt;}
.w4{width:3178.999868pt;}
.w0{width:3179.000000pt;}
.w1{width:3179.333333pt;}
.x0{left:0.000000pt;}
.x2{left:1.462427pt;}
.xf{left:23.275557pt;}
.xb{left:38.600660pt;}
.x9{left:62.189310pt;}
.x10{left:118.719995pt;}
.x1d{left:122.908553pt;}
.x1c{left:143.450038pt;}
.x5{left:187.839992pt;}
.x3{left:189.439992pt;}
.x1b{left:191.745065pt;}
.xe{left:284.799988pt;}
.x7{left:335.999986pt;}
.x15{left:377.279984pt;}
.x16{left:398.301311pt;}
.x17{left:474.258864pt;}
.x18{left:502.286078pt;}
.x4{left:538.422506pt;}
.x1{left:578.559976pt;}
.xc{left:831.999965pt;}
.x6{left:834.239965pt;}
.x1a{left:843.452925pt;}
.xd{left:901.759962pt;}
.x11{left:915.441146pt;}
.x1e{left:946.879961pt;}
.x13{left:963.387544pt;}
.x19{left:1049.919838pt;}
.x14{left:1153.931339pt;}
.x12{left:1202.230780pt;}
.xa{left:1826.879924pt;}
.x8{left:1840.883987pt;}
}




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