
    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_df6a17541df84804e8e0d1ab.woff')format("woff");}.ff1{font-family:ff1;line-height:0.841309;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_47c2848e708f7dd854d726c8.woff')format("woff");}.ff2{font-family:ff2;line-height:0.930176;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_b2821f17d41e3c6cd80d5863.woff')format("woff");}.ff3{font-family:ff3;line-height:0.851074;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_c1b23062009a7ca1de6ae103.woff')format("woff");}.ff4{font-family:ff4;line-height:0.851074;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_f9025532eb5f0e5a64aa9ffd.woff')format("woff");}.ff5{font-family:ff5;line-height:0.675293;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);}
.v0{vertical-align:0.000000px;}
.ls1d{letter-spacing:-5.564160px;}
.ls19{letter-spacing:-5.034240px;}
.ls1a{letter-spacing:-4.901760px;}
.lse{letter-spacing:-2.252160px;}
.ls15{letter-spacing:-1.987200px;}
.ls18{letter-spacing:-1.920960px;}
.ls10{letter-spacing:-1.258560px;}
.ls16{letter-spacing:-1.059840px;}
.ls12{letter-spacing:-0.794880px;}
.ls13{letter-spacing:-0.662400px;}
.lsf{letter-spacing:-0.596160px;}
.lsd{letter-spacing:-0.529920px;}
.ls14{letter-spacing:-0.463680px;}
.ls11{letter-spacing:-0.331200px;}
.lsc{letter-spacing:-0.264960px;}
.ls17{letter-spacing:-0.198720px;}
.ls9{letter-spacing:-0.132480px;}
.lsb{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.033120px;}
.ls7{letter-spacing:0.066240px;}
.ls1b{letter-spacing:0.132480px;}
.ls6{letter-spacing:0.198720px;}
.ls3{letter-spacing:0.245088px;}
.ls0{letter-spacing:0.264960px;}
.ls8{letter-spacing:0.271584px;}
.ls4{letter-spacing:0.331200px;}
.ls5{letter-spacing:0.357696px;}
.ls1c{letter-spacing:0.662400px;}
.lsa{letter-spacing:0.728640px;}
.ls1e{letter-spacing:1.258560px;}
.ls2{letter-spacing:1.304928px;}
.ls1{letter-spacing:1.344672px;}
.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;}
}
.wsd{word-spacing:-66.041280px;}
.ws1{word-spacing:-14.175360px;}
.ws24{word-spacing:-14.109120px;}
.wse{word-spacing:-13.777920px;}
.ws3{word-spacing:-13.645440px;}
.wsa{word-spacing:-13.512960px;}
.ws6{word-spacing:-13.446720px;}
.ws0{word-spacing:-13.314240px;}
.ws2{word-spacing:-13.181760px;}
.ws8{word-spacing:-13.115520px;}
.ws9{word-spacing:-12.983040px;}
.ws5{word-spacing:-12.916800px;}
.wsf{word-spacing:-12.850560px;}
.ws10{word-spacing:-12.784320px;}
.ws26{word-spacing:-12.651840px;}
.wsc{word-spacing:-12.386880px;}
.ws7{word-spacing:-12.188160px;}
.ws11{word-spacing:-11.525760px;}
.wsb{word-spacing:-11.459520px;}
.ws4{word-spacing:-11.194560px;}
.ws13{word-spacing:-8.544960px;}
.ws12{word-spacing:-8.412480px;}
.ws15{word-spacing:-0.662400px;}
.ws23{word-spacing:-0.529920px;}
.ws21{word-spacing:-0.264960px;}
.ws19{word-spacing:-0.198720px;}
.ws1d{word-spacing:-0.132480px;}
.ws16{word-spacing:-0.066240px;}
.ws14{word-spacing:0.000000px;}
.ws1f{word-spacing:0.066240px;}
.ws17{word-spacing:0.132480px;}
.ws22{word-spacing:0.198720px;}
.ws1a{word-spacing:0.331200px;}
.ws28{word-spacing:0.397440px;}
.ws1b{word-spacing:0.529920px;}
.ws20{word-spacing:0.596160px;}
.ws1e{word-spacing:0.662400px;}
.ws18{word-spacing:0.728640px;}
.ws1c{word-spacing:0.794880px;}
.ws27{word-spacing:1.258560px;}
.ws25{word-spacing:5.564160px;}
._7{margin-left:-9.114624px;}
._6{margin-left:-7.160544px;}
._a{margin-left:-5.743008px;}
._5{margin-left:-4.404960px;}
._2{margin-left:-3.080160px;}
._1{margin-left:-1.457280px;}
._0{width:1.126080px;}
._3{width:2.358144px;}
._4{width:3.457728px;}
._8{width:5.087232px;}
._9{width:6.279552px;}
.fc1{color:rgb(70,120,134);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:66.240000px;}
.y0{bottom:0.000000px;}
.y25{bottom:120.096000px;}
.y24{bottom:141.872400px;}
.y23{bottom:163.466640px;}
.y4b{bottom:176.357520px;}
.y22{bottom:185.243040px;}
.y21{bottom:207.019440px;}
.y4a{bottom:210.189600px;}
.y20{bottom:228.795840px;}
.y49{bottom:231.966000px;}
.y48{bottom:253.560240px;}
.y1f{bottom:268.390800px;}
.y47{bottom:275.336640px;}
.y1e{bottom:290.167200px;}
.y6a{bottom:292.883040px;}
.y46{bottom:297.113040px;}
.y1d{bottom:311.943600px;}
.y69{bottom:313.036560px;}
.y45{bottom:318.889440px;}
.y68{bottom:333.190080px;}
.y1c{bottom:333.720000px;}
.y44{bottom:340.483680px;}
.y1b{bottom:355.320000px;}
.y43{bottom:362.260080px;}
.y67{bottom:365.415840px;}
.y1a{bottom:377.132400px;}
.y42{bottom:384.036480px;}
.y66{bottom:385.569360px;}
.y19{bottom:398.908800px;}
.y65{bottom:405.722880px;}
.y41{bottom:405.812880px;}
.y18{bottom:420.685200px;}
.y40{bottom:427.407120px;}
.y64{bottom:437.766480px;}
.y17{bottom:442.279440px;}
.y3f{bottom:449.183520px;}
.y63{bottom:457.920000px;}
.y16{bottom:464.055840px;}
.y3e{bottom:483.015600px;}
.y62{bottom:490.150080px;}
.y15{bottom:503.832960px;}
.y61{bottom:510.303600px;}
.y3d{bottom:516.682080px;}
.y14{bottom:525.609360px;}
.y60{bottom:530.457120px;}
.y13{bottom:547.203600px;}
.y3c{bottom:550.348560px;}
.y5f{bottom:562.500720px;}
.y12{bottom:568.980000px;}
.y3b{bottom:572.124960px;}
.y3a{bottom:593.901360px;}
.y5e{bottom:594.726480px;}
.y11{bottom:608.808240px;}
.y5d{bottom:614.880000px;}
.y39{bottom:615.677760px;}
.y38{bottom:637.272000px;}
.y5c{bottom:646.976160px;}
.y10{bottom:648.585360px;}
.y37{bottom:659.048400px;}
.y5b{bottom:667.129680px;}
.y36{bottom:680.824800px;}
.y5a{bottom:687.283200px;}
.yf{bottom:688.180320px;}
.y35{bottom:702.601200px;}
.ye{bottom:709.956720px;}
.y59{bottom:719.326800px;}
.y34{bottom:724.195440px;}
.yd{bottom:731.733120px;}
.y58{bottom:739.480320px;}
.y33{bottom:746.154000px;}
.yc{bottom:753.509520px;}
.y57{bottom:759.633840px;}
.yb{bottom:775.103760px;}
.y32{bottom:785.748960px;}
.y56{bottom:793.465920px;}
.ya{bottom:796.880160px;}
.y31{bottom:807.525360px;}
.y55{bottom:815.060160px;}
.y9{bottom:818.656560px;}
.y30{bottom:829.119600px;}
.y8{bottom:840.432960px;}
.y54{bottom:847.285920px;}
.y2f{bottom:850.896000px;}
.y7{bottom:862.027200px;}
.y53{bottom:867.439440px;}
.y2e{bottom:872.672400px;}
.y6{bottom:883.803600px;}
.y52{bottom:887.592960px;}
.y2d{bottom:894.448800px;}
.y5{bottom:905.580000px;}
.y2c{bottom:916.043040px;}
.y51{bottom:919.636560px;}
.y2b{bottom:938.001600px;}
.y50{bottom:939.790080px;}
.y4{bottom:945.371520px;}
.y4f{bottom:972.015840px;}
.y2a{bottom:977.596560px;}
.y3{bottom:985.148640px;}
.y4e{bottom:992.169360px;}
.y29{bottom:999.372960px;}
.y28{bottom:1020.967200px;}
.y4d{bottom:1024.212960px;}
.y2{bottom:1024.743600px;}
.y27{bottom:1042.743600px;}
.y4c{bottom:1044.366480px;}
.y1{bottom:1046.520000px;}
.y26{bottom:1064.520000px;}
.h2{height:44.181562px;}
.h1{height:49.421250px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:108.000000px;}
.x2{left:162.018720px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1d{letter-spacing:-4.945920pt;}
.ls19{letter-spacing:-4.474880pt;}
.ls1a{letter-spacing:-4.357120pt;}
.lse{letter-spacing:-2.001920pt;}
.ls15{letter-spacing:-1.766400pt;}
.ls18{letter-spacing:-1.707520pt;}
.ls10{letter-spacing:-1.118720pt;}
.ls16{letter-spacing:-0.942080pt;}
.ls12{letter-spacing:-0.706560pt;}
.ls13{letter-spacing:-0.588800pt;}
.lsf{letter-spacing:-0.529920pt;}
.lsd{letter-spacing:-0.471040pt;}
.ls14{letter-spacing:-0.412160pt;}
.ls11{letter-spacing:-0.294400pt;}
.lsc{letter-spacing:-0.235520pt;}
.ls17{letter-spacing:-0.176640pt;}
.ls9{letter-spacing:-0.117760pt;}
.lsb{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.029440pt;}
.ls7{letter-spacing:0.058880pt;}
.ls1b{letter-spacing:0.117760pt;}
.ls6{letter-spacing:0.176640pt;}
.ls3{letter-spacing:0.217856pt;}
.ls0{letter-spacing:0.235520pt;}
.ls8{letter-spacing:0.241408pt;}
.ls4{letter-spacing:0.294400pt;}
.ls5{letter-spacing:0.317952pt;}
.ls1c{letter-spacing:0.588800pt;}
.lsa{letter-spacing:0.647680pt;}
.ls1e{letter-spacing:1.118720pt;}
.ls2{letter-spacing:1.159936pt;}
.ls1{letter-spacing:1.195264pt;}
.wsd{word-spacing:-58.703360pt;}
.ws1{word-spacing:-12.600320pt;}
.ws24{word-spacing:-12.541440pt;}
.wse{word-spacing:-12.247040pt;}
.ws3{word-spacing:-12.129280pt;}
.wsa{word-spacing:-12.011520pt;}
.ws6{word-spacing:-11.952640pt;}
.ws0{word-spacing:-11.834880pt;}
.ws2{word-spacing:-11.717120pt;}
.ws8{word-spacing:-11.658240pt;}
.ws9{word-spacing:-11.540480pt;}
.ws5{word-spacing:-11.481600pt;}
.wsf{word-spacing:-11.422720pt;}
.ws10{word-spacing:-11.363840pt;}
.ws26{word-spacing:-11.246080pt;}
.wsc{word-spacing:-11.010560pt;}
.ws7{word-spacing:-10.833920pt;}
.ws11{word-spacing:-10.245120pt;}
.wsb{word-spacing:-10.186240pt;}
.ws4{word-spacing:-9.950720pt;}
.ws13{word-spacing:-7.595520pt;}
.ws12{word-spacing:-7.477760pt;}
.ws15{word-spacing:-0.588800pt;}
.ws23{word-spacing:-0.471040pt;}
.ws21{word-spacing:-0.235520pt;}
.ws19{word-spacing:-0.176640pt;}
.ws1d{word-spacing:-0.117760pt;}
.ws16{word-spacing:-0.058880pt;}
.ws14{word-spacing:0.000000pt;}
.ws1f{word-spacing:0.058880pt;}
.ws17{word-spacing:0.117760pt;}
.ws22{word-spacing:0.176640pt;}
.ws1a{word-spacing:0.294400pt;}
.ws28{word-spacing:0.353280pt;}
.ws1b{word-spacing:0.471040pt;}
.ws20{word-spacing:0.529920pt;}
.ws1e{word-spacing:0.588800pt;}
.ws18{word-spacing:0.647680pt;}
.ws1c{word-spacing:0.706560pt;}
.ws27{word-spacing:1.118720pt;}
.ws25{word-spacing:4.945920pt;}
._7{margin-left:-8.101888pt;}
._6{margin-left:-6.364928pt;}
._a{margin-left:-5.104896pt;}
._5{margin-left:-3.915520pt;}
._2{margin-left:-2.737920pt;}
._1{margin-left:-1.295360pt;}
._0{width:1.000960pt;}
._3{width:2.096128pt;}
._4{width:3.073536pt;}
._8{width:4.521984pt;}
._9{width:5.581824pt;}
.fs0{font-size:58.880000pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:106.752000pt;}
.y24{bottom:126.108800pt;}
.y23{bottom:145.303680pt;}
.y4b{bottom:156.762240pt;}
.y22{bottom:164.660480pt;}
.y21{bottom:184.017280pt;}
.y4a{bottom:186.835200pt;}
.y20{bottom:203.374080pt;}
.y49{bottom:206.192000pt;}
.y48{bottom:225.386880pt;}
.y1f{bottom:238.569600pt;}
.y47{bottom:244.743680pt;}
.y1e{bottom:257.926400pt;}
.y6a{bottom:260.340480pt;}
.y46{bottom:264.100480pt;}
.y1d{bottom:277.283200pt;}
.y69{bottom:278.254720pt;}
.y45{bottom:283.457280pt;}
.y68{bottom:296.168960pt;}
.y1c{bottom:296.640000pt;}
.y44{bottom:302.652160pt;}
.y1b{bottom:315.840000pt;}
.y43{bottom:322.008960pt;}
.y67{bottom:324.814080pt;}
.y1a{bottom:335.228800pt;}
.y42{bottom:341.365760pt;}
.y66{bottom:342.728320pt;}
.y19{bottom:354.585600pt;}
.y65{bottom:360.642560pt;}
.y41{bottom:360.722560pt;}
.y18{bottom:373.942400pt;}
.y40{bottom:379.917440pt;}
.y64{bottom:389.125760pt;}
.y17{bottom:393.137280pt;}
.y3f{bottom:399.274240pt;}
.y63{bottom:407.040000pt;}
.y16{bottom:412.494080pt;}
.y3e{bottom:429.347200pt;}
.y62{bottom:435.688960pt;}
.y15{bottom:447.851520pt;}
.y61{bottom:453.603200pt;}
.y3d{bottom:459.272960pt;}
.y14{bottom:467.208320pt;}
.y60{bottom:471.517440pt;}
.y13{bottom:486.403200pt;}
.y3c{bottom:489.198720pt;}
.y5f{bottom:500.000640pt;}
.y12{bottom:505.760000pt;}
.y3b{bottom:508.555520pt;}
.y3a{bottom:527.912320pt;}
.y5e{bottom:528.645760pt;}
.y11{bottom:541.162880pt;}
.y5d{bottom:546.560000pt;}
.y39{bottom:547.269120pt;}
.y38{bottom:566.464000pt;}
.y5c{bottom:575.089920pt;}
.y10{bottom:576.520320pt;}
.y37{bottom:585.820800pt;}
.y5b{bottom:593.004160pt;}
.y36{bottom:605.177600pt;}
.y5a{bottom:610.918400pt;}
.yf{bottom:611.715840pt;}
.y35{bottom:624.534400pt;}
.ye{bottom:631.072640pt;}
.y59{bottom:639.401600pt;}
.y34{bottom:643.729280pt;}
.yd{bottom:650.429440pt;}
.y58{bottom:657.315840pt;}
.y33{bottom:663.248000pt;}
.yc{bottom:669.786240pt;}
.y57{bottom:675.230080pt;}
.yb{bottom:688.981120pt;}
.y32{bottom:698.443520pt;}
.y56{bottom:705.303040pt;}
.ya{bottom:708.337920pt;}
.y31{bottom:717.800320pt;}
.y55{bottom:724.497920pt;}
.y9{bottom:727.694720pt;}
.y30{bottom:736.995200pt;}
.y8{bottom:747.051520pt;}
.y54{bottom:753.143040pt;}
.y2f{bottom:756.352000pt;}
.y7{bottom:766.246400pt;}
.y53{bottom:771.057280pt;}
.y2e{bottom:775.708800pt;}
.y6{bottom:785.603200pt;}
.y52{bottom:788.971520pt;}
.y2d{bottom:795.065600pt;}
.y5{bottom:804.960000pt;}
.y2c{bottom:814.260480pt;}
.y51{bottom:817.454720pt;}
.y2b{bottom:833.779200pt;}
.y50{bottom:835.368960pt;}
.y4{bottom:840.330240pt;}
.y4f{bottom:864.014080pt;}
.y2a{bottom:868.974720pt;}
.y3{bottom:875.687680pt;}
.y4e{bottom:881.928320pt;}
.y29{bottom:888.331520pt;}
.y28{bottom:907.526400pt;}
.y4d{bottom:910.411520pt;}
.y2{bottom:910.883200pt;}
.y27{bottom:926.883200pt;}
.y4c{bottom:928.325760pt;}
.y1{bottom:930.240000pt;}
.y26{bottom:946.240000pt;}
.h2{height:39.272500pt;}
.h1{height:43.930000pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.000000pt;}
.x2{left:144.016640pt;}
}




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