
    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_f20be2a35322dc53503c3bf4.woff')format("woff");}.ff1{font-family:ff1;line-height:1.042000;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_c5a6501d057f49c026509d87.woff')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_154b109f66bae02a7d48d5ed.woff')format("woff");}.ff3{font-family:ff3;line-height:0.747000;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_cd55b9747c3ccde5c799e7c4.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_4282efd50fb7b5f7b19df1ad.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d0672ca976b7995fab063acd.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a7616fd1ef87cd96b5c82eeb.woff')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_e20092abc220da4719d1729e.woff')format("woff");}.ff8{font-family:ff8;line-height:1.044000;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_852c1789e23bb8784c8aef99.woff')format("woff");}.ff9{font-family:ff9;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;}
.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;}
.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;}
}
.ws1{word-spacing:-17.754000px;}
.ws0{word-spacing:-17.292000px;}
.ws3{word-spacing:-15.720000px;}
.ws2{word-spacing:0.000000px;}
._1{margin-left:-5.298498px;}
._9{margin-left:-4.137041px;}
._2{margin-left:-3.095243px;}
._3{margin-left:-2.024748px;}
._0{margin-left:-1.011041px;}
._4{width:1.659489px;}
._11{width:3.937126px;}
._10{width:7.604509px;}
._d{width:9.197998px;}
._13{width:10.781998px;}
._12{width:12.695998px;}
._f{width:15.401998px;}
._e{width:29.063998px;}
._8{width:31.430509px;}
._15{width:32.979039px;}
._c{width:34.607998px;}
._a{width:36.521998px;}
._14{width:37.775998px;}
._6{width:39.227998px;}
._b{width:41.979039px;}
._5{width:52.889999px;}
._7{width:884.983625px;}
.fc2{color:rgb(152,0,0);}
.fc1{color:rgb(17,85,204);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:54.000000px;}
.fs3{font-size:59.999999px;}
.fs0{font-size:66.000002px;}
.fs2{font-size:96.000003px;}
.y0{bottom:0.000000px;}
.y31{bottom:5.856957px;}
.y3{bottom:5.856969px;}
.y61{bottom:5.857048px;}
.y38{bottom:11.639911px;}
.y71{bottom:12.016397px;}
.y7f{bottom:12.016403px;}
.y42{bottom:12.016404px;}
.y40{bottom:12.016409px;}
.y2e{bottom:12.016485px;}
.y27{bottom:12.016496px;}
.y6d{bottom:12.016577px;}
.y3b{bottom:12.016581px;}
.y79{bottom:12.016583px;}
.y5d{bottom:12.016587px;}
.y66{bottom:12.016590px;}
.y5b{bottom:12.016598px;}
.y81{bottom:12.016770px;}
.y7c{bottom:12.016772px;}
.y57{bottom:15.033435px;}
.y60{bottom:26.083375px;}
.y30{bottom:26.083466px;}
.y2{bottom:26.083501px;}
.y3f{bottom:32.129804px;}
.y70{bottom:32.129807px;}
.y2d{bottom:32.129985px;}
.y63{bottom:32.129990px;}
.y3a{bottom:32.130081px;}
.y6c{bottom:32.130167px;}
.y5a{bottom:32.130173px;}
.y7b{bottom:32.130182px;}
.y56{bottom:38.164050px;}
.y3e{bottom:52.243394px;}
.y2c{bottom:52.243485px;}
.y6b{bottom:52.243577px;}
.y55{bottom:61.294485px;}
.y54{bottom:84.425100px;}
.y53{bottom:107.555715px;}
.y2b{bottom:115.719825px;}
.y52{bottom:130.686135px;}
.y5e{bottom:149.336061px;}
.y51{bottom:153.816570px;}
.y2a{bottom:155.946815px;}
.y50{bottom:176.947185px;}
.y59{bottom:186.324458px;}
.y29{bottom:192.935300px;}
.y4f{bottom:200.077800px;}
.y5c{bottom:206.438043px;}
.y4e{bottom:223.208235px;}
.y28{bottom:229.923799px;}
.y58{bottom:243.426636px;}
.y4d{bottom:246.338850px;}
.y26{bottom:266.912390px;}
.y4c{bottom:269.469285px;}
.y44{bottom:280.415040px;}
.y4b{bottom:292.599720px;}
.y25{bottom:311.059305px;}
.y4a{bottom:315.730335px;}
.y24{bottom:334.189923px;}
.y49{bottom:338.860770px;}
.y83{bottom:340.345380px;}
.y23{bottom:357.320445px;}
.y82{bottom:357.442386px;}
.y48{bottom:361.991385px;}
.y22{bottom:380.450883px;}
.y47{bottom:385.122000px;}
.y7e{bottom:394.430783px;}
.y21{bottom:403.581405px;}
.y46{bottom:408.252420px;}
.y80{bottom:414.544185px;}
.y1f{bottom:427.949460px;}
.y20{bottom:427.949475px;}
.y45{bottom:431.382855px;}
.y7a{bottom:451.532953px;}
.y1e{bottom:452.317485px;}
.y1d{bottom:475.448013px;}
.y7d{bottom:491.760126px;}
.y1c{bottom:498.578581px;}
.y1b{bottom:521.709060px;}
.y78{bottom:528.748537px;}
.y1a{bottom:544.839588px;}
.y77{bottom:548.862123px;}
.y19{bottom:567.970156px;}
.y76{bottom:585.850708px;}
.y18{bottom:591.100638px;}
.y75{bottom:605.964111px;}
.y17{bottom:614.231160px;}
.y16{bottom:637.361685px;}
.y74{bottom:642.952507px;}
.y15{bottom:660.492255px;}
.y73{bottom:663.066093px;}
.y14{bottom:683.622720px;}
.y43{bottom:699.781491px;}
.y6f{bottom:700.054694px;}
.y13{bottom:707.990760px;}
.y12{bottom:707.990790px;}
.y72{bottom:720.168096px;}
.y11{bottom:732.358818px;}
.y3d{bottom:736.770076px;}
.y10{bottom:755.489343px;}
.y6a{bottom:757.156498px;}
.y41{bottom:776.997066px;}
.yf{bottom:778.619865px;}
.y6e{bottom:797.383671px;}
.ye{bottom:801.750360px;}
.y39{bottom:813.985479px;}
.yd{bottom:824.880903px;}
.y3c{bottom:834.099064px;}
.y69{bottom:834.372066px;}
.yc{bottom:848.011425px;}
.y36{bottom:871.087550px;}
.yb{bottom:871.141950px;}
.y68{bottom:871.360473px;}
.y37{bottom:872.916134px;}
.ya{bottom:894.272475px;}
.y35{bottom:908.076049px;}
.y65{bottom:908.349060px;}
.y9{bottom:917.402996px;}
.y67{bottom:928.462646px;}
.y8{bottom:940.533526px;}
.y34{bottom:945.064544px;}
.y7{bottom:963.664047px;}
.y62{bottom:965.451049px;}
.y64{bottom:985.564452px;}
.y33{bottom:985.564544px;}
.y6{bottom:986.794571px;}
.y5{bottom:1009.925106px;}
.y32{bottom:1022.553039px;}
.y4{bottom:1036.309500px;}
.y1{bottom:1059.541500px;}
.y2f{bottom:1059.541535px;}
.y5f{bottom:1059.541626px;}
.ha{height:34.034912px;}
.hd{height:35.863404px;}
.h7{height:35.863495px;}
.h10{height:35.863587px;}
.h15{height:35.863770px;}
.h3{height:45.468000px;}
.h5{height:49.302001px;}
.h6{height:51.942001px;}
.h2{height:55.572001px;}
.h14{height:55.976806px;}
.h12{height:55.976990px;}
.hb{height:55.977081px;}
.hf{height:55.977173px;}
.hc{height:76.090394px;}
.h8{height:76.090485px;}
.h13{height:76.090576px;}
.h4{height:80.832003px;}
.h11{height:128.458374px;}
.h9{height:128.458465px;}
.h1{height:128.458500px;}
.he{height:455.229855px;}
.h0{height:1188.000000px;}
.w1{width:182.250000px;}
.w3{width:205.875000px;}
.w4{width:358.875000px;}
.w2{width:565.875000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xc{left:6.750000px;}
.xd{left:33.750000px;}
.x9{left:41.460197px;}
.x8{left:61.875000px;}
.x2{left:108.000000px;}
.x4{left:131.625000px;}
.x5{left:135.000000px;}
.x6{left:162.000000px;}
.xf{left:174.375000px;}
.xb{left:235.605825px;}
.xa{left:245.250000px;}
.xe{left:452.250000px;}
.x7{left:496.149855px;}
.x3{left:526.670561px;}
.x1{left:810.000000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-15.781334pt;}
.ws0{word-spacing:-15.370667pt;}
.ws3{word-spacing:-13.973333pt;}
.ws2{word-spacing:0.000000pt;}
._1{margin-left:-4.709776pt;}
._9{margin-left:-3.677370pt;}
._2{margin-left:-2.751327pt;}
._3{margin-left:-1.799776pt;}
._0{margin-left:-0.898703pt;}
._4{width:1.475101pt;}
._11{width:3.499668pt;}
._10{width:6.759563pt;}
._d{width:8.175998pt;}
._13{width:9.583998pt;}
._12{width:11.285331pt;}
._f{width:13.690665pt;}
._e{width:25.834665pt;}
._8{width:27.938231pt;}
._15{width:29.314701pt;}
._c{width:30.762665pt;}
._a{width:32.463999pt;}
._14{width:33.578665pt;}
._6{width:34.869332pt;}
._b{width:37.314702pt;}
._5{width:47.013332pt;}
._7{width:786.652111pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.333332pt;}
.fs0{font-size:58.666668pt;}
.fs2{font-size:85.333336pt;}
.y0{bottom:0.000000pt;}
.y31{bottom:5.206184pt;}
.y3{bottom:5.206194pt;}
.y61{bottom:5.206265pt;}
.y38{bottom:10.346588pt;}
.y71{bottom:10.681241pt;}
.y7f{bottom:10.681247pt;}
.y42{bottom:10.681248pt;}
.y40{bottom:10.681252pt;}
.y2e{bottom:10.681320pt;}
.y27{bottom:10.681329pt;}
.y6d{bottom:10.681401pt;}
.y3b{bottom:10.681405pt;}
.y79{bottom:10.681407pt;}
.y5d{bottom:10.681411pt;}
.y66{bottom:10.681413pt;}
.y5b{bottom:10.681420pt;}
.y81{bottom:10.681573pt;}
.y7c{bottom:10.681575pt;}
.y57{bottom:13.363053pt;}
.y60{bottom:23.185222pt;}
.y30{bottom:23.185303pt;}
.y2{bottom:23.185334pt;}
.y3f{bottom:28.559825pt;}
.y70{bottom:28.559828pt;}
.y2d{bottom:28.559987pt;}
.y63{bottom:28.559991pt;}
.y3a{bottom:28.560072pt;}
.y6c{bottom:28.560148pt;}
.y5a{bottom:28.560153pt;}
.y7b{bottom:28.560161pt;}
.y56{bottom:33.923600pt;}
.y3e{bottom:46.438572pt;}
.y2c{bottom:46.438653pt;}
.y6b{bottom:46.438735pt;}
.y55{bottom:54.483987pt;}
.y54{bottom:75.044533pt;}
.y53{bottom:95.605080pt;}
.y2b{bottom:102.862067pt;}
.y52{bottom:116.165453pt;}
.y5e{bottom:132.743165pt;}
.y51{bottom:136.725840pt;}
.y2a{bottom:138.619391pt;}
.y50{bottom:157.286387pt;}
.y59{bottom:165.621740pt;}
.y29{bottom:171.498044pt;}
.y4f{bottom:177.846933pt;}
.y5c{bottom:183.500483pt;}
.y4e{bottom:198.407320pt;}
.y28{bottom:204.376711pt;}
.y58{bottom:216.379232pt;}
.y4d{bottom:218.967867pt;}
.y26{bottom:237.255457pt;}
.y4c{bottom:239.528253pt;}
.y44{bottom:249.257813pt;}
.y4b{bottom:260.088640pt;}
.y25{bottom:276.497160pt;}
.y4a{bottom:280.649187pt;}
.y24{bottom:297.057710pt;}
.y49{bottom:301.209573pt;}
.y83{bottom:302.529227pt;}
.y23{bottom:317.618173pt;}
.y82{bottom:317.726565pt;}
.y48{bottom:321.770120pt;}
.y22{bottom:338.178563pt;}
.y47{bottom:342.330667pt;}
.y7e{bottom:350.605140pt;}
.y21{bottom:358.739027pt;}
.y46{bottom:362.891040pt;}
.y80{bottom:368.483720pt;}
.y1f{bottom:380.399520pt;}
.y20{bottom:380.399533pt;}
.y45{bottom:383.451427pt;}
.y7a{bottom:401.362625pt;}
.y1e{bottom:402.059987pt;}
.y1d{bottom:422.620456pt;}
.y7d{bottom:437.120112pt;}
.y1c{bottom:443.180961pt;}
.y1b{bottom:463.741387pt;}
.y78{bottom:469.998700pt;}
.y1a{bottom:484.301856pt;}
.y77{bottom:487.877443pt;}
.y19{bottom:504.862361pt;}
.y76{bottom:520.756185pt;}
.y18{bottom:525.422790pt;}
.y75{bottom:538.634765pt;}
.y17{bottom:545.983253pt;}
.y16{bottom:566.543720pt;}
.y74{bottom:571.513340pt;}
.y15{bottom:587.104227pt;}
.y73{bottom:589.392083pt;}
.y14{bottom:607.664640pt;}
.y43{bottom:622.027992pt;}
.y6f{bottom:622.270839pt;}
.y13{bottom:629.325120pt;}
.y12{bottom:629.325146pt;}
.y72{bottom:640.149419pt;}
.y11{bottom:650.985616pt;}
.y3d{bottom:654.906735pt;}
.y10{bottom:671.546083pt;}
.y6a{bottom:673.027999pt;}
.y41{bottom:690.664059pt;}
.yf{bottom:692.106547pt;}
.y6e{bottom:708.785485pt;}
.ye{bottom:712.666987pt;}
.y39{bottom:723.542648pt;}
.yd{bottom:733.227470pt;}
.y3c{bottom:741.421391pt;}
.y69{bottom:741.664059pt;}
.yc{bottom:753.787933pt;}
.y36{bottom:774.300044pt;}
.yb{bottom:774.348400pt;}
.y68{bottom:774.542643pt;}
.y37{bottom:775.925452pt;}
.ya{bottom:794.908867pt;}
.y35{bottom:807.178711pt;}
.y65{bottom:807.421387pt;}
.y9{bottom:815.469330pt;}
.y67{bottom:825.300129pt;}
.y8{bottom:836.029801pt;}
.y34{bottom:840.057372pt;}
.y7{bottom:856.590264pt;}
.y62{bottom:858.178711pt;}
.y64{bottom:876.057291pt;}
.y33{bottom:876.057372pt;}
.y6{bottom:877.150730pt;}
.y5{bottom:897.711205pt;}
.y32{bottom:908.936035pt;}
.y4{bottom:921.164000pt;}
.y1{bottom:941.814667pt;}
.y2f{bottom:941.814697pt;}
.y5f{bottom:941.814779pt;}
.ha{height:30.253255pt;}
.hd{height:31.878581pt;}
.h7{height:31.878663pt;}
.h10{height:31.878744pt;}
.h15{height:31.878907pt;}
.h3{height:40.416000pt;}
.h5{height:43.824001pt;}
.h6{height:46.170668pt;}
.h2{height:49.397334pt;}
.h14{height:49.757161pt;}
.h12{height:49.757324pt;}
.hb{height:49.757405pt;}
.hf{height:49.757487pt;}
.hc{height:67.635905pt;}
.h8{height:67.635987pt;}
.h13{height:67.636068pt;}
.h4{height:71.850669pt;}
.h11{height:114.185221pt;}
.h9{height:114.185303pt;}
.h1{height:114.185333pt;}
.he{height:404.648760pt;}
.h0{height:1056.000000pt;}
.w1{width:162.000000pt;}
.w3{width:183.000000pt;}
.w4{width:319.000000pt;}
.w2{width:503.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xc{left:6.000000pt;}
.xd{left:30.000000pt;}
.x9{left:36.853508pt;}
.x8{left:55.000000pt;}
.x2{left:96.000000pt;}
.x4{left:117.000000pt;}
.x5{left:120.000000pt;}
.x6{left:144.000000pt;}
.xf{left:155.000000pt;}
.xb{left:209.427400pt;}
.xa{left:218.000000pt;}
.xe{left:402.000000pt;}
.x7{left:441.022093pt;}
.x3{left:468.151610pt;}
.x1{left:720.000000pt;}
}




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