
    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_a21ab351c11779378239cff8.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_3d8cd493721999ef77f4d45b.woff')format("woff");}.ff2{font-family:ff2;line-height:1.120605;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_ab5b9982bc7ac6841e03ee93.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_fdb7f05c27683ba0ac02eb15.woff')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_44dc07e85a1b2de3076be5fc.woff')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_8153a46d4e9973063226a4cd.woff')format("woff");}.ff6{font-family:ff6;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;}
.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;}
.ls9{letter-spacing:-1.080000px;}
.ls7{letter-spacing:-0.900000px;}
.ls8{letter-spacing:-0.360000px;}
.ls2{letter-spacing:-0.180000px;}
.ls4{letter-spacing:-0.028080px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.028080px;}
.ls3{letter-spacing:0.256200px;}
.lsa{letter-spacing:0.341400px;}
.ls0{letter-spacing:0.360000px;}
.lsb{letter-spacing:91.061280px;}
.ls6{letter-spacing:132.821280px;}
.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;}
}
.ws4{word-spacing:-21.420000px;}
.ws7{word-spacing:-21.401400px;}
.ws2{word-spacing:-21.060000px;}
.ws1{word-spacing:-21.031920px;}
.ws5{word-spacing:-20.700000px;}
.ws6{word-spacing:-19.980000px;}
.ws0{word-spacing:-15.226440px;}
.ws3{word-spacing:0.000000px;}
._15{margin-left:-5.981040px;}
._20{margin-left:-4.769760px;}
._b{margin-left:-3.706560px;}
._c{margin-left:-2.333760px;}
._1{margin-left:-1.095120px;}
._0{width:1.627920px;}
._5{width:2.948400px;}
._6{width:4.056960px;}
._9{width:5.475600px;}
._a{width:6.543360px;}
._1d{width:7.870080px;}
._22{width:8.944800px;}
._1c{width:10.009200px;}
._7{width:11.540160px;}
._8{width:12.554640px;}
._2{width:14.409840px;}
._16{width:15.635280px;}
._4{width:16.738320px;}
._3{width:18.111600px;}
._21{width:19.915680px;}
._23{width:22.077840px;}
._e{width:23.502960px;}
._d{width:25.272000px;}
._17{width:26.510640px;}
._18{width:27.575520px;}
._f{width:29.315520px;}
._1b{width:31.421520px;}
._14{width:33.587760px;}
._28{width:34.622640px;}
._27{width:36.054720px;}
._19{width:38.497680px;}
._1a{width:39.989040px;}
._1f{width:41.361840px;}
._1e{width:42.372720px;}
._29{width:44.816400px;}
._24{width:45.910800px;}
._26{width:47.102400px;}
._25{width:49.275840px;}
._13{width:54.671760px;}
._2c{width:58.067040px;}
._2d{width:60.042720px;}
._10{width:63.938160px;}
._11{width:64.949040px;}
._12{width:66.271920px;}
._2a{width:82.781280px;}
._2b{width:85.278960px;}
._2e{width:122.257920px;}
._2f{width:123.956400px;}
._33{width:127.733520px;}
._34{width:128.802960px;}
._35{width:130.046160px;}
._36{width:131.292000px;}
._30{width:132.535200px;}
._31{width:159.576240px;}
._32{width:161.167920px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(112,48,160);}
.fs3{font-size:66.240000px;}
.fs2{font-size:81.360000px;}
.fs1{font-size:84.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y4e{bottom:23.400000px;}
.y51{bottom:23.760000px;}
.y65{bottom:23.790000px;}
.y4d{bottom:51.120000px;}
.y50{bottom:51.480000px;}
.y53{bottom:51.510000px;}
.y6{bottom:57.600000px;}
.y5{bottom:77.796000px;}
.y4a{bottom:100.656000px;}
.y6c{bottom:104.076000px;}
.y27{bottom:108.216000px;}
.y49{bottom:128.376000px;}
.y6b{bottom:132.156000px;}
.y26{bottom:135.936000px;}
.y5f{bottom:147.996000px;}
.y48{bottom:156.270000px;}
.y6a{bottom:160.050000px;}
.y25{bottom:163.650000px;}
.y5e{bottom:175.710000px;}
.y47{bottom:183.990000px;}
.y69{bottom:187.770000px;}
.y24{bottom:191.550000px;}
.y6e{bottom:196.770000px;}
.y5d{bottom:203.610000px;}
.y46{bottom:211.710000px;}
.y68{bottom:215.490000px;}
.y23{bottom:219.270000px;}
.y5c{bottom:231.330000px;}
.y45{bottom:239.430000px;}
.y67{bottom:243.030000px;}
.y22{bottom:246.990000px;}
.y5b{bottom:259.050000px;}
.y44{bottom:267.330000px;}
.y66{bottom:270.750000px;}
.y21{bottom:274.890000px;}
.y5a{bottom:286.770000px;}
.y64{bottom:290.925000px;}
.y43{bottom:295.050000px;}
.y20{bottom:302.610000px;}
.y59{bottom:314.715000px;}
.y42{bottom:322.815000px;}
.y1f{bottom:330.015000px;}
.y58{bottom:342.435000px;}
.y41{bottom:350.355000px;}
.y4b{bottom:350.715000px;}
.y1e{bottom:358.095000px;}
.y63{bottom:362.235000px;}
.y57{bottom:370.155000px;}
.y40{bottom:378.435000px;}
.y1d{bottom:385.995000px;}
.y56{bottom:397.515000px;}
.y3f{bottom:406.155000px;}
.y1c{bottom:413.715000px;}
.y55{bottom:425.415000px;}
.y62{bottom:433.515000px;}
.y3e{bottom:433.875000px;}
.y1b{bottom:441.435000px;}
.y54{bottom:445.575000px;}
.y3d{bottom:461.775000px;}
.y1a{bottom:469.335000px;}
.y3c{bottom:489.495000px;}
.y19{bottom:497.055000px;}
.y61{bottom:504.795000px;}
.y52{bottom:516.855000px;}
.y3b{bottom:517.215000px;}
.y18{bottom:524.775000px;}
.y3a{bottom:544.935000px;}
.y17{bottom:552.495000px;}
.y39{bottom:572.865000px;}
.y60{bottom:576.105000px;}
.y16{bottom:580.425000px;}
.y4f{bottom:588.165000px;}
.y38{bottom:600.585000px;}
.y15{bottom:608.145000px;}
.y37{bottom:628.305000px;}
.y14{bottom:635.865000px;}
.y36{bottom:656.205000px;}
.y4c{bottom:659.445000px;}
.y13{bottom:663.585000px;}
.y35{bottom:683.925000px;}
.y12{bottom:691.485000px;}
.y34{bottom:711.645000px;}
.y11{bottom:719.205000px;}
.y33{bottom:739.365000px;}
.y10{bottom:746.925000px;}
.y32{bottom:767.265000px;}
.yf{bottom:774.825000px;}
.y31{bottom:794.985000px;}
.ye{bottom:802.545000px;}
.y30{bottom:822.750000px;}
.yd{bottom:830.310000px;}
.y2f{bottom:850.650000px;}
.yc{bottom:858.030000px;}
.y2e{bottom:878.370000px;}
.yb{bottom:900.510000px;}
.y2d{bottom:906.090000px;}
.ya{bottom:928.230000px;}
.y2c{bottom:933.810000px;}
.y9{bottom:956.130000px;}
.y2b{bottom:961.710000px;}
.y8{bottom:983.850000px;}
.y2a{bottom:989.430000px;}
.y29{bottom:1017.150000px;}
.y7{bottom:1026.690000px;}
.y6d{bottom:1044.690000px;}
.y28{bottom:1045.050000px;}
.y4{bottom:1068.480000px;}
.y3{bottom:1092.060000px;}
.y2{bottom:1116.720000px;}
.y1{bottom:1144.440000px;}
.h9{height:58.819922px;}
.h4{height:65.884219px;}
.ha{height:70.545000px;}
.h7{height:70.560000px;}
.hb{height:70.581000px;}
.h8{height:70.590000px;}
.h3{height:81.995625px;}
.h5{height:82.676953px;}
.h2{height:84.898125px;}
.h6{height:86.585445px;}
.h1{height:96.508125px;}
.h0{height:1188.000000px;}
.w1{width:116.856000px;}
.w6{width:127.476000px;}
.w3{width:152.670000px;}
.w5{width:153.195000px;}
.w2{width:156.795000px;}
.w4{width:163.785000px;}
.w9{width:190.635000px;}
.w7{width:202.695000px;}
.w8{width:223.410000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1c{left:7.740000px;}
.x20{left:9.525000px;}
.x17{left:12.765000px;}
.x11{left:13.860000px;}
.x2b{left:14.940000px;}
.x16{left:16.590000px;}
.x23{left:18.390000px;}
.x1f{left:20.685000px;}
.x21{left:22.665000px;}
.x2d{left:25.020000px;}
.x2e{left:26.445000px;}
.x30{left:30.060000px;}
.xf{left:32.205000px;}
.x14{left:33.465000px;}
.x1e{left:34.545000px;}
.xd{left:38.016000px;}
.x24{left:41.616000px;}
.x2c{left:42.825000px;}
.x2a{left:45.210000px;}
.x2f{left:46.245000px;}
.x1b{left:49.170000px;}
.x1a{left:52.725000px;}
.x1d{left:53.985000px;}
.x22{left:55.605000px;}
.x12{left:58.860000px;}
.x26{left:61.545000px;}
.x18{left:62.625000px;}
.x19{left:65.700000px;}
.x28{left:67.860000px;}
.x31{left:69.690000px;}
.x6{left:84.960000px;}
.xc{left:138.096000px;}
.x1{left:165.450000px;}
.xe{left:203.445000px;}
.x7{left:209.190000px;}
.x25{left:214.065000px;}
.x4{left:217.110000px;}
.x2{left:255.990000px;}
.x3{left:260.670000px;}
.x32{left:310.215000px;}
.x8{left:340.275000px;}
.x9{left:343.875000px;}
.x10{left:360.975000px;}
.x27{left:417.495000px;}
.x5{left:450.615000px;}
.xa{left:489.885000px;}
.x13{left:514.380000px;}
.xb{left:551.085000px;}
.x29{left:641.640000px;}
.x15{left:679.080000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.960000pt;}
.ls7{letter-spacing:-0.800000pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls2{letter-spacing:-0.160000pt;}
.ls4{letter-spacing:-0.024960pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.024960pt;}
.ls3{letter-spacing:0.227733pt;}
.lsa{letter-spacing:0.303467pt;}
.ls0{letter-spacing:0.320000pt;}
.lsb{letter-spacing:80.943360pt;}
.ls6{letter-spacing:118.063360pt;}
.ws4{word-spacing:-19.040000pt;}
.ws7{word-spacing:-19.023467pt;}
.ws2{word-spacing:-18.720000pt;}
.ws1{word-spacing:-18.695040pt;}
.ws5{word-spacing:-18.400000pt;}
.ws6{word-spacing:-17.760000pt;}
.ws0{word-spacing:-13.534613pt;}
.ws3{word-spacing:0.000000pt;}
._15{margin-left:-5.316480pt;}
._20{margin-left:-4.239787pt;}
._b{margin-left:-3.294720pt;}
._c{margin-left:-2.074453pt;}
._1{margin-left:-0.973440pt;}
._0{width:1.447040pt;}
._5{width:2.620800pt;}
._6{width:3.606187pt;}
._9{width:4.867200pt;}
._a{width:5.816320pt;}
._1d{width:6.995627pt;}
._22{width:7.950933pt;}
._1c{width:8.897067pt;}
._7{width:10.257920pt;}
._8{width:11.159680pt;}
._2{width:12.808747pt;}
._16{width:13.898027pt;}
._4{width:14.878507pt;}
._3{width:16.099200pt;}
._21{width:17.702827pt;}
._23{width:19.624747pt;}
._e{width:20.891520pt;}
._d{width:22.464000pt;}
._17{width:23.565013pt;}
._18{width:24.511573pt;}
._f{width:26.058240pt;}
._1b{width:27.930240pt;}
._14{width:29.855787pt;}
._28{width:30.775680pt;}
._27{width:32.048640pt;}
._19{width:34.220160pt;}
._1a{width:35.545813pt;}
._1f{width:36.766080pt;}
._1e{width:37.664640pt;}
._29{width:39.836800pt;}
._24{width:40.809600pt;}
._26{width:41.868800pt;}
._25{width:43.800747pt;}
._13{width:48.597120pt;}
._2c{width:51.615147pt;}
._2d{width:53.371307pt;}
._10{width:56.833920pt;}
._11{width:57.732480pt;}
._12{width:58.908373pt;}
._2a{width:73.583360pt;}
._2b{width:75.803520pt;}
._2e{width:108.673707pt;}
._2f{width:110.183467pt;}
._33{width:113.540907pt;}
._34{width:114.491520pt;}
._35{width:115.596587pt;}
._36{width:116.704000pt;}
._30{width:117.809067pt;}
._31{width:141.845547pt;}
._32{width:143.260373pt;}
.fs3{font-size:58.880000pt;}
.fs2{font-size:72.320000pt;}
.fs1{font-size:74.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y4e{bottom:20.800000pt;}
.y51{bottom:21.120000pt;}
.y65{bottom:21.146667pt;}
.y4d{bottom:45.440000pt;}
.y50{bottom:45.760000pt;}
.y53{bottom:45.786667pt;}
.y6{bottom:51.200000pt;}
.y5{bottom:69.152000pt;}
.y4a{bottom:89.472000pt;}
.y6c{bottom:92.512000pt;}
.y27{bottom:96.192000pt;}
.y49{bottom:114.112000pt;}
.y6b{bottom:117.472000pt;}
.y26{bottom:120.832000pt;}
.y5f{bottom:131.552000pt;}
.y48{bottom:138.906667pt;}
.y6a{bottom:142.266667pt;}
.y25{bottom:145.466667pt;}
.y5e{bottom:156.186667pt;}
.y47{bottom:163.546667pt;}
.y69{bottom:166.906667pt;}
.y24{bottom:170.266667pt;}
.y6e{bottom:174.906667pt;}
.y5d{bottom:180.986667pt;}
.y46{bottom:188.186667pt;}
.y68{bottom:191.546667pt;}
.y23{bottom:194.906667pt;}
.y5c{bottom:205.626667pt;}
.y45{bottom:212.826667pt;}
.y67{bottom:216.026667pt;}
.y22{bottom:219.546667pt;}
.y5b{bottom:230.266667pt;}
.y44{bottom:237.626667pt;}
.y66{bottom:240.666667pt;}
.y21{bottom:244.346667pt;}
.y5a{bottom:254.906667pt;}
.y64{bottom:258.600000pt;}
.y43{bottom:262.266667pt;}
.y20{bottom:268.986667pt;}
.y59{bottom:279.746667pt;}
.y42{bottom:286.946667pt;}
.y1f{bottom:293.346667pt;}
.y58{bottom:304.386667pt;}
.y41{bottom:311.426667pt;}
.y4b{bottom:311.746667pt;}
.y1e{bottom:318.306667pt;}
.y63{bottom:321.986667pt;}
.y57{bottom:329.026667pt;}
.y40{bottom:336.386667pt;}
.y1d{bottom:343.106667pt;}
.y56{bottom:353.346667pt;}
.y3f{bottom:361.026667pt;}
.y1c{bottom:367.746667pt;}
.y55{bottom:378.146667pt;}
.y62{bottom:385.346667pt;}
.y3e{bottom:385.666667pt;}
.y1b{bottom:392.386667pt;}
.y54{bottom:396.066667pt;}
.y3d{bottom:410.466667pt;}
.y1a{bottom:417.186667pt;}
.y3c{bottom:435.106667pt;}
.y19{bottom:441.826667pt;}
.y61{bottom:448.706667pt;}
.y52{bottom:459.426667pt;}
.y3b{bottom:459.746667pt;}
.y18{bottom:466.466667pt;}
.y3a{bottom:484.386667pt;}
.y17{bottom:491.106667pt;}
.y39{bottom:509.213333pt;}
.y60{bottom:512.093333pt;}
.y16{bottom:515.933333pt;}
.y4f{bottom:522.813333pt;}
.y38{bottom:533.853333pt;}
.y15{bottom:540.573333pt;}
.y37{bottom:558.493333pt;}
.y14{bottom:565.213333pt;}
.y36{bottom:583.293333pt;}
.y4c{bottom:586.173333pt;}
.y13{bottom:589.853333pt;}
.y35{bottom:607.933333pt;}
.y12{bottom:614.653333pt;}
.y34{bottom:632.573333pt;}
.y11{bottom:639.293333pt;}
.y33{bottom:657.213333pt;}
.y10{bottom:663.933333pt;}
.y32{bottom:682.013333pt;}
.yf{bottom:688.733333pt;}
.y31{bottom:706.653333pt;}
.ye{bottom:713.373333pt;}
.y30{bottom:731.333333pt;}
.yd{bottom:738.053333pt;}
.y2f{bottom:756.133333pt;}
.yc{bottom:762.693333pt;}
.y2e{bottom:780.773333pt;}
.yb{bottom:800.453333pt;}
.y2d{bottom:805.413333pt;}
.ya{bottom:825.093333pt;}
.y2c{bottom:830.053333pt;}
.y9{bottom:849.893333pt;}
.y2b{bottom:854.853333pt;}
.y8{bottom:874.533333pt;}
.y2a{bottom:879.493333pt;}
.y29{bottom:904.133333pt;}
.y7{bottom:912.613333pt;}
.y6d{bottom:928.613333pt;}
.y28{bottom:928.933333pt;}
.y4{bottom:949.760000pt;}
.y3{bottom:970.720000pt;}
.y2{bottom:992.640000pt;}
.y1{bottom:1017.280000pt;}
.h9{height:52.284375pt;}
.h4{height:58.563750pt;}
.ha{height:62.706667pt;}
.h7{height:62.720000pt;}
.hb{height:62.738667pt;}
.h8{height:62.746667pt;}
.h3{height:72.885000pt;}
.h5{height:73.490625pt;}
.h2{height:75.465000pt;}
.h6{height:76.964840pt;}
.h1{height:85.785000pt;}
.h0{height:1056.000000pt;}
.w1{width:103.872000pt;}
.w6{width:113.312000pt;}
.w3{width:135.706667pt;}
.w5{width:136.173333pt;}
.w2{width:139.373333pt;}
.w4{width:145.586667pt;}
.w9{width:169.453333pt;}
.w7{width:180.173333pt;}
.w8{width:198.586667pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:6.880000pt;}
.x20{left:8.466667pt;}
.x17{left:11.346667pt;}
.x11{left:12.320000pt;}
.x2b{left:13.280000pt;}
.x16{left:14.746667pt;}
.x23{left:16.346667pt;}
.x1f{left:18.386667pt;}
.x21{left:20.146667pt;}
.x2d{left:22.240000pt;}
.x2e{left:23.506667pt;}
.x30{left:26.720000pt;}
.xf{left:28.626667pt;}
.x14{left:29.746667pt;}
.x1e{left:30.706667pt;}
.xd{left:33.792000pt;}
.x24{left:36.992000pt;}
.x2c{left:38.066667pt;}
.x2a{left:40.186667pt;}
.x2f{left:41.106667pt;}
.x1b{left:43.706667pt;}
.x1a{left:46.866667pt;}
.x1d{left:47.986667pt;}
.x22{left:49.426667pt;}
.x12{left:52.320000pt;}
.x26{left:54.706667pt;}
.x18{left:55.666667pt;}
.x19{left:58.400000pt;}
.x28{left:60.320000pt;}
.x31{left:61.946667pt;}
.x6{left:75.520000pt;}
.xc{left:122.752000pt;}
.x1{left:147.066667pt;}
.xe{left:180.840000pt;}
.x7{left:185.946667pt;}
.x25{left:190.280000pt;}
.x4{left:192.986667pt;}
.x2{left:227.546667pt;}
.x3{left:231.706667pt;}
.x32{left:275.746667pt;}
.x8{left:302.466667pt;}
.x9{left:305.666667pt;}
.x10{left:320.866667pt;}
.x27{left:371.106667pt;}
.x5{left:400.546667pt;}
.xa{left:435.453333pt;}
.x13{left:457.226667pt;}
.xb{left:489.853333pt;}
.x29{left:570.346667pt;}
.x15{left:603.626667pt;}
}




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