
    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_defca4745d71b77212ec84c0.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_2a0ba0f9b18b4f4a6add2fcf.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c8d8d76d2f83153f746bcf05.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_b672f6193cf0e2bedf1216f7.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_e22a24ac5c68a167af208313.woff')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_03c3bc737136ee7d3b649616.woff')format("woff");}.ff6{font-family:ff6;line-height:0.946777;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_be60aba4a19fab610aaaa8da.woff')format("woff");}.ff7{font-family:ff7;line-height:1.401855;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_3eb62eba4657ae0712663af4.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_d367affa9cef7a9abc7b8612.woff')format("woff");}.ffa{font-family:ffa;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);}
.v0{vertical-align:0.000000px;}
.ls1a{letter-spacing:-1.128000px;}
.ls8{letter-spacing:-0.075000px;}
.ls7{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.060000px;}
.lsd{letter-spacing:0.120000px;}
.lsc{letter-spacing:0.150000px;}
.lsa{letter-spacing:0.180000px;}
.ls0{letter-spacing:1.080000px;}
.lsb{letter-spacing:1.147500px;}
.ls11{letter-spacing:1.230000px;}
.ls6{letter-spacing:1.465500px;}
.ls17{letter-spacing:1.495500px;}
.ls9{letter-spacing:1.524000px;}
.ls4{letter-spacing:1.525500px;}
.ls16{letter-spacing:1.645500px;}
.ls13{letter-spacing:1.705500px;}
.ls3{letter-spacing:2.142000px;}
.ls1{letter-spacing:2.250000px;}
.ls2{letter-spacing:2.370000px;}
.lsf{letter-spacing:2.430000px;}
.ls18{letter-spacing:21.375000px;}
.lse{letter-spacing:25.875000px;}
.ls12{letter-spacing:30.555000px;}
.ls19{letter-spacing:46.233000px;}
.ls10{letter-spacing:52.995000px;}
.ls5{letter-spacing:57.525000px;}
.ls15{letter-spacing:82.917000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-26.962500px;}
.ws4{word-spacing:-21.375000px;}
.ws2{word-spacing:-21.267000px;}
.ws5{word-spacing:-20.272500px;}
.ws1{word-spacing:-19.125000px;}
.ws3{word-spacing:0.000000px;}
._2e{margin-left:-7.990500px;}
._14{margin-left:-6.589500px;}
._b{margin-left:-5.563500px;}
._1{margin-left:-4.455000px;}
._4{margin-left:-2.452500px;}
._0{margin-left:-1.102500px;}
._2{width:1.080000px;}
._3{width:2.752500px;}
._9{width:4.213500px;}
._a{width:5.253000px;}
._c{width:7.056000px;}
._f{width:8.268000px;}
._e{width:10.309500px;}
._13{width:11.341500px;}
._7{width:12.366000px;}
._27{width:13.594500px;}
._26{width:14.682000px;}
._2b{width:15.903000px;}
._8{width:16.903500px;}
._2f{width:17.934000px;}
._d{width:19.531500px;}
._5{width:21.012000px;}
._6{width:22.216500px;}
._2c{width:23.469000px;}
._25{width:25.056000px;}
._1f{width:26.473500px;}
._28{width:28.281000px;}
._12{width:29.646000px;}
._11{width:31.173000px;}
._10{width:35.107500px;}
._2a{width:37.927500px;}
._1a{width:39.049500px;}
._1b{width:40.312500px;}
._19{width:43.705500px;}
._29{width:44.707500px;}
._17{width:48.343500px;}
._18{width:49.345500px;}
._16{width:52.708500px;}
._1e{width:53.928000px;}
._15{width:56.926500px;}
._22{width:61.774500px;}
._2d{width:62.875500px;}
._21{width:66.667500px;}
._24{width:88.654500px;}
._23{width:89.736000px;}
._20{width:93.637500px;}
._1d{width:129.681000px;}
._1c{width:134.182500px;}
.fc1{color:rgb(0,176,240);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:58.500000px;}
.fs0{font-size:67.500000px;}
.fs2{font-size:76.500000px;}
.fs4{font-size:85.650000px;}
.fs1{font-size:108.150000px;}
.y0{bottom:0.000000px;}
.y2f{bottom:7.875000px;}
.y35{bottom:20.250000px;}
.y3a{bottom:21.375000px;}
.y5{bottom:24.750000px;}
.y36{bottom:33.750000px;}
.y33{bottom:33.780000px;}
.y38{bottom:33.795000px;}
.y4{bottom:46.162500px;}
.y30{bottom:95.700000px;}
.y2d{bottom:111.450000px;}
.y2e{bottom:126.112500px;}
.y2c{bottom:137.362500px;}
.y2b{bottom:162.150000px;}
.y54{bottom:163.275000px;}
.y2a{bottom:188.025000px;}
.y53{bottom:189.150000px;}
.y29{bottom:213.945000px;}
.y52{bottom:215.070000px;}
.y28{bottom:239.820000px;}
.y51{bottom:240.975000px;}
.y27{bottom:265.725000px;}
.y50{bottom:266.850000px;}
.y26{bottom:291.645000px;}
.y4f{bottom:292.755000px;}
.y25{bottom:317.505000px;}
.y4e{bottom:318.645000px;}
.y24{bottom:343.425000px;}
.y4d{bottom:344.550000px;}
.y23{bottom:369.345000px;}
.y4c{bottom:370.455000px;}
.y22{bottom:395.205000px;}
.y4b{bottom:396.345000px;}
.y5a{bottom:420.000000px;}
.y21{bottom:421.125000px;}
.y4a{bottom:422.250000px;}
.y20{bottom:447.000000px;}
.y59{bottom:454.905000px;}
.y1f{bottom:471.780000px;}
.y49{bottom:472.920000px;}
.y58{bottom:492.075000px;}
.y1e{bottom:497.700000px;}
.y48{bottom:498.825000px;}
.y1d{bottom:523.575000px;}
.y47{bottom:524.700000px;}
.y57{bottom:528.075000px;}
.y1c{bottom:549.495000px;}
.y46{bottom:550.620000px;}
.y56{bottom:564.120000px;}
.y1b{bottom:575.400000px;}
.y45{bottom:576.525000px;}
.y55{bottom:600.150000px;}
.y1a{bottom:601.275000px;}
.y44{bottom:602.400000px;}
.y19{bottom:627.195000px;}
.y43{bottom:628.320000px;}
.y18{bottom:653.070000px;}
.y42{bottom:654.195000px;}
.y17{bottom:678.975000px;}
.y41{bottom:680.100000px;}
.y16{bottom:704.880000px;}
.y40{bottom:706.020000px;}
.y15{bottom:730.755000px;}
.y3f{bottom:731.880000px;}
.y14{bottom:756.675000px;}
.y3e{bottom:757.800000px;}
.y13{bottom:782.550000px;}
.y12{bottom:807.330000px;}
.y3d{bottom:808.455000px;}
.y11{bottom:833.250000px;}
.y3c{bottom:834.375000px;}
.y10{bottom:859.125000px;}
.y3b{bottom:860.250000px;}
.y39{bottom:881.670000px;}
.yf{bottom:885.045000px;}
.ye{bottom:910.950000px;}
.yd{bottom:936.825000px;}
.y37{bottom:937.950000px;}
.yc{bottom:962.745000px;}
.yb{bottom:988.620000px;}
.y34{bottom:994.275000px;}
.ya{bottom:1014.525000px;}
.y9{bottom:1040.445000px;}
.y32{bottom:1050.570000px;}
.y8{bottom:1066.320000px;}
.y7{bottom:1092.225000px;}
.y31{bottom:1106.850000px;}
.y6{bottom:1118.100000px;}
.y3{bottom:1154.130000px;}
.y2{bottom:1174.425000px;}
.y1{bottom:1194.675000px;}
.hc{height:25.875000px;}
.hd{height:25.912500px;}
.hf{height:51.772500px;}
.he{height:51.787500px;}
.ha{height:53.415527px;}
.h5{height:53.975830px;}
.h8{height:55.918213px;}
.hb{height:60.128782px;}
.h2{height:67.137451px;}
.h3{height:68.027344px;}
.h7{height:75.043213px;}
.h9{height:75.080566px;}
.h6{height:77.097656px;}
.h10{height:78.629945px;}
.h11{height:84.060791px;}
.h12{height:86.319141px;}
.h4{height:106.143311px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w2{width:118.275000px;}
.w4{width:270.345000px;}
.w3{width:333.450000px;}
.w1{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x1b{left:1.125000px;}
.x15{left:21.420000px;}
.xd{left:22.537500px;}
.x12{left:27.030000px;}
.x18{left:28.170000px;}
.x14{left:29.280000px;}
.x1a{left:30.405000px;}
.x11{left:31.530000px;}
.x1e{left:32.670000px;}
.x17{left:36.075000px;}
.x1c{left:39.450000px;}
.x1d{left:54.075000px;}
.x10{left:61.950000px;}
.x16{left:94.605000px;}
.x19{left:103.650000px;}
.xc{left:126.150000px;}
.x1{left:127.274987px;}
.x13{left:134.070000px;}
.xb{left:148.687487px;}
.x5{left:159.929987px;}
.x2{left:171.224987px;}
.x6{left:245.549987px;}
.xe{left:246.675000px;}
.xa{left:288.374987px;}
.x9{left:319.904987px;}
.x8{left:339.044987px;}
.x7{left:500.129987px;}
.xf{left:582.375000px;}
.x3{left:824.549987px;}
.x4{left:851.579987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1a{letter-spacing:-1.002667pt;}
.ls8{letter-spacing:-0.066667pt;}
.ls7{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.053333pt;}
.lsd{letter-spacing:0.106667pt;}
.lsc{letter-spacing:0.133333pt;}
.lsa{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.960000pt;}
.lsb{letter-spacing:1.020000pt;}
.ls11{letter-spacing:1.093333pt;}
.ls6{letter-spacing:1.302667pt;}
.ls17{letter-spacing:1.329333pt;}
.ls9{letter-spacing:1.354667pt;}
.ls4{letter-spacing:1.356000pt;}
.ls16{letter-spacing:1.462667pt;}
.ls13{letter-spacing:1.516000pt;}
.ls3{letter-spacing:1.904000pt;}
.ls1{letter-spacing:2.000000pt;}
.ls2{letter-spacing:2.106667pt;}
.lsf{letter-spacing:2.160000pt;}
.ls18{letter-spacing:19.000000pt;}
.lse{letter-spacing:23.000000pt;}
.ls12{letter-spacing:27.160000pt;}
.ls19{letter-spacing:41.096000pt;}
.ls10{letter-spacing:47.106667pt;}
.ls5{letter-spacing:51.133333pt;}
.ls15{letter-spacing:73.704000pt;}
.ws0{word-spacing:-23.966667pt;}
.ws4{word-spacing:-19.000000pt;}
.ws2{word-spacing:-18.904000pt;}
.ws5{word-spacing:-18.020000pt;}
.ws1{word-spacing:-17.000000pt;}
.ws3{word-spacing:0.000000pt;}
._2e{margin-left:-7.102667pt;}
._14{margin-left:-5.857333pt;}
._b{margin-left:-4.945333pt;}
._1{margin-left:-3.960000pt;}
._4{margin-left:-2.180000pt;}
._0{margin-left:-0.980000pt;}
._2{width:0.960000pt;}
._3{width:2.446667pt;}
._9{width:3.745333pt;}
._a{width:4.669333pt;}
._c{width:6.272000pt;}
._f{width:7.349333pt;}
._e{width:9.164000pt;}
._13{width:10.081333pt;}
._7{width:10.992000pt;}
._27{width:12.084000pt;}
._26{width:13.050667pt;}
._2b{width:14.136000pt;}
._8{width:15.025333pt;}
._2f{width:15.941333pt;}
._d{width:17.361333pt;}
._5{width:18.677333pt;}
._6{width:19.748000pt;}
._2c{width:20.861333pt;}
._25{width:22.272000pt;}
._1f{width:23.532000pt;}
._28{width:25.138667pt;}
._12{width:26.352000pt;}
._11{width:27.709333pt;}
._10{width:31.206667pt;}
._2a{width:33.713333pt;}
._1a{width:34.710667pt;}
._1b{width:35.833333pt;}
._19{width:38.849333pt;}
._29{width:39.740000pt;}
._17{width:42.972000pt;}
._18{width:43.862667pt;}
._16{width:46.852000pt;}
._1e{width:47.936000pt;}
._15{width:50.601333pt;}
._22{width:54.910667pt;}
._2d{width:55.889333pt;}
._21{width:59.260000pt;}
._24{width:78.804000pt;}
._23{width:79.765333pt;}
._20{width:83.233333pt;}
._1d{width:115.272000pt;}
._1c{width:119.273333pt;}
.fs3{font-size:52.000000pt;}
.fs0{font-size:60.000000pt;}
.fs2{font-size:68.000000pt;}
.fs4{font-size:76.133333pt;}
.fs1{font-size:96.133333pt;}
.y0{bottom:0.000000pt;}
.y2f{bottom:7.000000pt;}
.y35{bottom:18.000000pt;}
.y3a{bottom:19.000000pt;}
.y5{bottom:22.000000pt;}
.y36{bottom:30.000000pt;}
.y33{bottom:30.026667pt;}
.y38{bottom:30.040000pt;}
.y4{bottom:41.033333pt;}
.y30{bottom:85.066667pt;}
.y2d{bottom:99.066667pt;}
.y2e{bottom:112.100000pt;}
.y2c{bottom:122.100000pt;}
.y2b{bottom:144.133333pt;}
.y54{bottom:145.133333pt;}
.y2a{bottom:167.133333pt;}
.y53{bottom:168.133333pt;}
.y29{bottom:190.173333pt;}
.y52{bottom:191.173333pt;}
.y28{bottom:213.173333pt;}
.y51{bottom:214.200000pt;}
.y27{bottom:236.200000pt;}
.y50{bottom:237.200000pt;}
.y26{bottom:259.240000pt;}
.y4f{bottom:260.226667pt;}
.y25{bottom:282.226667pt;}
.y4e{bottom:283.240000pt;}
.y24{bottom:305.266667pt;}
.y4d{bottom:306.266667pt;}
.y23{bottom:328.306667pt;}
.y4c{bottom:329.293333pt;}
.y22{bottom:351.293333pt;}
.y4b{bottom:352.306667pt;}
.y5a{bottom:373.333333pt;}
.y21{bottom:374.333333pt;}
.y4a{bottom:375.333333pt;}
.y20{bottom:397.333333pt;}
.y59{bottom:404.360000pt;}
.y1f{bottom:419.360000pt;}
.y49{bottom:420.373333pt;}
.y58{bottom:437.400000pt;}
.y1e{bottom:442.400000pt;}
.y48{bottom:443.400000pt;}
.y1d{bottom:465.400000pt;}
.y47{bottom:466.400000pt;}
.y57{bottom:469.400000pt;}
.y1c{bottom:488.440000pt;}
.y46{bottom:489.440000pt;}
.y56{bottom:501.440000pt;}
.y1b{bottom:511.466667pt;}
.y45{bottom:512.466667pt;}
.y55{bottom:533.466667pt;}
.y1a{bottom:534.466667pt;}
.y44{bottom:535.466667pt;}
.y19{bottom:557.506667pt;}
.y43{bottom:558.506667pt;}
.y18{bottom:580.506667pt;}
.y42{bottom:581.506667pt;}
.y17{bottom:603.533333pt;}
.y41{bottom:604.533333pt;}
.y16{bottom:626.560000pt;}
.y40{bottom:627.573333pt;}
.y15{bottom:649.560000pt;}
.y3f{bottom:650.560000pt;}
.y14{bottom:672.600000pt;}
.y3e{bottom:673.600000pt;}
.y13{bottom:695.600000pt;}
.y12{bottom:717.626667pt;}
.y3d{bottom:718.626667pt;}
.y11{bottom:740.666667pt;}
.y3c{bottom:741.666667pt;}
.y10{bottom:763.666667pt;}
.y3b{bottom:764.666667pt;}
.y39{bottom:783.706667pt;}
.yf{bottom:786.706667pt;}
.ye{bottom:809.733333pt;}
.yd{bottom:832.733333pt;}
.y37{bottom:833.733333pt;}
.yc{bottom:855.773333pt;}
.yb{bottom:878.773333pt;}
.y34{bottom:883.800000pt;}
.ya{bottom:901.800000pt;}
.y9{bottom:924.840000pt;}
.y32{bottom:933.840000pt;}
.y8{bottom:947.840000pt;}
.y7{bottom:970.866667pt;}
.y31{bottom:983.866667pt;}
.y6{bottom:993.866667pt;}
.y3{bottom:1025.893333pt;}
.y2{bottom:1043.933333pt;}
.y1{bottom:1061.933333pt;}
.hc{height:23.000000pt;}
.hd{height:23.033333pt;}
.hf{height:46.020000pt;}
.he{height:46.033333pt;}
.ha{height:47.480469pt;}
.h5{height:47.978516pt;}
.h8{height:49.705078pt;}
.hb{height:53.447806pt;}
.h2{height:59.677734pt;}
.h3{height:60.468750pt;}
.h7{height:66.705078pt;}
.h9{height:66.738281pt;}
.h6{height:68.531250pt;}
.h10{height:69.893285pt;}
.h11{height:74.720703pt;}
.h12{height:76.728125pt;}
.h4{height:94.349609pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w2{width:105.133333pt;}
.w4{width:240.306667pt;}
.w3{width:296.400000pt;}
.w1{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:1.000000pt;}
.x15{left:19.040000pt;}
.xd{left:20.033333pt;}
.x12{left:24.026667pt;}
.x18{left:25.040000pt;}
.x14{left:26.026667pt;}
.x1a{left:27.026667pt;}
.x11{left:28.026667pt;}
.x1e{left:29.040000pt;}
.x17{left:32.066667pt;}
.x1c{left:35.066667pt;}
.x1d{left:48.066667pt;}
.x10{left:55.066667pt;}
.x16{left:84.093333pt;}
.x19{left:92.133333pt;}
.xc{left:112.133333pt;}
.x1{left:113.133322pt;}
.x13{left:119.173333pt;}
.xb{left:132.166655pt;}
.x5{left:142.159988pt;}
.x2{left:152.199988pt;}
.x6{left:218.266655pt;}
.xe{left:219.266667pt;}
.xa{left:256.333322pt;}
.x9{left:284.359988pt;}
.x8{left:301.373322pt;}
.x7{left:444.559988pt;}
.xf{left:517.666667pt;}
.x3{left:732.933322pt;}
.x4{left:756.959988pt;}
}




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