
    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_5f42ff9ff91c3b4d28e24323.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_6cae27daf37030619bf705e1.woff')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_2efd00a734cf902011ed8751.woff')format("woff");}.ff3{font-family:ff3;line-height:0.704000;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_557ec2d8ef1a2df74b2cab75.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_1a7829758db3b7ffa90784ee.woff')format("woff");}.ff5{font-family:ff5;line-height:0.861000;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_19a537a9973ecde8e0e31ab5.woff')format("woff");}.ff6{font-family:ff6;line-height:0.908000;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_21f21811e9b686a89df7919e.woff')format("woff");}.ff7{font-family:ff7;line-height:0.383000;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_3da9ba826d0c00dc99a53c5b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.522000;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_3a7f18c242e542bd719706c8.woff')format("woff");}.ff9{font-family:ff9;line-height:0.665000;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_fddea820e122cbef4226cb14.woff')format("woff");}.ffa{font-family:ffa;line-height:0.896000;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_2348fbd7e0a1524ed15feb57.woff')format("woff");}.ffb{font-family:ffb;line-height:0.664000;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);}
.v2{vertical-align:-21.696000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:26.028000px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:2.990525px;}
.ls6{letter-spacing:23.384371px;}
.ls4{letter-spacing:23.456102px;}
.lsc{letter-spacing:23.527834px;}
.ls5{letter-spacing:26.396915px;}
.ls1{letter-spacing:26.755738px;}
.ls9{letter-spacing:28.405555px;}
.ls7{letter-spacing:28.477286px;}
.ls2{letter-spacing:29.553254px;}
.ls8{letter-spacing:31.442915px;}
.lsb{letter-spacing:32.637696px;}
.ls3{letter-spacing:35.148288px;}
.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;}
}
.ws1d{word-spacing:-19.510886px;}
.ws13{word-spacing:-17.932800px;}
.ws3a{word-spacing:-3.586560px;}
.ws26{word-spacing:-3.012710px;}
.ws43{word-spacing:-2.654054px;}
.ws25{word-spacing:-1.362893px;}
.ws16{word-spacing:-1.004237px;}
.ws14{word-spacing:-0.932506px;}
.ws23{word-spacing:-0.071731px;}
.wsb{word-spacing:0.000000px;}
.ws36{word-spacing:0.573850px;}
.ws47{word-spacing:1.506355px;}
.ws45{word-spacing:1.936742px;}
.ws3f{word-spacing:2.582323px;}
.ws27{word-spacing:2.797517px;}
.ws38{word-spacing:2.940979px;}
.ws3d{word-spacing:3.084442px;}
.ws28{word-spacing:3.299613px;}
.ws3c{word-spacing:3.299635px;}
.ws2e{word-spacing:3.443098px;}
.wsa{word-spacing:3.613094px;}
.wse{word-spacing:3.873485px;}
.ws1e{word-spacing:3.945216px;}
.ws34{word-spacing:4.016947px;}
.ws1{word-spacing:4.136731px;}
.ws1c{word-spacing:4.483200px;}
.ws0{word-spacing:4.648169px;}
.ws11{word-spacing:4.734259px;}
.ws39{word-spacing:5.057050px;}
.ws32{word-spacing:5.092915px;}
.ws49{word-spacing:5.451571px;}
.ws42{word-spacing:5.487437px;}
.ws24{word-spacing:5.523302px;}
.wsd{word-spacing:5.666765px;}
.ws17{word-spacing:5.953690px;}
.ws15{word-spacing:6.025421px;}
.ws9{word-spacing:6.296733px;}
.ws18{word-spacing:6.455775px;}
.ws41{word-spacing:6.742733px;}
.ws44{word-spacing:7.137254px;}
.ws21{word-spacing:7.173120px;}
.ws10{word-spacing:7.244851px;}
.ws37{word-spacing:8.284954px;}
.ws46{word-spacing:8.464282px;}
.ws3b{word-spacing:8.500147px;}
.ws20{word-spacing:8.787072px;}
.ws1f{word-spacing:8.966400px;}
.ws7{word-spacing:9.111280px;}
.ws6{word-spacing:10.027645px;}
.ws3e{word-spacing:10.042368px;}
.ws3{word-spacing:10.093099px;}
.ws33{word-spacing:10.472755px;}
.ws35{word-spacing:10.974874px;}
.ws29{word-spacing:11.333530px;}
.ws12{word-spacing:11.692186px;}
.ws2c{word-spacing:12.552960px;}
.ws2b{word-spacing:12.624691px;}
.ws2f{word-spacing:12.839885px;}
.ws1b{word-spacing:13.413734px;}
.wsf{word-spacing:14.131046px;}
.ws40{word-spacing:14.382106px;}
.ws30{word-spacing:14.417971px;}
.ws31{word-spacing:15.063552px;}
.ws48{word-spacing:15.637402px;}
.ws2a{word-spacing:18.219725px;}
.wsc{word-spacing:19.367325px;}
.ws2d{word-spacing:19.582618px;}
.ws1a{word-spacing:20.371661px;}
.ws2{word-spacing:27.163659px;}
.ws19{word-spacing:27.867571px;}
.ws5{word-spacing:28.145478px;}
.ws22{word-spacing:29.624986px;}
.ws8{word-spacing:32.138209px;}
.ws4{word-spacing:33.054573px;}
._12{margin-left:-9.709486px;}
._0{margin-left:-7.058330px;}
._a{margin-left:-5.426489px;}
._4{margin-left:-4.286830px;}
._2{margin-left:-2.324084px;}
._6{margin-left:-1.014992px;}
._10{width:1.080447px;}
._3{width:2.324084px;}
._9{width:3.404531px;}
._1{width:4.734246px;}
._16{width:6.323990px;}
._18{width:18.147994px;}
._13{width:19.206076px;}
._c{width:20.355508px;}
._19{width:22.131776px;}
._17{width:27.693644px;}
._7{width:29.521809px;}
._8{width:31.199437px;}
._1a{width:32.279040px;}
._b{width:33.366652px;}
._15{width:34.740301px;}
._f{width:36.219777px;}
._11{width:41.632782px;}
._5{width:48.240040px;}
._e{width:49.721366px;}
._d{width:51.646200px;}
._14{width:56.679292px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:41.842800px;}
.fs5{font-size:47.820600px;}
.fs7{font-size:59.775600px;}
.fs2{font-size:65.454600px;}
.fs3{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs4{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.yc{bottom:63.168000px;}
.y25{bottom:113.436000px;}
.y24{bottom:131.370000px;}
.y46{bottom:186.625500px;}
.y45{bottom:223.237500px;}
.y44{bottom:259.851000px;}
.y23{bottom:284.559000px;}
.y43{bottom:299.277000px;}
.y22{bottom:306.226500px;}
.y21{bottom:327.895500px;}
.y20{bottom:349.564500px;}
.y42{bottom:359.178000px;}
.y41{bottom:380.847000px;}
.y1f{bottom:388.992000px;}
.y40{bottom:421.942500px;}
.y3f{bottom:443.611500px;}
.y1e{bottom:466.450500px;}
.y3e{bottom:480.223500px;}
.y3d{bottom:501.892500px;}
.y1d{bottom:505.678500px;}
.y3c{bottom:538.506000px;}
.y1c{bottom:542.292000px;}
.y3b{bottom:560.175000px;}
.y1b{bottom:563.961000px;}
.y1a{bottom:600.573000px;}
.y3a{bottom:601.270500px;}
.y39{bottom:622.939500px;}
.y19{bottom:637.186500px;}
.y38{bottom:662.365500px;}
.yb{bottom:669.336000px;}
.y18{bottom:676.413000px;}
.ya{bottom:689.659500px;}
.y17{bottom:698.082000px;}
.y9{bottom:709.983000px;}
.y37{bottom:722.266500px;}
.y8{bottom:730.306500px;}
.y16{bottom:737.509500px;}
.y36{bottom:743.935500px;}
.y7{bottom:750.630000px;}
.y2e{bottom:770.835000px;}
.y6{bottom:770.953500px;}
.y35{bottom:785.031000px;}
.y2d{bottom:792.504000px;}
.y15{bottom:797.410500px;}
.y5{bottom:801.295500px;}
.y34{bottom:806.700000px;}
.y14{bottom:819.078000px;}
.y2c{bottom:831.730500px;}
.y13{bottom:840.747000px;}
.y33{bottom:843.312000px;}
.y2b{bottom:853.399500px;}
.y32{bottom:864.981000px;}
.y4{bottom:867.385500px;}
.y2a{bottom:875.068500px;}
.y12{bottom:880.174500px;}
.y29{bottom:896.737500px;}
.y31{bottom:901.594500px;}
.y3{bottom:909.453000px;}
.y28{bottom:918.406500px;}
.y30{bottom:923.262000px;}
.y11{bottom:940.075500px;}
.y27{bottom:957.634500px;}
.y2f{bottom:959.875500px;}
.y10{bottom:961.743000px;}
.y2{bottom:962.691000px;}
.y26{bottom:979.302000px;}
.y1{bottom:989.589000px;}
.yf{bottom:1000.971000px;}
.ye{bottom:1022.640000px;}
.yd{bottom:1062.067500px;}
.ha{height:27.783619px;}
.h3{height:45.687311px;}
.h4{height:49.090950px;}
.h7{height:50.211840px;}
.h9{height:50.498765px;}
.h5{height:53.798400px;}
.h8{height:57.828699px;}
.h2{height:64.557900px;}
.h6{height:72.304680px;}
.h1{height:86.782500px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x9{left:108.000000px;}
.xc{left:116.779500px;}
.xb{left:128.194500px;}
.xa{left:134.338500px;}
.x7{left:151.897500px;}
.x6{left:176.443500px;}
.x2{left:275.512500px;}
.x3{left:361.696500px;}
.x4{left:380.277000px;}
.x1{left:402.751500px;}
.x5{left:422.998500px;}
.x8{left:454.609500px;}
@media print{
.v2{vertical-align:-19.285333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.136000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:2.658245pt;}
.ls6{letter-spacing:20.786108pt;}
.ls4{letter-spacing:20.849869pt;}
.lsc{letter-spacing:20.913630pt;}
.ls5{letter-spacing:23.463925pt;}
.ls1{letter-spacing:23.782878pt;}
.ls9{letter-spacing:25.249382pt;}
.ls7{letter-spacing:25.313143pt;}
.ls2{letter-spacing:26.269559pt;}
.ls8{letter-spacing:27.949258pt;}
.lsb{letter-spacing:29.011285pt;}
.ls3{letter-spacing:31.242923pt;}
.ws1d{word-spacing:-17.343010pt;}
.ws13{word-spacing:-15.940267pt;}
.ws3a{word-spacing:-3.188053pt;}
.ws26{word-spacing:-2.677965pt;}
.ws43{word-spacing:-2.359159pt;}
.ws25{word-spacing:-1.211460pt;}
.ws16{word-spacing:-0.892655pt;}
.ws14{word-spacing:-0.828894pt;}
.ws23{word-spacing:-0.063761pt;}
.wsb{word-spacing:0.000000pt;}
.ws36{word-spacing:0.510089pt;}
.ws47{word-spacing:1.338982pt;}
.ws45{word-spacing:1.721549pt;}
.ws3f{word-spacing:2.295398pt;}
.ws27{word-spacing:2.486682pt;}
.ws38{word-spacing:2.614204pt;}
.ws3d{word-spacing:2.741726pt;}
.ws28{word-spacing:2.932989pt;}
.ws3c{word-spacing:2.933009pt;}
.ws2e{word-spacing:3.060531pt;}
.wsa{word-spacing:3.211639pt;}
.wse{word-spacing:3.443098pt;}
.ws1e{word-spacing:3.506859pt;}
.ws34{word-spacing:3.570620pt;}
.ws1{word-spacing:3.677094pt;}
.ws1c{word-spacing:3.985067pt;}
.ws0{word-spacing:4.131706pt;}
.ws11{word-spacing:4.208230pt;}
.ws39{word-spacing:4.495155pt;}
.ws32{word-spacing:4.527036pt;}
.ws49{word-spacing:4.845841pt;}
.ws42{word-spacing:4.877722pt;}
.ws24{word-spacing:4.909602pt;}
.wsd{word-spacing:5.037124pt;}
.ws17{word-spacing:5.292169pt;}
.ws15{word-spacing:5.355930pt;}
.ws9{word-spacing:5.597096pt;}
.ws18{word-spacing:5.738467pt;}
.ws41{word-spacing:5.993540pt;}
.ws44{word-spacing:6.344226pt;}
.ws21{word-spacing:6.376107pt;}
.ws10{word-spacing:6.439868pt;}
.ws37{word-spacing:7.364403pt;}
.ws46{word-spacing:7.523806pt;}
.ws3b{word-spacing:7.555686pt;}
.ws20{word-spacing:7.810731pt;}
.ws1f{word-spacing:7.970133pt;}
.ws7{word-spacing:8.098916pt;}
.ws6{word-spacing:8.913462pt;}
.ws3e{word-spacing:8.926549pt;}
.ws3{word-spacing:8.971644pt;}
.ws33{word-spacing:9.309116pt;}
.ws35{word-spacing:9.755443pt;}
.ws29{word-spacing:10.074249pt;}
.ws12{word-spacing:10.393054pt;}
.ws2c{word-spacing:11.158187pt;}
.ws2b{word-spacing:11.221948pt;}
.ws2f{word-spacing:11.413231pt;}
.ws1b{word-spacing:11.923319pt;}
.wsf{word-spacing:12.560930pt;}
.ws40{word-spacing:12.784094pt;}
.ws30{word-spacing:12.815974pt;}
.ws31{word-spacing:13.389824pt;}
.ws48{word-spacing:13.899913pt;}
.ws2a{word-spacing:16.195311pt;}
.wsc{word-spacing:17.215400pt;}
.ws2d{word-spacing:17.406771pt;}
.ws1a{word-spacing:18.108143pt;}
.ws2{word-spacing:24.145475pt;}
.ws19{word-spacing:24.771174pt;}
.ws5{word-spacing:25.018203pt;}
.ws22{word-spacing:26.333321pt;}
.ws8{word-spacing:28.567297pt;}
.ws4{word-spacing:29.381843pt;}
._12{margin-left:-8.630654pt;}
._0{margin-left:-6.274071pt;}
._a{margin-left:-4.823546pt;}
._4{margin-left:-3.810516pt;}
._2{margin-left:-2.065853pt;}
._6{margin-left:-0.902215pt;}
._10{width:0.960397pt;}
._3{width:2.065853pt;}
._9{width:3.026250pt;}
._1{width:4.208219pt;}
._16{width:5.621324pt;}
._18{width:16.131550pt;}
._13{width:17.072067pt;}
._c{width:18.093785pt;}
._19{width:19.672690pt;}
._17{width:24.616573pt;}
._7{width:26.241608pt;}
._8{width:27.732833pt;}
._1a{width:28.692480pt;}
._b{width:29.659246pt;}
._15{width:30.880267pt;}
._f{width:32.195357pt;}
._11{width:37.006917pt;}
._5{width:42.880036pt;}
._e{width:44.196770pt;}
._d{width:45.907733pt;}
._14{width:50.381593pt;}
.fs6{font-size:37.193600pt;}
.fs5{font-size:42.507200pt;}
.fs7{font-size:53.133867pt;}
.fs2{font-size:58.181867pt;}
.fs3{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs4{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:56.149333pt;}
.y25{bottom:100.832000pt;}
.y24{bottom:116.773333pt;}
.y46{bottom:165.889333pt;}
.y45{bottom:198.433333pt;}
.y44{bottom:230.978667pt;}
.y23{bottom:252.941333pt;}
.y43{bottom:266.024000pt;}
.y22{bottom:272.201333pt;}
.y21{bottom:291.462667pt;}
.y20{bottom:310.724000pt;}
.y42{bottom:319.269333pt;}
.y41{bottom:338.530667pt;}
.y1f{bottom:345.770667pt;}
.y40{bottom:375.060000pt;}
.y3f{bottom:394.321333pt;}
.y1e{bottom:414.622667pt;}
.y3e{bottom:426.865333pt;}
.y3d{bottom:446.126667pt;}
.y1d{bottom:449.492000pt;}
.y3c{bottom:478.672000pt;}
.y1c{bottom:482.037333pt;}
.y3b{bottom:497.933333pt;}
.y1b{bottom:501.298667pt;}
.y1a{bottom:533.842667pt;}
.y3a{bottom:534.462667pt;}
.y39{bottom:553.724000pt;}
.y19{bottom:566.388000pt;}
.y38{bottom:588.769333pt;}
.yb{bottom:594.965333pt;}
.y18{bottom:601.256000pt;}
.ya{bottom:613.030667pt;}
.y17{bottom:620.517333pt;}
.y9{bottom:631.096000pt;}
.y37{bottom:642.014667pt;}
.y8{bottom:649.161333pt;}
.y16{bottom:655.564000pt;}
.y36{bottom:661.276000pt;}
.y7{bottom:667.226667pt;}
.y2e{bottom:685.186667pt;}
.y6{bottom:685.292000pt;}
.y35{bottom:697.805333pt;}
.y2d{bottom:704.448000pt;}
.y15{bottom:708.809333pt;}
.y5{bottom:712.262667pt;}
.y34{bottom:717.066667pt;}
.y14{bottom:728.069333pt;}
.y2c{bottom:739.316000pt;}
.y13{bottom:747.330667pt;}
.y33{bottom:749.610667pt;}
.y2b{bottom:758.577333pt;}
.y32{bottom:768.872000pt;}
.y4{bottom:771.009333pt;}
.y2a{bottom:777.838667pt;}
.y12{bottom:782.377333pt;}
.y29{bottom:797.100000pt;}
.y31{bottom:801.417333pt;}
.y3{bottom:808.402667pt;}
.y28{bottom:816.361333pt;}
.y30{bottom:820.677333pt;}
.y11{bottom:835.622667pt;}
.y27{bottom:851.230667pt;}
.y2f{bottom:853.222667pt;}
.y10{bottom:854.882667pt;}
.y2{bottom:855.725333pt;}
.y26{bottom:870.490667pt;}
.y1{bottom:879.634667pt;}
.yf{bottom:889.752000pt;}
.ye{bottom:909.013333pt;}
.yd{bottom:944.060000pt;}
.ha{height:24.696550pt;}
.h3{height:40.610943pt;}
.h4{height:43.636400pt;}
.h7{height:44.632747pt;}
.h9{height:44.887791pt;}
.h5{height:47.820800pt;}
.h8{height:51.403288pt;}
.h2{height:57.384800pt;}
.h6{height:64.270827pt;}
.h1{height:77.140000pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x9{left:96.000000pt;}
.xc{left:103.804000pt;}
.xb{left:113.950667pt;}
.xa{left:119.412000pt;}
.x7{left:135.020000pt;}
.x6{left:156.838667pt;}
.x2{left:244.900000pt;}
.x3{left:321.508000pt;}
.x4{left:338.024000pt;}
.x1{left:358.001333pt;}
.x5{left:375.998667pt;}
.x8{left:404.097333pt;}
}




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