
    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_5c76ebde2cdd0d081833cd75.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.040000;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_a6d1ca0b05b7134a1c3406ae.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.942000;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_37639bcc71da698218d55911.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.151000;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_526295846c1fd3fe5cbc3491.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.173000;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_07be2d480b8b249c98ce0816.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.972000;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_d7bbabc83b9b0b16df8d96e2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.941406;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_4288a1bb48ec8462c2c73e2b.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_3092f423d3a0f309dd79c141.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.972000;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_dbf6164c77a6406d8ecab9fd.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.942000;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_ebbfcf916e18c460bb130d02.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.708008;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;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.m2{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;}
.v1{vertical-align:18.000000px;}
.ls0{letter-spacing:-2.154000px;}
.ls5{letter-spacing:-1.644000px;}
.ls3{letter-spacing:-1.506000px;}
.ls4{letter-spacing:-0.714000px;}
.ls7{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.018000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.421800px;}
.ls6{letter-spacing:1.476000px;}
.lse{letter-spacing:29.771400px;}
.lsd{letter-spacing:29.860800px;}
.lsc{letter-spacing:29.861400px;}
.ls9{letter-spacing:29.920800px;}
.lsb{letter-spacing:29.951400px;}
.lsa{letter-spacing:30.011400px;}
.ls10{letter-spacing:101.111400px;}
.lsf{letter-spacing:101.411400px;}
.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;}
}
.ws7{word-spacing:-47.621250px;}
.wsa{word-spacing:-22.278000px;}
.ws9{word-spacing:-22.242750px;}
.ws8{word-spacing:-22.053450px;}
.wsb{word-spacing:-20.057700px;}
.ws3{word-spacing:-17.724300px;}
.ws2{word-spacing:-16.218300px;}
.ws0{word-spacing:-15.570300px;}
.ws5{word-spacing:-14.058000px;}
.ws6{word-spacing:-12.582000px;}
.ws4{word-spacing:0.000000px;}
.ws1{word-spacing:3.676050px;}
._8{margin-left:-1874.692500px;}
._3{margin-left:-4.667850px;}
._1{margin-left:-2.773650px;}
._2{margin-left:-1.337550px;}
._6{width:1.014750px;}
._4{width:2.029500px;}
._0{width:3.231750px;}
._7{width:4.453950px;}
._9{width:5.566350px;}
._a{width:25.015650px;}
._5{width:33.118200px;}
._c{width:474.000750px;}
._b{width:551.036400px;}
.fc6{color:rgb(0,112,192);}
.fc5{color:rgb(6,28,5);}
.fc2{color:transparent;}
.fc4{color:rgb(153,153,153);}
.fc3{color:rgb(67,67,67);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(216,156,141);}
.fs5{font-size:45.000000px;}
.fs1{font-size:45.150000px;}
.fs7{font-size:54.000000px;}
.fs8{font-size:56.920429px;}
.fs0{font-size:67.650000px;}
.fsc{font-size:72.000000px;}
.fsb{font-size:72.150000px;}
.fs11{font-size:85.650000px;}
.fs12{font-size:85.800000px;}
.fs6{font-size:94.650000px;}
.fse{font-size:94.800000px;}
.fs10{font-size:108.150000px;}
.fsd{font-size:108.300000px;}
.fsa{font-size:121.650000px;}
.fs9{font-size:121.800000px;}
.fs4{font-size:130.800000px;}
.fs2{font-size:180.300000px;}
.fs3{font-size:180.450000px;}
.fsf{font-size:211.650000px;}
.y0{bottom:0.000000px;}
.y6{bottom:9.487500px;}
.y2{bottom:11.250000px;}
.y1{bottom:45.187500px;}
.y10{bottom:125.850000px;}
.y63{bottom:140.512500px;}
.y78{bottom:148.237500px;}
.y3b{bottom:154.080000px;}
.y6b{bottom:163.020000px;}
.y41{bottom:169.845000px;}
.y1b{bottom:172.500000px;}
.y62{bottom:181.095000px;}
.y1e{bottom:185.970000px;}
.y3a{bottom:186.750000px;}
.y9{bottom:188.775000px;}
.y53{bottom:194.475000px;}
.y14{bottom:198.570000px;}
.y1a{bottom:200.655000px;}
.y40{bottom:202.500000px;}
.y8{bottom:203.445000px;}
.y6a{bottom:203.595000px;}
.y1d{bottom:214.155000px;}
.y5a{bottom:217.095000px;}
.y31{bottom:218.220000px;}
.y39{bottom:218.325000px;}
.y42{bottom:219.405000px;}
.y61{bottom:221.655000px;}
.y5b{bottom:222.120000px;}
.y79{bottom:225.945000px;}
.y19{bottom:228.870000px;}
.y3f{bottom:231.045000px;}
.y52{bottom:235.050000px;}
.y29{bottom:241.875000px;}
.y1c{bottom:242.325000px;}
.y69{bottom:243.030000px;}
.y59{bottom:248.625000px;}
.y3e{bottom:249.525000px;}
.y30{bottom:249.750000px;}
.y3d{bottom:249.900000px;}
.yf{bottom:255.075000px;}
.y38{bottom:258.900000px;}
.y60{bottom:262.245000px;}
.y51{bottom:266.595000px;}
.y28{bottom:273.405000px;}
.y6d{bottom:279.825000px;}
.y68{bottom:284.775000px;}
.y2a{bottom:287.925000px;}
.y58{bottom:289.200000px;}
.y2f{bottom:290.325000px;}
.y37{bottom:290.475000px;}
.y50{bottom:298.155000px;}
.ye{bottom:300.150000px;}
.y6c{bottom:312.525000px;}
.y27{bottom:313.995000px;}
.y67{bottom:317.445000px;}
.y57{bottom:320.775000px;}
.y2e{bottom:321.900000px;}
.y36{bottom:322.020000px;}
.y76{bottom:323.505000px;}
.y5{bottom:332.445000px;}
.y15{bottom:336.195000px;}
.y13{bottom:337.125000px;}
.y4f{bottom:338.745000px;}
.y4b{bottom:339.525000px;}
.yd{bottom:342.975000px;}
.y5f{bottom:343.650000px;}
.y26{bottom:345.570000px;}
.y2d{bottom:353.445000px;}
.y3c{bottom:353.595000px;}
.y66{bottom:356.895000px;}
.y6f{bottom:357.150000px;}
.y56{bottom:362.475000px;}
.y35{bottom:362.595000px;}
.y4e{bottom:371.445000px;}
.y4a{bottom:372.195000px;}
.y22{bottom:375.195000px;}
.y25{bottom:378.255000px;}
.y5e{bottom:384.225000px;}
.yc{bottom:385.800000px;}
.y4{bottom:386.550000px;}
.y6e{bottom:389.850000px;}
.y2c{bottom:395.130000px;}
.y34{bottom:395.280000px;}
.y65{bottom:397.470000px;}
.y18{bottom:398.370000px;}
.y4d{bottom:402.975000px;}
.y55{bottom:403.050000px;}
.y21{bottom:403.380000px;}
.y49{bottom:404.880000px;}
.y77{bottom:417.405000px;}
.y75{bottom:418.095000px;}
.y24{bottom:418.845000px;}
.y5d{bottom:424.800000px;}
.y17{bottom:426.570000px;}
.y2b{bottom:426.720000px;}
.y33{bottom:426.825000px;}
.y20{bottom:431.550000px;}
.yb{bottom:435.405000px;}
.y71{bottom:437.370000px;}
.y64{bottom:438.030000px;}
.y3{bottom:440.625000px;}
.y16{bottom:454.725000px;}
.y1f{bottom:459.720000px;}
.y5c{bottom:465.375000px;}
.y70{bottom:470.025000px;}
.y48{bottom:470.250000px;}
.y45{bottom:471.405000px;}
.y12{bottom:472.845000px;}
.y4c{bottom:477.375000px;}
.y54{bottom:477.405000px;}
.ya{bottom:494.025000px;}
.y23{bottom:501.120000px;}
.y32{bottom:501.225000px;}
.y47{bottom:502.950000px;}
.y44{bottom:504.075000px;}
.y74{bottom:510.675000px;}
.y73{bottom:516.750000px;}
.y11{bottom:530.550000px;}
.y46{bottom:535.650000px;}
.y43{bottom:536.775000px;}
.y7{bottom:539.220000px;}
.y72{bottom:549.450000px;}
.h7{height:32.893066px;}
.ha{height:38.448000px;}
.hb{height:40.527345px;}
.h2{height:48.166800px;}
.h11{height:51.264000px;}
.h10{height:51.370800px;}
.h1b{height:52.738550px;}
.h12{height:53.424000px;}
.hf{height:53.535300px;}
.h1{height:56.961300px;}
.h19{height:60.982800px;}
.h1a{height:61.089600px;}
.h18{height:63.552300px;}
.h8{height:67.201500px;}
.h14{height:67.308000px;}
.h16{height:67.390800px;}
.h9{height:70.230300px;}
.h17{height:80.247300px;}
.h13{height:80.358600px;}
.he{height:88.920923px;}
.hd{height:89.030566px;}
.hc{height:90.375600px;}
.h6{height:97.053600px;}
.h15{height:157.044300px;}
.h3{height:171.465300px;}
.h5{height:173.628900px;}
.h4{height:173.773350px;}
.h0{height:607.500000px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x9{left:35.437484px;}
.x7{left:43.012484px;}
.xe{left:44.549984px;}
.x18{left:56.737484px;}
.x1b{left:59.249984px;}
.xa{left:77.699984px;}
.x29{left:88.837484px;}
.x15{left:99.974984px;}
.x14{left:113.287484px;}
.x20{left:135.149984px;}
.x16{left:141.674984px;}
.x17{left:161.954984px;}
.x27{left:182.549984px;}
.x1c{left:269.594984px;}
.x28{left:276.344984px;}
.x4{left:305.099984px;}
.x5{left:317.024984px;}
.x3{left:368.819984px;}
.x21{left:374.519984px;}
.x26{left:376.949984px;}
.x25{left:379.244984px;}
.x24{left:381.869984px;}
.x2{left:389.219984px;}
.x11{left:405.194984px;}
.x22{left:498.224984px;}
.xb{left:518.069984px;}
.x23{left:537.869984px;}
.xf{left:542.129984px;}
.x1{left:573.824984px;}
.x6{left:583.394984px;}
.x19{left:590.969984px;}
.x1a{left:611.249984px;}
.x1e{left:615.674984px;}
.xc{left:630.869984px;}
.x1f{left:648.194984px;}
.x8{left:653.924984px;}
.x10{left:679.169984px;}
.x13{left:715.499984px;}
.xd{left:722.474984px;}
.x1d{left:751.454984px;}
.x12{left:765.569984px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.ls0{letter-spacing:-1.914667pt;}
.ls5{letter-spacing:-1.461333pt;}
.ls3{letter-spacing:-1.338667pt;}
.ls4{letter-spacing:-0.634667pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.016000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.374933pt;}
.ls6{letter-spacing:1.312000pt;}
.lse{letter-spacing:26.463467pt;}
.lsd{letter-spacing:26.542933pt;}
.lsc{letter-spacing:26.543467pt;}
.ls9{letter-spacing:26.596267pt;}
.lsb{letter-spacing:26.623467pt;}
.lsa{letter-spacing:26.676800pt;}
.ls10{letter-spacing:89.876800pt;}
.lsf{letter-spacing:90.143467pt;}
.ws7{word-spacing:-42.330000pt;}
.wsa{word-spacing:-19.802667pt;}
.ws9{word-spacing:-19.771333pt;}
.ws8{word-spacing:-19.603067pt;}
.wsb{word-spacing:-17.829067pt;}
.ws3{word-spacing:-15.754933pt;}
.ws2{word-spacing:-14.416267pt;}
.ws0{word-spacing:-13.840267pt;}
.ws5{word-spacing:-12.496000pt;}
.ws6{word-spacing:-11.184000pt;}
.ws4{word-spacing:0.000000pt;}
.ws1{word-spacing:3.267600pt;}
._8{margin-left:-1666.393333pt;}
._3{margin-left:-4.149200pt;}
._1{margin-left:-2.465467pt;}
._2{margin-left:-1.188933pt;}
._6{width:0.902000pt;}
._4{width:1.804000pt;}
._0{width:2.872667pt;}
._7{width:3.959067pt;}
._9{width:4.947867pt;}
._a{width:22.236133pt;}
._5{width:29.438400pt;}
._c{width:421.334000pt;}
._b{width:489.810133pt;}
.fs5{font-size:40.000000pt;}
.fs1{font-size:40.133333pt;}
.fs7{font-size:48.000000pt;}
.fs8{font-size:50.595937pt;}
.fs0{font-size:60.133333pt;}
.fsc{font-size:64.000000pt;}
.fsb{font-size:64.133333pt;}
.fs11{font-size:76.133333pt;}
.fs12{font-size:76.266667pt;}
.fs6{font-size:84.133333pt;}
.fse{font-size:84.266667pt;}
.fs10{font-size:96.133333pt;}
.fsd{font-size:96.266667pt;}
.fsa{font-size:108.133333pt;}
.fs9{font-size:108.266667pt;}
.fs4{font-size:116.266667pt;}
.fs2{font-size:160.266667pt;}
.fs3{font-size:160.400000pt;}
.fsf{font-size:188.133333pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:8.433333pt;}
.y2{bottom:10.000000pt;}
.y1{bottom:40.166667pt;}
.y10{bottom:111.866667pt;}
.y63{bottom:124.900000pt;}
.y78{bottom:131.766667pt;}
.y3b{bottom:136.960000pt;}
.y6b{bottom:144.906667pt;}
.y41{bottom:150.973333pt;}
.y1b{bottom:153.333333pt;}
.y62{bottom:160.973333pt;}
.y1e{bottom:165.306667pt;}
.y3a{bottom:166.000000pt;}
.y9{bottom:167.800000pt;}
.y53{bottom:172.866667pt;}
.y14{bottom:176.506667pt;}
.y1a{bottom:178.360000pt;}
.y40{bottom:180.000000pt;}
.y8{bottom:180.840000pt;}
.y6a{bottom:180.973333pt;}
.y1d{bottom:190.360000pt;}
.y5a{bottom:192.973333pt;}
.y31{bottom:193.973333pt;}
.y39{bottom:194.066667pt;}
.y42{bottom:195.026667pt;}
.y61{bottom:197.026667pt;}
.y5b{bottom:197.440000pt;}
.y79{bottom:200.840000pt;}
.y19{bottom:203.440000pt;}
.y3f{bottom:205.373333pt;}
.y52{bottom:208.933333pt;}
.y29{bottom:215.000000pt;}
.y1c{bottom:215.400000pt;}
.y69{bottom:216.026667pt;}
.y59{bottom:221.000000pt;}
.y3e{bottom:221.800000pt;}
.y30{bottom:222.000000pt;}
.y3d{bottom:222.133333pt;}
.yf{bottom:226.733333pt;}
.y38{bottom:230.133333pt;}
.y60{bottom:233.106667pt;}
.y51{bottom:236.973333pt;}
.y28{bottom:243.026667pt;}
.y6d{bottom:248.733333pt;}
.y68{bottom:253.133333pt;}
.y2a{bottom:255.933333pt;}
.y58{bottom:257.066667pt;}
.y2f{bottom:258.066667pt;}
.y37{bottom:258.200000pt;}
.y50{bottom:265.026667pt;}
.ye{bottom:266.800000pt;}
.y6c{bottom:277.800000pt;}
.y27{bottom:279.106667pt;}
.y67{bottom:282.173333pt;}
.y57{bottom:285.133333pt;}
.y2e{bottom:286.133333pt;}
.y36{bottom:286.240000pt;}
.y76{bottom:287.560000pt;}
.y5{bottom:295.506667pt;}
.y15{bottom:298.840000pt;}
.y13{bottom:299.666667pt;}
.y4f{bottom:301.106667pt;}
.y4b{bottom:301.800000pt;}
.yd{bottom:304.866667pt;}
.y5f{bottom:305.466667pt;}
.y26{bottom:307.173333pt;}
.y2d{bottom:314.173333pt;}
.y3c{bottom:314.306667pt;}
.y66{bottom:317.240000pt;}
.y6f{bottom:317.466667pt;}
.y56{bottom:322.200000pt;}
.y35{bottom:322.306667pt;}
.y4e{bottom:330.173333pt;}
.y4a{bottom:330.840000pt;}
.y22{bottom:333.506667pt;}
.y25{bottom:336.226667pt;}
.y5e{bottom:341.533333pt;}
.yc{bottom:342.933333pt;}
.y4{bottom:343.600000pt;}
.y6e{bottom:346.533333pt;}
.y2c{bottom:351.226667pt;}
.y34{bottom:351.360000pt;}
.y65{bottom:353.306667pt;}
.y18{bottom:354.106667pt;}
.y4d{bottom:358.200000pt;}
.y55{bottom:358.266667pt;}
.y21{bottom:358.560000pt;}
.y49{bottom:359.893333pt;}
.y77{bottom:371.026667pt;}
.y75{bottom:371.640000pt;}
.y24{bottom:372.306667pt;}
.y5d{bottom:377.600000pt;}
.y17{bottom:379.173333pt;}
.y2b{bottom:379.306667pt;}
.y33{bottom:379.400000pt;}
.y20{bottom:383.600000pt;}
.yb{bottom:387.026667pt;}
.y71{bottom:388.773333pt;}
.y64{bottom:389.360000pt;}
.y3{bottom:391.666667pt;}
.y16{bottom:404.200000pt;}
.y1f{bottom:408.640000pt;}
.y5c{bottom:413.666667pt;}
.y70{bottom:417.800000pt;}
.y48{bottom:418.000000pt;}
.y45{bottom:419.026667pt;}
.y12{bottom:420.306667pt;}
.y4c{bottom:424.333333pt;}
.y54{bottom:424.360000pt;}
.ya{bottom:439.133333pt;}
.y23{bottom:445.440000pt;}
.y32{bottom:445.533333pt;}
.y47{bottom:447.066667pt;}
.y44{bottom:448.066667pt;}
.y74{bottom:453.933333pt;}
.y73{bottom:459.333333pt;}
.y11{bottom:471.600000pt;}
.y46{bottom:476.133333pt;}
.y43{bottom:477.133333pt;}
.y7{bottom:479.306667pt;}
.y72{bottom:488.400000pt;}
.h7{height:29.238281pt;}
.ha{height:34.176000pt;}
.hb{height:36.024307pt;}
.h2{height:42.814933pt;}
.h11{height:45.568000pt;}
.h10{height:45.662933pt;}
.h1b{height:46.878711pt;}
.h12{height:47.488000pt;}
.hf{height:47.586933pt;}
.h1{height:50.632267pt;}
.h19{height:54.206933pt;}
.h1a{height:54.301867pt;}
.h18{height:56.490933pt;}
.h8{height:59.734667pt;}
.h14{height:59.829333pt;}
.h16{height:59.902933pt;}
.h9{height:62.426933pt;}
.h17{height:71.330933pt;}
.h13{height:71.429867pt;}
.he{height:79.040820pt;}
.hd{height:79.138281pt;}
.hc{height:80.333867pt;}
.h6{height:86.269867pt;}
.h15{height:139.594933pt;}
.h3{height:152.413600pt;}
.h5{height:154.336800pt;}
.h4{height:154.465200pt;}
.h0{height:540.000000pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x9{left:31.499986pt;}
.x7{left:38.233319pt;}
.xe{left:39.599986pt;}
.x18{left:50.433319pt;}
.x1b{left:52.666652pt;}
.xa{left:69.066652pt;}
.x29{left:78.966652pt;}
.x15{left:88.866652pt;}
.x14{left:100.699986pt;}
.x20{left:120.133319pt;}
.x16{left:125.933319pt;}
.x17{left:143.959986pt;}
.x27{left:162.266652pt;}
.x1c{left:239.639986pt;}
.x28{left:245.639986pt;}
.x4{left:271.199986pt;}
.x5{left:281.799986pt;}
.x3{left:327.839986pt;}
.x21{left:332.906652pt;}
.x26{left:335.066652pt;}
.x25{left:337.106652pt;}
.x24{left:339.439986pt;}
.x2{left:345.973319pt;}
.x11{left:360.173319pt;}
.x22{left:442.866652pt;}
.xb{left:460.506652pt;}
.x23{left:478.106652pt;}
.xf{left:481.893319pt;}
.x1{left:510.066652pt;}
.x6{left:518.573319pt;}
.x19{left:525.306652pt;}
.x1a{left:543.333319pt;}
.x1e{left:547.266652pt;}
.xc{left:560.773319pt;}
.x1f{left:576.173319pt;}
.x8{left:581.266652pt;}
.x10{left:603.706652pt;}
.x13{left:635.999986pt;}
.xd{left:642.199986pt;}
.x1d{left:667.959986pt;}
.x12{left:680.506652pt;}
}




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