
    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_2f81928501b921382ea44684.woff')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_a23767ea723facb69dac09ec.woff')format("woff");}.ff2{font-family:ff2;line-height:0.997000;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_844d6d95fa38891a3c75bc2f.woff')format("woff");}.ff3{font-family:ff3;line-height:0.997000;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_371df38f1cf0eec0ebdaea51.woff')format("woff");}.ff4{font-family:ff4;line-height:0.997000;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_c67e01418716b2de0211c37e.woff')format("woff");}.ff5{font-family:ff5;line-height:0.997000;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_a135e7be9853ad4e03e1f9b1.woff')format("woff");}.ff6{font-family:ff6;line-height:0.997000;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;}
.ff7{font-family:sans-serif;visibility:hidden;}
.ff8{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff9;src:url('chunks/assets/font_816544a66a745e9f789e3766.woff')format("woff");}.ff9{font-family:ff9;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.052830px;}
.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:-101.259400px;}
.ws3{word-spacing:-20.348819px;}
.ws1{word-spacing:-17.975542px;}
.ws4{word-spacing:-16.595999px;}
.ws2{word-spacing:-13.826542px;}
.ws5{word-spacing:0.000000px;}
._14{margin-left:-14.060493px;}
._3{margin-left:-6.211327px;}
._4{margin-left:-4.941610px;}
._2{margin-left:-2.474115px;}
._0{margin-left:-1.448153px;}
._1{width:1.037896px;}
._b{width:2.124732px;}
._9{width:3.376729px;}
._a{width:5.039193px;}
._10{width:6.342485px;}
._7{width:7.839355px;}
._8{width:8.987862px;}
._d{width:12.295413px;}
._c{width:13.947680px;}
._12{width:18.888822px;}
._13{width:19.928705px;}
._11{width:21.107720px;}
._e{width:45.017545px;}
._f{width:46.101218px;}
._5{width:138.603779px;}
._6{width:202.066077px;}
.fc3{color:transparent;}
.fc2{color:rgb(58,161,126);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs7{font-size:58.454997px;}
.fs5{font-size:59.984997px;}
.fs6{font-size:65.969996px;}
.fs3{font-size:71.999997px;}
.fs1{font-size:77.984997px;}
.fs2{font-size:83.745001px;}
.fs9{font-size:83.969997px;}
.fsa{font-size:89.999996px;}
.fs8{font-size:95.984996px;}
.fs4{font-size:107.999996px;}
.fs0{font-size:160.474485px;}
.y0{bottom:0.000000px;}
.yd{bottom:0.000008px;}
.y32{bottom:5.917192px;}
.y51{bottom:8.081892px;}
.y13{bottom:12.374999px;}
.y7{bottom:13.499999px;}
.y4b{bottom:22.499999px;}
.y50{bottom:28.331891px;}
.y12{bottom:37.124998px;}
.y6{bottom:40.499998px;}
.y4f{bottom:48.581890px;}
.y11{bottom:61.874997px;}
.y5{bottom:67.499997px;}
.y4e{bottom:68.831889px;}
.y1b{bottom:86.624996px;}
.y4{bottom:94.499996px;}
.y2{bottom:94.908078px;}
.y24{bottom:98.457008px;}
.y1a{bottom:111.374995px;}
.y23{bottom:118.707007px;}
.yc{bottom:121.499995px;}
.y19{bottom:136.124994px;}
.y22{bottom:138.957006px;}
.yb{bottom:148.499994px;}
.y21{bottom:159.207005px;}
.y18{bottom:160.874993px;}
.ya{bottom:175.499993px;}
.y20{bottom:179.457005px;}
.y1f{bottom:198.956944px;}
.y9{bottom:202.499992px;}
.y55{bottom:222.956883px;}
.y16{bottom:229.499990px;}
.y54{bottom:243.206882px;}
.y53{bottom:263.456881px;}
.y52{bottom:283.706880px;}
.y4d{bottom:303.319679px;}
.y2e{bottom:340.069378px;}
.y2d{bottom:360.319377px;}
.y2c{bottom:380.569376px;}
.y2b{bottom:400.819375px;}
.y2a{bottom:421.069374px;}
.y30{bottom:442.787490px;}
.y49{bottom:482.312608px;}
.y48{bottom:509.312607px;}
.y47{bottom:536.312606px;}
.y46{bottom:563.312605px;}
.y45{bottom:590.312603px;}
.y44{bottom:617.312602px;}
.y43{bottom:644.312601px;}
.y42{bottom:671.312600px;}
.y41{bottom:707.762599px;}
.y40{bottom:765.587416px;}
.y3f{bottom:792.587415px;}
.y3e{bottom:819.587414px;}
.y3d{bottom:846.587413px;}
.y3c{bottom:873.587412px;}
.y3b{bottom:917.912590px;}
.y8{bottom:972.248331px;}
.y3a{bottom:1209.416782px;}
.y15{bottom:1254.885255px;}
.y17{bottom:1516.395257px;}
.y14{bottom:1701.517689px;}
.y10{bottom:1774.650246px;}
.yf{bottom:1863.022790px;}
.ye{bottom:1943.341875px;}
.y3{bottom:1988.802429px;}
.y31{bottom:2115.899920px;}
.y4a{bottom:2181.659068px;}
.y39{bottom:2261.984101px;}
.y38{bottom:2286.734100px;}
.y37{bottom:2311.484098px;}
.y36{bottom:2336.234097px;}
.y35{bottom:2360.984096px;}
.y34{bottom:2385.734095px;}
.y33{bottom:2410.484094px;}
.y29{bottom:2466.659075px;}
.y28{bottom:2489.159074px;}
.y27{bottom:2511.659073px;}
.y26{bottom:2534.159072px;}
.y25{bottom:2556.659071px;}
.y2f{bottom:2580.547086px;}
.y1{bottom:2599.739899px;}
.y4c{bottom:2621.025442px;}
.y1e{bottom:2665.167433px;}
.y1d{bottom:2702.292432px;}
.y1c{bottom:2739.417430px;}
.h14{height:25.199999px;}
.h11{height:48.283827px;}
.hf{height:49.547608px;}
.h10{height:54.491217px;}
.h12{height:55.532247px;}
.hb{height:59.471998px;}
.h16{height:62.999997px;}
.h5{height:64.415607px;}
.h9{height:67.499997px;}
.h8{height:69.173371px;}
.h15{height:69.359217px;}
.h17{height:74.339997px;}
.h13{height:79.283607px;}
.ha{height:86.624996px;}
.he{height:89.207996px;}
.h4{height:121.499995px;}
.h3{height:132.551925px;}
.h2{height:185.399992px;}
.hd{height:185.624992px;}
.h6{height:229.499990px;}
.hc{height:256.499989px;}
.h7{height:2812.499883px;}
.h0{height:2812.499891px;}
.h1{height:2812.500000px;}
.w1{width:190.079992px;}
.w6{width:247.679990px;}
.w4{width:759.374968px;}
.w5{width:782.999967px;}
.w2{width:836.999965px;}
.w7{width:839.249965px;}
.w3{width:899.999963px;}
.w0{width:900.000000px;}
.x0{left:0.000000px;}
.x8{left:4.500000px;}
.xd{left:20.385588px;}
.xb{left:22.154880px;}
.xc{left:23.652608px;}
.x2{left:30.405703px;}
.x1{left:32.039999px;}
.x5{left:33.565975px;}
.x4{left:37.634764px;}
.x3{left:39.324291px;}
.x15{left:60.442751px;}
.x14{left:63.238880px;}
.x6{left:86.963256px;}
.x9{left:92.485357px;}
.x7{left:96.681517px;}
.x13{left:104.759996px;}
.x16{left:183.234367px;}
.x17{left:252.867820px;}
.xa{left:257.841047px;}
.xe{left:468.495332px;}
.xf{left:647.387902px;}
.x10{left:661.995329px;}
.x11{left:754.930867px;}
.x12{left:769.538294px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.046960pt;}
.ws0{word-spacing:-90.008356pt;}
.ws3{word-spacing:-18.087839pt;}
.ws1{word-spacing:-15.978259pt;}
.ws4{word-spacing:-14.751999pt;}
.ws2{word-spacing:-12.290259pt;}
.ws5{word-spacing:0.000000pt;}
._14{margin-left:-12.498216pt;}
._3{margin-left:-5.521180pt;}
._4{margin-left:-4.392543pt;}
._2{margin-left:-2.199214pt;}
._0{margin-left:-1.287247pt;}
._1{width:0.922574pt;}
._b{width:1.888650pt;}
._9{width:3.001537pt;}
._a{width:4.479282pt;}
._10{width:5.637764pt;}
._7{width:6.968315pt;}
._8{width:7.989211pt;}
._d{width:10.929256pt;}
._c{width:12.397938pt;}
._12{width:16.790064pt;}
._13{width:17.714404pt;}
._11{width:18.762418pt;}
._e{width:40.015596pt;}
._f{width:40.978860pt;}
._5{width:123.203359pt;}
._6{width:179.614291pt;}
.fs7{font-size:51.959997pt;}
.fs5{font-size:53.319997pt;}
.fs6{font-size:58.639997pt;}
.fs3{font-size:63.999997pt;}
.fs1{font-size:69.319997pt;}
.fs2{font-size:74.440001pt;}
.fs9{font-size:74.639997pt;}
.fsa{font-size:79.999997pt;}
.fs8{font-size:85.319996pt;}
.fs4{font-size:95.999996pt;}
.fs0{font-size:142.643987pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:0.000007pt;}
.y32{bottom:5.259726pt;}
.y51{bottom:7.183904pt;}
.y13{bottom:11.000000pt;}
.y7{bottom:12.000000pt;}
.y4b{bottom:19.999999pt;}
.y50{bottom:25.183903pt;}
.y12{bottom:32.999999pt;}
.y6{bottom:35.999999pt;}
.y4f{bottom:43.183902pt;}
.y11{bottom:54.999998pt;}
.y5{bottom:59.999997pt;}
.y4e{bottom:61.183901pt;}
.y1b{bottom:76.999997pt;}
.y4{bottom:83.999997pt;}
.y2{bottom:84.362736pt;}
.y24{bottom:87.517340pt;}
.y1a{bottom:98.999996pt;}
.y23{bottom:105.517340pt;}
.yc{bottom:107.999995pt;}
.y19{bottom:120.999995pt;}
.y22{bottom:123.517339pt;}
.yb{bottom:131.999994pt;}
.y21{bottom:141.517338pt;}
.y18{bottom:142.999994pt;}
.ya{bottom:155.999994pt;}
.y20{bottom:159.517337pt;}
.y1f{bottom:176.850617pt;}
.y9{bottom:179.999992pt;}
.y55{bottom:198.183896pt;}
.y16{bottom:203.999991pt;}
.y54{bottom:216.183895pt;}
.y53{bottom:234.183894pt;}
.y52{bottom:252.183893pt;}
.y4d{bottom:269.617493pt;}
.y2e{bottom:302.283891pt;}
.y2d{bottom:320.283891pt;}
.y2c{bottom:338.283890pt;}
.y2b{bottom:356.283889pt;}
.y2a{bottom:374.283888pt;}
.y30{bottom:393.588880pt;}
.y49{bottom:428.722318pt;}
.y48{bottom:452.722317pt;}
.y47{bottom:476.722316pt;}
.y46{bottom:500.722315pt;}
.y45{bottom:524.722314pt;}
.y44{bottom:548.722313pt;}
.y43{bottom:572.722312pt;}
.y42{bottom:596.722311pt;}
.y41{bottom:629.122310pt;}
.y40{bottom:680.522148pt;}
.y3f{bottom:704.522147pt;}
.y3e{bottom:728.522146pt;}
.y3d{bottom:752.522145pt;}
.y3c{bottom:776.522144pt;}
.y3b{bottom:815.922302pt;}
.y8{bottom:864.220739pt;}
.y3a{bottom:1075.037139pt;}
.y15{bottom:1115.453560pt;}
.y17{bottom:1347.906895pt;}
.y14{bottom:1512.460168pt;}
.y10{bottom:1577.466885pt;}
.yf{bottom:1656.020258pt;}
.ye{bottom:1727.415000pt;}
.y3{bottom:1767.824381pt;}
.y31{bottom:1880.799928pt;}
.y4a{bottom:1939.252505pt;}
.y39{bottom:2010.652534pt;}
.y38{bottom:2032.652533pt;}
.y37{bottom:2054.652532pt;}
.y36{bottom:2076.652531pt;}
.y35{bottom:2098.652530pt;}
.y34{bottom:2120.652529pt;}
.y33{bottom:2142.652528pt;}
.y29{bottom:2192.585845pt;}
.y28{bottom:2212.585844pt;}
.y27{bottom:2232.585843pt;}
.y26{bottom:2252.585842pt;}
.y25{bottom:2272.585841pt;}
.y2f{bottom:2293.819632pt;}
.y1{bottom:2310.879911pt;}
.y4c{bottom:2329.800393pt;}
.y1e{bottom:2369.037719pt;}
.y1d{bottom:2402.037717pt;}
.y1c{bottom:2435.037716pt;}
.h14{height:22.399999pt;}
.h11{height:42.918958pt;}
.hf{height:44.042318pt;}
.h10{height:48.436637pt;}
.h12{height:49.361997pt;}
.hb{height:52.863998pt;}
.h16{height:55.999998pt;}
.h5{height:57.258318pt;}
.h9{height:59.999997pt;}
.h8{height:61.487441pt;}
.h15{height:61.652637pt;}
.h17{height:66.079997pt;}
.h13{height:70.474317pt;}
.ha{height:76.999997pt;}
.he{height:79.295997pt;}
.h4{height:107.999996pt;}
.h3{height:117.823933pt;}
.h2{height:164.799993pt;}
.hd{height:164.999993pt;}
.h6{height:203.999991pt;}
.hc{height:227.999990pt;}
.h7{height:2499.999896pt;}
.h0{height:2499.999903pt;}
.h1{height:2500.000000pt;}
.w1{width:168.959993pt;}
.w6{width:220.159991pt;}
.w4{width:674.999972pt;}
.w5{width:695.999971pt;}
.w2{width:743.999969pt;}
.w7{width:745.999969pt;}
.w3{width:799.999967pt;}
.w0{width:800.000000pt;}
.x0{left:0.000000pt;}
.x8{left:4.000000pt;}
.xd{left:18.120523pt;}
.xb{left:19.693227pt;}
.xc{left:21.024540pt;}
.x2{left:27.027292pt;}
.x1{left:28.479999pt;}
.x5{left:29.836422pt;}
.x4{left:33.453124pt;}
.x3{left:34.954925pt;}
.x15{left:53.726890pt;}
.x14{left:56.212338pt;}
.x6{left:77.300672pt;}
.x9{left:82.209206pt;}
.x7{left:85.939126pt;}
.x13{left:93.119996pt;}
.x16{left:162.874993pt;}
.x17{left:224.771395pt;}
.xa{left:229.192042pt;}
.xe{left:416.440295pt;}
.xf{left:575.455913pt;}
.x10{left:588.440293pt;}
.x11{left:671.049659pt;}
.x12{left:684.034039pt;}
}




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