
    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_a2ea9ee4e3a1d955d9695a7a.woff')format("woff");}.ff1{font-family:ff1;line-height:1.065430;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_1847feb3d037e73732e33fc4.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_3466a1459a0e89fef9946026.woff')format("woff");}.ff3{font-family:ff3;line-height:0.912109;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_41dad3d270da464b9c2473f6.woff')format("woff");}.ff4{font-family:ff4;line-height:1.065430;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_6d03f6914d5d342f5191a5f9.woff')format("woff");}.ff5{font-family:ff5;line-height:1.084473;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_0e73810baf74a2abac5eb872.woff')format("woff");}.ff6{font-family:ff6;line-height:1.084473;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_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_092ec486e6104df3a9339510.woff')format("woff");}.ff8{font-family:ff8;line-height:1.402354;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_d9d16cd7508d70a7835de012.woff')format("woff");}.ff9{font-family:ff9;line-height:1.064941;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_b0da232c2bf2c95947f4a13d.woff')format("woff");}.ffa{font-family:ffa;line-height:1.064941;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;}
.ls10{letter-spacing:-0.289200px;}
.ls4{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.006000px;}
.ls12{letter-spacing:0.063600px;}
.lsc{letter-spacing:0.126000px;}
.lsd{letter-spacing:0.186000px;}
.ls5{letter-spacing:0.319200px;}
.ls6{letter-spacing:0.349200px;}
.lsa{letter-spacing:0.400440px;}
.ls0{letter-spacing:1.095000px;}
.ls8{letter-spacing:1.122120px;}
.ls9{letter-spacing:2.286000px;}
.ls1{letter-spacing:5.382120px;}
.ls2{letter-spacing:16.002120px;}
.ls3{letter-spacing:33.042120px;}
.lsf{letter-spacing:62.802120px;}
.lse{letter-spacing:62.982120px;}
.ls11{letter-spacing:94.797588px;}
.lsb{letter-spacing:126.013092px;}
.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;}
}
.ws1{word-spacing:-16.267080px;}
.ws2{word-spacing:-15.917880px;}
.ws4{word-spacing:-15.628680px;}
.ws0{word-spacing:-12.023640px;}
.ws3{word-spacing:0.000000px;}
._c{margin-left:-6.104356px;}
._d{margin-left:-4.891360px;}
._2{margin-left:-3.350670px;}
._3{margin-left:-2.152520px;}
._1{margin-left:-1.055520px;}
._0{width:1.979100px;}
._4{width:3.552173px;}
._e{width:5.336096px;}
._b{width:7.408820px;}
._20{width:8.746314px;}
._11{width:10.780746px;}
._10{width:12.863244px;}
._f{width:14.477399px;}
._5{width:17.151068px;}
._6{width:19.051502px;}
._21{width:20.403828px;}
._a{width:22.428662px;}
._1a{width:24.310944px;}
._1b{width:25.410037px;}
._1e{width:28.547976px;}
._1f{width:29.552045px;}
._1c{width:32.461404px;}
._1d{width:33.481841px;}
._24{width:34.859699px;}
._25{width:36.115259px;}
._8{width:37.526184px;}
._7{width:38.882810px;}
._9{width:39.926220px;}
._2a{width:41.918522px;}
._12{width:43.057958px;}
._13{width:44.355481px;}
._28{width:45.973502px;}
._27{width:51.344720px;}
._26{width:52.601358px;}
._29{width:54.482576px;}
._17{width:59.619696px;}
._19{width:60.635822px;}
._18{width:61.963736px;}
._22{width:63.655513px;}
._23{width:65.923733px;}
._16{width:68.662868px;}
._14{width:70.718570px;}
._15{width:71.775168px;}
.fc1{color:rgb(56,86,35);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(237,125,49);}
.fc0{color:rgb(255,255,255);}
.fs3{font-size:48.945600px;}
.fs4{font-size:53.202000px;}
.fs6{font-size:59.586000px;}
.fs1{font-size:65.970000px;}
.fs0{font-size:72.354000px;}
.fs5{font-size:82.998000px;}
.fs2{font-size:95.766000px;}
.y0{bottom:0.000000px;}
.ya{bottom:1.590000px;}
.y10{bottom:3.180000px;}
.ye{bottom:3.195000px;}
.y4{bottom:4.257000px;}
.y6{bottom:5.320500px;}
.y12{bottom:5.850000px;}
.y8{bottom:7.981500px;}
.yd{bottom:16.500000px;}
.yc{bottom:30.855000px;}
.y7{bottom:42.561000px;}
.y5{bottom:45.222000px;}
.y3{bottom:46.285500px;}
.y2{bottom:51.606000px;}
.y3e{bottom:93.670500px;}
.y3d{bottom:117.612000px;}
.y68{bottom:123.463500px;}
.y3c{bottom:142.084500px;}
.y67{bottom:147.937500px;}
.y3b{bottom:166.560000px;}
.y66{bottom:171.915000px;}
.y3a{bottom:190.530000px;}
.y65{bottom:196.380000px;}
.y39{bottom:215.010000px;}
.y64{bottom:220.320000px;}
.y38{bottom:238.950000px;}
.y63{bottom:244.800000px;}
.y37{bottom:263.460000px;}
.y62{bottom:269.310000px;}
.y36{bottom:287.925000px;}
.y61{bottom:293.250000px;}
.y35{bottom:311.865000px;}
.y60{bottom:317.715000px;}
.y34{bottom:336.375000px;}
.y5f{bottom:342.225000px;}
.y33{bottom:360.855000px;}
.y5e{bottom:366.165000px;}
.y32{bottom:384.795000px;}
.y5d{bottom:390.645000px;}
.y31{bottom:409.260000px;}
.y5c{bottom:414.615000px;}
.y30{bottom:433.245000px;}
.y5b{bottom:439.095000px;}
.y2f{bottom:457.710000px;}
.y5a{bottom:463.560000px;}
.y2e{bottom:482.190000px;}
.y59{bottom:487.500000px;}
.y2d{bottom:506.160000px;}
.y58{bottom:512.010000px;}
.y2c{bottom:530.640000px;}
.y57{bottom:535.950000px;}
.y2b{bottom:554.580000px;}
.y56{bottom:560.430000px;}
.y2a{bottom:579.090000px;}
.y55{bottom:584.940000px;}
.y29{bottom:603.555000px;}
.y54{bottom:608.880000px;}
.y28{bottom:627.495000px;}
.y53{bottom:633.345000px;}
.y27{bottom:651.975000px;}
.y52{bottom:657.855000px;}
.y26{bottom:676.485000px;}
.y51{bottom:681.795000px;}
.y25{bottom:700.425000px;}
.y50{bottom:706.275000px;}
.y24{bottom:724.890000px;}
.y4f{bottom:730.215000px;}
.y23{bottom:748.875000px;}
.y72{bottom:754.185000px;}
.y4e{bottom:754.725000px;}
.y22{bottom:773.340000px;}
.y71{bottom:778.665000px;}
.y4d{bottom:779.190000px;}
.y21{bottom:797.820000px;}
.y4c{bottom:803.130000px;}
.y20{bottom:821.790000px;}
.y70{bottom:827.115000px;}
.y4b{bottom:827.640000px;}
.y1f{bottom:846.270000px;}
.y4a{bottom:851.580000px;}
.y1e{bottom:870.210000px;}
.y6f{bottom:875.520000px;}
.y49{bottom:876.060000px;}
.y1d{bottom:894.675000px;}
.y6e{bottom:900.030000px;}
.y48{bottom:900.570000px;}
.y1c{bottom:919.185000px;}
.y47{bottom:924.510000px;}
.y1b{bottom:943.125000px;}
.y6d{bottom:948.450000px;}
.y46{bottom:948.975000px;}
.y1a{bottom:967.605000px;}
.y6c{bottom:972.915000px;}
.y45{bottom:973.455000px;}
.y19{bottom:988.920000px;}
.y6b{bottom:996.900000px;}
.y44{bottom:997.425000px;}
.y18{bottom:1009.665000px;}
.y6a{bottom:1021.365000px;}
.y43{bottom:1021.905000px;}
.y17{bottom:1030.950000px;}
.y69{bottom:1042.650000px;}
.y42{bottom:1045.845000px;}
.y16{bottom:1052.235000px;}
.y41{bottom:1070.355000px;}
.y15{bottom:1073.010000px;}
.y14{bottom:1094.295000px;}
.y40{bottom:1094.820000px;}
.y13{bottom:1115.580000px;}
.y3f{bottom:1118.760000px;}
.y11{bottom:1150.725000px;}
.yf{bottom:1156.050000px;}
.yb{bottom:1173.600000px;}
.y9{bottom:1214.040000px;}
.y1{bottom:1246.515000px;}
.hc{height:13.787550px;}
.hd{height:18.058500px;}
.h4{height:19.152000px;}
.h6{height:20.217000px;}
.h7{height:22.876500px;}
.h8{height:23.962500px;}
.hb{height:41.441245px;}
.ha{height:42.000000px;}
.he{height:45.045053px;}
.h2{height:61.260662px;}
.h10{height:62.673826px;}
.h5{height:64.745947px;}
.hf{height:70.272721px;}
.h3{height:71.011494px;}
.h11{height:74.368510px;}
.h9{height:81.083127px;}
.h1{height:1263.000000px;}
.h0{height:1263.015000px;}
.w2{width:66.027000px;}
.w8{width:125.061000px;}
.w5{width:147.411000px;}
.w4{width:149.533500px;}
.w7{width:192.660000px;}
.w6{width:270.930000px;}
.w3{width:340.678500px;}
.w1{width:892.500000px;}
.w0{width:892.725000px;}
.x0{left:0.000000px;}
.x5{left:11.176500px;}
.x3{left:16.515000px;}
.x8{left:17.535000px;}
.x4{left:77.742000px;}
.x1{left:85.158000px;}
.x12{left:127.755000px;}
.x7{left:163.995000px;}
.x9{left:171.450000px;}
.xb{left:184.185000px;}
.x10{left:222.000000px;}
.x11{left:277.890000px;}
.xf{left:283.740000px;}
.xc{left:315.135000px;}
.xd{left:322.080000px;}
.xe{left:358.260000px;}
.x13{left:390.225000px;}
.x2{left:438.645000px;}
.x6{left:676.620000px;}
.xa{left:708.540000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls10{letter-spacing:-0.257067pt;}
.ls4{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.005333pt;}
.ls12{letter-spacing:0.056533pt;}
.lsc{letter-spacing:0.112000pt;}
.lsd{letter-spacing:0.165333pt;}
.ls5{letter-spacing:0.283733pt;}
.ls6{letter-spacing:0.310400pt;}
.lsa{letter-spacing:0.355947pt;}
.ls0{letter-spacing:0.973333pt;}
.ls8{letter-spacing:0.997440pt;}
.ls9{letter-spacing:2.032000pt;}
.ls1{letter-spacing:4.784107pt;}
.ls2{letter-spacing:14.224107pt;}
.ls3{letter-spacing:29.370773pt;}
.lsf{letter-spacing:55.824107pt;}
.lse{letter-spacing:55.984107pt;}
.ls11{letter-spacing:84.264523pt;}
.lsb{letter-spacing:112.011637pt;}
.ws1{word-spacing:-14.459627pt;}
.ws2{word-spacing:-14.149227pt;}
.ws4{word-spacing:-13.892160pt;}
.ws0{word-spacing:-10.687680pt;}
.ws3{word-spacing:0.000000pt;}
._c{margin-left:-5.426094pt;}
._d{margin-left:-4.347875pt;}
._2{margin-left:-2.978373pt;}
._3{margin-left:-1.913351pt;}
._1{margin-left:-0.938240pt;}
._0{width:1.759200pt;}
._4{width:3.157487pt;}
._e{width:4.743197pt;}
._b{width:6.585618pt;}
._20{width:7.774501pt;}
._11{width:9.582885pt;}
._10{width:11.433995pt;}
._f{width:12.868799pt;}
._5{width:15.245394pt;}
._6{width:16.934669pt;}
._21{width:18.136736pt;}
._a{width:19.936589pt;}
._1a{width:21.609728pt;}
._1b{width:22.586700pt;}
._1e{width:25.375979pt;}
._1f{width:26.268484pt;}
._1c{width:28.854581pt;}
._1d{width:29.761636pt;}
._24{width:30.986399pt;}
._25{width:32.102452pt;}
._8{width:33.356608pt;}
._7{width:34.562498pt;}
._9{width:35.489973pt;}
._2a{width:37.260909pt;}
._12{width:38.273741pt;}
._13{width:39.427094pt;}
._28{width:40.865335pt;}
._27{width:45.639751pt;}
._26{width:46.756763pt;}
._29{width:48.428957pt;}
._17{width:52.995285pt;}
._19{width:53.898509pt;}
._18{width:55.078877pt;}
._22{width:56.582678pt;}
._23{width:58.598874pt;}
._16{width:61.033661pt;}
._14{width:62.860951pt;}
._15{width:63.800149pt;}
.fs3{font-size:43.507200pt;}
.fs4{font-size:47.290667pt;}
.fs6{font-size:52.965333pt;}
.fs1{font-size:58.640000pt;}
.fs0{font-size:64.314667pt;}
.fs5{font-size:73.776000pt;}
.fs2{font-size:85.125333pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:1.413333pt;}
.y10{bottom:2.826667pt;}
.ye{bottom:2.840000pt;}
.y4{bottom:3.784000pt;}
.y6{bottom:4.729333pt;}
.y12{bottom:5.200000pt;}
.y8{bottom:7.094667pt;}
.yd{bottom:14.666667pt;}
.yc{bottom:27.426667pt;}
.y7{bottom:37.832000pt;}
.y5{bottom:40.197333pt;}
.y3{bottom:41.142667pt;}
.y2{bottom:45.872000pt;}
.y3e{bottom:83.262667pt;}
.y3d{bottom:104.544000pt;}
.y68{bottom:109.745333pt;}
.y3c{bottom:126.297333pt;}
.y67{bottom:131.500000pt;}
.y3b{bottom:148.053333pt;}
.y66{bottom:152.813333pt;}
.y3a{bottom:169.360000pt;}
.y65{bottom:174.560000pt;}
.y39{bottom:191.120000pt;}
.y64{bottom:195.840000pt;}
.y38{bottom:212.400000pt;}
.y63{bottom:217.600000pt;}
.y37{bottom:234.186667pt;}
.y62{bottom:239.386667pt;}
.y36{bottom:255.933333pt;}
.y61{bottom:260.666667pt;}
.y35{bottom:277.213333pt;}
.y60{bottom:282.413333pt;}
.y34{bottom:299.000000pt;}
.y5f{bottom:304.200000pt;}
.y33{bottom:320.760000pt;}
.y5e{bottom:325.480000pt;}
.y32{bottom:342.040000pt;}
.y5d{bottom:347.240000pt;}
.y31{bottom:363.786667pt;}
.y5c{bottom:368.546667pt;}
.y30{bottom:385.106667pt;}
.y5b{bottom:390.306667pt;}
.y2f{bottom:406.853333pt;}
.y5a{bottom:412.053333pt;}
.y2e{bottom:428.613333pt;}
.y59{bottom:433.333333pt;}
.y2d{bottom:449.920000pt;}
.y58{bottom:455.120000pt;}
.y2c{bottom:471.680000pt;}
.y57{bottom:476.400000pt;}
.y2b{bottom:492.960000pt;}
.y56{bottom:498.160000pt;}
.y2a{bottom:514.746667pt;}
.y55{bottom:519.946667pt;}
.y29{bottom:536.493333pt;}
.y54{bottom:541.226667pt;}
.y28{bottom:557.773333pt;}
.y53{bottom:562.973333pt;}
.y27{bottom:579.533333pt;}
.y52{bottom:584.760000pt;}
.y26{bottom:601.320000pt;}
.y51{bottom:606.040000pt;}
.y25{bottom:622.600000pt;}
.y50{bottom:627.800000pt;}
.y24{bottom:644.346667pt;}
.y4f{bottom:649.080000pt;}
.y23{bottom:665.666667pt;}
.y72{bottom:670.386667pt;}
.y4e{bottom:670.866667pt;}
.y22{bottom:687.413333pt;}
.y71{bottom:692.146667pt;}
.y4d{bottom:692.613333pt;}
.y21{bottom:709.173333pt;}
.y4c{bottom:713.893333pt;}
.y20{bottom:730.480000pt;}
.y70{bottom:735.213333pt;}
.y4b{bottom:735.680000pt;}
.y1f{bottom:752.240000pt;}
.y4a{bottom:756.960000pt;}
.y1e{bottom:773.520000pt;}
.y6f{bottom:778.240000pt;}
.y49{bottom:778.720000pt;}
.y1d{bottom:795.266667pt;}
.y6e{bottom:800.026667pt;}
.y48{bottom:800.506667pt;}
.y1c{bottom:817.053333pt;}
.y47{bottom:821.786667pt;}
.y1b{bottom:838.333333pt;}
.y6d{bottom:843.066667pt;}
.y46{bottom:843.533333pt;}
.y1a{bottom:860.093333pt;}
.y6c{bottom:864.813333pt;}
.y45{bottom:865.293333pt;}
.y19{bottom:879.040000pt;}
.y6b{bottom:886.133333pt;}
.y44{bottom:886.600000pt;}
.y18{bottom:897.480000pt;}
.y6a{bottom:907.880000pt;}
.y43{bottom:908.360000pt;}
.y17{bottom:916.400000pt;}
.y69{bottom:926.800000pt;}
.y42{bottom:929.640000pt;}
.y16{bottom:935.320000pt;}
.y41{bottom:951.426667pt;}
.y15{bottom:953.786667pt;}
.y14{bottom:972.706667pt;}
.y40{bottom:973.173333pt;}
.y13{bottom:991.626667pt;}
.y3f{bottom:994.453333pt;}
.y11{bottom:1022.866667pt;}
.yf{bottom:1027.600000pt;}
.yb{bottom:1043.200000pt;}
.y9{bottom:1079.146667pt;}
.y1{bottom:1108.013333pt;}
.hc{height:12.255600pt;}
.hd{height:16.052000pt;}
.h4{height:17.024000pt;}
.h6{height:17.970667pt;}
.h7{height:20.334667pt;}
.h8{height:21.300000pt;}
.hb{height:36.836662pt;}
.ha{height:37.333333pt;}
.he{height:40.040047pt;}
.h2{height:54.453922pt;}
.h10{height:55.710068pt;}
.h5{height:57.551953pt;}
.hf{height:62.464641pt;}
.h3{height:63.121328pt;}
.h11{height:66.105343pt;}
.h9{height:72.073891pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.680000pt;}
.w2{width:58.690667pt;}
.w8{width:111.165333pt;}
.w5{width:131.032000pt;}
.w4{width:132.918667pt;}
.w7{width:171.253333pt;}
.w6{width:240.826667pt;}
.w3{width:302.825333pt;}
.w1{width:793.333333pt;}
.w0{width:793.533333pt;}
.x0{left:0.000000pt;}
.x5{left:9.934667pt;}
.x3{left:14.680000pt;}
.x8{left:15.586667pt;}
.x4{left:69.104000pt;}
.x1{left:75.696000pt;}
.x12{left:113.560000pt;}
.x7{left:145.773333pt;}
.x9{left:152.400000pt;}
.xb{left:163.720000pt;}
.x10{left:197.333333pt;}
.x11{left:247.013333pt;}
.xf{left:252.213333pt;}
.xc{left:280.120000pt;}
.xd{left:286.293333pt;}
.xe{left:318.453333pt;}
.x13{left:346.866667pt;}
.x2{left:389.906667pt;}
.x6{left:601.440000pt;}
.xa{left:629.813333pt;}
}




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