
    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_7b3152603d23912d37e45fd4.woff')format("woff");}.ff1{font-family:ff1;line-height:1.106934;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_9a0c4d40b1e72559baa6e55c.woff')format("woff");}.ff2{font-family:ff2;line-height:0.800337;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_bd1354d780dadd6846c9904b.woff')format("woff");}.ff3{font-family:ff3;line-height:0.965820;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_65eec7bc98e21776ccb47ec4.woff')format("woff");}.ff4{font-family:ff4;line-height:1.113281;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_ea390daeb9b1e3e4d69b7887.woff')format("woff");}.ff5{font-family:ff5;line-height:1.104492;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_17bac2bcaa11d1313224af9c.woff')format("woff");}.ff6{font-family:ff6;line-height:1.165527;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_bd1354d780dadd6846c9904b.woff')format("woff");}.ff7{font-family:ff7;line-height:0.965820;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_9a0c4d40b1e72559baa6e55c.woff')format("woff");}.ff8{font-family:ff8;line-height:0.800337;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_9a0c4d40b1e72559baa6e55c.woff')format("woff");}.ff9{font-family:ff9;line-height:0.800337;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_2a92be664bf7212de5bbb301.woff')format("woff");}.ffa{font-family:ffa;line-height:0.965820;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_3bfa15a84becde11a5cad38b.woff')format("woff");}.ffb{font-family:ffb;line-height:0.940918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_aa60e4d28bccbf4096de5897.woff')format("woff");}.ffc{font-family:ffc;line-height:1.120605;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;}
.m2{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,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);}
.m3{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;}
.ls1{letter-spacing:0.007200px;}
.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;}
}
.ws39{word-spacing:-60.000000px;}
.ws0{word-spacing:-19.602000px;}
.ws1{word-spacing:-16.680000px;}
.ws3a{word-spacing:-13.344000px;}
.ws2d{word-spacing:-3.960000px;}
.ws1e{word-spacing:-3.300000px;}
.ws11{word-spacing:-3.240000px;}
.ws36{word-spacing:-2.760000px;}
.ws19{word-spacing:-2.340000px;}
.ws9{word-spacing:-2.220000px;}
.ws3f{word-spacing:-2.160000px;}
.ws3c{word-spacing:-2.100000px;}
.ws38{word-spacing:-1.980000px;}
.ws45{word-spacing:-1.872000px;}
.ws30{word-spacing:-1.800000px;}
.ws4a{word-spacing:-1.488000px;}
.wsf{word-spacing:-1.320000px;}
.ws2f{word-spacing:-1.260000px;}
.ws1a{word-spacing:-1.200000px;}
.wsd{word-spacing:-1.140000px;}
.ws35{word-spacing:-0.900000px;}
.ws4{word-spacing:-0.840000px;}
.ws22{word-spacing:-0.660000px;}
.ws1d{word-spacing:-0.480000px;}
.ws34{word-spacing:-0.420000px;}
.ws10{word-spacing:-0.300000px;}
.ws40{word-spacing:-0.240000px;}
.ws14{word-spacing:-0.120000px;}
.ws2{word-spacing:0.000000px;}
.ws3b{word-spacing:0.060000px;}
.ws24{word-spacing:0.120000px;}
.ws1c{word-spacing:0.240000px;}
.ws27{word-spacing:0.300000px;}
.wsc{word-spacing:0.360000px;}
.ws3e{word-spacing:0.420000px;}
.ws3{word-spacing:0.480000px;}
.ws28{word-spacing:0.600000px;}
.ws42{word-spacing:0.720000px;}
.ws17{word-spacing:0.840000px;}
.ws49{word-spacing:1.056000px;}
.ws15{word-spacing:1.140000px;}
.ws21{word-spacing:1.200000px;}
.ws26{word-spacing:1.260000px;}
.ws25{word-spacing:1.500000px;}
.ws2a{word-spacing:1.680000px;}
.ws48{word-spacing:1.872000px;}
.ws1f{word-spacing:1.920000px;}
.wsb{word-spacing:2.280000px;}
.ws13{word-spacing:2.400000px;}
.ws31{word-spacing:2.460000px;}
.ws3d{word-spacing:2.580000px;}
.ws41{word-spacing:2.880000px;}
.ws2b{word-spacing:2.940000px;}
.ws47{word-spacing:3.024000px;}
.wse{word-spacing:3.060000px;}
.ws1b{word-spacing:3.240000px;}
.ws7{word-spacing:3.420000px;}
.ws18{word-spacing:3.780000px;}
.ws12{word-spacing:4.020000px;}
.ws46{word-spacing:4.224000px;}
.ws23{word-spacing:4.320000px;}
.ws6{word-spacing:4.380000px;}
.ws43{word-spacing:4.440000px;}
.ws8{word-spacing:4.500000px;}
.ws2c{word-spacing:4.560000px;}
.ws44{word-spacing:4.704000px;}
.ws32{word-spacing:4.740000px;}
.wsa{word-spacing:4.920000px;}
.ws37{word-spacing:5.040000px;}
.ws2e{word-spacing:5.400000px;}
.ws5{word-spacing:5.640000px;}
.ws20{word-spacing:5.820000px;}
.ws16{word-spacing:6.300000px;}
.ws29{word-spacing:7.020000px;}
.ws33{word-spacing:7.560000px;}
._1{margin-left:-7.142400px;}
._7{margin-left:-5.803200px;}
._2{margin-left:-3.772800px;}
._a{margin-left:-2.411400px;}
._3{margin-left:-1.194600px;}
._6{width:1.284000px;}
._4{width:2.349000px;}
._5{width:3.417000px;}
._12{width:6.502200px;}
._11{width:7.633800px;}
._b{width:76.430400px;}
._0{width:81.597600px;}
._c{width:166.228200px;}
._8{width:171.018000px;}
._9{width:196.992000px;}
._d{width:314.455800px;}
._e{width:335.759400px;}
._10{width:647.992800px;}
._f{width:709.130400px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(79,92,214);}
.fc0{color:rgb(138,149,151);}
.fs0{font-size:45.000000px;}
.fs7{font-size:48.000000px;}
.fs6{font-size:51.000000px;}
.fs3{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs5{font-size:78.000000px;}
.fs4{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:54.000000px;}
.y1{bottom:56.179800px;}
.y25{bottom:117.000000px;}
.y24{bottom:138.000000px;}
.y39{bottom:159.000000px;}
.y23{bottom:180.000000px;}
.y44{bottom:196.500000px;}
.y22{bottom:201.000000px;}
.y21{bottom:222.000000px;}
.y20{bottom:243.000000px;}
.y1f{bottom:264.000000px;}
.y54{bottom:283.500000px;}
.y1e{bottom:285.000000px;}
.y53{bottom:298.500000px;}
.y41{bottom:300.000000px;}
.y1d{bottom:306.000000px;}
.y52{bottom:318.000000px;}
.y1c{bottom:327.000000px;}
.y51{bottom:333.000000px;}
.y1b{bottom:348.000000px;}
.y50{bottom:352.500000px;}
.y40{bottom:356.995650px;}
.y4f{bottom:367.500000px;}
.y1a{bottom:369.000000px;}
.y3f{bottom:378.277950px;}
.y38{bottom:384.000000px;}
.y4e{bottom:387.000000px;}
.y3e{bottom:399.560250px;}
.y4d{bottom:402.000000px;}
.y19{bottom:417.000000px;}
.y3d{bottom:420.842700px;}
.y43{bottom:429.000000px;}
.y37{bottom:432.000000px;}
.y4c{bottom:436.500000px;}
.y18{bottom:444.000000px;}
.y4b{bottom:451.500000px;}
.y36{bottom:453.000000px;}
.y4a{bottom:466.500000px;}
.y35{bottom:474.000000px;}
.y49{bottom:486.000000px;}
.y17{bottom:495.000000px;}
.y48{bottom:501.000000px;}
.y34{bottom:516.000000px;}
.y47{bottom:520.500000px;}
.y16{bottom:537.000000px;}
.y46{bottom:540.000000px;}
.y15{bottom:558.000000px;}
.y14{bottom:579.000000px;}
.y13{bottom:600.000000px;}
.y12{bottom:621.000000px;}
.y11{bottom:642.000000px;}
.y42{bottom:654.000000px;}
.y10{bottom:663.000000px;}
.yf{bottom:684.000000px;}
.ye{bottom:705.000000px;}
.yd{bottom:726.000000px;}
.y33{bottom:747.000000px;}
.y32{bottom:768.000000px;}
.y3c{bottom:783.000000px;}
.y31{bottom:789.000000px;}
.yc{bottom:810.000000px;}
.y30{bottom:831.000000px;}
.yb{bottom:832.500000px;}
.y2f{bottom:852.000000px;}
.ya{bottom:873.000000px;}
.y2e{bottom:894.000000px;}
.y9{bottom:895.500000px;}
.y2d{bottom:915.000000px;}
.y8{bottom:936.000000px;}
.y45{bottom:951.000000px;}
.y2c{bottom:957.000000px;}
.y7{bottom:958.500000px;}
.y2b{bottom:978.000000px;}
.y2a{bottom:999.000000px;}
.y6{bottom:1010.027400px;}
.y29{bottom:1020.000000px;}
.y5{bottom:1040.027400px;}
.y28{bottom:1041.000000px;}
.y3b{bottom:1062.000000px;}
.y4{bottom:1070.027400px;}
.y27{bottom:1076.579550px;}
.y26{bottom:1129.748550px;}
.y3a{bottom:1129.870650px;}
.y3{bottom:1132.937550px;}
.h1{height:40.341797px;}
.hc{height:43.031250px;}
.hb{height:43.335938px;}
.ha{height:45.720703px;}
.h9{height:48.410156px;}
.h3{height:51.082031px;}
.h6{height:53.642578px;}
.h2{height:53.789062px;}
.h8{height:54.169922px;}
.h5{height:59.586914px;}
.h7{height:70.420898px;}
.h4{height:86.671875px;}
.h0{height:1200.000000px;}
.w0{width:900.000000px;}
.x0{left:0.000000px;}
.x2{left:112.500000px;}
.x6{left:119.903250px;}
.xc{left:132.000000px;}
.x7{left:143.404950px;}
.x4{left:150.000000px;}
.x1{left:162.000000px;}
.x5{left:246.619950px;}
.xb{left:257.127300px;}
.x9{left:297.281250px;}
.xa{left:301.045200px;}
.x8{left:477.586200px;}
.x3{left:762.473100px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.006400pt;}
.ws39{word-spacing:-53.333333pt;}
.ws0{word-spacing:-17.424000pt;}
.ws1{word-spacing:-14.826667pt;}
.ws3a{word-spacing:-11.861333pt;}
.ws2d{word-spacing:-3.520000pt;}
.ws1e{word-spacing:-2.933333pt;}
.ws11{word-spacing:-2.880000pt;}
.ws36{word-spacing:-2.453333pt;}
.ws19{word-spacing:-2.080000pt;}
.ws9{word-spacing:-1.973333pt;}
.ws3f{word-spacing:-1.920000pt;}
.ws3c{word-spacing:-1.866667pt;}
.ws38{word-spacing:-1.760000pt;}
.ws45{word-spacing:-1.664000pt;}
.ws30{word-spacing:-1.600000pt;}
.ws4a{word-spacing:-1.322667pt;}
.wsf{word-spacing:-1.173333pt;}
.ws2f{word-spacing:-1.120000pt;}
.ws1a{word-spacing:-1.066667pt;}
.wsd{word-spacing:-1.013333pt;}
.ws35{word-spacing:-0.800000pt;}
.ws4{word-spacing:-0.746667pt;}
.ws22{word-spacing:-0.586667pt;}
.ws1d{word-spacing:-0.426667pt;}
.ws34{word-spacing:-0.373333pt;}
.ws10{word-spacing:-0.266667pt;}
.ws40{word-spacing:-0.213333pt;}
.ws14{word-spacing:-0.106667pt;}
.ws2{word-spacing:0.000000pt;}
.ws3b{word-spacing:0.053333pt;}
.ws24{word-spacing:0.106667pt;}
.ws1c{word-spacing:0.213333pt;}
.ws27{word-spacing:0.266667pt;}
.wsc{word-spacing:0.320000pt;}
.ws3e{word-spacing:0.373333pt;}
.ws3{word-spacing:0.426667pt;}
.ws28{word-spacing:0.533333pt;}
.ws42{word-spacing:0.640000pt;}
.ws17{word-spacing:0.746667pt;}
.ws49{word-spacing:0.938667pt;}
.ws15{word-spacing:1.013333pt;}
.ws21{word-spacing:1.066667pt;}
.ws26{word-spacing:1.120000pt;}
.ws25{word-spacing:1.333333pt;}
.ws2a{word-spacing:1.493333pt;}
.ws48{word-spacing:1.664000pt;}
.ws1f{word-spacing:1.706667pt;}
.wsb{word-spacing:2.026667pt;}
.ws13{word-spacing:2.133333pt;}
.ws31{word-spacing:2.186667pt;}
.ws3d{word-spacing:2.293333pt;}
.ws41{word-spacing:2.560000pt;}
.ws2b{word-spacing:2.613333pt;}
.ws47{word-spacing:2.688000pt;}
.wse{word-spacing:2.720000pt;}
.ws1b{word-spacing:2.880000pt;}
.ws7{word-spacing:3.040000pt;}
.ws18{word-spacing:3.360000pt;}
.ws12{word-spacing:3.573333pt;}
.ws46{word-spacing:3.754667pt;}
.ws23{word-spacing:3.840000pt;}
.ws6{word-spacing:3.893333pt;}
.ws43{word-spacing:3.946667pt;}
.ws8{word-spacing:4.000000pt;}
.ws2c{word-spacing:4.053333pt;}
.ws44{word-spacing:4.181333pt;}
.ws32{word-spacing:4.213333pt;}
.wsa{word-spacing:4.373333pt;}
.ws37{word-spacing:4.480000pt;}
.ws2e{word-spacing:4.800000pt;}
.ws5{word-spacing:5.013333pt;}
.ws20{word-spacing:5.173333pt;}
.ws16{word-spacing:5.600000pt;}
.ws29{word-spacing:6.240000pt;}
.ws33{word-spacing:6.720000pt;}
._1{margin-left:-6.348800pt;}
._7{margin-left:-5.158400pt;}
._2{margin-left:-3.353600pt;}
._a{margin-left:-2.143467pt;}
._3{margin-left:-1.061867pt;}
._6{width:1.141333pt;}
._4{width:2.088000pt;}
._5{width:3.037333pt;}
._12{width:5.779733pt;}
._11{width:6.785600pt;}
._b{width:67.938133pt;}
._0{width:72.531200pt;}
._c{width:147.758400pt;}
._8{width:152.016000pt;}
._9{width:175.104000pt;}
._d{width:279.516267pt;}
._e{width:298.452800pt;}
._10{width:575.993600pt;}
._f{width:630.338133pt;}
.fs0{font-size:40.000000pt;}
.fs7{font-size:42.666667pt;}
.fs6{font-size:45.333333pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs5{font-size:69.333333pt;}
.fs4{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:48.000000pt;}
.y1{bottom:49.937600pt;}
.y25{bottom:104.000000pt;}
.y24{bottom:122.666667pt;}
.y39{bottom:141.333333pt;}
.y23{bottom:160.000000pt;}
.y44{bottom:174.666667pt;}
.y22{bottom:178.666667pt;}
.y21{bottom:197.333333pt;}
.y20{bottom:216.000000pt;}
.y1f{bottom:234.666667pt;}
.y54{bottom:252.000000pt;}
.y1e{bottom:253.333333pt;}
.y53{bottom:265.333333pt;}
.y41{bottom:266.666667pt;}
.y1d{bottom:272.000000pt;}
.y52{bottom:282.666667pt;}
.y1c{bottom:290.666667pt;}
.y51{bottom:296.000000pt;}
.y1b{bottom:309.333333pt;}
.y50{bottom:313.333333pt;}
.y40{bottom:317.329467pt;}
.y4f{bottom:326.666667pt;}
.y1a{bottom:328.000000pt;}
.y3f{bottom:336.247067pt;}
.y38{bottom:341.333333pt;}
.y4e{bottom:344.000000pt;}
.y3e{bottom:355.164667pt;}
.y4d{bottom:357.333333pt;}
.y19{bottom:370.666667pt;}
.y3d{bottom:374.082400pt;}
.y43{bottom:381.333333pt;}
.y37{bottom:384.000000pt;}
.y4c{bottom:388.000000pt;}
.y18{bottom:394.666667pt;}
.y4b{bottom:401.333333pt;}
.y36{bottom:402.666667pt;}
.y4a{bottom:414.666667pt;}
.y35{bottom:421.333333pt;}
.y49{bottom:432.000000pt;}
.y17{bottom:440.000000pt;}
.y48{bottom:445.333333pt;}
.y34{bottom:458.666667pt;}
.y47{bottom:462.666667pt;}
.y16{bottom:477.333333pt;}
.y46{bottom:480.000000pt;}
.y15{bottom:496.000000pt;}
.y14{bottom:514.666667pt;}
.y13{bottom:533.333333pt;}
.y12{bottom:552.000000pt;}
.y11{bottom:570.666667pt;}
.y42{bottom:581.333333pt;}
.y10{bottom:589.333333pt;}
.yf{bottom:608.000000pt;}
.ye{bottom:626.666667pt;}
.yd{bottom:645.333333pt;}
.y33{bottom:664.000000pt;}
.y32{bottom:682.666667pt;}
.y3c{bottom:696.000000pt;}
.y31{bottom:701.333333pt;}
.yc{bottom:720.000000pt;}
.y30{bottom:738.666667pt;}
.yb{bottom:740.000000pt;}
.y2f{bottom:757.333333pt;}
.ya{bottom:776.000000pt;}
.y2e{bottom:794.666667pt;}
.y9{bottom:796.000000pt;}
.y2d{bottom:813.333333pt;}
.y8{bottom:832.000000pt;}
.y45{bottom:845.333333pt;}
.y2c{bottom:850.666667pt;}
.y7{bottom:852.000000pt;}
.y2b{bottom:869.333333pt;}
.y2a{bottom:888.000000pt;}
.y6{bottom:897.802133pt;}
.y29{bottom:906.666667pt;}
.y5{bottom:924.468800pt;}
.y28{bottom:925.333333pt;}
.y3b{bottom:944.000000pt;}
.y4{bottom:951.135467pt;}
.y27{bottom:956.959600pt;}
.y26{bottom:1004.220933pt;}
.y3a{bottom:1004.329467pt;}
.y3{bottom:1007.055600pt;}
.h1{height:35.859375pt;}
.hc{height:38.250000pt;}
.hb{height:38.520833pt;}
.ha{height:40.640625pt;}
.h9{height:43.031250pt;}
.h3{height:45.406250pt;}
.h6{height:47.682292pt;}
.h2{height:47.812500pt;}
.h8{height:48.151042pt;}
.h5{height:52.966146pt;}
.h7{height:62.596354pt;}
.h4{height:77.041667pt;}
.h0{height:1066.666667pt;}
.w0{width:800.000000pt;}
.x0{left:0.000000pt;}
.x2{left:100.000000pt;}
.x6{left:106.580667pt;}
.xc{left:117.333333pt;}
.x7{left:127.471067pt;}
.x4{left:133.333333pt;}
.x1{left:144.000000pt;}
.x5{left:219.217733pt;}
.xb{left:228.557600pt;}
.x9{left:264.250000pt;}
.xa{left:267.595733pt;}
.x8{left:424.521067pt;}
.x3{left:677.753867pt;}
}




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