
    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_3de9af06ee5d7010b6b80670.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_69d543ab807ced241b101aef.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.200684;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_fb0482d66e78e76dfb3b8545.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.206055;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_3613100229a2b270a0b0783d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.193359;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_ff003dcdab4cd3b6d49bd3fb.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.435059;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_e4f0713548c8067ca61c2407.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.206055;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_96e7b318c4be7e1d32048239.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_890c530b224b6f44d071c15c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-27.336000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.lsa{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.457800px;}
.ls7{letter-spacing:-0.164400px;}
.ls5{letter-spacing:-0.152400px;}
.ls6{letter-spacing:-0.048960px;}
.ls3{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.109200px;}
.ls8{letter-spacing:0.262200px;}
.ls1{letter-spacing:0.354240px;}
.ls2{letter-spacing:0.360000px;}
.ls0{letter-spacing:36.305280px;}
.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;}
}
.ws7{word-spacing:-16.822200px;}
.ws4{word-spacing:-16.669200px;}
.ws0{word-spacing:-16.560000px;}
.ws5{word-spacing:-16.407600px;}
.ws6{word-spacing:-16.395600px;}
.ws8{word-spacing:-16.102200px;}
.ws2{word-spacing:-15.300000px;}
.ws1{word-spacing:-9.720000px;}
.ws3{word-spacing:0.000000px;}
._2{margin-left:-1.126080px;}
._0{width:1.149120px;}
._1{width:2.627760px;}
._5{width:4.106880px;}
._4{width:5.431680px;}
._3{width:6.690240px;}
._b{width:8.066400px;}
._a{width:9.869760px;}
._6{width:10.995840px;}
._d{width:12.288960px;}
._e{width:13.446720px;}
._14{width:14.483520px;}
._9{width:15.500160px;}
._c{width:17.619840px;}
._10{width:19.209600px;}
._11{width:20.335680px;}
._f{width:21.395520px;}
._7{width:23.316480px;}
._8{width:24.442560px;}
._13{width:26.760960px;}
._12{width:27.887040px;}
._16{width:30.735360px;}
._15{width:32.391360px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs4{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y3{bottom:57.600000px;}
.y2{bottom:78.336000px;}
.y32{bottom:110.016000px;}
.y63{bottom:115.056000px;}
.y31{bottom:127.296000px;}
.y83{bottom:134.136000px;}
.y62{bottom:137.376000px;}
.y82{bottom:145.296000px;}
.y30{bottom:151.230000px;}
.y61{bottom:159.690000px;}
.y2f{bottom:162.390000px;}
.y81{bottom:172.830000px;}
.y60{bottom:181.830000px;}
.y2e{bottom:194.070000px;}
.y80{bottom:195.150000px;}
.y5f{bottom:204.150000px;}
.y2d{bottom:216.390000px;}
.y7f{bottom:217.470000px;}
.y5e{bottom:226.470000px;}
.y2c{bottom:238.530000px;}
.y7e{bottom:239.610000px;}
.y5d{bottom:248.610000px;}
.y2b{bottom:260.850000px;}
.y7d{bottom:261.930000px;}
.y5c{bottom:270.930000px;}
.y2a{bottom:283.170000px;}
.y7c{bottom:284.250000px;}
.y5b{bottom:293.250000px;}
.y29{bottom:305.310000px;}
.y7b{bottom:306.390000px;}
.y5a{bottom:315.390000px;}
.y28{bottom:327.675000px;}
.y7a{bottom:328.755000px;}
.y59{bottom:337.755000px;}
.y27{bottom:349.995000px;}
.y79{bottom:351.075000px;}
.y58{bottom:360.075000px;}
.y26{bottom:372.135000px;}
.y78{bottom:373.215000px;}
.y57{bottom:382.215000px;}
.y25{bottom:394.455000px;}
.y77{bottom:395.535000px;}
.y56{bottom:404.535000px;}
.y24{bottom:416.775000px;}
.y76{bottom:417.855000px;}
.y55{bottom:426.855000px;}
.y23{bottom:438.915000px;}
.y75{bottom:439.995000px;}
.y54{bottom:448.995000px;}
.y22{bottom:461.235000px;}
.y74{bottom:462.315000px;}
.y53{bottom:471.315000px;}
.y21{bottom:483.555000px;}
.y73{bottom:484.635000px;}
.y52{bottom:493.635000px;}
.y20{bottom:505.695000px;}
.y72{bottom:506.775000px;}
.y51{bottom:515.775000px;}
.y1f{bottom:528.015000px;}
.y71{bottom:529.095000px;}
.y50{bottom:538.095000px;}
.y1e{bottom:550.335000px;}
.y70{bottom:551.415000px;}
.y4f{bottom:560.415000px;}
.y1d{bottom:572.475000px;}
.y6f{bottom:573.555000px;}
.y4e{bottom:582.555000px;}
.y1c{bottom:594.825000px;}
.y6e{bottom:595.905000px;}
.y4d{bottom:604.905000px;}
.y1b{bottom:617.145000px;}
.y6d{bottom:618.225000px;}
.y4c{bottom:627.225000px;}
.y1a{bottom:639.285000px;}
.y6c{bottom:640.365000px;}
.y4b{bottom:649.365000px;}
.y19{bottom:661.605000px;}
.y6b{bottom:662.685000px;}
.y4a{bottom:671.685000px;}
.y18{bottom:683.925000px;}
.y6a{bottom:685.005000px;}
.y49{bottom:694.005000px;}
.y17{bottom:706.065000px;}
.y69{bottom:707.145000px;}
.y48{bottom:716.145000px;}
.y16{bottom:728.385000px;}
.y68{bottom:729.465000px;}
.y47{bottom:738.465000px;}
.y15{bottom:750.705000px;}
.y67{bottom:751.785000px;}
.y46{bottom:760.785000px;}
.y14{bottom:772.845000px;}
.y66{bottom:773.925000px;}
.y45{bottom:782.925000px;}
.y13{bottom:795.165000px;}
.y65{bottom:796.245000px;}
.y44{bottom:805.245000px;}
.y12{bottom:817.485000px;}
.y64{bottom:823.065000px;}
.y43{bottom:827.565000px;}
.y11{bottom:839.625000px;}
.y42{bottom:849.705000px;}
.y10{bottom:861.990000px;}
.y41{bottom:872.070000px;}
.yf{bottom:884.310000px;}
.y40{bottom:894.390000px;}
.ye{bottom:906.450000px;}
.y3f{bottom:916.530000px;}
.yd{bottom:928.770000px;}
.y3e{bottom:938.850000px;}
.yc{bottom:951.090000px;}
.y3d{bottom:961.170000px;}
.yb{bottom:973.230000px;}
.y3c{bottom:983.310000px;}
.ya{bottom:995.550000px;}
.y3b{bottom:1005.630000px;}
.y9{bottom:1017.870000px;}
.y3a{bottom:1027.950000px;}
.y8{bottom:1040.010000px;}
.y39{bottom:1050.090000px;}
.y7{bottom:1062.330000px;}
.y38{bottom:1072.410000px;}
.y6{bottom:1084.650000px;}
.y37{bottom:1094.730000px;}
.y5{bottom:1106.790000px;}
.y36{bottom:1116.870000px;}
.y4{bottom:1131.480000px;}
.y35{bottom:1139.220000px;}
.y34{bottom:1171.260000px;}
.y33{bottom:1192.500000px;}
.y1{bottom:1193.580000px;}
.hb{height:38.158594px;}
.hc{height:58.651172px;}
.h9{height:60.450469px;}
.h8{height:61.259062px;}
.h7{height:61.614844px;}
.ha{height:68.956875px;}
.h5{height:70.664062px;}
.h6{height:89.073633px;}
.h1{height:722.250000px;}
.h0{height:722.590200px;}
.h2{height:722.590500px;}
.h3{height:1262.880000px;}
.h4{height:1263.000000px;}
.w2{width:722.660250px;}
.w0{width:722.661000px;}
.w1{width:723.000000px;}
.w3{width:892.980000px;}
.w4{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.656000px;}
.x8{left:154.650000px;}
.xa{left:159.690000px;}
.x9{left:181.650000px;}
.x3{left:230.790000px;}
.x4{left:465.195000px;}
.x5{left:528.945000px;}
.xb{left:547.845000px;}
.x6{left:629.565000px;}
.xc{left:747.510000px;}
.x2{left:756.510000px;}
.x7{left:802.770000px;}
@media print{
.v2{vertical-align:-24.298667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.lsa{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.406933pt;}
.ls7{letter-spacing:-0.146133pt;}
.ls5{letter-spacing:-0.135467pt;}
.ls6{letter-spacing:-0.043520pt;}
.ls3{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.097067pt;}
.ls8{letter-spacing:0.233067pt;}
.ls1{letter-spacing:0.314880pt;}
.ls2{letter-spacing:0.320000pt;}
.ls0{letter-spacing:32.271360pt;}
.ws7{word-spacing:-14.953067pt;}
.ws4{word-spacing:-14.817067pt;}
.ws0{word-spacing:-14.720000pt;}
.ws5{word-spacing:-14.584533pt;}
.ws6{word-spacing:-14.573867pt;}
.ws8{word-spacing:-14.313067pt;}
.ws2{word-spacing:-13.600000pt;}
.ws1{word-spacing:-8.640000pt;}
.ws3{word-spacing:0.000000pt;}
._2{margin-left:-1.000960pt;}
._0{width:1.021440pt;}
._1{width:2.335787pt;}
._5{width:3.650560pt;}
._4{width:4.828160pt;}
._3{width:5.946880pt;}
._b{width:7.170133pt;}
._a{width:8.773120pt;}
._6{width:9.774080pt;}
._d{width:10.923520pt;}
._e{width:11.952640pt;}
._14{width:12.874240pt;}
._9{width:13.777920pt;}
._c{width:15.662080pt;}
._10{width:17.075200pt;}
._11{width:18.076160pt;}
._f{width:19.018240pt;}
._7{width:20.725760pt;}
._8{width:21.726720pt;}
._13{width:23.787520pt;}
._12{width:24.788480pt;}
._16{width:27.320320pt;}
._15{width:28.792320pt;}
.fs3{font-size:34.560000pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:51.200000pt;}
.y2{bottom:69.632000pt;}
.y32{bottom:97.792000pt;}
.y63{bottom:102.272000pt;}
.y31{bottom:113.152000pt;}
.y83{bottom:119.232000pt;}
.y62{bottom:122.112000pt;}
.y82{bottom:129.152000pt;}
.y30{bottom:134.426667pt;}
.y61{bottom:141.946667pt;}
.y2f{bottom:144.346667pt;}
.y81{bottom:153.626667pt;}
.y60{bottom:161.626667pt;}
.y2e{bottom:172.506667pt;}
.y80{bottom:173.466667pt;}
.y5f{bottom:181.466667pt;}
.y2d{bottom:192.346667pt;}
.y7f{bottom:193.306667pt;}
.y5e{bottom:201.306667pt;}
.y2c{bottom:212.026667pt;}
.y7e{bottom:212.986667pt;}
.y5d{bottom:220.986667pt;}
.y2b{bottom:231.866667pt;}
.y7d{bottom:232.826667pt;}
.y5c{bottom:240.826667pt;}
.y2a{bottom:251.706667pt;}
.y7c{bottom:252.666667pt;}
.y5b{bottom:260.666667pt;}
.y29{bottom:271.386667pt;}
.y7b{bottom:272.346667pt;}
.y5a{bottom:280.346667pt;}
.y28{bottom:291.266667pt;}
.y7a{bottom:292.226667pt;}
.y59{bottom:300.226667pt;}
.y27{bottom:311.106667pt;}
.y79{bottom:312.066667pt;}
.y58{bottom:320.066667pt;}
.y26{bottom:330.786667pt;}
.y78{bottom:331.746667pt;}
.y57{bottom:339.746667pt;}
.y25{bottom:350.626667pt;}
.y77{bottom:351.586667pt;}
.y56{bottom:359.586667pt;}
.y24{bottom:370.466667pt;}
.y76{bottom:371.426667pt;}
.y55{bottom:379.426667pt;}
.y23{bottom:390.146667pt;}
.y75{bottom:391.106667pt;}
.y54{bottom:399.106667pt;}
.y22{bottom:409.986667pt;}
.y74{bottom:410.946667pt;}
.y53{bottom:418.946667pt;}
.y21{bottom:429.826667pt;}
.y73{bottom:430.786667pt;}
.y52{bottom:438.786667pt;}
.y20{bottom:449.506667pt;}
.y72{bottom:450.466667pt;}
.y51{bottom:458.466667pt;}
.y1f{bottom:469.346667pt;}
.y71{bottom:470.306667pt;}
.y50{bottom:478.306667pt;}
.y1e{bottom:489.186667pt;}
.y70{bottom:490.146667pt;}
.y4f{bottom:498.146667pt;}
.y1d{bottom:508.866667pt;}
.y6f{bottom:509.826667pt;}
.y4e{bottom:517.826667pt;}
.y1c{bottom:528.733333pt;}
.y6e{bottom:529.693333pt;}
.y4d{bottom:537.693333pt;}
.y1b{bottom:548.573333pt;}
.y6d{bottom:549.533333pt;}
.y4c{bottom:557.533333pt;}
.y1a{bottom:568.253333pt;}
.y6c{bottom:569.213333pt;}
.y4b{bottom:577.213333pt;}
.y19{bottom:588.093333pt;}
.y6b{bottom:589.053333pt;}
.y4a{bottom:597.053333pt;}
.y18{bottom:607.933333pt;}
.y6a{bottom:608.893333pt;}
.y49{bottom:616.893333pt;}
.y17{bottom:627.613333pt;}
.y69{bottom:628.573333pt;}
.y48{bottom:636.573333pt;}
.y16{bottom:647.453333pt;}
.y68{bottom:648.413333pt;}
.y47{bottom:656.413333pt;}
.y15{bottom:667.293333pt;}
.y67{bottom:668.253333pt;}
.y46{bottom:676.253333pt;}
.y14{bottom:686.973333pt;}
.y66{bottom:687.933333pt;}
.y45{bottom:695.933333pt;}
.y13{bottom:706.813333pt;}
.y65{bottom:707.773333pt;}
.y44{bottom:715.773333pt;}
.y12{bottom:726.653333pt;}
.y64{bottom:731.613333pt;}
.y43{bottom:735.613333pt;}
.y11{bottom:746.333333pt;}
.y42{bottom:755.293333pt;}
.y10{bottom:766.213333pt;}
.y41{bottom:775.173333pt;}
.yf{bottom:786.053333pt;}
.y40{bottom:795.013333pt;}
.ye{bottom:805.733333pt;}
.y3f{bottom:814.693333pt;}
.yd{bottom:825.573333pt;}
.y3e{bottom:834.533333pt;}
.yc{bottom:845.413333pt;}
.y3d{bottom:854.373333pt;}
.yb{bottom:865.093333pt;}
.y3c{bottom:874.053333pt;}
.ya{bottom:884.933333pt;}
.y3b{bottom:893.893333pt;}
.y9{bottom:904.773333pt;}
.y3a{bottom:913.733333pt;}
.y8{bottom:924.453333pt;}
.y39{bottom:933.413333pt;}
.y7{bottom:944.293333pt;}
.y38{bottom:953.253333pt;}
.y6{bottom:964.133333pt;}
.y37{bottom:973.093333pt;}
.y5{bottom:983.813333pt;}
.y36{bottom:992.773333pt;}
.y4{bottom:1005.760000pt;}
.y35{bottom:1012.640000pt;}
.y34{bottom:1041.120000pt;}
.y33{bottom:1060.000000pt;}
.y1{bottom:1060.960000pt;}
.hb{height:33.918750pt;}
.hc{height:52.134375pt;}
.h9{height:53.733750pt;}
.h8{height:54.452500pt;}
.h7{height:54.768750pt;}
.ha{height:61.295000pt;}
.h5{height:62.812500pt;}
.h6{height:79.176563pt;}
.h1{height:642.000000pt;}
.h0{height:642.302400pt;}
.h2{height:642.302667pt;}
.h3{height:1122.560000pt;}
.h4{height:1122.666667pt;}
.w2{width:642.364667pt;}
.w0{width:642.365333pt;}
.w1{width:642.666667pt;}
.w3{width:793.760000pt;}
.w4{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.472000pt;}
.x8{left:137.466667pt;}
.xa{left:141.946667pt;}
.x9{left:161.466667pt;}
.x3{left:205.146667pt;}
.x4{left:413.506667pt;}
.x5{left:470.173333pt;}
.xb{left:486.973333pt;}
.x6{left:559.613333pt;}
.xc{left:664.453333pt;}
.x2{left:672.453333pt;}
.x7{left:713.573333pt;}
}




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