
    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_ad506f1c1ef45337e7342ced.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.911000;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_96f878f08197e1ba96f72b68.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_2fff7c50a0f1226d4c376aae.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.918000;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_f7454d5099bb213435b616bd.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.430000;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_30663cdfe00218b0fed9bc0f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.898000;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_5a9e110cf222fa6cffbda45f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_12e85faa13de3f9061d0fb71.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.901000;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_689c3149a464fed5f07788bf.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.430000;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_e38a5aa77e9124f05cf66dce.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.911000;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_a925009be2d0809d6f23b470.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.898000;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:ffb;src:url('chunks/assets/font_de76cee7dadcad4838fe7ac9.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;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:ffc;src:url('chunks/assets/font_65cbcef72cbf210898cf4add.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000000;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:ffd;src:url('chunks/assets/font_ac9b0243430ceea725e3da6c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.921000;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:ffe;src:url('chunks/assets/font_9bb3784a25fd22aba4e103f5.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.923000;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);}
.v2{vertical-align:-22.854000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:26.028000px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.049058px;}
.ls5{letter-spacing:0.055058px;}
.ls0{letter-spacing:2.988532px;}
.ls4{letter-spacing:18.235058px;}
.ls2{letter-spacing:21.871058px;}
.ls3{letter-spacing:32.729412px;}
.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;}
}
.ws37{word-spacing:-32.727300px;}
.ws16{word-spacing:-17.410924px;}
.ws30{word-spacing:-16.756378px;}
.ws0{word-spacing:-16.175590px;}
.ws2c{word-spacing:-15.970922px;}
.ws2a{word-spacing:-15.905468px;}
.ws38{word-spacing:-14.465467px;}
.ws34{word-spacing:-14.007284px;}
.ws20{word-spacing:-13.941830px;}
.ws3a{word-spacing:-13.745466px;}
.ws18{word-spacing:-13.680011px;}
.ws28{word-spacing:-13.483648px;}
.ws21{word-spacing:-12.894556px;}
.ws2e{word-spacing:-12.829102px;}
.ws2d{word-spacing:-12.786756px;}
.ws17{word-spacing:-12.632738px;}
.ws36{word-spacing:-11.978192px;}
.ws3e{word-spacing:-11.781828px;}
.ws26{word-spacing:-11.389100px;}
.ws8{word-spacing:-11.258191px;}
.ws35{word-spacing:-11.061827px;}
.wsa{word-spacing:-10.930918px;}
.ws3b{word-spacing:-10.913688px;}
.ws2f{word-spacing:-10.865464px;}
.ws12{word-spacing:-10.819384px;}
.wse{word-spacing:-10.759608px;}
.ws25{word-spacing:-10.734554px;}
.wsf{word-spacing:-10.640057px;}
.ws9{word-spacing:-10.341827px;}
.wsb{word-spacing:-10.221628px;}
.ws10{word-spacing:-9.982525px;}
.ws1b{word-spacing:-9.621826px;}
.ws3c{word-spacing:-8.509098px;}
.ws22{word-spacing:-7.658188px;}
.wsd{word-spacing:-6.874194px;}
.ws24{word-spacing:-5.825459px;}
.ws31{word-spacing:-5.629096px;}
.ws1f{word-spacing:-5.563641px;}
.ws32{word-spacing:-5.367277px;}
.ws15{word-spacing:-4.843640px;}
.wsc{word-spacing:-4.542946px;}
.ws1a{word-spacing:-3.730912px;}
.ws19{word-spacing:-3.403639px;}
.ws33{word-spacing:-3.338185px;}
.ws27{word-spacing:-3.272730px;}
.ws2{word-spacing:-2.981520px;}
.ws4{word-spacing:-2.976480px;}
.ws5{word-spacing:-2.972876px;}
.ws14{word-spacing:-1.767274px;}
.ws1{word-spacing:-0.071731px;}
.ws3f{word-spacing:-0.065455px;}
.ws1d{word-spacing:0.000000px;}
.ws2b{word-spacing:16.702279px;}
.ws23{word-spacing:18.130924px;}
.ws1c{word-spacing:18.399053px;}
.ws39{word-spacing:20.094562px;}
.ws29{word-spacing:22.058200px;}
.ws3{word-spacing:23.312640px;}
.ws6{word-spacing:23.384371px;}
.ws3d{word-spacing:25.592749px;}
.ws11{word-spacing:26.100333px;}
.ws7{word-spacing:28.842394px;}
.ws1e{word-spacing:32.192873px;}
.ws13{word-spacing:96.750773px;}
._0{margin-left:-8.160100px;}
._13{margin-left:-6.410623px;}
._1{margin-left:-5.371205px;}
._a{margin-left:-4.354823px;}
._2{margin-left:-2.685602px;}
._5{margin-left:-1.187882px;}
._6{width:1.767274px;}
._4{width:2.788895px;}
._11{width:15.776522px;}
._10{width:17.740160px;}
._7{width:20.439390px;}
._12{width:22.387437px;}
._9{width:25.679650px;}
._f{width:28.355469px;}
._c{width:29.520025px;}
._8{width:31.558936px;}
._14{width:32.727300px;}
._3{width:41.936714px;}
._b{width:48.049568px;}
._d{width:51.645643px;}
._e{width:96.836850px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:35.865600px;}
.fs2{font-size:47.820600px;}
.fs7{font-size:53.798400px;}
.fs4{font-size:59.775600px;}
.fs3{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs5{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y22{bottom:63.168000px;}
.y45{bottom:108.000000px;}
.y21{bottom:117.271500px;}
.y44{bottom:132.652500px;}
.y20{bottom:141.190500px;}
.y43{bottom:157.305000px;}
.y1f{bottom:165.843000px;}
.y42{bottom:181.959000px;}
.y1e{bottom:190.495500px;}
.y41{bottom:206.611500px;}
.y1d{bottom:215.148000px;}
.y1c{bottom:239.802000px;}
.y40{bottom:247.464000px;}
.y1b{bottom:264.454500px;}
.y1a{bottom:289.107000px;}
.y3f{bottom:304.146000px;}
.y19{bottom:313.759500px;}
.y3e{bottom:328.800000px;}
.y18{bottom:338.412000px;}
.y17{bottom:363.064500px;}
.y3d{bottom:363.724500px;}
.y3c{bottom:388.377000px;}
.y16{bottom:403.918500px;}
.y3b{bottom:413.029500px;}
.y3a{bottom:449.860500px;}
.y15{bottom:461.199000px;}
.y14{bottom:482.952000px;}
.y39{bottom:484.786500px;}
.y13{bottom:504.703500px;}
.y38{bottom:509.439000px;}
.y12{bottom:526.456500px;}
.y37{bottom:534.091500px;}
.y11{bottom:548.209500px;}
.y36{bottom:558.744000px;}
.y10{bottom:569.961000px;}
.y35{bottom:583.396500px;}
.yf{bottom:591.714000px;}
.y34{bottom:608.049000px;}
.ye{bottom:613.465500px;}
.y33{bottom:632.701500px;}
.yd{bottom:635.218500px;}
.yc{bottom:666.310500px;}
.y32{bottom:673.555500px;}
.yb{bottom:705.996000px;}
.y31{bottom:730.237500px;}
.ya{bottom:730.648500px;}
.y30{bottom:754.890000px;}
.y9{bottom:755.301000px;}
.y2f{bottom:779.544000px;}
.y2e{bottom:804.196500px;}
.y2d{bottom:828.849000px;}
.y8{bottom:837.376500px;}
.y2c{bottom:853.501500px;}
.y7{bottom:862.029000px;}
.y2b{bottom:892.273500px;}
.y6{bottom:899.854500px;}
.y4d{bottom:903.549000px;}
.y2a{bottom:916.926000px;}
.y5{bottom:925.231500px;}
.y4c{bottom:928.201500px;}
.y29{bottom:941.580000px;}
.y4{bottom:950.610000px;}
.y4b{bottom:966.303000px;}
.y3{bottom:975.987000px;}
.y28{bottom:978.411000px;}
.y4a{bottom:990.955500px;}
.y27{bottom:1017.183000px;}
.y2{bottom:1025.910000px;}
.y49{bottom:1031.809500px;}
.y26{bottom:1041.835500px;}
.y1{bottom:1065.789000px;}
.y25{bottom:1066.489500px;}
.y48{bottom:1089.091500px;}
.y24{bottom:1091.142000px;}
.y47{bottom:1113.744000px;}
.y23{bottom:1131.994500px;}
.y46{bottom:1138.396500px;}
.h8{height:16.713370px;}
.h5{height:41.723369px;}
.h6{height:44.831700px;}
.h4{height:49.090950px;}
.h3{height:53.798400px;}
.h7{height:60.254040px;}
.h2{height:73.027727px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:108.000000px;}
.xe{left:126.655500px;}
.x10{left:127.999500px;}
.xd{left:133.405500px;}
.x1{left:144.006000px;}
.xc{left:148.909500px;}
.x2{left:155.181000px;}
.xb{left:171.325500px;}
.x4{left:257.715000px;}
.x6{left:309.108000px;}
.x5{left:323.337000px;}
.x7{left:373.905000px;}
.x3{left:393.321000px;}
.x8{left:403.977000px;}
.xa{left:413.580000px;}
.xf{left:442.366500px;}
@media print{
.v2{vertical-align:-20.314667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.136000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.043607pt;}
.ls5{letter-spacing:0.048940pt;}
.ls0{letter-spacing:2.656473pt;}
.ls4{letter-spacing:16.208940pt;}
.ls2{letter-spacing:19.440940pt;}
.ls3{letter-spacing:29.092811pt;}
.ws37{word-spacing:-29.090933pt;}
.ws16{word-spacing:-15.476377pt;}
.ws30{word-spacing:-14.894558pt;}
.ws0{word-spacing:-14.378302pt;}
.ws2c{word-spacing:-14.196375pt;}
.ws2a{word-spacing:-14.138194pt;}
.ws38{word-spacing:-12.858193pt;}
.ws34{word-spacing:-12.450919pt;}
.ws20{word-spacing:-12.392738pt;}
.ws3a{word-spacing:-12.218192pt;}
.ws18{word-spacing:-12.160010pt;}
.ws28{word-spacing:-11.985465pt;}
.ws21{word-spacing:-11.461828pt;}
.ws2e{word-spacing:-11.403646pt;}
.ws2d{word-spacing:-11.366005pt;}
.ws17{word-spacing:-11.229100pt;}
.ws36{word-spacing:-10.647282pt;}
.ws3e{word-spacing:-10.472736pt;}
.ws26{word-spacing:-10.123645pt;}
.ws8{word-spacing:-10.007281pt;}
.ws35{word-spacing:-9.832735pt;}
.wsa{word-spacing:-9.716372pt;}
.ws3b{word-spacing:-9.701056pt;}
.ws2f{word-spacing:-9.658190pt;}
.ws12{word-spacing:-9.617230pt;}
.wse{word-spacing:-9.564096pt;}
.ws25{word-spacing:-9.541826pt;}
.wsf{word-spacing:-9.457828pt;}
.ws9{word-spacing:-9.192735pt;}
.wsb{word-spacing:-9.085891pt;}
.ws10{word-spacing:-8.873356pt;}
.ws1b{word-spacing:-8.552734pt;}
.ws3c{word-spacing:-7.563643pt;}
.ws22{word-spacing:-6.807278pt;}
.wsd{word-spacing:-6.110395pt;}
.ws24{word-spacing:-5.178186pt;}
.ws31{word-spacing:-5.003641pt;}
.ws1f{word-spacing:-4.945459pt;}
.ws32{word-spacing:-4.770913pt;}
.ws15{word-spacing:-4.305458pt;}
.wsc{word-spacing:-4.038174pt;}
.ws1a{word-spacing:-3.316366pt;}
.ws19{word-spacing:-3.025457pt;}
.ws33{word-spacing:-2.967275pt;}
.ws27{word-spacing:-2.909093pt;}
.ws2{word-spacing:-2.650240pt;}
.ws4{word-spacing:-2.645760pt;}
.ws5{word-spacing:-2.642557pt;}
.ws14{word-spacing:-1.570910pt;}
.ws1{word-spacing:-0.063761pt;}
.ws3f{word-spacing:-0.058182pt;}
.ws1d{word-spacing:0.000000pt;}
.ws2b{word-spacing:14.846470pt;}
.ws23{word-spacing:16.116377pt;}
.ws1c{word-spacing:16.354714pt;}
.ws39{word-spacing:17.861833pt;}
.ws29{word-spacing:19.607289pt;}
.ws3{word-spacing:20.722347pt;}
.ws6{word-spacing:20.786108pt;}
.ws3d{word-spacing:22.749110pt;}
.ws11{word-spacing:23.200296pt;}
.ws7{word-spacing:25.637684pt;}
.ws1e{word-spacing:28.615887pt;}
.ws13{word-spacing:86.000687pt;}
._0{margin-left:-7.253422pt;}
._13{margin-left:-5.698332pt;}
._1{margin-left:-4.774404pt;}
._a{margin-left:-3.870954pt;}
._2{margin-left:-2.387202pt;}
._5{margin-left:-1.055895pt;}
._6{width:1.570910pt;}
._4{width:2.479018pt;}
._11{width:14.023575pt;}
._10{width:15.769031pt;}
._7{width:18.168347pt;}
._12{width:19.899944pt;}
._9{width:22.826355pt;}
._f{width:25.204861pt;}
._c{width:26.240022pt;}
._8{width:28.052388pt;}
._14{width:29.090933pt;}
._3{width:37.277079pt;}
._b{width:42.710727pt;}
._d{width:45.907238pt;}
._e{width:86.077200pt;}
.fs6{font-size:31.880533pt;}
.fs2{font-size:42.507200pt;}
.fs7{font-size:47.820800pt;}
.fs4{font-size:53.133867pt;}
.fs3{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs5{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:56.149333pt;}
.y45{bottom:96.000000pt;}
.y21{bottom:104.241333pt;}
.y44{bottom:117.913333pt;}
.y20{bottom:125.502667pt;}
.y43{bottom:139.826667pt;}
.y1f{bottom:147.416000pt;}
.y42{bottom:161.741333pt;}
.y1e{bottom:169.329333pt;}
.y41{bottom:183.654667pt;}
.y1d{bottom:191.242667pt;}
.y1c{bottom:213.157333pt;}
.y40{bottom:219.968000pt;}
.y1b{bottom:235.070667pt;}
.y1a{bottom:256.984000pt;}
.y3f{bottom:270.352000pt;}
.y19{bottom:278.897333pt;}
.y3e{bottom:292.266667pt;}
.y18{bottom:300.810667pt;}
.y17{bottom:322.724000pt;}
.y3d{bottom:323.310667pt;}
.y3c{bottom:345.224000pt;}
.y16{bottom:359.038667pt;}
.y3b{bottom:367.137333pt;}
.y3a{bottom:399.876000pt;}
.y15{bottom:409.954667pt;}
.y14{bottom:429.290667pt;}
.y39{bottom:430.921333pt;}
.y13{bottom:448.625333pt;}
.y38{bottom:452.834667pt;}
.y12{bottom:467.961333pt;}
.y37{bottom:474.748000pt;}
.y11{bottom:487.297333pt;}
.y36{bottom:496.661333pt;}
.y10{bottom:506.632000pt;}
.y35{bottom:518.574667pt;}
.yf{bottom:525.968000pt;}
.y34{bottom:540.488000pt;}
.ye{bottom:545.302667pt;}
.y33{bottom:562.401333pt;}
.yd{bottom:564.638667pt;}
.yc{bottom:592.276000pt;}
.y32{bottom:598.716000pt;}
.yb{bottom:627.552000pt;}
.y31{bottom:649.100000pt;}
.ya{bottom:649.465333pt;}
.y30{bottom:671.013333pt;}
.y9{bottom:671.378667pt;}
.y2f{bottom:692.928000pt;}
.y2e{bottom:714.841333pt;}
.y2d{bottom:736.754667pt;}
.y8{bottom:744.334667pt;}
.y2c{bottom:758.668000pt;}
.y7{bottom:766.248000pt;}
.y2b{bottom:793.132000pt;}
.y6{bottom:799.870667pt;}
.y4d{bottom:803.154667pt;}
.y2a{bottom:815.045333pt;}
.y5{bottom:822.428000pt;}
.y4c{bottom:825.068000pt;}
.y29{bottom:836.960000pt;}
.y4{bottom:844.986667pt;}
.y4b{bottom:858.936000pt;}
.y3{bottom:867.544000pt;}
.y28{bottom:869.698667pt;}
.y4a{bottom:880.849333pt;}
.y27{bottom:904.162667pt;}
.y2{bottom:911.920000pt;}
.y49{bottom:917.164000pt;}
.y26{bottom:926.076000pt;}
.y1{bottom:947.368000pt;}
.y25{bottom:947.990667pt;}
.y48{bottom:968.081333pt;}
.y24{bottom:969.904000pt;}
.y47{bottom:989.994667pt;}
.y23{bottom:1006.217333pt;}
.y46{bottom:1011.908000pt;}
.h8{height:14.856329pt;}
.h5{height:37.087439pt;}
.h6{height:39.850400pt;}
.h4{height:43.636400pt;}
.h3{height:47.820800pt;}
.h7{height:53.559147pt;}
.h2{height:64.913535pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:96.000000pt;}
.xe{left:112.582667pt;}
.x10{left:113.777333pt;}
.xd{left:118.582667pt;}
.x1{left:128.005333pt;}
.xc{left:132.364000pt;}
.x2{left:137.938667pt;}
.xb{left:152.289333pt;}
.x4{left:229.080000pt;}
.x6{left:274.762667pt;}
.x5{left:287.410667pt;}
.x7{left:332.360000pt;}
.x3{left:349.618667pt;}
.x8{left:359.090667pt;}
.xa{left:367.626667pt;}
.xf{left:393.214667pt;}
}




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