
    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_d340856981c68991e4bad4ac.woff')format("woff");}.ff1{font-family:ff1;line-height:1.125488;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_d2bc5adf0394f28b084ce10e.woff')format("woff");}.ff2{font-family:ff2;line-height:1.031738;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_391f3f5e4914bbfe6718d211.woff')format("woff");}.ff3{font-family:ff3;line-height:0.963379;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_e020e0dfde5d8b991934bab5.woff')format("woff");}.ff4{font-family:ff4;line-height:1.131836;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_7c1195d9d7553c54dac24059.woff')format("woff");}.ff5{font-family:ff5;line-height:1.049316;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_f9bc1ddfb626edce46fce961.woff')format("woff");}.ff6{font-family:ff6;line-height:0.000000;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_0c1b0209d55000e31f421a56.woff')format("woff");}.ff7{font-family:ff7;line-height:0.760335;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_291541d7804294240817f3cc.woff')format("woff");}.ff8{font-family:ff8;line-height:0.760254;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_b685bd17ee732a63be217e55.woff')format("woff");}.ff9{font-family:ff9;line-height:1.032715;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:ffa;src:url('chunks/assets/font_80d561919b1dbefc64e2d06c.woff')format("woff");}.ffa{font-family:ffa;line-height:0.976111;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-13.446000px;}
.ws1{word-spacing:-13.392000px;}
.ws3{word-spacing:-11.904000px;}
.wsa{word-spacing:-11.160000px;}
.ws4{word-spacing:-9.672000px;}
.ws2{word-spacing:-6.144250px;}
.wsb{word-spacing:-0.900000px;}
.wse{word-spacing:-0.270000px;}
.ws5{word-spacing:-0.063000px;}
.ws6{word-spacing:0.000000px;}
.ws8{word-spacing:1.242000px;}
.wsd{word-spacing:1.440000px;}
.ws9{word-spacing:1.632000px;}
.ws7{word-spacing:1.674000px;}
.wsf{word-spacing:2.880000px;}
.wsc{word-spacing:3.060000px;}
._13{margin-left:-16.247700px;}
._10{margin-left:-15.132600px;}
._4{margin-left:-13.519800px;}
._b{margin-left:-11.644800px;}
._8{margin-left:-6.870600px;}
._9{margin-left:-5.294400px;}
._d{margin-left:-4.196700px;}
._5{margin-left:-2.865600px;}
._0{margin-left:-1.461600px;}
._2{width:1.274400px;}
._6{width:2.813400px;}
._16{width:3.835800px;}
._15{width:4.943400px;}
._a{width:6.254400px;}
._1{width:7.311600px;}
._3{width:8.382600px;}
._c{width:9.402000px;}
._7{width:10.404000px;}
._11{width:11.497500px;}
._18{width:14.845500px;}
._14{width:16.529400px;}
._12{width:22.774500px;}
._17{width:34.305300px;}
._f{width:36.281700px;}
._e{width:37.341000px;}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(66,178,60);}
.fs2{font-size:24.775200px;}
.fs4{font-size:39.000000px;}
.fs5{font-size:42.000000px;}
.fs8{font-size:45.000000px;}
.fs3{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs7{font-size:63.000000px;}
.fs0{font-size:87.000000px;}
.fs6{font-size:384.000000px;}
.y0{bottom:0.000000px;}
.y27{bottom:24.919800px;}
.y14{bottom:26.156190px;}
.y13{bottom:33.588750px;}
.y26{bottom:36.619800px;}
.y25{bottom:48.319800px;}
.y24{bottom:60.019800px;}
.y6f{bottom:70.321350px;}
.y23{bottom:71.719800px;}
.y6e{bottom:86.521350px;}
.y22{bottom:95.119800px;}
.y6d{bottom:100.021350px;}
.y59{bottom:101.821350px;}
.y21{bottom:106.819800px;}
.y6c{bottom:113.521350px;}
.y58{bottom:115.321350px;}
.y20{bottom:118.519800px;}
.y29{bottom:128.147250px;}
.y3c{bottom:128.275650px;}
.y1f{bottom:130.219800px;}
.y1e{bottom:141.919800px;}
.y57{bottom:143.221200px;}
.y6b{bottom:143.221350px;}
.y3b{bottom:144.475650px;}
.y28{bottom:146.139900px;}
.y6a{bottom:156.721350px;}
.y56{bottom:159.421200px;}
.y69{bottom:170.221350px;}
.y55{bottom:175.621200px;}
.y3a{bottom:176.875650px;}
.y68{bottom:183.721350px;}
.y54{bottom:191.821200px;}
.y39{bottom:193.075650px;}
.y67{bottom:197.221350px;}
.y1d{bottom:197.304000px;}
.y53{bottom:208.021200px;}
.y38{bottom:209.275650px;}
.y66{bottom:210.721350px;}
.y1c{bottom:211.704000px;}
.y65{bottom:224.221350px;}
.y1b{bottom:226.104000px;}
.y64{bottom:237.721350px;}
.y37{bottom:241.675650px;}
.y63{bottom:251.221350px;}
.y1a{bottom:254.904000px;}
.y36{bottom:257.875650px;}
.y19{bottom:269.304000px;}
.y52{bottom:272.821350px;}
.y18{bottom:283.704000px;}
.y51{bottom:286.321350px;}
.y35{bottom:290.275650px;}
.y17{bottom:298.104000px;}
.y16{bottom:312.504000px;}
.y50{bottom:314.221350px;}
.y15{bottom:326.904000px;}
.y34{bottom:328.075650px;}
.y4f{bottom:330.421350px;}
.y4e{bottom:346.621350px;}
.y33{bottom:346.975650px;}
.y32{bottom:365.875650px;}
.y62{bottom:375.421350px;}
.y61{bottom:391.621350px;}
.y31{bottom:403.675650px;}
.y4d{bottom:411.421350px;}
.y30{bottom:422.575650px;}
.y4c{bottom:424.921350px;}
.y4b{bottom:438.421350px;}
.y60{bottom:440.221350px;}
.y2f{bottom:441.475650px;}
.y5f{bottom:456.421350px;}
.y4a{bottom:466.321350px;}
.y12{bottom:478.921350px;}
.y2e{bottom:479.275650px;}
.y49{bottom:482.521350px;}
.y11{bottom:495.121350px;}
.y2d{bottom:498.175650px;}
.y48{bottom:498.721350px;}
.y5e{bottom:505.021350px;}
.y10{bottom:511.321350px;}
.y47{bottom:514.921350px;}
.y5d{bottom:521.221350px;}
.y46{bottom:531.121350px;}
.yf{bottom:543.721350px;}
.ye{bottom:559.921350px;}
.y5c{bottom:569.821350px;}
.y2c{bottom:570.341400px;}
.yd{bottom:576.121350px;}
.y5b{bottom:586.021350px;}
.yc{bottom:592.321350px;}
.y45{bottom:595.921350px;}
.yb{bottom:608.521350px;}
.y44{bottom:609.421350px;}
.y43{bottom:622.921350px;}
.ya{bottom:624.721350px;}
.y5a{bottom:634.621350px;}
.y9{bottom:640.921350px;}
.y42{bottom:650.821350px;}
.y8{bottom:657.121350px;}
.y41{bottom:667.021350px;}
.y2b{bottom:667.877400px;}
.y40{bottom:683.221350px;}
.y7{bottom:689.521350px;}
.y3f{bottom:699.421350px;}
.y6{bottom:705.721350px;}
.y3e{bottom:715.621350px;}
.y5{bottom:721.921350px;}
.y3d{bottom:731.821350px;}
.y4{bottom:764.221350px;}
.y2a{bottom:765.413400px;}
.y3{bottom:780.421350px;}
.y2{bottom:796.621350px;}
.y1{bottom:812.821350px;}
.ha{height:0.000000px;}
.h6{height:22.355747px;}
.h8{height:29.250000px;}
.he{height:34.256277px;}
.h9{height:35.191406px;}
.hd{height:36.123047px;}
.hf{height:40.500000px;}
.h10{height:40.605469px;}
.h7{height:43.312500px;}
.h3{height:43.321289px;}
.h5{height:44.666016px;}
.h4{height:48.726562px;}
.hc{height:56.847656px;}
.h2{height:79.353516px;}
.hb{height:346.500000px;}
.h0{height:892.914000px;}
.h1{height:893.250000px;}
.w1{width:1258.500000px;}
.w0{width:1258.582500px;}
.x0{left:0.000000px;}
.x1{left:44.645700px;}
.x2{left:78.475650px;}
.x6{left:87.170700px;}
.x7{left:95.669250px;}
.x4{left:252.360600px;}
.x3{left:298.911600px;}
.x5{left:673.936950px;}
.x8{left:865.272450px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-11.952000pt;}
.ws1{word-spacing:-11.904000pt;}
.ws3{word-spacing:-10.581333pt;}
.wsa{word-spacing:-9.920000pt;}
.ws4{word-spacing:-8.597333pt;}
.ws2{word-spacing:-5.461555pt;}
.wsb{word-spacing:-0.800000pt;}
.wse{word-spacing:-0.240000pt;}
.ws5{word-spacing:-0.056000pt;}
.ws6{word-spacing:0.000000pt;}
.ws8{word-spacing:1.104000pt;}
.wsd{word-spacing:1.280000pt;}
.ws9{word-spacing:1.450667pt;}
.ws7{word-spacing:1.488000pt;}
.wsf{word-spacing:2.560000pt;}
.wsc{word-spacing:2.720000pt;}
._13{margin-left:-14.442400pt;}
._10{margin-left:-13.451200pt;}
._4{margin-left:-12.017600pt;}
._b{margin-left:-10.350933pt;}
._8{margin-left:-6.107200pt;}
._9{margin-left:-4.706133pt;}
._d{margin-left:-3.730400pt;}
._5{margin-left:-2.547200pt;}
._0{margin-left:-1.299200pt;}
._2{width:1.132800pt;}
._6{width:2.500800pt;}
._16{width:3.409600pt;}
._15{width:4.394133pt;}
._a{width:5.559467pt;}
._1{width:6.499200pt;}
._3{width:7.451200pt;}
._c{width:8.357333pt;}
._7{width:9.248000pt;}
._11{width:10.220000pt;}
._18{width:13.196000pt;}
._14{width:14.692800pt;}
._12{width:20.244000pt;}
._17{width:30.493600pt;}
._f{width:32.250400pt;}
._e{width:33.192000pt;}
.fs2{font-size:22.022400pt;}
.fs4{font-size:34.666667pt;}
.fs5{font-size:37.333333pt;}
.fs8{font-size:40.000000pt;}
.fs3{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs7{font-size:56.000000pt;}
.fs0{font-size:77.333333pt;}
.fs6{font-size:341.333333pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:22.150933pt;}
.y14{bottom:23.249947pt;}
.y13{bottom:29.856667pt;}
.y26{bottom:32.550933pt;}
.y25{bottom:42.950933pt;}
.y24{bottom:53.350933pt;}
.y6f{bottom:62.507867pt;}
.y23{bottom:63.750933pt;}
.y6e{bottom:76.907867pt;}
.y22{bottom:84.550933pt;}
.y6d{bottom:88.907867pt;}
.y59{bottom:90.507867pt;}
.y21{bottom:94.950933pt;}
.y6c{bottom:100.907867pt;}
.y58{bottom:102.507867pt;}
.y20{bottom:105.350933pt;}
.y29{bottom:113.908667pt;}
.y3c{bottom:114.022800pt;}
.y1f{bottom:115.750933pt;}
.y1e{bottom:126.150933pt;}
.y57{bottom:127.307733pt;}
.y6b{bottom:127.307867pt;}
.y3b{bottom:128.422800pt;}
.y28{bottom:129.902133pt;}
.y6a{bottom:139.307867pt;}
.y56{bottom:141.707733pt;}
.y69{bottom:151.307867pt;}
.y55{bottom:156.107733pt;}
.y3a{bottom:157.222800pt;}
.y68{bottom:163.307867pt;}
.y54{bottom:170.507733pt;}
.y39{bottom:171.622800pt;}
.y67{bottom:175.307867pt;}
.y1d{bottom:175.381333pt;}
.y53{bottom:184.907733pt;}
.y38{bottom:186.022800pt;}
.y66{bottom:187.307867pt;}
.y1c{bottom:188.181333pt;}
.y65{bottom:199.307867pt;}
.y1b{bottom:200.981333pt;}
.y64{bottom:211.307867pt;}
.y37{bottom:214.822800pt;}
.y63{bottom:223.307867pt;}
.y1a{bottom:226.581333pt;}
.y36{bottom:229.222800pt;}
.y19{bottom:239.381333pt;}
.y52{bottom:242.507867pt;}
.y18{bottom:252.181333pt;}
.y51{bottom:254.507867pt;}
.y35{bottom:258.022800pt;}
.y17{bottom:264.981333pt;}
.y16{bottom:277.781333pt;}
.y50{bottom:279.307867pt;}
.y15{bottom:290.581333pt;}
.y34{bottom:291.622800pt;}
.y4f{bottom:293.707867pt;}
.y4e{bottom:308.107867pt;}
.y33{bottom:308.422800pt;}
.y32{bottom:325.222800pt;}
.y62{bottom:333.707867pt;}
.y61{bottom:348.107867pt;}
.y31{bottom:358.822800pt;}
.y4d{bottom:365.707867pt;}
.y30{bottom:375.622800pt;}
.y4c{bottom:377.707867pt;}
.y4b{bottom:389.707867pt;}
.y60{bottom:391.307867pt;}
.y2f{bottom:392.422800pt;}
.y5f{bottom:405.707867pt;}
.y4a{bottom:414.507867pt;}
.y12{bottom:425.707867pt;}
.y2e{bottom:426.022800pt;}
.y49{bottom:428.907867pt;}
.y11{bottom:440.107867pt;}
.y2d{bottom:442.822800pt;}
.y48{bottom:443.307867pt;}
.y5e{bottom:448.907867pt;}
.y10{bottom:454.507867pt;}
.y47{bottom:457.707867pt;}
.y5d{bottom:463.307867pt;}
.y46{bottom:472.107867pt;}
.yf{bottom:483.307867pt;}
.ye{bottom:497.707867pt;}
.y5c{bottom:506.507867pt;}
.y2c{bottom:506.970133pt;}
.yd{bottom:512.107867pt;}
.y5b{bottom:520.907867pt;}
.yc{bottom:526.507867pt;}
.y45{bottom:529.707867pt;}
.yb{bottom:540.907867pt;}
.y44{bottom:541.707867pt;}
.y43{bottom:553.707867pt;}
.ya{bottom:555.307867pt;}
.y5a{bottom:564.107867pt;}
.y9{bottom:569.707867pt;}
.y42{bottom:578.507867pt;}
.y8{bottom:584.107867pt;}
.y41{bottom:592.907867pt;}
.y2b{bottom:593.668800pt;}
.y40{bottom:607.307867pt;}
.y7{bottom:612.907867pt;}
.y3f{bottom:621.707867pt;}
.y6{bottom:627.307867pt;}
.y3e{bottom:636.107867pt;}
.y5{bottom:641.707867pt;}
.y3d{bottom:650.507867pt;}
.y4{bottom:679.307867pt;}
.y2a{bottom:680.367467pt;}
.y3{bottom:693.707867pt;}
.y2{bottom:708.107867pt;}
.y1{bottom:722.507867pt;}
.ha{height:0.000000pt;}
.h6{height:19.871775pt;}
.h8{height:26.000000pt;}
.he{height:30.450024pt;}
.h9{height:31.281250pt;}
.hd{height:32.109375pt;}
.hf{height:36.000000pt;}
.h10{height:36.093750pt;}
.h7{height:38.500000pt;}
.h3{height:38.507812pt;}
.h5{height:39.703125pt;}
.h4{height:43.312500pt;}
.hc{height:50.531250pt;}
.h2{height:70.536458pt;}
.hb{height:308.000000pt;}
.h0{height:793.701333pt;}
.h1{height:794.000000pt;}
.w1{width:1118.666667pt;}
.w0{width:1118.740000pt;}
.x0{left:0.000000pt;}
.x1{left:39.685067pt;}
.x2{left:69.756133pt;}
.x6{left:77.485067pt;}
.x7{left:85.039333pt;}
.x4{left:224.320533pt;}
.x3{left:265.699200pt;}
.x5{left:599.055067pt;}
.x8{left:769.131067pt;}
}




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