
    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_b139256388933306b2921438.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.979980;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_73fc5fe5c446e0de1b20b29f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.979980;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_408f64a38eb95b4fa2d72ac6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.758789;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_812b541779506618b98fe675.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.772949;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_504edb425dd2f5f1d5822e80.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.774902;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_d59a11a29765f52c02ad90a7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.979980;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:-25.200000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:28.800000px;}
.ls19{letter-spacing:-28.980000px;}
.ls14{letter-spacing:-16.560000px;}
.ls6{letter-spacing:-8.340000px;}
.ls1a{letter-spacing:-3.684000px;}
.ls8{letter-spacing:-1.350000px;}
.ls13{letter-spacing:-0.180000px;}
.ls17{letter-spacing:-0.052560px;}
.lsb{letter-spacing:-0.024180px;}
.ls5{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.028080px;}
.ls4{letter-spacing:0.030960px;}
.ls3{letter-spacing:0.088800px;}
.lsc{letter-spacing:0.183000px;}
.ls2{letter-spacing:0.252720px;}
.lsf{letter-spacing:0.288000px;}
.lse{letter-spacing:0.348000px;}
.ls0{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.379200px;}
.ls1{letter-spacing:27.720000px;}
.ls9{letter-spacing:48.878784px;}
.lsa{letter-spacing:48.958560px;}
.ls12{letter-spacing:52.881984px;}
.ls11{letter-spacing:52.932960px;}
.ls10{letter-spacing:59.249664px;}
.ls18{letter-spacing:59.329440px;}
.ls15{letter-spacing:62.041824px;}
.ls16{letter-spacing:62.121600px;}
.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;}
}
.ws9{word-spacing:-66.653280px;}
.wsc{word-spacing:-65.052000px;}
.ws16{word-spacing:-53.482752px;}
.wsb{word-spacing:-53.442720px;}
.ws11{word-spacing:-46.677312px;}
.ws14{word-spacing:-46.637280px;}
.ws1b{word-spacing:-45.036000px;}
.ws1d{word-spacing:-29.445840px;}
.ws2{word-spacing:-23.671440px;}
.ws4{word-spacing:-23.446800px;}
.ws3{word-spacing:-23.418720px;}
.ws1{word-spacing:-15.612480px;}
.ws20{word-spacing:-2.917728px;}
.ws7{word-spacing:-2.593680px;}
.ws23{word-spacing:-1.859760px;}
.ws22{word-spacing:-1.394880px;}
.ws25{word-spacing:-1.307760px;}
.ws10{word-spacing:-1.226592px;}
.ws19{word-spacing:-0.959328px;}
.ws6{word-spacing:-0.731040px;}
.wsa{word-spacing:-0.345240px;}
.ws17{word-spacing:-0.329760px;}
.wsf{word-spacing:-0.196704px;}
.ws8{word-spacing:0.000000px;}
.ws1a{word-spacing:0.066240px;}
.wsd{word-spacing:0.120000px;}
.wse{word-spacing:0.216000px;}
.ws12{word-spacing:0.739440px;}
.ws18{word-spacing:0.784080px;}
.ws13{word-spacing:0.818640px;}
.ws1e{word-spacing:0.836640px;}
.ws15{word-spacing:1.169184px;}
.ws24{word-spacing:1.268640px;}
.ws0{word-spacing:1.795392px;}
.ws5{word-spacing:2.412720px;}
.ws21{word-spacing:7.173216px;}
.ws1c{word-spacing:45.091920px;}
.ws1f{word-spacing:57.507840px;}
._18{margin-left:-38.921760px;}
._f{margin-left:-23.667696px;}
._d{margin-left:-20.484144px;}
._e{margin-left:-18.484704px;}
._11{margin-left:-15.918768px;}
._c{margin-left:-14.196240px;}
._7{margin-left:-11.962080px;}
._3{margin-left:-9.765216px;}
._5{margin-left:-8.755872px;}
._b{margin-left:-7.625136px;}
._1{margin-left:-5.382000px;}
._15{margin-left:-4.194000px;}
._a{margin-left:-2.688912px;}
._0{margin-left:-1.639008px;}
._2{width:1.170000px;}
._4{width:3.164832px;}
._10{width:4.718016px;}
._9{width:8.631600px;}
._6{width:11.732016px;}
._13{width:15.807936px;}
._8{width:22.191408px;}
._16{width:28.596000px;}
._1a{width:30.565440px;}
._19{width:43.667472px;}
._12{width:48.042720px;}
._14{width:49.533744px;}
._1b{width:51.330816px;}
._1c{width:52.362048px;}
._17{width:73.215360px;}
.fc5{color:rgb(192,0,0);}
.fc4{color:transparent;}
.fc3{color:rgb(56,145,167);}
.fc6{color:rgb(66,85,25);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(50,14,4);}
.fc0{color:rgb(87,35,20);}
.fs4{font-size:56.160000px;}
.fs3{font-size:64.080000px;}
.fs5{font-size:84.240000px;}
.fs6{font-size:84.384000px;}
.fs2{font-size:95.904000px;}
.fsd{font-size:108.000000px;}
.fs13{font-size:129.600000px;}
.fs11{font-size:129.744000px;}
.fs15{font-size:134.640000px;}
.fse{font-size:134.784000px;}
.fsc{font-size:153.360000px;}
.fs9{font-size:153.504000px;}
.fs14{font-size:162.000000px;}
.fs12{font-size:162.144000px;}
.fs10{font-size:167.760000px;}
.fsf{font-size:167.904000px;}
.fsb{font-size:192.240000px;}
.fsa{font-size:192.384000px;}
.fs1{font-size:234.000000px;}
.fs0{font-size:234.144000px;}
.fs7{font-size:239.760000px;}
.fs8{font-size:257.760000px;}
.y0{bottom:0.000000px;}
.y10{bottom:23.004000px;}
.yf{bottom:73.404000px;}
.ye{bottom:98.604000px;}
.y3b{bottom:108.540000px;}
.y29{bottom:113.940000px;}
.y20{bottom:157.170000px;}
.y28{bottom:159.330000px;}
.y3a{bottom:162.930000px;}
.y1a{bottom:177.915000px;}
.yd{bottom:196.665000px;}
.y39{bottom:208.290000px;}
.y27{bottom:213.690000px;}
.y1f{bottom:223.770000px;}
.yc{bottom:225.870000px;}
.y38{bottom:253.650000px;}
.yb{bottom:261.330000px;}
.y26{bottom:268.050000px;}
.y19{bottom:272.595000px;}
.y1e{bottom:281.415000px;}
.y37{bottom:299.055000px;}
.ya{bottom:313.350000px;}
.y25{bottom:323.895000px;}
.y1d{bottom:339.015000px;}
.y9{bottom:342.510000px;}
.y1b{bottom:365.070000px;}
.y32{bottom:376.590000px;}
.y8{bottom:378.000000px;}
.y3d{bottom:378.930000px;}
.y31{bottom:382.935000px;}
.y2b{bottom:383.190000px;}
.y16{bottom:396.615000px;}
.y1c{bottom:405.615000px;}
.y36{bottom:407.775000px;}
.y7{bottom:430.020000px;}
.y30{bottom:430.815000px;}
.y11{bottom:444.090000px;}
.y24{bottom:444.165000px;}
.y35{bottom:453.165000px;}
.y6{bottom:459.180000px;}
.y15{bottom:463.245000px;}
.y2f{bottom:469.725000px;}
.y23{bottom:489.525000px;}
.y5{bottom:494.640000px;}
.y34{bottom:498.525000px;}
.y2e{bottom:517.605000px;}
.y3c{bottom:520.845000px;}
.y14{bottom:529.845000px;}
.y4{bottom:540.750000px;}
.y22{bottom:543.885000px;}
.y33{bottom:552.885000px;}
.y2d{bottom:556.485000px;}
.y13{bottom:587.490000px;}
.y21{bottom:598.290000px;}
.y3{bottom:602.820000px;}
.y2c{bottom:604.410000px;}
.y18{bottom:653.685000px;}
.y2{bottom:673.020000px;}
.y12{bottom:686.625000px;}
.y2a{bottom:688.785000px;}
.y17{bottom:723.885000px;}
.y1{bottom:743.250000px;}
.h4{height:42.120000px;}
.h5{height:63.180000px;}
.h6{height:63.288000px;}
.h3{height:76.860000px;}
.hb{height:81.000000px;}
.h11{height:121.500000px;}
.h10{height:121.608000px;}
.hf{height:125.820000px;}
.hc{height:125.928000px;}
.hd{height:127.458281px;}
.he{height:127.567687px;}
.ha{height:144.180000px;}
.h9{height:144.288000px;}
.h2{height:175.500000px;}
.h1{height:175.608000px;}
.h7{height:179.820000px;}
.h8{height:193.320000px;}
.h0{height:810.000000px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.xc{left:143.675984px;}
.x1{left:159.584984px;}
.xe{left:180.389984px;}
.x11{left:185.114984px;}
.xf{left:190.109984px;}
.x2{left:219.749984px;}
.x10{left:223.589984px;}
.x13{left:227.909984px;}
.x14{left:255.989984px;}
.xd{left:315.389984px;}
.x16{left:333.614984px;}
.x7{left:431.459984px;}
.x3{left:443.879984px;}
.x6{left:455.939984px;}
.xa{left:462.779984px;}
.x5{left:467.099984px;}
.x8{left:482.939984px;}
.x4{left:494.279984px;}
.xb{left:497.159984px;}
.x9{left:517.859984px;}
.x15{left:746.534984px;}
.x12{left:773.744984px;}
@media print{
.v2{vertical-align:-22.400000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:25.600000pt;}
.ls19{letter-spacing:-25.760000pt;}
.ls14{letter-spacing:-14.720000pt;}
.ls6{letter-spacing:-7.413333pt;}
.ls1a{letter-spacing:-3.274667pt;}
.ls8{letter-spacing:-1.200000pt;}
.ls13{letter-spacing:-0.160000pt;}
.ls17{letter-spacing:-0.046720pt;}
.lsb{letter-spacing:-0.021493pt;}
.ls5{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.024960pt;}
.ls4{letter-spacing:0.027520pt;}
.ls3{letter-spacing:0.078933pt;}
.lsc{letter-spacing:0.162667pt;}
.ls2{letter-spacing:0.224640pt;}
.lsf{letter-spacing:0.256000pt;}
.lse{letter-spacing:0.309333pt;}
.ls0{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.337067pt;}
.ls1{letter-spacing:24.640000pt;}
.ls9{letter-spacing:43.447808pt;}
.lsa{letter-spacing:43.518720pt;}
.ls12{letter-spacing:47.006208pt;}
.ls11{letter-spacing:47.051520pt;}
.ls10{letter-spacing:52.666368pt;}
.ls18{letter-spacing:52.737280pt;}
.ls15{letter-spacing:55.148288pt;}
.ls16{letter-spacing:55.219200pt;}
.ws9{word-spacing:-59.247360pt;}
.wsc{word-spacing:-57.824000pt;}
.ws16{word-spacing:-47.540224pt;}
.wsb{word-spacing:-47.504640pt;}
.ws11{word-spacing:-41.490944pt;}
.ws14{word-spacing:-41.455360pt;}
.ws1b{word-spacing:-40.032000pt;}
.ws1d{word-spacing:-26.174080pt;}
.ws2{word-spacing:-21.041280pt;}
.ws4{word-spacing:-20.841600pt;}
.ws3{word-spacing:-20.816640pt;}
.ws1{word-spacing:-13.877760pt;}
.ws20{word-spacing:-2.593536pt;}
.ws7{word-spacing:-2.305493pt;}
.ws23{word-spacing:-1.653120pt;}
.ws22{word-spacing:-1.239893pt;}
.ws25{word-spacing:-1.162453pt;}
.ws10{word-spacing:-1.090304pt;}
.ws19{word-spacing:-0.852736pt;}
.ws6{word-spacing:-0.649813pt;}
.wsa{word-spacing:-0.306880pt;}
.ws17{word-spacing:-0.293120pt;}
.wsf{word-spacing:-0.174848pt;}
.ws8{word-spacing:0.000000pt;}
.ws1a{word-spacing:0.058880pt;}
.wsd{word-spacing:0.106667pt;}
.wse{word-spacing:0.192000pt;}
.ws12{word-spacing:0.657280pt;}
.ws18{word-spacing:0.696960pt;}
.ws13{word-spacing:0.727680pt;}
.ws1e{word-spacing:0.743680pt;}
.ws15{word-spacing:1.039275pt;}
.ws24{word-spacing:1.127680pt;}
.ws0{word-spacing:1.595904pt;}
.ws5{word-spacing:2.144640pt;}
.ws21{word-spacing:6.376192pt;}
.ws1c{word-spacing:40.081707pt;}
.ws1f{word-spacing:51.118080pt;}
._18{margin-left:-34.597120pt;}
._f{margin-left:-21.037952pt;}
._d{margin-left:-18.208128pt;}
._e{margin-left:-16.430848pt;}
._11{margin-left:-14.150016pt;}
._c{margin-left:-12.618880pt;}
._7{margin-left:-10.632960pt;}
._3{margin-left:-8.680192pt;}
._5{margin-left:-7.782997pt;}
._b{margin-left:-6.777899pt;}
._1{margin-left:-4.784000pt;}
._15{margin-left:-3.728000pt;}
._a{margin-left:-2.390144pt;}
._0{margin-left:-1.456896pt;}
._2{width:1.040000pt;}
._4{width:2.813184pt;}
._10{width:4.193792pt;}
._9{width:7.672533pt;}
._6{width:10.428459pt;}
._13{width:14.051499pt;}
._8{width:19.725696pt;}
._16{width:25.418667pt;}
._1a{width:27.169280pt;}
._19{width:38.815531pt;}
._12{width:42.704640pt;}
._14{width:44.029995pt;}
._1b{width:45.627392pt;}
._1c{width:46.544043pt;}
._17{width:65.080320pt;}
.fs4{font-size:49.920000pt;}
.fs3{font-size:56.960000pt;}
.fs5{font-size:74.880000pt;}
.fs6{font-size:75.008000pt;}
.fs2{font-size:85.248000pt;}
.fsd{font-size:96.000000pt;}
.fs13{font-size:115.200000pt;}
.fs11{font-size:115.328000pt;}
.fs15{font-size:119.680000pt;}
.fse{font-size:119.808000pt;}
.fsc{font-size:136.320000pt;}
.fs9{font-size:136.448000pt;}
.fs14{font-size:144.000000pt;}
.fs12{font-size:144.128000pt;}
.fs10{font-size:149.120000pt;}
.fsf{font-size:149.248000pt;}
.fsb{font-size:170.880000pt;}
.fsa{font-size:171.008000pt;}
.fs1{font-size:208.000000pt;}
.fs0{font-size:208.128000pt;}
.fs7{font-size:213.120000pt;}
.fs8{font-size:229.120000pt;}
.y0{bottom:0.000000pt;}
.y10{bottom:20.448000pt;}
.yf{bottom:65.248000pt;}
.ye{bottom:87.648000pt;}
.y3b{bottom:96.480000pt;}
.y29{bottom:101.280000pt;}
.y20{bottom:139.706667pt;}
.y28{bottom:141.626667pt;}
.y3a{bottom:144.826667pt;}
.y1a{bottom:158.146667pt;}
.yd{bottom:174.813333pt;}
.y39{bottom:185.146667pt;}
.y27{bottom:189.946667pt;}
.y1f{bottom:198.906667pt;}
.yc{bottom:200.773333pt;}
.y38{bottom:225.466667pt;}
.yb{bottom:232.293333pt;}
.y26{bottom:238.266667pt;}
.y19{bottom:242.306667pt;}
.y1e{bottom:250.146667pt;}
.y37{bottom:265.826667pt;}
.ya{bottom:278.533333pt;}
.y25{bottom:287.906667pt;}
.y1d{bottom:301.346667pt;}
.y9{bottom:304.453333pt;}
.y1b{bottom:324.506667pt;}
.y32{bottom:334.746667pt;}
.y8{bottom:336.000000pt;}
.y3d{bottom:336.826667pt;}
.y31{bottom:340.386667pt;}
.y2b{bottom:340.613333pt;}
.y16{bottom:352.546667pt;}
.y1c{bottom:360.546667pt;}
.y36{bottom:362.466667pt;}
.y7{bottom:382.240000pt;}
.y30{bottom:382.946667pt;}
.y11{bottom:394.746667pt;}
.y24{bottom:394.813333pt;}
.y35{bottom:402.813333pt;}
.y6{bottom:408.160000pt;}
.y15{bottom:411.773333pt;}
.y2f{bottom:417.533333pt;}
.y23{bottom:435.133333pt;}
.y5{bottom:439.680000pt;}
.y34{bottom:443.133333pt;}
.y2e{bottom:460.093333pt;}
.y3c{bottom:462.973333pt;}
.y14{bottom:470.973333pt;}
.y4{bottom:480.666667pt;}
.y22{bottom:483.453333pt;}
.y33{bottom:491.453333pt;}
.y2d{bottom:494.653333pt;}
.y13{bottom:522.213333pt;}
.y21{bottom:531.813333pt;}
.y3{bottom:535.840000pt;}
.y2c{bottom:537.253333pt;}
.y18{bottom:581.053333pt;}
.y2{bottom:598.240000pt;}
.y12{bottom:610.333333pt;}
.y2a{bottom:612.253333pt;}
.y17{bottom:643.453333pt;}
.y1{bottom:660.666667pt;}
.h4{height:37.440000pt;}
.h5{height:56.160000pt;}
.h6{height:56.256000pt;}
.h3{height:68.320000pt;}
.hb{height:72.000000pt;}
.h11{height:108.000000pt;}
.h10{height:108.096000pt;}
.hf{height:111.840000pt;}
.hc{height:111.936000pt;}
.hd{height:113.296250pt;}
.he{height:113.393500pt;}
.ha{height:128.160000pt;}
.h9{height:128.256000pt;}
.h2{height:156.000000pt;}
.h1{height:156.096000pt;}
.h7{height:159.840000pt;}
.h8{height:171.840000pt;}
.h0{height:720.000000pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.xc{left:127.711986pt;}
.x1{left:141.853319pt;}
.xe{left:160.346652pt;}
.x11{left:164.546652pt;}
.xf{left:168.986652pt;}
.x2{left:195.333319pt;}
.x10{left:198.746652pt;}
.x13{left:202.586652pt;}
.x14{left:227.546652pt;}
.xd{left:280.346652pt;}
.x16{left:296.546652pt;}
.x7{left:383.519986pt;}
.x3{left:394.559986pt;}
.x6{left:405.279986pt;}
.xa{left:411.359986pt;}
.x5{left:415.199986pt;}
.x8{left:429.279986pt;}
.x4{left:439.359986pt;}
.xb{left:441.919986pt;}
.x9{left:460.319986pt;}
.x15{left:663.586652pt;}
.x12{left:687.773319pt;}
}




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