
    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_041ef1676634f5704f542b38.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.958496;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_a22bcecd5297fe773fe983c4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958496;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_247a79c723ff00134694ed05.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.757812;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_7b92dabab0c45c137954bc1c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.958008;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_a07ffde4c1dcf265e834f10c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.958008;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_74ad24987999552f8535e6ef.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.958496;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_9173a17418e89a4fea3c4b68.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.958496;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_6a3f714ecf4e2fb376ba5221.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.958008;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_48e82d42ce8d47e135fc1a66.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_5d8a2274be55c767e3d8f0d6.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.136230;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_bbaf125940157b4713d3e976.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.757812;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:-15.984000px;}
.v1{vertical-align:-4.500000px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.004296px;}
.ls2{letter-spacing:0.192000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-20.016000px;}
.ws2{word-spacing:-16.680000px;}
.wsb{word-spacing:-13.536000px;}
.ws6{word-spacing:-1.620000px;}
.ws3{word-spacing:-1.200000px;}
.ws1{word-spacing:0.000000px;}
.ws7{word-spacing:2.040000px;}
.ws4{word-spacing:3.240000px;}
.wsf{word-spacing:3.600000px;}
.ws5{word-spacing:3.660000px;}
.wsa{word-spacing:4.140000px;}
.wsc{word-spacing:4.260000px;}
.wsd{word-spacing:5.820000px;}
.ws8{word-spacing:9.420000px;}
.wse{word-spacing:9.480000px;}
.ws9{word-spacing:17.160000px;}
._2{margin-left:-1096.128000px;}
._3{margin-left:-7.948800px;}
._0{margin-left:-5.875200px;}
._1{margin-left:-3.938400px;}
._f{margin-left:-2.856000px;}
._5{margin-left:-1.113600px;}
._c{width:1.938000px;}
._6{width:2.988000px;}
._12{width:4.020000px;}
._8{width:5.109600px;}
._7{width:6.356400px;}
._e{width:7.500000px;}
._1d{width:8.514000px;}
._b{width:9.564000px;}
._d{width:10.632000px;}
._a{width:11.784000px;}
._11{width:12.894000px;}
._18{width:14.940000px;}
._15{width:19.956000px;}
._9{width:21.780000px;}
._1c{width:23.316000px;}
._10{width:24.390000px;}
._19{width:33.252000px;}
._14{width:42.210000px;}
._17{width:53.214000px;}
._1a{width:56.496000px;}
._1b{width:59.892000px;}
._13{width:79.824000px;}
._16{width:113.274000px;}
._1e{width:523.740600px;}
._4{width:2618.633400px;}
.fc6{color:rgb(26,94,175);}
.fc4{color:transparent;}
.fc3{color:rgb(35,80,169);}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(255,255,255);}
.fc5{color:rgb(90,87,88);}
.fc0{color:rgb(239,46,49);}
.fs8{font-size:27.984000px;}
.fs6{font-size:36.000000px;}
.fs7{font-size:48.000000px;}
.fs5{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:84.000000px;}
.fs0{font-size:108.000000px;}
.fs3{font-size:144.000000px;}
.fs1{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y57{bottom:53.238300px;}
.y42{bottom:57.490200px;}
.y6{bottom:70.518900px;}
.y56{bottom:71.238300px;}
.y41{bottom:75.490200px;}
.y55{bottom:89.238300px;}
.y40{bottom:93.490200px;}
.y54{bottom:107.238300px;}
.y3f{bottom:111.490200px;}
.y5{bottom:113.718900px;}
.y53{bottom:125.238300px;}
.y3e{bottom:129.490200px;}
.y4{bottom:135.318900px;}
.y52{bottom:143.238300px;}
.y3d{bottom:147.490200px;}
.y51{bottom:161.238300px;}
.y3c{bottom:165.490200px;}
.y3b{bottom:183.490200px;}
.y3a{bottom:201.490200px;}
.y39{bottom:219.490200px;}
.y38{bottom:237.490200px;}
.y37{bottom:255.490200px;}
.y36{bottom:273.490200px;}
.y50{bottom:291.490200px;}
.y35{bottom:295.742100px;}
.y4f{bottom:309.490200px;}
.y34{bottom:313.742250px;}
.y4e{bottom:327.490200px;}
.y33{bottom:331.742250px;}
.y32{bottom:349.742250px;}
.y31{bottom:367.742250px;}
.y30{bottom:385.742250px;}
.y2f{bottom:403.742250px;}
.y2e{bottom:421.742250px;}
.y2d{bottom:439.742250px;}
.y2c{bottom:457.742250px;}
.y2b{bottom:475.742250px;}
.y4d{bottom:493.742250px;}
.y2a{bottom:497.994150px;}
.y4c{bottom:511.742250px;}
.y4b{bottom:529.742250px;}
.y29{bottom:533.994150px;}
.y4a{bottom:547.742250px;}
.y28{bottom:551.994150px;}
.y49{bottom:565.742250px;}
.y27{bottom:569.994150px;}
.y48{bottom:583.742250px;}
.y26{bottom:587.994150px;}
.y47{bottom:601.742250px;}
.y25{bottom:605.994150px;}
.y74{bottom:617.049300px;}
.y87{bottom:618.353250px;}
.y46{bottom:619.742250px;}
.y24{bottom:623.994150px;}
.y86{bottom:632.753250px;}
.y73{bottom:635.049300px;}
.y23{bottom:641.994150px;}
.y85{bottom:647.153250px;}
.y72{bottom:653.049300px;}
.ya{bottom:653.148450px;}
.y22{bottom:659.994150px;}
.y84{bottom:661.553250px;}
.y71{bottom:675.301200px;}
.y83{bottom:675.953250px;}
.y21{bottom:677.994150px;}
.y9{bottom:689.148450px;}
.y82{bottom:690.353250px;}
.y70{bottom:693.301200px;}
.y20{bottom:695.994150px;}
.y81{bottom:704.753250px;}
.y1f{bottom:713.994150px;}
.y80{bottom:719.153250px;}
.y6f{bottom:729.301200px;}
.y1e{bottom:731.994150px;}
.y8{bottom:732.348450px;}
.y1d{bottom:749.994150px;}
.y7f{bottom:751.553250px;}
.y6e{bottom:765.301200px;}
.y1c{bottom:767.994150px;}
.y6d{bottom:783.301200px;}
.y1b{bottom:785.994150px;}
.y6c{bottom:801.301200px;}
.y7e{bottom:805.553250px;}
.y1a{bottom:808.246050px;}
.y6b{bottom:819.301200px;}
.y7d{bottom:823.553250px;}
.y19{bottom:826.246050px;}
.y6a{bottom:837.301200px;}
.y7c{bottom:841.553250px;}
.y45{bottom:844.246050px;}
.y69{bottom:855.301200px;}
.y7b{bottom:859.553250px;}
.y18{bottom:862.246050px;}
.y68{bottom:873.301200px;}
.y44{bottom:880.246050px;}
.y7{bottom:885.047250px;}
.y67{bottom:891.301200px;}
.y7a{bottom:895.553250px;}
.y17{bottom:898.246050px;}
.y66{bottom:909.301200px;}
.y16{bottom:916.246050px;}
.y65{bottom:927.301200px;}
.y79{bottom:931.553250px;}
.y15{bottom:934.246050px;}
.y64{bottom:945.301200px;}
.y3{bottom:948.688650px;}
.y78{bottom:949.553250px;}
.y14{bottom:952.246050px;}
.y63{bottom:967.553250px;}
.y13{bottom:970.246050px;}
.y62{bottom:985.553250px;}
.y12{bottom:988.246050px;}
.y61{bottom:1003.553250px;}
.y11{bottom:1006.246050px;}
.y60{bottom:1021.553250px;}
.y2{bottom:1021.992600px;}
.y10{bottom:1024.246050px;}
.y5f{bottom:1039.553250px;}
.y43{bottom:1042.246050px;}
.y5e{bottom:1057.553250px;}
.yf{bottom:1060.246050px;}
.y77{bottom:1075.553250px;}
.y5d{bottom:1079.805150px;}
.y5c{bottom:1097.805150px;}
.ye{bottom:1099.605150px;}
.y76{bottom:1115.805150px;}
.y5b{bottom:1133.805150px;}
.yd{bottom:1135.605150px;}
.y75{bottom:1151.805150px;}
.y1{bottom:1159.671300px;}
.y5a{bottom:1169.805150px;}
.yc{bottom:1178.805150px;}
.y59{bottom:1187.805150px;}
.y58{bottom:1226.444850px;}
.yb{bottom:1227.569850px;}
.hc{height:26.525391px;}
.h8{height:31.054688px;}
.hf{height:35.367188px;}
.hd{height:35.554688px;}
.ha{height:43.623047px;}
.he{height:43.921875px;}
.h7{height:44.208984px;}
.h9{height:44.443359px;}
.h4{height:53.050781px;}
.hb{height:54.902344px;}
.h6{height:62.220703px;}
.h2{height:79.998047px;}
.h5{height:106.664062px;}
.h3{height:159.996094px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:42.519750px;}
.xb{left:44.424450px;}
.x3{left:97.355100px;}
.x9{left:142.459050px;}
.x8{left:172.152150px;}
.x5{left:177.313650px;}
.x2{left:222.955200px;}
.x4{left:289.369800px;}
.x7{left:309.444000px;}
.x6{left:318.351600px;}
.xa{left:335.436150px;}
.xd{left:457.086600px;}
.x1{left:561.838500px;}
.xe{left:710.078700px;}
@media print{
.v2{vertical-align:-14.208000pt;}
.v1{vertical-align:-4.000000pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.003819pt;}
.ls2{letter-spacing:0.170667pt;}
.ws0{word-spacing:-17.792000pt;}
.ws2{word-spacing:-14.826667pt;}
.wsb{word-spacing:-12.032000pt;}
.ws6{word-spacing:-1.440000pt;}
.ws3{word-spacing:-1.066667pt;}
.ws1{word-spacing:0.000000pt;}
.ws7{word-spacing:1.813333pt;}
.ws4{word-spacing:2.880000pt;}
.wsf{word-spacing:3.200000pt;}
.ws5{word-spacing:3.253333pt;}
.wsa{word-spacing:3.680000pt;}
.wsc{word-spacing:3.786667pt;}
.wsd{word-spacing:5.173333pt;}
.ws8{word-spacing:8.373333pt;}
.wse{word-spacing:8.426667pt;}
.ws9{word-spacing:15.253333pt;}
._2{margin-left:-974.336000pt;}
._3{margin-left:-7.065600pt;}
._0{margin-left:-5.222400pt;}
._1{margin-left:-3.500800pt;}
._f{margin-left:-2.538667pt;}
._5{margin-left:-0.989867pt;}
._c{width:1.722667pt;}
._6{width:2.656000pt;}
._12{width:3.573333pt;}
._8{width:4.541867pt;}
._7{width:5.650133pt;}
._e{width:6.666667pt;}
._1d{width:7.568000pt;}
._b{width:8.501333pt;}
._d{width:9.450667pt;}
._a{width:10.474667pt;}
._11{width:11.461333pt;}
._18{width:13.280000pt;}
._15{width:17.738667pt;}
._9{width:19.360000pt;}
._1c{width:20.725333pt;}
._10{width:21.680000pt;}
._19{width:29.557333pt;}
._14{width:37.520000pt;}
._17{width:47.301333pt;}
._1a{width:50.218667pt;}
._1b{width:53.237333pt;}
._13{width:70.954667pt;}
._16{width:100.688000pt;}
._1e{width:465.547200pt;}
._4{width:2327.674133pt;}
.fs8{font-size:24.874667pt;}
.fs6{font-size:32.000000pt;}
.fs7{font-size:42.666667pt;}
.fs5{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:74.666667pt;}
.fs0{font-size:96.000000pt;}
.fs3{font-size:128.000000pt;}
.fs1{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y57{bottom:47.322933pt;}
.y42{bottom:51.102400pt;}
.y6{bottom:62.683467pt;}
.y56{bottom:63.322933pt;}
.y41{bottom:67.102400pt;}
.y55{bottom:79.322933pt;}
.y40{bottom:83.102400pt;}
.y54{bottom:95.322933pt;}
.y3f{bottom:99.102400pt;}
.y5{bottom:101.083467pt;}
.y53{bottom:111.322933pt;}
.y3e{bottom:115.102400pt;}
.y4{bottom:120.283467pt;}
.y52{bottom:127.322933pt;}
.y3d{bottom:131.102400pt;}
.y51{bottom:143.322933pt;}
.y3c{bottom:147.102400pt;}
.y3b{bottom:163.102400pt;}
.y3a{bottom:179.102400pt;}
.y39{bottom:195.102400pt;}
.y38{bottom:211.102400pt;}
.y37{bottom:227.102400pt;}
.y36{bottom:243.102400pt;}
.y50{bottom:259.102400pt;}
.y35{bottom:262.881867pt;}
.y4f{bottom:275.102400pt;}
.y34{bottom:278.882000pt;}
.y4e{bottom:291.102400pt;}
.y33{bottom:294.882000pt;}
.y32{bottom:310.882000pt;}
.y31{bottom:326.882000pt;}
.y30{bottom:342.882000pt;}
.y2f{bottom:358.882000pt;}
.y2e{bottom:374.882000pt;}
.y2d{bottom:390.882000pt;}
.y2c{bottom:406.882000pt;}
.y2b{bottom:422.882000pt;}
.y4d{bottom:438.882000pt;}
.y2a{bottom:442.661467pt;}
.y4c{bottom:454.882000pt;}
.y4b{bottom:470.882000pt;}
.y29{bottom:474.661467pt;}
.y4a{bottom:486.882000pt;}
.y28{bottom:490.661467pt;}
.y49{bottom:502.882000pt;}
.y27{bottom:506.661467pt;}
.y48{bottom:518.882000pt;}
.y26{bottom:522.661467pt;}
.y47{bottom:534.882000pt;}
.y25{bottom:538.661467pt;}
.y74{bottom:548.488267pt;}
.y87{bottom:549.647333pt;}
.y46{bottom:550.882000pt;}
.y24{bottom:554.661467pt;}
.y86{bottom:562.447333pt;}
.y73{bottom:564.488267pt;}
.y23{bottom:570.661467pt;}
.y85{bottom:575.247333pt;}
.y72{bottom:580.488267pt;}
.ya{bottom:580.576400pt;}
.y22{bottom:586.661467pt;}
.y84{bottom:588.047333pt;}
.y71{bottom:600.267733pt;}
.y83{bottom:600.847333pt;}
.y21{bottom:602.661467pt;}
.y9{bottom:612.576400pt;}
.y82{bottom:613.647333pt;}
.y70{bottom:616.267733pt;}
.y20{bottom:618.661467pt;}
.y81{bottom:626.447333pt;}
.y1f{bottom:634.661467pt;}
.y80{bottom:639.247333pt;}
.y6f{bottom:648.267733pt;}
.y1e{bottom:650.661467pt;}
.y8{bottom:650.976400pt;}
.y1d{bottom:666.661467pt;}
.y7f{bottom:668.047333pt;}
.y6e{bottom:680.267733pt;}
.y1c{bottom:682.661467pt;}
.y6d{bottom:696.267733pt;}
.y1b{bottom:698.661467pt;}
.y6c{bottom:712.267733pt;}
.y7e{bottom:716.047333pt;}
.y1a{bottom:718.440933pt;}
.y6b{bottom:728.267733pt;}
.y7d{bottom:732.047333pt;}
.y19{bottom:734.440933pt;}
.y6a{bottom:744.267733pt;}
.y7c{bottom:748.047333pt;}
.y45{bottom:750.440933pt;}
.y69{bottom:760.267733pt;}
.y7b{bottom:764.047333pt;}
.y18{bottom:766.440933pt;}
.y68{bottom:776.267733pt;}
.y44{bottom:782.440933pt;}
.y7{bottom:786.708667pt;}
.y67{bottom:792.267733pt;}
.y7a{bottom:796.047333pt;}
.y17{bottom:798.440933pt;}
.y66{bottom:808.267733pt;}
.y16{bottom:814.440933pt;}
.y65{bottom:824.267733pt;}
.y79{bottom:828.047333pt;}
.y15{bottom:830.440933pt;}
.y64{bottom:840.267733pt;}
.y3{bottom:843.278800pt;}
.y78{bottom:844.047333pt;}
.y14{bottom:846.440933pt;}
.y63{bottom:860.047333pt;}
.y13{bottom:862.440933pt;}
.y62{bottom:876.047333pt;}
.y12{bottom:878.440933pt;}
.y61{bottom:892.047333pt;}
.y11{bottom:894.440933pt;}
.y60{bottom:908.047333pt;}
.y2{bottom:908.437867pt;}
.y10{bottom:910.440933pt;}
.y5f{bottom:924.047333pt;}
.y43{bottom:926.440933pt;}
.y5e{bottom:940.047333pt;}
.yf{bottom:942.440933pt;}
.y77{bottom:956.047333pt;}
.y5d{bottom:959.826800pt;}
.y5c{bottom:975.826800pt;}
.ye{bottom:977.426800pt;}
.y76{bottom:991.826800pt;}
.y5b{bottom:1007.826800pt;}
.yd{bottom:1009.426800pt;}
.y75{bottom:1023.826800pt;}
.y1{bottom:1030.818933pt;}
.y5a{bottom:1039.826800pt;}
.yc{bottom:1047.826800pt;}
.y59{bottom:1055.826800pt;}
.y58{bottom:1090.173200pt;}
.yb{bottom:1091.173200pt;}
.hc{height:23.578125pt;}
.h8{height:27.604167pt;}
.hf{height:31.437500pt;}
.hd{height:31.604167pt;}
.ha{height:38.776042pt;}
.he{height:39.041667pt;}
.h7{height:39.296875pt;}
.h9{height:39.505208pt;}
.h4{height:47.156250pt;}
.hb{height:48.802083pt;}
.h6{height:55.307292pt;}
.h2{height:71.109375pt;}
.h5{height:94.812500pt;}
.h3{height:142.218750pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:37.795333pt;}
.xb{left:39.488400pt;}
.x3{left:86.537867pt;}
.x9{left:126.630267pt;}
.x8{left:153.024133pt;}
.x5{left:157.612133pt;}
.x2{left:198.182400pt;}
.x4{left:257.217600pt;}
.x7{left:275.061333pt;}
.x6{left:282.979200pt;}
.xa{left:298.165467pt;}
.xd{left:406.299200pt;}
.x1{left:499.412000pt;}
.xe{left:631.181067pt;}
}




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