
    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_b367ace9a289631df25fd441.woff')format("woff");}.ff1{font-family:ff1;line-height:1.107422;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_04a9fd669cf274ab10f30e1a.woff')format("woff");}.ff2{font-family:ff2;line-height:1.107422;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_863a989c04eeed52000205c5.woff')format("woff");}.ff3{font-family:ff3;line-height:0.962402;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_f9d8879d405dbbc4c9d01566.woff')format("woff");}.ff4{font-family:ff4;line-height:1.172852;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_e0c8955d3e54026449928d5f.woff')format("woff");}.ff5{font-family:ff5;line-height:0.962402;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_e6779baba70a96b318c1b3e5.woff')format("woff");}.ff6{font-family:ff6;line-height:0.754883;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_b70daed30b98823f2df9809d.woff')format("woff");}.ff7{font-family:ff7;line-height:0.764160;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:-45.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:45.000000px;}
.ls12{letter-spacing:-2.316000px;}
.ls13{letter-spacing:-2.166000px;}
.ls23{letter-spacing:-1.788000px;}
.ls22{letter-spacing:-1.746000px;}
.ls28{letter-spacing:-1.650000px;}
.ls25{letter-spacing:-1.434000px;}
.ls1f{letter-spacing:-1.338000px;}
.ls1d{letter-spacing:-0.597600px;}
.ls11{letter-spacing:-0.256800px;}
.ls17{letter-spacing:-0.032400px;}
.ls4{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.012600px;}
.ls1e{letter-spacing:0.291600px;}
.lsb{letter-spacing:0.384600px;}
.ls14{letter-spacing:0.426000px;}
.ls16{letter-spacing:0.432000px;}
.ls19{letter-spacing:0.463200px;}
.lsd{letter-spacing:0.534600px;}
.ls27{letter-spacing:0.576000px;}
.lsa{letter-spacing:0.577200px;}
.ls24{letter-spacing:0.618000px;}
.ls1b{letter-spacing:0.643200px;}
.ls3{letter-spacing:0.654600px;}
.ls2{letter-spacing:0.690000px;}
.ls1a{letter-spacing:0.768000px;}
.ls6{letter-spacing:0.852000px;}
.ls7{letter-spacing:0.864900px;}
.ls9{letter-spacing:0.918000px;}
.lsc{letter-spacing:1.002000px;}
.ls18{letter-spacing:1.326000px;}
.ls0{letter-spacing:1.374000px;}
.ls26{letter-spacing:1.434000px;}
.ls15{letter-spacing:1.500000px;}
.ls21{letter-spacing:1.722000px;}
.ls1c{letter-spacing:1.872000px;}
.ls20{letter-spacing:2.124000px;}
.ls1{letter-spacing:27.714600px;}
.ls8{letter-spacing:111.495000px;}
.ls5{letter-spacing:111.547500px;}
.ls10{letter-spacing:119.370000px;}
.lse{letter-spacing:119.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;}
}
.wsb{word-spacing:-56.378400px;}
.ws11{word-spacing:-56.346000px;}
.ws24{word-spacing:-41.075700px;}
.ws5{word-spacing:-41.033400px;}
.ws3{word-spacing:-40.938600px;}
.ws2{word-spacing:-40.925700px;}
.ws17{word-spacing:-40.883400px;}
.ws8{word-spacing:-40.692600px;}
.ws25{word-spacing:-40.649700px;}
.ws4{word-spacing:-40.500000px;}
.ws7{word-spacing:-40.115400px;}
.ws6{word-spacing:-40.073700px;}
.ws9{word-spacing:-33.831300px;}
.wsa{word-spacing:-33.818700px;}
.ws12{word-spacing:-30.065700px;}
.ws23{word-spacing:-28.631700px;}
.ws13{word-spacing:-27.526800px;}
.ws14{word-spacing:-27.492900px;}
.ws26{word-spacing:-27.002700px;}
.ws1c{word-spacing:-26.565900px;}
.ws18{word-spacing:-26.313900px;}
.ws0{word-spacing:-26.312700px;}
.ws1d{word-spacing:-26.163900px;}
.ws20{word-spacing:-25.059900px;}
.ws1a{word-spacing:-24.733500px;}
.ws19{word-spacing:-23.844300px;}
.ws1b{word-spacing:-23.103900px;}
.ws1e{word-spacing:-22.695900px;}
.ws1f{word-spacing:-22.653900px;}
.ws10{word-spacing:-20.448000px;}
.wsd{word-spacing:-20.057700px;}
.wsf{word-spacing:-20.016000px;}
.wsc{word-spacing:-1.985100px;}
.ws1{word-spacing:0.000000px;}
.wse{word-spacing:0.096000px;}
.ws22{word-spacing:0.789300px;}
.ws21{word-spacing:150.726600px;}
.ws15{word-spacing:150.784950px;}
.ws16{word-spacing:150.786600px;}
._12{margin-left:-16.144800px;}
._11{margin-left:-10.941150px;}
._a{margin-left:-8.485350px;}
._9{margin-left:-6.622800px;}
._6{margin-left:-4.708500px;}
._4{margin-left:-3.345900px;}
._1{margin-left:-2.150550px;}
._b{margin-left:-1.064550px;}
._2{width:1.194750px;}
._0{width:2.867400px;}
._5{width:4.264650px;}
._e{width:5.744250px;}
._d{width:18.281700px;}
._c{width:22.235100px;}
._7{width:28.000800px;}
._8{width:29.074200px;}
._10{width:31.263150px;}
._f{width:58.360200px;}
._3{width:69.176250px;}
.fc8{color:transparent;}
.fc4{color:rgb(5,99,193);}
.fc7{color:rgb(89,89,89);}
.fc6{color:rgb(64,64,64);}
.fc5{color:rgb(58,58,58);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(200,66,28);}
.fc1{color:rgb(242,242,242);}
.fc0{color:rgb(255,255,255);}
.fsa{font-size:72.000000px;}
.fs9{font-size:72.150000px;}
.fs4{font-size:94.650000px;}
.fsb{font-size:108.150000px;}
.fsc{font-size:112.650000px;}
.fs3{font-size:121.650000px;}
.fs8{font-size:121.800000px;}
.fs6{font-size:144.150000px;}
.fs7{font-size:144.300000px;}
.fs2{font-size:166.800000px;}
.fs5{font-size:202.800000px;}
.fs1{font-size:238.800000px;}
.fs0{font-size:238.950000px;}
.fsd{font-size:360.450000px;}
.y0{bottom:0.000000px;}
.y21{bottom:11.025000px;}
.y24{bottom:19.462500px;}
.y2b{bottom:19.537500px;}
.y4d{bottom:20.062500px;}
.y47{bottom:20.700000px;}
.y25{bottom:21.112500px;}
.y7{bottom:22.162500px;}
.y51{bottom:23.137500px;}
.y1c{bottom:26.812500px;}
.y20{bottom:32.437500px;}
.y4e{bottom:32.625000px;}
.y40{bottom:32.737500px;}
.y26{bottom:33.750000px;}
.y19{bottom:37.537500px;}
.y48{bottom:38.250000px;}
.y1b{bottom:48.225000px;}
.y1f{bottom:53.850000px;}
.y59{bottom:55.650000px;}
.y50{bottom:55.800000px;}
.yf{bottom:56.775000px;}
.y18{bottom:58.950000px;}
.y3f{bottom:64.312500px;}
.y6{bottom:66.787500px;}
.y1a{bottom:69.637500px;}
.y17{bottom:92.812500px;}
.y58{bottom:93.937500px;}
.y5{bottom:94.950000px;}
.y3e{bottom:96.975000px;}
.ye{bottom:100.687500px;}
.y4f{bottom:102.487500px;}
.y3d{bottom:129.637500px;}
.y5e{bottom:131.662500px;}
.y57{bottom:140.137500px;}
.y55{bottom:143.512500px;}
.y4b{bottom:144.225000px;}
.y45{bottom:145.755000px;}
.y3c{bottom:162.300000px;}
.y5d{bottom:174.450000px;}
.y16{bottom:179.550000px;}
.yd{bottom:187.425000px;}
.y3b{bottom:194.955000px;}
.y4{bottom:212.175000px;}
.y2d{bottom:224.550000px;}
.y3a{bottom:226.530000px;}
.yc{bottom:230.250000px;}
.y29{bottom:238.095000px;}
.y39{bottom:259.200000px;}
.y28{bottom:259.470000px;}
.y5c{bottom:260.100000px;}
.y15{bottom:265.155000px;}
.y3{bottom:266.250000px;}
.y2e{bottom:269.625000px;}
.y54{bottom:273.075000px;}
.y44{bottom:291.075000px;}
.y38{bottom:291.870000px;}
.y14{bottom:301.245000px;}
.y5b{bottom:304.005000px;}
.y53{bottom:316.995000px;}
.y42{bottom:322.875000px;}
.y37{bottom:324.525000px;}
.y13{bottom:338.400000px;}
.y36{bottom:357.195000px;}
.yb{bottom:359.820000px;}
.y43{bottom:386.850000px;}
.y35{bottom:388.725000px;}
.y2{bottom:400.695000px;}
.y56{bottom:403.725000px;}
.y34{bottom:421.425000px;}
.y12{bottom:424.005000px;}
.y46{bottom:425.130000px;}
.y2c{bottom:426.195000px;}
.y27{bottom:429.600000px;}
.y49{bottom:445.005000px;}
.y5a{bottom:445.950000px;}
.y4a{bottom:446.130000px;}
.ya{bottom:446.550000px;}
.y33{bottom:454.080000px;}
.y11{bottom:460.050000px;}
.y1e{bottom:471.900000px;}
.y1{bottom:472.800000px;}
.y4c{bottom:486.705000px;}
.y32{bottom:486.750000px;}
.y52{bottom:489.375000px;}
.y1d{bottom:493.320000px;}
.y10{bottom:496.125000px;}
.y31{bottom:519.420000px;}
.y23{bottom:522.570000px;}
.y2a{bottom:523.095000px;}
.y30{bottom:531.300000px;}
.y9{bottom:533.280000px;}
.y41{bottom:565.005000px;}
.y2f{bottom:566.250000px;}
.y22{bottom:566.505000px;}
.y8{bottom:631.575000px;}
.hb{height:64.582031px;}
.ha{height:64.716577px;}
.h5{height:84.898462px;}
.h11{height:94.141626px;}
.hc{height:97.007593px;}
.h10{height:101.043970px;}
.h12{height:107.569116px;}
.h4{height:109.116724px;}
.h9{height:109.251270px;}
.hf{height:120.996606px;}
.he{height:121.145801px;}
.h7{height:129.298608px;}
.h8{height:129.433154px;}
.h15{height:129.898462px;}
.h3{height:149.615039px;}
.h6{height:152.496094px;}
.h2{height:214.197070px;}
.h1{height:214.331616px;}
.h16{height:323.313794px;}
.h13{height:461.250000px;}
.h14{height:523.125000px;}
.hd{height:560.250000px;}
.h0{height:810.000000px;}
.w3{width:510.750000px;}
.w4{width:678.375000px;}
.w2{width:771.750000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.xa{left:40.500000px;}
.x3{left:89.549979px;}
.x1a{left:101.850000px;}
.x1b{left:102.945000px;}
.x9{left:115.687479px;}
.x4{left:130.049979px;}
.x24{left:143.587479px;}
.x19{left:154.170000px;}
.xe{left:174.000000px;}
.x13{left:208.245000px;}
.xd{left:215.820000px;}
.x14{left:216.975000px;}
.x20{left:231.495000px;}
.xf{left:233.280000px;}
.x1f{left:255.300000px;}
.x17{left:261.120000px;}
.x15{left:306.374979px;}
.x18{left:310.650000px;}
.x1e{left:315.525000px;}
.x1d{left:359.445000px;}
.xb{left:391.470000px;}
.x11{left:399.630000px;}
.x16{left:468.000000px;}
.x7{left:492.449979px;}
.x12{left:502.095000px;}
.xc{left:511.905000px;}
.x6{left:514.724979px;}
.x10{left:642.375000px;}
.x1{left:657.599979px;}
.x25{left:665.819979px;}
.x21{left:731.099979px;}
.x23{left:732.119979px;}
.x1c{left:761.625000px;}
.x8{left:766.799979px;}
.x2{left:781.079979px;}
.x22{left:947.279979px;}
.x5{left:965.069979px;}
@media print{
.v2{vertical-align:-40.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:40.000000pt;}
.ls12{letter-spacing:-2.058667pt;}
.ls13{letter-spacing:-1.925333pt;}
.ls23{letter-spacing:-1.589333pt;}
.ls22{letter-spacing:-1.552000pt;}
.ls28{letter-spacing:-1.466667pt;}
.ls25{letter-spacing:-1.274667pt;}
.ls1f{letter-spacing:-1.189333pt;}
.ls1d{letter-spacing:-0.531200pt;}
.ls11{letter-spacing:-0.228267pt;}
.ls17{letter-spacing:-0.028800pt;}
.ls4{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.011200pt;}
.ls1e{letter-spacing:0.259200pt;}
.lsb{letter-spacing:0.341867pt;}
.ls14{letter-spacing:0.378667pt;}
.ls16{letter-spacing:0.384000pt;}
.ls19{letter-spacing:0.411733pt;}
.lsd{letter-spacing:0.475200pt;}
.ls27{letter-spacing:0.512000pt;}
.lsa{letter-spacing:0.513067pt;}
.ls24{letter-spacing:0.549333pt;}
.ls1b{letter-spacing:0.571733pt;}
.ls3{letter-spacing:0.581867pt;}
.ls2{letter-spacing:0.613333pt;}
.ls1a{letter-spacing:0.682667pt;}
.ls6{letter-spacing:0.757333pt;}
.ls7{letter-spacing:0.768800pt;}
.ls9{letter-spacing:0.816000pt;}
.lsc{letter-spacing:0.890667pt;}
.ls18{letter-spacing:1.178667pt;}
.ls0{letter-spacing:1.221333pt;}
.ls26{letter-spacing:1.274667pt;}
.ls15{letter-spacing:1.333333pt;}
.ls21{letter-spacing:1.530667pt;}
.ls1c{letter-spacing:1.664000pt;}
.ls20{letter-spacing:1.888000pt;}
.ls1{letter-spacing:24.635200pt;}
.ls8{letter-spacing:99.106667pt;}
.ls5{letter-spacing:99.153333pt;}
.ls10{letter-spacing:106.106667pt;}
.lse{letter-spacing:106.153333pt;}
.wsb{word-spacing:-50.114133pt;}
.ws11{word-spacing:-50.085333pt;}
.ws24{word-spacing:-36.511733pt;}
.ws5{word-spacing:-36.474133pt;}
.ws3{word-spacing:-36.389867pt;}
.ws2{word-spacing:-36.378400pt;}
.ws17{word-spacing:-36.340800pt;}
.ws8{word-spacing:-36.171200pt;}
.ws25{word-spacing:-36.133067pt;}
.ws4{word-spacing:-36.000000pt;}
.ws7{word-spacing:-35.658133pt;}
.ws6{word-spacing:-35.621067pt;}
.ws9{word-spacing:-30.072267pt;}
.wsa{word-spacing:-30.061067pt;}
.ws12{word-spacing:-26.725067pt;}
.ws23{word-spacing:-25.450400pt;}
.ws13{word-spacing:-24.468267pt;}
.ws14{word-spacing:-24.438133pt;}
.ws26{word-spacing:-24.002400pt;}
.ws1c{word-spacing:-23.614133pt;}
.ws18{word-spacing:-23.390133pt;}
.ws0{word-spacing:-23.389067pt;}
.ws1d{word-spacing:-23.256800pt;}
.ws20{word-spacing:-22.275467pt;}
.ws1a{word-spacing:-21.985333pt;}
.ws19{word-spacing:-21.194933pt;}
.ws1b{word-spacing:-20.536800pt;}
.ws1e{word-spacing:-20.174133pt;}
.ws1f{word-spacing:-20.136800pt;}
.ws10{word-spacing:-18.176000pt;}
.wsd{word-spacing:-17.829067pt;}
.wsf{word-spacing:-17.792000pt;}
.wsc{word-spacing:-1.764533pt;}
.ws1{word-spacing:0.000000pt;}
.wse{word-spacing:0.085333pt;}
.ws22{word-spacing:0.701600pt;}
.ws21{word-spacing:133.979200pt;}
.ws15{word-spacing:134.031067pt;}
.ws16{word-spacing:134.032533pt;}
._12{margin-left:-14.350933pt;}
._11{margin-left:-9.725467pt;}
._a{margin-left:-7.542533pt;}
._9{margin-left:-5.886933pt;}
._6{margin-left:-4.185333pt;}
._4{margin-left:-2.974133pt;}
._1{margin-left:-1.911600pt;}
._b{margin-left:-0.946267pt;}
._2{width:1.062000pt;}
._0{width:2.548800pt;}
._5{width:3.790800pt;}
._e{width:5.106000pt;}
._d{width:16.250400pt;}
._c{width:19.764533pt;}
._7{width:24.889600pt;}
._8{width:25.843733pt;}
._10{width:27.789467pt;}
._f{width:51.875733pt;}
._3{width:61.490000pt;}
.fsa{font-size:64.000000pt;}
.fs9{font-size:64.133333pt;}
.fs4{font-size:84.133333pt;}
.fsb{font-size:96.133333pt;}
.fsc{font-size:100.133333pt;}
.fs3{font-size:108.133333pt;}
.fs8{font-size:108.266667pt;}
.fs6{font-size:128.133333pt;}
.fs7{font-size:128.266667pt;}
.fs2{font-size:148.266667pt;}
.fs5{font-size:180.266667pt;}
.fs1{font-size:212.266667pt;}
.fs0{font-size:212.400000pt;}
.fsd{font-size:320.400000pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:9.800000pt;}
.y24{bottom:17.300000pt;}
.y2b{bottom:17.366667pt;}
.y4d{bottom:17.833333pt;}
.y47{bottom:18.400000pt;}
.y25{bottom:18.766667pt;}
.y7{bottom:19.700000pt;}
.y51{bottom:20.566667pt;}
.y1c{bottom:23.833333pt;}
.y20{bottom:28.833333pt;}
.y4e{bottom:29.000000pt;}
.y40{bottom:29.100000pt;}
.y26{bottom:30.000000pt;}
.y19{bottom:33.366667pt;}
.y48{bottom:34.000000pt;}
.y1b{bottom:42.866667pt;}
.y1f{bottom:47.866667pt;}
.y59{bottom:49.466667pt;}
.y50{bottom:49.600000pt;}
.yf{bottom:50.466667pt;}
.y18{bottom:52.400000pt;}
.y3f{bottom:57.166667pt;}
.y6{bottom:59.366667pt;}
.y1a{bottom:61.900000pt;}
.y17{bottom:82.500000pt;}
.y58{bottom:83.500000pt;}
.y5{bottom:84.400000pt;}
.y3e{bottom:86.200000pt;}
.ye{bottom:89.500000pt;}
.y4f{bottom:91.100000pt;}
.y3d{bottom:115.233333pt;}
.y5e{bottom:117.033333pt;}
.y57{bottom:124.566667pt;}
.y55{bottom:127.566667pt;}
.y4b{bottom:128.200000pt;}
.y45{bottom:129.560000pt;}
.y3c{bottom:144.266667pt;}
.y5d{bottom:155.066667pt;}
.y16{bottom:159.600000pt;}
.yd{bottom:166.600000pt;}
.y3b{bottom:173.293333pt;}
.y4{bottom:188.600000pt;}
.y2d{bottom:199.600000pt;}
.y3a{bottom:201.360000pt;}
.yc{bottom:204.666667pt;}
.y29{bottom:211.640000pt;}
.y39{bottom:230.400000pt;}
.y28{bottom:230.640000pt;}
.y5c{bottom:231.200000pt;}
.y15{bottom:235.693333pt;}
.y3{bottom:236.666667pt;}
.y2e{bottom:239.666667pt;}
.y54{bottom:242.733333pt;}
.y44{bottom:258.733333pt;}
.y38{bottom:259.440000pt;}
.y14{bottom:267.773333pt;}
.y5b{bottom:270.226667pt;}
.y53{bottom:281.773333pt;}
.y42{bottom:287.000000pt;}
.y37{bottom:288.466667pt;}
.y13{bottom:300.800000pt;}
.y36{bottom:317.506667pt;}
.yb{bottom:319.840000pt;}
.y43{bottom:343.866667pt;}
.y35{bottom:345.533333pt;}
.y2{bottom:356.173333pt;}
.y56{bottom:358.866667pt;}
.y34{bottom:374.600000pt;}
.y12{bottom:376.893333pt;}
.y46{bottom:377.893333pt;}
.y2c{bottom:378.840000pt;}
.y27{bottom:381.866667pt;}
.y49{bottom:395.560000pt;}
.y5a{bottom:396.400000pt;}
.y4a{bottom:396.560000pt;}
.ya{bottom:396.933333pt;}
.y33{bottom:403.626667pt;}
.y11{bottom:408.933333pt;}
.y1e{bottom:419.466667pt;}
.y1{bottom:420.266667pt;}
.y4c{bottom:432.626667pt;}
.y32{bottom:432.666667pt;}
.y52{bottom:435.000000pt;}
.y1d{bottom:438.506667pt;}
.y10{bottom:441.000000pt;}
.y31{bottom:461.706667pt;}
.y23{bottom:464.506667pt;}
.y2a{bottom:464.973333pt;}
.y30{bottom:472.266667pt;}
.y9{bottom:474.026667pt;}
.y41{bottom:502.226667pt;}
.y2f{bottom:503.333333pt;}
.y22{bottom:503.560000pt;}
.y8{bottom:561.400000pt;}
.hb{height:57.406250pt;}
.ha{height:57.525846pt;}
.h5{height:75.465299pt;}
.h11{height:83.681445pt;}
.hc{height:86.228971pt;}
.h10{height:89.816862pt;}
.h12{height:95.616992pt;}
.h4{height:96.992643pt;}
.h9{height:97.112240pt;}
.hf{height:107.552539pt;}
.he{height:107.685156pt;}
.h7{height:114.932096pt;}
.h8{height:115.051693pt;}
.h15{height:115.465299pt;}
.h3{height:132.991146pt;}
.h6{height:135.552083pt;}
.h2{height:190.397396pt;}
.h1{height:190.516992pt;}
.h16{height:287.390039pt;}
.h13{height:410.000000pt;}
.h14{height:465.000000pt;}
.hd{height:498.000000pt;}
.h0{height:720.000000pt;}
.w3{width:454.000000pt;}
.w4{width:603.000000pt;}
.w2{width:686.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.xa{left:36.000000pt;}
.x3{left:79.599981pt;}
.x1a{left:90.533333pt;}
.x1b{left:91.506667pt;}
.x9{left:102.833314pt;}
.x4{left:115.599981pt;}
.x24{left:127.633314pt;}
.x19{left:137.040000pt;}
.xe{left:154.666667pt;}
.x13{left:185.106667pt;}
.xd{left:191.840000pt;}
.x14{left:192.866667pt;}
.x20{left:205.773333pt;}
.xf{left:207.360000pt;}
.x1f{left:226.933333pt;}
.x17{left:232.106667pt;}
.x15{left:272.333314pt;}
.x18{left:276.133333pt;}
.x1e{left:280.466667pt;}
.x1d{left:319.506667pt;}
.xb{left:347.973333pt;}
.x11{left:355.226667pt;}
.x16{left:416.000000pt;}
.x7{left:437.733314pt;}
.x12{left:446.306667pt;}
.xc{left:455.026667pt;}
.x6{left:457.533314pt;}
.x10{left:571.000000pt;}
.x1{left:584.533314pt;}
.x25{left:591.839981pt;}
.x21{left:649.866648pt;}
.x23{left:650.773314pt;}
.x1c{left:677.000000pt;}
.x8{left:681.599981pt;}
.x2{left:694.293314pt;}
.x22{left:842.026648pt;}
.x5{left:857.839981pt;}
}




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