
    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_6cc5d24c7c2749bfed86d899.woff2')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_09ec42d5bd89444e27535614.woff2')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_3cd99bf140e2e59003c9fc46.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_d098eabae007d785f8d87cee.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.927246;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_c204c1f8c2782030ac6dea97.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.928223;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_524028bb3202ae3d81b5c03a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.084961;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_b93732a6e7b8469733463043.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.895508;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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;}
.v1{vertical-align:23.760000px;}
.lsf{letter-spacing:-0.720000px;}
.ls13{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.496200px;}
.ls10{letter-spacing:-0.450600px;}
.ls6{letter-spacing:-0.181200px;}
.ls5{letter-spacing:-0.106800px;}
.ls7{letter-spacing:-0.008640px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.223800px;}
.ls2{letter-spacing:0.259920px;}
.ls14{letter-spacing:0.305400px;}
.ls1{letter-spacing:0.360000px;}
.lsc{letter-spacing:3.060000px;}
.lsd{letter-spacing:3.780000px;}
.lse{letter-spacing:9.540000px;}
.ls3{letter-spacing:13.140000px;}
.lsa{letter-spacing:39.881280px;}
.ls12{letter-spacing:48.420000px;}
.ls11{letter-spacing:57.780000px;}
.lsb{letter-spacing:64.980000px;}
.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;}
}
.wsd{word-spacing:-16.865400px;}
.wsb{word-spacing:-16.560000px;}
.ws0{word-spacing:-14.940000px;}
.ws5{word-spacing:-13.500000px;}
.ws4{word-spacing:-13.410720px;}
.ws3{word-spacing:-13.229520px;}
.ws9{word-spacing:-12.283800px;}
.ws6{word-spacing:-12.060000px;}
.wsc{word-spacing:-11.609400px;}
.ws8{word-spacing:-11.563800px;}
.ws1{word-spacing:-0.059760px;}
.ws7{word-spacing:-0.048240px;}
.wsa{word-spacing:0.000000px;}
.ws2{word-spacing:0.047040px;}
._16{margin-left:-4.968000px;}
._17{margin-left:-3.835200px;}
._2{margin-left:-2.760000px;}
._1{margin-left:-1.736640px;}
._0{width:1.254960px;}
._4{width:2.879280px;}
._3{width:3.996000px;}
._6{width:5.400000px;}
._8{width:6.508080px;}
._9{width:7.801920px;}
._c{width:8.908320px;}
._7{width:9.936000px;}
._b{width:11.772000px;}
._13{width:13.603680px;}
._a{width:14.742000px;}
._5{width:16.308000px;}
._d{width:17.928000px;}
._e{width:19.710000px;}
._10{width:21.006000px;}
._18{width:22.125840px;}
._19{width:24.111360px;}
._1a{width:25.450560px;}
._24{width:26.496000px;}
._1b{width:28.681920px;}
._15{width:29.842320px;}
._14{width:30.873600px;}
._11{width:31.914000px;}
._1f{width:34.410000px;}
._1e{width:35.460000px;}
._f{width:37.314000px;}
._12{width:39.168000px;}
._22{width:46.841040px;}
._23{width:47.854080px;}
._21{width:56.633760px;}
._20{width:57.743280px;}
._1c{width:64.593360px;}
._1d{width:65.718960px;}
._26{width:82.667520px;}
._27{width:122.477760px;}
._25{width:1327.666080px;}
.fc6{color:rgb(17,85,204);}
.fc4{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(5,99,193);}
.fc5{color:rgb(34,34,34);}
.fc3{color:rgb(5,5,5);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:30.240000px;}
.fs5{font-size:36.000000px;}
.fs7{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y34{bottom:2.880000px;}
.y2{bottom:6.480000px;}
.y37{bottom:15.120000px;}
.y33{bottom:18.540000px;}
.y38{bottom:20.160000px;}
.y5{bottom:25.410000px;}
.y8{bottom:28.830000px;}
.y32{bottom:34.020000px;}
.y4{bottom:42.690000px;}
.y7{bottom:46.110000px;}
.y31{bottom:49.500000px;}
.ya{bottom:56.340000px;}
.y3{bottom:60.690000px;}
.y6{bottom:63.390000px;}
.y30{bottom:64.980000px;}
.y2f{bottom:80.640000px;}
.y2e{bottom:96.120000px;}
.y48{bottom:110.340000px;}
.y2d{bottom:111.600000px;}
.y47{bottom:124.020000px;}
.y2c{bottom:127.080000px;}
.y81{bottom:128.520000px;}
.y87{bottom:131.940000px;}
.y46{bottom:137.880000px;}
.y88{bottom:138.960000px;}
.y75{bottom:142.380000px;}
.y2b{bottom:142.560000px;}
.y45{bottom:151.740000px;}
.y86{bottom:153.720000px;}
.y44{bottom:156.240000px;}
.y2a{bottom:158.220000px;}
.y80{bottom:165.420000px;}
.y43{bottom:166.500000px;}
.y7f{bottom:169.920000px;}
.y29{bottom:173.700000px;}
.y85{bottom:175.500000px;}
.y7e{bottom:179.280000px;}
.y7d{bottom:183.780000px;}
.y28{bottom:189.180000px;}
.y7c{bottom:193.140000px;}
.y74{bottom:197.460000px;}
.y42{bottom:204.120000px;}
.y27{bottom:204.660000px;}
.y7b{bottom:206.820000px;}
.y7a{bottom:211.350000px;}
.y73{bottom:219.270000px;}
.y26{bottom:220.320000px;}
.y79{bottom:221.790000px;}
.y40{bottom:225.930000px;}
.y41{bottom:231.870000px;}
.y25{bottom:235.830000px;}
.y72{bottom:241.050000px;}
.y3f{bottom:247.710000px;}
.y24{bottom:251.310000px;}
.y71{bottom:262.830000px;}
.y23{bottom:266.790000px;}
.y3e{bottom:269.490000px;}
.y22{bottom:282.450000px;}
.y70{bottom:284.610000px;}
.y3d{bottom:291.450000px;}
.y21{bottom:297.930000px;}
.y6f{bottom:306.570000px;}
.y3c{bottom:313.230000px;}
.y20{bottom:313.410000px;}
.y6e{bottom:328.350000px;}
.y1f{bottom:328.890000px;}
.y3b{bottom:335.010000px;}
.y1e{bottom:344.550000px;}
.y6d{bottom:350.130000px;}
.y3a{bottom:356.790000px;}
.y1d{bottom:360.030000px;}
.y6c{bottom:371.910000px;}
.y39{bottom:372.450000px;}
.y1c{bottom:375.510000px;}
.y1b{bottom:390.990000px;}
.y6b{bottom:393.870000px;}
.y36{bottom:394.590000px;}
.y78{bottom:399.810000px;}
.y1a{bottom:406.650000px;}
.y6a{bottom:415.650000px;}
.y19{bottom:422.130000px;}
.y35{bottom:434.550000px;}
.y69{bottom:437.430000px;}
.y18{bottom:437.610000px;}
.y12{bottom:448.635000px;}
.y17{bottom:453.090000px;}
.y68{bottom:459.255000px;}
.y16{bottom:468.795000px;}
.y67{bottom:481.035000px;}
.y15{bottom:484.275000px;}
.y14{bottom:499.755000px;}
.y66{bottom:502.995000px;}
.y13{bottom:515.235000px;}
.y65{bottom:524.775000px;}
.y64{bottom:546.555000px;}
.y63{bottom:568.335000px;}
.y62{bottom:590.295000px;}
.y77{bottom:596.235000px;}
.y61{bottom:612.075000px;}
.y60{bottom:633.855000px;}
.y5f{bottom:655.635000px;}
.y84{bottom:661.575000px;}
.y5e{bottom:677.415000px;}
.y5d{bottom:699.405000px;}
.y5c{bottom:721.185000px;}
.y83{bottom:728.025000px;}
.y5b{bottom:742.965000px;}
.y5a{bottom:764.745000px;}
.y59{bottom:786.705000px;}
.y58{bottom:808.485000px;}
.y57{bottom:830.265000px;}
.y56{bottom:852.045000px;}
.y55{bottom:873.825000px;}
.y76{bottom:879.765000px;}
.y54{bottom:895.785000px;}
.y53{bottom:917.610000px;}
.y52{bottom:939.390000px;}
.y51{bottom:961.170000px;}
.y11{bottom:979.710000px;}
.y50{bottom:982.950000px;}
.y10{bottom:996.990000px;}
.y4e{bottom:1004.910000px;}
.y4f{bottom:1010.850000px;}
.yf{bottom:1014.270000px;}
.y4d{bottom:1026.690000px;}
.ye{bottom:1031.910000px;}
.y4c{bottom:1048.470000px;}
.yd{bottom:1049.370000px;}
.y82{bottom:1054.410000px;}
.yc{bottom:1066.830000px;}
.y4a{bottom:1070.250000px;}
.y4b{bottom:1076.190000px;}
.yb{bottom:1089.330000px;}
.y49{bottom:1092.210000px;}
.y9{bottom:1111.110000px;}
.y1{bottom:1131.090000px;}
.h16{height:21.114844px;}
.hb{height:25.400391px;}
.h15{height:29.158594px;}
.h13{height:33.683203px;}
.h1b{height:34.419375px;}
.h12{height:36.580430px;}
.h11{height:36.720000px;}
.h10{height:37.705078px;}
.hf{height:38.100586px;}
.h8{height:39.147891px;}
.h17{height:39.760312px;}
.h3{height:41.726953px;}
.h5{height:42.164648px;}
.he{height:44.507812px;}
.h14{height:46.251562px;}
.hc{height:46.736719px;}
.h7{height:48.224531px;}
.h6{height:49.255313px;}
.h4{height:50.800781px;}
.h19{height:52.918594px;}
.h1a{height:53.755312px;}
.h18{height:54.596250px;}
.h9{height:54.864844px;}
.ha{height:63.104063px;}
.h2{height:77.436000px;}
.hd{height:527.835000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:72.000000px;}
.w4{width:209.415000px;}
.w7{width:224.130000px;}
.w8{width:297.750000px;}
.w9{width:391.605000px;}
.w3{width:427.935000px;}
.w6{width:459.075000px;}
.wa{width:893.159973px;}
.w5{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x13{left:29.700000px;}
.x6{left:44.685000px;}
.x2{left:69.294000px;}
.x7{left:85.725000px;}
.x1{left:99.936000px;}
.x9{left:108.035987px;}
.x1a{left:111.815987px;}
.x12{left:116.136000px;}
.x8{left:127.305000px;}
.xb{left:133.055987px;}
.x1f{left:135.035987px;}
.x32{left:144.035987px;}
.x31{left:150.509987px;}
.x16{left:162.029987px;}
.x3{left:171.930000px;}
.x21{left:203.789973px;}
.x22{left:209.009987px;}
.x2b{left:212.969973px;}
.x20{left:216.029987px;}
.x2c{left:218.189987px;}
.xf{left:290.774987px;}
.xc{left:304.454987px;}
.x10{left:308.414987px;}
.x19{left:324.074987px;}
.xe{left:331.994987px;}
.x14{left:413.895000px;}
.x1b{left:435.674973px;}
.x1c{left:440.894987px;}
.xd{left:446.684987px;}
.x27{left:453.164973px;}
.x28{left:458.384987px;}
.x23{left:466.844973px;}
.x24{left:472.064987px;}
.xa{left:496.184987px;}
.x11{left:567.105000px;}
.x25{left:568.184973px;}
.x26{left:573.404987px;}
.x5{left:599.865000px;}
.x2f{left:613.724973px;}
.x30{left:624.209987px;}
.x29{left:656.429973px;}
.x2a{left:661.649987px;}
.x1d{left:675.689973px;}
.x1e{left:680.909987px;}
.x17{left:735.989973px;}
.x18{left:741.209987px;}
.x2d{left:774.869973px;}
.x15{left:778.109987px;}
.x2e{left:785.309987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsf{letter-spacing:-0.640000pt;}
.ls13{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.441067pt;}
.ls10{letter-spacing:-0.400533pt;}
.ls6{letter-spacing:-0.161067pt;}
.ls5{letter-spacing:-0.094933pt;}
.ls7{letter-spacing:-0.007680pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.198933pt;}
.ls2{letter-spacing:0.231040pt;}
.ls14{letter-spacing:0.271467pt;}
.ls1{letter-spacing:0.320000pt;}
.lsc{letter-spacing:2.720000pt;}
.lsd{letter-spacing:3.360000pt;}
.lse{letter-spacing:8.480000pt;}
.ls3{letter-spacing:11.680000pt;}
.lsa{letter-spacing:35.450027pt;}
.ls12{letter-spacing:43.040000pt;}
.ls11{letter-spacing:51.360000pt;}
.lsb{letter-spacing:57.760000pt;}
.wsd{word-spacing:-14.991467pt;}
.wsb{word-spacing:-14.720000pt;}
.ws0{word-spacing:-13.280000pt;}
.ws5{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.920640pt;}
.ws3{word-spacing:-11.759573pt;}
.ws9{word-spacing:-10.918933pt;}
.ws6{word-spacing:-10.720000pt;}
.wsc{word-spacing:-10.319467pt;}
.ws8{word-spacing:-10.278933pt;}
.ws1{word-spacing:-0.053120pt;}
.ws7{word-spacing:-0.042880pt;}
.wsa{word-spacing:0.000000pt;}
.ws2{word-spacing:0.041813pt;}
._16{margin-left:-4.416000pt;}
._17{margin-left:-3.409067pt;}
._2{margin-left:-2.453333pt;}
._1{margin-left:-1.543680pt;}
._0{width:1.115520pt;}
._4{width:2.559360pt;}
._3{width:3.552000pt;}
._6{width:4.800000pt;}
._8{width:5.784960pt;}
._9{width:6.935040pt;}
._c{width:7.918507pt;}
._7{width:8.832000pt;}
._b{width:10.464000pt;}
._13{width:12.092160pt;}
._a{width:13.104000pt;}
._5{width:14.496000pt;}
._d{width:15.936000pt;}
._e{width:17.520000pt;}
._10{width:18.672000pt;}
._18{width:19.667413pt;}
._19{width:21.432320pt;}
._1a{width:22.622720pt;}
._24{width:23.552000pt;}
._1b{width:25.495040pt;}
._15{width:26.526507pt;}
._14{width:27.443200pt;}
._11{width:28.368000pt;}
._1f{width:30.586667pt;}
._1e{width:31.520000pt;}
._f{width:33.168000pt;}
._12{width:34.816000pt;}
._22{width:41.636480pt;}
._23{width:42.536960pt;}
._21{width:50.341120pt;}
._20{width:51.327360pt;}
._1c{width:57.416320pt;}
._1d{width:58.416853pt;}
._26{width:73.482240pt;}
._27{width:108.869120pt;}
._25{width:1180.147627pt;}
.fs8{font-size:26.880000pt;}
.fs5{font-size:32.000000pt;}
.fs7{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:2.560000pt;}
.y2{bottom:5.760000pt;}
.y37{bottom:13.440000pt;}
.y33{bottom:16.480000pt;}
.y38{bottom:17.920000pt;}
.y5{bottom:22.586667pt;}
.y8{bottom:25.626667pt;}
.y32{bottom:30.240000pt;}
.y4{bottom:37.946667pt;}
.y7{bottom:40.986667pt;}
.y31{bottom:44.000000pt;}
.ya{bottom:50.080000pt;}
.y3{bottom:53.946667pt;}
.y6{bottom:56.346667pt;}
.y30{bottom:57.760000pt;}
.y2f{bottom:71.680000pt;}
.y2e{bottom:85.440000pt;}
.y48{bottom:98.080000pt;}
.y2d{bottom:99.200000pt;}
.y47{bottom:110.240000pt;}
.y2c{bottom:112.960000pt;}
.y81{bottom:114.240000pt;}
.y87{bottom:117.280000pt;}
.y46{bottom:122.560000pt;}
.y88{bottom:123.520000pt;}
.y75{bottom:126.560000pt;}
.y2b{bottom:126.720000pt;}
.y45{bottom:134.880000pt;}
.y86{bottom:136.640000pt;}
.y44{bottom:138.880000pt;}
.y2a{bottom:140.640000pt;}
.y80{bottom:147.040000pt;}
.y43{bottom:148.000000pt;}
.y7f{bottom:151.040000pt;}
.y29{bottom:154.400000pt;}
.y85{bottom:156.000000pt;}
.y7e{bottom:159.360000pt;}
.y7d{bottom:163.360000pt;}
.y28{bottom:168.160000pt;}
.y7c{bottom:171.680000pt;}
.y74{bottom:175.520000pt;}
.y42{bottom:181.440000pt;}
.y27{bottom:181.920000pt;}
.y7b{bottom:183.840000pt;}
.y7a{bottom:187.866667pt;}
.y73{bottom:194.906667pt;}
.y26{bottom:195.840000pt;}
.y79{bottom:197.146667pt;}
.y40{bottom:200.826667pt;}
.y41{bottom:206.106667pt;}
.y25{bottom:209.626667pt;}
.y72{bottom:214.266667pt;}
.y3f{bottom:220.186667pt;}
.y24{bottom:223.386667pt;}
.y71{bottom:233.626667pt;}
.y23{bottom:237.146667pt;}
.y3e{bottom:239.546667pt;}
.y22{bottom:251.066667pt;}
.y70{bottom:252.986667pt;}
.y3d{bottom:259.066667pt;}
.y21{bottom:264.826667pt;}
.y6f{bottom:272.506667pt;}
.y3c{bottom:278.426667pt;}
.y20{bottom:278.586667pt;}
.y6e{bottom:291.866667pt;}
.y1f{bottom:292.346667pt;}
.y3b{bottom:297.786667pt;}
.y1e{bottom:306.266667pt;}
.y6d{bottom:311.226667pt;}
.y3a{bottom:317.146667pt;}
.y1d{bottom:320.026667pt;}
.y6c{bottom:330.586667pt;}
.y39{bottom:331.066667pt;}
.y1c{bottom:333.786667pt;}
.y1b{bottom:347.546667pt;}
.y6b{bottom:350.106667pt;}
.y36{bottom:350.746667pt;}
.y78{bottom:355.386667pt;}
.y1a{bottom:361.466667pt;}
.y6a{bottom:369.466667pt;}
.y19{bottom:375.226667pt;}
.y35{bottom:386.266667pt;}
.y69{bottom:388.826667pt;}
.y18{bottom:388.986667pt;}
.y12{bottom:398.786667pt;}
.y17{bottom:402.746667pt;}
.y68{bottom:408.226667pt;}
.y16{bottom:416.706667pt;}
.y67{bottom:427.586667pt;}
.y15{bottom:430.466667pt;}
.y14{bottom:444.226667pt;}
.y66{bottom:447.106667pt;}
.y13{bottom:457.986667pt;}
.y65{bottom:466.466667pt;}
.y64{bottom:485.826667pt;}
.y63{bottom:505.186667pt;}
.y62{bottom:524.706667pt;}
.y77{bottom:529.986667pt;}
.y61{bottom:544.066667pt;}
.y60{bottom:563.426667pt;}
.y5f{bottom:582.786667pt;}
.y84{bottom:588.066667pt;}
.y5e{bottom:602.146667pt;}
.y5d{bottom:621.693333pt;}
.y5c{bottom:641.053333pt;}
.y83{bottom:647.133333pt;}
.y5b{bottom:660.413333pt;}
.y5a{bottom:679.773333pt;}
.y59{bottom:699.293333pt;}
.y58{bottom:718.653333pt;}
.y57{bottom:738.013333pt;}
.y56{bottom:757.373333pt;}
.y55{bottom:776.733333pt;}
.y76{bottom:782.013333pt;}
.y54{bottom:796.253333pt;}
.y53{bottom:815.653333pt;}
.y52{bottom:835.013333pt;}
.y51{bottom:854.373333pt;}
.y11{bottom:870.853333pt;}
.y50{bottom:873.733333pt;}
.y10{bottom:886.213333pt;}
.y4e{bottom:893.253333pt;}
.y4f{bottom:898.533333pt;}
.yf{bottom:901.573333pt;}
.y4d{bottom:912.613333pt;}
.ye{bottom:917.253333pt;}
.y4c{bottom:931.973333pt;}
.yd{bottom:932.773333pt;}
.y82{bottom:937.253333pt;}
.yc{bottom:948.293333pt;}
.y4a{bottom:951.333333pt;}
.y4b{bottom:956.613333pt;}
.yb{bottom:968.293333pt;}
.y49{bottom:970.853333pt;}
.y9{bottom:987.653333pt;}
.y1{bottom:1005.413333pt;}
.h16{height:18.768750pt;}
.hb{height:22.578125pt;}
.h15{height:25.918750pt;}
.h13{height:29.940625pt;}
.h1b{height:30.595000pt;}
.h12{height:32.515937pt;}
.h11{height:32.640000pt;}
.h10{height:33.515625pt;}
.hf{height:33.867188pt;}
.h8{height:34.798125pt;}
.h17{height:35.342500pt;}
.h3{height:37.090625pt;}
.h5{height:37.479688pt;}
.he{height:39.562500pt;}
.h14{height:41.112500pt;}
.hc{height:41.543750pt;}
.h7{height:42.866250pt;}
.h6{height:43.782500pt;}
.h4{height:45.156250pt;}
.h19{height:47.038750pt;}
.h1a{height:47.782500pt;}
.h18{height:48.530000pt;}
.h9{height:48.768750pt;}
.ha{height:56.092500pt;}
.h2{height:68.832000pt;}
.hd{height:469.186667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:64.000000pt;}
.w4{width:186.146667pt;}
.w7{width:199.226667pt;}
.w8{width:264.666667pt;}
.w9{width:348.093333pt;}
.w3{width:380.386667pt;}
.w6{width:408.066667pt;}
.wa{width:793.919976pt;}
.w5{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x13{left:26.400000pt;}
.x6{left:39.720000pt;}
.x2{left:61.594667pt;}
.x7{left:76.200000pt;}
.x1{left:88.832000pt;}
.x9{left:96.031988pt;}
.x1a{left:99.391988pt;}
.x12{left:103.232000pt;}
.x8{left:113.160000pt;}
.xb{left:118.271988pt;}
.x1f{left:120.031988pt;}
.x32{left:128.031988pt;}
.x31{left:133.786655pt;}
.x16{left:144.026655pt;}
.x3{left:152.826667pt;}
.x21{left:181.146643pt;}
.x22{left:185.786655pt;}
.x2b{left:189.306643pt;}
.x20{left:192.026655pt;}
.x2c{left:193.946655pt;}
.xf{left:258.466655pt;}
.xc{left:270.626655pt;}
.x10{left:274.146655pt;}
.x19{left:288.066655pt;}
.xe{left:295.106655pt;}
.x14{left:367.906667pt;}
.x1b{left:387.266643pt;}
.x1c{left:391.906655pt;}
.xd{left:397.053322pt;}
.x27{left:402.813310pt;}
.x28{left:407.453322pt;}
.x23{left:414.973310pt;}
.x24{left:419.613322pt;}
.xa{left:441.053322pt;}
.x11{left:504.093333pt;}
.x25{left:505.053310pt;}
.x26{left:509.693322pt;}
.x5{left:533.213333pt;}
.x2f{left:545.533310pt;}
.x30{left:554.853322pt;}
.x29{left:583.493310pt;}
.x2a{left:588.133322pt;}
.x1d{left:600.613310pt;}
.x1e{left:605.253322pt;}
.x17{left:654.213310pt;}
.x18{left:658.853322pt;}
.x2d{left:688.773310pt;}
.x15{left:691.653322pt;}
.x2e{left:698.053322pt;}
}




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