
    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_a10eb650d32f95758ea553c4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.000000;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_bcb4d0cc48195f16297285a6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_cd2788c0fe1a531c22f554f8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.042000;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_f8f81d9ddf23cabbaaec9a5f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.725000;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_b4cef685ede576428a4890e6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:23.413974px;}
.ls2{letter-spacing:35.865600px;}
.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;}
}
.ws30{word-spacing:-29.266330px;}
.ws2e{word-spacing:-23.025715px;}
.ws6{word-spacing:-19.510886px;}
.ws2f{word-spacing:-19.439155px;}
.ws29{word-spacing:-2.438861px;}
.ws2c{word-spacing:-2.295398px;}
.ws12{word-spacing:-1.793280px;}
.ws9{word-spacing:-1.649818px;}
.ws1e{word-spacing:-1.506355px;}
.ws32{word-spacing:-1.434624px;}
.ws36{word-spacing:-0.717312px;}
.ws3f{word-spacing:-0.358656px;}
.ws2b{word-spacing:-0.143462px;}
.ws5{word-spacing:-0.103292px;}
.ws1{word-spacing:-0.071731px;}
.ws7{word-spacing:0.000000px;}
.ws1b{word-spacing:0.717312px;}
.ws4d{word-spacing:0.860774px;}
.ws43{word-spacing:1.147699px;}
.ws17{word-spacing:1.291162px;}
.ws3a{word-spacing:1.793280px;}
.ws3b{word-spacing:1.865011px;}
.ws48{word-spacing:1.936742px;}
.ws49{word-spacing:2.438861px;}
.ws23{word-spacing:2.510592px;}
.ws34{word-spacing:2.582323px;}
.ws47{word-spacing:3.227904px;}
.ws19{word-spacing:3.443098px;}
.ws1d{word-spacing:3.658291px;}
.ws21{word-spacing:3.730022px;}
.ws2{word-spacing:3.873485px;}
.wse{word-spacing:3.945216px;}
.ws39{word-spacing:4.088678px;}
.ws25{word-spacing:4.375603px;}
.ws3{word-spacing:4.648169px;}
.ws26{word-spacing:4.662528px;}
.ws20{word-spacing:4.877722px;}
.ws24{word-spacing:5.092915px;}
.ws2a{word-spacing:5.451571px;}
.ws46{word-spacing:5.523302px;}
.ws1c{word-spacing:5.595034px;}
.ws41{word-spacing:5.666765px;}
.ws16{word-spacing:6.168883px;}
.ws1a{word-spacing:6.455808px;}
.ws40{word-spacing:6.527539px;}
.ws35{word-spacing:6.886195px;}
.ws22{word-spacing:7.244851px;}
.ws28{word-spacing:7.675238px;}
.ws4a{word-spacing:8.249088px;}
.ws13{word-spacing:8.320819px;}
.ws3e{word-spacing:8.392550px;}
.ws3d{word-spacing:8.536013px;}
.ws18{word-spacing:8.822938px;}
.ws38{word-spacing:9.181594px;}
.ws27{word-spacing:9.325056px;}
.ws1f{word-spacing:9.468518px;}
.ws4b{word-spacing:9.827174px;}
.ws4e{word-spacing:9.898906px;}
.wsb{word-spacing:10.185830px;}
.ws44{word-spacing:10.544486px;}
.ws14{word-spacing:10.759680px;}
.ws33{word-spacing:10.974874px;}
.wsc{word-spacing:11.695811px;}
.ws15{word-spacing:12.696422px;}
.ws42{word-spacing:13.055078px;}
.ws3c{word-spacing:14.489702px;}
.ws45{word-spacing:15.565670px;}
.ws4f{word-spacing:17.143757px;}
.ws8{word-spacing:23.312640px;}
.ws4c{word-spacing:23.338518px;}
.ws50{word-spacing:26.496140px;}
.ws0{word-spacing:26.827469px;}
.ws4{word-spacing:38.631358px;}
.ws2d{word-spacing:64.916736px;}
.ws11{word-spacing:71.659469px;}
.ws37{word-spacing:96.750773px;}
.ws31{word-spacing:116.100658px;}
.wsd{word-spacing:436.660637px;}
.wsf{word-spacing:443.424889px;}
.wsa{word-spacing:498.155795px;}
.ws10{word-spacing:536.955201px;}
._2c{margin-left:-35.865600px;}
._7{margin-left:-10.687883px;}
._e{margin-left:-6.742733px;}
._25{margin-left:-5.666765px;}
._1{margin-left:-4.519066px;}
._12{margin-left:-3.227904px;}
._0{margin-left:-2.223667px;}
._c{margin-left:-1.075968px;}
._2{width:1.936742px;}
._3{width:3.202064px;}
._1e{width:4.877722px;}
._1d{width:19.152230px;}
._34{width:22.596061px;}
._24{width:25.392845px;}
._26{width:28.190362px;}
._22{width:29.409792px;}
._31{width:30.485027px;}
._5{width:31.561728px;}
._20{width:34.933094px;}
._28{width:36.224256px;}
._4{width:37.443582px;}
._21{width:38.663117px;}
._27{width:42.751795px;}
._1f{width:45.262387px;}
._23{width:48.562022px;}
._35{width:50.068378px;}
._2f{width:52.650701px;}
._32{width:59.536896px;}
._2a{width:64.988467px;}
._33{width:66.520871px;}
._8{width:72.000735px;}
._f{width:76.096587px;}
._d{width:84.058750px;}
._16{width:106.807757px;}
._2d{width:107.811994px;}
._30{width:116.203950px;}
._10{width:119.242904px;}
._9{width:155.108504px;}
._18{width:175.526246px;}
._15{width:184.851302px;}
._1b{width:210.244147px;}
._b{width:218.203267px;}
._17{width:219.497472px;}
._13{width:288.718080px;}
._11{width:336.710383px;}
._1c{width:388.926566px;}
._a{width:445.655729px;}
._6{width:580.899247px;}
._19{width:739.924717px;}
._14{width:922.750157px;}
._1a{width:945.417216px;}
._2b{width:2056.892160px;}
._29{width:2118.150605px;}
._2e{width:2175.965952px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs2{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y63{bottom:110.311500px;}
.y62{bottom:131.980500px;}
.yb{bottom:151.408500px;}
.y61{bottom:153.649500px;}
.y82{bottom:163.734000px;}
.ya{bottom:173.077500px;}
.y60{bottom:175.318500px;}
.y81{bottom:185.403000px;}
.y5f{bottom:196.987500px;}
.y80{bottom:207.072000px;}
.y5e{bottom:218.656500px;}
.y7f{bottom:228.741000px;}
.y5d{bottom:248.113500px;}
.y7e{bottom:268.168500px;}
.y5c{bottom:277.572000px;}
.y5b{bottom:307.029000px;}
.y7d{bottom:328.068000px;}
.y5a{bottom:336.487500px;}
.y7c{bottom:349.737000px;}
.y59{bottom:358.156500px;}
.y41{bottom:361.555500px;}
.y7b{bottom:371.406000px;}
.y58{bottom:379.825500px;}
.y40{bottom:383.224500px;}
.y7a{bottom:393.075000px;}
.y57{bottom:401.494500px;}
.y3f{bottom:404.893500px;}
.y79{bottom:414.744000px;}
.y56{bottom:423.162000px;}
.y3e{bottom:426.561000px;}
.y3d{bottom:448.230000px;}
.y78{bottom:451.356000px;}
.y55{bottom:452.620500px;}
.y3c{bottom:469.899000px;}
.y54{bottom:482.079000px;}
.y77{bottom:487.969500px;}
.y3b{bottom:491.568000px;}
.y3a{bottom:513.237000px;}
.y53{bottom:515.328000px;}
.y9{bottom:521.466000px;}
.y76{bottom:524.581500px;}
.y39{bottom:534.906000px;}
.y38{bottom:556.573500px;}
.y75{bottom:561.193500px;}
.y52{bottom:566.089500px;}
.y8{bottom:567.792000px;}
.y37{bottom:578.242500px;}
.y51{bottom:587.758500px;}
.y74{bottom:594.444000px;}
.y36{bottom:599.911500px;}
.y7{bottom:600.669000px;}
.y50{bottom:617.215500px;}
.y35{bottom:621.580500px;}
.y6{bottom:633.544500px;}
.y34{bottom:643.249500px;}
.y73{bottom:646.437000px;}
.y4f{bottom:646.674000px;}
.y33{bottom:664.918500px;}
.y72{bottom:668.106000px;}
.y4e{bottom:676.131000px;}
.y1c{bottom:685.237500px;}
.y32{bottom:686.586000px;}
.y71{bottom:689.775000px;}
.y4d{bottom:705.589500px;}
.y1b{bottom:707.505000px;}
.y31{bottom:708.255000px;}
.y5{bottom:723.208500px;}
.y70{bottom:726.387000px;}
.y1a{bottom:729.771000px;}
.y30{bottom:729.924000px;}
.y4c{bottom:735.048000px;}
.y4{bottom:750.108000px;}
.y2f{bottom:751.593000px;}
.y19{bottom:752.037000px;}
.y6f{bottom:763.000500px;}
.y4b{bottom:764.505000px;}
.y2e{bottom:773.262000px;}
.y18{bottom:774.304500px;}
.y6e{bottom:784.668000px;}
.y2d{bottom:794.929500px;}
.y17{bottom:796.570500px;}
.y4a{bottom:797.755500px;}
.y6d{bottom:806.337000px;}
.y2c{bottom:816.598500px;}
.y16{bottom:818.836500px;}
.y6c{bottom:828.006000px;}
.y2b{bottom:838.267500px;}
.y15{bottom:840.505500px;}
.y49{bottom:848.515500px;}
.y6b{bottom:849.675000px;}
.y2a{bottom:859.936500px;}
.y14{bottom:862.771500px;}
.y6a{bottom:871.344000px;}
.y29{bottom:881.605500px;}
.y13{bottom:884.440500px;}
.y20{bottom:886.234500px;}
.y48{bottom:887.943000px;}
.y47{bottom:889.824000px;}
.y69{bottom:893.013000px;}
.y28{bottom:903.274500px;}
.y12{bottom:906.109500px;}
.y1f{bottom:907.902000px;}
.y27{bottom:924.942000px;}
.y11{bottom:928.375500px;}
.y46{bottom:929.052000px;}
.y1e{bottom:929.571000px;}
.y68{bottom:929.625000px;}
.y26{bottom:946.611000px;}
.y10{bottom:950.643000px;}
.y45{bottom:950.721000px;}
.y1d{bottom:951.240000px;}
.y67{bottom:966.238500px;}
.y25{bottom:968.280000px;}
.y44{bottom:972.390000px;}
.yf{bottom:972.909000px;}
.y24{bottom:989.949000px;}
.y43{bottom:994.059000px;}
.ye{bottom:994.578000px;}
.y66{bottom:1002.850500px;}
.y23{bottom:1011.618000px;}
.y42{bottom:1015.728000px;}
.yd{bottom:1016.844000px;}
.y22{bottom:1033.287000px;}
.y65{bottom:1039.462500px;}
.y3{bottom:1051.044000px;}
.y21{bottom:1054.954500px;}
.y64{bottom:1061.131500px;}
.y2{bottom:1072.713000px;}
.y1{bottom:1094.382000px;}
.yc{bottom:1142.382000px;}
.h6{height:49.781453px;}
.h2{height:53.798400px;}
.h5{height:55.376486px;}
.h3{height:64.557900px;}
.h4{height:77.469300px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:108.000000px;}
.x10{left:134.338500px;}
.xd{left:135.690000px;}
.x17{left:141.936000px;}
.xf{left:155.088000px;}
.x7{left:156.438000px;}
.x9{left:180.432000px;}
.x16{left:183.462000px;}
.x12{left:192.316500px;}
.x14{left:196.930500px;}
.x11{left:201.544500px;}
.x3{left:218.566500px;}
.xb{left:221.271000px;}
.x15{left:224.613000px;}
.x4{left:227.973000px;}
.x1{left:232.443000px;}
.x2{left:251.863500px;}
.x13{left:257.284500px;}
.xa{left:259.918500px;}
.x18{left:284.968500px;}
.xe{left:332.026500px;}
.x8{left:349.006500px;}
.x5{left:399.048000px;}
.x6{left:416.763000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:20.812421pt;}
.ls2{letter-spacing:31.880533pt;}
.ws30{word-spacing:-26.014515pt;}
.ws2e{word-spacing:-20.467302pt;}
.ws6{word-spacing:-17.343010pt;}
.ws2f{word-spacing:-17.279249pt;}
.ws29{word-spacing:-2.167876pt;}
.ws2c{word-spacing:-2.040354pt;}
.ws12{word-spacing:-1.594027pt;}
.ws9{word-spacing:-1.466505pt;}
.ws1e{word-spacing:-1.338982pt;}
.ws32{word-spacing:-1.275221pt;}
.ws36{word-spacing:-0.637611pt;}
.ws3f{word-spacing:-0.318805pt;}
.ws2b{word-spacing:-0.127522pt;}
.ws5{word-spacing:-0.091815pt;}
.ws1{word-spacing:-0.063761pt;}
.ws7{word-spacing:0.000000pt;}
.ws1b{word-spacing:0.637611pt;}
.ws4d{word-spacing:0.765133pt;}
.ws43{word-spacing:1.020177pt;}
.ws17{word-spacing:1.147699pt;}
.ws3a{word-spacing:1.594027pt;}
.ws3b{word-spacing:1.657788pt;}
.ws48{word-spacing:1.721549pt;}
.ws49{word-spacing:2.167876pt;}
.ws23{word-spacing:2.231637pt;}
.ws34{word-spacing:2.295398pt;}
.ws47{word-spacing:2.869248pt;}
.ws19{word-spacing:3.060531pt;}
.ws1d{word-spacing:3.251814pt;}
.ws21{word-spacing:3.315575pt;}
.ws2{word-spacing:3.443098pt;}
.wse{word-spacing:3.506859pt;}
.ws39{word-spacing:3.634381pt;}
.ws25{word-spacing:3.889425pt;}
.ws3{word-spacing:4.131706pt;}
.ws26{word-spacing:4.144469pt;}
.ws20{word-spacing:4.335753pt;}
.ws24{word-spacing:4.527036pt;}
.ws2a{word-spacing:4.845841pt;}
.ws46{word-spacing:4.909602pt;}
.ws1c{word-spacing:4.973363pt;}
.ws41{word-spacing:5.037124pt;}
.ws16{word-spacing:5.483452pt;}
.ws1a{word-spacing:5.738496pt;}
.ws40{word-spacing:5.802257pt;}
.ws35{word-spacing:6.121062pt;}
.ws22{word-spacing:6.439868pt;}
.ws28{word-spacing:6.822434pt;}
.ws4a{word-spacing:7.332523pt;}
.ws13{word-spacing:7.396284pt;}
.ws3e{word-spacing:7.460045pt;}
.ws3d{word-spacing:7.587567pt;}
.ws18{word-spacing:7.842611pt;}
.ws38{word-spacing:8.161417pt;}
.ws27{word-spacing:8.288939pt;}
.ws1f{word-spacing:8.416461pt;}
.ws4b{word-spacing:8.735266pt;}
.ws4e{word-spacing:8.799027pt;}
.wsb{word-spacing:9.054071pt;}
.ws44{word-spacing:9.372877pt;}
.ws14{word-spacing:9.564160pt;}
.ws33{word-spacing:9.755443pt;}
.wsc{word-spacing:10.396276pt;}
.ws15{word-spacing:11.285709pt;}
.ws42{word-spacing:11.604514pt;}
.ws3c{word-spacing:12.879735pt;}
.ws45{word-spacing:13.836151pt;}
.ws4f{word-spacing:15.238895pt;}
.ws8{word-spacing:20.722347pt;}
.ws4c{word-spacing:20.745349pt;}
.ws50{word-spacing:23.552125pt;}
.ws0{word-spacing:23.846639pt;}
.ws4{word-spacing:34.338985pt;}
.ws2d{word-spacing:57.703765pt;}
.ws11{word-spacing:63.697306pt;}
.ws37{word-spacing:86.000687pt;}
.ws31{word-spacing:103.200585pt;}
.wsd{word-spacing:388.142788pt;}
.wsf{word-spacing:394.155457pt;}
.wsa{word-spacing:442.805151pt;}
.ws10{word-spacing:477.293512pt;}
._2c{margin-left:-31.880533pt;}
._7{margin-left:-9.500340pt;}
._e{margin-left:-5.993540pt;}
._25{margin-left:-5.037124pt;}
._1{margin-left:-4.016947pt;}
._12{margin-left:-2.869248pt;}
._0{margin-left:-1.976593pt;}
._c{margin-left:-0.956416pt;}
._2{width:1.721549pt;}
._3{width:2.846279pt;}
._1e{width:4.335753pt;}
._1d{width:17.024205pt;}
._34{width:20.085388pt;}
._24{width:22.571418pt;}
._26{width:25.058099pt;}
._22{width:26.142037pt;}
._31{width:27.097801pt;}
._5{width:28.054869pt;}
._20{width:31.051639pt;}
._28{width:32.199339pt;}
._4{width:33.283184pt;}
._21{width:34.367215pt;}
._27{width:38.001596pt;}
._1f{width:40.233233pt;}
._23{width:43.166242pt;}
._35{width:44.505225pt;}
._2f{width:46.800623pt;}
._32{width:52.921685pt;}
._2a{width:57.767526pt;}
._33{width:59.129663pt;}
._8{width:64.000654pt;}
._f{width:67.641411pt;}
._d{width:74.718889pt;}
._16{width:94.940228pt;}
._2d{width:95.832883pt;}
._30{width:103.292400pt;}
._10{width:105.993692pt;}
._9{width:137.874225pt;}
._18{width:156.023330pt;}
._15{width:164.312269pt;}
._1b{width:186.883686pt;}
._b{width:193.958460pt;}
._17{width:195.108864pt;}
._13{width:256.638293pt;}
._11{width:299.298118pt;}
._1c{width:345.712503pt;}
._a{width:396.138426pt;}
._6{width:516.354886pt;}
._19{width:657.710860pt;}
._14{width:820.222362pt;}
._1a{width:840.370859pt;}
._2b{width:1828.348587pt;}
._29{width:1882.800538pt;}
._2e{width:1934.191957pt;}
.fs0{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs2{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y63{bottom:98.054667pt;}
.y62{bottom:117.316000pt;}
.yb{bottom:134.585333pt;}
.y61{bottom:136.577333pt;}
.y82{bottom:145.541333pt;}
.ya{bottom:153.846667pt;}
.y60{bottom:155.838667pt;}
.y81{bottom:164.802667pt;}
.y5f{bottom:175.100000pt;}
.y80{bottom:184.064000pt;}
.y5e{bottom:194.361333pt;}
.y7f{bottom:203.325333pt;}
.y5d{bottom:220.545333pt;}
.y7e{bottom:238.372000pt;}
.y5c{bottom:246.730667pt;}
.y5b{bottom:272.914667pt;}
.y7d{bottom:291.616000pt;}
.y5a{bottom:299.100000pt;}
.y7c{bottom:310.877333pt;}
.y59{bottom:318.361333pt;}
.y41{bottom:321.382667pt;}
.y7b{bottom:330.138667pt;}
.y58{bottom:337.622667pt;}
.y40{bottom:340.644000pt;}
.y7a{bottom:349.400000pt;}
.y57{bottom:356.884000pt;}
.y3f{bottom:359.905333pt;}
.y79{bottom:368.661333pt;}
.y56{bottom:376.144000pt;}
.y3e{bottom:379.165333pt;}
.y3d{bottom:398.426667pt;}
.y78{bottom:401.205333pt;}
.y55{bottom:402.329333pt;}
.y3c{bottom:417.688000pt;}
.y54{bottom:428.514667pt;}
.y77{bottom:433.750667pt;}
.y3b{bottom:436.949333pt;}
.y3a{bottom:456.210667pt;}
.y53{bottom:458.069333pt;}
.y9{bottom:463.525333pt;}
.y76{bottom:466.294667pt;}
.y39{bottom:475.472000pt;}
.y38{bottom:494.732000pt;}
.y75{bottom:498.838667pt;}
.y52{bottom:503.190667pt;}
.y8{bottom:504.704000pt;}
.y37{bottom:513.993333pt;}
.y51{bottom:522.452000pt;}
.y74{bottom:528.394667pt;}
.y36{bottom:533.254667pt;}
.y7{bottom:533.928000pt;}
.y50{bottom:548.636000pt;}
.y35{bottom:552.516000pt;}
.y6{bottom:563.150667pt;}
.y34{bottom:571.777333pt;}
.y73{bottom:574.610667pt;}
.y4f{bottom:574.821333pt;}
.y33{bottom:591.038667pt;}
.y72{bottom:593.872000pt;}
.y4e{bottom:601.005333pt;}
.y1c{bottom:609.100000pt;}
.y32{bottom:610.298667pt;}
.y71{bottom:613.133333pt;}
.y4d{bottom:627.190667pt;}
.y1b{bottom:628.893333pt;}
.y31{bottom:629.560000pt;}
.y5{bottom:642.852000pt;}
.y70{bottom:645.677333pt;}
.y1a{bottom:648.685333pt;}
.y30{bottom:648.821333pt;}
.y4c{bottom:653.376000pt;}
.y4{bottom:666.762667pt;}
.y2f{bottom:668.082667pt;}
.y19{bottom:668.477333pt;}
.y6f{bottom:678.222667pt;}
.y4b{bottom:679.560000pt;}
.y2e{bottom:687.344000pt;}
.y18{bottom:688.270667pt;}
.y6e{bottom:697.482667pt;}
.y2d{bottom:706.604000pt;}
.y17{bottom:708.062667pt;}
.y4a{bottom:709.116000pt;}
.y6d{bottom:716.744000pt;}
.y2c{bottom:725.865333pt;}
.y16{bottom:727.854667pt;}
.y6c{bottom:736.005333pt;}
.y2b{bottom:745.126667pt;}
.y15{bottom:747.116000pt;}
.y49{bottom:754.236000pt;}
.y6b{bottom:755.266667pt;}
.y2a{bottom:764.388000pt;}
.y14{bottom:766.908000pt;}
.y6a{bottom:774.528000pt;}
.y29{bottom:783.649333pt;}
.y13{bottom:786.169333pt;}
.y20{bottom:787.764000pt;}
.y48{bottom:789.282667pt;}
.y47{bottom:790.954667pt;}
.y69{bottom:793.789333pt;}
.y28{bottom:802.910667pt;}
.y12{bottom:805.430667pt;}
.y1f{bottom:807.024000pt;}
.y27{bottom:822.170667pt;}
.y11{bottom:825.222667pt;}
.y46{bottom:825.824000pt;}
.y1e{bottom:826.285333pt;}
.y68{bottom:826.333333pt;}
.y26{bottom:841.432000pt;}
.y10{bottom:845.016000pt;}
.y45{bottom:845.085333pt;}
.y1d{bottom:845.546667pt;}
.y67{bottom:858.878667pt;}
.y25{bottom:860.693333pt;}
.y44{bottom:864.346667pt;}
.yf{bottom:864.808000pt;}
.y24{bottom:879.954667pt;}
.y43{bottom:883.608000pt;}
.ye{bottom:884.069333pt;}
.y66{bottom:891.422667pt;}
.y23{bottom:899.216000pt;}
.y42{bottom:902.869333pt;}
.yd{bottom:903.861333pt;}
.y22{bottom:918.477333pt;}
.y65{bottom:923.966667pt;}
.y3{bottom:934.261333pt;}
.y21{bottom:937.737333pt;}
.y64{bottom:943.228000pt;}
.y2{bottom:953.522667pt;}
.y1{bottom:972.784000pt;}
.yc{bottom:1015.450667pt;}
.h6{height:44.250180pt;}
.h2{height:47.820800pt;}
.h5{height:49.223543pt;}
.h3{height:57.384800pt;}
.h4{height:68.861600pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:96.000000pt;}
.x10{left:119.412000pt;}
.xd{left:120.613333pt;}
.x17{left:126.165333pt;}
.xf{left:137.856000pt;}
.x7{left:139.056000pt;}
.x9{left:160.384000pt;}
.x16{left:163.077333pt;}
.x12{left:170.948000pt;}
.x14{left:175.049333pt;}
.x11{left:179.150667pt;}
.x3{left:194.281333pt;}
.xb{left:196.685333pt;}
.x15{left:199.656000pt;}
.x4{left:202.642667pt;}
.x1{left:206.616000pt;}
.x2{left:223.878667pt;}
.x13{left:228.697333pt;}
.xa{left:231.038667pt;}
.x18{left:253.305333pt;}
.xe{left:295.134667pt;}
.x8{left:310.228000pt;}
.x5{left:354.709333pt;}
.x6{left:370.456000pt;}
}




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