
    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_430809c691792d389940eb56.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.138000;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_48cb52147dfb1da4a0f3b64a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.140667;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_c68140257e59256407ddbc01.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.767578;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_69d2a684bee8401801c8586d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.140667;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_f9924a706599a52af7d5c08e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.143000;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_f9a4110da9f685496f3ac6e5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.143000;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;}
.ls5{letter-spacing:-0.954000px;}
.ls7{letter-spacing:-0.654000px;}
.ls4{letter-spacing:-0.563400px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.248400px;}
.ls9{letter-spacing:0.483600px;}
.ls6{letter-spacing:0.600000px;}
.ls2{letter-spacing:102.735000px;}
.ls1{letter-spacing:102.817500px;}
.ls8{letter-spacing:104.122500px;}
.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;}
}
.ws8{word-spacing:-51.948000px;}
.ws7{word-spacing:-51.294000px;}
.wsb{word-spacing:-46.548000px;}
.wse{word-spacing:-38.952000px;}
.wsc{word-spacing:-32.206500px;}
.wsf{word-spacing:-31.020750px;}
.wsa{word-spacing:-27.616500px;}
.ws9{word-spacing:-27.578250px;}
.ws3{word-spacing:-25.956000px;}
.ws11{word-spacing:-18.881850px;}
.ws10{word-spacing:-18.398250px;}
.ws6{word-spacing:-17.444850px;}
.ws2{word-spacing:-17.250750px;}
.ws5{word-spacing:-16.844850px;}
.ws4{word-spacing:-15.890850px;}
.ws1{word-spacing:-3.352200px;}
.ws0{word-spacing:0.000000px;}
.wsd{word-spacing:1304.253000px;}
._7{margin-left:-5.529750px;}
._4{margin-left:-4.385550px;}
._5{margin-left:-3.292650px;}
._2{margin-left:-2.150550px;}
._6{margin-left:-1.073100px;}
._0{width:1.672650px;}
._1{width:2.867400px;}
._3{width:4.062150px;}
._9{width:5.142450px;}
._a{width:1028.341500px;}
._8{width:1540.829100px;}
.fc3{color:rgb(8,103,136);}
.fc1{color:rgb(240,162,2);}
.fc4{color:rgb(171,221,241);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:67.650000px;}
.fs11{font-size:72.150000px;}
.fs2{font-size:85.650000px;}
.fs9{font-size:94.650000px;}
.fsd{font-size:94.800000px;}
.fs4{font-size:108.150000px;}
.fs5{font-size:108.300000px;}
.fs10{font-size:121.650000px;}
.fsb{font-size:126.150000px;}
.fsc{font-size:126.300000px;}
.fse{font-size:162.300000px;}
.fsf{font-size:166.800000px;}
.fsa{font-size:193.950000px;}
.fs8{font-size:216.300000px;}
.fs3{font-size:216.450000px;}
.fs1{font-size:238.800000px;}
.fs0{font-size:238.950000px;}
.fs7{font-size:599.550000px;}
.y0{bottom:0.000000px;}
.y10{bottom:9.000000px;}
.y13{bottom:10.050000px;}
.y4{bottom:11.887500px;}
.y62{bottom:26.662500px;}
.yf{bottom:29.287500px;}
.y5b{bottom:31.275000px;}
.y38{bottom:33.300000px;}
.y3{bottom:36.675000px;}
.y1d{bottom:36.900000px;}
.ye{bottom:48.450000px;}
.y61{bottom:51.450000px;}
.y37{bottom:53.587500px;}
.y1c{bottom:56.062500px;}
.y12{bottom:64.125000px;}
.y3e{bottom:70.162500px;}
.y2e{bottom:71.737500px;}
.y60{bottom:76.237500px;}
.y1b{bottom:76.350000px;}
.y2{bottom:89.625000px;}
.y2d{bottom:92.025000px;}
.y1a{bottom:95.512500px;}
.y11{bottom:96.825000px;}
.y27{bottom:97.200000px;}
.yd{bottom:103.650000px;}
.y3d{bottom:110.887500px;}
.y2c{bottom:112.312500px;}
.y19{bottom:115.800000px;}
.y5a{bottom:126.675000px;}
.y26{bottom:129.900000px;}
.y36{bottom:131.400000px;}
.y2b{bottom:131.475000px;}
.yc{bottom:132.600000px;}
.y55{bottom:145.462500px;}
.y2a{bottom:151.755000px;}
.y1{bottom:161.775000px;}
.yb{bottom:165.300000px;}
.y18{bottom:168.150000px;}
.y25{bottom:168.225000px;}
.y29{bottom:170.925000px;}
.y4e{bottom:178.350000px;}
.y48{bottom:178.875000px;}
.y54{bottom:184.905000px;}
.y28{bottom:191.220000px;}
.y59{bottom:197.820000px;}
.ya{bottom:197.970000px;}
.y17{bottom:200.820000px;}
.y24{bottom:200.895000px;}
.y39{bottom:206.505000px;}
.y35{bottom:214.395000px;}
.y47{bottom:216.075000px;}
.y53{bottom:216.450000px;}
.y43{bottom:216.525000px;}
.y4d{bottom:216.675000px;}
.y58{bottom:230.475000px;}
.y16{bottom:233.520000px;}
.y9{bottom:236.280000px;}
.y23{bottom:239.220000px;}
.y34{bottom:247.095000px;}
.y46{bottom:254.400000px;}
.y42{bottom:254.850000px;}
.y4c{bottom:255.000000px;}
.y52{bottom:255.900000px;}
.y57{bottom:264.300000px;}
.y8{bottom:268.995000px;}
.y15{bottom:271.830000px;}
.y22{bottom:271.905000px;}
.y33{bottom:278.655000px;}
.y5e{bottom:280.095000px;}
.y3c{bottom:284.370000px;}
.y51{bottom:287.475000px;}
.y45{bottom:292.725000px;}
.y4b{bottom:293.325000px;}
.y41{bottom:294.300000px;}
.y14{bottom:304.530000px;}
.y7{bottom:307.320000px;}
.y21{bottom:310.245000px;}
.y32{bottom:311.325000px;}
.y3b{bottom:317.070000px;}
.y50{bottom:325.800000px;}
.y44{bottom:332.175000px;}
.y4a{bottom:332.775000px;}
.y6{bottom:339.975000px;}
.y20{bottom:342.900000px;}
.y31{bottom:344.025000px;}
.y4f{bottom:365.250000px;}
.y30{bottom:376.695000px;}
.y1f{bottom:381.225000px;}
.y5c{bottom:403.905000px;}
.y2f{bottom:409.380000px;}
.y1e{bottom:413.925000px;}
.y5d{bottom:419.745000px;}
.y3a{bottom:424.650000px;}
.y40{bottom:470.700000px;}
.y49{bottom:499.650000px;}
.y5f{bottom:517.005000px;}
.y56{bottom:523.695000px;}
.y5{bottom:525.255000px;}
.y3f{bottom:536.070000px;}
.h8{height:62.035050px;}
.h9{height:62.170350px;}
.h17{height:66.161550px;}
.h3{height:78.541050px;}
.h13{height:86.742000px;}
.hf{height:86.794050px;}
.h7{height:98.957250px;}
.hd{height:99.094500px;}
.h5{height:99.173550px;}
.h6{height:99.311100px;}
.ha{height:99.389850px;}
.hb{height:99.527700px;}
.h16{height:111.553050px;}
.h11{height:115.679550px;}
.h12{height:115.817100px;}
.h14{height:148.504500px;}
.h15{height:152.955600px;}
.h10{height:177.464250px;}
.he{height:197.914500px;}
.h4{height:198.051750px;}
.h2{height:218.502000px;}
.h1{height:218.639250px;}
.hc{height:549.787350px;}
.h0{height:607.500000px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x9{left:10.799984px;}
.x1{left:14.624984px;}
.x18{left:30.674984px;}
.x11{left:61.574984px;}
.x8{left:68.812484px;}
.x14{left:76.124984px;}
.x16{left:81.749984px;}
.x22{left:90.899984px;}
.x24{left:94.574984px;}
.x5{left:102.899984px;}
.x19{left:104.287484px;}
.x13{left:106.574984px;}
.x6{left:120.074984px;}
.x2{left:139.724984px;}
.xf{left:153.869984px;}
.x7{left:160.649984px;}
.x17{left:175.649984px;}
.x23{left:181.424984px;}
.x25{left:201.269984px;}
.x26{left:240.494984px;}
.x21{left:266.399984px;}
.x20{left:278.624984px;}
.x3{left:338.894984px;}
.x27{left:346.154984px;}
.x1b{left:415.994984px;}
.x4{left:439.574984px;}
.x1c{left:454.199984px;}
.x1a{left:487.799984px;}
.x15{left:510.824984px;}
.x12{left:552.254984px;}
.xa{left:701.654984px;}
.xe{left:710.249984px;}
.xd{left:711.899984px;}
.xb{left:718.949984px;}
.x1d{left:735.269984px;}
.x1e{left:738.779984px;}
.xc{left:786.899984px;}
.x1f{left:790.199984px;}
.x10{left:794.819984px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.848000pt;}
.ls7{letter-spacing:-0.581333pt;}
.ls4{letter-spacing:-0.500800pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.220800pt;}
.ls9{letter-spacing:0.429867pt;}
.ls6{letter-spacing:0.533333pt;}
.ls2{letter-spacing:91.320000pt;}
.ls1{letter-spacing:91.393333pt;}
.ls8{letter-spacing:92.553333pt;}
.ws8{word-spacing:-46.176000pt;}
.ws7{word-spacing:-45.594667pt;}
.wsb{word-spacing:-41.376000pt;}
.wse{word-spacing:-34.624000pt;}
.wsc{word-spacing:-28.628000pt;}
.wsf{word-spacing:-27.574000pt;}
.wsa{word-spacing:-24.548000pt;}
.ws9{word-spacing:-24.514000pt;}
.ws3{word-spacing:-23.072000pt;}
.ws11{word-spacing:-16.783867pt;}
.ws10{word-spacing:-16.354000pt;}
.ws6{word-spacing:-15.506533pt;}
.ws2{word-spacing:-15.334000pt;}
.ws5{word-spacing:-14.973200pt;}
.ws4{word-spacing:-14.125200pt;}
.ws1{word-spacing:-2.979733pt;}
.ws0{word-spacing:0.000000pt;}
.wsd{word-spacing:1159.336000pt;}
._7{margin-left:-4.915333pt;}
._4{margin-left:-3.898267pt;}
._5{margin-left:-2.926800pt;}
._2{margin-left:-1.911600pt;}
._6{margin-left:-0.953867pt;}
._0{width:1.486800pt;}
._1{width:2.548800pt;}
._3{width:3.610800pt;}
._9{width:4.571067pt;}
._a{width:914.081333pt;}
._8{width:1369.625867pt;}
.fs6{font-size:60.133333pt;}
.fs11{font-size:64.133333pt;}
.fs2{font-size:76.133333pt;}
.fs9{font-size:84.133333pt;}
.fsd{font-size:84.266667pt;}
.fs4{font-size:96.133333pt;}
.fs5{font-size:96.266667pt;}
.fs10{font-size:108.133333pt;}
.fsb{font-size:112.133333pt;}
.fsc{font-size:112.266667pt;}
.fse{font-size:144.266667pt;}
.fsf{font-size:148.266667pt;}
.fsa{font-size:172.400000pt;}
.fs8{font-size:192.266667pt;}
.fs3{font-size:192.400000pt;}
.fs1{font-size:212.266667pt;}
.fs0{font-size:212.400000pt;}
.fs7{font-size:532.933333pt;}
.y0{bottom:0.000000pt;}
.y10{bottom:8.000000pt;}
.y13{bottom:8.933333pt;}
.y4{bottom:10.566667pt;}
.y62{bottom:23.700000pt;}
.yf{bottom:26.033333pt;}
.y5b{bottom:27.800000pt;}
.y38{bottom:29.600000pt;}
.y3{bottom:32.600000pt;}
.y1d{bottom:32.800000pt;}
.ye{bottom:43.066667pt;}
.y61{bottom:45.733333pt;}
.y37{bottom:47.633333pt;}
.y1c{bottom:49.833333pt;}
.y12{bottom:57.000000pt;}
.y3e{bottom:62.366667pt;}
.y2e{bottom:63.766667pt;}
.y60{bottom:67.766667pt;}
.y1b{bottom:67.866667pt;}
.y2{bottom:79.666667pt;}
.y2d{bottom:81.800000pt;}
.y1a{bottom:84.900000pt;}
.y11{bottom:86.066667pt;}
.y27{bottom:86.400000pt;}
.yd{bottom:92.133333pt;}
.y3d{bottom:98.566667pt;}
.y2c{bottom:99.833333pt;}
.y19{bottom:102.933333pt;}
.y5a{bottom:112.600000pt;}
.y26{bottom:115.466667pt;}
.y36{bottom:116.800000pt;}
.y2b{bottom:116.866667pt;}
.yc{bottom:117.866667pt;}
.y55{bottom:129.300000pt;}
.y2a{bottom:134.893333pt;}
.y1{bottom:143.800000pt;}
.yb{bottom:146.933333pt;}
.y18{bottom:149.466667pt;}
.y25{bottom:149.533333pt;}
.y29{bottom:151.933333pt;}
.y4e{bottom:158.533333pt;}
.y48{bottom:159.000000pt;}
.y54{bottom:164.360000pt;}
.y28{bottom:169.973333pt;}
.y59{bottom:175.840000pt;}
.ya{bottom:175.973333pt;}
.y17{bottom:178.506667pt;}
.y24{bottom:178.573333pt;}
.y39{bottom:183.560000pt;}
.y35{bottom:190.573333pt;}
.y47{bottom:192.066667pt;}
.y53{bottom:192.400000pt;}
.y43{bottom:192.466667pt;}
.y4d{bottom:192.600000pt;}
.y58{bottom:204.866667pt;}
.y16{bottom:207.573333pt;}
.y9{bottom:210.026667pt;}
.y23{bottom:212.640000pt;}
.y34{bottom:219.640000pt;}
.y46{bottom:226.133333pt;}
.y42{bottom:226.533333pt;}
.y4c{bottom:226.666667pt;}
.y52{bottom:227.466667pt;}
.y57{bottom:234.933333pt;}
.y8{bottom:239.106667pt;}
.y15{bottom:241.626667pt;}
.y22{bottom:241.693333pt;}
.y33{bottom:247.693333pt;}
.y5e{bottom:248.973333pt;}
.y3c{bottom:252.773333pt;}
.y51{bottom:255.533333pt;}
.y45{bottom:260.200000pt;}
.y4b{bottom:260.733333pt;}
.y41{bottom:261.600000pt;}
.y14{bottom:270.693333pt;}
.y7{bottom:273.173333pt;}
.y21{bottom:275.773333pt;}
.y32{bottom:276.733333pt;}
.y3b{bottom:281.840000pt;}
.y50{bottom:289.600000pt;}
.y44{bottom:295.266667pt;}
.y4a{bottom:295.800000pt;}
.y6{bottom:302.200000pt;}
.y20{bottom:304.800000pt;}
.y31{bottom:305.800000pt;}
.y4f{bottom:324.666667pt;}
.y30{bottom:334.840000pt;}
.y1f{bottom:338.866667pt;}
.y5c{bottom:359.026667pt;}
.y2f{bottom:363.893333pt;}
.y1e{bottom:367.933333pt;}
.y5d{bottom:373.106667pt;}
.y3a{bottom:377.466667pt;}
.y40{bottom:418.400000pt;}
.y49{bottom:444.133333pt;}
.y5f{bottom:459.560000pt;}
.y56{bottom:465.506667pt;}
.y5{bottom:466.893333pt;}
.y3f{bottom:476.506667pt;}
.h8{height:55.142267pt;}
.h9{height:55.262533pt;}
.h17{height:58.810267pt;}
.h3{height:69.814267pt;}
.h13{height:77.104000pt;}
.hf{height:77.150267pt;}
.h7{height:87.962000pt;}
.hd{height:88.084000pt;}
.h5{height:88.154267pt;}
.h6{height:88.276533pt;}
.ha{height:88.346533pt;}
.hb{height:88.469067pt;}
.h16{height:99.158267pt;}
.h11{height:102.826267pt;}
.h12{height:102.948533pt;}
.h14{height:132.004000pt;}
.h15{height:135.960533pt;}
.h10{height:157.746000pt;}
.he{height:175.924000pt;}
.h4{height:176.046000pt;}
.h2{height:194.224000pt;}
.h1{height:194.346000pt;}
.hc{height:488.699867pt;}
.h0{height:540.000000pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x9{left:9.599986pt;}
.x1{left:12.999986pt;}
.x18{left:27.266652pt;}
.x11{left:54.733319pt;}
.x8{left:61.166652pt;}
.x14{left:67.666652pt;}
.x16{left:72.666652pt;}
.x22{left:80.799986pt;}
.x24{left:84.066652pt;}
.x5{left:91.466652pt;}
.x19{left:92.699986pt;}
.x13{left:94.733319pt;}
.x6{left:106.733319pt;}
.x2{left:124.199986pt;}
.xf{left:136.773319pt;}
.x7{left:142.799986pt;}
.x17{left:156.133319pt;}
.x23{left:161.266652pt;}
.x25{left:178.906652pt;}
.x26{left:213.773319pt;}
.x21{left:236.799986pt;}
.x20{left:247.666652pt;}
.x3{left:301.239986pt;}
.x27{left:307.693319pt;}
.x1b{left:369.773319pt;}
.x4{left:390.733319pt;}
.x1c{left:403.733319pt;}
.x1a{left:433.599986pt;}
.x15{left:454.066652pt;}
.x12{left:490.893319pt;}
.xa{left:623.693319pt;}
.xe{left:631.333319pt;}
.xd{left:632.799986pt;}
.xb{left:639.066652pt;}
.x1d{left:653.573319pt;}
.x1e{left:656.693319pt;}
.xc{left:699.466652pt;}
.x1f{left:702.399986pt;}
.x10{left:706.506652pt;}
}




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