
    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_d55cdb154a21294c076cfcc3.woff')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_56bf57a30bff774d5ad5311e.woff')format("woff");}.ff2{font-family:ff2;line-height:0.858398;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_774c23c9e620eb7382be8804.woff')format("woff");}.ff3{font-family:ff3;line-height:0.910645;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;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws5e{word-spacing:-55.944000px;}
.ws7{word-spacing:-38.799000px;}
.ws53{word-spacing:-38.655000px;}
.ws75{word-spacing:-38.651400px;}
.ws2b{word-spacing:-38.640600px;}
.ws5{word-spacing:-38.440800px;}
.ws80{word-spacing:-38.439900px;}
.ws3e{word-spacing:-38.432700px;}
.wsf{word-spacing:-38.431200px;}
.ws7b{word-spacing:-38.364300px;}
.ws24{word-spacing:-38.358000px;}
.ws13{word-spacing:-38.166000px;}
.ws1c{word-spacing:-38.160000px;}
.ws7f{word-spacing:-38.157300px;}
.ws49{word-spacing:-38.154600px;}
.ws5a{word-spacing:-38.142900px;}
.ws2{word-spacing:-38.081700px;}
.ws0{word-spacing:-37.944000px;}
.ws19{word-spacing:-37.942200px;}
.ws28{word-spacing:-37.941900px;}
.ws4{word-spacing:-37.940400px;}
.ws3{word-spacing:-37.937400px;}
.ws7a{word-spacing:-37.933200px;}
.ws6{word-spacing:-37.927200px;}
.ws7d{word-spacing:-37.914900px;}
.ws7e{word-spacing:-37.872000px;}
.ws57{word-spacing:-37.724400px;}
.ws37{word-spacing:-37.718400px;}
.ws74{word-spacing:-37.440000px;}
.ws3c{word-spacing:-37.422000px;}
.ws3d{word-spacing:-37.224000px;}
.ws52{word-spacing:-37.215000px;}
.ws48{word-spacing:-36.722400px;}
.ws14{word-spacing:-36.720000px;}
.ws17{word-spacing:-36.716400px;}
.ws7c{word-spacing:-36.695700px;}
.ws46{word-spacing:-36.502200px;}
.ws35{word-spacing:-36.282600px;}
.ws2d{word-spacing:-36.279000px;}
.ws61{word-spacing:-35.992800px;}
.ws16{word-spacing:-35.782200px;}
.ws4a{word-spacing:-35.560800px;}
.ws2e{word-spacing:-35.276400px;}
.ws6c{word-spacing:-35.274600px;}
.ws62{word-spacing:-35.064000px;}
.ws5f{word-spacing:-35.058000px;}
.ws18{word-spacing:-35.057700px;}
.ws47{word-spacing:-35.056800px;}
.ws71{word-spacing:-34.128000px;}
.ws41{word-spacing:-33.624000px;}
.ws38{word-spacing:-33.622200px;}
.ws44{word-spacing:-33.621000px;}
.ws78{word-spacing:-33.396000px;}
.ws34{word-spacing:-33.120000px;}
.ws50{word-spacing:-33.116400px;}
.ws76{word-spacing:-32.899200px;}
.ws3b{word-spacing:-32.392800px;}
.ws1e{word-spacing:-32.245200px;}
.ws33{word-spacing:-32.190000px;}
.ws5c{word-spacing:-32.174400px;}
.ws3f{word-spacing:-30.949200px;}
.ws31{word-spacing:-30.733200px;}
.ws60{word-spacing:-30.515400px;}
.ws43{word-spacing:-30.223200px;}
.ws2f{word-spacing:-30.024000px;}
.ws12{word-spacing:-29.795400px;}
.ws58{word-spacing:-29.520000px;}
.wsd{word-spacing:-29.299200px;}
.ws4d{word-spacing:-28.806000px;}
.ws63{word-spacing:-28.575000px;}
.ws23{word-spacing:-28.495800px;}
.ws5b{word-spacing:-28.086000px;}
.ws3a{word-spacing:-28.063800px;}
.ws36{word-spacing:-28.062300px;}
.ws40{word-spacing:-27.635400px;}
.ws25{word-spacing:-27.144000px;}
.wse{word-spacing:-26.640000px;}
.ws8{word-spacing:-26.411100px;}
.ws32{word-spacing:-26.340300px;}
.ws29{word-spacing:-25.920000px;}
.ws4b{word-spacing:-25.704000px;}
.ws9{word-spacing:-25.701300px;}
.ws4c{word-spacing:-25.693200px;}
.ws77{word-spacing:-25.691400px;}
.ws6a{word-spacing:-24.764400px;}
.ws68{word-spacing:-24.480000px;}
.ws39{word-spacing:-24.474600px;}
.ws45{word-spacing:-24.264000px;}
.ws1a{word-spacing:-24.246600px;}
.ws27{word-spacing:-23.544000px;}
.ws55{word-spacing:-23.542200px;}
.ws42{word-spacing:-22.815000px;}
.ws6e{word-spacing:-22.813200px;}
.ws56{word-spacing:-21.886800px;}
.ws21{word-spacing:-21.378000px;}
.ws1b{word-spacing:-21.161700px;}
.ws1d{word-spacing:-21.007800px;}
.ws15{word-spacing:-20.160000px;}
.ws6f{word-spacing:-19.932600px;}
.ws64{word-spacing:-18.992700px;}
.ws22{word-spacing:-18.272100px;}
.ws30{word-spacing:-17.267400px;}
.ws72{word-spacing:-16.560000px;}
.ws59{word-spacing:-16.125300px;}
.ws79{word-spacing:-15.622200px;}
.ws6b{word-spacing:-13.678200px;}
.ws4e{word-spacing:-13.248600px;}
.ws4f{word-spacing:-13.244400px;}
.ws5d{word-spacing:-12.736800px;}
.ws73{word-spacing:-12.727800px;}
.ws2c{word-spacing:-12.024000px;}
.ws67{word-spacing:-11.945700px;}
.ws69{word-spacing:-11.793600px;}
.ws65{word-spacing:-10.777500px;}
.ws6d{word-spacing:-10.573200px;}
.wsb{word-spacing:-9.125400px;}
.ws66{word-spacing:-7.912800px;}
.ws26{word-spacing:-5.544000px;}
.ws70{word-spacing:-5.326200px;}
.ws2a{word-spacing:-3.594600px;}
.ws54{word-spacing:-2.655000px;}
.wsc{word-spacing:0.714000px;}
.ws51{word-spacing:3.600000px;}
.ws20{word-spacing:5.256000px;}
.wsa{word-spacing:7.200000px;}
.ws1f{word-spacing:20.736000px;}
.ws11{word-spacing:61.418700px;}
.ws10{word-spacing:61.928100px;}
.ws1{word-spacing:1037.484900px;}
._19{margin-left:-2.100600px;}
._2{margin-left:-1.083900px;}
._0{width:1.076400px;}
._24{width:2.177400px;}
._1{width:18.968400px;}
._1a{width:20.176200px;}
._c{width:21.363600px;}
._1e{width:22.600800px;}
._1c{width:23.610000px;}
._17{width:24.775500px;}
._f{width:25.923900px;}
._7{width:27.719400px;}
._4{width:29.227800px;}
._9{width:31.176000px;}
._d{width:33.038100px;}
._12{width:34.066800px;}
._e{width:35.848500px;}
._b{width:37.152000px;}
._11{width:38.946000px;}
._1f{width:40.582800px;}
._29{width:41.808600px;}
._1d{width:43.152000px;}
._20{width:44.355900px;}
._16{width:45.360000px;}
._26{width:46.470600px;}
._5{width:48.024000px;}
._28{width:49.680000px;}
._1b{width:51.950400px;}
._14{width:53.562600px;}
._13{width:54.651900px;}
._8{width:55.863600px;}
._6{width:57.773100px;}
._3{width:59.453700px;}
._23{width:60.690000px;}
._10{width:62.568000px;}
._18{width:63.868500px;}
._a{width:72.172800px;}
._25{width:81.016200px;}
._21{width:86.616000px;}
._22{width:88.072200px;}
._27{width:91.110600px;}
._15{width:106.770600px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:12.240000px;}
.y3{bottom:63.975000px;}
.y74{bottom:123.015000px;}
.y29{bottom:141.736500px;}
.y28{bottom:162.436500px;}
.y73{bottom:164.596500px;}
.y55{bottom:165.315000px;}
.y27{bottom:183.136500px;}
.y54{bottom:186.015000px;}
.y26{bottom:203.836500px;}
.y72{bottom:206.175000px;}
.y53{bottom:206.715000px;}
.y71{bottom:226.875000px;}
.y52{bottom:227.236500px;}
.y25{bottom:245.415000px;}
.y51{bottom:247.936500px;}
.y24{bottom:266.115000px;}
.y50{bottom:268.636500px;}
.y23{bottom:286.815000px;}
.y4f{bottom:289.336500px;}
.y22{bottom:307.515000px;}
.y4e{bottom:310.036500px;}
.y70{bottom:310.396500px;}
.y21{bottom:328.215000px;}
.y4d{bottom:330.736500px;}
.y6f{bottom:331.096500px;}
.y20{bottom:348.915000px;}
.y4c{bottom:351.436500px;}
.y6e{bottom:351.795000px;}
.y1f{bottom:369.615000px;}
.y4b{bottom:372.136500px;}
.y6d{bottom:372.496500px;}
.y1e{bottom:390.315000px;}
.y4a{bottom:392.836500px;}
.y6c{bottom:393.196500px;}
.y49{bottom:413.536500px;}
.y1d{bottom:432.075000px;}
.y48{bottom:434.236500px;}
.y6b{bottom:434.775000px;}
.y1c{bottom:452.775000px;}
.y6a{bottom:455.475000px;}
.y1b{bottom:473.475000px;}
.y47{bottom:475.996500px;}
.y69{bottom:476.175000px;}
.y46{bottom:496.695000px;}
.y68{bottom:496.875000px;}
.y1a{bottom:515.236500px;}
.y45{bottom:517.396500px;}
.y67{bottom:517.575000px;}
.y19{bottom:535.936500px;}
.y44{bottom:538.096500px;}
.y66{bottom:538.275000px;}
.y18{bottom:556.636500px;}
.y43{bottom:558.796500px;}
.y65{bottom:558.975000px;}
.y17{bottom:577.336500px;}
.y42{bottom:579.496500px;}
.y64{bottom:579.675000px;}
.y16{bottom:598.036500px;}
.y41{bottom:600.195000px;}
.y63{bottom:600.375000px;}
.y15{bottom:618.736500px;}
.y40{bottom:620.896500px;}
.y62{bottom:621.075000px;}
.y14{bottom:639.436500px;}
.y3f{bottom:641.596500px;}
.y61{bottom:641.775000px;}
.y60{bottom:662.475000px;}
.y13{bottom:681.015000px;}
.y3e{bottom:683.175000px;}
.y12{bottom:701.715000px;}
.y3d{bottom:703.875000px;}
.y11{bottom:722.415000px;}
.y3c{bottom:724.575000px;}
.y3b{bottom:745.275000px;}
.y10{bottom:764.175000px;}
.y3a{bottom:765.975000px;}
.yf{bottom:784.875000px;}
.y39{bottom:786.675000px;}
.ye{bottom:805.575000px;}
.y38{bottom:807.375000px;}
.yd{bottom:826.275000px;}
.y37{bottom:828.075000px;}
.yc{bottom:846.975000px;}
.y36{bottom:848.775000px;}
.yb{bottom:867.675000px;}
.y35{bottom:869.475000px;}
.ya{bottom:888.375000px;}
.y34{bottom:890.175000px;}
.y33{bottom:910.875000px;}
.y9{bottom:930.136500px;}
.y32{bottom:931.575000px;}
.y31{bottom:952.275000px;}
.y5f{bottom:952.636500px;}
.y30{bottom:972.975000px;}
.y5e{bottom:973.336500px;}
.y2f{bottom:993.675000px;}
.y5d{bottom:994.036500px;}
.y2e{bottom:1014.375000px;}
.y5c{bottom:1014.736500px;}
.y8{bottom:1034.536500px;}
.y2d{bottom:1035.075000px;}
.y5b{bottom:1035.436500px;}
.y2c{bottom:1055.775000px;}
.y5a{bottom:1056.136500px;}
.y7{bottom:1076.295000px;}
.y2b{bottom:1076.475000px;}
.y59{bottom:1076.836500px;}
.y2a{bottom:1097.175000px;}
.y58{bottom:1097.536500px;}
.y6{bottom:1117.875000px;}
.y57{bottom:1118.236500px;}
.y56{bottom:1138.936500px;}
.y5{bottom:1159.636500px;}
.y2{bottom:1202.655000px;}
.y1{bottom:1224.795000px;}
.h3{height:32.700000px;}
.h2{height:48.796875px;}
.h4{height:48.972656px;}
.h5{height:50.027344px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:710.175000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:11.760000px;}
.x1{left:124.920000px;}
.x3{left:127.200000px;}
.xa{left:129.600000px;}
.x2{left:160.560000px;}
.x9{left:184.138500px;}
.x6{left:317.160000px;}
.x5{left:320.400000px;}
.x7{left:322.738500px;}
.x8{left:367.738500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws5e{word-spacing:-49.728000pt;}
.ws7{word-spacing:-34.488000pt;}
.ws53{word-spacing:-34.360000pt;}
.ws75{word-spacing:-34.356800pt;}
.ws2b{word-spacing:-34.347200pt;}
.ws5{word-spacing:-34.169600pt;}
.ws80{word-spacing:-34.168800pt;}
.ws3e{word-spacing:-34.162400pt;}
.wsf{word-spacing:-34.161067pt;}
.ws7b{word-spacing:-34.101600pt;}
.ws24{word-spacing:-34.096000pt;}
.ws13{word-spacing:-33.925333pt;}
.ws1c{word-spacing:-33.920000pt;}
.ws7f{word-spacing:-33.917600pt;}
.ws49{word-spacing:-33.915200pt;}
.ws5a{word-spacing:-33.904800pt;}
.ws2{word-spacing:-33.850400pt;}
.ws0{word-spacing:-33.728000pt;}
.ws19{word-spacing:-33.726400pt;}
.ws28{word-spacing:-33.726133pt;}
.ws4{word-spacing:-33.724800pt;}
.ws3{word-spacing:-33.722133pt;}
.ws7a{word-spacing:-33.718400pt;}
.ws6{word-spacing:-33.713067pt;}
.ws7d{word-spacing:-33.702133pt;}
.ws7e{word-spacing:-33.664000pt;}
.ws57{word-spacing:-33.532800pt;}
.ws37{word-spacing:-33.527467pt;}
.ws74{word-spacing:-33.280000pt;}
.ws3c{word-spacing:-33.264000pt;}
.ws3d{word-spacing:-33.088000pt;}
.ws52{word-spacing:-33.080000pt;}
.ws48{word-spacing:-32.642133pt;}
.ws14{word-spacing:-32.640000pt;}
.ws17{word-spacing:-32.636800pt;}
.ws7c{word-spacing:-32.618400pt;}
.ws46{word-spacing:-32.446400pt;}
.ws35{word-spacing:-32.251200pt;}
.ws2d{word-spacing:-32.248000pt;}
.ws61{word-spacing:-31.993600pt;}
.ws16{word-spacing:-31.806400pt;}
.ws4a{word-spacing:-31.609600pt;}
.ws2e{word-spacing:-31.356800pt;}
.ws6c{word-spacing:-31.355200pt;}
.ws62{word-spacing:-31.168000pt;}
.ws5f{word-spacing:-31.162667pt;}
.ws18{word-spacing:-31.162400pt;}
.ws47{word-spacing:-31.161600pt;}
.ws71{word-spacing:-30.336000pt;}
.ws41{word-spacing:-29.888000pt;}
.ws38{word-spacing:-29.886400pt;}
.ws44{word-spacing:-29.885333pt;}
.ws78{word-spacing:-29.685333pt;}
.ws34{word-spacing:-29.440000pt;}
.ws50{word-spacing:-29.436800pt;}
.ws76{word-spacing:-29.243733pt;}
.ws3b{word-spacing:-28.793600pt;}
.ws1e{word-spacing:-28.662400pt;}
.ws33{word-spacing:-28.613333pt;}
.ws5c{word-spacing:-28.599467pt;}
.ws3f{word-spacing:-27.510400pt;}
.ws31{word-spacing:-27.318400pt;}
.ws60{word-spacing:-27.124800pt;}
.ws43{word-spacing:-26.865067pt;}
.ws2f{word-spacing:-26.688000pt;}
.ws12{word-spacing:-26.484800pt;}
.ws58{word-spacing:-26.240000pt;}
.wsd{word-spacing:-26.043733pt;}
.ws4d{word-spacing:-25.605333pt;}
.ws63{word-spacing:-25.400000pt;}
.ws23{word-spacing:-25.329600pt;}
.ws5b{word-spacing:-24.965333pt;}
.ws3a{word-spacing:-24.945600pt;}
.ws36{word-spacing:-24.944267pt;}
.ws40{word-spacing:-24.564800pt;}
.ws25{word-spacing:-24.128000pt;}
.wse{word-spacing:-23.680000pt;}
.ws8{word-spacing:-23.476533pt;}
.ws32{word-spacing:-23.413600pt;}
.ws29{word-spacing:-23.040000pt;}
.ws4b{word-spacing:-22.848000pt;}
.ws9{word-spacing:-22.845600pt;}
.ws4c{word-spacing:-22.838400pt;}
.ws77{word-spacing:-22.836800pt;}
.ws6a{word-spacing:-22.012800pt;}
.ws68{word-spacing:-21.760000pt;}
.ws39{word-spacing:-21.755200pt;}
.ws45{word-spacing:-21.568000pt;}
.ws1a{word-spacing:-21.552533pt;}
.ws27{word-spacing:-20.928000pt;}
.ws55{word-spacing:-20.926400pt;}
.ws42{word-spacing:-20.280000pt;}
.ws6e{word-spacing:-20.278400pt;}
.ws56{word-spacing:-19.454933pt;}
.ws21{word-spacing:-19.002667pt;}
.ws1b{word-spacing:-18.810400pt;}
.ws1d{word-spacing:-18.673600pt;}
.ws15{word-spacing:-17.920000pt;}
.ws6f{word-spacing:-17.717867pt;}
.ws64{word-spacing:-16.882400pt;}
.ws22{word-spacing:-16.241867pt;}
.ws30{word-spacing:-15.348800pt;}
.ws72{word-spacing:-14.720000pt;}
.ws59{word-spacing:-14.333600pt;}
.ws79{word-spacing:-13.886400pt;}
.ws6b{word-spacing:-12.158400pt;}
.ws4e{word-spacing:-11.776533pt;}
.ws4f{word-spacing:-11.772800pt;}
.ws5d{word-spacing:-11.321600pt;}
.ws73{word-spacing:-11.313600pt;}
.ws2c{word-spacing:-10.688000pt;}
.ws67{word-spacing:-10.618400pt;}
.ws69{word-spacing:-10.483200pt;}
.ws65{word-spacing:-9.580000pt;}
.ws6d{word-spacing:-9.398400pt;}
.wsb{word-spacing:-8.111467pt;}
.ws66{word-spacing:-7.033600pt;}
.ws26{word-spacing:-4.928000pt;}
.ws70{word-spacing:-4.734400pt;}
.ws2a{word-spacing:-3.195200pt;}
.ws54{word-spacing:-2.360000pt;}
.wsc{word-spacing:0.634667pt;}
.ws51{word-spacing:3.200000pt;}
.ws20{word-spacing:4.672000pt;}
.wsa{word-spacing:6.400000pt;}
.ws1f{word-spacing:18.432000pt;}
.ws11{word-spacing:54.594400pt;}
.ws10{word-spacing:55.047200pt;}
.ws1{word-spacing:922.208800pt;}
._19{margin-left:-1.867200pt;}
._2{margin-left:-0.963467pt;}
._0{width:0.956800pt;}
._24{width:1.935467pt;}
._1{width:16.860800pt;}
._1a{width:17.934400pt;}
._c{width:18.989867pt;}
._1e{width:20.089600pt;}
._1c{width:20.986667pt;}
._17{width:22.022667pt;}
._f{width:23.043467pt;}
._7{width:24.639467pt;}
._4{width:25.980267pt;}
._9{width:27.712000pt;}
._d{width:29.367200pt;}
._12{width:30.281600pt;}
._e{width:31.865333pt;}
._b{width:33.024000pt;}
._11{width:34.618667pt;}
._1f{width:36.073600pt;}
._29{width:37.163200pt;}
._1d{width:38.357333pt;}
._20{width:39.427467pt;}
._16{width:40.320000pt;}
._26{width:41.307200pt;}
._5{width:42.688000pt;}
._28{width:44.160000pt;}
._1b{width:46.178133pt;}
._14{width:47.611200pt;}
._13{width:48.579467pt;}
._8{width:49.656533pt;}
._6{width:51.353867pt;}
._3{width:52.847733pt;}
._23{width:53.946667pt;}
._10{width:55.616000pt;}
._18{width:56.772000pt;}
._a{width:64.153600pt;}
._25{width:72.014400pt;}
._21{width:76.992000pt;}
._22{width:78.286400pt;}
._27{width:80.987200pt;}
._15{width:94.907200pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:10.880000pt;}
.y3{bottom:56.866667pt;}
.y74{bottom:109.346667pt;}
.y29{bottom:125.988000pt;}
.y28{bottom:144.388000pt;}
.y73{bottom:146.308000pt;}
.y55{bottom:146.946667pt;}
.y27{bottom:162.788000pt;}
.y54{bottom:165.346667pt;}
.y26{bottom:181.188000pt;}
.y72{bottom:183.266667pt;}
.y53{bottom:183.746667pt;}
.y71{bottom:201.666667pt;}
.y52{bottom:201.988000pt;}
.y25{bottom:218.146667pt;}
.y51{bottom:220.388000pt;}
.y24{bottom:236.546667pt;}
.y50{bottom:238.788000pt;}
.y23{bottom:254.946667pt;}
.y4f{bottom:257.188000pt;}
.y22{bottom:273.346667pt;}
.y4e{bottom:275.588000pt;}
.y70{bottom:275.908000pt;}
.y21{bottom:291.746667pt;}
.y4d{bottom:293.988000pt;}
.y6f{bottom:294.308000pt;}
.y20{bottom:310.146667pt;}
.y4c{bottom:312.388000pt;}
.y6e{bottom:312.706667pt;}
.y1f{bottom:328.546667pt;}
.y4b{bottom:330.788000pt;}
.y6d{bottom:331.108000pt;}
.y1e{bottom:346.946667pt;}
.y4a{bottom:349.188000pt;}
.y6c{bottom:349.508000pt;}
.y49{bottom:367.588000pt;}
.y1d{bottom:384.066667pt;}
.y48{bottom:385.988000pt;}
.y6b{bottom:386.466667pt;}
.y1c{bottom:402.466667pt;}
.y6a{bottom:404.866667pt;}
.y1b{bottom:420.866667pt;}
.y47{bottom:423.108000pt;}
.y69{bottom:423.266667pt;}
.y46{bottom:441.506667pt;}
.y68{bottom:441.666667pt;}
.y1a{bottom:457.988000pt;}
.y45{bottom:459.908000pt;}
.y67{bottom:460.066667pt;}
.y19{bottom:476.388000pt;}
.y44{bottom:478.308000pt;}
.y66{bottom:478.466667pt;}
.y18{bottom:494.788000pt;}
.y43{bottom:496.708000pt;}
.y65{bottom:496.866667pt;}
.y17{bottom:513.188000pt;}
.y42{bottom:515.108000pt;}
.y64{bottom:515.266667pt;}
.y16{bottom:531.588000pt;}
.y41{bottom:533.506667pt;}
.y63{bottom:533.666667pt;}
.y15{bottom:549.988000pt;}
.y40{bottom:551.908000pt;}
.y62{bottom:552.066667pt;}
.y14{bottom:568.388000pt;}
.y3f{bottom:570.308000pt;}
.y61{bottom:570.466667pt;}
.y60{bottom:588.866667pt;}
.y13{bottom:605.346667pt;}
.y3e{bottom:607.266667pt;}
.y12{bottom:623.746667pt;}
.y3d{bottom:625.666667pt;}
.y11{bottom:642.146667pt;}
.y3c{bottom:644.066667pt;}
.y3b{bottom:662.466667pt;}
.y10{bottom:679.266667pt;}
.y3a{bottom:680.866667pt;}
.yf{bottom:697.666667pt;}
.y39{bottom:699.266667pt;}
.ye{bottom:716.066667pt;}
.y38{bottom:717.666667pt;}
.yd{bottom:734.466667pt;}
.y37{bottom:736.066667pt;}
.yc{bottom:752.866667pt;}
.y36{bottom:754.466667pt;}
.yb{bottom:771.266667pt;}
.y35{bottom:772.866667pt;}
.ya{bottom:789.666667pt;}
.y34{bottom:791.266667pt;}
.y33{bottom:809.666667pt;}
.y9{bottom:826.788000pt;}
.y32{bottom:828.066667pt;}
.y31{bottom:846.466667pt;}
.y5f{bottom:846.788000pt;}
.y30{bottom:864.866667pt;}
.y5e{bottom:865.188000pt;}
.y2f{bottom:883.266667pt;}
.y5d{bottom:883.588000pt;}
.y2e{bottom:901.666667pt;}
.y5c{bottom:901.988000pt;}
.y8{bottom:919.588000pt;}
.y2d{bottom:920.066667pt;}
.y5b{bottom:920.388000pt;}
.y2c{bottom:938.466667pt;}
.y5a{bottom:938.788000pt;}
.y7{bottom:956.706667pt;}
.y2b{bottom:956.866667pt;}
.y59{bottom:957.188000pt;}
.y2a{bottom:975.266667pt;}
.y58{bottom:975.588000pt;}
.y6{bottom:993.666667pt;}
.y57{bottom:993.988000pt;}
.y56{bottom:1012.388000pt;}
.y5{bottom:1030.788000pt;}
.y2{bottom:1069.026667pt;}
.y1{bottom:1088.706667pt;}
.h3{height:29.066667pt;}
.h2{height:43.375000pt;}
.h4{height:43.531250pt;}
.h5{height:44.468750pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:631.266667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:10.453333pt;}
.x1{left:111.040000pt;}
.x3{left:113.066667pt;}
.xa{left:115.200000pt;}
.x2{left:142.720000pt;}
.x9{left:163.678667pt;}
.x6{left:281.920000pt;}
.x5{left:284.800000pt;}
.x7{left:286.878667pt;}
.x8{left:326.878667pt;}
}




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