
    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_7559c3749395b7da2fb93a9c.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_a37ffc6327cb60a84ce06db9.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_4fd78f3e03d67adb8eb82b3d.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_78c94e2c2669b3ae45290adb.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_694e8c089faf504b4d0060b1.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_94405b66629baf7555e447e4.woff')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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_4d4e130f78cee1b118267eac.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_27b17b33e4b27d932aa8e10c.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_61a619a51d4fe53b178d5830.woff')format("woff");}.ff9{font-family:ff9;line-height:0.916992;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;}
.ls1d{letter-spacing:-0.233400px;}
.ls1e{letter-spacing:-0.063600px;}
.ls1b{letter-spacing:-0.008640px;}
.ls1a{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.008640px;}
.ls2{letter-spacing:0.017280px;}
.ls28{letter-spacing:0.020160px;}
.ls20{letter-spacing:0.025920px;}
.ls0{letter-spacing:0.028080px;}
.ls5{letter-spacing:0.034560px;}
.ls3{letter-spacing:0.069120px;}
.ls6{letter-spacing:0.092160px;}
.lsb{letter-spacing:0.120000px;}
.ls18{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.311040px;}
.ls9{letter-spacing:0.328320px;}
.ls1f{letter-spacing:0.348600px;}
.ls2e{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.486720px;}
.lsd{letter-spacing:0.561600px;}
.ls16{letter-spacing:0.656640px;}
.lsa{letter-spacing:0.720000px;}
.ls1c{letter-spacing:0.744000px;}
.ls1{letter-spacing:0.745920px;}
.ls26{letter-spacing:0.756000px;}
.ls12{letter-spacing:0.840000px;}
.ls15{letter-spacing:0.900000px;}
.ls17{letter-spacing:2.160000px;}
.ls2c{letter-spacing:8.640000px;}
.ls2a{letter-spacing:10.080000px;}
.ls4{letter-spacing:12.240000px;}
.ls24{letter-spacing:20.160000px;}
.ls22{letter-spacing:24.480000px;}
.ls10{letter-spacing:30.960000px;}
.ls11{letter-spacing:33.840000px;}
.ls29{letter-spacing:36.720000px;}
.ls7{letter-spacing:41.040000px;}
.ls27{letter-spacing:42.480000px;}
.lsf{letter-spacing:48.240000px;}
.ls2b{letter-spacing:53.280000px;}
.ls14{letter-spacing:59.760000px;}
.ls25{letter-spacing:62.640000px;}
.ls2d{letter-spacing:72.341280px;}
.ls23{letter-spacing:79.200000px;}
.ls21{letter-spacing:100.980000px;}
.lse{letter-spacing:112.320000px;}
.lsc{letter-spacing:134.640000px;}
.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:-21.617280px;}
.wsb{word-spacing:-21.420000px;}
.ws7{word-spacing:-19.788600px;}
.ws3{word-spacing:-19.474560px;}
.wsa{word-spacing:-19.460160px;}
.ws4{word-spacing:-19.457280px;}
.ws8{word-spacing:-19.448640px;}
.ws2{word-spacing:-19.440000px;}
.ws6{word-spacing:-19.376400px;}
.ws5{word-spacing:-19.206600px;}
.ws1{word-spacing:-0.077760px;}
.ws9{word-spacing:0.000000px;}
._d{margin-left:-2.056800px;}
._0{margin-left:-1.032000px;}
._1{width:1.596000px;}
._1a{width:3.008640px;}
._1b{width:4.258080px;}
._18{width:5.396640px;}
._19{width:6.568800px;}
._20{width:8.553600px;}
._33{width:9.867840px;}
._37{width:11.005920px;}
._2{width:12.240000px;}
._1d{width:13.608000px;}
._21{width:14.804160px;}
._23{width:15.815040px;}
._22{width:17.107200px;}
._16{width:18.310560px;}
._1f{width:20.606400px;}
._29{width:22.581600px;}
._27{width:23.639040px;}
._13{width:25.499520px;}
._11{width:26.516160px;}
._12{width:27.838080px;}
._2b{width:29.626560px;}
._8{width:30.841920px;}
._1c{width:32.074080px;}
._9{width:33.462720px;}
._1e{width:34.738080px;}
._31{width:36.624000px;}
._3a{width:37.918080px;}
._24{width:38.994720px;}
._3{width:40.676160px;}
._4{width:41.725440px;}
._e{width:43.701120px;}
._30{width:45.178560px;}
._2f{width:46.615200px;}
._7{width:48.173760px;}
._35{width:49.252320px;}
._f{width:50.419680px;}
._10{width:51.828960px;}
._38{width:52.954560px;}
._32{width:54.774240px;}
._2e{width:56.376000px;}
._28{width:58.631040px;}
._a{width:59.725440px;}
._2d{width:61.078560px;}
._2c{width:62.363520px;}
._17{width:63.644640px;}
._c{width:64.966560px;}
._b{width:66.725760px;}
._39{width:76.749120px;}
._2a{width:79.682400px;}
._34{width:82.658880px;}
._36{width:88.490880px;}
._14{width:90.394080px;}
._15{width:91.673280px;}
._26{width:99.880800px;}
._25{width:101.321280px;}
._6{width:112.736640px;}
._5{width:134.712960px;}
.fc3{color:rgb(79,129,189);}
.fc2{color:rgb(23,54,93);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(31,73,125);}
.fs0{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y16{bottom:4.320000px;}
.y30{bottom:4.860000px;}
.y18{bottom:5.040000px;}
.y2a{bottom:7.560000px;}
.y15{bottom:26.820000px;}
.y2f{bottom:27.210000px;}
.y29{bottom:33.300000px;}
.y27{bottom:34.200000px;}
.y2e{bottom:49.710000px;}
.y26{bottom:56.700000px;}
.yd{bottom:58.140000px;}
.y2d{bottom:72.030000px;}
.y25{bottom:79.020000px;}
.yc{bottom:82.296000px;}
.y2c{bottom:94.530000px;}
.y23{bottom:106.050000px;}
.yb{bottom:106.416000px;}
.y2b{bottom:117.030000px;}
.y22{bottom:128.550000px;}
.ya{bottom:130.536000px;}
.y21{bottom:150.870000px;}
.y9{bottom:154.470000px;}
.y20{bottom:173.370000px;}
.y8{bottom:176.250000px;}
.y1f{bottom:195.690000px;}
.y7{bottom:198.750000px;}
.y1e{bottom:218.190000px;}
.y6{bottom:221.250000px;}
.y1d{bottom:240.690000px;}
.y5c{bottom:252.930000px;}
.y1c{bottom:263.010000px;}
.y5b{bottom:278.670000px;}
.y1b{bottom:285.510000px;}
.y3b{bottom:293.250000px;}
.y5a{bottom:304.410000px;}
.y1a{bottom:307.875000px;}
.y3a{bottom:318.990000px;}
.y59{bottom:330.375000px;}
.y39{bottom:344.775000px;}
.y58{bottom:356.115000px;}
.y38{bottom:370.515000px;}
.y57{bottom:381.855000px;}
.y37{bottom:396.435000px;}
.y56{bottom:407.595000px;}
.y36{bottom:422.175000px;}
.y55{bottom:433.515000px;}
.y35{bottom:447.915000px;}
.y54{bottom:459.255000px;}
.y34{bottom:473.655000px;}
.y53{bottom:484.995000px;}
.y33{bottom:499.575000px;}
.y52{bottom:510.735000px;}
.y32{bottom:525.315000px;}
.y51{bottom:536.655000px;}
.y31{bottom:550.515000px;}
.y50{bottom:562.395000px;}
.y19{bottom:568.695000px;}
.y4f{bottom:588.135000px;}
.y4e{bottom:613.905000px;}
.y4d{bottom:639.825000px;}
.y6c{bottom:643.065000px;}
.y4c{bottom:665.565000px;}
.y6b{bottom:684.285000px;}
.y4b{bottom:691.305000px;}
.y28{bottom:704.085000px;}
.y6a{bottom:710.205000px;}
.y4a{bottom:717.225000px;}
.y69{bottom:735.945000px;}
.y49{bottom:742.965000px;}
.y68{bottom:763.125000px;}
.y48{bottom:768.705000px;}
.y24{bottom:773.565000px;}
.y67{bottom:788.865000px;}
.y47{bottom:794.445000px;}
.y66{bottom:814.605000px;}
.y46{bottom:820.365000px;}
.y65{bottom:841.785000px;}
.y45{bottom:846.105000px;}
.y64{bottom:867.750000px;}
.y17{bottom:870.990000px;}
.y44{bottom:871.890000px;}
.y63{bottom:894.930000px;}
.y43{bottom:897.630000px;}
.y14{bottom:903.930000px;}
.y62{bottom:920.670000px;}
.y42{bottom:923.550000px;}
.y61{bottom:947.850000px;}
.y41{bottom:949.290000px;}
.y13{bottom:962.970000px;}
.y60{bottom:973.590000px;}
.y40{bottom:975.030000px;}
.y12{bottom:987.090000px;}
.y5f{bottom:999.510000px;}
.y3f{bottom:1000.770000px;}
.y11{bottom:1010.310000px;}
.y5e{bottom:1025.250000px;}
.y3e{bottom:1026.690000px;}
.y10{bottom:1032.810000px;}
.y5d{bottom:1051.890000px;}
.y3d{bottom:1052.430000px;}
.yf{bottom:1055.310000px;}
.ye{bottom:1077.630000px;}
.y3c{bottom:1078.170000px;}
.y5{bottom:1100.850000px;}
.y4{bottom:1124.250000px;}
.y3{bottom:1147.140000px;}
.y2{bottom:1170.900000px;}
.y1{bottom:1193.220000px;}
.hc{height:32.205000px;}
.hb{height:53.985000px;}
.h13{height:54.523125px;}
.h9{height:54.864844px;}
.h12{height:64.091250px;}
.h10{height:69.480000px;}
.h2{height:72.562500px;}
.he{height:76.279219px;}
.h8{height:76.317188px;}
.h3{height:78.367500px;}
.h7{height:80.949375px;}
.h5{height:81.101250px;}
.ha{height:82.635820px;}
.h6{height:82.676953px;}
.h4{height:84.898125px;}
.h14{height:87.859687px;}
.hf{height:96.682500px;}
.h11{height:134.670000px;}
.hd{height:334.500000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:237.439500px;}
.w3{width:404.895000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:8.100000px;}
.x14{left:21.229500px;}
.x10{left:29.340000px;}
.xf{left:33.283500px;}
.xb{left:43.723500px;}
.x16{left:46.603500px;}
.x15{left:50.203500px;}
.x12{left:67.843500px;}
.xc{left:78.643500px;}
.x13{left:79.903500px;}
.x17{left:82.603500px;}
.x1{left:84.960000px;}
.x2{left:103.356000px;}
.x18{left:106.236000px;}
.x1c{left:117.576000px;}
.x19{left:118.836000px;}
.x4{left:122.796000px;}
.xa{left:125.326500px;}
.x8{left:137.196000px;}
.xe{left:144.210000px;}
.x1b{left:151.410000px;}
.x7{left:317.235000px;}
.x9{left:328.395000px;}
.xd{left:362.775000px;}
.x5{left:376.455000px;}
.x6{left:457.095000px;}
.x1a{left:463.395000px;}
.x3{left:788.550000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1d{letter-spacing:-0.207467pt;}
.ls1e{letter-spacing:-0.056533pt;}
.ls1b{letter-spacing:-0.007680pt;}
.ls1a{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.007680pt;}
.ls2{letter-spacing:0.015360pt;}
.ls28{letter-spacing:0.017920pt;}
.ls20{letter-spacing:0.023040pt;}
.ls0{letter-spacing:0.024960pt;}
.ls5{letter-spacing:0.030720pt;}
.ls3{letter-spacing:0.061440pt;}
.ls6{letter-spacing:0.081920pt;}
.lsb{letter-spacing:0.106667pt;}
.ls18{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.276480pt;}
.ls9{letter-spacing:0.291840pt;}
.ls1f{letter-spacing:0.309867pt;}
.ls2e{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.432640pt;}
.lsd{letter-spacing:0.499200pt;}
.ls16{letter-spacing:0.583680pt;}
.lsa{letter-spacing:0.640000pt;}
.ls1c{letter-spacing:0.661333pt;}
.ls1{letter-spacing:0.663040pt;}
.ls26{letter-spacing:0.672000pt;}
.ls12{letter-spacing:0.746667pt;}
.ls15{letter-spacing:0.800000pt;}
.ls17{letter-spacing:1.920000pt;}
.ls2c{letter-spacing:7.680000pt;}
.ls2a{letter-spacing:8.960000pt;}
.ls4{letter-spacing:10.880000pt;}
.ls24{letter-spacing:17.920000pt;}
.ls22{letter-spacing:21.760000pt;}
.ls10{letter-spacing:27.520000pt;}
.ls11{letter-spacing:30.080000pt;}
.ls29{letter-spacing:32.640000pt;}
.ls7{letter-spacing:36.480000pt;}
.ls27{letter-spacing:37.760000pt;}
.lsf{letter-spacing:42.880000pt;}
.ls2b{letter-spacing:47.360000pt;}
.ls14{letter-spacing:53.120000pt;}
.ls25{letter-spacing:55.680000pt;}
.ls2d{letter-spacing:64.303360pt;}
.ls23{letter-spacing:70.400000pt;}
.ls21{letter-spacing:89.760000pt;}
.lse{letter-spacing:99.840000pt;}
.lsc{letter-spacing:119.680000pt;}
.ws0{word-spacing:-19.215360pt;}
.wsb{word-spacing:-19.040000pt;}
.ws7{word-spacing:-17.589867pt;}
.ws3{word-spacing:-17.310720pt;}
.wsa{word-spacing:-17.297920pt;}
.ws4{word-spacing:-17.295360pt;}
.ws8{word-spacing:-17.287680pt;}
.ws2{word-spacing:-17.280000pt;}
.ws6{word-spacing:-17.223467pt;}
.ws5{word-spacing:-17.072533pt;}
.ws1{word-spacing:-0.069120pt;}
.ws9{word-spacing:0.000000pt;}
._d{margin-left:-1.828267pt;}
._0{margin-left:-0.917333pt;}
._1{width:1.418667pt;}
._1a{width:2.674347pt;}
._1b{width:3.784960pt;}
._18{width:4.797013pt;}
._19{width:5.838933pt;}
._20{width:7.603200pt;}
._33{width:8.771413pt;}
._37{width:9.783040pt;}
._2{width:10.880000pt;}
._1d{width:12.096000pt;}
._21{width:13.159253pt;}
._23{width:14.057813pt;}
._22{width:15.206400pt;}
._16{width:16.276053pt;}
._1f{width:18.316800pt;}
._29{width:20.072533pt;}
._27{width:21.012480pt;}
._13{width:22.666240pt;}
._11{width:23.569920pt;}
._12{width:24.744960pt;}
._2b{width:26.334720pt;}
._8{width:27.415040pt;}
._1c{width:28.510293pt;}
._9{width:29.744640pt;}
._1e{width:30.878293pt;}
._31{width:32.554667pt;}
._3a{width:33.704960pt;}
._24{width:34.661973pt;}
._3{width:36.156587pt;}
._4{width:37.089280pt;}
._e{width:38.845440pt;}
._30{width:40.158720pt;}
._2f{width:41.435733pt;}
._7{width:42.821120pt;}
._35{width:43.779840pt;}
._f{width:44.817493pt;}
._10{width:46.070187pt;}
._38{width:47.070720pt;}
._32{width:48.688213pt;}
._2e{width:50.112000pt;}
._28{width:52.116480pt;}
._a{width:53.089280pt;}
._2d{width:54.292053pt;}
._2c{width:55.434240pt;}
._17{width:56.573013pt;}
._c{width:57.748053pt;}
._b{width:59.311787pt;}
._39{width:68.221440pt;}
._2a{width:70.828800pt;}
._34{width:73.474560pt;}
._36{width:78.658560pt;}
._14{width:80.350293pt;}
._15{width:81.487360pt;}
._26{width:88.782933pt;}
._25{width:90.063360pt;}
._6{width:100.210347pt;}
._5{width:119.744853pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y16{bottom:3.840000pt;}
.y30{bottom:4.320000pt;}
.y18{bottom:4.480000pt;}
.y2a{bottom:6.720000pt;}
.y15{bottom:23.840000pt;}
.y2f{bottom:24.186667pt;}
.y29{bottom:29.600000pt;}
.y27{bottom:30.400000pt;}
.y2e{bottom:44.186667pt;}
.y26{bottom:50.400000pt;}
.yd{bottom:51.680000pt;}
.y2d{bottom:64.026667pt;}
.y25{bottom:70.240000pt;}
.yc{bottom:73.152000pt;}
.y2c{bottom:84.026667pt;}
.y23{bottom:94.266667pt;}
.yb{bottom:94.592000pt;}
.y2b{bottom:104.026667pt;}
.y22{bottom:114.266667pt;}
.ya{bottom:116.032000pt;}
.y21{bottom:134.106667pt;}
.y9{bottom:137.306667pt;}
.y20{bottom:154.106667pt;}
.y8{bottom:156.666667pt;}
.y1f{bottom:173.946667pt;}
.y7{bottom:176.666667pt;}
.y1e{bottom:193.946667pt;}
.y6{bottom:196.666667pt;}
.y1d{bottom:213.946667pt;}
.y5c{bottom:224.826667pt;}
.y1c{bottom:233.786667pt;}
.y5b{bottom:247.706667pt;}
.y1b{bottom:253.786667pt;}
.y3b{bottom:260.666667pt;}
.y5a{bottom:270.586667pt;}
.y1a{bottom:273.666667pt;}
.y3a{bottom:283.546667pt;}
.y59{bottom:293.666667pt;}
.y39{bottom:306.466667pt;}
.y58{bottom:316.546667pt;}
.y38{bottom:329.346667pt;}
.y57{bottom:339.426667pt;}
.y37{bottom:352.386667pt;}
.y56{bottom:362.306667pt;}
.y36{bottom:375.266667pt;}
.y55{bottom:385.346667pt;}
.y35{bottom:398.146667pt;}
.y54{bottom:408.226667pt;}
.y34{bottom:421.026667pt;}
.y53{bottom:431.106667pt;}
.y33{bottom:444.066667pt;}
.y52{bottom:453.986667pt;}
.y32{bottom:466.946667pt;}
.y51{bottom:477.026667pt;}
.y31{bottom:489.346667pt;}
.y50{bottom:499.906667pt;}
.y19{bottom:505.506667pt;}
.y4f{bottom:522.786667pt;}
.y4e{bottom:545.693333pt;}
.y4d{bottom:568.733333pt;}
.y6c{bottom:571.613333pt;}
.y4c{bottom:591.613333pt;}
.y6b{bottom:608.253333pt;}
.y4b{bottom:614.493333pt;}
.y28{bottom:625.853333pt;}
.y6a{bottom:631.293333pt;}
.y4a{bottom:637.533333pt;}
.y69{bottom:654.173333pt;}
.y49{bottom:660.413333pt;}
.y68{bottom:678.333333pt;}
.y48{bottom:683.293333pt;}
.y24{bottom:687.613333pt;}
.y67{bottom:701.213333pt;}
.y47{bottom:706.173333pt;}
.y66{bottom:724.093333pt;}
.y46{bottom:729.213333pt;}
.y65{bottom:748.253333pt;}
.y45{bottom:752.093333pt;}
.y64{bottom:771.333333pt;}
.y17{bottom:774.213333pt;}
.y44{bottom:775.013333pt;}
.y63{bottom:795.493333pt;}
.y43{bottom:797.893333pt;}
.y14{bottom:803.493333pt;}
.y62{bottom:818.373333pt;}
.y42{bottom:820.933333pt;}
.y61{bottom:842.533333pt;}
.y41{bottom:843.813333pt;}
.y13{bottom:855.973333pt;}
.y60{bottom:865.413333pt;}
.y40{bottom:866.693333pt;}
.y12{bottom:877.413333pt;}
.y5f{bottom:888.453333pt;}
.y3f{bottom:889.573333pt;}
.y11{bottom:898.053333pt;}
.y5e{bottom:911.333333pt;}
.y3e{bottom:912.613333pt;}
.y10{bottom:918.053333pt;}
.y5d{bottom:935.013333pt;}
.y3d{bottom:935.493333pt;}
.yf{bottom:938.053333pt;}
.ye{bottom:957.893333pt;}
.y3c{bottom:958.373333pt;}
.y5{bottom:978.533333pt;}
.y4{bottom:999.333333pt;}
.y3{bottom:1019.680000pt;}
.y2{bottom:1040.800000pt;}
.y1{bottom:1060.640000pt;}
.hc{height:28.626667pt;}
.hb{height:47.986667pt;}
.h13{height:48.465000pt;}
.h9{height:48.768750pt;}
.h12{height:56.970000pt;}
.h10{height:61.760000pt;}
.h2{height:64.500000pt;}
.he{height:67.803750pt;}
.h8{height:67.837500pt;}
.h3{height:69.660000pt;}
.h7{height:71.955000pt;}
.h5{height:72.090000pt;}
.ha{height:73.454062pt;}
.h6{height:73.490625pt;}
.h4{height:75.465000pt;}
.h14{height:78.097500pt;}
.hf{height:85.940000pt;}
.h11{height:119.706667pt;}
.hd{height:297.333333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:211.057333pt;}
.w3{width:359.906667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:7.200000pt;}
.x14{left:18.870667pt;}
.x10{left:26.080000pt;}
.xf{left:29.585333pt;}
.xb{left:38.865333pt;}
.x16{left:41.425333pt;}
.x15{left:44.625333pt;}
.x12{left:60.305333pt;}
.xc{left:69.905333pt;}
.x13{left:71.025333pt;}
.x17{left:73.425333pt;}
.x1{left:75.520000pt;}
.x2{left:91.872000pt;}
.x18{left:94.432000pt;}
.x1c{left:104.512000pt;}
.x19{left:105.632000pt;}
.x4{left:109.152000pt;}
.xa{left:111.401333pt;}
.x8{left:121.952000pt;}
.xe{left:128.186667pt;}
.x1b{left:134.586667pt;}
.x7{left:281.986667pt;}
.x9{left:291.906667pt;}
.xd{left:322.466667pt;}
.x5{left:334.626667pt;}
.x6{left:406.306667pt;}
.x1a{left:411.906667pt;}
.x3{left:700.933333pt;}
}




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