
    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_2222a4a365d5212fc84d8900.woff')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_a93bb255f07f77e897c72fa4.woff')format("woff");}.ff2{font-family:ff2;line-height:0.995117;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_8eb799fa98c0e7016dd48e43.woff')format("woff");}.ff3{font-family:ff3;line-height:0.850586;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_2383f18ca554249f8b934486.woff')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_b43e146a09cb14a85f4deb55.woff')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_042f39f559bfaace1df8c5ca.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_0eb49ff05910add9b1ab8da3.woff')format("woff");}.ff7{font-family:ff7;line-height:0.946777;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_91d27a98f3504600bf6101be.woff')format("woff");}.ff8{font-family:ff8;line-height:1.046387;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_d23fb889edea1174841cf482.woff')format("woff");}.ff9{font-family:ff9;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;}
.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;}
.ls16{letter-spacing:-5.628000px;}
.ls1a{letter-spacing:-3.270000px;}
.ls8{letter-spacing:-2.466000px;}
.lse{letter-spacing:-2.250000px;}
.ls1b{letter-spacing:-2.034000px;}
.ls15{letter-spacing:-1.524000px;}
.lsd{letter-spacing:-1.230000px;}
.ls7{letter-spacing:-1.128000px;}
.ls5{letter-spacing:-0.876000px;}
.ls18{letter-spacing:-0.870000px;}
.ls19{letter-spacing:-0.358200px;}
.ls3{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.150000px;}
.ls4{letter-spacing:1.128000px;}
.ls1c{letter-spacing:1.147500px;}
.lsf{letter-spacing:1.230000px;}
.ls14{letter-spacing:1.495500px;}
.ls17{letter-spacing:1.524000px;}
.lsa{letter-spacing:1.525500px;}
.ls12{letter-spacing:1.645500px;}
.ls11{letter-spacing:1.675500px;}
.ls10{letter-spacing:1.705500px;}
.ls20{letter-spacing:1.921500px;}
.ls0{letter-spacing:2.142000px;}
.ls6{letter-spacing:2.250000px;}
.ls13{letter-spacing:2.430000px;}
.ls1f{letter-spacing:2.698500px;}
.ls1{letter-spacing:3.375000px;}
.ls9{letter-spacing:3.378000px;}
.ls22{letter-spacing:5.733000px;}
.lsb{letter-spacing:7.875000px;}
.ls2{letter-spacing:16.935000px;}
.ls1d{letter-spacing:21.375000px;}
.lsc{letter-spacing:25.875000px;}
.ls1e{letter-spacing:46.203000px;}
.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;}
}
.ws3{word-spacing:-21.375000px;}
.ws2{word-spacing:-21.267000px;}
.ws9{word-spacing:-20.649000px;}
.ws6{word-spacing:-20.355000px;}
.wse{word-spacing:-20.272500px;}
.ws1{word-spacing:-19.125000px;}
.wsb{word-spacing:-18.766800px;}
.wsa{word-spacing:-18.255000px;}
.ws5{word-spacing:-17.895000px;}
.ws8{word-spacing:-17.601000px;}
.wsd{word-spacing:-17.091000px;}
.ws7{word-spacing:-16.875000px;}
.wsc{word-spacing:-15.855000px;}
.ws4{word-spacing:0.000000px;}
.ws0{word-spacing:0.767850px;}
._3a{margin-left:-9.589350px;}
._3{margin-left:-7.879800px;}
._b{margin-left:-6.430650px;}
._6{margin-left:-4.804050px;}
._2{margin-left:-3.340350px;}
._0{margin-left:-1.798650px;}
._1{width:1.456050px;}
._5{width:2.540550px;}
._4{width:4.188000px;}
._9{width:5.854200px;}
._8{width:6.886800px;}
._d{width:8.160000px;}
._c{width:9.264600px;}
._22{width:11.317950px;}
._a{width:12.394800px;}
._2b{width:13.798500px;}
._21{width:15.031050px;}
._1b{width:16.143150px;}
._1a{width:17.449050px;}
._2a{width:19.072050px;}
._14{width:20.398050px;}
._7{width:21.433200px;}
._29{width:23.089650px;}
._10{width:24.788850px;}
._f{width:26.113050px;}
._2e{width:27.561150px;}
._13{width:29.437650px;}
._11{width:30.974850px;}
._12{width:32.003850px;}
._27{width:34.634250px;}
._26{width:35.750700px;}
._2d{width:37.621500px;}
._2c{width:38.648400px;}
._e{width:39.705750px;}
._1e{width:41.188500px;}
._30{width:43.251600px;}
._23{width:44.425350px;}
._28{width:45.430050px;}
._15{width:47.782950px;}
._16{width:49.134450px;}
._20{width:52.485900px;}
._19{width:56.457750px;}
._18{width:57.745950px;}
._17{width:63.953100px;}
._25{width:65.833200px;}
._24{width:67.285350px;}
._1d{width:75.228450px;}
._1c{width:76.464600px;}
._1f{width:79.649400px;}
._2f{width:81.763200px;}
._37{width:89.103150px;}
._35{width:94.141350px;}
._38{width:98.164950px;}
._39{width:100.206150px;}
._31{width:125.533350px;}
._33{width:179.379150px;}
._36{width:189.106500px;}
._34{width:197.377800px;}
._32{width:255.669000px;}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(0,176,80);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs1{font-size:67.500000px;}
.fs5{font-size:76.500000px;}
.fs0{font-size:85.650000px;}
.fs2{font-size:94.650000px;}
.fs3{font-size:108.150000px;}
.fs4{font-size:144.150000px;}
.y0{bottom:0.000000px;}
.y52{bottom:6.750000px;}
.y3d{bottom:6.795000px;}
.y36{bottom:7.875000px;}
.y31{bottom:7.890000px;}
.y5{bottom:14.662500px;}
.y33{bottom:20.250000px;}
.y4b{bottom:20.295000px;}
.y3{bottom:32.662500px;}
.y3c{bottom:32.670000px;}
.y35{bottom:33.780000px;}
.y2f{bottom:33.795000px;}
.y32{bottom:46.170000px;}
.y3a{bottom:58.545000px;}
.y37{bottom:59.655000px;}
.y30{bottom:59.670000px;}
.y50{bottom:59.685000px;}
.y4e{bottom:59.700000px;}
.y4a{bottom:59.715000px;}
.y4{bottom:61.912500px;}
.y48{bottom:122.737500px;}
.y54{bottom:126.112500px;}
.y2d{bottom:130.612500px;}
.y47{bottom:148.612500px;}
.y53{bottom:151.995000px;}
.y2c{bottom:156.480000px;}
.y51{bottom:173.400000px;}
.y46{bottom:174.525000px;}
.y2b{bottom:182.400000px;}
.y45{bottom:200.445000px;}
.y2a{bottom:208.320000px;}
.y44{bottom:226.320000px;}
.y4f{bottom:230.820000px;}
.y29{bottom:234.195000px;}
.y43{bottom:252.225000px;}
.y28{bottom:260.100000px;}
.y42{bottom:278.100000px;}
.y27{bottom:286.005000px;}
.y41{bottom:302.880000px;}
.y26{bottom:311.895000px;}
.y4d{bottom:314.130000px;}
.y40{bottom:328.800000px;}
.y25{bottom:336.675000px;}
.y3f{bottom:354.675000px;}
.y24{bottom:362.550000px;}
.y3e{bottom:380.580000px;}
.y23{bottom:388.455000px;}
.y4c{bottom:397.455000px;}
.y3b{bottom:404.205000px;}
.y22{bottom:414.375000px;}
.y21{bottom:440.250000px;}
.y39{bottom:461.655000px;}
.y20{bottom:466.170000px;}
.y49{bottom:480.780000px;}
.y1f{bottom:492.075000px;}
.y1e{bottom:517.950000px;}
.y1d{bottom:543.870000px;}
.y38{bottom:544.980000px;}
.y1c{bottom:569.745000px;}
.y1b{bottom:595.650000px;}
.y1a{bottom:621.570000px;}
.y34{bottom:628.320000px;}
.y19{bottom:646.320000px;}
.y18{bottom:672.225000px;}
.y17{bottom:698.100000px;}
.y2e{bottom:711.630000px;}
.y16{bottom:724.005000px;}
.y15{bottom:749.925000px;}
.y14{bottom:775.800000px;}
.y13{bottom:801.705000px;}
.y12{bottom:827.625000px;}
.y11{bottom:853.500000px;}
.y55{bottom:874.920000px;}
.y10{bottom:879.420000px;}
.yf{bottom:905.295000px;}
.ye{bottom:931.200000px;}
.yd{bottom:957.120000px;}
.yc{bottom:981.870000px;}
.yb{bottom:1007.775000px;}
.ya{bottom:1033.650000px;}
.y9{bottom:1059.570000px;}
.y8{bottom:1085.475000px;}
.y7{bottom:1111.350000px;}
.y6{bottom:1137.255000px;}
.y2{bottom:1202.580000px;}
.y1{bottom:1222.830000px;}
.h5{height:40.537500px;}
.h10{height:50.662500px;}
.hf{height:50.700000px;}
.h7{height:53.975830px;}
.ha{height:55.918213px;}
.hb{height:63.538330px;}
.h3{height:68.027344px;}
.h9{height:75.043213px;}
.hc{height:75.080566px;}
.he{height:76.575000px;}
.h8{height:77.097656px;}
.hd{height:77.700000px;}
.h11{height:78.629945px;}
.h2{height:86.319141px;}
.h12{height:92.893799px;}
.h4{height:95.389453px;}
.h6{height:121.485791px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w2{width:75.487500px;}
.w6{width:90.112500px;}
.w5{width:102.487500px;}
.w4{width:131.812500px;}
.w3{width:137.400000px;}
.w7{width:202.755000px;}
.w1{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:1.125000px;}
.x2e{left:4.500000px;}
.x3{left:6.750000px;}
.x14{left:11.280000px;}
.x15{left:16.920000px;}
.x1d{left:19.125000px;}
.x22{left:21.375000px;}
.x24{left:22.530000px;}
.x29{left:23.670000px;}
.x25{left:24.780000px;}
.x1f{left:27.030000px;}
.x12{left:28.162500px;}
.x20{left:31.530000px;}
.x2b{left:32.662500px;}
.x26{left:33.795000px;}
.x23{left:36.075000px;}
.x1e{left:41.700000px;}
.x1c{left:43.905000px;}
.x2d{left:45.030000px;}
.x2c{left:46.200000px;}
.x28{left:47.280000px;}
.x16{left:50.700000px;}
.x27{left:56.325000px;}
.x2a{left:59.700000px;}
.x21{left:60.825000px;}
.x1b{left:93.495000px;}
.x11{left:107.025000px;}
.x1{left:108.149987px;}
.x10{left:129.524987px;}
.xd{left:132.937487px;}
.x4{left:155.429987px;}
.x8{left:174.599987px;}
.x13{left:248.925000px;}
.xb{left:282.749987px;}
.x5{left:286.124987px;}
.xa{left:304.124987px;}
.xf{left:308.624987px;}
.x7{left:312.044987px;}
.xc{left:325.544987px;}
.x9{left:340.199987px;}
.x2f{left:346.949987px;}
.xe{left:371.744987px;}
.x17{left:384.120000px;}
.x6{left:457.319987px;}
.x19{left:491.145000px;}
.x1a{left:584.625000px;}
.x2{left:802.005000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls16{letter-spacing:-5.002667pt;}
.ls1a{letter-spacing:-2.906667pt;}
.ls8{letter-spacing:-2.192000pt;}
.lse{letter-spacing:-2.000000pt;}
.ls1b{letter-spacing:-1.808000pt;}
.ls15{letter-spacing:-1.354667pt;}
.lsd{letter-spacing:-1.093333pt;}
.ls7{letter-spacing:-1.002667pt;}
.ls5{letter-spacing:-0.778667pt;}
.ls18{letter-spacing:-0.773333pt;}
.ls19{letter-spacing:-0.318400pt;}
.ls3{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.133333pt;}
.ls4{letter-spacing:1.002667pt;}
.ls1c{letter-spacing:1.020000pt;}
.lsf{letter-spacing:1.093333pt;}
.ls14{letter-spacing:1.329333pt;}
.ls17{letter-spacing:1.354667pt;}
.lsa{letter-spacing:1.356000pt;}
.ls12{letter-spacing:1.462667pt;}
.ls11{letter-spacing:1.489333pt;}
.ls10{letter-spacing:1.516000pt;}
.ls20{letter-spacing:1.708000pt;}
.ls0{letter-spacing:1.904000pt;}
.ls6{letter-spacing:2.000000pt;}
.ls13{letter-spacing:2.160000pt;}
.ls1f{letter-spacing:2.398667pt;}
.ls1{letter-spacing:3.000000pt;}
.ls9{letter-spacing:3.002667pt;}
.ls22{letter-spacing:5.096000pt;}
.lsb{letter-spacing:7.000000pt;}
.ls2{letter-spacing:15.053333pt;}
.ls1d{letter-spacing:19.000000pt;}
.lsc{letter-spacing:23.000000pt;}
.ls1e{letter-spacing:41.069333pt;}
.ws3{word-spacing:-19.000000pt;}
.ws2{word-spacing:-18.904000pt;}
.ws9{word-spacing:-18.354667pt;}
.ws6{word-spacing:-18.093333pt;}
.wse{word-spacing:-18.020000pt;}
.ws1{word-spacing:-17.000000pt;}
.wsb{word-spacing:-16.681600pt;}
.wsa{word-spacing:-16.226667pt;}
.ws5{word-spacing:-15.906667pt;}
.ws8{word-spacing:-15.645333pt;}
.wsd{word-spacing:-15.192000pt;}
.ws7{word-spacing:-15.000000pt;}
.wsc{word-spacing:-14.093333pt;}
.ws4{word-spacing:0.000000pt;}
.ws0{word-spacing:0.682533pt;}
._3a{margin-left:-8.523867pt;}
._3{margin-left:-7.004267pt;}
._b{margin-left:-5.716133pt;}
._6{margin-left:-4.270267pt;}
._2{margin-left:-2.969200pt;}
._0{margin-left:-1.598800pt;}
._1{width:1.294267pt;}
._5{width:2.258267pt;}
._4{width:3.722667pt;}
._9{width:5.203733pt;}
._8{width:6.121600pt;}
._d{width:7.253333pt;}
._c{width:8.235200pt;}
._22{width:10.060400pt;}
._a{width:11.017600pt;}
._2b{width:12.265333pt;}
._21{width:13.360933pt;}
._1b{width:14.349467pt;}
._1a{width:15.510267pt;}
._2a{width:16.952933pt;}
._14{width:18.131600pt;}
._7{width:19.051733pt;}
._29{width:20.524133pt;}
._10{width:22.034533pt;}
._f{width:23.211600pt;}
._2e{width:24.498800pt;}
._13{width:26.166800pt;}
._11{width:27.533200pt;}
._12{width:28.447867pt;}
._27{width:30.786000pt;}
._26{width:31.778400pt;}
._2d{width:33.441333pt;}
._2c{width:34.354133pt;}
._e{width:35.294000pt;}
._1e{width:36.612000pt;}
._30{width:38.445867pt;}
._23{width:39.489200pt;}
._28{width:40.382267pt;}
._15{width:42.473733pt;}
._16{width:43.675067pt;}
._20{width:46.654133pt;}
._19{width:50.184667pt;}
._18{width:51.329733pt;}
._17{width:56.847200pt;}
._25{width:58.518400pt;}
._24{width:59.809200pt;}
._1d{width:66.869733pt;}
._1c{width:67.968533pt;}
._1f{width:70.799467pt;}
._2f{width:72.678400pt;}
._37{width:79.202800pt;}
._35{width:83.681200pt;}
._38{width:87.257733pt;}
._39{width:89.072133pt;}
._31{width:111.585200pt;}
._33{width:159.448133pt;}
._36{width:168.094667pt;}
._34{width:175.446933pt;}
._32{width:227.261333pt;}
.fs1{font-size:60.000000pt;}
.fs5{font-size:68.000000pt;}
.fs0{font-size:76.133333pt;}
.fs2{font-size:84.133333pt;}
.fs3{font-size:96.133333pt;}
.fs4{font-size:128.133333pt;}
.y0{bottom:0.000000pt;}
.y52{bottom:6.000000pt;}
.y3d{bottom:6.040000pt;}
.y36{bottom:7.000000pt;}
.y31{bottom:7.013333pt;}
.y5{bottom:13.033333pt;}
.y33{bottom:18.000000pt;}
.y4b{bottom:18.040000pt;}
.y3{bottom:29.033333pt;}
.y3c{bottom:29.040000pt;}
.y35{bottom:30.026667pt;}
.y2f{bottom:30.040000pt;}
.y32{bottom:41.040000pt;}
.y3a{bottom:52.040000pt;}
.y37{bottom:53.026667pt;}
.y30{bottom:53.040000pt;}
.y50{bottom:53.053333pt;}
.y4e{bottom:53.066667pt;}
.y4a{bottom:53.080000pt;}
.y4{bottom:55.033333pt;}
.y48{bottom:109.100000pt;}
.y54{bottom:112.100000pt;}
.y2d{bottom:116.100000pt;}
.y47{bottom:132.100000pt;}
.y53{bottom:135.106667pt;}
.y2c{bottom:139.093333pt;}
.y51{bottom:154.133333pt;}
.y46{bottom:155.133333pt;}
.y2b{bottom:162.133333pt;}
.y45{bottom:178.173333pt;}
.y2a{bottom:185.173333pt;}
.y44{bottom:201.173333pt;}
.y4f{bottom:205.173333pt;}
.y29{bottom:208.173333pt;}
.y43{bottom:224.200000pt;}
.y28{bottom:231.200000pt;}
.y42{bottom:247.200000pt;}
.y27{bottom:254.226667pt;}
.y41{bottom:269.226667pt;}
.y26{bottom:277.240000pt;}
.y4d{bottom:279.226667pt;}
.y40{bottom:292.266667pt;}
.y25{bottom:299.266667pt;}
.y3f{bottom:315.266667pt;}
.y24{bottom:322.266667pt;}
.y3e{bottom:338.293333pt;}
.y23{bottom:345.293333pt;}
.y4c{bottom:353.293333pt;}
.y3b{bottom:359.293333pt;}
.y22{bottom:368.333333pt;}
.y21{bottom:391.333333pt;}
.y39{bottom:410.360000pt;}
.y20{bottom:414.373333pt;}
.y49{bottom:427.360000pt;}
.y1f{bottom:437.400000pt;}
.y1e{bottom:460.400000pt;}
.y1d{bottom:483.440000pt;}
.y38{bottom:484.426667pt;}
.y1c{bottom:506.440000pt;}
.y1b{bottom:529.466667pt;}
.y1a{bottom:552.506667pt;}
.y34{bottom:558.506667pt;}
.y19{bottom:574.506667pt;}
.y18{bottom:597.533333pt;}
.y17{bottom:620.533333pt;}
.y2e{bottom:632.560000pt;}
.y16{bottom:643.560000pt;}
.y15{bottom:666.600000pt;}
.y14{bottom:689.600000pt;}
.y13{bottom:712.626667pt;}
.y12{bottom:735.666667pt;}
.y11{bottom:758.666667pt;}
.y55{bottom:777.706667pt;}
.y10{bottom:781.706667pt;}
.yf{bottom:804.706667pt;}
.ye{bottom:827.733333pt;}
.yd{bottom:850.773333pt;}
.yc{bottom:872.773333pt;}
.yb{bottom:895.800000pt;}
.ya{bottom:918.800000pt;}
.y9{bottom:941.840000pt;}
.y8{bottom:964.866667pt;}
.y7{bottom:987.866667pt;}
.y6{bottom:1010.893333pt;}
.y2{bottom:1068.960000pt;}
.y1{bottom:1086.960000pt;}
.h5{height:36.033333pt;}
.h10{height:45.033333pt;}
.hf{height:45.066667pt;}
.h7{height:47.978516pt;}
.ha{height:49.705078pt;}
.hb{height:56.478516pt;}
.h3{height:60.468750pt;}
.h9{height:66.705078pt;}
.hc{height:66.738281pt;}
.he{height:68.066667pt;}
.h8{height:68.531250pt;}
.hd{height:69.066667pt;}
.h11{height:69.893285pt;}
.h2{height:76.728125pt;}
.h12{height:82.572266pt;}
.h4{height:84.790625pt;}
.h6{height:107.987370pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w2{width:67.100000pt;}
.w6{width:80.100000pt;}
.w5{width:91.100000pt;}
.w4{width:117.166667pt;}
.w3{width:122.133333pt;}
.w7{width:180.226667pt;}
.w1{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:1.000000pt;}
.x2e{left:4.000000pt;}
.x3{left:6.000000pt;}
.x14{left:10.026667pt;}
.x15{left:15.040000pt;}
.x1d{left:17.000000pt;}
.x22{left:19.000000pt;}
.x24{left:20.026667pt;}
.x29{left:21.040000pt;}
.x25{left:22.026667pt;}
.x1f{left:24.026667pt;}
.x12{left:25.033333pt;}
.x20{left:28.026667pt;}
.x2b{left:29.033333pt;}
.x26{left:30.040000pt;}
.x23{left:32.066667pt;}
.x1e{left:37.066667pt;}
.x1c{left:39.026667pt;}
.x2d{left:40.026667pt;}
.x2c{left:41.066667pt;}
.x28{left:42.026667pt;}
.x16{left:45.066667pt;}
.x27{left:50.066667pt;}
.x2a{left:53.066667pt;}
.x21{left:54.066667pt;}
.x1b{left:83.106667pt;}
.x11{left:95.133333pt;}
.x1{left:96.133322pt;}
.x10{left:115.133322pt;}
.xd{left:118.166655pt;}
.x4{left:138.159988pt;}
.x8{left:155.199988pt;}
.x13{left:221.266667pt;}
.xb{left:251.333322pt;}
.x5{left:254.333322pt;}
.xa{left:270.333322pt;}
.xf{left:274.333322pt;}
.x7{left:277.373322pt;}
.xc{left:289.373322pt;}
.x9{left:302.399988pt;}
.x2f{left:308.399988pt;}
.xe{left:330.439988pt;}
.x17{left:341.440000pt;}
.x6{left:406.506655pt;}
.x19{left:436.573333pt;}
.x1a{left:519.666667pt;}
.x2{left:712.893333pt;}
}




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