
    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_d6c313b7558d6afdf60cdb4e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.185000;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_489a8435eba40c1869d922ca.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.179000;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_004aaa69acc1d33fc4fb7c05.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.168000;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_3bb8c3a5f9e56577de0a8bbb.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.172000;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_c6a177a4af46994dac9fa7a5.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.160000;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_37b0e080b10caeb1b11d8d9f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.698000;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_37b0e080b10caeb1b11d8d9f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.698000;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_e58f144db3c0dddaa3cd5e97.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.039000;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_d90d57a651f692001b24cf78.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.050000;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_21985de5e4f078ffe5582e60.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.162000;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980000px;}
.ls18{letter-spacing:-4.158000px;}
.ls12{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.060000px;}
.ls9{letter-spacing:0.072600px;}
.lsf{letter-spacing:0.088800px;}
.ls22{letter-spacing:0.103200px;}
.ls10{letter-spacing:0.111600px;}
.ls3{letter-spacing:0.120000px;}
.ls23{letter-spacing:0.154800px;}
.ls14{letter-spacing:0.180000px;}
.ls1f{letter-spacing:0.210000px;}
.ls11{letter-spacing:0.222000px;}
.lse{letter-spacing:0.240000px;}
.ls6{letter-spacing:0.300000px;}
.ls21{letter-spacing:0.330000px;}
.ls7{letter-spacing:0.360000px;}
.ls24{letter-spacing:0.361200px;}
.ls25{letter-spacing:0.412800px;}
.ls5{letter-spacing:0.420000px;}
.ls8{letter-spacing:0.480000px;}
.ls1{letter-spacing:0.540000px;}
.ls4{letter-spacing:0.600000px;}
.ls1a{letter-spacing:0.606000px;}
.lsb{letter-spacing:0.660000px;}
.ls20{letter-spacing:0.690000px;}
.lsa{letter-spacing:0.720000px;}
.lsc{letter-spacing:0.750000px;}
.ls19{letter-spacing:0.780000px;}
.lsd{letter-spacing:0.840000px;}
.ls16{letter-spacing:0.900000px;}
.ls0{letter-spacing:0.960000px;}
.ls15{letter-spacing:1.020000px;}
.ls1c{letter-spacing:1.080000px;}
.ls17{letter-spacing:1.188000px;}
.ls13{letter-spacing:1.200000px;}
.ls1e{letter-spacing:1.320000px;}
.ls27{letter-spacing:1.651200px;}
.ls1d{letter-spacing:1.920000px;}
.ls1b{letter-spacing:2.424000px;}
.ls26{letter-spacing:3.199200px;}
.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;}
}
.ws45{word-spacing:-14.602800px;}
.ws0{word-spacing:-12.660000px;}
.ws3c{word-spacing:-11.490000px;}
.ws2e{word-spacing:-8.640000px;}
.ws49{word-spacing:-1.651200px;}
.ws18{word-spacing:-1.188000px;}
.ws1d{word-spacing:-1.080000px;}
.ws23{word-spacing:-0.960000px;}
.ws9{word-spacing:-0.900000px;}
.ws4{word-spacing:-0.840000px;}
.ws27{word-spacing:-0.780000px;}
.ws1c{word-spacing:-0.720000px;}
.wsd{word-spacing:-0.660000px;}
.ws48{word-spacing:-0.516000px;}
.ws38{word-spacing:-0.480000px;}
.ws5{word-spacing:-0.420000px;}
.ws17{word-spacing:-0.222000px;}
.ws3e{word-spacing:-0.180000px;}
.ws47{word-spacing:-0.154800px;}
.ws1f{word-spacing:-0.120000px;}
.ws3b{word-spacing:-0.060000px;}
.ws1{word-spacing:0.000000px;}
.ws21{word-spacing:0.060000px;}
.ws2d{word-spacing:0.120000px;}
.ws3f{word-spacing:0.180000px;}
.ws34{word-spacing:0.300000px;}
.ws2b{word-spacing:0.360000px;}
.ws35{word-spacing:0.420000px;}
.ws13{word-spacing:0.480000px;}
.ws4a{word-spacing:0.516000px;}
.ws4b{word-spacing:0.567600px;}
.ws1e{word-spacing:0.600000px;}
.ws15{word-spacing:0.660000px;}
.ws8{word-spacing:0.840000px;}
.ws22{word-spacing:1.020000px;}
.ws32{word-spacing:1.080000px;}
.ws41{word-spacing:1.200000px;}
.wsa{word-spacing:1.260000px;}
.ws2c{word-spacing:1.320000px;}
.ws37{word-spacing:1.380000px;}
.ws4c{word-spacing:1.393200px;}
.ws7{word-spacing:1.500000px;}
.wsb{word-spacing:1.560000px;}
.ws4d{word-spacing:1.599600px;}
.ws1a{word-spacing:1.620000px;}
.ws3a{word-spacing:1.680000px;}
.wsc{word-spacing:1.740000px;}
.ws25{word-spacing:1.800000px;}
.ws36{word-spacing:1.920000px;}
.ws3{word-spacing:1.980000px;}
.ws30{word-spacing:2.040000px;}
.ws14{word-spacing:2.100000px;}
.ws16{word-spacing:2.400000px;}
.ws6{word-spacing:2.520000px;}
.ws31{word-spacing:2.580000px;}
.wsf{word-spacing:2.700000px;}
.ws12{word-spacing:2.760000px;}
.ws44{word-spacing:2.820000px;}
.ws28{word-spacing:2.940000px;}
.wse{word-spacing:3.000000px;}
.ws10{word-spacing:3.180000px;}
.ws33{word-spacing:3.240000px;}
.ws1b{word-spacing:3.480000px;}
.ws11{word-spacing:3.540000px;}
.ws42{word-spacing:3.660000px;}
.ws26{word-spacing:3.720000px;}
.ws43{word-spacing:3.780000px;}
.ws40{word-spacing:3.840000px;}
.ws2a{word-spacing:3.960000px;}
.ws29{word-spacing:4.020000px;}
.ws2{word-spacing:4.320000px;}
.ws24{word-spacing:4.380000px;}
.ws20{word-spacing:5.400000px;}
.ws39{word-spacing:6.000000px;}
.ws46{word-spacing:888.786000px;}
.ws2f{word-spacing:889.164000px;}
.ws19{word-spacing:1654.938000px;}
.ws3d{word-spacing:1655.316000px;}
._c{margin-left:-888.852600px;}
._4{margin-left:-7.614000px;}
._d{margin-left:-6.544800px;}
._6{margin-left:-4.833600px;}
._5{margin-left:-3.588000px;}
._0{margin-left:-1.929600px;}
._1{width:1.332000px;}
._3{width:2.827200px;}
._2{width:4.320000px;}
._b{width:6.249600px;}
._a{width:17.220000px;}
._9{width:19.020000px;}
._8{width:51.615000px;}
._7{width:57.195000px;}
.fc1{color:rgb(123,121,121);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:22.200000px;}
.fs3{font-size:34.980000px;}
.fs4{font-size:41.400000px;}
.fs8{font-size:51.600000px;}
.fs7{font-size:54.000000px;}
.fs5{font-size:55.800000px;}
.fs2{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y20{bottom:63.779550px;}
.y38{bottom:64.842450px;}
.y1f{bottom:81.179700px;}
.y37{bottom:83.442450px;}
.y32{bottom:102.042450px;}
.y1e{bottom:120.642450px;}
.y1d{bottom:139.242450px;}
.y1c{bottom:157.842450px;}
.y31{bottom:176.442450px;}
.y1b{bottom:195.042450px;}
.y30{bottom:213.642450px;}
.y1a{bottom:232.242450px;}
.y19{bottom:250.842450px;}
.y18{bottom:269.442450px;}
.y17{bottom:288.042450px;}
.y16{bottom:306.642450px;}
.y2f{bottom:325.242450px;}
.y52{bottom:343.819350px;}
.y15{bottom:343.842450px;}
.y51{bottom:361.221450px;}
.y14{bottom:362.442450px;}
.y13{bottom:381.042450px;}
.y12{bottom:399.642450px;}
.y50{bottom:413.427750px;}
.y11{bottom:418.242450px;}
.y4f{bottom:430.829850px;}
.y10{bottom:436.842450px;}
.yf{bottom:455.442450px;}
.y4e{bottom:465.634050px;}
.ye{bottom:474.042450px;}
.yd{bottom:492.642450px;}
.yc{bottom:511.242450px;}
.y4d{bottom:517.840350px;}
.yb{bottom:529.842450px;}
.y4c{bottom:535.242450px;}
.ya{bottom:548.442450px;}
.y4b{bottom:552.634050px;}
.y9{bottom:567.042450px;}
.y4a{bottom:570.036150px;}
.y8{bottom:585.642450px;}
.y49{bottom:587.438250px;}
.y7{bottom:604.242450px;}
.y48{bottom:622.242450px;}
.y6{bottom:622.842450px;}
.y47{bottom:639.606450px;}
.y36{bottom:641.442450px;}
.y46{bottom:657.008550px;}
.y2e{bottom:660.042450px;}
.y2d{bottom:678.642450px;}
.y2c{bottom:697.242450px;}
.y45{bottom:709.214850px;}
.y3f{bottom:709.227750px;}
.y2b{bottom:715.842450px;}
.y44{bottom:726.616950px;}
.y3e{bottom:726.629850px;}
.y2a{bottom:734.442450px;}
.y43{bottom:744.019050px;}
.y3d{bottom:744.031950px;}
.y35{bottom:753.042450px;}
.y5{bottom:758.439300px;}
.y42{bottom:761.421150px;}
.y3c{bottom:761.434050px;}
.y29{bottom:771.642450px;}
.y41{bottom:778.823250px;}
.y3b{bottom:778.836150px;}
.y4{bottom:788.445300px;}
.y28{bottom:790.242450px;}
.y40{bottom:796.225350px;}
.y3a{bottom:796.238250px;}
.y27{bottom:808.842450px;}
.y26{bottom:827.442450px;}
.y39{bottom:831.042450px;}
.y3{bottom:835.453200px;}
.y34{bottom:846.042450px;}
.y21{bottom:846.317400px;}
.y33{bottom:846.494550px;}
.y25{bottom:864.642450px;}
.y2{bottom:865.453200px;}
.y24{bottom:883.242450px;}
.y1{bottom:895.453200px;}
.y23{bottom:901.842450px;}
.y22{bottom:955.942350px;}
.h6{height:15.295800px;}
.h9{height:45.960000px;}
.hb{height:46.233600px;}
.hd{height:46.543200px;}
.he{height:46.576800px;}
.ha{height:48.762000px;}
.hc{height:48.906000px;}
.h5{height:49.996800px;}
.h7{height:51.138000px;}
.h8{height:54.060000px;}
.h4{height:54.120000px;}
.h3{height:68.184000px;}
.h2{height:90.720000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:697.323000px;}
.w1{width:697.500000px;}
.x0{left:0.000000px;}
.x3{left:17.084400px;}
.x1{left:72.283500px;}
.x4{left:80.787450px;}
.x7{left:85.041600px;}
.x2{left:93.538500px;}
.x5{left:102.047250px;}
.x9{left:353.413200px;}
.x8{left:366.171300px;}
.x6{left:641.651250px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760000pt;}
.ls18{letter-spacing:-3.696000pt;}
.ls12{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.053333pt;}
.ls9{letter-spacing:0.064533pt;}
.lsf{letter-spacing:0.078933pt;}
.ls22{letter-spacing:0.091733pt;}
.ls10{letter-spacing:0.099200pt;}
.ls3{letter-spacing:0.106667pt;}
.ls23{letter-spacing:0.137600pt;}
.ls14{letter-spacing:0.160000pt;}
.ls1f{letter-spacing:0.186667pt;}
.ls11{letter-spacing:0.197333pt;}
.lse{letter-spacing:0.213333pt;}
.ls6{letter-spacing:0.266667pt;}
.ls21{letter-spacing:0.293333pt;}
.ls7{letter-spacing:0.320000pt;}
.ls24{letter-spacing:0.321067pt;}
.ls25{letter-spacing:0.366933pt;}
.ls5{letter-spacing:0.373333pt;}
.ls8{letter-spacing:0.426667pt;}
.ls1{letter-spacing:0.480000pt;}
.ls4{letter-spacing:0.533333pt;}
.ls1a{letter-spacing:0.538667pt;}
.lsb{letter-spacing:0.586667pt;}
.ls20{letter-spacing:0.613333pt;}
.lsa{letter-spacing:0.640000pt;}
.lsc{letter-spacing:0.666667pt;}
.ls19{letter-spacing:0.693333pt;}
.lsd{letter-spacing:0.746667pt;}
.ls16{letter-spacing:0.800000pt;}
.ls0{letter-spacing:0.853333pt;}
.ls15{letter-spacing:0.906667pt;}
.ls1c{letter-spacing:0.960000pt;}
.ls17{letter-spacing:1.056000pt;}
.ls13{letter-spacing:1.066667pt;}
.ls1e{letter-spacing:1.173333pt;}
.ls27{letter-spacing:1.467733pt;}
.ls1d{letter-spacing:1.706667pt;}
.ls1b{letter-spacing:2.154667pt;}
.ls26{letter-spacing:2.843733pt;}
.ws45{word-spacing:-12.980267pt;}
.ws0{word-spacing:-11.253333pt;}
.ws3c{word-spacing:-10.213333pt;}
.ws2e{word-spacing:-7.680000pt;}
.ws49{word-spacing:-1.467733pt;}
.ws18{word-spacing:-1.056000pt;}
.ws1d{word-spacing:-0.960000pt;}
.ws23{word-spacing:-0.853333pt;}
.ws9{word-spacing:-0.800000pt;}
.ws4{word-spacing:-0.746667pt;}
.ws27{word-spacing:-0.693333pt;}
.ws1c{word-spacing:-0.640000pt;}
.wsd{word-spacing:-0.586667pt;}
.ws48{word-spacing:-0.458667pt;}
.ws38{word-spacing:-0.426667pt;}
.ws5{word-spacing:-0.373333pt;}
.ws17{word-spacing:-0.197333pt;}
.ws3e{word-spacing:-0.160000pt;}
.ws47{word-spacing:-0.137600pt;}
.ws1f{word-spacing:-0.106667pt;}
.ws3b{word-spacing:-0.053333pt;}
.ws1{word-spacing:0.000000pt;}
.ws21{word-spacing:0.053333pt;}
.ws2d{word-spacing:0.106667pt;}
.ws3f{word-spacing:0.160000pt;}
.ws34{word-spacing:0.266667pt;}
.ws2b{word-spacing:0.320000pt;}
.ws35{word-spacing:0.373333pt;}
.ws13{word-spacing:0.426667pt;}
.ws4a{word-spacing:0.458667pt;}
.ws4b{word-spacing:0.504533pt;}
.ws1e{word-spacing:0.533333pt;}
.ws15{word-spacing:0.586667pt;}
.ws8{word-spacing:0.746667pt;}
.ws22{word-spacing:0.906667pt;}
.ws32{word-spacing:0.960000pt;}
.ws41{word-spacing:1.066667pt;}
.wsa{word-spacing:1.120000pt;}
.ws2c{word-spacing:1.173333pt;}
.ws37{word-spacing:1.226667pt;}
.ws4c{word-spacing:1.238400pt;}
.ws7{word-spacing:1.333333pt;}
.wsb{word-spacing:1.386667pt;}
.ws4d{word-spacing:1.421867pt;}
.ws1a{word-spacing:1.440000pt;}
.ws3a{word-spacing:1.493333pt;}
.wsc{word-spacing:1.546667pt;}
.ws25{word-spacing:1.600000pt;}
.ws36{word-spacing:1.706667pt;}
.ws3{word-spacing:1.760000pt;}
.ws30{word-spacing:1.813333pt;}
.ws14{word-spacing:1.866667pt;}
.ws16{word-spacing:2.133333pt;}
.ws6{word-spacing:2.240000pt;}
.ws31{word-spacing:2.293333pt;}
.wsf{word-spacing:2.400000pt;}
.ws12{word-spacing:2.453333pt;}
.ws44{word-spacing:2.506667pt;}
.ws28{word-spacing:2.613333pt;}
.wse{word-spacing:2.666667pt;}
.ws10{word-spacing:2.826667pt;}
.ws33{word-spacing:2.880000pt;}
.ws1b{word-spacing:3.093333pt;}
.ws11{word-spacing:3.146667pt;}
.ws42{word-spacing:3.253333pt;}
.ws26{word-spacing:3.306667pt;}
.ws43{word-spacing:3.360000pt;}
.ws40{word-spacing:3.413333pt;}
.ws2a{word-spacing:3.520000pt;}
.ws29{word-spacing:3.573333pt;}
.ws2{word-spacing:3.840000pt;}
.ws24{word-spacing:3.893333pt;}
.ws20{word-spacing:4.800000pt;}
.ws39{word-spacing:5.333333pt;}
.ws46{word-spacing:790.032000pt;}
.ws2f{word-spacing:790.368000pt;}
.ws19{word-spacing:1471.056000pt;}
.ws3d{word-spacing:1471.392000pt;}
._c{margin-left:-790.091200pt;}
._4{margin-left:-6.768000pt;}
._d{margin-left:-5.817600pt;}
._6{margin-left:-4.296533pt;}
._5{margin-left:-3.189333pt;}
._0{margin-left:-1.715200pt;}
._1{width:1.184000pt;}
._3{width:2.513067pt;}
._2{width:3.840000pt;}
._b{width:5.555200pt;}
._a{width:15.306667pt;}
._9{width:16.906667pt;}
._8{width:45.880000pt;}
._7{width:50.840000pt;}
.fs6{font-size:19.733333pt;}
.fs3{font-size:31.093333pt;}
.fs4{font-size:36.800000pt;}
.fs8{font-size:45.866667pt;}
.fs7{font-size:48.000000pt;}
.fs5{font-size:49.600000pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:56.692933pt;}
.y38{bottom:57.637733pt;}
.y1f{bottom:72.159733pt;}
.y37{bottom:74.171067pt;}
.y32{bottom:90.704400pt;}
.y1e{bottom:107.237733pt;}
.y1d{bottom:123.771067pt;}
.y1c{bottom:140.304400pt;}
.y31{bottom:156.837733pt;}
.y1b{bottom:173.371067pt;}
.y30{bottom:189.904400pt;}
.y1a{bottom:206.437733pt;}
.y19{bottom:222.971067pt;}
.y18{bottom:239.504400pt;}
.y17{bottom:256.037733pt;}
.y16{bottom:272.571067pt;}
.y2f{bottom:289.104400pt;}
.y52{bottom:305.617200pt;}
.y15{bottom:305.637733pt;}
.y51{bottom:321.085733pt;}
.y14{bottom:322.171067pt;}
.y13{bottom:338.704400pt;}
.y12{bottom:355.237733pt;}
.y50{bottom:367.491333pt;}
.y11{bottom:371.771067pt;}
.y4f{bottom:382.959867pt;}
.y10{bottom:388.304400pt;}
.yf{bottom:404.837733pt;}
.y4e{bottom:413.896933pt;}
.ye{bottom:421.371067pt;}
.yd{bottom:437.904400pt;}
.yc{bottom:454.437733pt;}
.y4d{bottom:460.302533pt;}
.yb{bottom:470.971067pt;}
.y4c{bottom:475.771067pt;}
.ya{bottom:487.504400pt;}
.y4b{bottom:491.230267pt;}
.y9{bottom:504.037733pt;}
.y4a{bottom:506.698800pt;}
.y8{bottom:520.571067pt;}
.y49{bottom:522.167333pt;}
.y7{bottom:537.104400pt;}
.y48{bottom:553.104400pt;}
.y6{bottom:553.637733pt;}
.y47{bottom:568.539067pt;}
.y36{bottom:570.171067pt;}
.y46{bottom:584.007600pt;}
.y2e{bottom:586.704400pt;}
.y2d{bottom:603.237733pt;}
.y2c{bottom:619.771067pt;}
.y45{bottom:630.413200pt;}
.y3f{bottom:630.424667pt;}
.y2b{bottom:636.304400pt;}
.y44{bottom:645.881733pt;}
.y3e{bottom:645.893200pt;}
.y2a{bottom:652.837733pt;}
.y43{bottom:661.350267pt;}
.y3d{bottom:661.361733pt;}
.y35{bottom:669.371067pt;}
.y5{bottom:674.168267pt;}
.y42{bottom:676.818800pt;}
.y3c{bottom:676.830267pt;}
.y29{bottom:685.904400pt;}
.y41{bottom:692.287333pt;}
.y3b{bottom:692.298800pt;}
.y4{bottom:700.840267pt;}
.y28{bottom:702.437733pt;}
.y40{bottom:707.755867pt;}
.y3a{bottom:707.767333pt;}
.y27{bottom:718.971067pt;}
.y26{bottom:735.504400pt;}
.y39{bottom:738.704400pt;}
.y3{bottom:742.625067pt;}
.y34{bottom:752.037733pt;}
.y21{bottom:752.282133pt;}
.y33{bottom:752.439600pt;}
.y25{bottom:768.571067pt;}
.y2{bottom:769.291733pt;}
.y24{bottom:785.104400pt;}
.y1{bottom:795.958400pt;}
.y23{bottom:801.637733pt;}
.y22{bottom:849.726533pt;}
.h6{height:13.596267pt;}
.h9{height:40.853333pt;}
.hb{height:41.096533pt;}
.hd{height:41.371733pt;}
.he{height:41.401600pt;}
.ha{height:43.344000pt;}
.hc{height:43.472000pt;}
.h5{height:44.441600pt;}
.h7{height:45.456000pt;}
.h8{height:48.053333pt;}
.h4{height:48.106667pt;}
.h3{height:60.608000pt;}
.h2{height:80.640000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:619.842667pt;}
.w1{width:620.000000pt;}
.x0{left:0.000000pt;}
.x3{left:15.186133pt;}
.x1{left:64.252000pt;}
.x4{left:71.811067pt;}
.x7{left:75.592533pt;}
.x2{left:83.145333pt;}
.x5{left:90.708667pt;}
.x9{left:314.145067pt;}
.x8{left:325.485600pt;}
.x6{left:570.356667pt;}
}




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