
    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_d09471187c9e695785ce3470.woff')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_f4e682ac515004c89812b8ad.woff')format("woff");}.ff2{font-family:ff2;line-height:0.900000;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_ee0a83d64f6e55b74316c8da.woff')format("woff");}.ff3{font-family:ff3;line-height:0.977000;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_9491477a7ac28a863d867342.woff')format("woff");}.ff4{font-family:ff4;line-height:0.854000;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:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:2.989200px;}
.ls0{letter-spacing:14.920090px;}
.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;}
}
.ws16{word-spacing:-11.955150px;}
.wsf{word-spacing:-3.526760px;}
.ws3f{word-spacing:-2.450800px;}
.ws35{word-spacing:-1.613941px;}
.ws1a{word-spacing:-1.434614px;}
.ws34{word-spacing:-1.374839px;}
.ws2{word-spacing:-1.129766px;}
.wsb{word-spacing:-0.914573px;}
.ws33{word-spacing:-0.239102px;}
.ws13{word-spacing:-0.119551px;}
.ws39{word-spacing:-0.071731px;}
.ws3c{word-spacing:-0.059776px;}
.ws0{word-spacing:0.000000px;}
.ws2d{word-spacing:0.059776px;}
.ws1d{word-spacing:0.119551px;}
.ws19{word-spacing:0.239102px;}
.ws31{word-spacing:0.298878px;}
.ws37{word-spacing:0.478205px;}
.wse{word-spacing:0.657532px;}
.ws25{word-spacing:0.717307px;}
.ws23{word-spacing:0.896634px;}
.wsa{word-spacing:1.075968px;}
.ws10{word-spacing:1.135736px;}
.ws1e{word-spacing:1.255288px;}
.ws30{word-spacing:1.315063px;}
.ws32{word-spacing:1.494390px;}
.ws3d{word-spacing:1.613941px;}
.wsd{word-spacing:1.733492px;}
.ws27{word-spacing:1.853044px;}
.ws14{word-spacing:2.092146px;}
.ws3a{word-spacing:2.211697px;}
.ws1{word-spacing:2.420928px;}
.ws4{word-spacing:2.528525px;}
.ws11{word-spacing:2.630126px;}
.ws2a{word-spacing:2.689902px;}
.ws9{word-spacing:2.689920px;}
.ws29{word-spacing:2.749678px;}
.ws36{word-spacing:2.869229px;}
.ws38{word-spacing:3.108331px;}
.ws6{word-spacing:3.120307px;}
.ws3{word-spacing:3.443098px;}
.ws22{word-spacing:3.706087px;}
.ws5{word-spacing:3.765888px;}
.ws20{word-spacing:4.184292px;}
.ws15{word-spacing:4.303843px;}
.ws1c{word-spacing:4.542946px;}
.ws2c{word-spacing:4.602721px;}
.ws24{word-spacing:4.662497px;}
.ws7{word-spacing:4.734259px;}
.ws17{word-spacing:5.021150px;}
.ws18{word-spacing:5.080926px;}
.ws8{word-spacing:5.110848px;}
.ws2e{word-spacing:5.200477px;}
.ws2b{word-spacing:5.320028px;}
.ws1b{word-spacing:5.618906px;}
.ws21{word-spacing:5.917784px;}
.ws28{word-spacing:6.156887px;}
.ws2f{word-spacing:6.874194px;}
.ws1f{word-spacing:7.113296px;}
.ws12{word-spacing:7.173072px;}
.ws42{word-spacing:7.471950px;}
.ws43{word-spacing:8.189257px;}
.ws40{word-spacing:12.433325px;}
.ws3e{word-spacing:14.884124px;}
.ws26{word-spacing:16.557841px;}
.ws3b{word-spacing:17.095822px;}
.ws41{word-spacing:22.356074px;}
.wsc{word-spacing:35.793869px;}
._3{margin-left:-9.253325px;}
._2{margin-left:-6.714006px;}
._0{margin-left:-4.131696px;}
._e{margin-left:-3.108339px;}
._1{margin-left:-2.065848px;}
._b{margin-left:-1.009006px;}
._14{width:1.776422px;}
._15{width:2.988780px;}
._16{width:9.298696px;}
._a{width:10.400954px;}
._c{width:15.874012px;}
._12{width:17.036046px;}
._6{width:18.872458px;}
._9{width:20.034514px;}
._d{width:21.220338px;}
._10{width:22.482813px;}
._8{width:23.940288px;}
._4{width:26.845402px;}
._5{width:27.921370px;}
._7{width:30.826483px;}
._11{width:32.338600px;}
._f{width:33.534112px;}
._13{width:59.775600px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.865600px;}
.fs2{font-size:44.233800px;}
.fs6{font-size:47.820600px;}
.fs4{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y42{bottom:206.628000px;}
.y25{bottom:210.967500px;}
.y5f{bottom:217.011000px;}
.y41{bottom:224.562000px;}
.y24{bottom:225.646500px;}
.y5e{bottom:234.943500px;}
.y23{bottom:240.324000px;}
.y40{bottom:242.494500px;}
.y5d{bottom:252.876000px;}
.y22{bottom:255.001500px;}
.y3f{bottom:260.427000px;}
.y45{bottom:268.933500px;}
.y5c{bottom:270.810000px;}
.y21{bottom:278.329500px;}
.y3e{bottom:278.359500px;}
.y5b{bottom:288.742500px;}
.y20{bottom:296.262000px;}
.y3d{bottom:296.292000px;}
.y5a{bottom:306.675000px;}
.y1f{bottom:321.808500px;}
.y59{bottom:324.607500px;}
.y3c{bottom:329.245500px;}
.y58{bottom:342.540000px;}
.y57{bottom:360.472500px;}
.y1e{bottom:363.609000px;}
.y56{bottom:378.406500px;}
.y1d{bottom:381.541500px;}
.y55{bottom:396.339000px;}
.y1c{bottom:399.474000px;}
.y3b{bottom:413.466000px;}
.y54{bottom:414.271500px;}
.y1b{bottom:417.406500px;}
.y1a{bottom:435.481500px;}
.y53{bottom:439.675500px;}
.y19{bottom:453.414000px;}
.y44{bottom:458.143500px;}
.y18{bottom:471.346500px;}
.y52{bottom:480.772500px;}
.y17{bottom:489.279000px;}
.y51{bottom:498.705000px;}
.y16{bottom:507.211500px;}
.y50{bottom:516.637500px;}
.y15{bottom:532.758000px;}
.y4f{bottom:534.570000px;}
.y4e{bottom:559.975500px;}
.y14{bottom:600.387000px;}
.y4d{bottom:601.071000px;}
.y13{bottom:616.825500px;}
.y4c{bottom:619.003500px;}
.y12{bottom:633.262500px;}
.y4b{bottom:636.936000px;}
.y11{bottom:649.701000px;}
.y4a{bottom:654.868500px;}
.y10{bottom:666.139500px;}
.y49{bottom:672.802500px;}
.yf{bottom:682.578000px;}
.y48{bottom:690.735000px;}
.ye{bottom:699.016500px;}
.yd{bottom:715.455000px;}
.y3a{bottom:721.228500px;}
.yc{bottom:731.893500px;}
.y47{bottom:731.980500px;}
.y39{bottom:739.161000px;}
.yb{bottom:748.332000px;}
.y38{bottom:757.095000px;}
.ya{bottom:764.770500px;}
.y37{bottom:775.027500px;}
.y9{bottom:781.209000px;}
.y36{bottom:800.508000px;}
.y43{bottom:802.638000px;}
.y8{bottom:813.154500px;}
.y35{bottom:818.442000px;}
.y34{bottom:836.374500px;}
.y33{bottom:854.307000px;}
.y32{bottom:872.239500px;}
.y7{bottom:872.889000px;}
.y6{bottom:890.821500px;}
.y31{bottom:897.721500px;}
.y46{bottom:908.515500px;}
.y5{bottom:908.754000px;}
.y30{bottom:915.654000px;}
.y67{bottom:921.709500px;}
.y4{bottom:926.686500px;}
.y2f{bottom:933.586500px;}
.y66{bottom:939.642000px;}
.y2e{bottom:951.520500px;}
.y65{bottom:957.574500px;}
.y2d{bottom:969.453000px;}
.y64{bottom:981.484500px;}
.y3{bottom:985.263000px;}
.y2c{bottom:987.385500px;}
.y63{bottom:999.417000px;}
.y2b{bottom:1012.867500px;}
.y62{bottom:1017.349500px;}
.y2{bottom:1018.140000px;}
.y2a{bottom:1030.800000px;}
.y61{bottom:1041.261000px;}
.y29{bottom:1048.732500px;}
.y1{bottom:1051.015500px;}
.y60{bottom:1059.193500px;}
.y28{bottom:1066.665000px;}
.y27{bottom:1084.597500px;}
.y26{bottom:1136.902500px;}
.h8{height:24.675533px;}
.h4{height:37.013299px;}
.h5{height:37.336090px;}
.h7{height:41.125613px;}
.ha{height:41.484266px;}
.h9{height:45.250129px;}
.h3{height:52.128854px;}
.h6{height:54.300518px;}
.h2{height:71.065171px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:178.156500px;}
.x1{left:190.162500px;}
.x2{left:192.241500px;}
.xb{left:194.446500px;}
.xf{left:199.434000px;}
.xa{left:200.572500px;}
.x12{left:210.525000px;}
.x9{left:215.517000px;}
.x8{left:235.692000px;}
.xc{left:250.012500px;}
.x10{left:290.479500px;}
.x11{left:304.795500px;}
.x5{left:335.067000px;}
.x6{left:337.039500px;}
.xe{left:386.568000px;}
.x3{left:424.983000px;}
.x7{left:473.895000px;}
.xd{left:808.480500px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:2.657067pt;}
.ls0{letter-spacing:13.262302pt;}
.ws16{word-spacing:-10.626800pt;}
.wsf{word-spacing:-3.134898pt;}
.ws3f{word-spacing:-2.178489pt;}
.ws35{word-spacing:-1.434614pt;}
.ws1a{word-spacing:-1.275213pt;}
.ws34{word-spacing:-1.222079pt;}
.ws2{word-spacing:-1.004237pt;}
.wsb{word-spacing:-0.812954pt;}
.ws33{word-spacing:-0.212535pt;}
.ws13{word-spacing:-0.106268pt;}
.ws39{word-spacing:-0.063761pt;}
.ws3c{word-spacing:-0.053134pt;}
.ws0{word-spacing:0.000000pt;}
.ws2d{word-spacing:0.053134pt;}
.ws1d{word-spacing:0.106268pt;}
.ws19{word-spacing:0.212535pt;}
.ws31{word-spacing:0.265669pt;}
.ws37{word-spacing:0.425071pt;}
.wse{word-spacing:0.584473pt;}
.ws25{word-spacing:0.637606pt;}
.ws23{word-spacing:0.797008pt;}
.wsa{word-spacing:0.956416pt;}
.ws10{word-spacing:1.009543pt;}
.ws1e{word-spacing:1.115811pt;}
.ws30{word-spacing:1.168945pt;}
.ws32{word-spacing:1.328347pt;}
.ws3d{word-spacing:1.434614pt;}
.wsd{word-spacing:1.540882pt;}
.ws27{word-spacing:1.647150pt;}
.ws14{word-spacing:1.859685pt;}
.ws3a{word-spacing:1.965953pt;}
.ws1{word-spacing:2.151936pt;}
.ws4{word-spacing:2.247578pt;}
.ws11{word-spacing:2.337890pt;}
.ws2a{word-spacing:2.391024pt;}
.ws9{word-spacing:2.391040pt;}
.ws29{word-spacing:2.444158pt;}
.ws36{word-spacing:2.550426pt;}
.ws38{word-spacing:2.762961pt;}
.ws6{word-spacing:2.773606pt;}
.ws3{word-spacing:3.060531pt;}
.ws22{word-spacing:3.294300pt;}
.ws5{word-spacing:3.347456pt;}
.ws20{word-spacing:3.719371pt;}
.ws15{word-spacing:3.825638pt;}
.ws1c{word-spacing:4.038174pt;}
.ws2c{word-spacing:4.091308pt;}
.ws24{word-spacing:4.144442pt;}
.ws7{word-spacing:4.208230pt;}
.ws17{word-spacing:4.463245pt;}
.ws18{word-spacing:4.516379pt;}
.ws8{word-spacing:4.542976pt;}
.ws2e{word-spacing:4.622646pt;}
.ws2b{word-spacing:4.728914pt;}
.ws1b{word-spacing:4.994583pt;}
.ws21{word-spacing:5.260253pt;}
.ws28{word-spacing:5.472788pt;}
.ws2f{word-spacing:6.110395pt;}
.ws1f{word-spacing:6.322930pt;}
.ws12{word-spacing:6.376064pt;}
.ws42{word-spacing:6.641733pt;}
.ws43{word-spacing:7.279340pt;}
.ws40{word-spacing:11.051844pt;}
.ws3e{word-spacing:13.230333pt;}
.ws26{word-spacing:14.718081pt;}
.ws3b{word-spacing:15.196286pt;}
.ws41{word-spacing:19.872066pt;}
.wsc{word-spacing:31.816772pt;}
._3{margin-left:-8.225178pt;}
._2{margin-left:-5.968005pt;}
._0{margin-left:-3.672619pt;}
._e{margin-left:-2.762968pt;}
._1{margin-left:-1.836309pt;}
._b{margin-left:-0.896894pt;}
._14{width:1.579042pt;}
._15{width:2.656693pt;}
._16{width:8.265507pt;}
._a{width:9.245293pt;}
._c{width:14.110233pt;}
._12{width:15.143152pt;}
._6{width:16.775518pt;}
._9{width:17.808457pt;}
._d{width:18.862523pt;}
._10{width:19.984723pt;}
._8{width:21.280256pt;}
._4{width:23.862579pt;}
._5{width:24.818995pt;}
._7{width:27.401318pt;}
._11{width:28.745422pt;}
._f{width:29.808099pt;}
._13{width:53.133867pt;}
.fs5{font-size:31.880533pt;}
.fs2{font-size:39.318933pt;}
.fs6{font-size:42.507200pt;}
.fs4{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y42{bottom:183.669333pt;}
.y25{bottom:187.526667pt;}
.y5f{bottom:192.898667pt;}
.y41{bottom:199.610667pt;}
.y24{bottom:200.574667pt;}
.y5e{bottom:208.838667pt;}
.y23{bottom:213.621333pt;}
.y40{bottom:215.550667pt;}
.y5d{bottom:224.778667pt;}
.y22{bottom:226.668000pt;}
.y3f{bottom:231.490667pt;}
.y45{bottom:239.052000pt;}
.y5c{bottom:240.720000pt;}
.y21{bottom:247.404000pt;}
.y3e{bottom:247.430667pt;}
.y5b{bottom:256.660000pt;}
.y20{bottom:263.344000pt;}
.y3d{bottom:263.370667pt;}
.y5a{bottom:272.600000pt;}
.y1f{bottom:286.052000pt;}
.y59{bottom:288.540000pt;}
.y3c{bottom:292.662667pt;}
.y58{bottom:304.480000pt;}
.y57{bottom:320.420000pt;}
.y1e{bottom:323.208000pt;}
.y56{bottom:336.361333pt;}
.y1d{bottom:339.148000pt;}
.y55{bottom:352.301333pt;}
.y1c{bottom:355.088000pt;}
.y3b{bottom:367.525333pt;}
.y54{bottom:368.241333pt;}
.y1b{bottom:371.028000pt;}
.y1a{bottom:387.094667pt;}
.y53{bottom:390.822667pt;}
.y19{bottom:403.034667pt;}
.y44{bottom:407.238667pt;}
.y18{bottom:418.974667pt;}
.y52{bottom:427.353333pt;}
.y17{bottom:434.914667pt;}
.y51{bottom:443.293333pt;}
.y16{bottom:450.854667pt;}
.y50{bottom:459.233333pt;}
.y15{bottom:473.562667pt;}
.y4f{bottom:475.173333pt;}
.y4e{bottom:497.756000pt;}
.y14{bottom:533.677333pt;}
.y4d{bottom:534.285333pt;}
.y13{bottom:548.289333pt;}
.y4c{bottom:550.225333pt;}
.y12{bottom:562.900000pt;}
.y4b{bottom:566.165333pt;}
.y11{bottom:577.512000pt;}
.y4a{bottom:582.105333pt;}
.y10{bottom:592.124000pt;}
.y49{bottom:598.046667pt;}
.yf{bottom:606.736000pt;}
.y48{bottom:613.986667pt;}
.ye{bottom:621.348000pt;}
.yd{bottom:635.960000pt;}
.y3a{bottom:641.092000pt;}
.yc{bottom:650.572000pt;}
.y47{bottom:650.649333pt;}
.y39{bottom:657.032000pt;}
.yb{bottom:665.184000pt;}
.y38{bottom:672.973333pt;}
.ya{bottom:679.796000pt;}
.y37{bottom:688.913333pt;}
.y9{bottom:694.408000pt;}
.y36{bottom:711.562667pt;}
.y43{bottom:713.456000pt;}
.y8{bottom:722.804000pt;}
.y35{bottom:727.504000pt;}
.y34{bottom:743.444000pt;}
.y33{bottom:759.384000pt;}
.y32{bottom:775.324000pt;}
.y7{bottom:775.901333pt;}
.y6{bottom:791.841333pt;}
.y31{bottom:797.974667pt;}
.y46{bottom:807.569333pt;}
.y5{bottom:807.781333pt;}
.y30{bottom:813.914667pt;}
.y67{bottom:819.297333pt;}
.y4{bottom:823.721333pt;}
.y2f{bottom:829.854667pt;}
.y66{bottom:835.237333pt;}
.y2e{bottom:845.796000pt;}
.y65{bottom:851.177333pt;}
.y2d{bottom:861.736000pt;}
.y64{bottom:872.430667pt;}
.y3{bottom:875.789333pt;}
.y2c{bottom:877.676000pt;}
.y63{bottom:888.370667pt;}
.y2b{bottom:900.326667pt;}
.y62{bottom:904.310667pt;}
.y2{bottom:905.013333pt;}
.y2a{bottom:916.266667pt;}
.y61{bottom:925.565333pt;}
.y29{bottom:932.206667pt;}
.y1{bottom:934.236000pt;}
.y60{bottom:941.505333pt;}
.y28{bottom:948.146667pt;}
.y27{bottom:964.086667pt;}
.y26{bottom:1010.580000pt;}
.h8{height:21.933807pt;}
.h4{height:32.900710pt;}
.h5{height:33.187635pt;}
.h7{height:36.556100pt;}
.ha{height:36.874903pt;}
.h9{height:40.222337pt;}
.h3{height:46.336759pt;}
.h6{height:48.267127pt;}
.h2{height:63.169041pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:158.361333pt;}
.x1{left:169.033333pt;}
.x2{left:170.881333pt;}
.xb{left:172.841333pt;}
.xf{left:177.274667pt;}
.xa{left:178.286667pt;}
.x12{left:187.133333pt;}
.x9{left:191.570667pt;}
.x8{left:209.504000pt;}
.xc{left:222.233333pt;}
.x10{left:258.204000pt;}
.x11{left:270.929333pt;}
.x5{left:297.837333pt;}
.x6{left:299.590667pt;}
.xe{left:343.616000pt;}
.x3{left:377.762667pt;}
.x7{left:421.240000pt;}
.xd{left:718.649333pt;}
}




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