
    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_c19a94fe3d2398f63dacfc4b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.823730;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_bef5ab362ee049d4864786ae.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_0e2ef5a48bb357eacdaf7125.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_151a82c398d057c1c0b1a722.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_cda27694dc4573075d44f1cf.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_67ab2f114f852387e643bc2c.woff2')format("woff");}.ff6{font-family:ff6;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;}
.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:12.240418px;}
.v2{vertical-align:30.960023px;}
.v3{vertical-align:39.599946px;}
.v4{vertical-align:79.199888px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.094301px;}
.ls2{letter-spacing:2.879023px;}
.ls3{letter-spacing:5.039208px;}
.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;}
}
.ws3{word-spacing:-79.203150px;}
.ws2{word-spacing:-23.855201px;}
.ws0{word-spacing:-23.760900px;}
.ws6{word-spacing:-19.800788px;}
.ws1{word-spacing:-13.860563px;}
.ws4{word-spacing:0.000000px;}
.ws5{word-spacing:179.870354px;}
.ws9{word-spacing:276.146248px;}
.wsa{word-spacing:311.687968px;}
.ws8{word-spacing:351.422346px;}
.ws7{word-spacing:408.745921px;}
._24{margin-left:-14.539443px;}
._25{margin-left:-12.999717px;}
._17{margin-left:-11.519674px;}
._5{margin-left:-10.394280px;}
._6{margin-left:-9.079355px;}
._2{margin-left:-7.795153px;}
._12{margin-left:-6.761832px;}
._4{margin-left:-5.702616px;}
._22{margin-left:-4.691571px;}
._11{margin-left:-3.671709px;}
._3{margin-left:-2.233896px;}
._10{margin-left:-1.192222px;}
._0{width:1.064507px;}
._13{width:2.149340px;}
._b{width:3.231482px;}
._7{width:4.562093px;}
._a{width:5.892703px;}
._15{width:7.000007px;}
._d{width:8.839055px;}
._c{width:10.169665px;}
._e{width:11.440131px;}
._f{width:12.593741px;}
._14{width:14.126598px;}
._9{width:15.967325px;}
._8{width:17.107848px;}
._16{width:18.747617px;}
._1a{width:121.586965px;}
._20{width:252.111143px;}
._1f{width:269.562782px;}
._21{width:273.678734px;}
._1c{width:294.583405px;}
._1e{width:299.620317px;}
._1b{width:327.189005px;}
._1d{width:350.298143px;}
._18{width:382.473868px;}
._19{width:402.654892px;}
._23{width:602.406635px;}
._1{width:1695.553076px;}
._26{width:1869.294626px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:55.442250px;}
.fs1{font-size:63.362250px;}
.fs0{font-size:71.282700px;}
.fs4{font-size:79.203150px;}
.fs2{font-size:95.043600px;}
.y0{bottom:0.000000px;}
.y1{bottom:37.980011px;}
.y1a{bottom:41.040115px;}
.y7c{bottom:97.920043px;}
.y55{bottom:98.640060px;}
.y93{bottom:100.620072px;}
.y67{bottom:102.420043px;}
.y5f{bottom:107.100083px;}
.y9e{bottom:107.460022px;}
.ya6{bottom:119.700096px;}
.y37{bottom:121.320099px;}
.y18{bottom:121.860077px;}
.y84{bottom:124.560036px;}
.y66{bottom:130.860077px;}
.y5e{bottom:135.720085px;}
.y9d{bottom:136.080093px;}
.ya5{bottom:148.320099px;}
.y36{bottom:149.940033px;}
.y17{bottom:150.300041px;}
.y41{bottom:154.620072px;}
.y54{bottom:155.700096px;}
.y65{bottom:159.480079px;}
.y6e{bottom:176.760064px;}
.y35{bottom:178.380066px;}
.y40{bottom:178.560036px;}
.y16{bottom:178.920043px;}
.y64{bottom:187.920043px;}
.y5d{bottom:192.780052px;}
.y9c{bottom:193.140060px;}
.y6d{bottom:200.520058px;}
.ya4{bottom:205.380066px;}
.y34{bottom:207.000068px;}
.y15{bottom:207.360077px;}
.y53{bottom:212.760064px;}
.y63{bottom:216.540047px;}
.y9b{bottom:221.580093px;}
.y59{bottom:230.760064px;}
.ya3{bottom:233.820099px;}
.y33{bottom:235.440033px;}
.y7b{bottom:235.980079px;}
.y62{bottom:244.980079px;}
.y52{bottom:246.780052px;}
.y5c{bottom:249.840088px;}
.y9a{bottom:250.200096px;}
.ya2{bottom:262.440033px;}
.y32{bottom:264.060036px;}
.y7a{bottom:264.420043px;}
.y51{bottom:266.580093px;}
.y5b{bottom:273.600083px;}
.y99{bottom:278.640060px;}
.y31{bottom:292.500068px;}
.y14{bottom:293.040047px;}
.y50{bottom:306.180039px;}
.y69{bottom:306.900055px;}
.y98{bottom:307.260064px;}
.y4c{bottom:312.300041px;}
.ya1{bottom:319.500068px;}
.y30{bottom:321.120072px;}
.y79{bottom:321.480079px;}
.y4f{bottom:325.980079px;}
.y61{bottom:330.660049px;}
.y97{bottom:335.700096px;}
.ya0{bottom:347.940033px;}
.y2f{bottom:349.560036px;}
.y80{bottom:349.740074px;}
.y13{bottom:350.100083px;}
.y4e{bottom:361.620072px;}
.y4d{bottom:371.520058px;}
.y8f{bottom:376.560036px;}
.y2e{bottom:378.180039px;}
.y12{bottom:378.540047px;}
.y96{bottom:392.760064px;}
.y8e{bottom:405.000068px;}
.y2d{bottom:406.620072px;}
.y7f{bottom:406.800041px;}
.y11{bottom:407.160049px;}
.y4b{bottom:413.640060px;}
.y95{bottom:416.700096px;}
.y4a{bottom:433.440033px;}
.y8d{bottom:433.620072px;}
.y2c{bottom:435.240074px;}
.y78{bottom:435.600083px;}
.y48{bottom:453.240074px;}
.y46{bottom:453.420043px;}
.y8c{bottom:462.060036px;}
.y2b{bottom:463.680039px;}
.y7e{bottom:463.860077px;}
.y10{bottom:464.220085px;}
.y49{bottom:464.580093px;}
.y8b{bottom:490.680039px;}
.y2a{bottom:492.300041px;}
.yf{bottom:492.660049px;}
.y47{bottom:494.280052px;}
.y8a{bottom:519.120072px;}
.y29{bottom:520.740074px;}
.y7d{bottom:520.920043px;}
.ye{bottom:521.280052px;}
.y45{bottom:524.160049px;}
.y28{bottom:549.360077px;}
.yd{bottom:549.720085px;}
.y83{bottom:552.420043px;}
.y44{bottom:554.040047px;}
.y89{bottom:576.180039px;}
.y9f{bottom:577.980079px;}
.yc{bottom:578.340088px;}
.y6c{bottom:581.040047px;}
.y3f{bottom:582.660049px;}
.y82{bottom:604.800041px;}
.y27{bottom:606.420043px;}
.y77{bottom:606.780052px;}
.y58{bottom:611.280052px;}
.y88{bottom:633.240074px;}
.y43{bottom:634.860077px;}
.y3e{bottom:635.040047px;}
.y76{bottom:635.400055px;}
.y60{bottom:639.720085px;}
.y92{bottom:647.460091px;}
.y87{bottom:661.860077px;}
.y57{bottom:663.480079px;}
.y75{bottom:663.840088px;}
.y6b{bottom:676.080093px;}
.y86{bottom:690.300076px;}
.y26{bottom:691.920078px;}
.y56{bottom:692.100083px;}
.y74{bottom:692.460056px;}
.y91{bottom:695.160049px;}
.y6a{bottom:699.840054px;}
.y25{bottom:720.540081px;}
.yb{bottom:720.900055px;}
.y90{bottom:723.600083px;}
.y85{bottom:747.360077px;}
.y24{bottom:748.980079px;}
.y3d{bottom:749.160049px;}
.ya{bottom:749.520058px;}
.y23{bottom:777.600083px;}
.y73{bottom:777.960056px;}
.y68{bottom:782.460056px;}
.y22{bottom:806.040081px;}
.y3c{bottom:806.220051px;}
.y9{bottom:806.580059px;}
.y21{bottom:834.660049px;}
.y72{bottom:835.020058px;}
.y94{bottom:844.560070px;}
.y20{bottom:863.280052px;}
.y8{bottom:863.640060px;}
.y5a{bottom:867.960056px;}
.y1f{bottom:891.720051px;}
.y71{bottom:892.080059px;}
.y42{bottom:920.340054px;}
.y7{bottom:920.700061px;}
.y1e{bottom:948.780053px;}
.y6{bottom:949.140060px;}
.y3b{bottom:977.400072px;}
.y70{bottom:977.760064px;}
.y3a{bottom:1005.840070px;}
.y6f{bottom:1006.200061px;}
.y1d{bottom:1034.460074px;}
.y5{bottom:1034.820065px;}
.y39{bottom:1062.900072px;}
.y4{bottom:1063.260064px;}
.y38{bottom:1091.520058px;}
.y3{bottom:1091.880066px;}
.y1c{bottom:1119.960065px;}
.y19{bottom:1128.240066px;}
.y1b{bottom:1148.580068px;}
.y2{bottom:1148.940067px;}
.y81{bottom:1151.640069px;}
.h7{height:55.302981px;}
.h9{height:55.596662px;}
.h8{height:57.534328px;}
.h6{height:64.414315px;}
.h5{height:65.992187px;}
.h2{height:67.837080px;}
.hb{height:69.496123px;}
.ha{height:70.346938px;}
.h4{height:83.395190px;}
.h3{height:84.416166px;}
.hd{height:109.096065px;}
.hc{height:109.096069px;}
.hf{height:109.096339px;}
.he{height:148.696011px;}
.h10{height:148.696285px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:89.819996px;}
.x18{left:97.560001px;}
.x31{left:99.000000px;}
.x1c{left:100.980002px;}
.x3a{left:103.319996px;}
.x2a{left:106.560001px;}
.x29{left:109.620002px;}
.x17{left:126.719999px;}
.x1{left:140.939999px;}
.x2d{left:143.099997px;}
.x14{left:148.139992px;}
.x8{left:149.759994px;}
.x38{left:151.740006px;}
.x30{left:160.919992px;}
.x12{left:174.240006px;}
.x7{left:181.800007px;}
.x40{left:183.599997px;}
.x6{left:190.620002px;}
.x3c{left:192.240006px;}
.x28{left:199.979994px;}
.x39{left:205.560001px;}
.x25{left:224.639992px;}
.x35{left:246.960005px;}
.x21{left:252.180005px;}
.x1f{left:255.780001px;}
.x9{left:258.479994px;}
.x1b{left:261.900003px;}
.x3f{left:264.240006px;}
.x1d{left:268.919992px;}
.x3{left:275.939999px;}
.x5{left:277.379998px;}
.x22{left:278.639992px;}
.x36{left:281.159998px;}
.x3b{left:286.379998px;}
.x26{left:288.540012px;}
.x2{left:289.980011px;}
.x33{left:291.959988px;}
.x20{left:295.379998px;}
.x13{left:302.399987px;}
.x1a{left:304.199993px;}
.x3d{left:305.819996px;}
.xe{left:308.339985px;}
.x32{left:312.300007px;}
.x24{left:316.439999px;}
.x37{left:317.879998px;}
.xa{left:320.220017px;}
.x41{left:324.720017px;}
.x4{left:331.560001px;}
.x42{left:336.060001px;}
.x11{left:338.759994px;}
.xb{left:365.040012px;}
.x27{left:368.100014px;}
.x15{left:380.339985px;}
.x34{left:386.100014px;}
.x2e{left:399.600014px;}
.x3e{left:406.800007px;}
.xd{left:411.120002px;}
.xc{left:419.579990px;}
.x23{left:461.519989px;}
.x1e{left:477.000000px;}
.x2b{left:487.079990px;}
.xf{left:532.800007px;}
.x16{left:619.200027px;}
.x2c{left:629.639992px;}
.x19{left:638.460023px;}
.x2f{left:643.320030px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:10.880372pt;}
.v2{vertical-align:27.520020pt;}
.v3{vertical-align:35.199952pt;}
.v4{vertical-align:70.399900pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.083823pt;}
.ls2{letter-spacing:2.559132pt;}
.ls3{letter-spacing:4.479296pt;}
.ws3{word-spacing:-70.402800pt;}
.ws2{word-spacing:-21.204623pt;}
.ws0{word-spacing:-21.120800pt;}
.ws6{word-spacing:-17.600700pt;}
.ws1{word-spacing:-12.320500pt;}
.ws4{word-spacing:0.000000pt;}
.ws5{word-spacing:159.884759pt;}
.ws9{word-spacing:245.463331pt;}
.wsa{word-spacing:277.055972pt;}
.ws8{word-spacing:312.375418pt;}
.ws7{word-spacing:363.329707pt;}
._24{margin-left:-12.923949pt;}
._25{margin-left:-11.555304pt;}
._17{margin-left:-10.239710pt;}
._5{margin-left:-9.239360pt;}
._6{margin-left:-8.070538pt;}
._2{margin-left:-6.929025pt;}
._12{margin-left:-6.010518pt;}
._4{margin-left:-5.068992pt;}
._22{margin-left:-4.170285pt;}
._11{margin-left:-3.263741pt;}
._3{margin-left:-1.985685pt;}
._10{margin-left:-1.059753pt;}
._0{width:0.946228pt;}
._13{width:1.910525pt;}
._b{width:2.872429pt;}
._7{width:4.055194pt;}
._a{width:5.237958pt;}
._15{width:6.222229pt;}
._d{width:7.856938pt;}
._c{width:9.039702pt;}
._e{width:10.169005pt;}
._f{width:11.194437pt;}
._14{width:12.556976pt;}
._9{width:14.193178pt;}
._8{width:15.206976pt;}
._16{width:16.664548pt;}
._1a{width:108.077302pt;}
._20{width:224.098794pt;}
._1f{width:239.611362pt;}
._21{width:243.269986pt;}
._1c{width:261.851916pt;}
._1e{width:266.329171pt;}
._1b{width:290.834671pt;}
._1d{width:311.376127pt;}
._18{width:339.976771pt;}
._19{width:357.915460pt;}
._23{width:535.472564pt;}
._1{width:1507.158290pt;}
._26{width:1661.595223pt;}
.fs3{font-size:49.282000pt;}
.fs1{font-size:56.322000pt;}
.fs0{font-size:63.362400pt;}
.fs4{font-size:70.402800pt;}
.fs2{font-size:84.483200pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:33.760010pt;}
.y1a{bottom:36.480103pt;}
.y7c{bottom:87.040039pt;}
.y55{bottom:87.680054pt;}
.y93{bottom:89.440064pt;}
.y67{bottom:91.040039pt;}
.y5f{bottom:95.200074pt;}
.y9e{bottom:95.520020pt;}
.ya6{bottom:106.400086pt;}
.y37{bottom:107.840088pt;}
.y18{bottom:108.320069pt;}
.y84{bottom:110.720032pt;}
.y66{bottom:116.320069pt;}
.y5e{bottom:120.640076pt;}
.y9d{bottom:120.960083pt;}
.ya5{bottom:131.840088pt;}
.y36{bottom:133.280030pt;}
.y17{bottom:133.600037pt;}
.y41{bottom:137.440064pt;}
.y54{bottom:138.400086pt;}
.y65{bottom:141.760071pt;}
.y6e{bottom:157.120057pt;}
.y35{bottom:158.560059pt;}
.y40{bottom:158.720032pt;}
.y16{bottom:159.040039pt;}
.y64{bottom:167.040039pt;}
.y5d{bottom:171.360047pt;}
.y9c{bottom:171.680054pt;}
.y6d{bottom:178.240052pt;}
.ya4{bottom:182.560059pt;}
.y34{bottom:184.000061pt;}
.y15{bottom:184.320069pt;}
.y53{bottom:189.120057pt;}
.y63{bottom:192.480042pt;}
.y9b{bottom:196.960083pt;}
.y59{bottom:205.120057pt;}
.ya3{bottom:207.840088pt;}
.y33{bottom:209.280030pt;}
.y7b{bottom:209.760071pt;}
.y62{bottom:217.760071pt;}
.y52{bottom:219.360047pt;}
.y5c{bottom:222.080079pt;}
.y9a{bottom:222.400086pt;}
.ya2{bottom:233.280030pt;}
.y32{bottom:234.720032pt;}
.y7a{bottom:235.040039pt;}
.y51{bottom:236.960083pt;}
.y5b{bottom:243.200074pt;}
.y99{bottom:247.680054pt;}
.y31{bottom:260.000061pt;}
.y14{bottom:260.480042pt;}
.y50{bottom:272.160035pt;}
.y69{bottom:272.800049pt;}
.y98{bottom:273.120057pt;}
.y4c{bottom:277.600037pt;}
.ya1{bottom:284.000061pt;}
.y30{bottom:285.440064pt;}
.y79{bottom:285.760071pt;}
.y4f{bottom:289.760071pt;}
.y61{bottom:293.920044pt;}
.y97{bottom:298.400086pt;}
.ya0{bottom:309.280030pt;}
.y2f{bottom:310.720032pt;}
.y80{bottom:310.880066pt;}
.y13{bottom:311.200074pt;}
.y4e{bottom:321.440064pt;}
.y4d{bottom:330.240052pt;}
.y8f{bottom:334.720032pt;}
.y2e{bottom:336.160035pt;}
.y12{bottom:336.480042pt;}
.y96{bottom:349.120057pt;}
.y8e{bottom:360.000061pt;}
.y2d{bottom:361.440064pt;}
.y7f{bottom:361.600037pt;}
.y11{bottom:361.920044pt;}
.y4b{bottom:367.680054pt;}
.y95{bottom:370.400086pt;}
.y4a{bottom:385.280030pt;}
.y8d{bottom:385.440064pt;}
.y2c{bottom:386.880066pt;}
.y78{bottom:387.200074pt;}
.y48{bottom:402.880066pt;}
.y46{bottom:403.040039pt;}
.y8c{bottom:410.720032pt;}
.y2b{bottom:412.160035pt;}
.y7e{bottom:412.320069pt;}
.y10{bottom:412.640076pt;}
.y49{bottom:412.960083pt;}
.y8b{bottom:436.160035pt;}
.y2a{bottom:437.600037pt;}
.yf{bottom:437.920044pt;}
.y47{bottom:439.360047pt;}
.y8a{bottom:461.440064pt;}
.y29{bottom:462.880066pt;}
.y7d{bottom:463.040039pt;}
.ye{bottom:463.360047pt;}
.y45{bottom:465.920044pt;}
.y28{bottom:488.320069pt;}
.yd{bottom:488.640076pt;}
.y83{bottom:491.040039pt;}
.y44{bottom:492.480042pt;}
.y89{bottom:512.160035pt;}
.y9f{bottom:513.760071pt;}
.yc{bottom:514.080079pt;}
.y6c{bottom:516.480042pt;}
.y3f{bottom:517.920044pt;}
.y82{bottom:537.600037pt;}
.y27{bottom:539.040039pt;}
.y77{bottom:539.360047pt;}
.y58{bottom:543.360047pt;}
.y88{bottom:562.880066pt;}
.y43{bottom:564.320069pt;}
.y3e{bottom:564.480042pt;}
.y76{bottom:564.800049pt;}
.y60{bottom:568.640076pt;}
.y92{bottom:575.520081pt;}
.y87{bottom:588.320069pt;}
.y57{bottom:589.760071pt;}
.y75{bottom:590.080079pt;}
.y6b{bottom:600.960083pt;}
.y86{bottom:613.600068pt;}
.y26{bottom:615.040070pt;}
.y56{bottom:615.200074pt;}
.y74{bottom:615.520050pt;}
.y91{bottom:617.920044pt;}
.y6a{bottom:622.080048pt;}
.y25{bottom:640.480072pt;}
.yb{bottom:640.800049pt;}
.y90{bottom:643.200074pt;}
.y85{bottom:664.320069pt;}
.y24{bottom:665.760071pt;}
.y3d{bottom:665.920044pt;}
.ya{bottom:666.240052pt;}
.y23{bottom:691.200074pt;}
.y73{bottom:691.520050pt;}
.y68{bottom:695.520050pt;}
.y22{bottom:716.480072pt;}
.y3c{bottom:716.640046pt;}
.y9{bottom:716.960053pt;}
.y21{bottom:741.920044pt;}
.y72{bottom:742.240052pt;}
.y94{bottom:750.720063pt;}
.y20{bottom:767.360047pt;}
.y8{bottom:767.680054pt;}
.y5a{bottom:771.520050pt;}
.y1f{bottom:792.640046pt;}
.y71{bottom:792.960053pt;}
.y42{bottom:818.080048pt;}
.y7{bottom:818.400055pt;}
.y1e{bottom:843.360047pt;}
.y6{bottom:843.680054pt;}
.y3b{bottom:868.800064pt;}
.y70{bottom:869.120057pt;}
.y3a{bottom:894.080063pt;}
.y6f{bottom:894.400055pt;}
.y1d{bottom:919.520066pt;}
.y5{bottom:919.840058pt;}
.y39{bottom:944.800064pt;}
.y4{bottom:945.120057pt;}
.y38{bottom:970.240052pt;}
.y3{bottom:970.560059pt;}
.y1c{bottom:995.520058pt;}
.y19{bottom:1002.880059pt;}
.y1b{bottom:1020.960061pt;}
.y2{bottom:1021.280060pt;}
.y81{bottom:1023.680062pt;}
.h7{height:49.158205pt;}
.h9{height:49.419255pt;}
.h8{height:51.141625pt;}
.h6{height:57.257169pt;}
.h5{height:58.659722pt;}
.h2{height:60.299627pt;}
.hb{height:61.774332pt;}
.ha{height:62.530612pt;}
.h4{height:74.129058pt;}
.h3{height:75.036592pt;}
.hd{height:96.974280pt;}
.hc{height:96.974284pt;}
.hf{height:96.974524pt;}
.he{height:132.174232pt;}
.h10{height:132.174476pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:79.839996pt;}
.x18{left:86.720001pt;}
.x31{left:88.000000pt;}
.x1c{left:89.760002pt;}
.x3a{left:91.839996pt;}
.x2a{left:94.720001pt;}
.x29{left:97.440002pt;}
.x17{left:112.639999pt;}
.x1{left:125.279999pt;}
.x2d{left:127.199997pt;}
.x14{left:131.679993pt;}
.x8{left:133.119995pt;}
.x38{left:134.880005pt;}
.x30{left:143.039993pt;}
.x12{left:154.880005pt;}
.x7{left:161.600006pt;}
.x40{left:163.199997pt;}
.x6{left:169.440002pt;}
.x3c{left:170.880005pt;}
.x28{left:177.759995pt;}
.x39{left:182.720001pt;}
.x25{left:199.679993pt;}
.x35{left:219.520004pt;}
.x21{left:224.160004pt;}
.x1f{left:227.360001pt;}
.x9{left:229.759995pt;}
.x1b{left:232.800003pt;}
.x3f{left:234.880005pt;}
.x1d{left:239.039993pt;}
.x3{left:245.279999pt;}
.x5{left:246.559998pt;}
.x22{left:247.679993pt;}
.x36{left:249.919998pt;}
.x3b{left:254.559998pt;}
.x26{left:256.480011pt;}
.x2{left:257.760010pt;}
.x33{left:259.519989pt;}
.x20{left:262.559998pt;}
.x13{left:268.799988pt;}
.x1a{left:270.399994pt;}
.x3d{left:271.839996pt;}
.xe{left:274.079987pt;}
.x32{left:277.600006pt;}
.x24{left:281.279999pt;}
.x37{left:282.559998pt;}
.xa{left:284.640015pt;}
.x41{left:288.640015pt;}
.x4{left:294.720001pt;}
.x42{left:298.720001pt;}
.x11{left:301.119995pt;}
.xb{left:324.480011pt;}
.x27{left:327.200012pt;}
.x15{left:338.079987pt;}
.x34{left:343.200012pt;}
.x2e{left:355.200012pt;}
.x3e{left:361.600006pt;}
.xd{left:365.440002pt;}
.xc{left:372.959991pt;}
.x23{left:410.239990pt;}
.x1e{left:424.000000pt;}
.x2b{left:432.959991pt;}
.xf{left:473.600006pt;}
.x16{left:550.400024pt;}
.x2c{left:559.679993pt;}
.x19{left:567.520020pt;}
.x2f{left:571.840027pt;}
}




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