
    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;}
.ff1{font-family:sans-serif;visibility:hidden;}
.ff2{font-family:sans-serif;visibility:hidden;}
.ff3{font-family:sans-serif;visibility:hidden;}
.ff4{font-family:sans-serif;visibility:hidden;}
.ff5{font-family:sans-serif;visibility:hidden;}
.ff6{font-family:sans-serif;visibility:hidden;}
.ff7{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff8;src:url('chunks/assets/font_b811b23aa397c9935343fb14.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.688000;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_1d68d8ae7ba94ac58f0e372e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.106000;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_15bd6030950a4c67fe7a9b61.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666000;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;}
.ffb{font-family:sans-serif;visibility:hidden;}
.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;}
.v1{vertical-align:81.294000px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.002712px;}
.ls5{letter-spacing:10.541412px;}
.ls4{letter-spacing:10.544700px;}
.ls1{letter-spacing:10.739412px;}
.ls0{letter-spacing:10.742700px;}
.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;}
}
.ws19{word-spacing:-0.065455px;}
.ws7{word-spacing:0.000000px;}
.ws2e{word-spacing:14.596376px;}
.ws1b{word-spacing:15.970922px;}
.ws3a{word-spacing:16.167286px;}
.ws2d{word-spacing:16.756378px;}
.ws2f{word-spacing:17.280014px;}
.ws39{word-spacing:18.654561px;}
.ws4{word-spacing:18.916379px;}
.ws1d{word-spacing:19.701835px;}
.ws18{word-spacing:19.767289px;}
.ws5{word-spacing:19.832744px;}
.ws6{word-spacing:19.963653px;}
.ws34{word-spacing:20.029108px;}
.ws1a{word-spacing:20.421835px;}
.wsb{word-spacing:21.010927px;}
.ws2a{word-spacing:21.338200px;}
.wse{word-spacing:21.665473px;}
.wsc{word-spacing:21.730927px;}
.ws3b{word-spacing:22.123655px;}
.ws1f{word-spacing:22.843655px;}
.ws33{word-spacing:23.040019px;}
.ws36{word-spacing:23.105474px;}
.wsa{word-spacing:23.236383px;}
.ws1{word-spacing:23.384371px;}
.ws2{word-spacing:23.456102px;}
.ws1c{word-spacing:23.498201px;}
.ws21{word-spacing:23.890929px;}
.ws22{word-spacing:24.021838px;}
.ws20{word-spacing:24.087293px;}
.ws29{word-spacing:24.545475px;}
.ws26{word-spacing:24.807293px;}
.ws24{word-spacing:24.872748px;}
.wsf{word-spacing:24.938203px;}
.ws1e{word-spacing:25.003657px;}
.ws31{word-spacing:25.069112px;}
.ws28{word-spacing:25.200021px;}
.ws17{word-spacing:25.330930px;}
.ws16{word-spacing:25.527294px;}
.ws35{word-spacing:26.574568px;}
.ws14{word-spacing:26.899200px;}
.ws25{word-spacing:28.472751px;}
.ws38{word-spacing:28.669115px;}
.ws30{word-spacing:28.800024px;}
.ws27{word-spacing:28.930933px;}
.ws2c{word-spacing:31.221844px;}
.wsd{word-spacing:31.504255px;}
.ws32{word-spacing:31.590332px;}
.ws0{word-spacing:32.330521px;}
.ws37{word-spacing:32.923664px;}
.ws23{word-spacing:33.578210px;}
.ws9{word-spacing:34.298210px;}
.ws2b{word-spacing:35.803666px;}
.ws8{word-spacing:39.469124px;}
.ws11{word-spacing:71.738242px;}
.ws15{word-spacing:74.749153px;}
.ws3{word-spacing:94.684920px;}
.ws12{word-spacing:109.701910px;}
.ws10{word-spacing:134.901931px;}
.ws13{word-spacing:800.313394px;}
._1a{margin-left:-8.312734px;}
._5{margin-left:-7.265461px;}
._0{margin-left:-5.881958px;}
._28{margin-left:-4.712731px;}
._6{margin-left:-3.600003px;}
._2{margin-left:-2.008474px;}
._9{margin-left:-1.006036px;}
._7{width:1.202399px;}
._3{width:2.223667px;}
._2b{width:19.963653px;}
._1b{width:22.667911px;}
._a{width:24.287254px;}
._2a{width:25.396385px;}
._18{width:26.447256px;}
._4{width:27.735710px;}
._c{width:29.445614px;}
._1{width:31.274803px;}
._16{width:33.450898px;}
._27{width:35.149120px;}
._14{width:36.671674px;}
._17{width:38.814578px;}
._15{width:40.499376px;}
._2c{width:42.872763px;}
._29{width:47.912767px;}
._8{width:54.196409px;}
._1d{width:71.717623px;}
._19{width:74.749153px;}
._13{width:80.697600px;}
._b{width:94.684920px;}
._2e{width:104.334632px;}
._f{width:182.053459px;}
._25{width:222.786839px;}
._12{width:224.030477px;}
._2f{width:232.822012px;}
._26{width:271.550516px;}
._2d{width:279.098414px;}
._11{width:287.729466px;}
._24{width:305.083891px;}
._e{width:308.749348px;}
._1f{width:415.767619px;}
._10{width:435.575889px;}
._22{width:501.054963px;}
._23{width:517.025885px;}
._1c{width:546.218637px;}
._1e{width:584.836851px;}
._20{width:608.641706px;}
._21{width:631.309617px;}
._d{width:1044.545126px;}
.fc4{color:transparent;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(255,128,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs2{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y22{bottom:63.168000px;}
.y21{bottom:108.000000px;}
.y20{bottom:128.323500px;}
.y1f{bottom:148.647000px;}
.y65{bottom:159.588000px;}
.y1e{bottom:168.972000px;}
.y64{bottom:179.911500px;}
.y1d{bottom:189.295500px;}
.y63{bottom:211.174500px;}
.y1c{bottom:217.125000px;}
.y42{bottom:225.985500px;}
.y62{bottom:231.498000px;}
.y41{bottom:246.309000px;}
.y1b{bottom:248.013000px;}
.y61{bottom:262.762500px;}
.y40{bottom:280.083000px;}
.y60{bottom:283.086000px;}
.y1a{bottom:290.109000px;}
.y19{bottom:310.432500px;}
.y5f{bottom:313.813500px;}
.y3f{bottom:313.855500px;}
.y18{bottom:341.322000px;}
.y3e{bottom:347.629500px;}
.y5e{bottom:350.337000px;}
.y17{bottom:378.444000px;}
.y3d{bottom:378.519000px;}
.y5d{bottom:400.707000px;}
.y5c{bottom:421.030500px;}
.y3c{bottom:421.734000px;}
.y3b{bottom:442.059000px;}
.y5b{bottom:452.293500px;}
.y16{bottom:454.647000px;}
.y5a{bottom:472.617000px;}
.y3a{bottom:472.948500px;}
.y15{bottom:474.970500px;}
.y14{bottom:495.294000px;}
.y59{bottom:503.881500px;}
.y13{bottom:515.617500px;}
.y39{bottom:516.762000px;}
.y58{bottom:524.205000px;}
.y12{bottom:535.941000px;}
.y38{bottom:537.085500px;}
.y11{bottom:556.266000px;}
.y76{bottom:558.913500px;}
.y57{bottom:560.728500px;}
.y37{bottom:570.858000px;}
.y75{bottom:579.237000px;}
.y10{bottom:584.799000px;}
.y74{bottom:599.560500px;}
.y36{bottom:604.632000px;}
.yf{bottom:609.580500px;}
.y56{bottom:611.098500px;}
.y73{bottom:619.884000px;}
.y55{bottom:631.422000px;}
.y35{bottom:638.404500px;}
.y72{bottom:640.207500px;}
.y54{bottom:662.685000px;}
.ye{bottom:667.551000px;}
.y34{bottom:669.294000px;}
.y71{bottom:676.732500px;}
.y53{bottom:683.010000px;}
.y33{bottom:712.510500px;}
.y52{bottom:714.273000px;}
.yd{bottom:717.981000px;}
.y70{bottom:728.284500px;}
.y51{bottom:734.596500px;}
.yc{bottom:738.306000px;}
.y32{bottom:746.283000px;}
.yb{bottom:758.629500px;}
.y6f{bottom:762.057000px;}
.y50{bottom:765.861000px;}
.ya{bottom:778.953000px;}
.y31{bottom:780.057000px;}
.y4f{bottom:786.184500px;}
.y6e{bottom:795.831000px;}
.y9{bottom:799.276500px;}
.y30{bottom:813.831000px;}
.y4e{bottom:817.447500px;}
.y8{bottom:819.600000px;}
.y6d{bottom:829.605000px;}
.y4d{bottom:837.771000px;}
.y7{bottom:839.925000px;}
.y2f{bottom:847.603500px;}
.y6{bottom:860.248500px;}
.y6c{bottom:867.861000px;}
.y4c{bottom:868.498500px;}
.y2e{bottom:878.493000px;}
.y5{bottom:896.772000px;}
.y6b{bottom:904.384500px;}
.y4b{bottom:905.023500px;}
.y2d{bottom:921.709500px;}
.y2c{bottom:942.033000px;}
.y4a{bottom:942.487500px;}
.y4{bottom:958.003500px;}
.y2b{bottom:962.356500px;}
.y6a{bottom:979.903500px;}
.y2a{bottom:982.680000px;}
.y49{bottom:994.011000px;}
.y3{bottom:994.597500px;}
.y69{bottom:1000.227000px;}
.y29{bottom:1003.003500px;}
.y48{bottom:1014.334500px;}
.y68{bottom:1020.550500px;}
.y28{bottom:1023.328500px;}
.y47{bottom:1034.658000px;}
.y2{bottom:1039.926000px;}
.y27{bottom:1043.652000px;}
.y67{bottom:1049.083500px;}
.y46{bottom:1054.981500px;}
.y26{bottom:1063.975500px;}
.y1{bottom:1072.978500px;}
.y66{bottom:1073.866500px;}
.y45{bottom:1075.305000px;}
.y25{bottom:1084.299000px;}
.y44{bottom:1103.838000px;}
.y24{bottom:1104.622500px;}
.y43{bottom:1128.621000px;}
.y23{bottom:1138.396500px;}
.h7{height:43.592764px;}
.h5{height:62.181870px;}
.h3{height:68.144640px;}
.h4{height:81.773340px;}
.h2{height:98.127780px;}
.h6{height:143.475870px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:108.000000px;}
.x1b{left:128.070000px;}
.x6{left:133.404000px;}
.xf{left:148.909500px;}
.x9{left:161.985000px;}
.x17{left:163.101000px;}
.x27{left:182.379000px;}
.xc{left:215.679000px;}
.x2{left:222.837000px;}
.xd{left:225.627000px;}
.x29{left:238.176000px;}
.x7{left:258.331500px;}
.x13{left:264.217500px;}
.x15{left:267.000000px;}
.xe{left:268.650000px;}
.x1f{left:271.684500px;}
.x8{left:275.172000px;}
.x1a{left:287.086500px;}
.x20{left:300.583500px;}
.x16{left:305.635500px;}
.x1d{left:306.939000px;}
.x3{left:315.355500px;}
.x1{left:323.575500px;}
.x1c{left:335.004000px;}
.x26{left:358.908000px;}
.x28{left:370.375500px;}
.x24{left:383.395500px;}
.x18{left:386.131500px;}
.x4{left:388.063500px;}
.x22{left:395.814000px;}
.x19{left:398.859000px;}
.x25{left:415.501500px;}
.x21{left:429.154500px;}
.x1e{left:435.610500px;}
.x12{left:442.389000px;}
.x23{left:489.793500px;}
.x10{left:538.858500px;}
.x2a{left:573.379500px;}
.x11{left:620.091000px;}
.xb{left:635.560500px;}
.xa{left:650.181000px;}
.x14{left:701.424000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:72.261333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.002411pt;}
.ls5{letter-spacing:9.370144pt;}
.ls4{letter-spacing:9.373067pt;}
.ls1{letter-spacing:9.546144pt;}
.ls0{letter-spacing:9.549067pt;}
.ws19{word-spacing:-0.058182pt;}
.ws7{word-spacing:0.000000pt;}
.ws2e{word-spacing:12.974556pt;}
.ws1b{word-spacing:14.196375pt;}
.ws3a{word-spacing:14.370921pt;}
.ws2d{word-spacing:14.894558pt;}
.ws2f{word-spacing:15.360013pt;}
.ws39{word-spacing:16.581832pt;}
.ws4{word-spacing:16.814559pt;}
.ws1d{word-spacing:17.512742pt;}
.ws18{word-spacing:17.570924pt;}
.ws5{word-spacing:17.629106pt;}
.ws6{word-spacing:17.745469pt;}
.ws34{word-spacing:17.803651pt;}
.ws1a{word-spacing:18.152742pt;}
.wsb{word-spacing:18.676379pt;}
.ws2a{word-spacing:18.967289pt;}
.wse{word-spacing:19.258198pt;}
.wsc{word-spacing:19.316380pt;}
.ws3b{word-spacing:19.665471pt;}
.ws1f{word-spacing:20.305471pt;}
.ws33{word-spacing:20.480017pt;}
.ws36{word-spacing:20.538199pt;}
.wsa{word-spacing:20.654563pt;}
.ws1{word-spacing:20.786108pt;}
.ws2{word-spacing:20.849869pt;}
.ws1c{word-spacing:20.887290pt;}
.ws21{word-spacing:21.236381pt;}
.ws22{word-spacing:21.352745pt;}
.ws20{word-spacing:21.410927pt;}
.ws29{word-spacing:21.818200pt;}
.ws26{word-spacing:22.050927pt;}
.ws24{word-spacing:22.109109pt;}
.wsf{word-spacing:22.167291pt;}
.ws1e{word-spacing:22.225473pt;}
.ws31{word-spacing:22.283655pt;}
.ws28{word-spacing:22.400019pt;}
.ws17{word-spacing:22.516382pt;}
.ws16{word-spacing:22.690928pt;}
.ws35{word-spacing:23.621838pt;}
.ws14{word-spacing:23.910400pt;}
.ws25{word-spacing:25.309112pt;}
.ws38{word-spacing:25.483658pt;}
.ws30{word-spacing:25.600021pt;}
.ws27{word-spacing:25.716385pt;}
.ws2c{word-spacing:27.752750pt;}
.wsd{word-spacing:28.003782pt;}
.ws32{word-spacing:28.080295pt;}
.ws0{word-spacing:28.738241pt;}
.ws37{word-spacing:29.265479pt;}
.ws23{word-spacing:29.847298pt;}
.ws9{word-spacing:30.487298pt;}
.ws2b{word-spacing:31.825481pt;}
.ws8{word-spacing:35.083666pt;}
.ws11{word-spacing:63.767326pt;}
.ws15{word-spacing:66.443692pt;}
.ws3{word-spacing:84.164373pt;}
.ws12{word-spacing:97.512809pt;}
.ws10{word-spacing:119.912827pt;}
.ws13{word-spacing:711.389684pt;}
._1a{margin-left:-7.389097pt;}
._5{margin-left:-6.458187pt;}
._0{margin-left:-5.228407pt;}
._28{margin-left:-4.189094pt;}
._6{margin-left:-3.200003pt;}
._2{margin-left:-1.785310pt;}
._9{margin-left:-0.894254pt;}
._7{width:1.068799pt;}
._3{width:1.976593pt;}
._2b{width:17.745469pt;}
._1b{width:20.149254pt;}
._a{width:21.588670pt;}
._2a{width:22.574564pt;}
._18{width:23.508672pt;}
._4{width:24.653964pt;}
._c{width:26.173879pt;}
._1{width:27.799825pt;}
._16{width:29.734132pt;}
._27{width:31.243662pt;}
._14{width:32.597044pt;}
._17{width:34.501847pt;}
._15{width:35.999445pt;}
._2c{width:38.109123pt;}
._29{width:42.589126pt;}
._8{width:48.174586pt;}
._1d{width:63.748998pt;}
._19{width:66.443692pt;}
._13{width:71.731200pt;}
._b{width:84.164373pt;}
._2e{width:92.741895pt;}
._f{width:161.825297pt;}
._25{width:198.032746pt;}
._12{width:199.138202pt;}
._2f{width:206.952900pt;}
._26{width:241.378237pt;}
._2d{width:248.087479pt;}
._11{width:255.759525pt;}
._24{width:271.185681pt;}
._e{width:274.443865pt;}
._1f{width:369.571217pt;}
._10{width:387.178568pt;}
._22{width:445.382189pt;}
._23{width:459.578565pt;}
._1c{width:485.527677pt;}
._1e{width:519.854979pt;}
._20{width:541.014850pt;}
._21{width:561.164104pt;}
._d{width:928.484556pt;}
.fs3{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs2{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:56.149333pt;}
.y21{bottom:96.000000pt;}
.y20{bottom:114.065333pt;}
.y1f{bottom:132.130667pt;}
.y65{bottom:141.856000pt;}
.y1e{bottom:150.197333pt;}
.y64{bottom:159.921333pt;}
.y1d{bottom:168.262667pt;}
.y63{bottom:187.710667pt;}
.y1c{bottom:193.000000pt;}
.y42{bottom:200.876000pt;}
.y62{bottom:205.776000pt;}
.y41{bottom:218.941333pt;}
.y1b{bottom:220.456000pt;}
.y61{bottom:233.566667pt;}
.y40{bottom:248.962667pt;}
.y60{bottom:251.632000pt;}
.y1a{bottom:257.874667pt;}
.y19{bottom:275.940000pt;}
.y5f{bottom:278.945333pt;}
.y3f{bottom:278.982667pt;}
.y18{bottom:303.397333pt;}
.y3e{bottom:309.004000pt;}
.y5e{bottom:311.410667pt;}
.y17{bottom:336.394667pt;}
.y3d{bottom:336.461333pt;}
.y5d{bottom:356.184000pt;}
.y5c{bottom:374.249333pt;}
.y3c{bottom:374.874667pt;}
.y3b{bottom:392.941333pt;}
.y5b{bottom:402.038667pt;}
.y16{bottom:404.130667pt;}
.y5a{bottom:420.104000pt;}
.y3a{bottom:420.398667pt;}
.y15{bottom:422.196000pt;}
.y14{bottom:440.261333pt;}
.y59{bottom:447.894667pt;}
.y13{bottom:458.326667pt;}
.y39{bottom:459.344000pt;}
.y58{bottom:465.960000pt;}
.y12{bottom:476.392000pt;}
.y38{bottom:477.409333pt;}
.y11{bottom:494.458667pt;}
.y76{bottom:496.812000pt;}
.y57{bottom:498.425333pt;}
.y37{bottom:507.429333pt;}
.y75{bottom:514.877333pt;}
.y10{bottom:519.821333pt;}
.y74{bottom:532.942667pt;}
.y36{bottom:537.450667pt;}
.yf{bottom:541.849333pt;}
.y56{bottom:543.198667pt;}
.y73{bottom:551.008000pt;}
.y55{bottom:561.264000pt;}
.y35{bottom:567.470667pt;}
.y72{bottom:569.073333pt;}
.y54{bottom:589.053333pt;}
.ye{bottom:593.378667pt;}
.y34{bottom:594.928000pt;}
.y71{bottom:601.540000pt;}
.y53{bottom:607.120000pt;}
.y33{bottom:633.342667pt;}
.y52{bottom:634.909333pt;}
.yd{bottom:638.205333pt;}
.y70{bottom:647.364000pt;}
.y51{bottom:652.974667pt;}
.yc{bottom:656.272000pt;}
.y32{bottom:663.362667pt;}
.yb{bottom:674.337333pt;}
.y6f{bottom:677.384000pt;}
.y50{bottom:680.765333pt;}
.ya{bottom:692.402667pt;}
.y31{bottom:693.384000pt;}
.y4f{bottom:698.830667pt;}
.y6e{bottom:707.405333pt;}
.y9{bottom:710.468000pt;}
.y30{bottom:723.405333pt;}
.y4e{bottom:726.620000pt;}
.y8{bottom:728.533333pt;}
.y6d{bottom:737.426667pt;}
.y4d{bottom:744.685333pt;}
.y7{bottom:746.600000pt;}
.y2f{bottom:753.425333pt;}
.y6{bottom:764.665333pt;}
.y6c{bottom:771.432000pt;}
.y4c{bottom:771.998667pt;}
.y2e{bottom:780.882667pt;}
.y5{bottom:797.130667pt;}
.y6b{bottom:803.897333pt;}
.y4b{bottom:804.465333pt;}
.y2d{bottom:819.297333pt;}
.y2c{bottom:837.362667pt;}
.y4a{bottom:837.766667pt;}
.y4{bottom:851.558667pt;}
.y2b{bottom:855.428000pt;}
.y6a{bottom:871.025333pt;}
.y2a{bottom:873.493333pt;}
.y49{bottom:883.565333pt;}
.y3{bottom:884.086667pt;}
.y69{bottom:889.090667pt;}
.y29{bottom:891.558667pt;}
.y48{bottom:901.630667pt;}
.y68{bottom:907.156000pt;}
.y28{bottom:909.625333pt;}
.y47{bottom:919.696000pt;}
.y2{bottom:924.378667pt;}
.y27{bottom:927.690667pt;}
.y67{bottom:932.518667pt;}
.y46{bottom:937.761333pt;}
.y26{bottom:945.756000pt;}
.y1{bottom:953.758667pt;}
.y66{bottom:954.548000pt;}
.y45{bottom:955.826667pt;}
.y25{bottom:963.821333pt;}
.y44{bottom:981.189333pt;}
.y24{bottom:981.886667pt;}
.y43{bottom:1003.218667pt;}
.y23{bottom:1011.908000pt;}
.h7{height:38.749123pt;}
.h5{height:55.272773pt;}
.h3{height:60.573013pt;}
.h4{height:72.687413pt;}
.h2{height:87.224693pt;}
.h6{height:127.534107pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:96.000000pt;}
.x1b{left:113.840000pt;}
.x6{left:118.581333pt;}
.xf{left:132.364000pt;}
.x9{left:143.986667pt;}
.x17{left:144.978667pt;}
.x27{left:162.114667pt;}
.xc{left:191.714667pt;}
.x2{left:198.077333pt;}
.xd{left:200.557333pt;}
.x29{left:211.712000pt;}
.x7{left:229.628000pt;}
.x13{left:234.860000pt;}
.x15{left:237.333333pt;}
.xe{left:238.800000pt;}
.x1f{left:241.497333pt;}
.x8{left:244.597333pt;}
.x1a{left:255.188000pt;}
.x20{left:267.185333pt;}
.x16{left:271.676000pt;}
.x1d{left:272.834667pt;}
.x3{left:280.316000pt;}
.x1{left:287.622667pt;}
.x1c{left:297.781333pt;}
.x26{left:319.029333pt;}
.x28{left:329.222667pt;}
.x24{left:340.796000pt;}
.x18{left:343.228000pt;}
.x4{left:344.945333pt;}
.x22{left:351.834667pt;}
.x19{left:354.541333pt;}
.x25{left:369.334667pt;}
.x21{left:381.470667pt;}
.x1e{left:387.209333pt;}
.x12{left:393.234667pt;}
.x23{left:435.372000pt;}
.x10{left:478.985333pt;}
.x2a{left:509.670667pt;}
.x11{left:551.192000pt;}
.xb{left:564.942667pt;}
.xa{left:577.938667pt;}
.x14{left:623.488000pt;}
}




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