
    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_9c9a4f1bf06b03580e69f968.woff')format("woff");}.ff1{font-family:ff1;line-height:0.800293;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_319eb27dbb9b7176faf9c5ee.woff')format("woff");}.ff2{font-family:ff2;line-height:0.851562;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_afced36d0140b16781d5d775.woff')format("woff");}.ff3{font-family:ff3;line-height:0.767578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_b881a4dc12372bc3b6c9902f.woff')format("woff");}.ff4{font-family:ff4;line-height:0.752000;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_d2512d13b130e00b799ec9d3.woff')format("woff");}.ff5{font-family:ff5;line-height:0.752000;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_cfd4995b4a56f58bd047658e.woff')format("woff");}.ff6{font-family:ff6;line-height:0.921387;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_4b9831135e3153274a9c8d1d.woff')format("woff");}.ff7{font-family:ff7;line-height:1.311035;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_defca4745d71b77212ec84c0.woff')format("woff");}.ff8{font-family:ff8;line-height:1.003906;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_00e282d961b07fc1130d63a5.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_dbd5ebc960e56e33be63ad56.woff')format("woff");}.ffa{font-family:ffa;line-height:0.914062;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:ffb;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ffb{font-family:ffb;line-height:0.910156;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:ffc;src:url('chunks/assets/font_f6fbd3c324b9e40f7b219133.woff')format("woff");}.ffc{font-family:ffc;line-height:1.402354;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:ffd;src:url('chunks/assets/font_8773a00929dc3d19d0fa8236.woff')format("woff");}.ffd{font-family:ffd;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-0.180000px;}
.ls4{letter-spacing:-0.129600px;}
.ls3{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.014400px;}
.ls0{letter-spacing:0.034560px;}
.ls9{letter-spacing:0.037440px;}
.ls1{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.216000px;}
.ls6{letter-spacing:0.341400px;}
.lsd{letter-spacing:0.349200px;}
.lsb{letter-spacing:0.360000px;}
.lsc{letter-spacing:83.861280px;}
.lsa{letter-spacing:125.621280px;}
.ls8{letter-spacing:172.026720px;}
.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:-21.420000px;}
.ws4{word-spacing:-21.401400px;}
.ws6{word-spacing:-21.097440px;}
.ws3{word-spacing:-21.060000px;}
.ws8{word-spacing:-20.075760px;}
.ws0{word-spacing:-19.596960px;}
.ws2{word-spacing:-14.904000px;}
.ws1{word-spacing:-14.832000px;}
.ws5{word-spacing:0.000000px;}
._18{margin-left:-6.639360px;}
._17{margin-left:-5.391360px;}
._13{margin-left:-4.380480px;}
._8{margin-left:-3.211920px;}
._9{margin-left:-2.207760px;}
._3{margin-left:-1.155600px;}
._2{width:1.436400px;}
._6{width:2.695680px;}
._7{width:3.786480px;}
._11{width:5.247120px;}
._1a{width:6.546960px;}
._b{width:7.968480px;}
._a{width:9.013680px;}
._10{width:10.614240px;}
._15{width:11.877840px;}
._12{width:13.407360px;}
._c{width:15.163200px;}
._d{width:16.403040px;}
._1b{width:17.588880px;}
._16{width:18.701280px;}
._14{width:20.025360px;}
._4{width:22.576320px;}
._5{width:23.675760px;}
._1e{width:25.332480px;}
._25{width:27.378000px;}
._22{width:28.980720px;}
._21{width:29.989440px;}
._e{width:31.337280px;}
._f{width:32.394480px;}
._1c{width:33.565440px;}
._20{width:34.973040px;}
._1f{width:36.030960px;}
._28{width:37.257840px;}
._24{width:40.603680px;}
._19{width:42.709680px;}
._1d{width:43.804800px;}
._26{width:46.163520px;}
._27{width:47.379600px;}
._23{width:49.799040px;}
._0{width:292.222560px;}
._1{width:1605.106560px;}
.fc5{color:transparent;}
.fc4{color:rgb(0,32,96);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(51,51,204);}
.fc6{color:rgb(0,0,255);}
.fc1{color:rgb(0,153,204);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.fs5{font-size:108.000000px;}
.fs2{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y6{bottom:10.475850px;}
.y5{bottom:31.176000px;}
.y4c{bottom:111.816000px;}
.y2a{bottom:114.156000px;}
.y4b{bottom:139.536000px;}
.y29{bottom:142.056000px;}
.y4a{bottom:167.430000px;}
.y28{bottom:169.770000px;}
.y49{bottom:195.150000px;}
.y27{bottom:197.490000px;}
.y48{bottom:222.870000px;}
.y26{bottom:225.390000px;}
.y47{bottom:250.770000px;}
.y25{bottom:253.110000px;}
.y46{bottom:278.490000px;}
.y24{bottom:280.830000px;}
.y45{bottom:306.255000px;}
.y23{bottom:308.595000px;}
.y44{bottom:333.975000px;}
.y22{bottom:336.495000px;}
.y43{bottom:361.875000px;}
.y21{bottom:364.215000px;}
.y42{bottom:389.595000px;}
.y20{bottom:391.935000px;}
.y41{bottom:417.315000px;}
.y1f{bottom:419.655000px;}
.y40{bottom:445.215000px;}
.y1e{bottom:447.555000px;}
.y3f{bottom:472.935000px;}
.y1d{bottom:475.275000px;}
.y3e{bottom:500.655000px;}
.y1c{bottom:502.995000px;}
.y3d{bottom:528.375000px;}
.y1b{bottom:530.895000px;}
.y3c{bottom:556.275000px;}
.y1a{bottom:558.615000px;}
.y3b{bottom:584.025000px;}
.y19{bottom:586.365000px;}
.y3a{bottom:611.745000px;}
.y18{bottom:614.085000px;}
.y39{bottom:639.645000px;}
.y17{bottom:641.985000px;}
.y38{bottom:667.365000px;}
.y16{bottom:669.705000px;}
.y37{bottom:695.085000px;}
.y15{bottom:697.425000px;}
.y36{bottom:722.805000px;}
.y14{bottom:725.325000px;}
.y35{bottom:750.705000px;}
.y13{bottom:753.045000px;}
.y34{bottom:778.425000px;}
.y12{bottom:780.765000px;}
.y33{bottom:806.145000px;}
.y11{bottom:808.485000px;}
.y32{bottom:833.865000px;}
.y10{bottom:836.385000px;}
.y31{bottom:861.810000px;}
.yf{bottom:864.150000px;}
.y30{bottom:889.530000px;}
.ye{bottom:891.870000px;}
.y2f{bottom:917.250000px;}
.yd{bottom:934.530000px;}
.y2e{bottom:945.150000px;}
.yc{bottom:962.430000px;}
.y2d{bottom:972.870000px;}
.yb{bottom:990.150000px;}
.y2c{bottom:1000.590000px;}
.y2b{bottom:1028.310000px;}
.ya{bottom:1032.270000px;}
.y9{bottom:1056.210000px;}
.y8{bottom:1083.930000px;}
.y7{bottom:1111.650000px;}
.y4{bottom:1135.800000px;}
.y3{bottom:1155.600000px;}
.y2{bottom:1179.900000px;}
.y1{bottom:1207.800000px;}
.h7{height:49.150080px;}
.h5{height:50.229844px;}
.hc{height:58.819922px;}
.h8{height:59.436914px;}
.ha{height:65.884219px;}
.h4{height:67.169883px;}
.h2{height:76.355508px;}
.hb{height:82.676953px;}
.h9{height:84.898125px;}
.h6{height:86.115234px;}
.hd{height:86.585445px;}
.h3{height:95.874961px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:42.479987px;}
.x4{left:84.959987px;}
.xa{left:87.839987px;}
.x1{left:106.415987px;}
.x7{left:126.755987px;}
.x6{left:137.915987px;}
.x9{left:300.854987px;}
.x8{left:355.394987px;}
.xd{left:362.414987px;}
.xe{left:375.914987px;}
.xc{left:389.234987px;}
.xb{left:446.474987px;}
.x2{left:508.964987px;}
.x3{left:632.084987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.160000pt;}
.ls4{letter-spacing:-0.115200pt;}
.ls3{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.012800pt;}
.ls0{letter-spacing:0.030720pt;}
.ls9{letter-spacing:0.033280pt;}
.ls1{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.192000pt;}
.ls6{letter-spacing:0.303467pt;}
.lsd{letter-spacing:0.310400pt;}
.lsb{letter-spacing:0.320000pt;}
.lsc{letter-spacing:74.543360pt;}
.lsa{letter-spacing:111.663360pt;}
.ls8{letter-spacing:152.912640pt;}
.ws7{word-spacing:-19.040000pt;}
.ws4{word-spacing:-19.023467pt;}
.ws6{word-spacing:-18.753280pt;}
.ws3{word-spacing:-18.720000pt;}
.ws8{word-spacing:-17.845120pt;}
.ws0{word-spacing:-17.419520pt;}
.ws2{word-spacing:-13.248000pt;}
.ws1{word-spacing:-13.184000pt;}
.ws5{word-spacing:0.000000pt;}
._18{margin-left:-5.901653pt;}
._17{margin-left:-4.792320pt;}
._13{margin-left:-3.893760pt;}
._8{margin-left:-2.855040pt;}
._9{margin-left:-1.962453pt;}
._3{margin-left:-1.027200pt;}
._2{width:1.276800pt;}
._6{width:2.396160pt;}
._7{width:3.365760pt;}
._11{width:4.664107pt;}
._1a{width:5.819520pt;}
._b{width:7.083093pt;}
._a{width:8.012160pt;}
._10{width:9.434880pt;}
._15{width:10.558080pt;}
._12{width:11.917653pt;}
._c{width:13.478400pt;}
._d{width:14.580480pt;}
._1b{width:15.634560pt;}
._16{width:16.623360pt;}
._14{width:17.800320pt;}
._4{width:20.067840pt;}
._5{width:21.045120pt;}
._1e{width:22.517760pt;}
._25{width:24.336000pt;}
._22{width:25.760640pt;}
._21{width:26.657280pt;}
._e{width:27.855360pt;}
._f{width:28.795093pt;}
._1c{width:29.835947pt;}
._20{width:31.087147pt;}
._1f{width:32.027520pt;}
._28{width:33.118080pt;}
._24{width:36.092160pt;}
._19{width:37.964160pt;}
._1d{width:38.937600pt;}
._26{width:41.034240pt;}
._27{width:42.115200pt;}
._23{width:44.265813pt;}
._0{width:259.753387pt;}
._1{width:1426.761387pt;}
.fs6{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.fs5{font-size:96.000000pt;}
.fs2{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:9.311867pt;}
.y5{bottom:27.712000pt;}
.y4c{bottom:99.392000pt;}
.y2a{bottom:101.472000pt;}
.y4b{bottom:124.032000pt;}
.y29{bottom:126.272000pt;}
.y4a{bottom:148.826667pt;}
.y28{bottom:150.906667pt;}
.y49{bottom:173.466667pt;}
.y27{bottom:175.546667pt;}
.y48{bottom:198.106667pt;}
.y26{bottom:200.346667pt;}
.y47{bottom:222.906667pt;}
.y25{bottom:224.986667pt;}
.y46{bottom:247.546667pt;}
.y24{bottom:249.626667pt;}
.y45{bottom:272.226667pt;}
.y23{bottom:274.306667pt;}
.y44{bottom:296.866667pt;}
.y22{bottom:299.106667pt;}
.y43{bottom:321.666667pt;}
.y21{bottom:323.746667pt;}
.y42{bottom:346.306667pt;}
.y20{bottom:348.386667pt;}
.y41{bottom:370.946667pt;}
.y1f{bottom:373.026667pt;}
.y40{bottom:395.746667pt;}
.y1e{bottom:397.826667pt;}
.y3f{bottom:420.386667pt;}
.y1d{bottom:422.466667pt;}
.y3e{bottom:445.026667pt;}
.y1c{bottom:447.106667pt;}
.y3d{bottom:469.666667pt;}
.y1b{bottom:471.906667pt;}
.y3c{bottom:494.466667pt;}
.y1a{bottom:496.546667pt;}
.y3b{bottom:519.133333pt;}
.y19{bottom:521.213333pt;}
.y3a{bottom:543.773333pt;}
.y18{bottom:545.853333pt;}
.y39{bottom:568.573333pt;}
.y17{bottom:570.653333pt;}
.y38{bottom:593.213333pt;}
.y16{bottom:595.293333pt;}
.y37{bottom:617.853333pt;}
.y15{bottom:619.933333pt;}
.y36{bottom:642.493333pt;}
.y14{bottom:644.733333pt;}
.y35{bottom:667.293333pt;}
.y13{bottom:669.373333pt;}
.y34{bottom:691.933333pt;}
.y12{bottom:694.013333pt;}
.y33{bottom:716.573333pt;}
.y11{bottom:718.653333pt;}
.y32{bottom:741.213333pt;}
.y10{bottom:743.453333pt;}
.y31{bottom:766.053333pt;}
.yf{bottom:768.133333pt;}
.y30{bottom:790.693333pt;}
.ye{bottom:792.773333pt;}
.y2f{bottom:815.333333pt;}
.yd{bottom:830.693333pt;}
.y2e{bottom:840.133333pt;}
.yc{bottom:855.493333pt;}
.y2d{bottom:864.773333pt;}
.yb{bottom:880.133333pt;}
.y2c{bottom:889.413333pt;}
.y2b{bottom:914.053333pt;}
.ya{bottom:917.573333pt;}
.y9{bottom:938.853333pt;}
.y8{bottom:963.493333pt;}
.y7{bottom:988.133333pt;}
.y4{bottom:1009.600000pt;}
.y3{bottom:1027.200000pt;}
.y2{bottom:1048.800000pt;}
.y1{bottom:1073.600000pt;}
.h7{height:43.688960pt;}
.h5{height:44.648750pt;}
.hc{height:52.284375pt;}
.h8{height:52.832812pt;}
.ha{height:58.563750pt;}
.h4{height:59.706562pt;}
.h2{height:67.871563pt;}
.hb{height:73.490625pt;}
.h9{height:75.465000pt;}
.h6{height:76.546875pt;}
.hd{height:76.964840pt;}
.h3{height:85.222187pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:37.759988pt;}
.x4{left:75.519988pt;}
.xa{left:78.079988pt;}
.x1{left:94.591988pt;}
.x7{left:112.671988pt;}
.x6{left:122.591988pt;}
.x9{left:267.426655pt;}
.x8{left:315.906655pt;}
.xd{left:322.146655pt;}
.xe{left:334.146655pt;}
.xc{left:345.986655pt;}
.xb{left:396.866655pt;}
.x2{left:452.413322pt;}
.x3{left:561.853322pt;}
}




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