
    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_033114743031c29391761222.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.106934;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_205acb3e73e3470004ae2827.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.115234;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_a3a40a3ded5f91f908912826.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.936523;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_49efb8344e41acfc8ed3e5fd.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.949219;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_c461fae3cd2d00ae3aa000b0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.115234;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_183a9669d18f1c30ce188248.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.106934;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_475f70e68ad1ea7565932719.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.871582;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_6dfcf02643b9deacf22cd71c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.752441;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_c9feb7bc54c3b975a05d8f1f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.682617;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v4{vertical-align:-148.320000px;}
.v6{vertical-align:-40.680000px;}
.v3{vertical-align:-27.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:21.600000px;}
.v7{vertical-align:22.980000px;}
.v8{vertical-align:27.000000px;}
.v5{vertical-align:40.680000px;}
.v1{vertical-align:45.000000px;}
.ls12{letter-spacing:-0.642000px;}
.lse{letter-spacing:-0.624000px;}
.ls1{letter-spacing:-0.522000px;}
.lsa{letter-spacing:-0.321000px;}
.ls15{letter-spacing:-0.171000px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.572400px;}
.lsd{letter-spacing:0.579300px;}
.ls5{letter-spacing:0.624450px;}
.ls4{letter-spacing:0.684450px;}
.ls9{letter-spacing:0.743550px;}
.ls2{letter-spacing:1.470000px;}
.lsc{letter-spacing:1.938000px;}
.ls14{letter-spacing:83.670000px;}
.ls13{letter-spacing:83.760000px;}
.ls6{letter-spacing:89.220000px;}
.ls3{letter-spacing:89.272500px;}
.ls10{letter-spacing:116.220000px;}
.lsf{letter-spacing:116.272500px;}
.ls11{letter-spacing:116.370000px;}
.lsb{letter-spacing:116.392500px;}
.ls8{letter-spacing:116.422500px;}
.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;}
}
.ws8{word-spacing:-90.150000px;}
.ws10{word-spacing:-66.386400px;}
.wse{word-spacing:-45.077700px;}
.ws0{word-spacing:-41.324700px;}
.ws2{word-spacing:-38.822700px;}
.ws7{word-spacing:-36.362400px;}
.ws6{word-spacing:-36.320700px;}
.wsf{word-spacing:-35.069700px;}
.ws1{word-spacing:-27.000000px;}
.wsb{word-spacing:-26.999700px;}
.ws9{word-spacing:-26.312700px;}
.ws4{word-spacing:-25.239000px;}
.wsc{word-spacing:-25.061700px;}
.wsd{word-spacing:-25.020000px;}
.ws3{word-spacing:-0.238800px;}
.ws5{word-spacing:0.000000px;}
.wsa{word-spacing:80.101800px;}
._c{margin-left:-19.056450px;}
._11{margin-left:-14.952300px;}
._13{margin-left:-13.053000px;}
._7{margin-left:-11.884650px;}
._0{margin-left:-9.810900px;}
._e{margin-left:-8.654400px;}
._9{margin-left:-7.301850px;}
._12{margin-left:-6.147600px;}
._a{margin-left:-5.014800px;}
._6{margin-left:-3.688200px;}
._4{margin-left:-2.229750px;}
._2{margin-left:-1.040550px;}
._8{width:1.064550px;}
._3{width:2.081100px;}
._1{width:3.121650px;}
._5{width:4.183650px;}
._b{width:5.280150px;}
._d{width:367.944150px;}
._10{width:446.958150px;}
._f{width:2151.454650px;}
.fc5{color:rgb(255,64,255);}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(0,250,0);}
.fc2{color:rgb(22,177,183);}
.fc6{color:rgb(237,125,49);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:85.500000px;}
.fse{font-size:90.000000px;}
.fsc{font-size:90.150000px;}
.fsd{font-size:94.650000px;}
.fs1{font-size:99.000000px;}
.fsa{font-size:108.150000px;}
.fsb{font-size:112.650000px;}
.fs11{font-size:126.150000px;}
.fs12{font-size:126.300000px;}
.fs7{font-size:130.650000px;}
.fs9{font-size:130.800000px;}
.fs3{font-size:139.650000px;}
.fs4{font-size:139.800000px;}
.fs0{font-size:148.650000px;}
.fsf{font-size:162.150000px;}
.fs10{font-size:166.650000px;}
.fs2{font-size:180.300000px;}
.fs5{font-size:238.800000px;}
.fs6{font-size:238.950000px;}
.y0{bottom:0.000000px;}
.y1e{bottom:16.837500px;}
.y18{bottom:18.112500px;}
.y3c{bottom:19.650000px;}
.ya{bottom:34.837500px;}
.y1d{bottom:56.250000px;}
.y17{bottom:57.525000px;}
.y4e{bottom:58.762500px;}
.y41{bottom:63.187500px;}
.y39{bottom:67.425000px;}
.y9{bottom:70.875000px;}
.y5a{bottom:73.125000px;}
.y3b{bottom:80.212500px;}
.y4a{bottom:82.087500px;}
.y10{bottom:85.012500px;}
.y1c{bottom:95.700000px;}
.y16{bottom:96.937500px;}
.y4d{bottom:98.175000px;}
.y40{bottom:102.600000px;}
.y38{bottom:106.875000px;}
.y59{bottom:112.575000px;}
.y3a{bottom:119.662500px;}
.y49{bottom:120.375000px;}
.yb{bottom:132.412500px;}
.y4c{bottom:137.625000px;}
.y3f{bottom:142.050000px;}
.yf{bottom:164.970000px;}
.y4b{bottom:177.030000px;}
.y3e{bottom:181.455000px;}
.y1a{bottom:191.325000px;}
.y37{bottom:217.755000px;}
.y3d{bottom:220.905000px;}
.y19{bottom:230.745000px;}
.y55{bottom:231.345000px;}
.ye{bottom:243.825000px;}
.y20{bottom:246.225000px;}
.y27{bottom:248.100000px;}
.y23{bottom:251.475000px;}
.y54{bottom:270.795000px;}
.y1f{bottom:280.005000px;}
.y2d{bottom:281.550000px;}
.y36{bottom:306.195000px;}
.y53{bottom:310.200000px;}
.yd{bottom:322.695000px;}
.y35{bottom:345.645000px;}
.y52{bottom:349.605000px;}
.y2{bottom:350.175000px;}
.y2c{bottom:360.420000px;}
.y51{bottom:383.925000px;}
.y34{bottom:385.050000px;}
.y50{bottom:385.845000px;}
.y1{bottom:400.875000px;}
.y2b{bottom:400.950000px;}
.y33{bottom:424.470000px;}
.y4f{bottom:430.920000px;}
.y5{bottom:466.905000px;}
.y14{bottom:479.475000px;}
.y2a{bottom:479.820000px;}
.y26{bottom:494.625000px;}
.y4{bottom:510.825000px;}
.y58{bottom:538.845000px;}
.y31{bottom:539.175000px;}
.y22{bottom:540.495000px;}
.y48{bottom:552.750000px;}
.y3{bottom:557.025000px;}
.y29{bottom:558.675000px;}
.y45{bottom:559.620000px;}
.y15{bottom:568.470000px;}
.y5b{bottom:569.325000px;}
.y57{bottom:578.250000px;}
.y30{bottom:578.595000px;}
.y47{bottom:592.170000px;}
.y44{bottom:599.070000px;}
.y25{bottom:607.875000px;}
.y56{bottom:617.700000px;}
.y8{bottom:624.630000px;}
.y43{bottom:638.475000px;}
.y24{bottom:647.280000px;}
.y28{bottom:655.575000px;}
.y2f{bottom:657.450000px;}
.y32{bottom:663.195000px;}
.y12{bottom:682.005000px;}
.y46{bottom:688.245000px;}
.y7{bottom:690.000000px;}
.y2e{bottom:700.275000px;}
.y11{bottom:714.675000px;}
.y42{bottom:738.345000px;}
.y21{bottom:749.505000px;}
.yc{bottom:749.700000px;}
.y1b{bottom:755.100000px;}
.y6{bottom:755.325000px;}
.y13{bottom:772.125000px;}
.ha{height:76.649414px;}
.he{height:84.852246px;}
.hc{height:96.954785px;}
.hd{height:100.988965px;}
.h15{height:113.091504px;}
.h16{height:113.225977px;}
.h9{height:117.125684px;}
.hb{height:117.260156px;}
.h8{height:118.210181px;}
.h11{height:121.498066px;}
.h4{height:125.194043px;}
.h5{height:125.328516px;}
.h1{height:133.262402px;}
.h2{height:133.751953px;}
.hf{height:134.496313px;}
.h10{height:140.105684px;}
.h12{height:145.364941px;}
.h13{height:146.710913px;}
.h14{height:150.782446px;}
.h3{height:163.132764px;}
.h6{height:216.062695px;}
.h7{height:216.198413px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x19{left:10.799979px;}
.xc{left:11.849979px;}
.x2b{left:15.262479px;}
.x1a{left:18.937479px;}
.x33{left:27.787479px;}
.x6{left:30.449979px;}
.x26{left:31.687479px;}
.x1e{left:35.174979px;}
.x5{left:41.437479px;}
.x1b{left:51.337479px;}
.x9{left:58.874979px;}
.x20{left:60.337479px;}
.xb{left:67.687479px;}
.x1f{left:75.712479px;}
.x34{left:81.824979px;}
.x27{left:92.099979px;}
.x7{left:100.837479px;}
.x25{left:102.712479px;}
.x2a{left:108.824979px;}
.x2f{left:123.337479px;}
.x3{left:136.274979px;}
.x4{left:164.024979px;}
.x1{left:216.749979px;}
.x18{left:225.074979px;}
.x2{left:241.169979px;}
.x35{left:289.529979px;}
.x10{left:340.949979px;}
.x36{left:367.844979px;}
.x8{left:371.069979px;}
.x12{left:524.924979px;}
.x11{left:530.399979px;}
.x32{left:540.599979px;}
.x13{left:567.404979px;}
.x28{left:759.569979px;}
.x29{left:770.069979px;}
.x1d{left:778.799979px;}
.x14{left:796.124979px;}
.x21{left:805.544979px;}
.x2e{left:817.454979px;}
.x2d{left:822.599979px;}
.x2c{left:830.249979px;}
.xf{left:896.444979px;}
.x23{left:907.274979px;}
.x24{left:915.194979px;}
.x1c{left:920.129979px;}
.x22{left:929.879979px;}
.x37{left:1014.899979px;}
.x15{left:1017.629979px;}
.x16{left:1065.044979px;}
.x17{left:1089.704979px;}
.xd{left:1161.719979px;}
.xe{left:1184.249979px;}
.x30{left:1244.444979px;}
.x31{left:1268.024979px;}
.xa{left:1424.099979px;}
@media print{
.v4{vertical-align:-131.840000pt;}
.v6{vertical-align:-36.160000pt;}
.v3{vertical-align:-24.000000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:19.200000pt;}
.v7{vertical-align:20.426667pt;}
.v8{vertical-align:24.000000pt;}
.v5{vertical-align:36.160000pt;}
.v1{vertical-align:40.000000pt;}
.ls12{letter-spacing:-0.570667pt;}
.lse{letter-spacing:-0.554667pt;}
.ls1{letter-spacing:-0.464000pt;}
.lsa{letter-spacing:-0.285333pt;}
.ls15{letter-spacing:-0.152000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.508800pt;}
.lsd{letter-spacing:0.514933pt;}
.ls5{letter-spacing:0.555067pt;}
.ls4{letter-spacing:0.608400pt;}
.ls9{letter-spacing:0.660933pt;}
.ls2{letter-spacing:1.306667pt;}
.lsc{letter-spacing:1.722667pt;}
.ls14{letter-spacing:74.373333pt;}
.ls13{letter-spacing:74.453333pt;}
.ls6{letter-spacing:79.306667pt;}
.ls3{letter-spacing:79.353333pt;}
.ls10{letter-spacing:103.306667pt;}
.lsf{letter-spacing:103.353333pt;}
.ls11{letter-spacing:103.440000pt;}
.lsb{letter-spacing:103.460000pt;}
.ls8{letter-spacing:103.486667pt;}
.ws8{word-spacing:-80.133333pt;}
.ws10{word-spacing:-59.010133pt;}
.wse{word-spacing:-40.069067pt;}
.ws0{word-spacing:-36.733067pt;}
.ws2{word-spacing:-34.509067pt;}
.ws7{word-spacing:-32.322133pt;}
.ws6{word-spacing:-32.285067pt;}
.wsf{word-spacing:-31.173067pt;}
.ws1{word-spacing:-24.000000pt;}
.wsb{word-spacing:-23.999733pt;}
.ws9{word-spacing:-23.389067pt;}
.ws4{word-spacing:-22.434667pt;}
.wsc{word-spacing:-22.277067pt;}
.wsd{word-spacing:-22.240000pt;}
.ws3{word-spacing:-0.212267pt;}
.ws5{word-spacing:0.000000pt;}
.wsa{word-spacing:71.201600pt;}
._c{margin-left:-16.939067pt;}
._11{margin-left:-13.290933pt;}
._13{margin-left:-11.602667pt;}
._7{margin-left:-10.564133pt;}
._0{margin-left:-8.720800pt;}
._e{margin-left:-7.692800pt;}
._9{margin-left:-6.490533pt;}
._12{margin-left:-5.464533pt;}
._a{margin-left:-4.457600pt;}
._6{margin-left:-3.278400pt;}
._4{margin-left:-1.982000pt;}
._2{margin-left:-0.924933pt;}
._8{width:0.946267pt;}
._3{width:1.849867pt;}
._1{width:2.774800pt;}
._5{width:3.718800pt;}
._b{width:4.693467pt;}
._d{width:327.061467pt;}
._10{width:397.296133pt;}
._f{width:1912.404133pt;}
.fs8{font-size:76.000000pt;}
.fse{font-size:80.000000pt;}
.fsc{font-size:80.133333pt;}
.fsd{font-size:84.133333pt;}
.fs1{font-size:88.000000pt;}
.fsa{font-size:96.133333pt;}
.fsb{font-size:100.133333pt;}
.fs11{font-size:112.133333pt;}
.fs12{font-size:112.266667pt;}
.fs7{font-size:116.133333pt;}
.fs9{font-size:116.266667pt;}
.fs3{font-size:124.133333pt;}
.fs4{font-size:124.266667pt;}
.fs0{font-size:132.133333pt;}
.fsf{font-size:144.133333pt;}
.fs10{font-size:148.133333pt;}
.fs2{font-size:160.266667pt;}
.fs5{font-size:212.266667pt;}
.fs6{font-size:212.400000pt;}
.y0{bottom:0.000000pt;}
.y1e{bottom:14.966667pt;}
.y18{bottom:16.100000pt;}
.y3c{bottom:17.466667pt;}
.ya{bottom:30.966667pt;}
.y1d{bottom:50.000000pt;}
.y17{bottom:51.133333pt;}
.y4e{bottom:52.233333pt;}
.y41{bottom:56.166667pt;}
.y39{bottom:59.933333pt;}
.y9{bottom:63.000000pt;}
.y5a{bottom:65.000000pt;}
.y3b{bottom:71.300000pt;}
.y4a{bottom:72.966667pt;}
.y10{bottom:75.566667pt;}
.y1c{bottom:85.066667pt;}
.y16{bottom:86.166667pt;}
.y4d{bottom:87.266667pt;}
.y40{bottom:91.200000pt;}
.y38{bottom:95.000000pt;}
.y59{bottom:100.066667pt;}
.y3a{bottom:106.366667pt;}
.y49{bottom:107.000000pt;}
.yb{bottom:117.700000pt;}
.y4c{bottom:122.333333pt;}
.y3f{bottom:126.266667pt;}
.yf{bottom:146.640000pt;}
.y4b{bottom:157.360000pt;}
.y3e{bottom:161.293333pt;}
.y1a{bottom:170.066667pt;}
.y37{bottom:193.560000pt;}
.y3d{bottom:196.360000pt;}
.y19{bottom:205.106667pt;}
.y55{bottom:205.640000pt;}
.ye{bottom:216.733333pt;}
.y20{bottom:218.866667pt;}
.y27{bottom:220.533333pt;}
.y23{bottom:223.533333pt;}
.y54{bottom:240.706667pt;}
.y1f{bottom:248.893333pt;}
.y2d{bottom:250.266667pt;}
.y36{bottom:272.173333pt;}
.y53{bottom:275.733333pt;}
.yd{bottom:286.840000pt;}
.y35{bottom:307.240000pt;}
.y52{bottom:310.760000pt;}
.y2{bottom:311.266667pt;}
.y2c{bottom:320.373333pt;}
.y51{bottom:341.266667pt;}
.y34{bottom:342.266667pt;}
.y50{bottom:342.973333pt;}
.y1{bottom:356.333333pt;}
.y2b{bottom:356.400000pt;}
.y33{bottom:377.306667pt;}
.y4f{bottom:383.040000pt;}
.y5{bottom:415.026667pt;}
.y14{bottom:426.200000pt;}
.y2a{bottom:426.506667pt;}
.y26{bottom:439.666667pt;}
.y4{bottom:454.066667pt;}
.y58{bottom:478.973333pt;}
.y31{bottom:479.266667pt;}
.y22{bottom:480.440000pt;}
.y48{bottom:491.333333pt;}
.y3{bottom:495.133333pt;}
.y29{bottom:496.600000pt;}
.y45{bottom:497.440000pt;}
.y15{bottom:505.306667pt;}
.y5b{bottom:506.066667pt;}
.y57{bottom:514.000000pt;}
.y30{bottom:514.306667pt;}
.y47{bottom:526.373333pt;}
.y44{bottom:532.506667pt;}
.y25{bottom:540.333333pt;}
.y56{bottom:549.066667pt;}
.y8{bottom:555.226667pt;}
.y43{bottom:567.533333pt;}
.y24{bottom:575.360000pt;}
.y28{bottom:582.733333pt;}
.y2f{bottom:584.400000pt;}
.y32{bottom:589.506667pt;}
.y12{bottom:606.226667pt;}
.y46{bottom:611.773333pt;}
.y7{bottom:613.333333pt;}
.y2e{bottom:622.466667pt;}
.y11{bottom:635.266667pt;}
.y42{bottom:656.306667pt;}
.y21{bottom:666.226667pt;}
.yc{bottom:666.400000pt;}
.y1b{bottom:671.200000pt;}
.y6{bottom:671.400000pt;}
.y13{bottom:686.333333pt;}
.ha{height:68.132813pt;}
.he{height:75.424219pt;}
.hc{height:86.182031pt;}
.hd{height:89.767969pt;}
.h15{height:100.525781pt;}
.h16{height:100.645313pt;}
.h9{height:104.111719pt;}
.hb{height:104.231250pt;}
.h8{height:105.075716pt;}
.h11{height:107.998281pt;}
.h4{height:111.283594pt;}
.h5{height:111.403125pt;}
.h1{height:118.455469pt;}
.h2{height:118.890625pt;}
.hf{height:119.552279pt;}
.h10{height:124.538385pt;}
.h12{height:129.213281pt;}
.h13{height:130.409701pt;}
.h14{height:134.028841pt;}
.h3{height:145.006901pt;}
.h6{height:192.055729pt;}
.h7{height:192.176367pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x19{left:9.599981pt;}
.xc{left:10.533314pt;}
.x2b{left:13.566648pt;}
.x1a{left:16.833314pt;}
.x33{left:24.699981pt;}
.x6{left:27.066648pt;}
.x26{left:28.166648pt;}
.x1e{left:31.266648pt;}
.x5{left:36.833314pt;}
.x1b{left:45.633314pt;}
.x9{left:52.333314pt;}
.x20{left:53.633314pt;}
.xb{left:60.166648pt;}
.x1f{left:67.299981pt;}
.x34{left:72.733314pt;}
.x27{left:81.866648pt;}
.x7{left:89.633314pt;}
.x25{left:91.299981pt;}
.x2a{left:96.733314pt;}
.x2f{left:109.633314pt;}
.x3{left:121.133314pt;}
.x4{left:145.799981pt;}
.x1{left:192.666648pt;}
.x18{left:200.066648pt;}
.x2{left:214.373314pt;}
.x35{left:257.359981pt;}
.x10{left:303.066648pt;}
.x36{left:326.973314pt;}
.x8{left:329.839981pt;}
.x12{left:466.599981pt;}
.x11{left:471.466648pt;}
.x32{left:480.533314pt;}
.x13{left:504.359981pt;}
.x28{left:675.173314pt;}
.x29{left:684.506648pt;}
.x1d{left:692.266648pt;}
.x14{left:707.666648pt;}
.x21{left:716.039981pt;}
.x2e{left:726.626648pt;}
.x2d{left:731.199981pt;}
.x2c{left:737.999981pt;}
.xf{left:796.839981pt;}
.x23{left:806.466648pt;}
.x24{left:813.506648pt;}
.x1c{left:817.893314pt;}
.x22{left:826.559981pt;}
.x37{left:902.133314pt;}
.x15{left:904.559981pt;}
.x16{left:946.706648pt;}
.x17{left:968.626648pt;}
.xd{left:1032.639981pt;}
.xe{left:1052.666648pt;}
.x30{left:1106.173314pt;}
.x31{left:1127.133314pt;}
.xa{left:1265.866648pt;}
}




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