
    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_d11dad481b09e0dc6a21f5fc.woff')format("woff");}.ff1{font-family:ff1;line-height:1.120605;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_05deba78ef700b4dd25aca17.woff')format("woff");}.ff2{font-family:ff2;line-height:1.201172;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_b941850bc25c5a15cc93074b.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_91d50a672d965cec265ff01a.woff')format("woff");}.ff4{font-family:ff4;line-height:1.197000;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_f69262ac5f407454c08e20b0.woff')format("woff");}.ff5{font-family:ff5;line-height:1.197000;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_fdc7771e8a2f5d1cc14612f8.woff')format("woff");}.ff6{font-family:ff6;line-height:1.240000;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_1a7f702be424fa8c36361afb.woff')format("woff");}.ff7{font-family:ff7;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:-1.992000px;}
.ls3{letter-spacing:-0.492000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:2.208000px;}
.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;}
}
.ws3{word-spacing:-18.864000px;}
.ws1{word-spacing:-18.216000px;}
.ws0{word-spacing:-17.292000px;}
.ws2{word-spacing:0.000000px;}
._5{margin-left:-9.828000px;}
._3{margin-left:-7.128000px;}
._6{margin-left:-6.048000px;}
._0{margin-left:-4.968000px;}
._2{margin-left:-3.780000px;}
._1{margin-left:-2.376000px;}
._4{margin-left:-1.296000px;}
._7{width:1.230000px;}
._e{width:2.538000px;}
._f{width:3.588000px;}
._c{width:4.800000px;}
._10{width:5.916000px;}
._16{width:6.990000px;}
._15{width:8.148000px;}
._d{width:9.186000px;}
._1e{width:10.188000px;}
._b{width:11.196000px;}
._a{width:12.252000px;}
._8{width:13.398000px;}
._9{width:14.958000px;}
._1c{width:16.170000px;}
._17{width:18.702000px;}
._1f{width:20.172000px;}
._23{width:21.474000px;}
._1b{width:24.750000px;}
._12{width:25.956000px;}
._11{width:26.970000px;}
._1d{width:28.440000px;}
._13{width:30.714000px;}
._14{width:32.382000px;}
._25{width:33.990000px;}
._24{width:35.268000px;}
._21{width:37.554000px;}
._20{width:38.610000px;}
._18{width:42.402000px;}
._1a{width:43.770000px;}
._19{width:45.168000px;}
._22{width:47.166000px;}
._2a{width:63.402000px;}
._28{width:64.416000px;}
._29{width:65.742000px;}
._27{width:67.134000px;}
._26{width:68.526000px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:3.000000px;}
.fs2{font-size:36.000000px;}
.fs0{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:8.625000px;}
.y9{bottom:9.375000px;}
.y8{bottom:18.000000px;}
.y7{bottom:58.537500px;}
.yc{bottom:70.912500px;}
.yb{bottom:91.162500px;}
.ya{bottom:111.412500px;}
.y6{bottom:126.787500px;}
.y31{bottom:207.075000px;}
.y58{bottom:216.450000px;}
.y30{bottom:229.950000px;}
.y57{bottom:239.325000px;}
.y2f{bottom:253.200000px;}
.y56{bottom:262.575000px;}
.y2e{bottom:276.450000px;}
.y55{bottom:285.825000px;}
.y2d{bottom:299.325000px;}
.y54{bottom:308.745000px;}
.y2c{bottom:322.620000px;}
.y53{bottom:331.995000px;}
.y2b{bottom:345.870000px;}
.y52{bottom:355.230000px;}
.y2a{bottom:368.730000px;}
.y51{bottom:378.105000px;}
.y29{bottom:391.980000px;}
.y50{bottom:401.370000px;}
.y28{bottom:415.245000px;}
.y7b{bottom:422.370000px;}
.y4f{bottom:424.620000px;}
.y27{bottom:438.525000px;}
.y7a{bottom:445.650000px;}
.y4e{bottom:447.525000px;}
.y26{bottom:461.400000px;}
.y79{bottom:468.900000px;}
.y4d{bottom:470.775000px;}
.y25{bottom:484.650000px;}
.y78{bottom:491.775000px;}
.y4c{bottom:494.025000px;}
.y24{bottom:507.900000px;}
.y77{bottom:515.025000px;}
.y4b{bottom:517.275000px;}
.y23{bottom:530.775000px;}
.y76{bottom:538.275000px;}
.y4a{bottom:540.150000px;}
.y22{bottom:555.150000px;}
.y75{bottom:561.195000px;}
.y49{bottom:563.445000px;}
.y21{bottom:579.195000px;}
.y74{bottom:584.445000px;}
.y48{bottom:586.695000px;}
.y20{bottom:602.445000px;}
.y73{bottom:607.695000px;}
.y47{bottom:609.570000px;}
.y1f{bottom:625.695000px;}
.y72{bottom:630.570000px;}
.y46{bottom:632.820000px;}
.y1e{bottom:648.570000px;}
.y71{bottom:653.820000px;}
.y45{bottom:656.070000px;}
.y1d{bottom:671.820000px;}
.y70{bottom:677.070000px;}
.y44{bottom:678.945000px;}
.y1c{bottom:695.100000px;}
.y6f{bottom:699.975000px;}
.y43{bottom:702.225000px;}
.y1b{bottom:717.975000px;}
.y6e{bottom:723.225000px;}
.y69{bottom:725.475000px;}
.y42{bottom:726.225000px;}
.y1a{bottom:741.225000px;}
.y6d{bottom:746.475000px;}
.y68{bottom:748.350000px;}
.y41{bottom:750.600000px;}
.y19{bottom:764.475000px;}
.y6c{bottom:769.350000px;}
.y67{bottom:771.600000px;}
.y40{bottom:773.850000px;}
.y18{bottom:787.350000px;}
.y6b{bottom:792.600000px;}
.y66{bottom:794.850000px;}
.y3f{bottom:796.725000px;}
.y17{bottom:810.600000px;}
.y6a{bottom:816.600000px;}
.y65{bottom:817.755000px;}
.y3e{bottom:820.005000px;}
.y16{bottom:833.880000px;}
.y64{bottom:841.005000px;}
.y3d{bottom:843.255000px;}
.y15{bottom:856.755000px;}
.y63{bottom:864.255000px;}
.y3c{bottom:866.130000px;}
.y14{bottom:880.005000px;}
.y62{bottom:887.130000px;}
.y3b{bottom:889.380000px;}
.y13{bottom:903.255000px;}
.y61{bottom:910.380000px;}
.y3a{bottom:912.630000px;}
.y12{bottom:926.130000px;}
.y60{bottom:933.630000px;}
.y39{bottom:935.505000px;}
.y11{bottom:955.425000px;}
.y5f{bottom:956.550000px;}
.y38{bottom:958.800000px;}
.y5e{bottom:979.800000px;}
.y37{bottom:982.050000px;}
.y10{bottom:984.675000px;}
.y5d{bottom:1003.050000px;}
.y36{bottom:1004.925000px;}
.yf{bottom:1013.550000px;}
.y5c{bottom:1025.925000px;}
.y35{bottom:1028.175000px;}
.ye{bottom:1045.425000px;}
.y5b{bottom:1049.175000px;}
.y34{bottom:1051.425000px;}
.y5a{bottom:1072.425000px;}
.y33{bottom:1074.330000px;}
.yd{bottom:1078.455000px;}
.y59{bottom:1096.455000px;}
.y32{bottom:1097.580000px;}
.y5{bottom:1131.705000px;}
.y4{bottom:1151.955000px;}
.y3{bottom:1167.705000px;}
.y1{bottom:1168.455000px;}
.h4{height:2.983887px;}
.h6{height:35.806641px;}
.h1{height:40.537500px;}
.h3{height:42.037500px;}
.h8{height:48.972000px;}
.h2{height:65.645508px;}
.h9{height:65.868000px;}
.ha{height:68.574000px;}
.hb{height:71.856000px;}
.h5{height:74.287500px;}
.h7{height:110.583984px;}
.h0{height:1263.000000px;}
.w6{width:318.525000px;}
.w5{width:318.900000px;}
.w2{width:620.130000px;}
.w3{width:636.675000px;}
.w4{width:892.874987px;}
.w0{width:892.875000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.912500px;}
.x2{left:112.170000px;}
.x5{left:118.582500px;}
.x3{left:128.287500px;}
.x1{left:136.950000px;}
.xb{left:180.824987px;}
.xc{left:207.824987px;}
.x7{left:310.260000px;}
.x8{left:442.319987px;}
.x6{left:446.445000px;}
.xa{left:592.019987px;}
.x9{left:598.769987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-1.770667pt;}
.ls3{letter-spacing:-0.437333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:1.962667pt;}
.ws3{word-spacing:-16.768000pt;}
.ws1{word-spacing:-16.192000pt;}
.ws0{word-spacing:-15.370667pt;}
.ws2{word-spacing:0.000000pt;}
._5{margin-left:-8.736000pt;}
._3{margin-left:-6.336000pt;}
._6{margin-left:-5.376000pt;}
._0{margin-left:-4.416000pt;}
._2{margin-left:-3.360000pt;}
._1{margin-left:-2.112000pt;}
._4{margin-left:-1.152000pt;}
._7{width:1.093333pt;}
._e{width:2.256000pt;}
._f{width:3.189333pt;}
._c{width:4.266667pt;}
._10{width:5.258667pt;}
._16{width:6.213333pt;}
._15{width:7.242667pt;}
._d{width:8.165333pt;}
._1e{width:9.056000pt;}
._b{width:9.952000pt;}
._a{width:10.890667pt;}
._8{width:11.909333pt;}
._9{width:13.296000pt;}
._1c{width:14.373333pt;}
._17{width:16.624000pt;}
._1f{width:17.930667pt;}
._23{width:19.088000pt;}
._1b{width:22.000000pt;}
._12{width:23.072000pt;}
._11{width:23.973333pt;}
._1d{width:25.280000pt;}
._13{width:27.301333pt;}
._14{width:28.784000pt;}
._25{width:30.213333pt;}
._24{width:31.349333pt;}
._21{width:33.381333pt;}
._20{width:34.320000pt;}
._18{width:37.690667pt;}
._1a{width:38.906667pt;}
._19{width:40.149333pt;}
._22{width:41.925333pt;}
._2a{width:56.357333pt;}
._28{width:57.258667pt;}
._29{width:58.437333pt;}
._27{width:59.674667pt;}
._26{width:60.912000pt;}
.fs1{font-size:2.666667pt;}
.fs2{font-size:32.000000pt;}
.fs0{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:7.666667pt;}
.y9{bottom:8.333333pt;}
.y8{bottom:16.000000pt;}
.y7{bottom:52.033333pt;}
.yc{bottom:63.033333pt;}
.yb{bottom:81.033333pt;}
.ya{bottom:99.033333pt;}
.y6{bottom:112.700000pt;}
.y31{bottom:184.066667pt;}
.y58{bottom:192.400000pt;}
.y30{bottom:204.400000pt;}
.y57{bottom:212.733333pt;}
.y2f{bottom:225.066667pt;}
.y56{bottom:233.400000pt;}
.y2e{bottom:245.733333pt;}
.y55{bottom:254.066667pt;}
.y2d{bottom:266.066667pt;}
.y54{bottom:274.440000pt;}
.y2c{bottom:286.773333pt;}
.y53{bottom:295.106667pt;}
.y2b{bottom:307.440000pt;}
.y52{bottom:315.760000pt;}
.y2a{bottom:327.760000pt;}
.y51{bottom:336.093333pt;}
.y29{bottom:348.426667pt;}
.y50{bottom:356.773333pt;}
.y28{bottom:369.106667pt;}
.y7b{bottom:375.440000pt;}
.y4f{bottom:377.440000pt;}
.y27{bottom:389.800000pt;}
.y7a{bottom:396.133333pt;}
.y4e{bottom:397.800000pt;}
.y26{bottom:410.133333pt;}
.y79{bottom:416.800000pt;}
.y4d{bottom:418.466667pt;}
.y25{bottom:430.800000pt;}
.y78{bottom:437.133333pt;}
.y4c{bottom:439.133333pt;}
.y24{bottom:451.466667pt;}
.y77{bottom:457.800000pt;}
.y4b{bottom:459.800000pt;}
.y23{bottom:471.800000pt;}
.y76{bottom:478.466667pt;}
.y4a{bottom:480.133333pt;}
.y22{bottom:493.466667pt;}
.y75{bottom:498.840000pt;}
.y49{bottom:500.840000pt;}
.y21{bottom:514.840000pt;}
.y74{bottom:519.506667pt;}
.y48{bottom:521.506667pt;}
.y20{bottom:535.506667pt;}
.y73{bottom:540.173333pt;}
.y47{bottom:541.840000pt;}
.y1f{bottom:556.173333pt;}
.y72{bottom:560.506667pt;}
.y46{bottom:562.506667pt;}
.y1e{bottom:576.506667pt;}
.y71{bottom:581.173333pt;}
.y45{bottom:583.173333pt;}
.y1d{bottom:597.173333pt;}
.y70{bottom:601.840000pt;}
.y44{bottom:603.506667pt;}
.y1c{bottom:617.866667pt;}
.y6f{bottom:622.200000pt;}
.y43{bottom:624.200000pt;}
.y1b{bottom:638.200000pt;}
.y6e{bottom:642.866667pt;}
.y69{bottom:644.866667pt;}
.y42{bottom:645.533333pt;}
.y1a{bottom:658.866667pt;}
.y6d{bottom:663.533333pt;}
.y68{bottom:665.200000pt;}
.y41{bottom:667.200000pt;}
.y19{bottom:679.533333pt;}
.y6c{bottom:683.866667pt;}
.y67{bottom:685.866667pt;}
.y40{bottom:687.866667pt;}
.y18{bottom:699.866667pt;}
.y6b{bottom:704.533333pt;}
.y66{bottom:706.533333pt;}
.y3f{bottom:708.200000pt;}
.y17{bottom:720.533333pt;}
.y6a{bottom:725.866667pt;}
.y65{bottom:726.893333pt;}
.y3e{bottom:728.893333pt;}
.y16{bottom:741.226667pt;}
.y64{bottom:747.560000pt;}
.y3d{bottom:749.560000pt;}
.y15{bottom:761.560000pt;}
.y63{bottom:768.226667pt;}
.y3c{bottom:769.893333pt;}
.y14{bottom:782.226667pt;}
.y62{bottom:788.560000pt;}
.y3b{bottom:790.560000pt;}
.y13{bottom:802.893333pt;}
.y61{bottom:809.226667pt;}
.y3a{bottom:811.226667pt;}
.y12{bottom:823.226667pt;}
.y60{bottom:829.893333pt;}
.y39{bottom:831.560000pt;}
.y11{bottom:849.266667pt;}
.y5f{bottom:850.266667pt;}
.y38{bottom:852.266667pt;}
.y5e{bottom:870.933333pt;}
.y37{bottom:872.933333pt;}
.y10{bottom:875.266667pt;}
.y5d{bottom:891.600000pt;}
.y36{bottom:893.266667pt;}
.yf{bottom:900.933333pt;}
.y5c{bottom:911.933333pt;}
.y35{bottom:913.933333pt;}
.ye{bottom:929.266667pt;}
.y5b{bottom:932.600000pt;}
.y34{bottom:934.600000pt;}
.y5a{bottom:953.266667pt;}
.y33{bottom:954.960000pt;}
.yd{bottom:958.626667pt;}
.y59{bottom:974.626667pt;}
.y32{bottom:975.626667pt;}
.y5{bottom:1005.960000pt;}
.y4{bottom:1023.960000pt;}
.y3{bottom:1037.960000pt;}
.y1{bottom:1038.626667pt;}
.h4{height:2.652344pt;}
.h6{height:31.828125pt;}
.h1{height:36.033333pt;}
.h3{height:37.366667pt;}
.h8{height:43.530667pt;}
.h2{height:58.351562pt;}
.h9{height:58.549333pt;}
.ha{height:60.954667pt;}
.hb{height:63.872000pt;}
.h5{height:66.033333pt;}
.h7{height:98.296875pt;}
.h0{height:1122.666667pt;}
.w6{width:283.133333pt;}
.w5{width:283.466667pt;}
.w2{width:551.226667pt;}
.w3{width:565.933333pt;}
.w4{width:793.666655pt;}
.w0{width:793.666667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.033333pt;}
.x2{left:99.706667pt;}
.x5{left:105.406667pt;}
.x3{left:114.033333pt;}
.x1{left:121.733333pt;}
.xb{left:160.733322pt;}
.xc{left:184.733322pt;}
.x7{left:275.786667pt;}
.x8{left:393.173322pt;}
.x6{left:396.840000pt;}
.xa{left:526.239988pt;}
.x9{left:532.239988pt;}
}




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