
    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_4bfe8f2564f3a74fa39e376b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_42522c9285174fc605c9a8a2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_ef520c41986f6e8d71e0f492.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_283e1ba9833c87f25ec0a51a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.940918;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_7a560f879bc5d62d0c118356.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_de7b133bad27925a401ac138.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.012695;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_4ea97518afcb7a91311d4fe8.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_262292b04c6412acfea820ee.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.964884;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;}
.v1{vertical-align:29.250001px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.041820px;}
.ls2{letter-spacing:0.041887px;}
.ls3{letter-spacing:907.440554px;}
.ls4{letter-spacing:1038.891993px;}
.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:-28.254000px;}
.ws5{word-spacing:-23.268000px;}
.ws1{word-spacing:-21.606002px;}
.ws4{word-spacing:-19.944001px;}
.ws3{word-spacing:-16.368001px;}
.ws6{word-spacing:-0.066000px;}
.ws2{word-spacing:0.000000px;}
._4{margin-left:-8.580001px;}
._3{margin-left:-5.772000px;}
._2{margin-left:-4.290000px;}
._0{margin-left:-2.886000px;}
._1{margin-left:-1.404000px;}
._6{width:1.674000px;}
._a{width:3.210863px;}
._8{width:4.244063px;}
._7{width:5.497313px;}
._9{width:7.325100px;}
._f{width:11.007315px;}
._e{width:12.210525px;}
._c{width:21.875896px;}
._11{width:24.912001px;}
._d{width:32.832001px;}
._b{width:35.208001px;}
._10{width:43.116211px;}
._5{width:107.986185px;}
.fca{color:transparent;}
.fc9{color:rgb(4,88,181);}
.fc7{color:rgb(255,153,0);}
.fc6{color:rgb(0,151,167);}
.fc5{color:rgb(10,93,184);}
.fc3{color:rgb(11,110,208);}
.fc8{color:rgb(63,63,63);}
.fc4{color:rgb(89,89,89);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(67,67,67);}
.fs6{font-size:48.000003px;}
.fs4{font-size:52.000006px;}
.fs7{font-size:54.000002px;}
.fs5{font-size:60.000000px;}
.fs3{font-size:66.000004px;}
.fs8{font-size:72.000002px;}
.fs0{font-size:78.000005px;}
.fsa{font-size:84.000000px;}
.fs9{font-size:96.000006px;}
.fs2{font-size:102.000000px;}
.fs1{font-size:114.000007px;}
.fsb{font-size:120.000001px;}
.y0{bottom:0.000000px;}
.y40{bottom:9.711417px;}
.y3f{bottom:24.111414px;}
.y5a{bottom:26.969858px;}
.y5e{bottom:31.317375px;}
.y3e{bottom:38.511413px;}
.y1c{bottom:44.837356px;}
.y5d{bottom:47.517378px;}
.y5c{bottom:63.717377px;}
.y1b{bottom:64.637357px;}
.y59{bottom:71.879904px;}
.y1a{bottom:91.702675px;}
.y5b{bottom:94.752836px;}
.y58{bottom:98.789973px;}
.y19{bottom:118.612653px;}
.y57{bottom:125.699974px;}
.y18{bottom:145.522643px;}
.y56{bottom:152.610053px;}
.y6f{bottom:153.665809px;}
.y17{bottom:172.432621px;}
.y55{bottom:179.520088px;}
.y6e{bottom:196.865788px;}
.y16{bottom:199.342600px;}
.y54{bottom:206.430089px;}
.y6d{bottom:221.705795px;}
.y15{bottom:226.252600px;}
.y53{bottom:233.340067px;}
.y6c{bottom:247.175796px;}
.y14{bottom:253.162568px;}
.y52{bottom:260.250045px;}
.y6b{bottom:273.455791px;}
.y13{bottom:280.072546px;}
.y51{bottom:287.160024px;}
.y6a{bottom:298.295792px;}
.y50{bottom:314.070013px;}
.y12{bottom:318.982551px;}
.y69{bottom:334.087473px;}
.y4f{bottom:343.500014px;}
.y11{bottom:345.892529px;}
.y10{bottom:372.802553px;}
.y4e{bottom:394.170027px;}
.yf{bottom:399.712554px;}
.y68{bottom:409.803961px;}
.y4d{bottom:421.080005px;}
.ye{bottom:426.622543px;}
.y67{bottom:438.783959px;}
.y3d{bottom:439.379909px;}
.y4c{bottom:447.989984px;}
.yd{bottom:453.532544px;}
.y3c{bottom:466.289977px;}
.y66{bottom:469.023952px;}
.y4b{bottom:474.900007px;}
.yc{bottom:480.442545px;}
.y3b{bottom:493.199978px;}
.y4a{bottom:501.810008px;}
.yb{bottom:507.352546px;}
.y3a{bottom:520.110057px;}
.y49{bottom:528.719998px;}
.ya{bottom:534.262547px;}
.y39{bottom:547.020092px;}
.y48{bottom:555.629999px;}
.y9{bottom:561.172542px;}
.y38{bottom:573.930160px;}
.y47{bottom:582.539999px;}
.y8{bottom:588.082542px;}
.y76{bottom:608.126071px;}
.y46{bottom:609.450000px;}
.y7{bottom:612.922540px;}
.y37{bottom:618.840139px;}
.y75{bottom:629.726067px;}
.y45{bottom:636.360001px;}
.y74{bottom:651.326066px;}
.y44{bottom:663.269996px;}
.y36{bottom:663.750118px;}
.y73{bottom:672.926069px;}
.y23{bottom:686.693065px;}
.y43{bottom:690.179992px;}
.y35{bottom:690.660097px;}
.y72{bottom:694.526069px;}
.y22{bottom:710.093066px;}
.y42{bottom:717.089999px;}
.y34{bottom:717.570097px;}
.y21{bottom:733.493067px;}
.y33{bottom:744.480065px;}
.y41{bottom:746.519996px;}
.y32{bottom:771.390043px;}
.y65{bottom:778.885772px;}
.y20{bottom:780.293079px;}
.y24{bottom:784.217125px;}
.y71{bottom:793.030015px;}
.y31{bottom:798.300033px;}
.y64{bottom:800.485761px;}
.y70{bottom:811.030015px;}
.y63{bottom:822.085755px;}
.y1f{bottom:827.093081px;}
.y30{bottom:827.729988px;}
.y62{bottom:843.685751px;}
.y61{bottom:865.285750px;}
.y1e{bottom:873.893094px;}
.y2f{bottom:878.400013px;}
.y60{bottom:886.885753px;}
.y2e{bottom:905.310013px;}
.y5f{bottom:908.485754px;}
.y1d{bottom:920.693093px;}
.y2d{bottom:932.220003px;}
.y2c{bottom:959.130004px;}
.y7a{bottom:984.466295px;}
.y2b{bottom:986.040005px;}
.y4{bottom:990.891027px;}
.y2a{bottom:1012.950006px;}
.y79{bottom:1013.446290px;}
.y3{bottom:1014.291019px;}
.y2{bottom:1037.691018px;}
.y29{bottom:1039.860007px;}
.y1{bottom:1061.091018px;}
.y78{bottom:1061.824012px;}
.y28{bottom:1066.770002px;}
.y27{bottom:1093.679997px;}
.y77{bottom:1097.824013px;}
.y6{bottom:1116.596693px;}
.y26{bottom:1120.590005px;}
.y25{bottom:1150.020001px;}
.y5{bottom:1150.796691px;}
.h8{height:35.085940px;}
.ha{height:42.662111px;}
.h7{height:43.681641px;}
.hf{height:45.705542px;}
.h5{height:48.082034px;}
.he{height:52.417970px;}
.hb{height:52.453127px;}
.h9{height:52.948245px;}
.h1{height:56.786137px;}
.h2{height:56.824223px;}
.hd{height:61.195312px;}
.h6{height:67.132818px;}
.hc{height:69.890629px;}
.h4{height:74.258789px;}
.h3{height:82.995122px;}
.h10{height:87.363282px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xb{left:20.444882px;}
.xe{left:32.671483px;}
.xc{left:35.670337px;}
.xf{left:37.922415px;}
.x10{left:52.191768px;}
.x17{left:55.084901px;}
.x9{left:63.682090px;}
.x18{left:66.227365px;}
.xd{left:74.444884px;}
.x15{left:94.260828px;}
.x19{left:102.057176px;}
.x16{left:108.583824px;}
.x1c{left:116.188552px;}
.x1{left:118.536394px;}
.x13{left:124.236971px;}
.x12{left:125.567246px;}
.x2{left:138.082994px;}
.x1a{left:165.338059px;}
.x5{left:168.841760px;}
.x8{left:214.352366px;}
.x3{left:232.893289px;}
.x1d{left:235.718228px;}
.x6{left:251.993776px;}
.x14{left:293.625032px;}
.x1b{left:307.072273px;}
.x4{left:392.025871px;}
.x11{left:470.887811px;}
.x7{left:482.176185px;}
.xa{left:574.674240px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.000001pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.037173pt;}
.ls2{letter-spacing:0.037233pt;}
.ls3{letter-spacing:806.613826pt;}
.ls4{letter-spacing:923.459550pt;}
.ws0{word-spacing:-25.114667pt;}
.ws5{word-spacing:-20.682667pt;}
.ws1{word-spacing:-19.205335pt;}
.ws4{word-spacing:-17.728001pt;}
.ws3{word-spacing:-14.549334pt;}
.ws6{word-spacing:-0.058667pt;}
.ws2{word-spacing:0.000000pt;}
._4{margin-left:-7.626667pt;}
._3{margin-left:-5.130667pt;}
._2{margin-left:-3.813334pt;}
._0{margin-left:-2.565334pt;}
._1{margin-left:-1.248000pt;}
._6{width:1.488000pt;}
._a{width:2.854100pt;}
._8{width:3.772500pt;}
._7{width:4.886500pt;}
._9{width:6.511200pt;}
._f{width:9.784280pt;}
._e{width:10.853800pt;}
._c{width:19.445241pt;}
._11{width:22.144001pt;}
._d{width:29.184001pt;}
._b{width:31.296001pt;}
._10{width:38.325521pt;}
._5{width:95.987720pt;}
.fs6{font-size:42.666669pt;}
.fs4{font-size:46.222228pt;}
.fs7{font-size:48.000002pt;}
.fs5{font-size:53.333334pt;}
.fs3{font-size:58.666670pt;}
.fs8{font-size:64.000002pt;}
.fs0{font-size:69.333338pt;}
.fsa{font-size:74.666666pt;}
.fs9{font-size:85.333339pt;}
.fs2{font-size:90.666667pt;}
.fs1{font-size:101.333339pt;}
.fsb{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y40{bottom:8.632370pt;}
.y3f{bottom:21.432368pt;}
.y5a{bottom:23.973207pt;}
.y5e{bottom:27.837667pt;}
.y3e{bottom:34.232367pt;}
.y1c{bottom:39.855427pt;}
.y5d{bottom:42.237670pt;}
.y5c{bottom:56.637669pt;}
.y1b{bottom:57.455428pt;}
.y59{bottom:63.893248pt;}
.y1a{bottom:81.513489pt;}
.y5b{bottom:84.224743pt;}
.y58{bottom:87.813309pt;}
.y19{bottom:105.433470pt;}
.y57{bottom:111.733310pt;}
.y18{bottom:129.353460pt;}
.y56{bottom:135.653381pt;}
.y6f{bottom:136.591831pt;}
.y17{bottom:153.273441pt;}
.y55{bottom:159.573411pt;}
.y6e{bottom:174.991812pt;}
.y16{bottom:177.193422pt;}
.y54{bottom:183.493412pt;}
.y6d{bottom:197.071818pt;}
.y15{bottom:201.113423pt;}
.y53{bottom:207.413393pt;}
.y6c{bottom:219.711818pt;}
.y14{bottom:225.033393pt;}
.y52{bottom:231.333374pt;}
.y6b{bottom:243.071814pt;}
.y13{bottom:248.953374pt;}
.y51{bottom:255.253354pt;}
.y6a{bottom:265.151815pt;}
.y50{bottom:279.173345pt;}
.y12{bottom:283.540045pt;}
.y69{bottom:296.966643pt;}
.y4f{bottom:305.333346pt;}
.y11{bottom:307.460026pt;}
.y10{bottom:331.380047pt;}
.y4e{bottom:350.373357pt;}
.yf{bottom:355.300048pt;}
.y68{bottom:364.270188pt;}
.y4d{bottom:374.293338pt;}
.ye{bottom:379.220038pt;}
.y67{bottom:390.030186pt;}
.y3d{bottom:390.559919pt;}
.y4c{bottom:398.213319pt;}
.yd{bottom:403.140039pt;}
.y3c{bottom:414.479979pt;}
.y66{bottom:416.910180pt;}
.y4b{bottom:422.133340pt;}
.yc{bottom:427.060040pt;}
.y3b{bottom:438.399980pt;}
.y4a{bottom:446.053340pt;}
.yb{bottom:450.980041pt;}
.y3a{bottom:462.320051pt;}
.y49{bottom:469.973331pt;}
.ya{bottom:474.900041pt;}
.y39{bottom:486.240082pt;}
.y48{bottom:493.893332pt;}
.y9{bottom:498.820037pt;}
.y38{bottom:510.160143pt;}
.y47{bottom:517.813333pt;}
.y8{bottom:522.740037pt;}
.y76{bottom:540.556508pt;}
.y46{bottom:541.733334pt;}
.y7{bottom:544.820036pt;}
.y37{bottom:550.080124pt;}
.y75{bottom:559.756504pt;}
.y45{bottom:565.653334pt;}
.y74{bottom:578.956503pt;}
.y44{bottom:589.573330pt;}
.y36{bottom:590.000105pt;}
.y73{bottom:598.156505pt;}
.y23{bottom:610.393836pt;}
.y43{bottom:613.493326pt;}
.y35{bottom:613.920086pt;}
.y72{bottom:617.356506pt;}
.y22{bottom:631.193836pt;}
.y42{bottom:637.413333pt;}
.y34{bottom:637.840087pt;}
.y21{bottom:651.993837pt;}
.y33{bottom:661.760057pt;}
.y41{bottom:663.573329pt;}
.y32{bottom:685.680038pt;}
.y65{bottom:692.342908pt;}
.y20{bottom:693.593848pt;}
.y24{bottom:697.081889pt;}
.y71{bottom:704.915569pt;}
.y31{bottom:709.600029pt;}
.y64{bottom:711.542899pt;}
.y70{bottom:720.915569pt;}
.y63{bottom:730.742894pt;}
.y1f{bottom:735.193850pt;}
.y30{bottom:735.759990pt;}
.y62{bottom:749.942890pt;}
.y61{bottom:769.142889pt;}
.y1e{bottom:776.793861pt;}
.y2f{bottom:780.800011pt;}
.y60{bottom:788.342891pt;}
.y2e{bottom:804.720012pt;}
.y5f{bottom:807.542892pt;}
.y1d{bottom:818.393860pt;}
.y2d{bottom:828.640003pt;}
.y2c{bottom:852.560003pt;}
.y7a{bottom:875.081151pt;}
.y2b{bottom:876.480004pt;}
.y4{bottom:880.792024pt;}
.y2a{bottom:900.400005pt;}
.y79{bottom:900.841147pt;}
.y3{bottom:901.592017pt;}
.y2{bottom:922.392016pt;}
.y29{bottom:924.320006pt;}
.y1{bottom:943.192016pt;}
.y78{bottom:943.843566pt;}
.y28{bottom:948.240002pt;}
.y27{bottom:972.159997pt;}
.y77{bottom:975.843567pt;}
.y6{bottom:992.530394pt;}
.y26{bottom:996.080004pt;}
.y25{bottom:1022.240001pt;}
.y5{bottom:1022.930392pt;}
.h8{height:31.187502pt;}
.ha{height:37.921876pt;}
.h7{height:38.828125pt;}
.hf{height:40.627148pt;}
.h5{height:42.739586pt;}
.he{height:46.593751pt;}
.hb{height:46.625001pt;}
.h9{height:47.065107pt;}
.h1{height:50.476566pt;}
.h2{height:50.510420pt;}
.hd{height:54.395833pt;}
.h6{height:59.673616pt;}
.hc{height:62.125004pt;}
.h4{height:66.007813pt;}
.h3{height:73.773442pt;}
.h10{height:77.656251pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xb{left:18.173229pt;}
.xe{left:29.041318pt;}
.xc{left:31.706966pt;}
.xf{left:33.708813pt;}
.x10{left:46.392682pt;}
.x17{left:48.964357pt;}
.x9{left:56.606302pt;}
.x18{left:58.868769pt;}
.xd{left:66.173230pt;}
.x15{left:83.787403pt;}
.x19{left:90.717490pt;}
.x16{left:96.518955pt;}
.x1c{left:103.278713pt;}
.x1{left:105.365683pt;}
.x13{left:110.432864pt;}
.x12{left:111.615330pt;}
.x2{left:122.740439pt;}
.x1a{left:146.967164pt;}
.x5{left:150.081565pt;}
.x8{left:190.535436pt;}
.x3{left:207.016257pt;}
.x1d{left:209.527314pt;}
.x6{left:223.994467pt;}
.x14{left:261.000028pt;}
.x1b{left:272.953132pt;}
.x4{left:348.467441pt;}
.x11{left:418.566943pt;}
.x7{left:428.601054pt;}
.xa{left:510.821546pt;}
}




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