
    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_641f644651f8120f9ec74748.woff')format("woff");}.ff1{font-family:ff1;line-height:0.967285;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_aa6e7d48e24d7278f24a5727.woff')format("woff");}.ff2{font-family:ff2;line-height:1.029785;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_d51971fabb207549bb3cf2e4.woff')format("woff");}.ff3{font-family:ff3;line-height:1.029785;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_8e55a5bcf044c559314bab07.woff')format("woff");}.ff4{font-family:ff4;line-height:1.090332;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_349b068936429570dae99fbb.woff')format("woff");}.ff5{font-family:ff5;line-height:0.941406;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:-3.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:4.320000px;}
.lsa{letter-spacing:-0.216600px;}
.lsb{letter-spacing:-0.066000px;}
.ls3{letter-spacing:-0.060600px;}
.ls2{letter-spacing:-0.009360px;}
.ls0{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.028080px;}
.ls4{letter-spacing:0.053280px;}
.ls1{letter-spacing:0.152400px;}
.ls9{letter-spacing:175.292640px;}
.ls8{letter-spacing:190.195200px;}
.ls7{letter-spacing:211.795200px;}
.ls6{letter-spacing:246.230640px;}
.ls5{letter-spacing:247.670640px;}
.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;}
}
.ws22{word-spacing:-21.035520px;}
.ws0{word-spacing:-20.437920px;}
.ws21{word-spacing:-0.059760px;}
.ws1{word-spacing:0.000000px;}
.ws3d{word-spacing:23.420640px;}
.ws33{word-spacing:23.434560px;}
.ws2f{word-spacing:30.127440px;}
.ws3e{word-spacing:31.576320px;}
.ws34{word-spacing:34.747920px;}
.ws2e{word-spacing:41.484960px;}
.wsd{word-spacing:44.564400px;}
.ws25{word-spacing:44.684400px;}
.ws1d{word-spacing:44.744400px;}
.ws30{word-spacing:45.091440px;}
.ws2b{word-spacing:53.856720px;}
.ws38{word-spacing:59.452560px;}
.ws2d{word-spacing:70.221600px;}
.ws3f{word-spacing:71.817600px;}
.ws2c{word-spacing:72.607440px;}
.ws3c{word-spacing:84.286080px;}
.ws31{word-spacing:94.313280px;}
.ws14{word-spacing:98.169120px;}
.ws3b{word-spacing:105.166080px;}
.ws32{word-spacing:120.719160px;}
.ws39{word-spacing:144.532560px;}
.ws4{word-spacing:150.143520px;}
.ws37{word-spacing:154.257120px;}
.ws24{word-spacing:163.581120px;}
.ws36{word-spacing:182.692560px;}
.ws2a{word-spacing:183.328560px;}
.ws5{word-spacing:185.418720px;}
.ws28{word-spacing:185.538720px;}
.ws29{word-spacing:185.598720px;}
.ws1c{word-spacing:205.341120px;}
.ws3{word-spacing:206.368560px;}
.ws8{word-spacing:207.529920px;}
.ws27{word-spacing:207.649920px;}
.ws26{word-spacing:207.709920px;}
.wsb{word-spacing:207.771480px;}
.ws6{word-spacing:207.891480px;}
.ws1e{word-spacing:207.951480px;}
.ws35{word-spacing:209.178720px;}
.ws10{word-spacing:216.202080px;}
.ws17{word-spacing:217.642080px;}
.ws23{word-spacing:225.784560px;}
.ws3a{word-spacing:232.729920px;}
.ws1f{word-spacing:233.007120px;}
.ws13{word-spacing:233.127120px;}
.ws20{word-spacing:233.187120px;}
.wsa{word-spacing:276.595680px;}
.ws1a{word-spacing:279.510240px;}
.ws16{word-spacing:305.476320px;}
.ws19{word-spacing:370.673760px;}
.ws11{word-spacing:392.334240px;}
.wse{word-spacing:397.567200px;}
.ws1b{word-spacing:418.366560px;}
.wsc{word-spacing:418.481760px;}
.ws18{word-spacing:429.031200px;}
.ws12{word-spacing:459.435360px;}
.ws9{word-spacing:481.493280px;}
.ws7{word-spacing:510.373920px;}
.ws15{word-spacing:528.903840px;}
.wsf{word-spacing:535.545120px;}
.ws2{word-spacing:1404.557760px;}
._2{margin-left:-5.378400px;}
._3{margin-left:-3.346560px;}
._1{margin-left:-1.314720px;}
._0{width:1.135440px;}
._22{width:51.738720px;}
._23{width:53.602320px;}
._7{width:66.377280px;}
._e{width:97.393440px;}
._c{width:98.528160px;}
._1c{width:127.224000px;}
._12{width:160.297200px;}
._13{width:166.304640px;}
._20{width:170.210640px;}
._11{width:181.956960px;}
._f{width:183.985680px;}
._1d{width:191.810640px;}
._6{width:196.770000px;}
._1e{width:199.034640px;}
._1f{width:202.542960px;}
._21{width:203.556960px;}
._d{width:204.660000px;}
._8{width:206.223120px;}
._9{width:207.228960px;}
._1a{width:212.690640px;}
._10{width:224.345280px;}
._4{width:225.400800px;}
._a{width:226.773120px;}
._24{width:228.175200px;}
._16{width:230.214720px;}
._17{width:232.538160px;}
._1b{width:241.514640px;}
._b{width:246.417120px;}
._19{width:258.022560px;}
._25{width:310.548960px;}
._15{width:381.544800px;}
._14{width:382.653120px;}
._5{width:551.122320px;}
._18{width:561.927840px;}
.fc2{color:rgb(70,120,134);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.y0{bottom:0.000000px;}
.y2f{bottom:5.220000px;}
.y18{bottom:5.400000px;}
.y1d{bottom:6.300000px;}
.y5c{bottom:6.840000px;}
.y1a{bottom:7.560000px;}
.y43{bottom:7.740000px;}
.y16{bottom:9.000000px;}
.y5b{bottom:30.780000px;}
.y42{bottom:31.680000px;}
.y15{bottom:32.940000px;}
.y5a{bottom:54.750000px;}
.y41{bottom:55.650000px;}
.y14{bottom:56.910000px;}
.y59{bottom:78.690000px;}
.y40{bottom:79.590000px;}
.y13{bottom:80.850000px;}
.y58{bottom:102.630000px;}
.y3f{bottom:103.530000px;}
.y12{bottom:104.790000px;}
.y57{bottom:126.570000px;}
.y3e{bottom:127.470000px;}
.y11{bottom:128.730000px;}
.y56{bottom:150.510000px;}
.y3d{bottom:151.410000px;}
.y10{bottom:152.670000px;}
.y55{bottom:174.450000px;}
.y3c{bottom:175.350000px;}
.yf{bottom:176.610000px;}
.y54{bottom:198.390000px;}
.y3b{bottom:199.290000px;}
.ye{bottom:200.550000px;}
.y53{bottom:222.330000px;}
.y3a{bottom:223.230000px;}
.yd{bottom:224.490000px;}
.y52{bottom:246.270000px;}
.y39{bottom:247.170000px;}
.yc{bottom:248.430000px;}
.y51{bottom:270.210000px;}
.y38{bottom:271.110000px;}
.yb{bottom:272.370000px;}
.y50{bottom:294.195000px;}
.y37{bottom:295.095000px;}
.ya{bottom:296.355000px;}
.y4f{bottom:318.135000px;}
.y36{bottom:319.035000px;}
.y9{bottom:320.295000px;}
.y4e{bottom:342.075000px;}
.y35{bottom:342.975000px;}
.y8{bottom:344.235000px;}
.y4d{bottom:366.015000px;}
.y34{bottom:366.915000px;}
.y7{bottom:368.175000px;}
.y4c{bottom:389.955000px;}
.y33{bottom:390.855000px;}
.y6{bottom:392.115000px;}
.y4b{bottom:413.895000px;}
.y32{bottom:414.795000px;}
.y5{bottom:416.055000px;}
.y4a{bottom:437.835000px;}
.y31{bottom:438.735000px;}
.y4{bottom:439.995000px;}
.y3{bottom:461.775000px;}
.y30{bottom:462.675000px;}
.y2{bottom:486.615000px;}
.y49{bottom:487.875000px;}
.y2e{bottom:510.555000px;}
.y48{bottom:511.815000px;}
.y1{bottom:530.895000px;}
.y2d{bottom:532.335000px;}
.y45{bottom:534.495000px;}
.y47{bottom:535.755000px;}
.y2c{bottom:556.275000px;}
.y44{bottom:558.465000px;}
.y46{bottom:559.725000px;}
.y2b{bottom:580.245000px;}
.y2a{bottom:604.185000px;}
.y29{bottom:628.125000px;}
.y28{bottom:652.065000px;}
.y27{bottom:676.005000px;}
.y26{bottom:699.945000px;}
.y25{bottom:723.885000px;}
.y24{bottom:747.825000px;}
.y23{bottom:771.765000px;}
.y22{bottom:795.705000px;}
.y21{bottom:819.690000px;}
.y20{bottom:843.630000px;}
.y1f{bottom:867.570000px;}
.y1e{bottom:891.510000px;}
.y1c{bottom:915.450000px;}
.y1b{bottom:939.390000px;}
.y19{bottom:963.330000px;}
.y17{bottom:987.270000px;}
.h4{height:22.500000px;}
.h5{height:22.536000px;}
.h7{height:43.681992px;}
.h9{height:45.305156px;}
.h2{height:45.403594px;}
.h3{height:48.905156px;}
.h8{height:50.443594px;}
.h6{height:57.410156px;}
.h1{height:574.665000px;}
.h0{height:1188.000000px;}
.w1{width:77.436000px;}
.w7{width:575.205000px;}
.w5{width:696.750000px;}
.w6{width:726.810000px;}
.w4{width:750.930000px;}
.w3{width:765.510000px;}
.w2{width:766.950000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5{left:2.700000px;}
.xe{left:6.120000px;}
.xf{left:15.516000px;}
.x2{left:19.116000px;}
.x8{left:23.076000px;}
.xd{left:25.236000px;}
.x7{left:28.116000px;}
.x4{left:29.196000px;}
.xc{left:30.456000px;}
.x3{left:33.876000px;}
.x1{left:77.040000px;}
.x9{left:316.515000px;}
.xb{left:318.855000px;}
.xa{left:320.835000px;}
.x6{left:366.555000px;}
@media print{
.v2{vertical-align:-3.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:3.840000pt;}
.lsa{letter-spacing:-0.192533pt;}
.lsb{letter-spacing:-0.058667pt;}
.ls3{letter-spacing:-0.053867pt;}
.ls2{letter-spacing:-0.008320pt;}
.ls0{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.024960pt;}
.ls4{letter-spacing:0.047360pt;}
.ls1{letter-spacing:0.135467pt;}
.ls9{letter-spacing:155.815680pt;}
.ls8{letter-spacing:169.062400pt;}
.ls7{letter-spacing:188.262400pt;}
.ls6{letter-spacing:218.871680pt;}
.ls5{letter-spacing:220.151680pt;}
.ws22{word-spacing:-18.698240pt;}
.ws0{word-spacing:-18.167040pt;}
.ws21{word-spacing:-0.053120pt;}
.ws1{word-spacing:0.000000pt;}
.ws3d{word-spacing:20.818347pt;}
.ws33{word-spacing:20.830720pt;}
.ws2f{word-spacing:26.779947pt;}
.ws3e{word-spacing:28.067840pt;}
.ws34{word-spacing:30.887040pt;}
.ws2e{word-spacing:36.875520pt;}
.wsd{word-spacing:39.612800pt;}
.ws25{word-spacing:39.719467pt;}
.ws1d{word-spacing:39.772800pt;}
.ws30{word-spacing:40.081280pt;}
.ws2b{word-spacing:47.872640pt;}
.ws38{word-spacing:52.846720pt;}
.ws2d{word-spacing:62.419200pt;}
.ws3f{word-spacing:63.837867pt;}
.ws2c{word-spacing:64.539947pt;}
.ws3c{word-spacing:74.920960pt;}
.ws31{word-spacing:83.834027pt;}
.ws14{word-spacing:87.261440pt;}
.ws3b{word-spacing:93.480960pt;}
.ws32{word-spacing:107.305920pt;}
.ws39{word-spacing:128.473387pt;}
.ws4{word-spacing:133.460907pt;}
.ws37{word-spacing:137.117440pt;}
.ws24{word-spacing:145.405440pt;}
.ws36{word-spacing:162.393387pt;}
.ws2a{word-spacing:162.958720pt;}
.ws5{word-spacing:164.816640pt;}
.ws28{word-spacing:164.923307pt;}
.ws29{word-spacing:164.976640pt;}
.ws1c{word-spacing:182.525440pt;}
.ws3{word-spacing:183.438720pt;}
.ws8{word-spacing:184.471040pt;}
.ws27{word-spacing:184.577707pt;}
.ws26{word-spacing:184.631040pt;}
.wsb{word-spacing:184.685760pt;}
.ws6{word-spacing:184.792427pt;}
.ws1e{word-spacing:184.845760pt;}
.ws35{word-spacing:185.936640pt;}
.ws10{word-spacing:192.179627pt;}
.ws17{word-spacing:193.459627pt;}
.ws23{word-spacing:200.697387pt;}
.ws3a{word-spacing:206.871040pt;}
.ws1f{word-spacing:207.117440pt;}
.ws13{word-spacing:207.224107pt;}
.ws20{word-spacing:207.277440pt;}
.wsa{word-spacing:245.862827pt;}
.ws1a{word-spacing:248.453547pt;}
.ws16{word-spacing:271.534507pt;}
.ws19{word-spacing:329.487787pt;}
.ws11{word-spacing:348.741547pt;}
.wse{word-spacing:353.393067pt;}
.ws1b{word-spacing:371.881387pt;}
.wsc{word-spacing:371.983787pt;}
.ws18{word-spacing:381.361067pt;}
.ws12{word-spacing:408.386987pt;}
.ws9{word-spacing:427.994027pt;}
.ws7{word-spacing:453.665707pt;}
.ws15{word-spacing:470.136747pt;}
.wsf{word-spacing:476.040107pt;}
.ws2{word-spacing:1248.495787pt;}
._2{margin-left:-4.780800pt;}
._3{margin-left:-2.974720pt;}
._1{margin-left:-1.168640pt;}
._0{width:1.009280pt;}
._22{width:45.989973pt;}
._23{width:47.646507pt;}
._7{width:59.002027pt;}
._e{width:86.571947pt;}
._c{width:87.580587pt;}
._1c{width:113.088000pt;}
._12{width:142.486400pt;}
._13{width:147.826347pt;}
._20{width:151.298347pt;}
._11{width:161.739520pt;}
._f{width:163.542827pt;}
._1d{width:170.498347pt;}
._6{width:174.906667pt;}
._1e{width:176.919680pt;}
._1f{width:180.038187pt;}
._21{width:180.939520pt;}
._d{width:181.920000pt;}
._8{width:183.309440pt;}
._9{width:184.203520pt;}
._1a{width:189.058347pt;}
._10{width:199.418027pt;}
._4{width:200.356267pt;}
._a{width:201.576107pt;}
._24{width:202.822400pt;}
._16{width:204.635307pt;}
._17{width:206.700587pt;}
._1b{width:214.679680pt;}
._b{width:219.037440pt;}
._19{width:229.353387pt;}
._25{width:276.043520pt;}
._15{width:339.150933pt;}
._14{width:340.136107pt;}
._5{width:489.886507pt;}
._18{width:499.491413pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.y0{bottom:0.000000pt;}
.y2f{bottom:4.640000pt;}
.y18{bottom:4.800000pt;}
.y1d{bottom:5.600000pt;}
.y5c{bottom:6.080000pt;}
.y1a{bottom:6.720000pt;}
.y43{bottom:6.880000pt;}
.y16{bottom:8.000000pt;}
.y5b{bottom:27.360000pt;}
.y42{bottom:28.160000pt;}
.y15{bottom:29.280000pt;}
.y5a{bottom:48.666667pt;}
.y41{bottom:49.466667pt;}
.y14{bottom:50.586667pt;}
.y59{bottom:69.946667pt;}
.y40{bottom:70.746667pt;}
.y13{bottom:71.866667pt;}
.y58{bottom:91.226667pt;}
.y3f{bottom:92.026667pt;}
.y12{bottom:93.146667pt;}
.y57{bottom:112.506667pt;}
.y3e{bottom:113.306667pt;}
.y11{bottom:114.426667pt;}
.y56{bottom:133.786667pt;}
.y3d{bottom:134.586667pt;}
.y10{bottom:135.706667pt;}
.y55{bottom:155.066667pt;}
.y3c{bottom:155.866667pt;}
.yf{bottom:156.986667pt;}
.y54{bottom:176.346667pt;}
.y3b{bottom:177.146667pt;}
.ye{bottom:178.266667pt;}
.y53{bottom:197.626667pt;}
.y3a{bottom:198.426667pt;}
.yd{bottom:199.546667pt;}
.y52{bottom:218.906667pt;}
.y39{bottom:219.706667pt;}
.yc{bottom:220.826667pt;}
.y51{bottom:240.186667pt;}
.y38{bottom:240.986667pt;}
.yb{bottom:242.106667pt;}
.y50{bottom:261.506667pt;}
.y37{bottom:262.306667pt;}
.ya{bottom:263.426667pt;}
.y4f{bottom:282.786667pt;}
.y36{bottom:283.586667pt;}
.y9{bottom:284.706667pt;}
.y4e{bottom:304.066667pt;}
.y35{bottom:304.866667pt;}
.y8{bottom:305.986667pt;}
.y4d{bottom:325.346667pt;}
.y34{bottom:326.146667pt;}
.y7{bottom:327.266667pt;}
.y4c{bottom:346.626667pt;}
.y33{bottom:347.426667pt;}
.y6{bottom:348.546667pt;}
.y4b{bottom:367.906667pt;}
.y32{bottom:368.706667pt;}
.y5{bottom:369.826667pt;}
.y4a{bottom:389.186667pt;}
.y31{bottom:389.986667pt;}
.y4{bottom:391.106667pt;}
.y3{bottom:410.466667pt;}
.y30{bottom:411.266667pt;}
.y2{bottom:432.546667pt;}
.y49{bottom:433.666667pt;}
.y2e{bottom:453.826667pt;}
.y48{bottom:454.946667pt;}
.y1{bottom:471.906667pt;}
.y2d{bottom:473.186667pt;}
.y45{bottom:475.106667pt;}
.y47{bottom:476.226667pt;}
.y2c{bottom:494.466667pt;}
.y44{bottom:496.413333pt;}
.y46{bottom:497.533333pt;}
.y2b{bottom:515.773333pt;}
.y2a{bottom:537.053333pt;}
.y29{bottom:558.333333pt;}
.y28{bottom:579.613333pt;}
.y27{bottom:600.893333pt;}
.y26{bottom:622.173333pt;}
.y25{bottom:643.453333pt;}
.y24{bottom:664.733333pt;}
.y23{bottom:686.013333pt;}
.y22{bottom:707.293333pt;}
.y21{bottom:728.613333pt;}
.y20{bottom:749.893333pt;}
.y1f{bottom:771.173333pt;}
.y1e{bottom:792.453333pt;}
.y1c{bottom:813.733333pt;}
.y1b{bottom:835.013333pt;}
.y19{bottom:856.293333pt;}
.y17{bottom:877.573333pt;}
.h4{height:20.000000pt;}
.h5{height:20.032000pt;}
.h7{height:38.828437pt;}
.h9{height:40.271250pt;}
.h2{height:40.358750pt;}
.h3{height:43.471250pt;}
.h8{height:44.838750pt;}
.h6{height:51.031250pt;}
.h1{height:510.813333pt;}
.h0{height:1056.000000pt;}
.w1{width:68.832000pt;}
.w7{width:511.293333pt;}
.w5{width:619.333333pt;}
.w6{width:646.053333pt;}
.w4{width:667.493333pt;}
.w3{width:680.453333pt;}
.w2{width:681.733333pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5{left:2.400000pt;}
.xe{left:5.440000pt;}
.xf{left:13.792000pt;}
.x2{left:16.992000pt;}
.x8{left:20.512000pt;}
.xd{left:22.432000pt;}
.x7{left:24.992000pt;}
.x4{left:25.952000pt;}
.xc{left:27.072000pt;}
.x3{left:30.112000pt;}
.x1{left:68.480000pt;}
.x9{left:281.346667pt;}
.xb{left:283.426667pt;}
.xa{left:285.186667pt;}
.x6{left:325.826667pt;}
}




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