
    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_78af23e325fa9d04b524afe2.woff2')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_602d447184df4c821dce6fe3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.752441;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_bc91ec9ec25e49df62d5fb54.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.936035;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_68cbeec3083fda0d661d3dc6.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_e5d4292f341f652efe8678d1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.804199;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_bdda2ef111ef6247e92dc6ef.woff2')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_832a42e3182402a590ba73ab.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.006836;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_a66a1240376598226163b7bd.woff2')format("woff");}.ff8{font-family:ff8;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v1{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:-0.738000px;}
.ls9{letter-spacing:-0.378600px;}
.ls6{letter-spacing:-0.341400px;}
.ls3{letter-spacing:-0.180000px;}
.ls5{letter-spacing:-0.144000px;}
.ls4{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.480000px;}
.ls7{letter-spacing:7.740000px;}
.ls1{letter-spacing:28.080000px;}
.ls2{letter-spacing:99.180000px;}
.ls0{letter-spacing:191.316000px;}
.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;}
}
.ws5{word-spacing:-21.420000px;}
.ws2{word-spacing:-21.060000px;}
.ws0{word-spacing:-20.916000px;}
.ws1{word-spacing:-20.718600px;}
.ws4{word-spacing:-20.322000px;}
.ws3{word-spacing:0.000000px;}
._20{margin-left:-3.102720px;}
._0{margin-left:-1.301760px;}
._1{width:1.587360px;}
._6{width:2.831280px;}
._b{width:4.839840px;}
._19{width:6.524640px;}
._1a{width:8.171280px;}
._5{width:9.519120px;}
._18{width:10.905120px;}
._1b{width:12.132720px;}
._1f{width:13.223520px;}
._14{width:14.902560px;}
._1d{width:16.089840px;}
._11{width:17.514000px;}
._10{width:19.038240px;}
._f{width:20.054400px;}
._e{width:22.109760px;}
._13{width:23.379840px;}
._1c{width:24.617280px;}
._2{width:26.503200px;}
._3{width:28.189920px;}
._12{width:29.970240px;}
._15{width:31.451280px;}
._16{width:32.772240px;}
._17{width:39.033360px;}
._4{width:40.350960px;}
._7{width:41.484240px;}
._8{width:42.835440px;}
._1e{width:43.973280px;}
._c{width:75.769920px;}
._9{width:98.897760px;}
._a{width:100.097040px;}
._d{width:191.316000px;}
.fc1{color:rgb(0,103,152);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:54.000000px;}
.fs0{font-size:81.360000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y5{bottom:14.220000px;}
.y50{bottom:14.400000px;}
.y59{bottom:17.085000px;}
.y2d{bottom:17.100000px;}
.y2e{bottom:17.280000px;}
.y3{bottom:28.800000px;}
.y55{bottom:35.100000px;}
.y5b{bottom:35.265000px;}
.y46{bottom:35.280000px;}
.y2b{bottom:35.640000px;}
.y4{bottom:36.540000px;}
.y2{bottom:52.560000px;}
.y53{bottom:53.280000px;}
.y58{bottom:53.310000px;}
.y45{bottom:53.460000px;}
.y43{bottom:53.820000px;}
.y54{bottom:71.460000px;}
.y5a{bottom:71.490000px;}
.y4e{bottom:71.640000px;}
.y4b{bottom:86.040000px;}
.y52{bottom:89.460000px;}
.y57{bottom:89.490000px;}
.y4d{bottom:89.640000px;}
.y40{bottom:103.860000px;}
.y22{bottom:125.676000px;}
.y4a{bottom:139.716000px;}
.y3f{bottom:140.076000px;}
.y21{bottom:161.850000px;}
.y49{bottom:175.890000px;}
.y3e{bottom:176.250000px;}
.y20{bottom:198.030000px;}
.y48{bottom:212.250000px;}
.y3d{bottom:212.610000px;}
.y1f{bottom:234.390000px;}
.y3c{bottom:248.790000px;}
.y1e{bottom:270.570000px;}
.y3b{bottom:284.610000px;}
.y47{bottom:284.970000px;}
.y1d{bottom:306.750000px;}
.y3a{bottom:321.150000px;}
.y1c{bottom:342.930000px;}
.y39{bottom:357.510000px;}
.y1b{bottom:379.155000px;}
.y38{bottom:393.735000px;}
.y1a{bottom:415.515000px;}
.y37{bottom:429.915000px;}
.y19{bottom:451.695000px;}
.y36{bottom:466.095000px;}
.y18{bottom:487.875000px;}
.y35{bottom:502.455000px;}
.y17{bottom:524.055000px;}
.y34{bottom:538.635000px;}
.y16{bottom:560.415000px;}
.y33{bottom:574.815000px;}
.y15{bottom:596.595000px;}
.y32{bottom:610.995000px;}
.y14{bottom:632.805000px;}
.y31{bottom:647.205000px;}
.y5f{bottom:668.625000px;}
.y13{bottom:668.985000px;}
.y5e{bottom:683.565000px;}
.y30{bottom:685.185000px;}
.y12{bottom:705.345000px;}
.y5d{bottom:719.745000px;}
.y2f{bottom:722.085000px;}
.y11{bottom:741.525000px;}
.y5c{bottom:755.925000px;}
.y2a{bottom:758.985000px;}
.y10{bottom:777.705000px;}
.y4f{bottom:793.725000px;}
.y2c{bottom:796.065000px;}
.yf{bottom:813.885000px;}
.y56{bottom:830.820000px;}
.y44{bottom:832.245000px;}
.y29{bottom:849.705000px;}
.ye{bottom:850.065000px;}
.y28{bottom:886.110000px;}
.yd{bottom:886.470000px;}
.y42{bottom:922.290000px;}
.yc{bottom:922.650000px;}
.y51{bottom:940.290000px;}
.y41{bottom:958.470000px;}
.yb{bottom:958.830000px;}
.ya{bottom:994.650000px;}
.y27{bottom:995.010000px;}
.y9{bottom:1031.010000px;}
.y26{bottom:1031.370000px;}
.y4c{bottom:1049.550000px;}
.y8{bottom:1067.190000px;}
.y25{bottom:1067.550000px;}
.y7{bottom:1103.370000px;}
.y24{bottom:1103.730000px;}
.y6{bottom:1139.550000px;}
.y23{bottom:1139.910000px;}
.y1{bottom:1209.060000px;}
.h9{height:36.180000px;}
.hd{height:36.216000px;}
.ha{height:36.360000px;}
.h4{height:46.620000px;}
.h5{height:61.781484px;}
.h7{height:66.635156px;}
.hc{height:72.540000px;}
.h8{height:73.260000px;}
.h2{height:81.995625px;}
.h3{height:82.676953px;}
.h10{height:82.677021px;}
.h6{height:84.898125px;}
.h13{height:86.585445px;}
.h11{height:108.525000px;}
.h12{height:108.561000px;}
.he{height:108.750000px;}
.hb{height:109.440000px;}
.hf{height:255.090000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:47.001000px;}
.wa{width:54.021000px;}
.w2{width:72.180000px;}
.w18{width:73.431000px;}
.w19{width:84.225000px;}
.w12{width:86.781000px;}
.w17{width:91.245000px;}
.w16{width:93.621000px;}
.w15{width:95.565000px;}
.w13{width:95.580000px;}
.w14{width:96.516000px;}
.w3{width:141.831000px;}
.w9{width:151.371000px;}
.wc{width:152.820000px;}
.wf{width:158.391000px;}
.wd{width:161.310000px;}
.we{width:162.195000px;}
.w8{width:166.335000px;}
.w7{width:169.410000px;}
.w6{width:170.280000px;}
.w10{width:280.500000px;}
.w11{width:282.075000px;}
.wb{width:477.780000px;}
.w5{width:507.495000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:7.725000px;}
.x3b{left:9.345000px;}
.x29{left:11.145000px;}
.x25{left:12.450000px;}
.x36{left:14.400000px;}
.x3c{left:16.200000px;}
.x4{left:17.250000px;}
.x34{left:20.700000px;}
.x17{left:21.771000px;}
.x22{left:24.120000px;}
.x28{left:26.805000px;}
.x3d{left:28.605000px;}
.x31{left:31.851000px;}
.x32{left:35.130000px;}
.x1a{left:38.505000px;}
.xe{left:39.765000px;}
.x39{left:41.565000px;}
.x2a{left:43.410000px;}
.x1e{left:44.805000px;}
.x19{left:45.930000px;}
.x12{left:47.160000px;}
.x14{left:50.790000px;}
.x16{left:52.770000px;}
.x27{left:54.750000px;}
.x23{left:56.520000px;}
.x30{left:79.365000px;}
.x2{left:106.416000px;}
.x2d{left:112.005000px;}
.x21{left:114.840000px;}
.x1{left:117.036000px;}
.xd{left:124.245000px;}
.x2b{left:126.576000px;}
.x1d{left:130.905000px;}
.x1b{left:146.016000px;}
.x3f{left:149.076000px;}
.x3a{left:186.165000px;}
.x11{left:203.790000px;}
.x9{left:234.570000px;}
.x5{left:252.570000px;}
.xf{left:266.805000px;}
.x2e{left:271.125000px;}
.x1f{left:283.005000px;}
.xa{left:310.215000px;}
.x10{left:314.535000px;}
.x6{left:316.515000px;}
.x20{left:337.755000px;}
.x2c{left:350.535000px;}
.x33{left:358.815000px;}
.x3e{left:389.235000px;}
.x1c{left:443.595000px;}
.x35{left:455.115000px;}
.x8{left:456.735000px;}
.x13{left:485.535000px;}
.x24{left:491.295000px;}
.x7{left:523.545000px;}
.x2f{left:552.360000px;}
.x37{left:648.660000px;}
.x26{left:653.340000px;}
.x15{left:655.680000px;}
.x38{left:743.190000px;}
.xc{left:762.270000px;}
.x3{left:775.260000px;}
.xb{left:829.410000px;}
@media print{
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.656000pt;}
.ls9{letter-spacing:-0.336533pt;}
.ls6{letter-spacing:-0.303467pt;}
.ls3{letter-spacing:-0.160000pt;}
.ls5{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.426667pt;}
.ls7{letter-spacing:6.880000pt;}
.ls1{letter-spacing:24.960000pt;}
.ls2{letter-spacing:88.160000pt;}
.ls0{letter-spacing:170.058667pt;}
.ws5{word-spacing:-19.040000pt;}
.ws2{word-spacing:-18.720000pt;}
.ws0{word-spacing:-18.592000pt;}
.ws1{word-spacing:-18.416533pt;}
.ws4{word-spacing:-18.064000pt;}
.ws3{word-spacing:0.000000pt;}
._20{margin-left:-2.757973pt;}
._0{margin-left:-1.157120pt;}
._1{width:1.410987pt;}
._6{width:2.516693pt;}
._b{width:4.302080pt;}
._19{width:5.799680pt;}
._1a{width:7.263360pt;}
._5{width:8.461440pt;}
._18{width:9.693440pt;}
._1b{width:10.784640pt;}
._1f{width:11.754240pt;}
._14{width:13.246720pt;}
._1d{width:14.302080pt;}
._11{width:15.568000pt;}
._10{width:16.922880pt;}
._f{width:17.826133pt;}
._e{width:19.653120pt;}
._13{width:20.782080pt;}
._1c{width:21.882027pt;}
._2{width:23.558400pt;}
._3{width:25.057707pt;}
._12{width:26.640213pt;}
._15{width:27.956693pt;}
._16{width:29.130880pt;}
._17{width:34.696320pt;}
._4{width:35.867520pt;}
._7{width:36.874880pt;}
._8{width:38.075947pt;}
._1e{width:39.087360pt;}
._c{width:67.351040pt;}
._9{width:87.909120pt;}
._a{width:88.975147pt;}
._d{width:170.058667pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:72.320000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:12.640000pt;}
.y50{bottom:12.800000pt;}
.y59{bottom:15.186667pt;}
.y2d{bottom:15.200000pt;}
.y2e{bottom:15.360000pt;}
.y3{bottom:25.600000pt;}
.y55{bottom:31.200000pt;}
.y5b{bottom:31.346667pt;}
.y46{bottom:31.360000pt;}
.y2b{bottom:31.680000pt;}
.y4{bottom:32.480000pt;}
.y2{bottom:46.720000pt;}
.y53{bottom:47.360000pt;}
.y58{bottom:47.386667pt;}
.y45{bottom:47.520000pt;}
.y43{bottom:47.840000pt;}
.y54{bottom:63.520000pt;}
.y5a{bottom:63.546667pt;}
.y4e{bottom:63.680000pt;}
.y4b{bottom:76.480000pt;}
.y52{bottom:79.520000pt;}
.y57{bottom:79.546667pt;}
.y4d{bottom:79.680000pt;}
.y40{bottom:92.320000pt;}
.y22{bottom:111.712000pt;}
.y4a{bottom:124.192000pt;}
.y3f{bottom:124.512000pt;}
.y21{bottom:143.866667pt;}
.y49{bottom:156.346667pt;}
.y3e{bottom:156.666667pt;}
.y20{bottom:176.026667pt;}
.y48{bottom:188.666667pt;}
.y3d{bottom:188.986667pt;}
.y1f{bottom:208.346667pt;}
.y3c{bottom:221.146667pt;}
.y1e{bottom:240.506667pt;}
.y3b{bottom:252.986667pt;}
.y47{bottom:253.306667pt;}
.y1d{bottom:272.666667pt;}
.y3a{bottom:285.466667pt;}
.y1c{bottom:304.826667pt;}
.y39{bottom:317.786667pt;}
.y1b{bottom:337.026667pt;}
.y38{bottom:349.986667pt;}
.y1a{bottom:369.346667pt;}
.y37{bottom:382.146667pt;}
.y19{bottom:401.506667pt;}
.y36{bottom:414.306667pt;}
.y18{bottom:433.666667pt;}
.y35{bottom:446.626667pt;}
.y17{bottom:465.826667pt;}
.y34{bottom:478.786667pt;}
.y16{bottom:498.146667pt;}
.y33{bottom:510.946667pt;}
.y15{bottom:530.306667pt;}
.y32{bottom:543.106667pt;}
.y14{bottom:562.493333pt;}
.y31{bottom:575.293333pt;}
.y5f{bottom:594.333333pt;}
.y13{bottom:594.653333pt;}
.y5e{bottom:607.613333pt;}
.y30{bottom:609.053333pt;}
.y12{bottom:626.973333pt;}
.y5d{bottom:639.773333pt;}
.y2f{bottom:641.853333pt;}
.y11{bottom:659.133333pt;}
.y5c{bottom:671.933333pt;}
.y2a{bottom:674.653333pt;}
.y10{bottom:691.293333pt;}
.y4f{bottom:705.533333pt;}
.y2c{bottom:707.613333pt;}
.yf{bottom:723.453333pt;}
.y56{bottom:738.506667pt;}
.y44{bottom:739.773333pt;}
.y29{bottom:755.293333pt;}
.ye{bottom:755.613333pt;}
.y28{bottom:787.653333pt;}
.yd{bottom:787.973333pt;}
.y42{bottom:819.813333pt;}
.yc{bottom:820.133333pt;}
.y51{bottom:835.813333pt;}
.y41{bottom:851.973333pt;}
.yb{bottom:852.293333pt;}
.ya{bottom:884.133333pt;}
.y27{bottom:884.453333pt;}
.y9{bottom:916.453333pt;}
.y26{bottom:916.773333pt;}
.y4c{bottom:932.933333pt;}
.y8{bottom:948.613333pt;}
.y25{bottom:948.933333pt;}
.y7{bottom:980.773333pt;}
.y24{bottom:981.093333pt;}
.y6{bottom:1012.933333pt;}
.y23{bottom:1013.253333pt;}
.y1{bottom:1074.720000pt;}
.h9{height:32.160000pt;}
.hd{height:32.192000pt;}
.ha{height:32.320000pt;}
.h4{height:41.440000pt;}
.h5{height:54.916875pt;}
.h7{height:59.231250pt;}
.hc{height:64.480000pt;}
.h8{height:65.120000pt;}
.h2{height:72.885000pt;}
.h3{height:73.490625pt;}
.h10{height:73.490685pt;}
.h6{height:75.465000pt;}
.h13{height:76.964840pt;}
.h11{height:96.466667pt;}
.h12{height:96.498667pt;}
.he{height:96.666667pt;}
.hb{height:97.280000pt;}
.hf{height:226.746667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:41.778667pt;}
.wa{width:48.018667pt;}
.w2{width:64.160000pt;}
.w18{width:65.272000pt;}
.w19{width:74.866667pt;}
.w12{width:77.138667pt;}
.w17{width:81.106667pt;}
.w16{width:83.218667pt;}
.w15{width:84.946667pt;}
.w13{width:84.960000pt;}
.w14{width:85.792000pt;}
.w3{width:126.072000pt;}
.w9{width:134.552000pt;}
.wc{width:135.840000pt;}
.wf{width:140.792000pt;}
.wd{width:143.386667pt;}
.we{width:144.173333pt;}
.w8{width:147.853333pt;}
.w7{width:150.586667pt;}
.w6{width:151.360000pt;}
.w10{width:249.333333pt;}
.w11{width:250.733333pt;}
.wb{width:424.693333pt;}
.w5{width:451.106667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:6.866667pt;}
.x3b{left:8.306667pt;}
.x29{left:9.906667pt;}
.x25{left:11.066667pt;}
.x36{left:12.800000pt;}
.x3c{left:14.400000pt;}
.x4{left:15.333333pt;}
.x34{left:18.400000pt;}
.x17{left:19.352000pt;}
.x22{left:21.440000pt;}
.x28{left:23.826667pt;}
.x3d{left:25.426667pt;}
.x31{left:28.312000pt;}
.x32{left:31.226667pt;}
.x1a{left:34.226667pt;}
.xe{left:35.346667pt;}
.x39{left:36.946667pt;}
.x2a{left:38.586667pt;}
.x1e{left:39.826667pt;}
.x19{left:40.826667pt;}
.x12{left:41.920000pt;}
.x14{left:45.146667pt;}
.x16{left:46.906667pt;}
.x27{left:48.666667pt;}
.x23{left:50.240000pt;}
.x30{left:70.546667pt;}
.x2{left:94.592000pt;}
.x2d{left:99.560000pt;}
.x21{left:102.080000pt;}
.x1{left:104.032000pt;}
.xd{left:110.440000pt;}
.x2b{left:112.512000pt;}
.x1d{left:116.360000pt;}
.x1b{left:129.792000pt;}
.x3f{left:132.512000pt;}
.x3a{left:165.480000pt;}
.x11{left:181.146667pt;}
.x9{left:208.506667pt;}
.x5{left:224.506667pt;}
.xf{left:237.160000pt;}
.x2e{left:241.000000pt;}
.x1f{left:251.560000pt;}
.xa{left:275.746667pt;}
.x10{left:279.586667pt;}
.x6{left:281.346667pt;}
.x20{left:300.226667pt;}
.x2c{left:311.586667pt;}
.x33{left:318.946667pt;}
.x3e{left:345.986667pt;}
.x1c{left:394.306667pt;}
.x35{left:404.546667pt;}
.x8{left:405.986667pt;}
.x13{left:431.586667pt;}
.x24{left:436.706667pt;}
.x7{left:465.373333pt;}
.x2f{left:490.986667pt;}
.x37{left:576.586667pt;}
.x26{left:580.746667pt;}
.x15{left:582.826667pt;}
.x38{left:660.613333pt;}
.xc{left:677.573333pt;}
.x3{left:689.120000pt;}
.xb{left:737.253333pt;}
}




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