
    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_2c0ca234cd0c8568bb422496.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.933105;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_fe4ccfa3956bf7aabb76494b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.933105;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_a716e216514f9af1151aee61.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.978027;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_de6ef8b161f6db8a413c1847.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.978027;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_950314b40086dfcd87675054.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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_c69dabec03987383101c72f9.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_385d41c2a1bdab4bcbae7241.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_3be2c0fda3b64586ab1e9fe5.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_443f3f33a605bbc8ee2c8cbc.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.942383;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:ffb;src:url('chunks/assets/font_b5125ebdf3b8ddeebe8a2d0a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.942383;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:ffc;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffc{font-family:ffc;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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls11{letter-spacing:-0.720000px;}
.ls13{letter-spacing:-0.305400px;}
.ls6{letter-spacing:-0.288000px;}
.ls14{letter-spacing:-0.262200px;}
.ls5{letter-spacing:-0.223800px;}
.lsf{letter-spacing:-0.109200px;}
.ls9{letter-spacing:-0.053280px;}
.ls7{letter-spacing:-0.034560px;}
.ls8{letter-spacing:-0.017280px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.017280px;}
.lsa{letter-spacing:0.106800px;}
.ls12{letter-spacing:0.109200px;}
.lsd{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.259800px;}
.ls10{letter-spacing:0.305280px;}
.ls1{letter-spacing:0.360000px;}
.lsc{letter-spacing:16.560000px;}
.ls3{letter-spacing:106.740000px;}
.lse{letter-spacing:199.416000px;}
.ls0{letter-spacing:1339.680000px;}
.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;}
}
.wsa{word-spacing:-16.669200px;}
.ws7{word-spacing:-16.560000px;}
.ws9{word-spacing:-16.450800px;}
.wsc{word-spacing:-16.297800px;}
.wsb{word-spacing:-16.254600px;}
.ws3{word-spacing:-15.300000px;}
.ws6{word-spacing:-15.046800px;}
.ws0{word-spacing:-14.970240px;}
.ws2{word-spacing:-14.940000px;}
.ws1{word-spacing:-12.060000px;}
.ws4{word-spacing:-10.440000px;}
.ws5{word-spacing:-9.720000px;}
.ws8{word-spacing:0.000000px;}
._f{margin-left:-12.960000px;}
._5{margin-left:-6.132240px;}
._1{margin-left:-5.016960px;}
._2{margin-left:-3.999600px;}
._4{margin-left:-2.715840px;}
._0{margin-left:-1.258560px;}
._3{width:1.374480px;}
._b{width:2.465520px;}
._a{width:3.637680px;}
._8{width:5.258880px;}
._7{width:6.573600px;}
._6{width:7.649280px;}
._e{width:8.665200px;}
._c{width:10.637280px;}
._d{width:11.653200px;}
._11{width:13.115520px;}
._10{width:14.440320px;}
._19{width:15.556080px;}
._12{width:18.083520px;}
._16{width:19.540800px;}
._18{width:20.666880px;}
._1e{width:22.521600px;}
._1d{width:24.376320px;}
._14{width:25.966080px;}
._13{width:27.158400px;}
._1f{width:29.211840px;}
._15{width:32.126400px;}
._17{width:33.260160px;}
._9{width:35.318160px;}
._1b{width:37.211520px;}
._1a{width:38.816640px;}
._1c{width:39.993120px;}
._21{width:971.144640px;}
._20{width:973.728000px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:30.240000px;}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:4.500000px;}
.y4{bottom:69.516000px;}
.y6d{bottom:123.696000px;}
.y75{bottom:125.496000px;}
.y73{bottom:128.196000px;}
.y3d{bottom:131.796000px;}
.y6c{bottom:138.276000px;}
.y72{bottom:140.796000px;}
.y6b{bottom:142.776000px;}
.y74{bottom:147.276000px;}
.y3c{bottom:153.570000px;}
.y6a{bottom:155.730000px;}
.y71{bottom:169.230000px;}
.y3b{bottom:175.530000px;}
.y70{bottom:191.010000px;}
.y3a{bottom:197.310000px;}
.y6f{bottom:212.790000px;}
.y39{bottom:219.090000px;}
.y69{bottom:234.570000px;}
.y38{bottom:240.870000px;}
.y68{bottom:256.350000px;}
.y37{bottom:262.650000px;}
.y67{bottom:278.310000px;}
.y36{bottom:284.610000px;}
.y66{bottom:300.090000px;}
.y35{bottom:306.390000px;}
.y65{bottom:321.870000px;}
.y34{bottom:328.170000px;}
.y64{bottom:343.695000px;}
.y33{bottom:349.995000px;}
.y63{bottom:365.655000px;}
.y32{bottom:369.975000px;}
.y31{bottom:385.995000px;}
.y62{bottom:387.435000px;}
.y30{bottom:400.575000px;}
.y61{bottom:409.215000px;}
.y2f{bottom:417.675000px;}
.y60{bottom:430.995000px;}
.y2e{bottom:434.955000px;}
.y2d{bottom:452.235000px;}
.y5f{bottom:452.775000px;}
.y2c{bottom:469.515000px;}
.y5e{bottom:474.735000px;}
.y2b{bottom:486.795000px;}
.y5d{bottom:496.515000px;}
.y6e{bottom:502.455000px;}
.y2a{bottom:504.075000px;}
.y5c{bottom:518.295000px;}
.y29{bottom:521.175000px;}
.y28{bottom:538.455000px;}
.y5b{bottom:540.075000px;}
.y27{bottom:555.735000px;}
.y5a{bottom:561.855000px;}
.y26{bottom:573.015000px;}
.y59{bottom:583.815000px;}
.y25{bottom:590.295000px;}
.y58{bottom:605.625000px;}
.y24{bottom:607.605000px;}
.y23{bottom:624.705000px;}
.y57{bottom:627.405000px;}
.y22{bottom:641.985000px;}
.y56{bottom:649.185000px;}
.y21{bottom:659.265000px;}
.y55{bottom:671.145000px;}
.y20{bottom:676.545000px;}
.y54{bottom:692.925000px;}
.y1f{bottom:693.825000px;}
.y1e{bottom:710.925000px;}
.y53{bottom:714.705000px;}
.y1d{bottom:728.205000px;}
.y52{bottom:736.485000px;}
.y1c{bottom:745.485000px;}
.y51{bottom:758.265000px;}
.y1b{bottom:762.765000px;}
.y1a{bottom:780.045000px;}
.y50{bottom:780.225000px;}
.y19{bottom:797.325000px;}
.y4f{bottom:802.005000px;}
.y18{bottom:814.425000px;}
.y4e{bottom:823.785000px;}
.y17{bottom:831.705000px;}
.y4d{bottom:845.565000px;}
.y16{bottom:848.985000px;}
.y15{bottom:866.265000px;}
.y4c{bottom:867.525000px;}
.y14{bottom:883.950000px;}
.y4b{bottom:889.350000px;}
.y13{bottom:902.490000px;}
.y4a{bottom:911.130000px;}
.y12{bottom:924.990000px;}
.y49{bottom:932.910000px;}
.y11{bottom:937.410000px;}
.y48{bottom:954.690000px;}
.y10{bottom:955.230000px;}
.yf{bottom:970.170000px;}
.y47{bottom:976.650000px;}
.ye{bottom:989.250000px;}
.y46{bottom:998.430000px;}
.yd{bottom:1007.070000px;}
.y44{bottom:1020.210000px;}
.yc{bottom:1022.370000px;}
.y45{bottom:1026.150000px;}
.y43{bottom:1041.990000px;}
.yb{bottom:1044.870000px;}
.y42{bottom:1063.950000px;}
.ya{bottom:1066.290000px;}
.y9{bottom:1083.570000px;}
.y41{bottom:1085.730000px;}
.y8{bottom:1100.850000px;}
.y40{bottom:1107.510000px;}
.y7{bottom:1118.130000px;}
.y3f{bottom:1129.290000px;}
.y6{bottom:1135.410000px;}
.y3e{bottom:1151.100000px;}
.y5{bottom:1152.720000px;}
.y3{bottom:1173.060000px;}
.y1{bottom:1188.720000px;}
.h2{height:20.160000px;}
.h12{height:21.114844px;}
.hb{height:27.147656px;}
.h11{height:29.158594px;}
.h13{height:33.683203px;}
.h8{height:34.036523px;}
.hf{height:34.837383px;}
.h5{height:36.768867px;}
.hc{height:41.726953px;}
.h6{height:42.164648px;}
.he{height:45.549492px;}
.hd{height:46.251562px;}
.h10{height:46.736719px;}
.h14{height:48.224531px;}
.h3{height:50.068125px;}
.h9{height:50.488594px;}
.ha{height:53.224453px;}
.h7{height:54.864844px;}
.h4{height:65.884219px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:61.200000px;}
.w3{width:619.485000px;}
.w5{width:892.979973px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x1{left:108.036000px;}
.x12{left:111.815987px;}
.x7{left:118.475987px;}
.x16{left:129.275987px;}
.x18{left:132.875987px;}
.x17{left:140.075987px;}
.xe{left:161.129987px;}
.x3{left:169.230000px;}
.x4{left:170.849987px;}
.x15{left:173.369987px;}
.x5{left:283.574987px;}
.xa{left:304.994987px;}
.x11{left:324.074987px;}
.xb{left:347.114987px;}
.x9{left:371.054987px;}
.x8{left:387.254987px;}
.xd{left:418.574987px;}
.xc{left:420.374987px;}
.x6{left:446.474987px;}
.xf{left:520.844973px;}
.x10{left:526.064987px;}
.x13{left:544.964973px;}
.x14{left:550.184987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls11{letter-spacing:-0.640000pt;}
.ls13{letter-spacing:-0.271467pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls14{letter-spacing:-0.233067pt;}
.ls5{letter-spacing:-0.198933pt;}
.lsf{letter-spacing:-0.097067pt;}
.ls9{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:-0.030720pt;}
.ls8{letter-spacing:-0.015360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.015360pt;}
.lsa{letter-spacing:0.094933pt;}
.ls12{letter-spacing:0.097067pt;}
.lsd{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.230933pt;}
.ls10{letter-spacing:0.271360pt;}
.ls1{letter-spacing:0.320000pt;}
.lsc{letter-spacing:14.720000pt;}
.ls3{letter-spacing:94.880000pt;}
.lse{letter-spacing:177.258667pt;}
.ls0{letter-spacing:1190.826667pt;}
.wsa{word-spacing:-14.817067pt;}
.ws7{word-spacing:-14.720000pt;}
.ws9{word-spacing:-14.622933pt;}
.wsc{word-spacing:-14.486933pt;}
.wsb{word-spacing:-14.448533pt;}
.ws3{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.374933pt;}
.ws0{word-spacing:-13.306880pt;}
.ws2{word-spacing:-13.280000pt;}
.ws1{word-spacing:-10.720000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws5{word-spacing:-8.640000pt;}
.ws8{word-spacing:0.000000pt;}
._f{margin-left:-11.520000pt;}
._5{margin-left:-5.450880pt;}
._1{margin-left:-4.459520pt;}
._2{margin-left:-3.555200pt;}
._4{margin-left:-2.414080pt;}
._0{margin-left:-1.118720pt;}
._3{width:1.221760pt;}
._b{width:2.191573pt;}
._a{width:3.233493pt;}
._8{width:4.674560pt;}
._7{width:5.843200pt;}
._6{width:6.799360pt;}
._e{width:7.702400pt;}
._c{width:9.455360pt;}
._d{width:10.358400pt;}
._11{width:11.658240pt;}
._10{width:12.835840pt;}
._19{width:13.827627pt;}
._12{width:16.074240pt;}
._16{width:17.369600pt;}
._18{width:18.370560pt;}
._1e{width:20.019200pt;}
._1d{width:21.667840pt;}
._14{width:23.080960pt;}
._13{width:24.140800pt;}
._1f{width:25.966080pt;}
._15{width:28.556800pt;}
._17{width:29.564587pt;}
._9{width:31.393920pt;}
._1b{width:33.076907pt;}
._1a{width:34.503680pt;}
._1c{width:35.549440pt;}
._21{width:863.239680pt;}
._20{width:865.536000pt;}
.fs6{font-size:26.880000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:4.000000pt;}
.y4{bottom:61.792000pt;}
.y6d{bottom:109.952000pt;}
.y75{bottom:111.552000pt;}
.y73{bottom:113.952000pt;}
.y3d{bottom:117.152000pt;}
.y6c{bottom:122.912000pt;}
.y72{bottom:125.152000pt;}
.y6b{bottom:126.912000pt;}
.y74{bottom:130.912000pt;}
.y3c{bottom:136.506667pt;}
.y6a{bottom:138.426667pt;}
.y71{bottom:150.426667pt;}
.y3b{bottom:156.026667pt;}
.y70{bottom:169.786667pt;}
.y3a{bottom:175.386667pt;}
.y6f{bottom:189.146667pt;}
.y39{bottom:194.746667pt;}
.y69{bottom:208.506667pt;}
.y38{bottom:214.106667pt;}
.y68{bottom:227.866667pt;}
.y37{bottom:233.466667pt;}
.y67{bottom:247.386667pt;}
.y36{bottom:252.986667pt;}
.y66{bottom:266.746667pt;}
.y35{bottom:272.346667pt;}
.y65{bottom:286.106667pt;}
.y34{bottom:291.706667pt;}
.y64{bottom:305.506667pt;}
.y33{bottom:311.106667pt;}
.y63{bottom:325.026667pt;}
.y32{bottom:328.866667pt;}
.y31{bottom:343.106667pt;}
.y62{bottom:344.386667pt;}
.y30{bottom:356.066667pt;}
.y61{bottom:363.746667pt;}
.y2f{bottom:371.266667pt;}
.y60{bottom:383.106667pt;}
.y2e{bottom:386.626667pt;}
.y2d{bottom:401.986667pt;}
.y5f{bottom:402.466667pt;}
.y2c{bottom:417.346667pt;}
.y5e{bottom:421.986667pt;}
.y2b{bottom:432.706667pt;}
.y5d{bottom:441.346667pt;}
.y6e{bottom:446.626667pt;}
.y2a{bottom:448.066667pt;}
.y5c{bottom:460.706667pt;}
.y29{bottom:463.266667pt;}
.y28{bottom:478.626667pt;}
.y5b{bottom:480.066667pt;}
.y27{bottom:493.986667pt;}
.y5a{bottom:499.426667pt;}
.y26{bottom:509.346667pt;}
.y59{bottom:518.946667pt;}
.y25{bottom:524.706667pt;}
.y58{bottom:538.333333pt;}
.y24{bottom:540.093333pt;}
.y23{bottom:555.293333pt;}
.y57{bottom:557.693333pt;}
.y22{bottom:570.653333pt;}
.y56{bottom:577.053333pt;}
.y21{bottom:586.013333pt;}
.y55{bottom:596.573333pt;}
.y20{bottom:601.373333pt;}
.y54{bottom:615.933333pt;}
.y1f{bottom:616.733333pt;}
.y1e{bottom:631.933333pt;}
.y53{bottom:635.293333pt;}
.y1d{bottom:647.293333pt;}
.y52{bottom:654.653333pt;}
.y1c{bottom:662.653333pt;}
.y51{bottom:674.013333pt;}
.y1b{bottom:678.013333pt;}
.y1a{bottom:693.373333pt;}
.y50{bottom:693.533333pt;}
.y19{bottom:708.733333pt;}
.y4f{bottom:712.893333pt;}
.y18{bottom:723.933333pt;}
.y4e{bottom:732.253333pt;}
.y17{bottom:739.293333pt;}
.y4d{bottom:751.613333pt;}
.y16{bottom:754.653333pt;}
.y15{bottom:770.013333pt;}
.y4c{bottom:771.133333pt;}
.y14{bottom:785.733333pt;}
.y4b{bottom:790.533333pt;}
.y13{bottom:802.213333pt;}
.y4a{bottom:809.893333pt;}
.y12{bottom:822.213333pt;}
.y49{bottom:829.253333pt;}
.y11{bottom:833.253333pt;}
.y48{bottom:848.613333pt;}
.y10{bottom:849.093333pt;}
.yf{bottom:862.373333pt;}
.y47{bottom:868.133333pt;}
.ye{bottom:879.333333pt;}
.y46{bottom:887.493333pt;}
.yd{bottom:895.173333pt;}
.y44{bottom:906.853333pt;}
.yc{bottom:908.773333pt;}
.y45{bottom:912.133333pt;}
.y43{bottom:926.213333pt;}
.yb{bottom:928.773333pt;}
.y42{bottom:945.733333pt;}
.ya{bottom:947.813333pt;}
.y9{bottom:963.173333pt;}
.y41{bottom:965.093333pt;}
.y8{bottom:978.533333pt;}
.y40{bottom:984.453333pt;}
.y7{bottom:993.893333pt;}
.y3f{bottom:1003.813333pt;}
.y6{bottom:1009.253333pt;}
.y3e{bottom:1023.200000pt;}
.y5{bottom:1024.640000pt;}
.y3{bottom:1042.720000pt;}
.y1{bottom:1056.640000pt;}
.h2{height:17.920000pt;}
.h12{height:18.768750pt;}
.hb{height:24.131250pt;}
.h11{height:25.918750pt;}
.h13{height:29.940625pt;}
.h8{height:30.254687pt;}
.hf{height:30.966562pt;}
.h5{height:32.683437pt;}
.hc{height:37.090625pt;}
.h6{height:37.479688pt;}
.he{height:40.488438pt;}
.hd{height:41.112500pt;}
.h10{height:41.543750pt;}
.h14{height:42.866250pt;}
.h3{height:44.505000pt;}
.h9{height:44.878750pt;}
.ha{height:47.310625pt;}
.h7{height:48.768750pt;}
.h4{height:58.563750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:54.400000pt;}
.w3{width:550.653333pt;}
.w5{width:793.759976pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x1{left:96.032000pt;}
.x12{left:99.391988pt;}
.x7{left:105.311988pt;}
.x16{left:114.911988pt;}
.x18{left:118.111988pt;}
.x17{left:124.511988pt;}
.xe{left:143.226655pt;}
.x3{left:150.426667pt;}
.x4{left:151.866655pt;}
.x15{left:154.106655pt;}
.x5{left:252.066655pt;}
.xa{left:271.106655pt;}
.x11{left:288.066655pt;}
.xb{left:308.546655pt;}
.x9{left:329.826655pt;}
.x8{left:344.226655pt;}
.xd{left:372.066655pt;}
.xc{left:373.666655pt;}
.x6{left:396.866655pt;}
.xf{left:462.973310pt;}
.x10{left:467.613322pt;}
.x13{left:484.413310pt;}
.x14{left:489.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; }
  