
    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_5f96afa778ca235c265a8f55.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_38d5fe2e067dd97c6e117007.woff')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_9229dcc2ceb92d4230d9d8d3.woff')format("woff");}.ff3{font-family:ff3;line-height:0.932129;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_d344ef743ca45de01651375c.woff')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_e6c33741b6e5c81018442dd1.woff')format("woff");}.ff5{font-family:ff5;line-height:1.435059;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_2f8697722d9be4dc510d5f8d.woff')format("woff");}.ff6{font-family:ff6;line-height:1.401855;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_882b0aa429165f53e5fb47a0.woff')format("woff");}.ff7{font-family:ff7;line-height:0.752000;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_f8fd8f47f0e3f4f73bc37768.woff')format("woff");}.ff8{font-family:ff8;line-height:0.900879;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_0b2ba8fd531a872361b50e30.woff')format("woff");}.ff9{font-family:ff9;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_20f22566337a2b6c858179fb.woff')format("woff");}.ffa{font-family:ffa;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;}
.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);}
.v1{vertical-align:-6.000000px;}
.v0{vertical-align:0.000000px;}
.ls12{letter-spacing:-0.618000px;}
.ls13{letter-spacing:-0.534000px;}
.ls10{letter-spacing:-0.462000px;}
.ls8{letter-spacing:-0.282000px;}
.lsf{letter-spacing:-0.180000px;}
.ls9{letter-spacing:-0.132000px;}
.ls7{letter-spacing:-0.114000px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.048000px;}
.lsd{letter-spacing:0.084000px;}
.ls11{letter-spacing:0.132000px;}
.lsc{letter-spacing:0.312000px;}
.lse{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.390000px;}
.ls0{letter-spacing:0.444000px;}
.ls4{letter-spacing:0.528000px;}
.lsb{letter-spacing:0.720000px;}
.ls5{letter-spacing:1.206000px;}
.ls14{letter-spacing:1.632000px;}
.ls2{letter-spacing:848.208000px;}
.ls6{letter-spacing:849.534000px;}
.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;}
}
.ws0{word-spacing:-18.480000px;}
.ws1{word-spacing:-18.396000px;}
.ws8{word-spacing:-16.428000px;}
.wsa{word-spacing:-16.068000px;}
.ws7{word-spacing:-15.708000px;}
.ws5{word-spacing:-15.306000px;}
.wsc{word-spacing:-15.048000px;}
.ws9{word-spacing:-14.916000px;}
.ws4{word-spacing:-14.802000px;}
.ws6{word-spacing:-14.784000px;}
.wsd{word-spacing:-14.736000px;}
.ws3{word-spacing:-14.634000px;}
.wsb{word-spacing:-14.454000px;}
.wsf{word-spacing:-14.382000px;}
.wse{word-spacing:-14.298000px;}
.ws2{word-spacing:0.000000px;}
._1{margin-left:-1.512000px;}
._0{width:1.224000px;}
._2{width:2.964000px;}
._3{width:413.670000px;}
._4{width:1272.756000px;}
.fc7{color:rgb(46,116,181);}
.fc3{color:transparent;}
.fc6{color:rgb(5,99,193);}
.fc5{color:rgb(47,84,150);}
.fc2{color:rgb(46,117,181);}
.fc1{color:rgb(89,154,213);}
.fc4{color:rgb(33,33,33);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fs7{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs8{font-size:84.000000px;}
.fs4{font-size:96.000000px;}
.fsa{font-size:108.000000px;}
.fs1{font-size:120.000000px;}
.fs2{font-size:168.000000px;}
.fs3{font-size:168.150000px;}
.y0{bottom:0.000000px;}
.y2{bottom:6.735000px;}
.y15{bottom:55.537500px;}
.y5{bottom:57.412500px;}
.y4{bottom:77.662500px;}
.y87{bottom:146.287500px;}
.y86{bottom:168.045000px;}
.y85{bottom:189.825000px;}
.y5f{bottom:210.825000px;}
.y84{bottom:211.575000px;}
.y3b{bottom:223.200000px;}
.y5e{bottom:232.575000px;}
.y83{bottom:233.325000px;}
.y14{bottom:238.950000px;}
.y5d{bottom:254.325000px;}
.y3a{bottom:254.700000px;}
.y82{bottom:267.075000px;}
.y5c{bottom:276.075000px;}
.y13{bottom:280.575000px;}
.y39{bottom:286.950000px;}
.y5b{bottom:297.825000px;}
.y81{bottom:304.605000px;}
.y38{bottom:308.745000px;}
.y12{bottom:309.870000px;}
.y5a{bottom:319.620000px;}
.y80{bottom:326.370000px;}
.y37{bottom:330.495000px;}
.y11{bottom:339.120000px;}
.y59{bottom:341.355000px;}
.y7f{bottom:348.105000px;}
.y36{bottom:352.245000px;}
.y7e{bottom:369.870000px;}
.y35{bottom:373.995000px;}
.y58{bottom:375.105000px;}
.y10{bottom:380.370000px;}
.ya0{bottom:390.870000px;}
.y7d{bottom:391.605000px;}
.y34{bottom:395.730000px;}
.y57{bottom:396.495000px;}
.y7c{bottom:413.370000px;}
.y33{bottom:417.495000px;}
.y56{bottom:418.245000px;}
.yf{bottom:423.495000px;}
.y9f{bottom:424.620000px;}
.y7b{bottom:435.150000px;}
.y32{bottom:439.275000px;}
.y55{bottom:440.025000px;}
.y7a{bottom:456.900000px;}
.y9e{bottom:458.400000px;}
.y31{bottom:461.025000px;}
.y54{bottom:461.775000px;}
.ye{bottom:471.150000px;}
.y9d{bottom:480.150000px;}
.y53{bottom:483.525000px;}
.y79{bottom:491.025000px;}
.y30{bottom:494.775000px;}
.y9c{bottom:501.900000px;}
.y52{bottom:505.275000px;}
.y2f{bottom:516.525000px;}
.yd{bottom:518.775000px;}
.y9b{bottom:523.650000px;}
.y51{bottom:527.025000px;}
.y78{bottom:528.150000px;}
.y2e{bottom:538.275000px;}
.y50{bottom:548.775000px;}
.y77{bottom:549.900000px;}
.y9a{bottom:557.400000px;}
.y2d{bottom:560.070000px;}
.yc{bottom:566.445000px;}
.y76{bottom:571.695000px;}
.y4f{bottom:578.445000px;}
.y99{bottom:579.195000px;}
.y2c{bottom:581.820000px;}
.y75{bottom:593.445000px;}
.y98{bottom:600.945000px;}
.y2b{bottom:615.570000px;}
.y97{bottom:622.695000px;}
.y74{bottom:627.195000px;}
.yb{bottom:628.320000px;}
.y2a{bottom:637.320000px;}
.y96{bottom:644.445000px;}
.y73{bottom:648.945000px;}
.y29{bottom:659.070000px;}
.y95{bottom:666.195000px;}
.y72{bottom:670.695000px;}
.ya{bottom:679.695000px;}
.y28{bottom:680.820000px;}
.y71{bottom:692.475000px;}
.y94{bottom:699.975000px;}
.y4e{bottom:702.600000px;}
.y27{bottom:710.100000px;}
.y70{bottom:714.225000px;}
.y93{bottom:721.725000px;}
.y4d{bottom:724.350000px;}
.y9{bottom:731.475000px;}
.y6f{bottom:735.975000px;}
.y92{bottom:743.475000px;}
.y4c{bottom:745.725000px;}
.y26{bottom:747.225000px;}
.y4b{bottom:767.475000px;}
.y25{bottom:768.975000px;}
.y6e{bottom:769.725000px;}
.y91{bottom:777.225000px;}
.y8{bottom:782.850000px;}
.y4a{bottom:789.225000px;}
.y24{bottom:790.725000px;}
.y6d{bottom:791.475000px;}
.y90{bottom:798.975000px;}
.y23{bottom:812.475000px;}
.y6c{bottom:813.225000px;}
.y8f{bottom:820.395000px;}
.y49{bottom:823.005000px;}
.y7{bottom:834.255000px;}
.y8e{bottom:842.145000px;}
.y48{bottom:844.755000px;}
.y6b{bottom:847.005000px;}
.y22{bottom:856.005000px;}
.y47{bottom:866.520000px;}
.y6a{bottom:868.755000px;}
.y8d{bottom:875.895000px;}
.y6{bottom:876.255000px;}
.y21{bottom:877.755000px;}
.y46{bottom:888.255000px;}
.y69{bottom:890.505000px;}
.y8c{bottom:897.630000px;}
.y45{bottom:910.005000px;}
.y20{bottom:911.505000px;}
.y68{bottom:912.255000px;}
.y8b{bottom:930.630000px;}
.y44{bottom:931.755000px;}
.y1f{bottom:933.255000px;}
.y67{bottom:946.050000px;}
.y1e{bottom:955.050000px;}
.y43{bottom:965.550000px;}
.y66{bottom:967.800000px;}
.y1d{bottom:976.800000px;}
.y42{bottom:987.300000px;}
.y65{bottom:989.550000px;}
.y8a{bottom:997.425000px;}
.y41{bottom:1009.050000px;}
.y1c{bottom:1010.550000px;}
.y64{bottom:1011.300000px;}
.y40{bottom:1030.800000px;}
.y89{bottom:1031.175000px;}
.y1b{bottom:1032.300000px;}
.y63{bottom:1033.050000px;}
.y3f{bottom:1052.550000px;}
.y1a{bottom:1054.050000px;}
.y62{bottom:1062.300000px;}
.y88{bottom:1064.925000px;}
.y19{bottom:1075.830000px;}
.y3e{bottom:1086.330000px;}
.y18{bottom:1097.205000px;}
.y61{bottom:1098.705000px;}
.y3d{bottom:1108.080000px;}
.y17{bottom:1118.955000px;}
.y60{bottom:1131.705000px;}
.y3c{bottom:1137.330000px;}
.y16{bottom:1140.705000px;}
.y3{bottom:1173.705000px;}
.y1{bottom:1189.470000px;}
.h1{height:22.522500px;}
.h8{height:48.840000px;}
.h9{height:63.000000px;}
.h2{height:65.645508px;}
.hb{height:67.579102px;}
.h6{height:72.000000px;}
.ha{height:81.000000px;}
.h7{height:84.656250px;}
.h3{height:122.871094px;}
.h5{height:126.000000px;}
.h4{height:126.112500px;}
.h0{height:1263.000000px;}
.w3{width:233.325000px;}
.w2{width:233.370000px;}
.w4{width:892.874987px;}
.w0{width:892.875000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:65.662487px;}
.x1{left:108.037500px;}
.x3{left:116.670000px;}
.xa{left:151.199987px;}
.xe{left:173.324987px;}
.xd{left:192.824987px;}
.x5{left:234.060000px;}
.x9{left:286.994987px;}
.xb{left:338.774987px;}
.x2{left:341.400000px;}
.x7{left:378.899987px;}
.x8{left:425.444987px;}
.x4{left:574.770000px;}
.xc{left:634.379987px;}
.xf{left:741.674987px;}
.x10{left:808.079987px;}
@media print{
.v1{vertical-align:-5.333333pt;}
.v0{vertical-align:0.000000pt;}
.ls12{letter-spacing:-0.549333pt;}
.ls13{letter-spacing:-0.474667pt;}
.ls10{letter-spacing:-0.410667pt;}
.ls8{letter-spacing:-0.250667pt;}
.lsf{letter-spacing:-0.160000pt;}
.ls9{letter-spacing:-0.117333pt;}
.ls7{letter-spacing:-0.101333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.042667pt;}
.lsd{letter-spacing:0.074667pt;}
.ls11{letter-spacing:0.117333pt;}
.lsc{letter-spacing:0.277333pt;}
.lse{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.346667pt;}
.ls0{letter-spacing:0.394667pt;}
.ls4{letter-spacing:0.469333pt;}
.lsb{letter-spacing:0.640000pt;}
.ls5{letter-spacing:1.072000pt;}
.ls14{letter-spacing:1.450667pt;}
.ls2{letter-spacing:753.962667pt;}
.ls6{letter-spacing:755.141333pt;}
.ws0{word-spacing:-16.426667pt;}
.ws1{word-spacing:-16.352000pt;}
.ws8{word-spacing:-14.602667pt;}
.wsa{word-spacing:-14.282667pt;}
.ws7{word-spacing:-13.962667pt;}
.ws5{word-spacing:-13.605333pt;}
.wsc{word-spacing:-13.376000pt;}
.ws9{word-spacing:-13.258667pt;}
.ws4{word-spacing:-13.157333pt;}
.ws6{word-spacing:-13.141333pt;}
.wsd{word-spacing:-13.098667pt;}
.ws3{word-spacing:-13.008000pt;}
.wsb{word-spacing:-12.848000pt;}
.wsf{word-spacing:-12.784000pt;}
.wse{word-spacing:-12.709333pt;}
.ws2{word-spacing:0.000000pt;}
._1{margin-left:-1.344000pt;}
._0{width:1.088000pt;}
._2{width:2.634667pt;}
._3{width:367.706667pt;}
._4{width:1131.338667pt;}
.fs9{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fs7{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs8{font-size:74.666667pt;}
.fs4{font-size:85.333333pt;}
.fsa{font-size:96.000000pt;}
.fs1{font-size:106.666667pt;}
.fs2{font-size:149.333333pt;}
.fs3{font-size:149.466667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:5.986667pt;}
.y15{bottom:49.366667pt;}
.y5{bottom:51.033333pt;}
.y4{bottom:69.033333pt;}
.y87{bottom:130.033333pt;}
.y86{bottom:149.373333pt;}
.y85{bottom:168.733333pt;}
.y5f{bottom:187.400000pt;}
.y84{bottom:188.066667pt;}
.y3b{bottom:198.400000pt;}
.y5e{bottom:206.733333pt;}
.y83{bottom:207.400000pt;}
.y14{bottom:212.400000pt;}
.y5d{bottom:226.066667pt;}
.y3a{bottom:226.400000pt;}
.y82{bottom:237.400000pt;}
.y5c{bottom:245.400000pt;}
.y13{bottom:249.400000pt;}
.y39{bottom:255.066667pt;}
.y5b{bottom:264.733333pt;}
.y81{bottom:270.760000pt;}
.y38{bottom:274.440000pt;}
.y12{bottom:275.440000pt;}
.y5a{bottom:284.106667pt;}
.y80{bottom:290.106667pt;}
.y37{bottom:293.773333pt;}
.y11{bottom:301.440000pt;}
.y59{bottom:303.426667pt;}
.y7f{bottom:309.426667pt;}
.y36{bottom:313.106667pt;}
.y7e{bottom:328.773333pt;}
.y35{bottom:332.440000pt;}
.y58{bottom:333.426667pt;}
.y10{bottom:338.106667pt;}
.ya0{bottom:347.440000pt;}
.y7d{bottom:348.093333pt;}
.y34{bottom:351.760000pt;}
.y57{bottom:352.440000pt;}
.y7c{bottom:367.440000pt;}
.y33{bottom:371.106667pt;}
.y56{bottom:371.773333pt;}
.yf{bottom:376.440000pt;}
.y9f{bottom:377.440000pt;}
.y7b{bottom:386.800000pt;}
.y32{bottom:390.466667pt;}
.y55{bottom:391.133333pt;}
.y7a{bottom:406.133333pt;}
.y9e{bottom:407.466667pt;}
.y31{bottom:409.800000pt;}
.y54{bottom:410.466667pt;}
.ye{bottom:418.800000pt;}
.y9d{bottom:426.800000pt;}
.y53{bottom:429.800000pt;}
.y79{bottom:436.466667pt;}
.y30{bottom:439.800000pt;}
.y9c{bottom:446.133333pt;}
.y52{bottom:449.133333pt;}
.y2f{bottom:459.133333pt;}
.yd{bottom:461.133333pt;}
.y9b{bottom:465.466667pt;}
.y51{bottom:468.466667pt;}
.y78{bottom:469.466667pt;}
.y2e{bottom:478.466667pt;}
.y50{bottom:487.800000pt;}
.y77{bottom:488.800000pt;}
.y9a{bottom:495.466667pt;}
.y2d{bottom:497.840000pt;}
.yc{bottom:503.506667pt;}
.y76{bottom:508.173333pt;}
.y4f{bottom:514.173333pt;}
.y99{bottom:514.840000pt;}
.y2c{bottom:517.173333pt;}
.y75{bottom:527.506667pt;}
.y98{bottom:534.173333pt;}
.y2b{bottom:547.173333pt;}
.y97{bottom:553.506667pt;}
.y74{bottom:557.506667pt;}
.yb{bottom:558.506667pt;}
.y2a{bottom:566.506667pt;}
.y96{bottom:572.840000pt;}
.y73{bottom:576.840000pt;}
.y29{bottom:585.840000pt;}
.y95{bottom:592.173333pt;}
.y72{bottom:596.173333pt;}
.ya{bottom:604.173333pt;}
.y28{bottom:605.173333pt;}
.y71{bottom:615.533333pt;}
.y94{bottom:622.200000pt;}
.y4e{bottom:624.533333pt;}
.y27{bottom:631.200000pt;}
.y70{bottom:634.866667pt;}
.y93{bottom:641.533333pt;}
.y4d{bottom:643.866667pt;}
.y9{bottom:650.200000pt;}
.y6f{bottom:654.200000pt;}
.y92{bottom:660.866667pt;}
.y4c{bottom:662.866667pt;}
.y26{bottom:664.200000pt;}
.y4b{bottom:682.200000pt;}
.y25{bottom:683.533333pt;}
.y6e{bottom:684.200000pt;}
.y91{bottom:690.866667pt;}
.y8{bottom:695.866667pt;}
.y4a{bottom:701.533333pt;}
.y24{bottom:702.866667pt;}
.y6d{bottom:703.533333pt;}
.y90{bottom:710.200000pt;}
.y23{bottom:722.200000pt;}
.y6c{bottom:722.866667pt;}
.y8f{bottom:729.240000pt;}
.y49{bottom:731.560000pt;}
.y7{bottom:741.560000pt;}
.y8e{bottom:748.573333pt;}
.y48{bottom:750.893333pt;}
.y6b{bottom:752.893333pt;}
.y22{bottom:760.893333pt;}
.y47{bottom:770.240000pt;}
.y6a{bottom:772.226667pt;}
.y8d{bottom:778.573333pt;}
.y6{bottom:778.893333pt;}
.y21{bottom:780.226667pt;}
.y46{bottom:789.560000pt;}
.y69{bottom:791.560000pt;}
.y8c{bottom:797.893333pt;}
.y45{bottom:808.893333pt;}
.y20{bottom:810.226667pt;}
.y68{bottom:810.893333pt;}
.y8b{bottom:827.226667pt;}
.y44{bottom:828.226667pt;}
.y1f{bottom:829.560000pt;}
.y67{bottom:840.933333pt;}
.y1e{bottom:848.933333pt;}
.y43{bottom:858.266667pt;}
.y66{bottom:860.266667pt;}
.y1d{bottom:868.266667pt;}
.y42{bottom:877.600000pt;}
.y65{bottom:879.600000pt;}
.y8a{bottom:886.600000pt;}
.y41{bottom:896.933333pt;}
.y1c{bottom:898.266667pt;}
.y64{bottom:898.933333pt;}
.y40{bottom:916.266667pt;}
.y89{bottom:916.600000pt;}
.y1b{bottom:917.600000pt;}
.y63{bottom:918.266667pt;}
.y3f{bottom:935.600000pt;}
.y1a{bottom:936.933333pt;}
.y62{bottom:944.266667pt;}
.y88{bottom:946.600000pt;}
.y19{bottom:956.293333pt;}
.y3e{bottom:965.626667pt;}
.y18{bottom:975.293333pt;}
.y61{bottom:976.626667pt;}
.y3d{bottom:984.960000pt;}
.y17{bottom:994.626667pt;}
.y60{bottom:1005.960000pt;}
.y3c{bottom:1010.960000pt;}
.y16{bottom:1013.960000pt;}
.y3{bottom:1043.293333pt;}
.y1{bottom:1057.306667pt;}
.h1{height:20.020000pt;}
.h8{height:43.413333pt;}
.h9{height:56.000000pt;}
.h2{height:58.351562pt;}
.hb{height:60.070312pt;}
.h6{height:64.000000pt;}
.ha{height:72.000000pt;}
.h7{height:75.250000pt;}
.h3{height:109.218750pt;}
.h5{height:112.000000pt;}
.h4{height:112.100000pt;}
.h0{height:1122.666667pt;}
.w3{width:207.400000pt;}
.w2{width:207.440000pt;}
.w4{width:793.666655pt;}
.w0{width:793.666667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:58.366655pt;}
.x1{left:96.033333pt;}
.x3{left:103.706667pt;}
.xa{left:134.399988pt;}
.xe{left:154.066655pt;}
.xd{left:171.399988pt;}
.x5{left:208.053333pt;}
.x9{left:255.106655pt;}
.xb{left:301.133322pt;}
.x2{left:303.466667pt;}
.x7{left:336.799988pt;}
.x8{left:378.173322pt;}
.x4{left:510.906667pt;}
.xc{left:563.893322pt;}
.xf{left:659.266655pt;}
.x10{left:718.293322pt;}
}




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