
    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_e22ce3a7365f39afb25cab76.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_5124067e1a45bab5b78d472b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.123047;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_3b23e2893d0f657b223815c3.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.080566;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_639cb358f528a5cf47f0a7f4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_365eebb751ee659ed6a4f530.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_85b22afff65b842ea1433cd9.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_ff3466ed2e28d7c37460459d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;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);}
.v1{vertical-align:-63.360000px;}
.v5{vertical-align:-60.660000px;}
.v3{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:18.720000px;}
.v2{vertical-align:21.600000px;}
.ls7{letter-spacing:-1.998000px;}
.lsa{letter-spacing:-1.914000px;}
.ls5{letter-spacing:-1.908000px;}
.ls8{letter-spacing:-1.440000px;}
.ls10{letter-spacing:-1.422000px;}
.lse{letter-spacing:-1.254000px;}
.ls30{letter-spacing:-0.936000px;}
.lsd{letter-spacing:-0.810000px;}
.ls11{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.492600px;}
.lsc{letter-spacing:-0.475200px;}
.ls6{letter-spacing:-0.466800px;}
.ls32{letter-spacing:-0.276600px;}
.ls4{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.020160px;}
.ls1a{letter-spacing:0.140160px;}
.ls3{letter-spacing:0.172800px;}
.ls1d{letter-spacing:0.200160px;}
.ls20{letter-spacing:0.380400px;}
.ls27{letter-spacing:0.466800px;}
.lsf{letter-spacing:0.486600px;}
.ls31{letter-spacing:0.507000px;}
.lsb{letter-spacing:0.630000px;}
.ls0{letter-spacing:0.720000px;}
.ls2d{letter-spacing:0.972000px;}
.ls28{letter-spacing:1.410000px;}
.ls1e{letter-spacing:2.160000px;}
.ls18{letter-spacing:2.280000px;}
.ls21{letter-spacing:3.600000px;}
.ls26{letter-spacing:5.220000px;}
.ls1f{letter-spacing:6.480000px;}
.ls29{letter-spacing:7.920000px;}
.ls1c{letter-spacing:9.480000px;}
.ls23{letter-spacing:10.800000px;}
.ls13{letter-spacing:11.880000px;}
.ls12{letter-spacing:12.240000px;}
.ls2{letter-spacing:13.680000px;}
.ls25{letter-spacing:13.800000px;}
.ls17{letter-spacing:15.120000px;}
.ls16{letter-spacing:15.240000px;}
.ls2a{letter-spacing:19.440000px;}
.ls14{letter-spacing:19.560000px;}
.ls15{letter-spacing:22.320000px;}
.ls24{letter-spacing:23.760000px;}
.ls22{letter-spacing:23.880000px;}
.ls19{letter-spacing:30.960000px;}
.ls2e{letter-spacing:163.198560px;}
.ls2c{letter-spacing:163.318560px;}
.ls2b{letter-spacing:193.558560px;}
.ls2f{letter-spacing:1155.216000px;}
.ls1{letter-spacing:1213.752000px;}
.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;}
}
.ws13{word-spacing:-15.627000px;}
.wsb{word-spacing:-15.606600px;}
.ws10{word-spacing:-15.586800px;}
.wsf{word-spacing:-15.500400px;}
.ws11{word-spacing:-15.140160px;}
.ws1{word-spacing:-15.120000px;}
.ws14{word-spacing:-14.843400px;}
.ws2{word-spacing:-14.653200px;}
.ws7{word-spacing:-14.310000px;}
.ws12{word-spacing:-14.184000px;}
.wsd{word-spacing:-13.698000px;}
.ws4{word-spacing:-13.680000px;}
.ws0{word-spacing:-13.212000px;}
.ws8{word-spacing:-13.204800px;}
.ws5{word-spacing:-13.187400px;}
.ws9{word-spacing:-12.870000px;}
.wsa{word-spacing:-12.426000px;}
.ws3{word-spacing:-12.240000px;}
.ws6{word-spacing:-11.766000px;}
.wsc{word-spacing:-9.720000px;}
.wse{word-spacing:0.000000px;}
._f{margin-left:-3.350400px;}
._1{margin-left:-2.116800px;}
._2{margin-left:-1.109280px;}
._3{width:1.088640px;}
._0{width:2.396160px;}
._11{width:3.413280px;}
._a{width:4.435200px;}
._9{width:5.443200px;}
._15{width:6.492000px;}
._16{width:8.353440px;}
._14{width:9.448800px;}
._13{width:10.644480px;}
._b{width:11.702400px;}
._c{width:12.731520px;}
._d{width:13.809120px;}
._1f{width:16.233600px;}
._10{width:17.381760px;}
._21{width:18.430560px;}
._8{width:19.452960px;}
._7{width:20.779680px;}
._12{width:21.880320px;}
._6{width:23.088960px;}
._4{width:24.822240px;}
._5{width:25.824960px;}
._e{width:26.890560px;}
._19{width:28.909440px;}
._17{width:30.300480px;}
._18{width:31.556160px;}
._2b{width:32.601120px;}
._1a{width:33.645600px;}
._1b{width:34.655040px;}
._1c{width:35.948160px;}
._22{width:37.618560px;}
._23{width:38.888640px;}
._26{width:40.063200px;}
._20{width:41.428800px;}
._29{width:42.830400px;}
._25{width:44.836320px;}
._24{width:46.025280px;}
._27{width:48.323520px;}
._2a{width:49.735200px;}
._28{width:51.105600px;}
._1e{width:73.846080px;}
._1d{width:75.055680px;}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(0,0,255);}
.fc1{color:rgb(16,0,12);}
.fc2{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:36.000000px;}
.fs3{font-size:38.880000px;}
.fs5{font-size:47.520000px;}
.fs2{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:24.480000px;}
.y1{bottom:65.520000px;}
.y75{bottom:102.960000px;}
.y39{bottom:106.200000px;}
.y6a{bottom:113.436000px;}
.y74{bottom:120.276000px;}
.y38{bottom:121.716000px;}
.y69{bottom:130.716000px;}
.y37{bottom:137.556000px;}
.y68{bottom:147.996000px;}
.y36{bottom:154.830000px;}
.y67{bottom:165.270000px;}
.y35{bottom:172.110000px;}
.y66{bottom:182.190000px;}
.y73{bottom:189.030000px;}
.y34{bottom:189.390000px;}
.y65{bottom:199.470000px;}
.y33{bottom:206.670000px;}
.y64{bottom:216.750000px;}
.y72{bottom:219.675000px;}
.y32{bottom:223.635000px;}
.y63{bottom:234.075000px;}
.y31{bottom:240.915000px;}
.y71{bottom:250.995000px;}
.y62{bottom:251.355000px;}
.y30{bottom:258.195000px;}
.y61{bottom:268.635000px;}
.y2f{bottom:275.475000px;}
.y70{bottom:285.555000px;}
.y60{bottom:285.915000px;}
.y2e{bottom:292.755000px;}
.y5f{bottom:303.195000px;}
.y2d{bottom:310.035000px;}
.y5e{bottom:320.475000px;}
.y2c{bottom:327.345000px;}
.y6f{bottom:337.425000px;}
.y5d{bottom:337.785000px;}
.y2b{bottom:344.625000px;}
.y5c{bottom:355.065000px;}
.y2a{bottom:361.905000px;}
.y6e{bottom:371.625000px;}
.y5b{bottom:371.985000px;}
.y29{bottom:379.185000px;}
.y5a{bottom:389.265000px;}
.y28{bottom:396.465000px;}
.y6d{bottom:406.185000px;}
.y59{bottom:406.545000px;}
.y27{bottom:413.385000px;}
.y58{bottom:423.825000px;}
.y26{bottom:430.710000px;}
.y6c{bottom:440.790000px;}
.y57{bottom:441.150000px;}
.y25{bottom:447.990000px;}
.y56{bottom:458.430000px;}
.y24{bottom:465.270000px;}
.y55{bottom:475.710000px;}
.y23{bottom:482.550000px;}
.y54{bottom:492.990000px;}
.y22{bottom:499.830000px;}
.y53{bottom:510.270000px;}
.y21{bottom:517.110000px;}
.y52{bottom:527.550000px;}
.y20{bottom:534.420000px;}
.y51{bottom:544.860000px;}
.y1f{bottom:551.700000px;}
.y50{bottom:562.140000px;}
.y1e{bottom:568.980000px;}
.y4f{bottom:579.060000px;}
.y1d{bottom:586.260000px;}
.y4e{bottom:596.340000px;}
.y1c{bottom:603.180000px;}
.y4d{bottom:613.620000px;}
.y1b{bottom:618.300000px;}
.y4c{bottom:630.900000px;}
.y1a{bottom:634.500000px;}
.y6b{bottom:647.850000px;}
.y4b{bottom:648.210000px;}
.y19{bottom:657.210000px;}
.y4a{bottom:665.490000px;}
.y18{bottom:674.490000px;}
.y49{bottom:682.770000px;}
.y17{bottom:686.010000px;}
.y48{bottom:700.050000px;}
.y16{bottom:702.930000px;}
.y47{bottom:717.330000px;}
.y15{bottom:720.210000px;}
.y46{bottom:734.610000px;}
.y14{bottom:737.850000px;}
.y45{bottom:751.935000px;}
.y13{bottom:755.175000px;}
.y44{bottom:768.855000px;}
.y12{bottom:772.455000px;}
.y43{bottom:786.135000px;}
.y11{bottom:789.735000px;}
.y42{bottom:803.415000px;}
.y10{bottom:807.015000px;}
.y41{bottom:820.695000px;}
.yf{bottom:824.295000px;}
.y40{bottom:837.975000px;}
.ye{bottom:841.575000px;}
.y3f{bottom:855.285000px;}
.yd{bottom:858.885000px;}
.y3e{bottom:872.565000px;}
.yc{bottom:876.165000px;}
.y3d{bottom:889.845000px;}
.yb{bottom:893.085000px;}
.y3c{bottom:907.125000px;}
.ya{bottom:924.405000px;}
.y9{bottom:941.685000px;}
.y8{bottom:958.650000px;}
.y3b{bottom:959.010000px;}
.y7{bottom:975.930000px;}
.y6{bottom:992.850000px;}
.y3a{bottom:993.210000px;}
.y5{bottom:1010.490000px;}
.y4{bottom:1027.770000px;}
.y3{bottom:1045.050000px;}
.h9{height:38.158594px;}
.hf{height:46.638281px;}
.h8{height:52.299844px;}
.h5{height:53.704687px;}
.hb{height:54.052031px;}
.hd{height:54.219375px;}
.ha{height:55.147500px;}
.h7{height:59.328281px;}
.h2{height:59.357813px;}
.h6{height:59.739609px;}
.hc{height:59.758594px;}
.h4{height:60.952500px;}
.he{height:62.163910px;}
.h3{height:70.664062px;}
.h1{height:1105.500000px;}
.h0{height:1105.560000px;}
.w2{width:722.879989px;}
.w0{width:722.880000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xf{left:51.155989px;}
.x5{left:76.715989px;}
.xe{left:93.635989px;}
.x3{left:103.751989px;}
.x2{left:119.231989px;}
.x8{left:127.511989px;}
.xc{left:130.031989px;}
.xb{left:163.514989px;}
.x10{left:209.624989px;}
.xa{left:213.224989px;}
.x4{left:235.184989px;}
.x6{left:266.549989px;}
.x9{left:307.619989px;}
.xd{left:341.459989px;}
.x1{left:367.019989px;}
.x7{left:374.609989px;}
@media print{
.v1{vertical-align:-56.320000pt;}
.v5{vertical-align:-53.920000pt;}
.v3{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:16.640000pt;}
.v2{vertical-align:19.200000pt;}
.ls7{letter-spacing:-1.776000pt;}
.lsa{letter-spacing:-1.701333pt;}
.ls5{letter-spacing:-1.696000pt;}
.ls8{letter-spacing:-1.280000pt;}
.ls10{letter-spacing:-1.264000pt;}
.lse{letter-spacing:-1.114667pt;}
.ls30{letter-spacing:-0.832000pt;}
.lsd{letter-spacing:-0.720000pt;}
.ls11{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.437867pt;}
.lsc{letter-spacing:-0.422400pt;}
.ls6{letter-spacing:-0.414933pt;}
.ls32{letter-spacing:-0.245867pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.017920pt;}
.ls1a{letter-spacing:0.124587pt;}
.ls3{letter-spacing:0.153600pt;}
.ls1d{letter-spacing:0.177920pt;}
.ls20{letter-spacing:0.338133pt;}
.ls27{letter-spacing:0.414933pt;}
.lsf{letter-spacing:0.432533pt;}
.ls31{letter-spacing:0.450667pt;}
.lsb{letter-spacing:0.560000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls2d{letter-spacing:0.864000pt;}
.ls28{letter-spacing:1.253333pt;}
.ls1e{letter-spacing:1.920000pt;}
.ls18{letter-spacing:2.026667pt;}
.ls21{letter-spacing:3.200000pt;}
.ls26{letter-spacing:4.640000pt;}
.ls1f{letter-spacing:5.760000pt;}
.ls29{letter-spacing:7.040000pt;}
.ls1c{letter-spacing:8.426667pt;}
.ls23{letter-spacing:9.600000pt;}
.ls13{letter-spacing:10.560000pt;}
.ls12{letter-spacing:10.880000pt;}
.ls2{letter-spacing:12.160000pt;}
.ls25{letter-spacing:12.266667pt;}
.ls17{letter-spacing:13.440000pt;}
.ls16{letter-spacing:13.546667pt;}
.ls2a{letter-spacing:17.280000pt;}
.ls14{letter-spacing:17.386667pt;}
.ls15{letter-spacing:19.840000pt;}
.ls24{letter-spacing:21.120000pt;}
.ls22{letter-spacing:21.226667pt;}
.ls19{letter-spacing:27.520000pt;}
.ls2e{letter-spacing:145.065387pt;}
.ls2c{letter-spacing:145.172053pt;}
.ls2b{letter-spacing:172.052053pt;}
.ls2f{letter-spacing:1026.858667pt;}
.ls1{letter-spacing:1078.890667pt;}
.ws13{word-spacing:-13.890667pt;}
.wsb{word-spacing:-13.872533pt;}
.ws10{word-spacing:-13.854933pt;}
.wsf{word-spacing:-13.778133pt;}
.ws11{word-spacing:-13.457920pt;}
.ws1{word-spacing:-13.440000pt;}
.ws14{word-spacing:-13.194133pt;}
.ws2{word-spacing:-13.025067pt;}
.ws7{word-spacing:-12.720000pt;}
.ws12{word-spacing:-12.608000pt;}
.wsd{word-spacing:-12.176000pt;}
.ws4{word-spacing:-12.160000pt;}
.ws0{word-spacing:-11.744000pt;}
.ws8{word-spacing:-11.737600pt;}
.ws5{word-spacing:-11.722133pt;}
.ws9{word-spacing:-11.440000pt;}
.wsa{word-spacing:-11.045333pt;}
.ws3{word-spacing:-10.880000pt;}
.ws6{word-spacing:-10.458667pt;}
.wsc{word-spacing:-8.640000pt;}
.wse{word-spacing:0.000000pt;}
._f{margin-left:-2.978133pt;}
._1{margin-left:-1.881600pt;}
._2{margin-left:-0.986027pt;}
._3{width:0.967680pt;}
._0{width:2.129920pt;}
._11{width:3.034027pt;}
._a{width:3.942400pt;}
._9{width:4.838400pt;}
._15{width:5.770667pt;}
._16{width:7.425280pt;}
._14{width:8.398933pt;}
._13{width:9.461760pt;}
._b{width:10.402133pt;}
._c{width:11.316907pt;}
._d{width:12.274773pt;}
._1f{width:14.429867pt;}
._10{width:15.450453pt;}
._21{width:16.382720pt;}
._8{width:17.291520pt;}
._7{width:18.470827pt;}
._12{width:19.449173pt;}
._6{width:20.523520pt;}
._4{width:22.064213pt;}
._5{width:22.955520pt;}
._e{width:23.902720pt;}
._19{width:25.697280pt;}
._17{width:26.933760pt;}
._18{width:28.049920pt;}
._2b{width:28.978773pt;}
._1a{width:29.907200pt;}
._1b{width:30.804480pt;}
._1c{width:31.953920pt;}
._22{width:33.438720pt;}
._23{width:34.567680pt;}
._26{width:35.611733pt;}
._20{width:36.825600pt;}
._29{width:38.071467pt;}
._25{width:39.854507pt;}
._24{width:40.911360pt;}
._27{width:42.954240pt;}
._2a{width:44.209067pt;}
._28{width:45.427200pt;}
._1e{width:65.640960pt;}
._1d{width:66.716160pt;}
.fs4{font-size:32.000000pt;}
.fs3{font-size:34.560000pt;}
.fs5{font-size:42.240000pt;}
.fs2{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:21.760000pt;}
.y1{bottom:58.240000pt;}
.y75{bottom:91.520000pt;}
.y39{bottom:94.400000pt;}
.y6a{bottom:100.832000pt;}
.y74{bottom:106.912000pt;}
.y38{bottom:108.192000pt;}
.y69{bottom:116.192000pt;}
.y37{bottom:122.272000pt;}
.y68{bottom:131.552000pt;}
.y36{bottom:137.626667pt;}
.y67{bottom:146.906667pt;}
.y35{bottom:152.986667pt;}
.y66{bottom:161.946667pt;}
.y73{bottom:168.026667pt;}
.y34{bottom:168.346667pt;}
.y65{bottom:177.306667pt;}
.y33{bottom:183.706667pt;}
.y64{bottom:192.666667pt;}
.y72{bottom:195.266667pt;}
.y32{bottom:198.786667pt;}
.y63{bottom:208.066667pt;}
.y31{bottom:214.146667pt;}
.y71{bottom:223.106667pt;}
.y62{bottom:223.426667pt;}
.y30{bottom:229.506667pt;}
.y61{bottom:238.786667pt;}
.y2f{bottom:244.866667pt;}
.y70{bottom:253.826667pt;}
.y60{bottom:254.146667pt;}
.y2e{bottom:260.226667pt;}
.y5f{bottom:269.506667pt;}
.y2d{bottom:275.586667pt;}
.y5e{bottom:284.866667pt;}
.y2c{bottom:290.973333pt;}
.y6f{bottom:299.933333pt;}
.y5d{bottom:300.253333pt;}
.y2b{bottom:306.333333pt;}
.y5c{bottom:315.613333pt;}
.y2a{bottom:321.693333pt;}
.y6e{bottom:330.333333pt;}
.y5b{bottom:330.653333pt;}
.y29{bottom:337.053333pt;}
.y5a{bottom:346.013333pt;}
.y28{bottom:352.413333pt;}
.y6d{bottom:361.053333pt;}
.y59{bottom:361.373333pt;}
.y27{bottom:367.453333pt;}
.y58{bottom:376.733333pt;}
.y26{bottom:382.853333pt;}
.y6c{bottom:391.813333pt;}
.y57{bottom:392.133333pt;}
.y25{bottom:398.213333pt;}
.y56{bottom:407.493333pt;}
.y24{bottom:413.573333pt;}
.y55{bottom:422.853333pt;}
.y23{bottom:428.933333pt;}
.y54{bottom:438.213333pt;}
.y22{bottom:444.293333pt;}
.y53{bottom:453.573333pt;}
.y21{bottom:459.653333pt;}
.y52{bottom:468.933333pt;}
.y20{bottom:475.040000pt;}
.y51{bottom:484.320000pt;}
.y1f{bottom:490.400000pt;}
.y50{bottom:499.680000pt;}
.y1e{bottom:505.760000pt;}
.y4f{bottom:514.720000pt;}
.y1d{bottom:521.120000pt;}
.y4e{bottom:530.080000pt;}
.y1c{bottom:536.160000pt;}
.y4d{bottom:545.440000pt;}
.y1b{bottom:549.600000pt;}
.y4c{bottom:560.800000pt;}
.y1a{bottom:564.000000pt;}
.y6b{bottom:575.866667pt;}
.y4b{bottom:576.186667pt;}
.y19{bottom:584.186667pt;}
.y4a{bottom:591.546667pt;}
.y18{bottom:599.546667pt;}
.y49{bottom:606.906667pt;}
.y17{bottom:609.786667pt;}
.y48{bottom:622.266667pt;}
.y16{bottom:624.826667pt;}
.y47{bottom:637.626667pt;}
.y15{bottom:640.186667pt;}
.y46{bottom:652.986667pt;}
.y14{bottom:655.866667pt;}
.y45{bottom:668.386667pt;}
.y13{bottom:671.266667pt;}
.y44{bottom:683.426667pt;}
.y12{bottom:686.626667pt;}
.y43{bottom:698.786667pt;}
.y11{bottom:701.986667pt;}
.y42{bottom:714.146667pt;}
.y10{bottom:717.346667pt;}
.y41{bottom:729.506667pt;}
.yf{bottom:732.706667pt;}
.y40{bottom:744.866667pt;}
.ye{bottom:748.066667pt;}
.y3f{bottom:760.253333pt;}
.yd{bottom:763.453333pt;}
.y3e{bottom:775.613333pt;}
.yc{bottom:778.813333pt;}
.y3d{bottom:790.973333pt;}
.yb{bottom:793.853333pt;}
.y3c{bottom:806.333333pt;}
.ya{bottom:821.693333pt;}
.y9{bottom:837.053333pt;}
.y8{bottom:852.133333pt;}
.y3b{bottom:852.453333pt;}
.y7{bottom:867.493333pt;}
.y6{bottom:882.533333pt;}
.y3a{bottom:882.853333pt;}
.y5{bottom:898.213333pt;}
.y4{bottom:913.573333pt;}
.y3{bottom:928.933333pt;}
.h9{height:33.918750pt;}
.hf{height:41.456250pt;}
.h8{height:46.488750pt;}
.h5{height:47.737500pt;}
.hb{height:48.046250pt;}
.hd{height:48.195000pt;}
.ha{height:49.020000pt;}
.h7{height:52.736250pt;}
.h2{height:52.762500pt;}
.h6{height:53.101875pt;}
.hc{height:53.118750pt;}
.h4{height:54.180000pt;}
.he{height:55.256809pt;}
.h3{height:62.812500pt;}
.h1{height:982.666667pt;}
.h0{height:982.720000pt;}
.w2{width:642.559990pt;}
.w0{width:642.560000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xf{left:45.471990pt;}
.x5{left:68.191990pt;}
.xe{left:83.231990pt;}
.x3{left:92.223990pt;}
.x2{left:105.983990pt;}
.x8{left:113.343990pt;}
.xc{left:115.583990pt;}
.xb{left:145.346657pt;}
.x10{left:186.333324pt;}
.xa{left:189.533324pt;}
.x4{left:209.053324pt;}
.x6{left:236.933324pt;}
.x9{left:273.439990pt;}
.xd{left:303.519990pt;}
.x1{left:326.239990pt;}
.x7{left:332.986657pt;}
}




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