
    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_51369105c9e0d697b5051322.woff2')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_7ed5e0a8536982748a04be08.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.933105;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_ef11d3990b70139196039139.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.926000;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_c692c766184d1c54bf61ece5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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_ba4e7a9817f883dcc1a03771.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.885254;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_4f914372a1ffceabcbfd4918.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.937500;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_f30e928ee4a13484f95385cf.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_bfa6e113a76b5a89ceba0703.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_625e5c0c6be75a3a4ab3ac6a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.940000;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_010fec53444134fa2a306a8a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;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_b812b9338e0a42ed271c8c0d.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.045898;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.236704,0.000000,-0.080443,0.236704,0,0);-ms-transform:matrix(0.236704,0.000000,-0.080443,0.236704,0,0);-webkit-transform:matrix(0.236704,0.000000,-0.080443,0.236704,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(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,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;}
.ls17{letter-spacing:-0.485466px;}
.ls23{letter-spacing:-0.471744px;}
.ls16{letter-spacing:-0.459648px;}
.ls1e{letter-spacing:-0.417312px;}
.ls1b{letter-spacing:-0.415201px;}
.ls21{letter-spacing:-0.402426px;}
.ls5{letter-spacing:-0.399168px;}
.ls1d{letter-spacing:-0.381024px;}
.ls1f{letter-spacing:-0.357712px;}
.ls1c{letter-spacing:-0.338688px;}
.ls1a{letter-spacing:-0.320544px;}
.ls20{letter-spacing:-0.308448px;}
.ls19{letter-spacing:-0.302400px;}
.ls22{letter-spacing:-0.260064px;}
.ls25{letter-spacing:-0.229824px;}
.lsf{letter-spacing:-0.198720px;}
.ls14{letter-spacing:-0.194832px;}
.ls18{letter-spacing:-0.185244px;}
.ls24{letter-spacing:-0.181440px;}
.ls8{letter-spacing:-0.158976px;}
.ls15{letter-spacing:-0.157248px;}
.ls6{letter-spacing:-0.145152px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.042768px;}
.ls1{letter-spacing:0.072576px;}
.ls4{letter-spacing:0.073872px;}
.ls3{letter-spacing:0.097200px;}
.lsb{letter-spacing:0.133056px;}
.ls10{letter-spacing:0.239040px;}
.lsa{letter-spacing:0.240048px;}
.lsd{letter-spacing:0.266112px;}
.ls13{letter-spacing:0.308880px;}
.ls9{letter-spacing:0.318384px;}
.lsc{letter-spacing:0.346896px;}
.ls7{letter-spacing:0.389664px;}
.lse{letter-spacing:0.418176px;}
.ls12{letter-spacing:6.124320px;}
.ls11{letter-spacing:125.856576px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-18.255744px;}
.ws2{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.572597px;}
.ws9{word-spacing:-17.400129px;}
.ws8{word-spacing:-16.813440px;}
.ws4{word-spacing:-16.656192px;}
.wsa{word-spacing:-16.583616px;}
.ws6{word-spacing:-16.511040px;}
.ws7{word-spacing:-16.353792px;}
.ws3{word-spacing:-13.557456px;}
.ws1{word-spacing:0.000000px;}
._9{margin-left:-4.341600px;}
._3{margin-left:-3.319200px;}
._7{margin-left:-2.102400px;}
._1{margin-left:-1.033200px;}
._0{width:1.010880px;}
._6{width:2.128320px;}
._11{width:3.232800px;}
._a{width:4.269600px;}
._4{width:5.493600px;}
._b{width:6.984000px;}
._d{width:8.978400px;}
._8{width:10.209600px;}
._c{width:11.347200px;}
._12{width:12.700800px;}
._5{width:13.737600px;}
._e{width:15.403680px;}
._f{width:16.463520px;}
._10{width:23.335200px;}
._13{width:29.350080px;}
._14{width:30.724897px;}
._2{width:52.755984px;}
._15{width:76.083840px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:38.880000px;}
.fs3{font-size:47.520000px;}
.fs6{font-size:59.294117px;}
.fs2{font-size:60.480000px;}
.fs5{font-size:63.877126px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y2d{bottom:112.320000px;}
.y4{bottom:113.040000px;}
.y3{bottom:127.800000px;}
.y58{bottom:131.400000px;}
.y2c{bottom:132.840000px;}
.y2{bottom:142.560000px;}
.y2b{bottom:152.280000px;}
.y28{bottom:183.600000px;}
.y57{bottom:194.400000px;}
.y27{bottom:195.840000px;}
.y56{bottom:215.280000px;}
.y55{bottom:235.800000px;}
.y54{bottom:260.640000px;}
.y53{bottom:298.080000px;}
.y52{bottom:322.560000px;}
.y51{bottom:360.360000px;}
.y50{bottom:380.880000px;}
.y26{bottom:381.240000px;}
.y4f{bottom:401.760000px;}
.y25{bottom:402.120000px;}
.y4e{bottom:422.280000px;}
.y24{bottom:422.640000px;}
.y4d{bottom:443.160000px;}
.y23{bottom:443.520000px;}
.y4c{bottom:463.680000px;}
.y22{bottom:464.040000px;}
.y4b{bottom:484.560000px;}
.y21{bottom:484.920000px;}
.y4a{bottom:505.080000px;}
.y20{bottom:505.440000px;}
.y49{bottom:525.960000px;}
.y1f{bottom:526.320000px;}
.y48{bottom:546.480000px;}
.y1e{bottom:546.840000px;}
.y47{bottom:567.360000px;}
.y1d{bottom:567.720000px;}
.y46{bottom:587.880000px;}
.y1c{bottom:592.200000px;}
.y45{bottom:608.760000px;}
.y44{bottom:629.280000px;}
.y1b{bottom:629.640000px;}
.y43{bottom:650.160000px;}
.y1a{bottom:650.520000px;}
.y42{bottom:670.680000px;}
.y19{bottom:671.040000px;}
.y41{bottom:691.560000px;}
.y18{bottom:691.920000px;}
.y6e{bottom:700.200000px;}
.y40{bottom:712.080000px;}
.y17{bottom:712.440000px;}
.y6d{bottom:718.200000px;}
.y3f{bottom:732.960000px;}
.y16{bottom:733.320000px;}
.y6c{bottom:736.200000px;}
.y3e{bottom:753.480000px;}
.y15{bottom:753.840000px;}
.y6b{bottom:754.200000px;}
.y6a{bottom:772.560000px;}
.y14{bottom:774.720000px;}
.y3d{bottom:777.960000px;}
.y68{bottom:790.560000px;}
.y69{bottom:790.796484px;}
.y13{bottom:795.240000px;}
.y67{bottom:808.560000px;}
.y3c{bottom:815.760000px;}
.y12{bottom:816.120000px;}
.y66{bottom:826.560000px;}
.y3b{bottom:836.280000px;}
.y11{bottom:836.640000px;}
.y65{bottom:844.560000px;}
.y3a{bottom:857.160000px;}
.y10{bottom:857.520000px;}
.y64{bottom:862.560000px;}
.y39{bottom:877.680000px;}
.yf{bottom:878.040000px;}
.y63{bottom:880.560000px;}
.y38{bottom:898.560000px;}
.ye{bottom:898.920000px;}
.y62{bottom:916.560000px;}
.y37{bottom:919.080000px;}
.yd{bottom:919.440000px;}
.y61{bottom:934.560000px;}
.y36{bottom:939.960000px;}
.yc{bottom:940.320000px;}
.y60{bottom:952.560000px;}
.y35{bottom:960.480000px;}
.yb{bottom:960.840000px;}
.y5f{bottom:970.920000px;}
.y34{bottom:981.360000px;}
.ya{bottom:981.720000px;}
.y5e{bottom:988.920000px;}
.y33{bottom:1001.880000px;}
.y9{bottom:1002.240000px;}
.y5d{bottom:1011.240000px;}
.y32{bottom:1022.760000px;}
.y8{bottom:1026.720000px;}
.y31{bottom:1043.280000px;}
.y5c{bottom:1046.160000px;}
.y7{bottom:1062.720000px;}
.y30{bottom:1064.160000px;}
.y5b{bottom:1066.680000px;}
.y6{bottom:1078.200000px;}
.y2f{bottom:1084.680000px;}
.y5a{bottom:1087.560000px;}
.y59{bottom:1108.080000px;}
.y2e{bottom:1109.160000px;}
.y5{bottom:1114.920000px;}
.y2a{bottom:1127.160000px;}
.y1{bottom:1136.880000px;}
.y29{bottom:1141.560000px;}
.h3{height:28.704375px;}
.ha{height:31.672266px;}
.h9{height:34.737120px;}
.h6{height:35.291953px;}
.h8{height:40.310156px;}
.h5{height:44.562656px;}
.h7{height:48.224531px;}
.h2{height:50.027344px;}
.hd{height:50.463694px;}
.hb{height:51.472969px;}
.h4{height:52.632000px;}
.hc{height:54.364175px;}
.h0{height:1261.440000px;}
.h1{height:1261.500000px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:80.640000px;}
.x6{left:134.640036px;}
.x7{left:208.797732px;}
.xb{left:211.573620px;}
.xc{left:264.124872px;}
.x10{left:270.453024px;}
.x5{left:293.668956px;}
.x11{left:297.134028px;}
.x3{left:306.582264px;}
.x8{left:370.523880px;}
.xd{left:408.316680px;}
.x12{left:485.695080px;}
.xe{left:557.012880px;}
.xa{left:602.686800px;}
.x9{left:639.088200px;}
.x2{left:672.232680px;}
.xf{left:675.544680px;}
.x4{left:811.664640px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls17{letter-spacing:-0.431525pt;}
.ls23{letter-spacing:-0.419328pt;}
.ls16{letter-spacing:-0.408576pt;}
.ls1e{letter-spacing:-0.370944pt;}
.ls1b{letter-spacing:-0.369068pt;}
.ls21{letter-spacing:-0.357712pt;}
.ls5{letter-spacing:-0.354816pt;}
.ls1d{letter-spacing:-0.338688pt;}
.ls1f{letter-spacing:-0.317966pt;}
.ls1c{letter-spacing:-0.301056pt;}
.ls1a{letter-spacing:-0.284928pt;}
.ls20{letter-spacing:-0.274176pt;}
.ls19{letter-spacing:-0.268800pt;}
.ls22{letter-spacing:-0.231168pt;}
.ls25{letter-spacing:-0.204288pt;}
.lsf{letter-spacing:-0.176640pt;}
.ls14{letter-spacing:-0.173184pt;}
.ls18{letter-spacing:-0.164661pt;}
.ls24{letter-spacing:-0.161280pt;}
.ls8{letter-spacing:-0.141312pt;}
.ls15{letter-spacing:-0.139776pt;}
.ls6{letter-spacing:-0.129024pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.038016pt;}
.ls1{letter-spacing:0.064512pt;}
.ls4{letter-spacing:0.065664pt;}
.ls3{letter-spacing:0.086400pt;}
.lsb{letter-spacing:0.118272pt;}
.ls10{letter-spacing:0.212480pt;}
.lsa{letter-spacing:0.213376pt;}
.lsd{letter-spacing:0.236544pt;}
.ls13{letter-spacing:0.274560pt;}
.ls9{letter-spacing:0.283008pt;}
.lsc{letter-spacing:0.308352pt;}
.ls7{letter-spacing:0.346368pt;}
.lse{letter-spacing:0.371712pt;}
.ls12{letter-spacing:5.443840pt;}
.ls11{letter-spacing:111.872512pt;}
.ws0{word-spacing:-16.227328pt;}
.ws2{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.620086pt;}
.ws9{word-spacing:-15.466781pt;}
.ws8{word-spacing:-14.945280pt;}
.ws4{word-spacing:-14.805504pt;}
.wsa{word-spacing:-14.740992pt;}
.ws6{word-spacing:-14.676480pt;}
.ws7{word-spacing:-14.536704pt;}
.ws3{word-spacing:-12.051072pt;}
.ws1{word-spacing:0.000000pt;}
._9{margin-left:-3.859200pt;}
._3{margin-left:-2.950400pt;}
._7{margin-left:-1.868800pt;}
._1{margin-left:-0.918400pt;}
._0{width:0.898560pt;}
._6{width:1.891840pt;}
._11{width:2.873600pt;}
._a{width:3.795200pt;}
._4{width:4.883200pt;}
._b{width:6.208000pt;}
._d{width:7.980800pt;}
._8{width:9.075200pt;}
._c{width:10.086400pt;}
._12{width:11.289600pt;}
._5{width:12.211200pt;}
._e{width:13.692160pt;}
._f{width:14.634240pt;}
._10{width:20.742400pt;}
._13{width:26.088960pt;}
._14{width:27.311020pt;}
._2{width:46.894208pt;}
._15{width:67.630080pt;}
.fs1{font-size:34.560000pt;}
.fs3{font-size:42.240000pt;}
.fs6{font-size:52.705882pt;}
.fs2{font-size:53.760000pt;}
.fs5{font-size:56.779667pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y2d{bottom:99.840000pt;}
.y4{bottom:100.480000pt;}
.y3{bottom:113.600000pt;}
.y58{bottom:116.800000pt;}
.y2c{bottom:118.080000pt;}
.y2{bottom:126.720000pt;}
.y2b{bottom:135.360000pt;}
.y28{bottom:163.200000pt;}
.y57{bottom:172.800000pt;}
.y27{bottom:174.080000pt;}
.y56{bottom:191.360000pt;}
.y55{bottom:209.600000pt;}
.y54{bottom:231.680000pt;}
.y53{bottom:264.960000pt;}
.y52{bottom:286.720000pt;}
.y51{bottom:320.320000pt;}
.y50{bottom:338.560000pt;}
.y26{bottom:338.880000pt;}
.y4f{bottom:357.120000pt;}
.y25{bottom:357.440000pt;}
.y4e{bottom:375.360000pt;}
.y24{bottom:375.680000pt;}
.y4d{bottom:393.920000pt;}
.y23{bottom:394.240000pt;}
.y4c{bottom:412.160000pt;}
.y22{bottom:412.480000pt;}
.y4b{bottom:430.720000pt;}
.y21{bottom:431.040000pt;}
.y4a{bottom:448.960000pt;}
.y20{bottom:449.280000pt;}
.y49{bottom:467.520000pt;}
.y1f{bottom:467.840000pt;}
.y48{bottom:485.760000pt;}
.y1e{bottom:486.080000pt;}
.y47{bottom:504.320000pt;}
.y1d{bottom:504.640000pt;}
.y46{bottom:522.560000pt;}
.y1c{bottom:526.400000pt;}
.y45{bottom:541.120000pt;}
.y44{bottom:559.360000pt;}
.y1b{bottom:559.680000pt;}
.y43{bottom:577.920000pt;}
.y1a{bottom:578.240000pt;}
.y42{bottom:596.160000pt;}
.y19{bottom:596.480000pt;}
.y41{bottom:614.720000pt;}
.y18{bottom:615.040000pt;}
.y6e{bottom:622.400000pt;}
.y40{bottom:632.960000pt;}
.y17{bottom:633.280000pt;}
.y6d{bottom:638.400000pt;}
.y3f{bottom:651.520000pt;}
.y16{bottom:651.840000pt;}
.y6c{bottom:654.400000pt;}
.y3e{bottom:669.760000pt;}
.y15{bottom:670.080000pt;}
.y6b{bottom:670.400000pt;}
.y6a{bottom:686.720000pt;}
.y14{bottom:688.640000pt;}
.y3d{bottom:691.520000pt;}
.y68{bottom:702.720000pt;}
.y69{bottom:702.930208pt;}
.y13{bottom:706.880000pt;}
.y67{bottom:718.720000pt;}
.y3c{bottom:725.120000pt;}
.y12{bottom:725.440000pt;}
.y66{bottom:734.720000pt;}
.y3b{bottom:743.360000pt;}
.y11{bottom:743.680000pt;}
.y65{bottom:750.720000pt;}
.y3a{bottom:761.920000pt;}
.y10{bottom:762.240000pt;}
.y64{bottom:766.720000pt;}
.y39{bottom:780.160000pt;}
.yf{bottom:780.480000pt;}
.y63{bottom:782.720000pt;}
.y38{bottom:798.720000pt;}
.ye{bottom:799.040000pt;}
.y62{bottom:814.720000pt;}
.y37{bottom:816.960000pt;}
.yd{bottom:817.280000pt;}
.y61{bottom:830.720000pt;}
.y36{bottom:835.520000pt;}
.yc{bottom:835.840000pt;}
.y60{bottom:846.720000pt;}
.y35{bottom:853.760000pt;}
.yb{bottom:854.080000pt;}
.y5f{bottom:863.040000pt;}
.y34{bottom:872.320000pt;}
.ya{bottom:872.640000pt;}
.y5e{bottom:879.040000pt;}
.y33{bottom:890.560000pt;}
.y9{bottom:890.880000pt;}
.y5d{bottom:898.880000pt;}
.y32{bottom:909.120000pt;}
.y8{bottom:912.640000pt;}
.y31{bottom:927.360000pt;}
.y5c{bottom:929.920000pt;}
.y7{bottom:944.640000pt;}
.y30{bottom:945.920000pt;}
.y5b{bottom:948.160000pt;}
.y6{bottom:958.400000pt;}
.y2f{bottom:964.160000pt;}
.y5a{bottom:966.720000pt;}
.y59{bottom:984.960000pt;}
.y2e{bottom:985.920000pt;}
.y5{bottom:991.040000pt;}
.y2a{bottom:1001.920000pt;}
.y1{bottom:1010.560000pt;}
.y29{bottom:1014.720000pt;}
.h3{height:25.515000pt;}
.ha{height:28.153125pt;}
.h9{height:30.877440pt;}
.h6{height:31.370625pt;}
.h8{height:35.831250pt;}
.h5{height:39.611250pt;}
.h7{height:42.866250pt;}
.h2{height:44.468750pt;}
.hd{height:44.856617pt;}
.hb{height:45.753750pt;}
.h4{height:46.784000pt;}
.hc{height:48.323711pt;}
.h0{height:1121.280000pt;}
.h1{height:1121.333333pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:71.680000pt;}
.x6{left:119.680032pt;}
.x7{left:185.597984pt;}
.xb{left:188.065440pt;}
.xc{left:234.777664pt;}
.x10{left:240.402688pt;}
.x5{left:261.039072pt;}
.x11{left:264.119136pt;}
.x3{left:272.517568pt;}
.x8{left:329.354560pt;}
.xd{left:362.948160pt;}
.x12{left:431.728960pt;}
.xe{left:495.122560pt;}
.xa{left:535.721600pt;}
.x9{left:568.078400pt;}
.x2{left:597.540160pt;}
.xf{left:600.484160pt;}
.x4{left:721.479680pt;}
}




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