
    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_a57588b369c87a0a2a4abe8e.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_59686ddebb5001e7be63ab02.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_f67486f69d959eb0c1205619.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_62c14354f4acb5a083aa9218.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_213b63a96b06fe25ba6f6502.woff')format("woff");}.ff5{font-family:ff5;line-height:1.040039;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_3b1ede34638fb1ce1b44961a.woff')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_ea71980e3a09b6f7eff8d744.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_501ee1997853d276c056e075.woff')format("woff");}.ff8{font-family:ff8;line-height:0.758789;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_d87d5a6785498392263a7eec.woff')format("woff");}.ff9{font-family:ff9;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);}
.v4{vertical-align:-87.840000px;}
.v1{vertical-align:-82.800000px;}
.v2{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:9.360000px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.049440px;}
.ls4{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.720000px;}
.ls7{letter-spacing:0.900000px;}
.ls1{letter-spacing:18.540000px;}
.ls8{letter-spacing:21.221280px;}
.ls6{letter-spacing:33.984000px;}
.ls0{letter-spacing:43.200000px;}
.ls5{letter-spacing:1145.856000px;}
.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;}
.ws1{word-spacing:-21.060000px;}
.ws0{word-spacing:-18.000000px;}
.ws3{word-spacing:-13.500000px;}
.ws2{word-spacing:0.000000px;}
._0{margin-left:-1.263600px;}
._1{width:1.776000px;}
._a{width:2.895600px;}
._7{width:4.248000px;}
._6{width:5.544000px;}
._4{width:7.488000px;}
._5{width:8.520000px;}
._1f{width:10.024560px;}
._17{width:11.268720px;}
._16{width:12.467520px;}
._1b{width:13.630320px;}
._10{width:14.657760px;}
._11{width:15.904560px;}
._12{width:17.184960px;}
._13{width:18.280080px;}
._1a{width:19.375200px;}
._25{width:20.848800px;}
._1c{width:22.860720px;}
._b{width:24.192000px;}
._c{width:25.224000px;}
._1d{width:26.253120px;}
._21{width:27.546480px;}
._f{width:28.632000px;}
._e{width:29.952000px;}
._24{width:34.032960px;}
._3{width:35.391600px;}
._d{width:37.824000px;}
._9{width:39.144000px;}
._2{width:41.112000px;}
._8{width:42.384000px;}
._22{width:43.414320px;}
._23{width:45.853680px;}
._14{width:47.427120px;}
._15{width:48.859200px;}
._20{width:49.870080px;}
._1e{width:69.582240px;}
._19{width:73.288800px;}
._18{width:74.383920px;}
._27{width:79.680000px;}
._28{width:81.300000px;}
._29{width:134.928000px;}
._2a{width:135.984000px;}
._26{width:246.744000px;}
.fc4{color:rgb(5,99,193);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y44{bottom:7.020000px;}
.y4d{bottom:7.200000px;}
.y4{bottom:12.240000px;}
.y3{bottom:23.976000px;}
.y50{bottom:30.780000px;}
.y4b{bottom:30.960000px;}
.y48{bottom:31.005000px;}
.y2{bottom:31.176000px;}
.y4a{bottom:54.720000px;}
.y47{bottom:54.765000px;}
.y2f{bottom:68.616000px;}
.y42{bottom:68.796000px;}
.y62{bottom:75.996000px;}
.y46{bottom:78.525000px;}
.y7e{bottom:80.316000px;}
.y41{bottom:92.196000px;}
.y2e{bottom:96.336000px;}
.y7d{bottom:101.016000px;}
.y61{bottom:103.716000px;}
.y7c{bottom:121.716000px;}
.y2d{bottom:124.056000px;}
.y60{bottom:131.436000px;}
.y7b{bottom:145.116000px;}
.y2c{bottom:151.770000px;}
.y5f{bottom:159.330000px;}
.y7a{bottom:165.810000px;}
.y2b{bottom:179.670000px;}
.y79{bottom:186.510000px;}
.y5e{bottom:187.050000px;}
.y78{bottom:207.210000px;}
.y2a{bottom:207.390000px;}
.y5d{bottom:214.770000px;}
.y77{bottom:227.910000px;}
.y29{bottom:235.110000px;}
.y5c{bottom:242.670000px;}
.y76{bottom:248.610000px;}
.y28{bottom:263.010000px;}
.y75{bottom:269.310000px;}
.y5b{bottom:270.390000px;}
.y74{bottom:290.055000px;}
.y27{bottom:290.775000px;}
.y5a{bottom:298.155000px;}
.y73{bottom:313.635000px;}
.y26{bottom:318.495000px;}
.y59{bottom:325.875000px;}
.y72{bottom:334.335000px;}
.y25{bottom:346.215000px;}
.y58{bottom:353.775000px;}
.y71{bottom:355.035000px;}
.y24{bottom:374.115000px;}
.y70{bottom:378.435000px;}
.y57{bottom:381.495000px;}
.y6f{bottom:399.135000px;}
.y23{bottom:401.835000px;}
.y56{bottom:409.215000px;}
.y6e{bottom:419.835000px;}
.y22{bottom:429.555000px;}
.y55{bottom:437.115000px;}
.y9c{bottom:437.295000px;}
.y6d{bottom:440.535000px;}
.y21{bottom:457.275000px;}
.y6c{bottom:461.235000px;}
.y40{bottom:464.475000px;}
.y54{bottom:464.835000px;}
.y9b{bottom:472.935000px;}
.y20{bottom:480.135000px;}
.y6b{bottom:481.935000px;}
.y3f{bottom:492.195000px;}
.y53{bottom:492.555000px;}
.y9a{bottom:493.635000px;}
.y1f{bottom:498.135000px;}
.y99{bottom:514.335000px;}
.y1e{bottom:518.835000px;}
.y52{bottom:520.275000px;}
.y6a{bottom:524.595000px;}
.y3e{bottom:531.975000px;}
.y98{bottom:535.035000px;}
.y1d{bottom:539.535000px;}
.y69{bottom:545.475000px;}
.y51{bottom:548.175000px;}
.y97{bottom:555.735000px;}
.y3d{bottom:559.695000px;}
.y1c{bottom:560.235000px;}
.y4f{bottom:568.545000px;}
.y68{bottom:573.225000px;}
.y96{bottom:576.465000px;}
.y1b{bottom:580.965000px;}
.y3c{bottom:582.945000px;}
.y95{bottom:597.165000px;}
.y67{bottom:600.945000px;}
.y1a{bottom:601.665000px;}
.y4e{bottom:616.785000px;}
.y94{bottom:617.865000px;}
.y19{bottom:622.365000px;}
.y66{bottom:628.845000px;}
.y93{bottom:638.565000px;}
.y18{bottom:643.065000px;}
.y65{bottom:656.565000px;}
.y92{bottom:659.265000px;}
.y17{bottom:663.765000px;}
.y91{bottom:679.965000px;}
.y64{bottom:684.285000px;}
.y16{bottom:684.465000px;}
.y4c{bottom:688.965000px;}
.y90{bottom:700.665000px;}
.y63{bottom:712.005000px;}
.y15{bottom:717.225000px;}
.y8f{bottom:721.365000px;}
.y14{bottom:737.925000px;}
.y3b{bottom:739.905000px;}
.y8e{bottom:742.065000px;}
.y13{bottom:758.625000px;}
.y49{bottom:761.145000px;}
.y8d{bottom:762.765000px;}
.y3a{bottom:767.625000px;}
.y12{bottom:779.325000px;}
.y8c{bottom:783.465000px;}
.y39{bottom:795.345000px;}
.y11{bottom:800.025000px;}
.y8b{bottom:804.165000px;}
.y10{bottom:820.725000px;}
.y38{bottom:823.065000px;}
.y8a{bottom:824.865000px;}
.y45{bottom:833.325000px;}
.yf{bottom:841.425000px;}
.y89{bottom:845.565000px;}
.y37{bottom:851.010000px;}
.ye{bottom:862.170000px;}
.y88{bottom:866.310000px;}
.y36{bottom:878.730000px;}
.yd{bottom:882.870000px;}
.y87{bottom:887.010000px;}
.yc{bottom:903.570000px;}
.y35{bottom:906.450000px;}
.y86{bottom:907.710000px;}
.y85{bottom:928.410000px;}
.y43{bottom:929.310000px;}
.y34{bottom:934.350000px;}
.yb{bottom:944.970000px;}
.y84{bottom:949.110000px;}
.y33{bottom:962.070000px;}
.ya{bottom:965.670000px;}
.y83{bottom:969.630000px;}
.y9{bottom:986.370000px;}
.y32{bottom:989.790000px;}
.y82{bottom:990.330000px;}
.y8{bottom:1007.070000px;}
.y81{bottom:1011.030000px;}
.y31{bottom:1017.510000px;}
.y7{bottom:1027.770000px;}
.y80{bottom:1031.730000px;}
.y30{bottom:1045.410000px;}
.y6{bottom:1049.010000px;}
.y7f{bottom:1052.430000px;}
.y5{bottom:1073.130000px;}
.y1{bottom:1190.160000px;}
.ha{height:23.760000px;}
.h3{height:31.860000px;}
.he{height:47.520000px;}
.hf{height:52.998047px;}
.h9{height:58.819922px;}
.h7{height:59.343750px;}
.h8{height:60.226875px;}
.h6{height:70.628906px;}
.hc{height:70.664062px;}
.hd{height:71.460000px;}
.h5{height:72.562500px;}
.h10{height:74.004654px;}
.h2{height:82.676953px;}
.h4{height:84.898125px;}
.h11{height:86.585445px;}
.hb{height:95.256000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:75.816000px;}
.w4{width:232.950000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:7.740000px;}
.x3{left:22.140000px;}
.x13{left:45.000000px;}
.x15{left:54.720000px;}
.x17{left:79.199987px;}
.x1{left:84.959987px;}
.x11{left:91.974000px;}
.x4{left:97.055987px;}
.xc{left:100.835987px;}
.x18{left:106.235987px;}
.xf{left:108.755987px;}
.xa{left:138.095987px;}
.x10{left:174.809987px;}
.x9{left:315.614987px;}
.x12{left:330.015000px;}
.x5{left:353.054987px;}
.x8{left:364.934987px;}
.x7{left:373.214987px;}
.xd{left:406.694987px;}
.x2{left:409.035000px;}
.x6{left:446.474987px;}
.x14{left:563.685000px;}
.xe{left:741.209987px;}
.xb{left:785.849987px;}
@media print{
.v4{vertical-align:-78.080000pt;}
.v1{vertical-align:-73.600000pt;}
.v2{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:8.320000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.043947pt;}
.ls4{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.640000pt;}
.ls7{letter-spacing:0.800000pt;}
.ls1{letter-spacing:16.480000pt;}
.ls8{letter-spacing:18.863360pt;}
.ls6{letter-spacing:30.208000pt;}
.ls0{letter-spacing:38.400000pt;}
.ls5{letter-spacing:1018.538667pt;}
.ws4{word-spacing:-19.040000pt;}
.ws1{word-spacing:-18.720000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws3{word-spacing:-12.000000pt;}
.ws2{word-spacing:0.000000pt;}
._0{margin-left:-1.123200pt;}
._1{width:1.578667pt;}
._a{width:2.573867pt;}
._7{width:3.776000pt;}
._6{width:4.928000pt;}
._4{width:6.656000pt;}
._5{width:7.573333pt;}
._1f{width:8.910720pt;}
._17{width:10.016640pt;}
._16{width:11.082240pt;}
._1b{width:12.115840pt;}
._10{width:13.029120pt;}
._11{width:14.137387pt;}
._12{width:15.275520pt;}
._13{width:16.248960pt;}
._1a{width:17.222400pt;}
._25{width:18.532267pt;}
._1c{width:20.320640pt;}
._b{width:21.504000pt;}
._c{width:22.421333pt;}
._1d{width:23.336107pt;}
._21{width:24.485760pt;}
._f{width:25.450667pt;}
._e{width:26.624000pt;}
._24{width:30.251520pt;}
._3{width:31.459200pt;}
._d{width:33.621333pt;}
._9{width:34.794667pt;}
._2{width:36.544000pt;}
._8{width:37.674667pt;}
._22{width:38.590507pt;}
._23{width:40.758827pt;}
._14{width:42.157440pt;}
._15{width:43.430400pt;}
._20{width:44.328960pt;}
._1e{width:61.850880pt;}
._19{width:65.145600pt;}
._18{width:66.119040pt;}
._27{width:70.826667pt;}
._28{width:72.266667pt;}
._29{width:119.936000pt;}
._2a{width:120.874667pt;}
._26{width:219.328000pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y44{bottom:6.240000pt;}
.y4d{bottom:6.400000pt;}
.y4{bottom:10.880000pt;}
.y3{bottom:21.312000pt;}
.y50{bottom:27.360000pt;}
.y4b{bottom:27.520000pt;}
.y48{bottom:27.560000pt;}
.y2{bottom:27.712000pt;}
.y4a{bottom:48.640000pt;}
.y47{bottom:48.680000pt;}
.y2f{bottom:60.992000pt;}
.y42{bottom:61.152000pt;}
.y62{bottom:67.552000pt;}
.y46{bottom:69.800000pt;}
.y7e{bottom:71.392000pt;}
.y41{bottom:81.952000pt;}
.y2e{bottom:85.632000pt;}
.y7d{bottom:89.792000pt;}
.y61{bottom:92.192000pt;}
.y7c{bottom:108.192000pt;}
.y2d{bottom:110.272000pt;}
.y60{bottom:116.832000pt;}
.y7b{bottom:128.992000pt;}
.y2c{bottom:134.906667pt;}
.y5f{bottom:141.626667pt;}
.y7a{bottom:147.386667pt;}
.y2b{bottom:159.706667pt;}
.y79{bottom:165.786667pt;}
.y5e{bottom:166.266667pt;}
.y78{bottom:184.186667pt;}
.y2a{bottom:184.346667pt;}
.y5d{bottom:190.906667pt;}
.y77{bottom:202.586667pt;}
.y29{bottom:208.986667pt;}
.y5c{bottom:215.706667pt;}
.y76{bottom:220.986667pt;}
.y28{bottom:233.786667pt;}
.y75{bottom:239.386667pt;}
.y5b{bottom:240.346667pt;}
.y74{bottom:257.826667pt;}
.y27{bottom:258.466667pt;}
.y5a{bottom:265.026667pt;}
.y73{bottom:278.786667pt;}
.y26{bottom:283.106667pt;}
.y59{bottom:289.666667pt;}
.y72{bottom:297.186667pt;}
.y25{bottom:307.746667pt;}
.y58{bottom:314.466667pt;}
.y71{bottom:315.586667pt;}
.y24{bottom:332.546667pt;}
.y70{bottom:336.386667pt;}
.y57{bottom:339.106667pt;}
.y6f{bottom:354.786667pt;}
.y23{bottom:357.186667pt;}
.y56{bottom:363.746667pt;}
.y6e{bottom:373.186667pt;}
.y22{bottom:381.826667pt;}
.y55{bottom:388.546667pt;}
.y9c{bottom:388.706667pt;}
.y6d{bottom:391.586667pt;}
.y21{bottom:406.466667pt;}
.y6c{bottom:409.986667pt;}
.y40{bottom:412.866667pt;}
.y54{bottom:413.186667pt;}
.y9b{bottom:420.386667pt;}
.y20{bottom:426.786667pt;}
.y6b{bottom:428.386667pt;}
.y3f{bottom:437.506667pt;}
.y53{bottom:437.826667pt;}
.y9a{bottom:438.786667pt;}
.y1f{bottom:442.786667pt;}
.y99{bottom:457.186667pt;}
.y1e{bottom:461.186667pt;}
.y52{bottom:462.466667pt;}
.y6a{bottom:466.306667pt;}
.y3e{bottom:472.866667pt;}
.y98{bottom:475.586667pt;}
.y1d{bottom:479.586667pt;}
.y69{bottom:484.866667pt;}
.y51{bottom:487.266667pt;}
.y97{bottom:493.986667pt;}
.y3d{bottom:497.506667pt;}
.y1c{bottom:497.986667pt;}
.y4f{bottom:505.373333pt;}
.y68{bottom:509.533333pt;}
.y96{bottom:512.413333pt;}
.y1b{bottom:516.413333pt;}
.y3c{bottom:518.173333pt;}
.y95{bottom:530.813333pt;}
.y67{bottom:534.173333pt;}
.y1a{bottom:534.813333pt;}
.y4e{bottom:548.253333pt;}
.y94{bottom:549.213333pt;}
.y19{bottom:553.213333pt;}
.y66{bottom:558.973333pt;}
.y93{bottom:567.613333pt;}
.y18{bottom:571.613333pt;}
.y65{bottom:583.613333pt;}
.y92{bottom:586.013333pt;}
.y17{bottom:590.013333pt;}
.y91{bottom:604.413333pt;}
.y64{bottom:608.253333pt;}
.y16{bottom:608.413333pt;}
.y4c{bottom:612.413333pt;}
.y90{bottom:622.813333pt;}
.y63{bottom:632.893333pt;}
.y15{bottom:637.533333pt;}
.y8f{bottom:641.213333pt;}
.y14{bottom:655.933333pt;}
.y3b{bottom:657.693333pt;}
.y8e{bottom:659.613333pt;}
.y13{bottom:674.333333pt;}
.y49{bottom:676.573333pt;}
.y8d{bottom:678.013333pt;}
.y3a{bottom:682.333333pt;}
.y12{bottom:692.733333pt;}
.y8c{bottom:696.413333pt;}
.y39{bottom:706.973333pt;}
.y11{bottom:711.133333pt;}
.y8b{bottom:714.813333pt;}
.y10{bottom:729.533333pt;}
.y38{bottom:731.613333pt;}
.y8a{bottom:733.213333pt;}
.y45{bottom:740.733333pt;}
.yf{bottom:747.933333pt;}
.y89{bottom:751.613333pt;}
.y37{bottom:756.453333pt;}
.ye{bottom:766.373333pt;}
.y88{bottom:770.053333pt;}
.y36{bottom:781.093333pt;}
.yd{bottom:784.773333pt;}
.y87{bottom:788.453333pt;}
.yc{bottom:803.173333pt;}
.y35{bottom:805.733333pt;}
.y86{bottom:806.853333pt;}
.y85{bottom:825.253333pt;}
.y43{bottom:826.053333pt;}
.y34{bottom:830.533333pt;}
.yb{bottom:839.973333pt;}
.y84{bottom:843.653333pt;}
.y33{bottom:855.173333pt;}
.ya{bottom:858.373333pt;}
.y83{bottom:861.893333pt;}
.y9{bottom:876.773333pt;}
.y32{bottom:879.813333pt;}
.y82{bottom:880.293333pt;}
.y8{bottom:895.173333pt;}
.y81{bottom:898.693333pt;}
.y31{bottom:904.453333pt;}
.y7{bottom:913.573333pt;}
.y80{bottom:917.093333pt;}
.y30{bottom:929.253333pt;}
.y6{bottom:932.453333pt;}
.y7f{bottom:935.493333pt;}
.y5{bottom:953.893333pt;}
.y1{bottom:1057.920000pt;}
.ha{height:21.120000pt;}
.h3{height:28.320000pt;}
.he{height:42.240000pt;}
.hf{height:47.109375pt;}
.h9{height:52.284375pt;}
.h7{height:52.750000pt;}
.h8{height:53.535000pt;}
.h6{height:62.781250pt;}
.hc{height:62.812500pt;}
.hd{height:63.520000pt;}
.h5{height:64.500000pt;}
.h10{height:65.781915pt;}
.h2{height:73.490625pt;}
.h4{height:75.465000pt;}
.h11{height:76.964840pt;}
.hb{height:84.672000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:67.392000pt;}
.w4{width:207.066667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:6.880000pt;}
.x3{left:19.680000pt;}
.x13{left:40.000000pt;}
.x15{left:48.640000pt;}
.x17{left:70.399988pt;}
.x1{left:75.519988pt;}
.x11{left:81.754667pt;}
.x4{left:86.271988pt;}
.xc{left:89.631988pt;}
.x18{left:94.431988pt;}
.xf{left:96.671988pt;}
.xa{left:122.751988pt;}
.x10{left:155.386655pt;}
.x9{left:280.546655pt;}
.x12{left:293.346667pt;}
.x5{left:313.826655pt;}
.x8{left:324.386655pt;}
.x7{left:331.746655pt;}
.xd{left:361.506655pt;}
.x2{left:363.586667pt;}
.x6{left:396.866655pt;}
.x14{left:501.053333pt;}
.xe{left:658.853322pt;}
.xb{left:698.533322pt;}
}




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