
    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_5b45199e4e3da2b9c98147ff.woff')format("woff");}.ff1{font-family:ff1;line-height:0.914062;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_7d8af0d0a6a1b92e0a6c059f.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_d32d9813101ec14bae29fa92.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_079c00975f83bf12ecb3bf89.woff')format("woff");}.ff4{font-family:ff4;line-height:0.914062;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_c96280a0c00b1b245aa736bc.woff')format("woff");}.ff5{font-family:ff5;line-height:0.856445;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_f369aa24119848dd801fd01a.woff')format("woff");}.ff6{font-family:ff6;line-height:1.090332;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_dc5bde84a1414db99b0aab01.woff')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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;}
.ls2{letter-spacing:-0.720000px;}
.ls1{letter-spacing:-0.224400px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws2{word-spacing:-16.560000px;}
.ws1{word-spacing:-13.222320px;}
.ws0{word-spacing:0.000000px;}
._5{margin-left:-12.540000px;}
._3{margin-left:-6.912000px;}
._1{margin-left:-4.680000px;}
._6{margin-left:-3.657600px;}
._7{margin-left:-2.318400px;}
._0{margin-left:-1.152000px;}
._2{width:1.128000px;}
._4{width:846.156000px;}
._8{width:847.596000px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y37{bottom:6.300000px;}
.y27{bottom:6.480000px;}
.y15{bottom:9.180000px;}
.yc7{bottom:24.300000px;}
.y36{bottom:28.074000px;}
.y3a{bottom:28.080000px;}
.y7e{bottom:28.254000px;}
.y26{bottom:28.260000px;}
.y6e{bottom:28.290000px;}
.ycb{bottom:46.254000px;}
.yc6{bottom:46.260000px;}
.y35{bottom:49.854000px;}
.y67{bottom:49.860000px;}
.y60{bottom:50.034000px;}
.y25{bottom:50.040000px;}
.y6d{bottom:50.070000px;}
.yc0{bottom:67.905000px;}
.yca{bottom:68.034000px;}
.yb4{bottom:68.040000px;}
.y34{bottom:71.634000px;}
.yb6{bottom:71.640000px;}
.y5f{bottom:71.814000px;}
.y24{bottom:71.820000px;}
.y6c{bottom:71.850000px;}
.yc1{bottom:71.865000px;}
.y9d{bottom:89.640000px;}
.yc9{bottom:89.814000px;}
.ya9{bottom:89.820000px;}
.ybf{bottom:89.865000px;}
.y33{bottom:93.594000px;}
.y48{bottom:93.600000px;}
.y6b{bottom:93.630000px;}
.yc2{bottom:93.645000px;}
.y5e{bottom:93.774000px;}
.y23{bottom:93.780000px;}
.y49{bottom:108.576000px;}
.y9c{bottom:111.600000px;}
.ybe{bottom:111.645000px;}
.y8a{bottom:112.536000px;}
.y32{bottom:115.374000px;}
.y47{bottom:115.380000px;}
.y66{bottom:115.425000px;}
.y5d{bottom:115.554000px;}
.y22{bottom:115.560000px;}
.y6a{bottom:115.590000px;}
.yba{bottom:117.396000px;}
.yc8{bottom:121.176000px;}
.y2a{bottom:127.476000px;}
.yb3{bottom:129.600000px;}
.y7d{bottom:133.374000px;}
.y9b{bottom:133.380000px;}
.yb9{bottom:133.425000px;}
.yad{bottom:133.560000px;}
.y31{bottom:137.154000px;}
.y65{bottom:137.205000px;}
.y5c{bottom:137.334000px;}
.y21{bottom:137.340000px;}
.y69{bottom:137.370000px;}
.y6f{bottom:138.096000px;}
.ya7{bottom:151.380000px;}
.yb2{bottom:151.560000px;}
.ya8{bottom:155.160000px;}
.y9a{bottom:155.205000px;}
.y7c{bottom:155.334000px;}
.yac{bottom:155.340000px;}
.ya4{bottom:155.370000px;}
.y30{bottom:158.934000px;}
.y5b{bottom:159.114000px;}
.y20{bottom:159.120000px;}
.y91{bottom:159.150000px;}
.y64{bottom:159.165000px;}
.ya5{bottom:164.550000px;}
.ya6{bottom:173.205000px;}
.yb1{bottom:173.340000px;}
.yb5{bottom:176.970000px;}
.y99{bottom:176.985000px;}
.y7b{bottom:177.114000px;}
.yab{bottom:177.120000px;}
.ya3{bottom:177.150000px;}
.yb8{bottom:177.165000px;}
.y2f{bottom:180.894000px;}
.y89{bottom:180.900000px;}
.y29{bottom:180.930000px;}
.y46{bottom:180.945000px;}
.y9e{bottom:194.985000px;}
.yb0{bottom:195.120000px;}
.y1f{bottom:198.900000px;}
.ya2{bottom:198.930000px;}
.y7a{bottom:198.939000px;}
.ybd{bottom:198.945000px;}
.y2e{bottom:202.674000px;}
.y88{bottom:202.680000px;}
.y45{bottom:202.725000px;}
.y5a{bottom:202.854000px;}
.y90{bottom:202.890000px;}
.yaf{bottom:216.900000px;}
.y98{bottom:216.945000px;}
.ya1{bottom:220.710000px;}
.y79{bottom:220.719000px;}
.y1e{bottom:220.860000px;}
.yb7{bottom:222.690000px;}
.y87{bottom:224.460000px;}
.y2d{bottom:224.499000px;}
.y63{bottom:224.505000px;}
.y59{bottom:224.634000px;}
.y8f{bottom:224.670000px;}
.y44{bottom:224.685000px;}
.y97{bottom:238.725000px;}
.ya0{bottom:242.670000px;}
.y78{bottom:242.679000px;}
.y1d{bottom:242.685000px;}
.yc5{bottom:244.470000px;}
.y2c{bottom:246.279000px;}
.y7f{bottom:246.285000px;}
.y86{bottom:246.450000px;}
.y58{bottom:246.459000px;}
.y43{bottom:246.465000px;}
.y96{bottom:260.505000px;}
.y77{bottom:264.459000px;}
.y1c{bottom:264.465000px;}
.y2b{bottom:268.059000px;}
.y85{bottom:268.230000px;}
.y57{bottom:268.239000px;}
.y42{bottom:268.245000px;}
.y95{bottom:282.285000px;}
.y76{bottom:286.239000px;}
.y1b{bottom:286.245000px;}
.y84{bottom:290.010000px;}
.y41{bottom:290.025000px;}
.y56{bottom:290.199000px;}
.y3e{bottom:293.805000px;}
.y75{bottom:308.019000px;}
.y1a{bottom:308.205000px;}
.y83{bottom:311.790000px;}
.y40{bottom:311.805000px;}
.y55{bottom:311.979000px;}
.y3d{bottom:315.765000px;}
.y74{bottom:329.799000px;}
.y19{bottom:329.985000px;}
.y82{bottom:333.750000px;}
.y54{bottom:333.759000px;}
.y3f{bottom:333.765000px;}
.y73{bottom:351.759000px;}
.y18{bottom:351.765000px;}
.y81{bottom:355.530000px;}
.y53{bottom:355.539000px;}
.y3c{bottom:355.545000px;}
.y80{bottom:370.515000px;}
.y72{bottom:373.539000px;}
.y17{bottom:373.545000px;}
.y52{bottom:377.319000px;}
.y71{bottom:395.319000px;}
.y51{bottom:399.279000px;}
.yc4{bottom:411.375000px;}
.y70{bottom:417.099000px;}
.y50{bottom:421.059000px;}
.y28{bottom:429.015000px;}
.y93{bottom:433.335000px;}
.y4f{bottom:442.839000px;}
.y9f{bottom:458.535000px;}
.y4e{bottom:464.619000px;}
.y92{bottom:467.175000px;}
.y8e{bottom:483.375000px;}
.y4d{bottom:486.399000px;}
.y4c{bottom:508.389000px;}
.y4b{bottom:530.169000px;}
.y4a{bottom:551.949000px;}
.y68{bottom:588.675000px;}
.yb{bottom:616.065000px;}
.yc3{bottom:622.005000px;}
.y16{bottom:643.425000px;}
.yae{bottom:643.785000px;}
.ya{bottom:669.525000px;}
.y3b{bottom:694.005000px;}
.y9{bottom:722.805000px;}
.y94{bottom:734.685000px;}
.y8d{bottom:741.525000px;}
.y62{bottom:759.525000px;}
.y8{bottom:776.265000px;}
.ycd{bottom:794.625000px;}
.ybc{bottom:810.825000px;}
.y7{bottom:829.725000px;}
.y6{bottom:871.170000px;}
.y8c{bottom:890.430000px;}
.yaa{bottom:894.210000px;}
.y11{bottom:911.670000px;}
.y5{bottom:924.450000px;}
.y10{bottom:965.130000px;}
.y4{bottom:977.910000px;}
.y61{bottom:1017.510000px;}
.yf{bottom:1020.930000px;}
.ycc{bottom:1021.290000px;}
.y3{bottom:1031.370000px;}
.ybb{bottom:1043.250000px;}
.y14{bottom:1051.170000px;}
.ye{bottom:1051.530000px;}
.y8b{bottom:1061.250000px;}
.yd{bottom:1080.690000px;}
.y39{bottom:1083.030000px;}
.y2{bottom:1084.650000px;}
.y13{bottom:1099.950000px;}
.y38{bottom:1126.590000px;}
.yc{bottom:1132.350000px;}
.y12{bottom:1132.530000px;}
.y1{bottom:1138.140000px;}
.h7{height:27.540000px;}
.hd{height:27.576000px;}
.he{height:43.560000px;}
.ha{height:46.251562px;}
.h8{height:46.736719px;}
.h2{height:50.273438px;}
.h3{height:50.800781px;}
.h5{height:62.402344px;}
.h16{height:65.340000px;}
.h6{height:67.565039px;}
.h4{height:80.937773px;}
.h22{height:83.340000px;}
.h21{height:105.300000px;}
.h11{height:109.080000px;}
.h26{height:123.300000px;}
.h18{height:148.896000px;}
.h25{height:166.890000px;}
.h17{height:170.820000px;}
.h13{height:170.850000px;}
.h24{height:188.820000px;}
.h1f{height:210.450000px;}
.h20{height:210.630000px;}
.hb{height:214.410000px;}
.h1d{height:232.380000px;}
.h23{height:232.410000px;}
.h1e{height:250.410000px;}
.h12{height:257.970000px;}
.h19{height:258.150000px;}
.h1b{height:276.150000px;}
.h1c{height:293.970000px;}
.hc{height:301.530000px;}
.h1a{height:315.750000px;}
.h15{height:323.490000px;}
.hf{height:389.010000px;}
.h9{height:407.010000px;}
.h14{height:450.570000px;}
.h10{height:585.435000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:118.260000px;}
.w6{width:147.276000px;}
.w7{width:149.040000px;}
.w8{width:161.130000px;}
.wa{width:170.310000px;}
.w4{width:179.130000px;}
.w9{width:196.590000px;}
.w5{width:231.690000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:8.100000px;}
.x7{left:40.680000px;}
.x12{left:45.225000px;}
.xd{left:49.365000px;}
.x16{left:50.625000px;}
.x9{left:54.225000px;}
.x10{left:56.154000px;}
.x14{left:65.730000px;}
.xb{left:84.630000px;}
.x1{left:108.035987px;}
.x2{left:115.775987px;}
.xf{left:171.029987px;}
.x8{left:226.290000px;}
.x11{left:257.070000px;}
.x3{left:308.774987px;}
.x6{left:315.794987px;}
.x4{left:355.754987px;}
.xa{left:405.435000px;}
.x13{left:418.215000px;}
.x5{left:446.474987px;}
.x15{left:614.805000px;}
.xc{left:637.125000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-0.640000pt;}
.ls1{letter-spacing:-0.199467pt;}
.ls0{letter-spacing:0.000000pt;}
.ws2{word-spacing:-14.720000pt;}
.ws1{word-spacing:-11.753173pt;}
.ws0{word-spacing:0.000000pt;}
._5{margin-left:-11.146667pt;}
._3{margin-left:-6.144000pt;}
._1{margin-left:-4.160000pt;}
._6{margin-left:-3.251200pt;}
._7{margin-left:-2.060800pt;}
._0{margin-left:-1.024000pt;}
._2{width:1.002667pt;}
._4{width:752.138667pt;}
._8{width:753.418667pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y37{bottom:5.600000pt;}
.y27{bottom:5.760000pt;}
.y15{bottom:8.160000pt;}
.yc7{bottom:21.600000pt;}
.y36{bottom:24.954667pt;}
.y3a{bottom:24.960000pt;}
.y7e{bottom:25.114667pt;}
.y26{bottom:25.120000pt;}
.y6e{bottom:25.146667pt;}
.ycb{bottom:41.114667pt;}
.yc6{bottom:41.120000pt;}
.y35{bottom:44.314667pt;}
.y67{bottom:44.320000pt;}
.y60{bottom:44.474667pt;}
.y25{bottom:44.480000pt;}
.y6d{bottom:44.506667pt;}
.yc0{bottom:60.360000pt;}
.yca{bottom:60.474667pt;}
.yb4{bottom:60.480000pt;}
.y34{bottom:63.674667pt;}
.yb6{bottom:63.680000pt;}
.y5f{bottom:63.834667pt;}
.y24{bottom:63.840000pt;}
.y6c{bottom:63.866667pt;}
.yc1{bottom:63.880000pt;}
.y9d{bottom:79.680000pt;}
.yc9{bottom:79.834667pt;}
.ya9{bottom:79.840000pt;}
.ybf{bottom:79.880000pt;}
.y33{bottom:83.194667pt;}
.y48{bottom:83.200000pt;}
.y6b{bottom:83.226667pt;}
.yc2{bottom:83.240000pt;}
.y5e{bottom:83.354667pt;}
.y23{bottom:83.360000pt;}
.y49{bottom:96.512000pt;}
.y9c{bottom:99.200000pt;}
.ybe{bottom:99.240000pt;}
.y8a{bottom:100.032000pt;}
.y32{bottom:102.554667pt;}
.y47{bottom:102.560000pt;}
.y66{bottom:102.600000pt;}
.y5d{bottom:102.714667pt;}
.y22{bottom:102.720000pt;}
.y6a{bottom:102.746667pt;}
.yba{bottom:104.352000pt;}
.yc8{bottom:107.712000pt;}
.y2a{bottom:113.312000pt;}
.yb3{bottom:115.200000pt;}
.y7d{bottom:118.554667pt;}
.y9b{bottom:118.560000pt;}
.yb9{bottom:118.600000pt;}
.yad{bottom:118.720000pt;}
.y31{bottom:121.914667pt;}
.y65{bottom:121.960000pt;}
.y5c{bottom:122.074667pt;}
.y21{bottom:122.080000pt;}
.y69{bottom:122.106667pt;}
.y6f{bottom:122.752000pt;}
.ya7{bottom:134.560000pt;}
.yb2{bottom:134.720000pt;}
.ya8{bottom:137.920000pt;}
.y9a{bottom:137.960000pt;}
.y7c{bottom:138.074667pt;}
.yac{bottom:138.080000pt;}
.ya4{bottom:138.106667pt;}
.y30{bottom:141.274667pt;}
.y5b{bottom:141.434667pt;}
.y20{bottom:141.440000pt;}
.y91{bottom:141.466667pt;}
.y64{bottom:141.480000pt;}
.ya5{bottom:146.266667pt;}
.ya6{bottom:153.960000pt;}
.yb1{bottom:154.080000pt;}
.yb5{bottom:157.306667pt;}
.y99{bottom:157.320000pt;}
.y7b{bottom:157.434667pt;}
.yab{bottom:157.440000pt;}
.ya3{bottom:157.466667pt;}
.yb8{bottom:157.480000pt;}
.y2f{bottom:160.794667pt;}
.y89{bottom:160.800000pt;}
.y29{bottom:160.826667pt;}
.y46{bottom:160.840000pt;}
.y9e{bottom:173.320000pt;}
.yb0{bottom:173.440000pt;}
.y1f{bottom:176.800000pt;}
.ya2{bottom:176.826667pt;}
.y7a{bottom:176.834667pt;}
.ybd{bottom:176.840000pt;}
.y2e{bottom:180.154667pt;}
.y88{bottom:180.160000pt;}
.y45{bottom:180.200000pt;}
.y5a{bottom:180.314667pt;}
.y90{bottom:180.346667pt;}
.yaf{bottom:192.800000pt;}
.y98{bottom:192.840000pt;}
.ya1{bottom:196.186667pt;}
.y79{bottom:196.194667pt;}
.y1e{bottom:196.320000pt;}
.yb7{bottom:197.946667pt;}
.y87{bottom:199.520000pt;}
.y2d{bottom:199.554667pt;}
.y63{bottom:199.560000pt;}
.y59{bottom:199.674667pt;}
.y8f{bottom:199.706667pt;}
.y44{bottom:199.720000pt;}
.y97{bottom:212.200000pt;}
.ya0{bottom:215.706667pt;}
.y78{bottom:215.714667pt;}
.y1d{bottom:215.720000pt;}
.yc5{bottom:217.306667pt;}
.y2c{bottom:218.914667pt;}
.y7f{bottom:218.920000pt;}
.y86{bottom:219.066667pt;}
.y58{bottom:219.074667pt;}
.y43{bottom:219.080000pt;}
.y96{bottom:231.560000pt;}
.y77{bottom:235.074667pt;}
.y1c{bottom:235.080000pt;}
.y2b{bottom:238.274667pt;}
.y85{bottom:238.426667pt;}
.y57{bottom:238.434667pt;}
.y42{bottom:238.440000pt;}
.y95{bottom:250.920000pt;}
.y76{bottom:254.434667pt;}
.y1b{bottom:254.440000pt;}
.y84{bottom:257.786667pt;}
.y41{bottom:257.800000pt;}
.y56{bottom:257.954667pt;}
.y3e{bottom:261.160000pt;}
.y75{bottom:273.794667pt;}
.y1a{bottom:273.960000pt;}
.y83{bottom:277.146667pt;}
.y40{bottom:277.160000pt;}
.y55{bottom:277.314667pt;}
.y3d{bottom:280.680000pt;}
.y74{bottom:293.154667pt;}
.y19{bottom:293.320000pt;}
.y82{bottom:296.666667pt;}
.y54{bottom:296.674667pt;}
.y3f{bottom:296.680000pt;}
.y73{bottom:312.674667pt;}
.y18{bottom:312.680000pt;}
.y81{bottom:316.026667pt;}
.y53{bottom:316.034667pt;}
.y3c{bottom:316.040000pt;}
.y80{bottom:329.346667pt;}
.y72{bottom:332.034667pt;}
.y17{bottom:332.040000pt;}
.y52{bottom:335.394667pt;}
.y71{bottom:351.394667pt;}
.y51{bottom:354.914667pt;}
.yc4{bottom:365.666667pt;}
.y70{bottom:370.754667pt;}
.y50{bottom:374.274667pt;}
.y28{bottom:381.346667pt;}
.y93{bottom:385.186667pt;}
.y4f{bottom:393.634667pt;}
.y9f{bottom:407.586667pt;}
.y4e{bottom:412.994667pt;}
.y92{bottom:415.266667pt;}
.y8e{bottom:429.666667pt;}
.y4d{bottom:432.354667pt;}
.y4c{bottom:451.901333pt;}
.y4b{bottom:471.261333pt;}
.y4a{bottom:490.621333pt;}
.y68{bottom:523.266667pt;}
.yb{bottom:547.613333pt;}
.yc3{bottom:552.893333pt;}
.y16{bottom:571.933333pt;}
.yae{bottom:572.253333pt;}
.ya{bottom:595.133333pt;}
.y3b{bottom:616.893333pt;}
.y9{bottom:642.493333pt;}
.y94{bottom:653.053333pt;}
.y8d{bottom:659.133333pt;}
.y62{bottom:675.133333pt;}
.y8{bottom:690.013333pt;}
.ycd{bottom:706.333333pt;}
.ybc{bottom:720.733333pt;}
.y7{bottom:737.533333pt;}
.y6{bottom:774.373333pt;}
.y8c{bottom:791.493333pt;}
.yaa{bottom:794.853333pt;}
.y11{bottom:810.373333pt;}
.y5{bottom:821.733333pt;}
.y10{bottom:857.893333pt;}
.y4{bottom:869.253333pt;}
.y61{bottom:904.453333pt;}
.yf{bottom:907.493333pt;}
.ycc{bottom:907.813333pt;}
.y3{bottom:916.773333pt;}
.ybb{bottom:927.333333pt;}
.y14{bottom:934.373333pt;}
.ye{bottom:934.693333pt;}
.y8b{bottom:943.333333pt;}
.yd{bottom:960.613333pt;}
.y39{bottom:962.693333pt;}
.y2{bottom:964.133333pt;}
.y13{bottom:977.733333pt;}
.y38{bottom:1001.413333pt;}
.yc{bottom:1006.533333pt;}
.y12{bottom:1006.693333pt;}
.y1{bottom:1011.680000pt;}
.h7{height:24.480000pt;}
.hd{height:24.512000pt;}
.he{height:38.720000pt;}
.ha{height:41.112500pt;}
.h8{height:41.543750pt;}
.h2{height:44.687500pt;}
.h3{height:45.156250pt;}
.h5{height:55.468750pt;}
.h16{height:58.080000pt;}
.h6{height:60.057813pt;}
.h4{height:71.944688pt;}
.h22{height:74.080000pt;}
.h21{height:93.600000pt;}
.h11{height:96.960000pt;}
.h26{height:109.600000pt;}
.h18{height:132.352000pt;}
.h25{height:148.346667pt;}
.h17{height:151.840000pt;}
.h13{height:151.866667pt;}
.h24{height:167.840000pt;}
.h1f{height:187.066667pt;}
.h20{height:187.226667pt;}
.hb{height:190.586667pt;}
.h1d{height:206.560000pt;}
.h23{height:206.586667pt;}
.h1e{height:222.586667pt;}
.h12{height:229.306667pt;}
.h19{height:229.466667pt;}
.h1b{height:245.466667pt;}
.h1c{height:261.306667pt;}
.hc{height:268.026667pt;}
.h1a{height:280.666667pt;}
.h15{height:287.546667pt;}
.hf{height:345.786667pt;}
.h9{height:361.786667pt;}
.h14{height:400.506667pt;}
.h10{height:520.386667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:105.120000pt;}
.w6{width:130.912000pt;}
.w7{width:132.480000pt;}
.w8{width:143.226667pt;}
.wa{width:151.386667pt;}
.w4{width:159.226667pt;}
.w9{width:174.746667pt;}
.w5{width:205.946667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:7.200000pt;}
.x7{left:36.160000pt;}
.x12{left:40.200000pt;}
.xd{left:43.880000pt;}
.x16{left:45.000000pt;}
.x9{left:48.200000pt;}
.x10{left:49.914667pt;}
.x14{left:58.426667pt;}
.xb{left:75.226667pt;}
.x1{left:96.031988pt;}
.x2{left:102.911988pt;}
.xf{left:152.026655pt;}
.x8{left:201.146667pt;}
.x11{left:228.506667pt;}
.x3{left:274.466655pt;}
.x6{left:280.706655pt;}
.x4{left:316.226655pt;}
.xa{left:360.386667pt;}
.x13{left:371.746667pt;}
.x5{left:396.866655pt;}
.x15{left:546.493333pt;}
.xc{left:566.333333pt;}
}




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