
    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_f13a3165d88610dc2de1d183.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.750000;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_b40321d2fa423d9b1e8a7529.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.026367;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_bab48b8718e703bf32123750.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.940000;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_26551b97d28fc10de9d9ee56.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.968262;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_658c746175b38f3869b45068.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.031738;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_4488814af04eaf13599f70d0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942000;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(0.250180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250180,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.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;}
}
.ws4{word-spacing:-17.496000px;}
.ws1{word-spacing:-16.434000px;}
.ws3{word-spacing:-16.368000px;}
.ws0{word-spacing:-16.038000px;}
.ws6{word-spacing:-2.820000px;}
.ws2{word-spacing:0.000000px;}
.ws8{word-spacing:5.220000px;}
.ws7{word-spacing:7.380000px;}
.ws9{word-spacing:8.100000px;}
.ws5{word-spacing:12.300000px;}
.wsa{word-spacing:20.400000px;}
._5{margin-left:-6.724800px;}
._6{margin-left:-4.626600px;}
._1{margin-left:-2.678029px;}
._0{margin-left:-1.217286px;}
._4{width:1.643400px;}
._2{width:6.342060px;}
._3{width:84.942000px;}
.fc5{color:rgb(5,6,7);}
.fc6{color:rgb(0,0,0);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(52,99,172);}
.fc4{color:transparent;}
.fc1{color:rgb(21,48,79);}
.fc0{color:rgb(238,116,68);}
.fs7{font-size:32.905200px;}
.fs6{font-size:51.837000px;}
.fs5{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs8{font-size:108.000000px;}
.fs4{font-size:120.000000px;}
.fs0{font-size:121.728600px;}
.fs2{font-size:188.656800px;}
.y0{bottom:0.000000px;}
.y52{bottom:12.493680px;}
.y64{bottom:20.645550px;}
.y4f{bottom:21.199200px;}
.y51{bottom:22.365240px;}
.y50{bottom:32.236800px;}
.y26{bottom:45.246000px;}
.y25{bottom:64.749000px;}
.yb{bottom:70.404600px;}
.y2c{bottom:82.734000px;}
.y4e{bottom:86.213400px;}
.y45{bottom:87.173550px;}
.ya{bottom:91.409100px;}
.y24{bottom:93.244500px;}
.y2b{bottom:102.237000px;}
.y4d{bottom:104.213400px;}
.y44{bottom:106.973550px;}
.y9{bottom:112.413600px;}
.y23{bottom:112.747500px;}
.y2a{bottom:121.740000px;}
.y4c{bottom:122.213400px;}
.y43{bottom:126.773550px;}
.y22{bottom:132.250500px;}
.y8{bottom:133.418100px;}
.y4b{bottom:140.213400px;}
.y29{bottom:150.235500px;}
.y42{bottom:155.566050px;}
.y4a{bottom:158.213400px;}
.y21{bottom:160.746000px;}
.y7{bottom:163.415100px;}
.y28{bottom:169.738500px;}
.y41{bottom:175.366050px;}
.y49{bottom:176.213400px;}
.y20{bottom:180.249000px;}
.y6{bottom:184.419600px;}
.y27{bottom:189.241500px;}
.y48{bottom:194.213400px;}
.y40{bottom:204.158550px;}
.y5{bottom:205.424100px;}
.y1f{bottom:208.744500px;}
.y3f{bottom:223.958550px;}
.y4{bottom:226.428600px;}
.y1e{bottom:228.247500px;}
.y47{bottom:229.045950px;}
.y3{bottom:247.433100px;}
.y1d{bottom:247.750500px;}
.y46{bottom:254.890200px;}
.y32{bottom:262.557150px;}
.y1c{bottom:278.907750px;}
.y30{bottom:355.669050px;}
.y6f{bottom:373.597500px;}
.y6b{bottom:373.614000px;}
.y2f{bottom:375.469050px;}
.y6e{bottom:393.100500px;}
.y6a{bottom:393.117000px;}
.y2e{bottom:395.269050px;}
.y6d{bottom:412.603500px;}
.y69{bottom:412.620000px;}
.y2d{bottom:424.060500px;}
.y6c{bottom:432.106500px;}
.y68{bottom:432.123000px;}
.y63{bottom:466.139700px;}
.y1b{bottom:516.779550px;}
.y1a{bottom:536.579550px;}
.y62{bottom:565.336650px;}
.yc{bottom:573.443850px;}
.y61{bottom:584.839650px;}
.y5a{bottom:584.856150px;}
.y2{bottom:586.104000px;}
.y60{bottom:604.342650px;}
.y59{bottom:604.359150px;}
.y5f{bottom:623.845650px;}
.y58{bottom:623.862150px;}
.y57{bottom:643.365150px;}
.y5e{bottom:652.341150px;}
.y15{bottom:666.128100px;}
.y5d{bottom:671.844150px;}
.y56{bottom:671.860650px;}
.y14{bottom:685.928100px;}
.y5c{bottom:691.347150px;}
.y55{bottom:691.363650px;}
.y13{bottom:705.728100px;}
.y5b{bottom:710.850150px;}
.y54{bottom:710.866650px;}
.y12{bottom:730.032600px;}
.y53{bottom:746.387700px;}
.y11{bottom:749.832600px;}
.y10{bottom:769.632600px;}
.yf{bottom:793.937100px;}
.ye{bottom:813.737100px;}
.yd{bottom:833.537100px;}
.y3e{bottom:847.972050px;}
.y1{bottom:865.700700px;}
.y19{bottom:867.200700px;}
.y3d{bottom:872.276550px;}
.y3c{bottom:911.876550px;}
.y3b{bottom:931.676550px;}
.y18{bottom:950.715900px;}
.y3a{bottom:951.476550px;}
.y31{bottom:951.832050px;}
.y39{bottom:971.276550px;}
.y38{bottom:991.076550px;}
.y37{bottom:1010.876550px;}
.y36{bottom:1030.676550px;}
.y35{bottom:1050.476550px;}
.y17{bottom:1063.899900px;}
.y34{bottom:1074.781050px;}
.y33{bottom:1094.581050px;}
.y16{bottom:1101.232950px;}
.y67{bottom:1134.859950px;}
.y66{bottom:1164.856950px;}
.y65{bottom:1194.853950px;}
.hf{height:23.724649px;}
.he{height:37.374477px;}
.hb{height:47.812500px;}
.hd{height:48.134766px;}
.h5{height:50.176758px;}
.h4{height:52.593750px;}
.h6{height:52.948242px;}
.h8{height:53.280000px;}
.h9{height:54.738281px;}
.hc{height:57.375000px;}
.h10{height:79.920000px;}
.ha{height:88.800000px;}
.h2{height:90.079164px;}
.h7{height:139.606032px;}
.h3{height:261.549000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:376.970400px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:44.704800px;}
.x11{left:47.462400px;}
.xa{left:51.606450px;}
.x15{left:58.760700px;}
.x12{left:71.469900px;}
.x14{left:78.125250px;}
.xd{left:96.175050px;}
.x13{left:98.463900px;}
.xf{left:137.953050px;}
.x5{left:148.902150px;}
.xc{left:164.020800px;}
.x6{left:183.734550px;}
.x10{left:193.267050px;}
.x17{left:206.510700px;}
.xe{left:259.970550px;}
.x16{left:387.710400px;}
.x1a{left:459.731400px;}
.x18{left:462.552900px;}
.xb{left:465.252600px;}
.x2{left:482.348100px;}
.x7{left:489.400650px;}
.x8{left:491.682900px;}
.x3{left:493.340400px;}
.x9{left:518.676900px;}
.x4{left:520.334400px;}
.x19{left:595.146300px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws4{word-spacing:-15.552000pt;}
.ws1{word-spacing:-14.608000pt;}
.ws3{word-spacing:-14.549333pt;}
.ws0{word-spacing:-14.256000pt;}
.ws6{word-spacing:-2.506667pt;}
.ws2{word-spacing:0.000000pt;}
.ws8{word-spacing:4.640000pt;}
.ws7{word-spacing:6.560000pt;}
.ws9{word-spacing:7.200000pt;}
.ws5{word-spacing:10.933333pt;}
.wsa{word-spacing:18.133333pt;}
._5{margin-left:-5.977600pt;}
._6{margin-left:-4.112533pt;}
._1{margin-left:-2.380470pt;}
._0{margin-left:-1.082032pt;}
._4{width:1.460800pt;}
._2{width:5.637387pt;}
._3{width:75.504000pt;}
.fs7{font-size:29.249067pt;}
.fs6{font-size:46.077333pt;}
.fs5{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs8{font-size:96.000000pt;}
.fs4{font-size:106.666667pt;}
.fs0{font-size:108.203200pt;}
.fs2{font-size:167.694933pt;}
.y0{bottom:0.000000pt;}
.y52{bottom:11.105493pt;}
.y64{bottom:18.351600pt;}
.y4f{bottom:18.843733pt;}
.y51{bottom:19.880213pt;}
.y50{bottom:28.654933pt;}
.y26{bottom:40.218667pt;}
.y25{bottom:57.554667pt;}
.yb{bottom:62.581867pt;}
.y2c{bottom:73.541333pt;}
.y4e{bottom:76.634133pt;}
.y45{bottom:77.487600pt;}
.ya{bottom:81.252533pt;}
.y24{bottom:82.884000pt;}
.y2b{bottom:90.877333pt;}
.y4d{bottom:92.634133pt;}
.y44{bottom:95.087600pt;}
.y9{bottom:99.923200pt;}
.y23{bottom:100.220000pt;}
.y2a{bottom:108.213333pt;}
.y4c{bottom:108.634133pt;}
.y43{bottom:112.687600pt;}
.y22{bottom:117.556000pt;}
.y8{bottom:118.593867pt;}
.y4b{bottom:124.634133pt;}
.y29{bottom:133.542667pt;}
.y42{bottom:138.280933pt;}
.y4a{bottom:140.634133pt;}
.y21{bottom:142.885333pt;}
.y7{bottom:145.257867pt;}
.y28{bottom:150.878667pt;}
.y41{bottom:155.880933pt;}
.y49{bottom:156.634133pt;}
.y20{bottom:160.221333pt;}
.y6{bottom:163.928533pt;}
.y27{bottom:168.214667pt;}
.y48{bottom:172.634133pt;}
.y40{bottom:181.474267pt;}
.y5{bottom:182.599200pt;}
.y1f{bottom:185.550667pt;}
.y3f{bottom:199.074267pt;}
.y4{bottom:201.269867pt;}
.y1e{bottom:202.886667pt;}
.y47{bottom:203.596400pt;}
.y3{bottom:219.940533pt;}
.y1d{bottom:220.222667pt;}
.y46{bottom:226.569067pt;}
.y32{bottom:233.384133pt;}
.y1c{bottom:247.918000pt;}
.y30{bottom:316.150267pt;}
.y6f{bottom:332.086667pt;}
.y6b{bottom:332.101333pt;}
.y2f{bottom:333.750267pt;}
.y6e{bottom:349.422667pt;}
.y6a{bottom:349.437333pt;}
.y2e{bottom:351.350267pt;}
.y6d{bottom:366.758667pt;}
.y69{bottom:366.773333pt;}
.y2d{bottom:376.942667pt;}
.y6c{bottom:384.094667pt;}
.y68{bottom:384.109333pt;}
.y63{bottom:414.346400pt;}
.y1b{bottom:459.359600pt;}
.y1a{bottom:476.959600pt;}
.y62{bottom:502.521467pt;}
.yc{bottom:509.727867pt;}
.y61{bottom:519.857467pt;}
.y5a{bottom:519.872133pt;}
.y2{bottom:520.981333pt;}
.y60{bottom:537.193467pt;}
.y59{bottom:537.208133pt;}
.y5f{bottom:554.529467pt;}
.y58{bottom:554.544133pt;}
.y57{bottom:571.880133pt;}
.y5e{bottom:579.858800pt;}
.y15{bottom:592.113867pt;}
.y5d{bottom:597.194800pt;}
.y56{bottom:597.209467pt;}
.y14{bottom:609.713867pt;}
.y5c{bottom:614.530800pt;}
.y55{bottom:614.545467pt;}
.y13{bottom:627.313867pt;}
.y5b{bottom:631.866800pt;}
.y54{bottom:631.881467pt;}
.y12{bottom:648.917867pt;}
.y53{bottom:663.455733pt;}
.y11{bottom:666.517867pt;}
.y10{bottom:684.117867pt;}
.yf{bottom:705.721867pt;}
.ye{bottom:723.321867pt;}
.yd{bottom:740.921867pt;}
.y3e{bottom:753.752933pt;}
.y1{bottom:769.511733pt;}
.y19{bottom:770.845067pt;}
.y3d{bottom:775.356933pt;}
.y3c{bottom:810.556933pt;}
.y3b{bottom:828.156933pt;}
.y18{bottom:845.080800pt;}
.y3a{bottom:845.756933pt;}
.y31{bottom:846.072933pt;}
.y39{bottom:863.356933pt;}
.y38{bottom:880.956933pt;}
.y37{bottom:898.556933pt;}
.y36{bottom:916.156933pt;}
.y35{bottom:933.756933pt;}
.y17{bottom:945.688800pt;}
.y34{bottom:955.360933pt;}
.y33{bottom:972.960933pt;}
.y16{bottom:978.873733pt;}
.y67{bottom:1008.764400pt;}
.y66{bottom:1035.428400pt;}
.y65{bottom:1062.092400pt;}
.hf{height:21.088577pt;}
.he{height:33.221757pt;}
.hb{height:42.500000pt;}
.hd{height:42.786458pt;}
.h5{height:44.601562pt;}
.h4{height:46.750000pt;}
.h6{height:47.065104pt;}
.h8{height:47.360000pt;}
.h9{height:48.656250pt;}
.hc{height:51.000000pt;}
.h10{height:71.040000pt;}
.ha{height:78.933333pt;}
.h2{height:80.070368pt;}
.h7{height:124.094251pt;}
.h3{height:232.488000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:335.084800pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:39.737600pt;}
.x11{left:42.188800pt;}
.xa{left:45.872400pt;}
.x15{left:52.231733pt;}
.x12{left:63.528800pt;}
.x14{left:69.444667pt;}
.xd{left:85.488933pt;}
.x13{left:87.523467pt;}
.xf{left:122.624933pt;}
.x5{left:132.357467pt;}
.xc{left:145.796267pt;}
.x6{left:163.319600pt;}
.x10{left:171.792933pt;}
.x17{left:183.565067pt;}
.xe{left:231.084933pt;}
.x16{left:344.631467pt;}
.x1a{left:408.650133pt;}
.x18{left:411.158133pt;}
.xb{left:413.557867pt;}
.x2{left:428.753867pt;}
.x7{left:435.022800pt;}
.x8{left:437.051467pt;}
.x3{left:438.524800pt;}
.x9{left:461.046133pt;}
.x4{left:462.519467pt;}
.x19{left:529.018933pt;}
}




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