
    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_8bb180076d3cc32daf299532.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.115234;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_295200cbaeb9629185133e74.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.082520;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_e1a608287d4e7c1d3ae88927.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_322054cfc37037d6df313acc.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_3b26518b5f329e6e5812c7df.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914551;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.m2{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);}
.v1{vertical-align:-35.544000px;}
.v3{vertical-align:-31.638000px;}
.v2{vertical-align:-29.934000px;}
.v4{vertical-align:-26.532000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:111.912000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:59.105304px;}
.ls2{letter-spacing:63.426252px;}
.ls3{letter-spacing:70.176840px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-36.559014px;}
.ws3{word-spacing:-33.261606px;}
.ws5{word-spacing:-29.916000px;}
.ws8{word-spacing:-26.570394px;}
.ws6{word-spacing:-24.921690px;}
.ws4{word-spacing:-0.120078px;}
.ws1{word-spacing:0.000000px;}
.ws2{word-spacing:36.621420px;}
.ws7{word-spacing:964.602000px;}
._b{margin-left:-15.490062px;}
._a{margin-left:-13.688892px;}
._3{margin-left:-10.800648px;}
._9{margin-left:-9.537138px;}
._2{margin-left:-7.786938px;}
._6{margin-left:-6.717426px;}
._0{margin-left:-5.675226px;}
._7{margin-left:-4.297092px;}
._d{margin-left:-2.521638px;}
._1{margin-left:-1.319820px;}
._4{width:1.073760px;}
._5{width:2.719710px;}
._8{width:4.120578px;}
._c{width:5.181960px;}
.fc5{color:rgb(82,148,226);}
.fc4{color:transparent;}
.fc3{color:rgb(0,255,255);}
.fc2{color:rgb(30,144,255);}
.fc1{color:rgb(255,255,0);}
.fc0{color:rgb(255,255,255);}
.fsa{font-size:40.140000px;}
.fs9{font-size:48.642000px;}
.fs6{font-size:54.084000px;}
.fs8{font-size:84.018000px;}
.fs2{font-size:89.970000px;}
.fs7{font-size:95.922000px;}
.fs3{font-size:108.000000px;}
.fs4{font-size:120.078000px;}
.fs0{font-size:131.982000px;}
.fs5{font-size:179.946000px;}
.fs1{font-size:300.018000px;}
.fsb{font-size:479.964000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y7c{bottom:5.272500px;}
.y62{bottom:11.650500px;}
.y54{bottom:12.756000px;}
.y29{bottom:33.931500px;}
.y69{bottom:34.866000px;}
.y28{bottom:36.822000px;}
.y68{bottom:37.120500px;}
.y53{bottom:42.435000px;}
.y7b{bottom:48.813000px;}
.y44{bottom:53.745000px;}
.y5d{bottom:54.936000px;}
.y41{bottom:59.995500px;}
.y61{bottom:60.123000px;}
.y6{bottom:62.505000px;}
.y6a{bottom:65.098500px;}
.y67{bottom:67.351500px;}
.y27{bottom:68.457000px;}
.y52{bottom:72.114000px;}
.y6e{bottom:75.345000px;}
.y3a{bottom:77.727000px;}
.y7d{bottom:80.149500px;}
.y4{bottom:85.762500px;}
.y73{bottom:87.846000px;}
.y49{bottom:93.331500px;}
.y7a{bottom:94.522500px;}
.y40{bottom:96.648000px;}
.y30{bottom:96.945000px;}
.y5c{bottom:98.476500px;}
.y26{bottom:100.092000px;}
.y43{bottom:102.217500px;}
.y51{bottom:108.426000px;}
.y2d{bottom:111.316500px;}
.y6d{bottom:114.931500px;}
.y60{bottom:116.122500px;}
.y39{bottom:117.312000px;}
.y21{bottom:129.303000px;}
.y72{bottom:129.898500px;}
.y3f{bottom:130.663500px;}
.y17{bottom:132.916500px;}
.y3{bottom:136.404000px;}
.y79{bottom:138.061500px;}
.y48{bottom:141.804000px;}
.y2f{bottom:145.417500px;}
.y50{bottom:149.457000px;}
.y2c{bottom:150.903000px;}
.y5b{bottom:153.666000px;}
.y38{bottom:159.789000px;}
.y6c{bottom:163.404000px;}
.y20{bottom:168.888000px;}
.y5f{bottom:169.738500px;}
.y25{bottom:172.503000px;}
.y3e{bottom:174.204000px;}
.y16{bottom:181.389000px;}
.y78{bottom:183.771000px;}
.y4f{bottom:185.769000px;}
.y2{bottom:187.044000px;}
.y47{bottom:190.488000px;}
.y2b{bottom:199.375500px;}
.y2e{bottom:202.989000px;}
.y1f{bottom:208.474500px;}
.y5a{bottom:209.665500px;}
.y24{bottom:212.088000px;}
.y37{bottom:217.360500px;}
.y5e{bottom:223.356000px;}
.y4e{bottom:226.800000px;}
.y77{bottom:227.311500px;}
.y3d{bottom:227.821500px;}
.y15{bottom:230.074500px;}
.y46{bottom:238.960500px;}
.y1e{bottom:248.061000px;}
.y70{bottom:256.947000px;}
.y23{bottom:260.560500px;}
.y4d{bottom:263.112000px;}
.y59{bottom:263.283000px;}
.y3c{bottom:273.955500px;}
.y36{bottom:274.933500px;}
.y14{bottom:278.547000px;}
.y5{bottom:280.630500px;}
.y76{bottom:280.927500px;}
.y45{bottom:287.646000px;}
.y1d{bottom:296.533500px;}
.y4c{bottom:305.632500px;}
.y3b{bottom:310.606500px;}
.y58{bottom:316.899000px;}
.y22{bottom:318.133500px;}
.y19{bottom:327.232500px;}
.y35{bottom:332.505000px;}
.y13{bottom:336.118500px;}
.y64{bottom:337.351500px;}
.y1c{bottom:345.217500px;}
.y4b{bottom:354.105000px;}
.y57{bottom:363.204000px;}
.y18{bottom:375.705000px;}
.y34{bottom:381.189000px;}
.ye{bottom:384.804000px;}
.y1b{bottom:393.690000px;}
.y4a{bottom:402.789000px;}
.y33{bottom:420.775500px;}
.yd{bottom:424.389000px;}
.y12{bottom:433.276500px;}
.y1a{bottom:442.375500px;}
.y56{bottom:451.261500px;}
.y32{bottom:460.360500px;}
.yc{bottom:481.960500px;}
.y75{bottom:485.533500px;}
.y11{bottom:490.848000px;}
.y31{bottom:499.947000px;}
.y66{bottom:509.428500px;}
.y55{bottom:514.488000px;}
.y74{bottom:515.764500px;}
.yb{bottom:539.533500px;}
.y65{bottom:539.661000px;}
.y6f{bottom:540.255000px;}
.y6b{bottom:540.298500px;}
.ya{bottom:542.466000px;}
.y10{bottom:548.419500px;}
.y71{bottom:553.947000px;}
.y63{bottom:564.151500px;}
.y9{bottom:572.698500px;}
.y8{bottom:602.929500px;}
.y42{bottom:628.909500px;}
.y7{bottom:633.160500px;}
.y2a{bottom:639.751500px;}
.yf{bottom:694.857000px;}
.hf{height:53.861115px;}
.he{height:64.865906px;}
.h11{height:64.871906px;}
.hc{height:66.569906px;}
.h9{height:71.746260px;}
.h8{height:71.752260px;}
.hb{height:75.936190px;}
.h10{height:80.393115px;}
.h4{height:81.315659px;}
.h13{height:83.838076px;}
.ha{height:85.711553px;}
.h5{height:94.394531px;}
.hd{height:96.503906px;}
.h6{height:107.296260px;}
.h2{height:119.286466px;}
.h7{height:162.636741px;}
.h12{height:206.306531px;}
.h3{height:271.158847px;}
.h14{height:433.795588px;}
.h1{height:809.956500px;}
.h0{height:810.000000px;}
.w2{width:1439.971500px;}
.w1{width:1440.000000px;}
.w0{width:1440.014173px;}
.x0{left:0.000000px;}
.x1{left:85.294500px;}
.x5{left:117.949500px;}
.x17{left:259.285500px;}
.x10{left:302.655000px;}
.x3{left:319.281000px;}
.xc{left:327.486000px;}
.x6{left:344.749500px;}
.x4{left:361.758000px;}
.x7{left:370.261500px;}
.x8{left:395.773500px;}
.x11{left:413.376000px;}
.xd{left:421.285500px;}
.x15{left:446.797500px;}
.x16{left:691.030500px;}
.x14{left:745.455000px;}
.x12{left:777.430500px;}
.xf{left:838.701000px;}
.xa{left:1044.453000px;}
.x13{left:1119.883500px;}
.xe{left:1121.202000px;}
.x2{left:1352.424000px;}
.xb{left:1361.224500px;}
.x9{left:1367.050500px;}
@media print{
.v1{vertical-align:-31.594667pt;}
.v3{vertical-align:-28.122667pt;}
.v2{vertical-align:-26.608000pt;}
.v4{vertical-align:-23.584000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:99.477333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:52.538048pt;}
.ls2{letter-spacing:56.378891pt;}
.ls3{letter-spacing:62.379413pt;}
.ws0{word-spacing:-32.496901pt;}
.ws3{word-spacing:-29.565872pt;}
.ws5{word-spacing:-26.592000pt;}
.ws8{word-spacing:-23.618128pt;}
.ws6{word-spacing:-22.152613pt;}
.ws4{word-spacing:-0.106736pt;}
.ws1{word-spacing:0.000000pt;}
.ws2{word-spacing:32.552373pt;}
.ws7{word-spacing:857.424000pt;}
._b{margin-left:-13.768944pt;}
._a{margin-left:-12.167904pt;}
._3{margin-left:-9.600576pt;}
._9{margin-left:-8.477456pt;}
._2{margin-left:-6.921723pt;}
._6{margin-left:-5.971045pt;}
._0{margin-left:-5.044645pt;}
._7{margin-left:-3.819637pt;}
._d{margin-left:-2.241456pt;}
._1{margin-left:-1.173173pt;}
._4{width:0.954453pt;}
._5{width:2.417520pt;}
._8{width:3.662736pt;}
._c{width:4.606187pt;}
.fsa{font-size:35.680000pt;}
.fs9{font-size:43.237333pt;}
.fs6{font-size:48.074667pt;}
.fs8{font-size:74.682667pt;}
.fs2{font-size:79.973333pt;}
.fs7{font-size:85.264000pt;}
.fs3{font-size:96.000000pt;}
.fs4{font-size:106.736000pt;}
.fs0{font-size:117.317333pt;}
.fs5{font-size:159.952000pt;}
.fs1{font-size:266.682667pt;}
.fsb{font-size:426.634667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y7c{bottom:4.686667pt;}
.y62{bottom:10.356000pt;}
.y54{bottom:11.338667pt;}
.y29{bottom:30.161333pt;}
.y69{bottom:30.992000pt;}
.y28{bottom:32.730667pt;}
.y68{bottom:32.996000pt;}
.y53{bottom:37.720000pt;}
.y7b{bottom:43.389333pt;}
.y44{bottom:47.773333pt;}
.y5d{bottom:48.832000pt;}
.y41{bottom:53.329333pt;}
.y61{bottom:53.442667pt;}
.y6{bottom:55.560000pt;}
.y6a{bottom:57.865333pt;}
.y67{bottom:59.868000pt;}
.y27{bottom:60.850667pt;}
.y52{bottom:64.101333pt;}
.y6e{bottom:66.973333pt;}
.y3a{bottom:69.090667pt;}
.y7d{bottom:71.244000pt;}
.y4{bottom:76.233333pt;}
.y73{bottom:78.085333pt;}
.y49{bottom:82.961333pt;}
.y7a{bottom:84.020000pt;}
.y40{bottom:85.909333pt;}
.y30{bottom:86.173333pt;}
.y5c{bottom:87.534667pt;}
.y26{bottom:88.970667pt;}
.y43{bottom:90.860000pt;}
.y51{bottom:96.378667pt;}
.y2d{bottom:98.948000pt;}
.y6d{bottom:102.161333pt;}
.y60{bottom:103.220000pt;}
.y39{bottom:104.277333pt;}
.y21{bottom:114.936000pt;}
.y72{bottom:115.465333pt;}
.y3f{bottom:116.145333pt;}
.y17{bottom:118.148000pt;}
.y3{bottom:121.248000pt;}
.y79{bottom:122.721333pt;}
.y48{bottom:126.048000pt;}
.y2f{bottom:129.260000pt;}
.y50{bottom:132.850667pt;}
.y2c{bottom:134.136000pt;}
.y5b{bottom:136.592000pt;}
.y38{bottom:142.034667pt;}
.y6c{bottom:145.248000pt;}
.y20{bottom:150.122667pt;}
.y5f{bottom:150.878667pt;}
.y25{bottom:153.336000pt;}
.y3e{bottom:154.848000pt;}
.y16{bottom:161.234667pt;}
.y78{bottom:163.352000pt;}
.y4f{bottom:165.128000pt;}
.y2{bottom:166.261333pt;}
.y47{bottom:169.322667pt;}
.y2b{bottom:177.222667pt;}
.y2e{bottom:180.434667pt;}
.y1f{bottom:185.310667pt;}
.y5a{bottom:186.369333pt;}
.y24{bottom:188.522667pt;}
.y37{bottom:193.209333pt;}
.y5e{bottom:198.538667pt;}
.y4e{bottom:201.600000pt;}
.y77{bottom:202.054667pt;}
.y3d{bottom:202.508000pt;}
.y15{bottom:204.510667pt;}
.y46{bottom:212.409333pt;}
.y1e{bottom:220.498667pt;}
.y70{bottom:228.397333pt;}
.y23{bottom:231.609333pt;}
.y4d{bottom:233.877333pt;}
.y59{bottom:234.029333pt;}
.y3c{bottom:243.516000pt;}
.y36{bottom:244.385333pt;}
.y14{bottom:247.597333pt;}
.y5{bottom:249.449333pt;}
.y76{bottom:249.713333pt;}
.y45{bottom:255.685333pt;}
.y1d{bottom:263.585333pt;}
.y4c{bottom:271.673333pt;}
.y3b{bottom:276.094667pt;}
.y58{bottom:281.688000pt;}
.y22{bottom:282.785333pt;}
.y19{bottom:290.873333pt;}
.y35{bottom:295.560000pt;}
.y13{bottom:298.772000pt;}
.y64{bottom:299.868000pt;}
.y1c{bottom:306.860000pt;}
.y4b{bottom:314.760000pt;}
.y57{bottom:322.848000pt;}
.y18{bottom:333.960000pt;}
.y34{bottom:338.834667pt;}
.ye{bottom:342.048000pt;}
.y1b{bottom:349.946667pt;}
.y4a{bottom:358.034667pt;}
.y33{bottom:374.022667pt;}
.yd{bottom:377.234667pt;}
.y12{bottom:385.134667pt;}
.y1a{bottom:393.222667pt;}
.y56{bottom:401.121333pt;}
.y32{bottom:409.209333pt;}
.yc{bottom:428.409333pt;}
.y75{bottom:431.585333pt;}
.y11{bottom:436.309333pt;}
.y31{bottom:444.397333pt;}
.y66{bottom:452.825333pt;}
.y55{bottom:457.322667pt;}
.y74{bottom:458.457333pt;}
.yb{bottom:479.585333pt;}
.y65{bottom:479.698667pt;}
.y6f{bottom:480.226667pt;}
.y6b{bottom:480.265333pt;}
.ya{bottom:482.192000pt;}
.y10{bottom:487.484000pt;}
.y71{bottom:492.397333pt;}
.y63{bottom:501.468000pt;}
.y9{bottom:509.065333pt;}
.y8{bottom:535.937333pt;}
.y42{bottom:559.030667pt;}
.y7{bottom:562.809333pt;}
.y2a{bottom:568.668000pt;}
.yf{bottom:617.650667pt;}
.hf{height:47.876547pt;}
.he{height:57.658583pt;}
.h11{height:57.663917pt;}
.hc{height:59.173250pt;}
.h9{height:63.774453pt;}
.h8{height:63.779786pt;}
.hb{height:67.498836pt;}
.h10{height:71.460547pt;}
.h4{height:72.280586pt;}
.h13{height:74.522734pt;}
.ha{height:76.188047pt;}
.h5{height:83.906250pt;}
.hd{height:85.781250pt;}
.h6{height:95.374453pt;}
.h2{height:106.032414pt;}
.h7{height:144.565992pt;}
.h12{height:183.383583pt;}
.h3{height:241.030086pt;}
.h14{height:385.596078pt;}
.h1{height:719.961333pt;}
.h0{height:720.000000pt;}
.w2{width:1279.974667pt;}
.w1{width:1280.000000pt;}
.w0{width:1280.012598pt;}
.x0{left:0.000000pt;}
.x1{left:75.817333pt;}
.x5{left:104.844000pt;}
.x17{left:230.476000pt;}
.x10{left:269.026667pt;}
.x3{left:283.805333pt;}
.xc{left:291.098667pt;}
.x6{left:306.444000pt;}
.x4{left:321.562667pt;}
.x7{left:329.121333pt;}
.x8{left:351.798667pt;}
.x11{left:367.445333pt;}
.xd{left:374.476000pt;}
.x15{left:397.153333pt;}
.x16{left:614.249333pt;}
.x14{left:662.626667pt;}
.x12{left:691.049333pt;}
.xf{left:745.512000pt;}
.xa{left:928.402667pt;}
.x13{left:995.452000pt;}
.xe{left:996.624000pt;}
.x2{left:1202.154667pt;}
.xb{left:1209.977333pt;}
.x9{left:1215.156000pt;}
}




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