
    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_d301d174ad37fed9e2788725.woff')format("woff");}.ff1{font-family:ff1;line-height:1.091797;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_c670a318b9946b41ad399124.woff')format("woff");}.ff2{font-family:ff2;line-height:1.091797;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_3ab1fb5d143468c81086476a.woff')format("woff");}.ff3{font-family:ff3;line-height:0.998047;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_8894313707574fb320c9cac9.woff')format("woff");}.ff4{font-family:ff4;line-height:0.998047;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_6af533aa1f43afff364a5d50.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_4f5150d3e017c96e5c9b64c4.woff')format("woff");}.ff6{font-family:ff6;line-height:0.774902;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_ca5580f6ac3e06e3938e70a6.woff')format("woff");}.ff7{font-family:ff7;line-height:0.962402;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_210e350c8a8819674dd96255.woff')format("woff");}.ff8{font-family:ff8;line-height:0.962402;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_963f1771b9a117e2a78b5cd9.woff')format("woff");}.ff9{font-family:ff9;line-height:0.941406;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_5becb1f49cb25d7d10480193.woff')format("woff");}.ffa{font-family:ffa;line-height:0.941406;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_f02b1f98f22c4ad6725ca31b.woff')format("woff");}.ffb{font-family:ffb;line-height:0.948242;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_3070aa25e6aabe25572de802.woff')format("woff");}.ffc{font-family:ffc;line-height:1.087891;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:ffd;src:url('chunks/assets/font_76153fe7da79461eaa743585.woff')format("woff");}.ffd{font-family:ffd;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;}
.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:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls1{letter-spacing:-0.288000px;}
.ls3{letter-spacing:-0.126000px;}
.lsa{letter-spacing:-0.106800px;}
.lsb{letter-spacing:-0.053280px;}
.ls2{letter-spacing:-0.037440px;}
.ls4{letter-spacing:-0.017280px;}
.ls0{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.259800px;}
.ls6{letter-spacing:0.288000px;}
.ls7{letter-spacing:0.305280px;}
.lse{letter-spacing:0.432000px;}
.lsd{letter-spacing:0.612000px;}
.ls9{letter-spacing:0.666000px;}
.ls8{letter-spacing:0.666720px;}
.ls5{letter-spacing:28.200000px;}
.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;}
}
.wsc{word-spacing:-72.000000px;}
.ws2{word-spacing:-23.128560px;}
.ws7{word-spacing:-20.304000px;}
.ws8{word-spacing:-20.016000px;}
.wsb{word-spacing:-17.225280px;}
.wsa{word-spacing:-16.873080px;}
.ws3{word-spacing:-16.613280px;}
.ws9{word-spacing:-16.506480px;}
.wsd{word-spacing:-15.048000px;}
.ws1{word-spacing:-14.616000px;}
.ws0{word-spacing:-14.328000px;}
.ws4{word-spacing:-13.410720px;}
.ws5{word-spacing:-10.808640px;}
.ws6{word-spacing:0.000000px;}
._4{margin-left:-9.910080px;}
._6{margin-left:-8.560800px;}
._7{margin-left:-6.895440px;}
._5{margin-left:-5.279760px;}
._3{margin-left:-3.852000px;}
._0{margin-left:-2.664000px;}
._1{margin-left:-1.368000px;}
._2{width:1.104000px;}
._9{width:2.569680px;}
._8{width:3.585600px;}
._e{width:5.019840px;}
._a{width:6.035760px;}
._14{width:7.240320px;}
._1b{width:8.416800px;}
._16{width:9.690480px;}
._15{width:11.191920px;}
._f{width:12.489840px;}
._1c{width:13.924080px;}
._10{width:15.119280px;}
._24{width:16.131600px;}
._17{width:17.808480px;}
._18{width:18.824400px;}
._13{width:20.016240px;}
._b{width:21.513600px;}
._c{width:22.707840px;}
._19{width:23.849280px;}
._11{width:24.860160px;}
._12{width:26.712960px;}
._1a{width:29.481120px;}
._d{width:30.903840px;}
._1e{width:107.504640px;}
._1f{width:109.246800px;}
._1d{width:110.936640px;}
._23{width:174.650160px;}
._22{width:176.232240px;}
._21{width:224.385840px;}
._20{width:225.729840px;}
.fc4{color:rgb(70,120,134);}
.fc3{color:rgb(15,71,97);}
.fc2{color:transparent;}
.fc1{color:rgb(21,61,99);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs4{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yb{bottom:1.050000px;}
.y5e{bottom:138.096000px;}
.y2d{bottom:143.316000px;}
.y5d{bottom:155.370000px;}
.y5c{bottom:172.470000px;}
.y2c{bottom:181.470000px;}
.y5b{bottom:189.750000px;}
.y5a{bottom:207.030000px;}
.y2b{bottom:219.810000px;}
.y59{bottom:224.310000px;}
.y2a{bottom:237.090000px;}
.y58{bottom:241.590000px;}
.y57{bottom:258.870000px;}
.y29{bottom:275.250000px;}
.y56{bottom:275.970000px;}
.y28{bottom:292.530000px;}
.y55{bottom:293.250000px;}
.y27{bottom:309.810000px;}
.y54{bottom:310.530000px;}
.y26{bottom:327.090000px;}
.y53{bottom:327.810000px;}
.y25{bottom:344.370000px;}
.y24{bottom:361.695000px;}
.y52{bottom:366.555000px;}
.y23{bottom:378.795000px;}
.y51{bottom:386.715000px;}
.y22{bottom:396.075000px;}
.y50{bottom:403.995000px;}
.y21{bottom:413.355000px;}
.y4f{bottom:421.275000px;}
.y20{bottom:430.635000px;}
.y7c{bottom:435.855000px;}
.y4e{bottom:438.555000px;}
.y1f{bottom:447.915000px;}
.y7b{bottom:454.935000px;}
.y4d{bottom:455.835000px;}
.y1e{bottom:465.195000px;}
.y4c{bottom:473.115000px;}
.y7a{bottom:476.895000px;}
.y1d{bottom:482.295000px;}
.y79{bottom:498.855000px;}
.y1c{bottom:499.575000px;}
.y4b{bottom:511.815000px;}
.y1b{bottom:516.855000px;}
.y78{bottom:520.815000px;}
.y4a{bottom:531.975000px;}
.y77{bottom:542.775000px;}
.y49{bottom:549.255000px;}
.y1a{bottom:556.995000px;}
.y76{bottom:562.935000px;}
.y48{bottom:566.535000px;}
.y75{bottom:580.215000px;}
.y47{bottom:583.635000px;}
.y19{bottom:589.755000px;}
.y74{bottom:597.495000px;}
.y46{bottom:600.915000px;}
.y18{bottom:611.355000px;}
.y73{bottom:614.775000px;}
.y45{bottom:618.195000px;}
.y72{bottom:632.085000px;}
.y17{bottom:632.985000px;}
.y44{bottom:635.505000px;}
.y71{bottom:649.365000px;}
.y43{bottom:652.785000px;}
.y16{bottom:656.025000px;}
.y70{bottom:666.465000px;}
.y42{bottom:670.065000px;}
.y15{bottom:673.125000px;}
.y6f{bottom:683.745000px;}
.y41{bottom:687.165000px;}
.y14{bottom:696.345000px;}
.y6e{bottom:701.025000px;}
.y40{bottom:704.445000px;}
.y13{bottom:713.445000px;}
.y6d{bottom:718.305000px;}
.y3f{bottom:721.725000px;}
.y6c{bottom:735.585000px;}
.y12{bottom:736.485000px;}
.y3e{bottom:739.005000px;}
.y6b{bottom:752.865000px;}
.y11{bottom:753.585000px;}
.y3d{bottom:756.285000px;}
.y6a{bottom:769.965000px;}
.y3c{bottom:773.565000px;}
.y10{bottom:776.805000px;}
.y69{bottom:787.245000px;}
.y3b{bottom:790.665000px;}
.yf{bottom:800.565000px;}
.y68{bottom:804.525000px;}
.y3a{bottom:807.945000px;}
.ye{bottom:820.005000px;}
.y67{bottom:821.805000px;}
.y39{bottom:825.225000px;}
.y66{bottom:839.085000px;}
.yd{bottom:842.325000px;}
.y38{bottom:842.505000px;}
.y65{bottom:856.185000px;}
.y64{bottom:873.465000px;}
.y37{bottom:881.250000px;}
.y63{bottom:890.790000px;}
.y36{bottom:901.410000px;}
.y62{bottom:908.070000px;}
.y35{bottom:918.690000px;}
.yc{bottom:925.380000px;}
.y34{bottom:935.970000px;}
.y61{bottom:946.770000px;}
.y33{bottom:953.250000px;}
.ya{bottom:954.540000px;}
.y60{bottom:967.290000px;}
.y32{bottom:970.530000px;}
.y5f{bottom:986.190000px;}
.y31{bottom:987.630000px;}
.y30{bottom:1004.910000px;}
.y9{bottom:1010.130000px;}
.y2f{bottom:1022.190000px;}
.y8{bottom:1031.730000px;}
.y7{bottom:1057.290000px;}
.y2e{bottom:1061.070000px;}
.y6{bottom:1083.030000px;}
.y5{bottom:1104.990000px;}
.y4{bottom:1126.950000px;}
.y3{bottom:1148.940000px;}
.y2{bottom:1170.900000px;}
.y1{bottom:1192.860000px;}
.h5{height:19.440000px;}
.h9{height:28.419609px;}
.h8{height:36.274219px;}
.ha{height:43.681992px;}
.he{height:44.090508px;}
.hc{height:44.936719px;}
.hd{height:48.418594px;}
.hb{height:54.140625px;}
.h7{height:60.034219px;}
.h4{height:62.402344px;}
.h2{height:62.507812px;}
.h3{height:67.375547px;}
.h6{height:72.755156px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:561.600000px;}
.w4{width:565.020000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x9{left:-1.590000px;}
.x0{left:0.000000px;}
.x7{left:108.035987px;}
.x10{left:109.115987px;}
.xb{left:113.075987px;}
.xf{left:132.155987px;}
.x14{left:135.035987px;}
.x1{left:137.015987px;}
.x15{left:140.075987px;}
.x13{left:162.029987px;}
.xa{left:164.340000px;}
.x8{left:166.320000px;}
.x11{left:326.774987px;}
.xc{left:355.214987px;}
.x12{left:404.894987px;}
.xe{left:416.954987px;}
.xd{left:446.474987px;}
.x5{left:540.104987px;}
.x4{left:567.824987px;}
.x3{left:671.729987px;}
.x2{left:696.209987px;}
.x6{left:785.129987px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls1{letter-spacing:-0.256000pt;}
.ls3{letter-spacing:-0.112000pt;}
.lsa{letter-spacing:-0.094933pt;}
.lsb{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:-0.033280pt;}
.ls4{letter-spacing:-0.015360pt;}
.ls0{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.230933pt;}
.ls6{letter-spacing:0.256000pt;}
.ls7{letter-spacing:0.271360pt;}
.lse{letter-spacing:0.384000pt;}
.lsd{letter-spacing:0.544000pt;}
.ls9{letter-spacing:0.592000pt;}
.ls8{letter-spacing:0.592640pt;}
.ls5{letter-spacing:25.066667pt;}
.wsc{word-spacing:-64.000000pt;}
.ws2{word-spacing:-20.558720pt;}
.ws7{word-spacing:-18.048000pt;}
.ws8{word-spacing:-17.792000pt;}
.wsb{word-spacing:-15.311360pt;}
.wsa{word-spacing:-14.998293pt;}
.ws3{word-spacing:-14.767360pt;}
.ws9{word-spacing:-14.672427pt;}
.wsd{word-spacing:-13.376000pt;}
.ws1{word-spacing:-12.992000pt;}
.ws0{word-spacing:-12.736000pt;}
.ws4{word-spacing:-11.920640pt;}
.ws5{word-spacing:-9.607680pt;}
.ws6{word-spacing:0.000000pt;}
._4{margin-left:-8.808960pt;}
._6{margin-left:-7.609600pt;}
._7{margin-left:-6.129280pt;}
._5{margin-left:-4.693120pt;}
._3{margin-left:-3.424000pt;}
._0{margin-left:-2.368000pt;}
._1{margin-left:-1.216000pt;}
._2{width:0.981333pt;}
._9{width:2.284160pt;}
._8{width:3.187200pt;}
._e{width:4.462080pt;}
._a{width:5.365120pt;}
._14{width:6.435840pt;}
._1b{width:7.481600pt;}
._16{width:8.613760pt;}
._15{width:9.948373pt;}
._f{width:11.102080pt;}
._1c{width:12.376960pt;}
._10{width:13.439360pt;}
._24{width:14.339200pt;}
._17{width:15.829760pt;}
._18{width:16.732800pt;}
._13{width:17.792213pt;}
._b{width:19.123200pt;}
._c{width:20.184747pt;}
._19{width:21.199360pt;}
._11{width:22.097920pt;}
._12{width:23.744853pt;}
._1a{width:26.205440pt;}
._d{width:27.470080pt;}
._1e{width:95.559680pt;}
._1f{width:97.108267pt;}
._1d{width:98.610347pt;}
._23{width:155.244587pt;}
._22{width:156.650880pt;}
._21{width:199.454080pt;}
._20{width:200.648747pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:0.933333pt;}
.y5e{bottom:122.752000pt;}
.y2d{bottom:127.392000pt;}
.y5d{bottom:138.106667pt;}
.y5c{bottom:153.306667pt;}
.y2c{bottom:161.306667pt;}
.y5b{bottom:168.666667pt;}
.y5a{bottom:184.026667pt;}
.y2b{bottom:195.386667pt;}
.y59{bottom:199.386667pt;}
.y2a{bottom:210.746667pt;}
.y58{bottom:214.746667pt;}
.y57{bottom:230.106667pt;}
.y29{bottom:244.666667pt;}
.y56{bottom:245.306667pt;}
.y28{bottom:260.026667pt;}
.y55{bottom:260.666667pt;}
.y27{bottom:275.386667pt;}
.y54{bottom:276.026667pt;}
.y26{bottom:290.746667pt;}
.y53{bottom:291.386667pt;}
.y25{bottom:306.106667pt;}
.y24{bottom:321.506667pt;}
.y52{bottom:325.826667pt;}
.y23{bottom:336.706667pt;}
.y51{bottom:343.746667pt;}
.y22{bottom:352.066667pt;}
.y50{bottom:359.106667pt;}
.y21{bottom:367.426667pt;}
.y4f{bottom:374.466667pt;}
.y20{bottom:382.786667pt;}
.y7c{bottom:387.426667pt;}
.y4e{bottom:389.826667pt;}
.y1f{bottom:398.146667pt;}
.y7b{bottom:404.386667pt;}
.y4d{bottom:405.186667pt;}
.y1e{bottom:413.506667pt;}
.y4c{bottom:420.546667pt;}
.y7a{bottom:423.906667pt;}
.y1d{bottom:428.706667pt;}
.y79{bottom:443.426667pt;}
.y1c{bottom:444.066667pt;}
.y4b{bottom:454.946667pt;}
.y1b{bottom:459.426667pt;}
.y78{bottom:462.946667pt;}
.y4a{bottom:472.866667pt;}
.y77{bottom:482.466667pt;}
.y49{bottom:488.226667pt;}
.y1a{bottom:495.106667pt;}
.y76{bottom:500.386667pt;}
.y48{bottom:503.586667pt;}
.y75{bottom:515.746667pt;}
.y47{bottom:518.786667pt;}
.y19{bottom:524.226667pt;}
.y74{bottom:531.106667pt;}
.y46{bottom:534.146667pt;}
.y18{bottom:543.426667pt;}
.y73{bottom:546.466667pt;}
.y45{bottom:549.506667pt;}
.y72{bottom:561.853333pt;}
.y17{bottom:562.653333pt;}
.y44{bottom:564.893333pt;}
.y71{bottom:577.213333pt;}
.y43{bottom:580.253333pt;}
.y16{bottom:583.133333pt;}
.y70{bottom:592.413333pt;}
.y42{bottom:595.613333pt;}
.y15{bottom:598.333333pt;}
.y6f{bottom:607.773333pt;}
.y41{bottom:610.813333pt;}
.y14{bottom:618.973333pt;}
.y6e{bottom:623.133333pt;}
.y40{bottom:626.173333pt;}
.y13{bottom:634.173333pt;}
.y6d{bottom:638.493333pt;}
.y3f{bottom:641.533333pt;}
.y6c{bottom:653.853333pt;}
.y12{bottom:654.653333pt;}
.y3e{bottom:656.893333pt;}
.y6b{bottom:669.213333pt;}
.y11{bottom:669.853333pt;}
.y3d{bottom:672.253333pt;}
.y6a{bottom:684.413333pt;}
.y3c{bottom:687.613333pt;}
.y10{bottom:690.493333pt;}
.y69{bottom:699.773333pt;}
.y3b{bottom:702.813333pt;}
.yf{bottom:711.613333pt;}
.y68{bottom:715.133333pt;}
.y3a{bottom:718.173333pt;}
.ye{bottom:728.893333pt;}
.y67{bottom:730.493333pt;}
.y39{bottom:733.533333pt;}
.y66{bottom:745.853333pt;}
.yd{bottom:748.733333pt;}
.y38{bottom:748.893333pt;}
.y65{bottom:761.053333pt;}
.y64{bottom:776.413333pt;}
.y37{bottom:783.333333pt;}
.y63{bottom:791.813333pt;}
.y36{bottom:801.253333pt;}
.y62{bottom:807.173333pt;}
.y35{bottom:816.613333pt;}
.yc{bottom:822.560000pt;}
.y34{bottom:831.973333pt;}
.y61{bottom:841.573333pt;}
.y33{bottom:847.333333pt;}
.ya{bottom:848.480000pt;}
.y60{bottom:859.813333pt;}
.y32{bottom:862.693333pt;}
.y5f{bottom:876.613333pt;}
.y31{bottom:877.893333pt;}
.y30{bottom:893.253333pt;}
.y9{bottom:897.893333pt;}
.y2f{bottom:908.613333pt;}
.y8{bottom:917.093333pt;}
.y7{bottom:939.813333pt;}
.y2e{bottom:943.173333pt;}
.y6{bottom:962.693333pt;}
.y5{bottom:982.213333pt;}
.y4{bottom:1001.733333pt;}
.y3{bottom:1021.280000pt;}
.y2{bottom:1040.800000pt;}
.y1{bottom:1060.320000pt;}
.h5{height:17.280000pt;}
.h9{height:25.261875pt;}
.h8{height:32.243750pt;}
.ha{height:38.828437pt;}
.he{height:39.191562pt;}
.hc{height:39.943750pt;}
.hd{height:43.038750pt;}
.hb{height:48.125000pt;}
.h7{height:53.363750pt;}
.h4{height:55.468750pt;}
.h2{height:55.562500pt;}
.h3{height:59.889375pt;}
.h6{height:64.671250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:499.200000pt;}
.w4{width:502.240000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x9{left:-1.413333pt;}
.x0{left:0.000000pt;}
.x7{left:96.031988pt;}
.x10{left:96.991988pt;}
.xb{left:100.511988pt;}
.xf{left:117.471988pt;}
.x14{left:120.031988pt;}
.x1{left:121.791988pt;}
.x15{left:124.511988pt;}
.x13{left:144.026655pt;}
.xa{left:146.080000pt;}
.x8{left:147.840000pt;}
.x11{left:290.466655pt;}
.xc{left:315.746655pt;}
.x12{left:359.906655pt;}
.xe{left:370.626655pt;}
.xd{left:396.866655pt;}
.x5{left:480.093322pt;}
.x4{left:504.733322pt;}
.x3{left:597.093322pt;}
.x2{left:618.853322pt;}
.x6{left:697.893322pt;}
}




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