
    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_d2c248673594ce30e20cb549.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.850586;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_d5e8282d0800017faf7e36be.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.940918;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_b52dbe4cdc0accfbada182ae.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.978027;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_e1e7a24a05f640813159b44b.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_47fd45c07501aedd70e8bb92.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_105cf17a54c69c66afa20cf9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942383;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_c5861dffb61e47e5d1a426b5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.978027;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_748742498e992cdfcd308e22.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.035156;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_45160c1142e18187916e92aa.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.172363;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_6f7f6d6c950276178a2194c3.woff2')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;}
.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;}
.ls6{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.612000px;}
.ls5{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.102000px;}
.ls7{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.008640px;}
.ls0{letter-spacing:0.144720px;}
.ls3{letter-spacing:0.153360px;}
.ls1{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.305400px;}
.lsb{letter-spacing:199.416000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-16.865400px;}
.ws6{word-spacing:-16.560000px;}
.ws5{word-spacing:-15.948000px;}
.ws1{word-spacing:-14.940000px;}
.ws0{word-spacing:-12.060000px;}
.ws2{word-spacing:-0.059760px;}
.ws4{word-spacing:0.000000px;}
._15{margin-left:-4.685760px;}
._4{margin-left:-3.355200px;}
._3{margin-left:-2.347680px;}
._0{margin-left:-1.126080px;}
._1{width:1.212240px;}
._19{width:2.225760px;}
._7{width:3.227040px;}
._6{width:4.416720px;}
._5{width:5.438160px;}
._9{width:6.752880px;}
._2{width:8.007840px;}
._8{width:9.843360px;}
._13{width:10.865760px;}
._d{width:12.592320px;}
._11{width:13.711680px;}
._12{width:15.546480px;}
._b{width:18.448800px;}
._c{width:19.635360px;}
._17{width:21.475920px;}
._a{width:23.169840px;}
._16{width:24.376320px;}
._f{width:25.701120px;}
._10{width:27.386400px;}
._1b{width:28.404000px;}
._18{width:29.543040px;}
._1a{width:30.669120px;}
._14{width:32.258880px;}
._1e{width:33.517440px;}
._1c{width:44.248320px;}
._1d{width:45.308160px;}
._e{width:104.377440px;}
._1f{width:199.416000px;}
.fc3{color:rgb(68,114,196);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y5{bottom:10.440000px;}
.y8{bottom:24.840000px;}
.y7{bottom:45.360000px;}
.y73{bottom:111.996000px;}
.y72{bottom:133.776000px;}
.y3f{bottom:139.176000px;}
.y71{bottom:155.550000px;}
.y3e{bottom:160.950000px;}
.y70{bottom:177.510000px;}
.y3d{bottom:182.910000px;}
.y6f{bottom:199.290000px;}
.y3c{bottom:204.690000px;}
.y6e{bottom:221.070000px;}
.y3b{bottom:226.470000px;}
.y6d{bottom:242.850000px;}
.y3a{bottom:248.250000px;}
.y6c{bottom:264.810000px;}
.y39{bottom:270.210000px;}
.y6b{bottom:286.590000px;}
.y38{bottom:291.990000px;}
.y6a{bottom:308.370000px;}
.y37{bottom:313.770000px;}
.y69{bottom:330.150000px;}
.y36{bottom:335.550000px;}
.y68{bottom:351.975000px;}
.y35{bottom:357.375000px;}
.y67{bottom:373.935000px;}
.y34{bottom:379.335000px;}
.y66{bottom:395.715000px;}
.y33{bottom:401.115000px;}
.y65{bottom:417.495000px;}
.y32{bottom:419.835000px;}
.y31{bottom:434.595000px;}
.y64{bottom:439.275000px;}
.y30{bottom:449.175000px;}
.y63{bottom:461.235000px;}
.y2f{bottom:466.275000px;}
.y62{bottom:483.015000px;}
.y2e{bottom:483.555000px;}
.y2d{bottom:500.835000px;}
.y61{bottom:504.795000px;}
.y2c{bottom:518.115000px;}
.y60{bottom:526.575000px;}
.y2b{bottom:535.395000px;}
.y5f{bottom:548.355000px;}
.y2a{bottom:552.675000px;}
.y29{bottom:569.775000px;}
.y5e{bottom:570.315000px;}
.y28{bottom:587.055000px;}
.y5d{bottom:592.095000px;}
.y27{bottom:604.365000px;}
.y5c{bottom:613.905000px;}
.y26{bottom:621.645000px;}
.y5b{bottom:635.685000px;}
.y25{bottom:638.925000px;}
.y24{bottom:656.025000px;}
.y5a{bottom:657.645000px;}
.y23{bottom:673.305000px;}
.y59{bottom:679.425000px;}
.y22{bottom:690.585000px;}
.y58{bottom:701.205000px;}
.y21{bottom:707.865000px;}
.y57{bottom:722.985000px;}
.y20{bottom:725.145000px;}
.y1f{bottom:742.425000px;}
.y56{bottom:744.765000px;}
.y1e{bottom:759.525000px;}
.y55{bottom:766.725000px;}
.y1d{bottom:776.805000px;}
.y54{bottom:788.505000px;}
.y1c{bottom:794.085000px;}
.y53{bottom:810.285000px;}
.y1b{bottom:811.365000px;}
.y1a{bottom:828.645000px;}
.y52{bottom:832.065000px;}
.y19{bottom:845.925000px;}
.y51{bottom:854.025000px;}
.y18{bottom:863.025000px;}
.y50{bottom:875.850000px;}
.y17{bottom:880.350000px;}
.y16{bottom:897.630000px;}
.y15{bottom:914.910000px;}
.y4f{bottom:919.410000px;}
.y14{bottom:932.550000px;}
.y4e{bottom:941.190000px;}
.y13{bottom:951.630000px;}
.y4d{bottom:963.150000px;}
.y12{bottom:970.530000px;}
.y4c{bottom:984.930000px;}
.y11{bottom:989.430000px;}
.y4b{bottom:1006.710000px;}
.y10{bottom:1008.870000px;}
.y4a{bottom:1028.490000px;}
.yf{bottom:1031.370000px;}
.y49{bottom:1050.450000px;}
.ye{bottom:1053.330000px;}
.yd{bottom:1071.870000px;}
.y48{bottom:1072.230000px;}
.yc{bottom:1089.150000px;}
.y47{bottom:1094.010000px;}
.yb{bottom:1106.430000px;}
.y46{bottom:1115.790000px;}
.ya{bottom:1123.530000px;}
.y45{bottom:1137.570000px;}
.y9{bottom:1140.840000px;}
.y44{bottom:1157.580000px;}
.y6{bottom:1166.760000px;}
.y43{bottom:1173.240000px;}
.y4{bottom:1180.980000px;}
.y42{bottom:1206.900000px;}
.y3{bottom:1213.560000px;}
.y41{bottom:1227.060000px;}
.y2{bottom:1231.200000px;}
.y40{bottom:1247.220000px;}
.y1{bottom:1248.660000px;}
.h3{height:29.160000px;}
.h5{height:36.768867px;}
.h6{height:41.726953px;}
.h7{height:42.164648px;}
.hc{height:45.549492px;}
.h8{height:46.251562px;}
.hb{height:46.736719px;}
.he{height:47.980898px;}
.hd{height:49.394180px;}
.h2{height:50.364141px;}
.ha{height:50.488594px;}
.h4{height:50.520937px;}
.h9{height:54.864844px;}
.hf{height:65.884219px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:53.100000px;}
.w4{width:627.405000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x2{left:9.900000px;}
.x1{left:108.035987px;}
.x7{left:119.735987px;}
.x5{left:124.235987px;}
.xc{left:128.375987px;}
.xf{left:140.075987px;}
.xa{left:141.335987px;}
.xe{left:150.149987px;}
.x3{left:161.130000px;}
.xb{left:237.989987px;}
.x6{left:371.954987px;}
.x8{left:419.474987px;}
.xd{left:420.734987px;}
.x9{left:446.474987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.544000pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.090667pt;}
.ls7{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.007680pt;}
.ls0{letter-spacing:0.128640pt;}
.ls3{letter-spacing:0.136320pt;}
.ls1{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.271467pt;}
.lsb{letter-spacing:177.258667pt;}
.ws3{word-spacing:-14.991467pt;}
.ws6{word-spacing:-14.720000pt;}
.ws5{word-spacing:-14.176000pt;}
.ws1{word-spacing:-13.280000pt;}
.ws0{word-spacing:-10.720000pt;}
.ws2{word-spacing:-0.053120pt;}
.ws4{word-spacing:0.000000pt;}
._15{margin-left:-4.165120pt;}
._4{margin-left:-2.982400pt;}
._3{margin-left:-2.086827pt;}
._0{margin-left:-1.000960pt;}
._1{width:1.077547pt;}
._19{width:1.978453pt;}
._7{width:2.868480pt;}
._6{width:3.925973pt;}
._5{width:4.833920pt;}
._9{width:6.002560pt;}
._2{width:7.118080pt;}
._8{width:8.749653pt;}
._13{width:9.658453pt;}
._d{width:11.193173pt;}
._11{width:12.188160pt;}
._12{width:13.819093pt;}
._b{width:16.398933pt;}
._c{width:17.453653pt;}
._17{width:19.089707pt;}
._a{width:20.595413pt;}
._16{width:21.667840pt;}
._f{width:22.845440pt;}
._10{width:24.343467pt;}
._1b{width:25.248000pt;}
._18{width:26.260480pt;}
._1a{width:27.261440pt;}
._14{width:28.674560pt;}
._1e{width:29.793280pt;}
._1c{width:39.331840pt;}
._1d{width:40.273920pt;}
._e{width:92.779947pt;}
._1f{width:177.258667pt;}
.fs2{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:9.280000pt;}
.y8{bottom:22.080000pt;}
.y7{bottom:40.320000pt;}
.y73{bottom:99.552000pt;}
.y72{bottom:118.912000pt;}
.y3f{bottom:123.712000pt;}
.y71{bottom:138.266667pt;}
.y3e{bottom:143.066667pt;}
.y70{bottom:157.786667pt;}
.y3d{bottom:162.586667pt;}
.y6f{bottom:177.146667pt;}
.y3c{bottom:181.946667pt;}
.y6e{bottom:196.506667pt;}
.y3b{bottom:201.306667pt;}
.y6d{bottom:215.866667pt;}
.y3a{bottom:220.666667pt;}
.y6c{bottom:235.386667pt;}
.y39{bottom:240.186667pt;}
.y6b{bottom:254.746667pt;}
.y38{bottom:259.546667pt;}
.y6a{bottom:274.106667pt;}
.y37{bottom:278.906667pt;}
.y69{bottom:293.466667pt;}
.y36{bottom:298.266667pt;}
.y68{bottom:312.866667pt;}
.y35{bottom:317.666667pt;}
.y67{bottom:332.386667pt;}
.y34{bottom:337.186667pt;}
.y66{bottom:351.746667pt;}
.y33{bottom:356.546667pt;}
.y65{bottom:371.106667pt;}
.y32{bottom:373.186667pt;}
.y31{bottom:386.306667pt;}
.y64{bottom:390.466667pt;}
.y30{bottom:399.266667pt;}
.y63{bottom:409.986667pt;}
.y2f{bottom:414.466667pt;}
.y62{bottom:429.346667pt;}
.y2e{bottom:429.826667pt;}
.y2d{bottom:445.186667pt;}
.y61{bottom:448.706667pt;}
.y2c{bottom:460.546667pt;}
.y60{bottom:468.066667pt;}
.y2b{bottom:475.906667pt;}
.y5f{bottom:487.426667pt;}
.y2a{bottom:491.266667pt;}
.y29{bottom:506.466667pt;}
.y5e{bottom:506.946667pt;}
.y28{bottom:521.826667pt;}
.y5d{bottom:526.306667pt;}
.y27{bottom:537.213333pt;}
.y5c{bottom:545.693333pt;}
.y26{bottom:552.573333pt;}
.y5b{bottom:565.053333pt;}
.y25{bottom:567.933333pt;}
.y24{bottom:583.133333pt;}
.y5a{bottom:584.573333pt;}
.y23{bottom:598.493333pt;}
.y59{bottom:603.933333pt;}
.y22{bottom:613.853333pt;}
.y58{bottom:623.293333pt;}
.y21{bottom:629.213333pt;}
.y57{bottom:642.653333pt;}
.y20{bottom:644.573333pt;}
.y1f{bottom:659.933333pt;}
.y56{bottom:662.013333pt;}
.y1e{bottom:675.133333pt;}
.y55{bottom:681.533333pt;}
.y1d{bottom:690.493333pt;}
.y54{bottom:700.893333pt;}
.y1c{bottom:705.853333pt;}
.y53{bottom:720.253333pt;}
.y1b{bottom:721.213333pt;}
.y1a{bottom:736.573333pt;}
.y52{bottom:739.613333pt;}
.y19{bottom:751.933333pt;}
.y51{bottom:759.133333pt;}
.y18{bottom:767.133333pt;}
.y50{bottom:778.533333pt;}
.y17{bottom:782.533333pt;}
.y16{bottom:797.893333pt;}
.y15{bottom:813.253333pt;}
.y4f{bottom:817.253333pt;}
.y14{bottom:828.933333pt;}
.y4e{bottom:836.613333pt;}
.y13{bottom:845.893333pt;}
.y4d{bottom:856.133333pt;}
.y12{bottom:862.693333pt;}
.y4c{bottom:875.493333pt;}
.y11{bottom:879.493333pt;}
.y4b{bottom:894.853333pt;}
.y10{bottom:896.773333pt;}
.y4a{bottom:914.213333pt;}
.yf{bottom:916.773333pt;}
.y49{bottom:933.733333pt;}
.ye{bottom:936.293333pt;}
.yd{bottom:952.773333pt;}
.y48{bottom:953.093333pt;}
.yc{bottom:968.133333pt;}
.y47{bottom:972.453333pt;}
.yb{bottom:983.493333pt;}
.y46{bottom:991.813333pt;}
.ya{bottom:998.693333pt;}
.y45{bottom:1011.173333pt;}
.y9{bottom:1014.080000pt;}
.y44{bottom:1028.960000pt;}
.y6{bottom:1037.120000pt;}
.y43{bottom:1042.880000pt;}
.y4{bottom:1049.760000pt;}
.y42{bottom:1072.800000pt;}
.y3{bottom:1078.720000pt;}
.y41{bottom:1090.720000pt;}
.y2{bottom:1094.400000pt;}
.y40{bottom:1108.640000pt;}
.y1{bottom:1109.920000pt;}
.h3{height:25.920000pt;}
.h5{height:32.683437pt;}
.h6{height:37.090625pt;}
.h7{height:37.479688pt;}
.hc{height:40.488438pt;}
.h8{height:41.112500pt;}
.hb{height:41.543750pt;}
.he{height:42.649687pt;}
.hd{height:43.905937pt;}
.h2{height:44.768125pt;}
.ha{height:44.878750pt;}
.h4{height:44.907500pt;}
.h9{height:48.768750pt;}
.hf{height:58.563750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:47.200000pt;}
.w4{width:557.693333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x2{left:8.800000pt;}
.x1{left:96.031988pt;}
.x7{left:106.431988pt;}
.x5{left:110.431988pt;}
.xc{left:114.111988pt;}
.xf{left:124.511988pt;}
.xa{left:125.631988pt;}
.xe{left:133.466655pt;}
.x3{left:143.226667pt;}
.xb{left:211.546655pt;}
.x6{left:330.626655pt;}
.x8{left:372.866655pt;}
.xd{left:373.986655pt;}
.x9{left:396.866655pt;}
}




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