
    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_2c9af2b37458f5368329ddb9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_8a611a3d0daa72ae82209f35.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_f92c3e3ecdd24894d79d4c7a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;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_9b0eb900139ec85daaa23ba3.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.364746;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);}
.v2{vertical-align:-72.719400px;}
.v1{vertical-align:-53.280897px;}
.v0{vertical-align:0.000000px;}
.ls23{letter-spacing:-0.749245px;}
.ls22{letter-spacing:-0.234379px;}
.ls18{letter-spacing:-0.202633px;}
.ls20{letter-spacing:-0.160340px;}
.ls14{letter-spacing:-0.154387px;}
.ls19{letter-spacing:-0.139913px;}
.ls13{letter-spacing:-0.138672px;}
.ls25{letter-spacing:-0.138322px;}
.ls17{letter-spacing:-0.106141px;}
.ls21{letter-spacing:-0.088372px;}
.ls16{letter-spacing:-0.086843px;}
.ls11{letter-spacing:-0.086670px;}
.ls10{letter-spacing:-0.080892px;}
.ls12{letter-spacing:-0.075114px;}
.lsa{letter-spacing:-0.049950px;}
.lse{letter-spacing:-0.026925px;}
.lsf{letter-spacing:-0.006731px;}
.ls1c{letter-spacing:-0.004825px;}
.ls9{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.004825px;}
.ls0{letter-spacing:0.020194px;}
.ls3{letter-spacing:0.063558px;}
.ls1e{letter-spacing:0.096492px;}
.ls1b{letter-spacing:0.106141px;}
.ls1a{letter-spacing:0.120615px;}
.ls1f{letter-spacing:0.125440px;}
.lsc{letter-spacing:0.126795px;}
.ls4{letter-spacing:0.130264px;}
.ls1d{letter-spacing:0.135089px;}
.ls8{letter-spacing:0.139913px;}
.ls15{letter-spacing:0.144738px;}
.ls7{letter-spacing:0.159212px;}
.ls6{letter-spacing:0.164036px;}
.ls24{letter-spacing:0.184429px;}
.lsb{letter-spacing:0.192114px;}
.lsd{letter-spacing:0.203641px;}
.ls5{letter-spacing:1035.789300px;}
.ls2{letter-spacing:1188.117506px;}
.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:-13.552301px;}
.ws2{word-spacing:-13.537828px;}
.ws0{word-spacing:-13.407563px;}
.ws3{word-spacing:-9.932294px;}
.ws22{word-spacing:-0.438020px;}
.ws7{word-spacing:-0.426493px;}
.ws23{word-spacing:-0.418809px;}
.ws1a{word-spacing:-0.246055px;}
.ws1b{word-spacing:-0.241230px;}
.ws1c{word-spacing:-0.217107px;}
.ws17{word-spacing:-0.202633px;}
.ws1e{word-spacing:-0.178510px;}
.ws1f{word-spacing:-0.146007px;}
.wsc{word-spacing:-0.127116px;}
.ws5{word-spacing:-0.086843px;}
.ws20{word-spacing:-0.086670px;}
.ws8{word-spacing:-0.076846px;}
.wse{word-spacing:-0.075114px;}
.ws24{word-spacing:-0.061476px;}
.ws4{word-spacing:0.000000px;}
.ws1d{word-spacing:0.024123px;}
.wsa{word-spacing:0.026925px;}
.ws14{word-spacing:0.057895px;}
.ws19{word-spacing:0.072369px;}
.ws6{word-spacing:0.172903px;}
.ws21{word-spacing:0.265117px;}
.ws10{word-spacing:0.492109px;}
.ws18{word-spacing:0.530706px;}
.ws16{word-spacing:4.105735px;}
.wsb{word-spacing:4.905522px;}
.ws9{word-spacing:5.445606px;}
.ws15{word-spacing:5.543465px;}
.ws11{word-spacing:6.122417px;}
.ws12{word-spacing:6.141716px;}
.wsf{word-spacing:6.189962px;}
.ws13{word-spacing:9.118494px;}
.wsd{word-spacing:21.823506px;}
._1{margin-left:-1.008341px;}
._2{width:1.237214px;}
._4{width:3.599694px;}
._3{width:39.244176px;}
._0{width:328.674940px;}
._5{width:848.386951px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(128,128,128);}
.fc1{color:rgb(170,170,170);}
.fc0{color:rgb(131,131,131);}
.fs3{font-size:33.801000px;}
.fs2{font-size:38.422800px;}
.fs6{font-size:43.335000px;}
.fs1{font-size:48.246000px;}
.fs4{font-size:57.780000px;}
.fs0{font-size:67.312800px;}
.fs5{font-size:96.202800px;}
.y0{bottom:0.000000px;}
.y6{bottom:184.440669px;}
.y5{bottom:197.760893px;}
.y4{bottom:211.170450px;}
.y3{bottom:237.180450px;}
.y2f{bottom:268.950450px;}
.y2e{bottom:282.720450px;}
.y2d{bottom:305.669381px;}
.y2c{bottom:326.729966px;}
.y2b{bottom:340.500580px;}
.y2a{bottom:354.360450px;}
.y30{bottom:369.390450px;}
.y29{bottom:370.020096px;}
.y28{bottom:383.879966px;}
.y27{bottom:397.739835px;}
.y26{bottom:411.510450px;}
.y25{bottom:443.550450px;}
.y24{bottom:468.749966px;}
.y23{bottom:482.609835px;}
.y22{bottom:496.380450px;}
.y21{bottom:510.239188px;}
.y20{bottom:524.099058px;}
.y1f{bottom:537.958927px;}
.y1e{bottom:551.818797px;}
.y1d{bottom:565.678666px;}
.y1c{bottom:579.449281px;}
.y1b{bottom:593.309151px;}
.y1a{bottom:607.169020px;}
.y19{bottom:620.939635px;}
.y18{bottom:634.889966px;}
.y17{bottom:648.749835px;}
.y16{bottom:662.520450px;}
.y15{bottom:689.339899px;}
.y14{bottom:711.570450px;}
.y13{bottom:725.880450px;}
.y12{bottom:742.530450px;}
.y11{bottom:760.620450px;}
.y10{bottom:779.520450px;}
.yf{bottom:796.170450px;}
.ye{bottom:814.080450px;}
.yd{bottom:833.430600px;}
.yc{bottom:852.780450px;}
.y35{bottom:859.350450px;}
.yb{bottom:872.220450px;}
.y34{bottom:876.990506px;}
.ya{bottom:891.570450px;}
.y33{bottom:893.550733px;}
.y32{bottom:910.200293px;}
.y9{bottom:917.940450px;}
.y31{bottom:926.760519px;}
.y8{bottom:930.089855px;}
.y7{bottom:943.410079px;}
.y2{bottom:956.010740px;}
.y1{bottom:1006.680450px;}
.h4{height:35.253387px;}
.h3{height:40.073780px;}
.hb{height:42.827168px;}
.ha{height:45.197051px;}
.h2{height:50.319070px;}
.h9{height:50.320486px;}
.h5{height:60.262734px;}
.h6{height:66.063832px;}
.h7{height:66.068880px;}
.h1{height:70.205147px;}
.h8{height:96.954384px;}
.h0{height:1263.000000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x4{left:59.040000px;}
.x7{left:67.590000px;}
.x2{left:69.479457px;}
.x9{left:80.730000px;}
.xc{left:84.690000px;}
.xa{left:102.420000px;}
.xe{left:125.819272px;}
.x8{left:161.550000px;}
.x10{left:207.809731px;}
.x1{left:228.060000px;}
.xf{left:254.159663px;}
.xd{left:318.240000px;}
.xb{left:350.100000px;}
.x3{left:402.390000px;}
.x6{left:513.359832px;}
.x5{left:641.250122px;}
.x11{left:701.100000px;}
@media print{
.v2{vertical-align:-64.639467pt;}
.v1{vertical-align:-47.360797pt;}
.v0{vertical-align:0.000000pt;}
.ls23{letter-spacing:-0.665995pt;}
.ls22{letter-spacing:-0.208337pt;}
.ls18{letter-spacing:-0.180118pt;}
.ls20{letter-spacing:-0.142524pt;}
.ls14{letter-spacing:-0.137233pt;}
.ls19{letter-spacing:-0.124367pt;}
.ls13{letter-spacing:-0.123264pt;}
.ls25{letter-spacing:-0.122953pt;}
.ls17{letter-spacing:-0.094348pt;}
.ls21{letter-spacing:-0.078553pt;}
.ls16{letter-spacing:-0.077194pt;}
.ls11{letter-spacing:-0.077040pt;}
.ls10{letter-spacing:-0.071904pt;}
.ls12{letter-spacing:-0.066768pt;}
.lsa{letter-spacing:-0.044400pt;}
.lse{letter-spacing:-0.023933pt;}
.lsf{letter-spacing:-0.005983pt;}
.ls1c{letter-spacing:-0.004289pt;}
.ls9{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.004289pt;}
.ls0{letter-spacing:0.017950pt;}
.ls3{letter-spacing:0.056496pt;}
.ls1e{letter-spacing:0.085771pt;}
.ls1b{letter-spacing:0.094348pt;}
.ls1a{letter-spacing:0.107213pt;}
.ls1f{letter-spacing:0.111502pt;}
.lsc{letter-spacing:0.112707pt;}
.ls4{letter-spacing:0.115790pt;}
.ls1d{letter-spacing:0.120079pt;}
.ls8{letter-spacing:0.124367pt;}
.ls15{letter-spacing:0.128656pt;}
.ls7{letter-spacing:0.141522pt;}
.ls6{letter-spacing:0.145810pt;}
.ls24{letter-spacing:0.163937pt;}
.lsb{letter-spacing:0.170768pt;}
.lsd{letter-spacing:0.181014pt;}
.ls5{letter-spacing:920.701600pt;}
.ls2{letter-spacing:1056.104450pt;}
.ws1{word-spacing:-12.046490pt;}
.ws2{word-spacing:-12.033625pt;}
.ws0{word-spacing:-11.917834pt;}
.ws3{word-spacing:-8.828706pt;}
.ws22{word-spacing:-0.389351pt;}
.ws7{word-spacing:-0.379105pt;}
.ws23{word-spacing:-0.372274pt;}
.ws1a{word-spacing:-0.218715pt;}
.ws1b{word-spacing:-0.214427pt;}
.ws1c{word-spacing:-0.192984pt;}
.ws17{word-spacing:-0.180118pt;}
.ws1e{word-spacing:-0.158676pt;}
.ws1f{word-spacing:-0.129784pt;}
.wsc{word-spacing:-0.112992pt;}
.ws5{word-spacing:-0.077194pt;}
.ws20{word-spacing:-0.077040pt;}
.ws8{word-spacing:-0.068307pt;}
.wse{word-spacing:-0.066768pt;}
.ws24{word-spacing:-0.054646pt;}
.ws4{word-spacing:0.000000pt;}
.ws1d{word-spacing:0.021443pt;}
.wsa{word-spacing:0.023933pt;}
.ws14{word-spacing:0.051462pt;}
.ws19{word-spacing:0.064328pt;}
.ws6{word-spacing:0.153691pt;}
.ws21{word-spacing:0.235660pt;}
.ws10{word-spacing:0.437430pt;}
.ws18{word-spacing:0.471739pt;}
.ws16{word-spacing:3.649542pt;}
.wsb{word-spacing:4.360464pt;}
.ws9{word-spacing:4.840538pt;}
.ws15{word-spacing:4.927525pt;}
.ws11{word-spacing:5.442149pt;}
.ws12{word-spacing:5.459303pt;}
.wsf{word-spacing:5.502188pt;}
.ws13{word-spacing:8.105328pt;}
.wsd{word-spacing:19.398672pt;}
._1{margin-left:-0.896303pt;}
._2{width:1.099746pt;}
._4{width:3.199728pt;}
._3{width:34.883712pt;}
._0{width:292.155502pt;}
._5{width:754.121734pt;}
.fs3{font-size:30.045333pt;}
.fs2{font-size:34.153600pt;}
.fs6{font-size:38.520000pt;}
.fs1{font-size:42.885333pt;}
.fs4{font-size:51.360000pt;}
.fs0{font-size:59.833600pt;}
.fs5{font-size:85.513600pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:163.947261pt;}
.y5{bottom:175.787460pt;}
.y4{bottom:187.707067pt;}
.y3{bottom:210.827067pt;}
.y2f{bottom:239.067067pt;}
.y2e{bottom:251.307067pt;}
.y2d{bottom:271.706116pt;}
.y2c{bottom:290.426636pt;}
.y2b{bottom:302.667183pt;}
.y2a{bottom:314.987067pt;}
.y30{bottom:328.347067pt;}
.y29{bottom:328.906752pt;}
.y28{bottom:341.226636pt;}
.y27{bottom:353.546520pt;}
.y26{bottom:365.787067pt;}
.y25{bottom:394.267067pt;}
.y24{bottom:416.666636pt;}
.y23{bottom:428.986520pt;}
.y22{bottom:441.227067pt;}
.y21{bottom:453.545945pt;}
.y20{bottom:465.865829pt;}
.y1f{bottom:478.185713pt;}
.y1e{bottom:490.505597pt;}
.y1d{bottom:502.825481pt;}
.y1c{bottom:515.066028pt;}
.y1b{bottom:527.385912pt;}
.y1a{bottom:539.705796pt;}
.y19{bottom:551.946342pt;}
.y18{bottom:564.346636pt;}
.y17{bottom:576.666520pt;}
.y16{bottom:588.907067pt;}
.y15{bottom:612.746577pt;}
.y14{bottom:632.507067pt;}
.y13{bottom:645.227067pt;}
.y12{bottom:660.027067pt;}
.y11{bottom:676.107067pt;}
.y10{bottom:692.907067pt;}
.yf{bottom:707.707067pt;}
.ye{bottom:723.627067pt;}
.yd{bottom:740.827200pt;}
.yc{bottom:758.027067pt;}
.y35{bottom:763.867067pt;}
.yb{bottom:775.307067pt;}
.y34{bottom:779.547117pt;}
.ya{bottom:792.507067pt;}
.y33{bottom:794.267318pt;}
.y32{bottom:809.066927pt;}
.y9{bottom:815.947067pt;}
.y31{bottom:823.787128pt;}
.y8{bottom:826.746538pt;}
.y7{bottom:838.586737pt;}
.y2{bottom:849.787324pt;}
.y1{bottom:894.827067pt;}
.h4{height:31.336344pt;}
.h3{height:35.621137pt;}
.hb{height:38.068594pt;}
.ha{height:40.175156pt;}
.h2{height:44.728062pt;}
.h9{height:44.729321pt;}
.h5{height:53.566875pt;}
.h6{height:58.723406pt;}
.h7{height:58.727894pt;}
.h1{height:62.404575pt;}
.h8{height:86.181675pt;}
.h0{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x4{left:52.480000pt;}
.x7{left:60.080000pt;}
.x2{left:61.759518pt;}
.x9{left:71.760000pt;}
.xc{left:75.280000pt;}
.xa{left:91.040000pt;}
.xe{left:111.839353pt;}
.x8{left:143.600000pt;}
.x10{left:184.719761pt;}
.x1{left:202.720000pt;}
.xf{left:225.919700pt;}
.xd{left:282.880000pt;}
.xb{left:311.200000pt;}
.x3{left:357.680000pt;}
.x6{left:456.319851pt;}
.x5{left:570.000109pt;}
.x11{left:623.200000pt;}
}




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