
    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_7e8327fd6287623cccea63a6.woff')format("woff");}.ff1{font-family:ff1;line-height:0.706543;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_cddd37f16816eb76e624613d.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_a275b04c8074382c11f23e1d.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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_6c50e143fc0c1b7164670f76.woff')format("woff");}.ff4{font-family:ff4;line-height:0.910156;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_02b0e0a0c343f601436ae9a9.woff')format("woff");}.ff5{font-family:ff5;line-height:0.931152;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_ad2107c1ebc428805fec470b.woff')format("woff");}.ff6{font-family:ff6;line-height:0.899414;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_bb2119b25f3107adfbadd207.woff')format("woff");}.ff7{font-family:ff7;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;}
.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);}
.v9{vertical-align:-34.560000px;}
.v3{vertical-align:-27.360000px;}
.v8{vertical-align:-20.160000px;}
.v1{vertical-align:-14.400000px;}
.v6{vertical-align:-12.960000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:14.400000px;}
.v7{vertical-align:25.920000px;}
.v5{vertical-align:47.520000px;}
.v4{vertical-align:54.720000px;}
.ls14{letter-spacing:-0.028800px;}
.ls8{letter-spacing:-0.014400px;}
.ls7{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.012960px;}
.lsf{letter-spacing:0.014400px;}
.ls1d{letter-spacing:0.015840px;}
.ls1b{letter-spacing:0.027360px;}
.ls23{letter-spacing:0.191520px;}
.ls22{letter-spacing:0.241920px;}
.ls15{letter-spacing:0.317520px;}
.ls21{letter-spacing:0.413280px;}
.ls11{letter-spacing:1.200096px;}
.ls9{letter-spacing:1.582560px;}
.ls4{letter-spacing:1.582704px;}
.ls5{letter-spacing:1.723680px;}
.ls1f{letter-spacing:2.805120px;}
.ls16{letter-spacing:3.953808px;}
.ls2{letter-spacing:4.652640px;}
.ls0{letter-spacing:4.653792px;}
.ls1{letter-spacing:4.653936px;}
.ls3{letter-spacing:4.654080px;}
.ls6{letter-spacing:4.654224px;}
.ls25{letter-spacing:4.654368px;}
.ls17{letter-spacing:4.770288px;}
.ls10{letter-spacing:5.364000px;}
.lsc{letter-spacing:5.941440px;}
.ls13{letter-spacing:19.991520px;}
.ls18{letter-spacing:20.004480px;}
.ls1e{letter-spacing:20.004912px;}
.lsb{letter-spacing:20.013120px;}
.lse{letter-spacing:20.653920px;}
.ls20{letter-spacing:23.315040px;}
.lsd{letter-spacing:24.652800px;}
.ls1c{letter-spacing:24.654240px;}
.ls12{letter-spacing:25.577280px;}
.lsa{letter-spacing:28.150560px;}
.ls19{letter-spacing:30.337920px;}
.ls24{letter-spacing:33.984000px;}
.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;}
}
.ws1{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.985600px;}
.wsa{word-spacing:-0.463680px;}
.ws8{word-spacing:-0.367920px;}
.ws11{word-spacing:-0.292320px;}
.ws17{word-spacing:-0.241920px;}
.ws14{word-spacing:-0.087840px;}
.ws0{word-spacing:-0.072000px;}
.ws3{word-spacing:0.000000px;}
.ws9{word-spacing:11.904480px;}
.wsc{word-spacing:13.567536px;}
.wsf{word-spacing:13.708800px;}
.ws7{word-spacing:15.933600px;}
.wse{word-spacing:19.874880px;}
.ws16{word-spacing:19.900800px;}
.ws13{word-spacing:19.919520px;}
.wsd{word-spacing:19.925136px;}
.ws4{word-spacing:19.925280px;}
.ws6{word-spacing:19.932480px;}
.ws5{word-spacing:21.566880px;}
.wsb{word-spacing:24.227280px;}
.ws10{word-spacing:24.228720px;}
.ws15{word-spacing:24.589440px;}
.ws12{word-spacing:79.346880px;}
._6{margin-left:-7.574400px;}
._0{margin-left:-5.707440px;}
._9{margin-left:-4.439232px;}
._1{margin-left:-3.110400px;}
._3{margin-left:-1.130400px;}
._2{width:1.506960px;}
._4{width:3.758400px;}
._7{width:4.931424px;}
._a{width:11.946096px;}
._5{width:20.124720px;}
._8{width:26.056080px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:50.400000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:5.220000px;}
.y26{bottom:126.000000px;}
.y6c{bottom:135.360000px;}
.y48{bottom:140.760000px;}
.y25{bottom:146.520000px;}
.y6a{bottom:155.880000px;}
.y6b{bottom:159.120000px;}
.y47{bottom:161.280000px;}
.y24{bottom:167.400000px;}
.y83{bottom:169.200000px;}
.y82{bottom:189.720000px;}
.y69{bottom:199.080000px;}
.y46{bottom:203.400000px;}
.y23{bottom:208.800000px;}
.y81{bottom:210.600000px;}
.y68{bottom:219.960000px;}
.y22{bottom:230.040000px;}
.y80{bottom:231.120000px;}
.y67{bottom:240.840000px;}
.y45{bottom:245.160000px;}
.y21{bottom:251.280000px;}
.y7f{bottom:252.000000px;}
.y66{bottom:262.080000px;}
.y20{bottom:271.800000px;}
.y7e{bottom:272.520000px;}
.y44{bottom:287.280000px;}
.y1f{bottom:292.320000px;}
.y7d{bottom:293.400000px;}
.y65{bottom:303.840000px;}
.y43{bottom:307.800000px;}
.y1e{bottom:313.560000px;}
.y7c{bottom:313.920000px;}
.y1d{bottom:334.800000px;}
.y64{bottom:345.960000px;}
.y42{bottom:349.200000px;}
.y7b{bottom:355.320000px;}
.y41{bottom:370.080000px;}
.y1c{bottom:376.200000px;}
.y63{bottom:387.360000px;}
.y3f{bottom:390.600000px;}
.y40{bottom:393.840000px;}
.y1b{bottom:397.080000px;}
.y7a{bottom:417.600000px;}
.y1a{bottom:417.960000px;}
.y62{bottom:429.480000px;}
.y3e{bottom:434.160000px;}
.y19{bottom:438.480000px;}
.y61{bottom:446.400000px;}
.y3c{bottom:454.680000px;}
.y3d{bottom:457.920000px;}
.y60{bottom:458.280000px;}
.y18{bottom:459.360000px;}
.y17{bottom:479.880000px;}
.y3b{bottom:497.520000px;}
.y79{bottom:500.760000px;}
.y5f{bottom:511.920000px;}
.y3a{bottom:518.760000px;}
.y16{bottom:521.280000px;}
.y78{bottom:521.640000px;}
.y5e{bottom:532.800000px;}
.y38{bottom:539.280000px;}
.y39{bottom:542.520000px;}
.y77{bottom:542.880000px;}
.y9a{bottom:545.760000px;}
.y5d{bottom:553.320000px;}
.y15{bottom:563.400000px;}
.y76{bottom:563.760000px;}
.y99{bottom:566.280000px;}
.y37{bottom:582.120000px;}
.y14{bottom:583.920000px;}
.y75{bottom:584.280000px;}
.y5c{bottom:595.440000px;}
.y36{bottom:603.000000px;}
.y74{bottom:605.160000px;}
.y98{bottom:607.680000px;}
.y5a{bottom:612.360000px;}
.y13{bottom:625.320000px;}
.y5b{bottom:627.480000px;}
.y97{bottom:628.920000px;}
.y59{bottom:637.920000px;}
.y35{bottom:645.480000px;}
.y12{bottom:646.200000px;}
.y73{bottom:646.560000px;}
.y96{bottom:649.440000px;}
.y33{bottom:662.400000px;}
.y11{bottom:667.440000px;}
.y95{bottom:670.320000px;}
.y32{bottom:674.280000px;}
.y34{bottom:677.520000px;}
.y58{bottom:677.880000px;}
.y10{bottom:688.320000px;}
.y94{bottom:690.840000px;}
.y57{bottom:698.760000px;}
.yf{bottom:708.840000px;}
.y93{bottom:711.720000px;}
.y31{bottom:727.920000px;}
.ye{bottom:729.720000px;}
.y92{bottom:732.240000px;}
.y56{bottom:740.520000px;}
.yd{bottom:751.320000px;}
.y91{bottom:753.120000px;}
.y30{bottom:770.040000px;}
.yc{bottom:771.840000px;}
.y90{bottom:773.640000px;}
.y55{bottom:782.640000px;}
.y2e{bottom:790.560000px;}
.yb{bottom:792.720000px;}
.y2f{bottom:793.800000px;}
.y8f{bottom:794.520000px;}
.y72{bottom:813.240000px;}
.y8e{bottom:815.040000px;}
.y53{bottom:824.040000px;}
.y54{bottom:827.280000px;}
.ya{bottom:833.760000px;}
.y8d{bottom:835.920000px;}
.y52{bottom:846.360000px;}
.y2d{bottom:854.640000px;}
.y71{bottom:855.000000px;}
.y8c{bottom:856.440000px;}
.y51{bottom:867.240000px;}
.y9{bottom:875.520000px;}
.y70{bottom:875.880000px;}
.y8b{bottom:877.320000px;}
.y2c{bottom:896.040000px;}
.y6f{bottom:896.400000px;}
.y8a{bottom:897.840000px;}
.y50{bottom:909.720000px;}
.y8{bottom:917.280000px;}
.y89{bottom:918.720000px;}
.y4d{bottom:931.320000px;}
.y4f{bottom:934.560000px;}
.y2b{bottom:938.160000px;}
.y7{bottom:938.520000px;}
.y88{bottom:939.240000px;}
.y4e{bottom:939.960000px;}
.y87{bottom:960.120000px;}
.y4c{bottom:975.960000px;}
.y6{bottom:979.560000px;}
.y6e{bottom:979.920000px;}
.y2a{bottom:980.280000px;}
.y86{bottom:980.640000px;}
.y29{bottom:1001.160000px;}
.y85{bottom:1001.520000px;}
.y4a{bottom:1019.880000px;}
.y5{bottom:1021.320000px;}
.y84{bottom:1022.040000px;}
.y4b{bottom:1023.120000px;}
.y49{bottom:1042.200000px;}
.y28{bottom:1042.560000px;}
.y6d{bottom:1042.920000px;}
.y4{bottom:1063.080000px;}
.y27{bottom:1063.440000px;}
.y2{bottom:1111.500000px;}
.y1{bottom:1116.720000px;}
.h2{height:22.500000px;}
.h9{height:34.797656px;}
.h3{height:48.796875px;}
.h4{height:50.027344px;}
.h1{height:50.308594px;}
.h5{height:50.941406px;}
.h8{height:60.717656px;}
.ha{height:92.701406px;}
.h7{height:98.461406px;}
.h6{height:105.661406px;}
.h0{height:1188.000000px;}
.w1{width:12.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:135.000000px;}
.x1f{left:162.000000px;}
.x5{left:173.772936px;}
.x20{left:189.000000px;}
.x4{left:212.752440px;}
.x16{left:222.840000px;}
.x18{left:264.742308px;}
.x17{left:268.776468px;}
.x1b{left:289.109628px;}
.x6{left:329.005404px;}
.x13{left:342.319680px;}
.x9{left:345.216456px;}
.x19{left:358.200000px;}
.xa{left:368.114760px;}
.x1d{left:389.313720px;}
.x11{left:394.517880px;}
.x1c{left:396.950760px;}
.xd{left:403.191000px;}
.xe{left:406.440000px;}
.x7{left:447.882480px;}
.x8{left:450.720000px;}
.x2{left:453.000000px;}
.x3{left:459.000000px;}
.x14{left:460.844640px;}
.x1e{left:480.240000px;}
.xb{left:481.680000px;}
.x15{left:482.760000px;}
.x12{left:491.760000px;}
.xf{left:506.160000px;}
.xc{left:527.760000px;}
.x10{left:571.680000px;}
.x1a{left:573.081840px;}
@media print{
.v9{vertical-align:-30.720000pt;}
.v3{vertical-align:-24.320000pt;}
.v8{vertical-align:-17.920000pt;}
.v1{vertical-align:-12.800000pt;}
.v6{vertical-align:-11.520000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:12.800000pt;}
.v7{vertical-align:23.040000pt;}
.v5{vertical-align:42.240000pt;}
.v4{vertical-align:48.640000pt;}
.ls14{letter-spacing:-0.025600pt;}
.ls8{letter-spacing:-0.012800pt;}
.ls7{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.011520pt;}
.lsf{letter-spacing:0.012800pt;}
.ls1d{letter-spacing:0.014080pt;}
.ls1b{letter-spacing:0.024320pt;}
.ls23{letter-spacing:0.170240pt;}
.ls22{letter-spacing:0.215040pt;}
.ls15{letter-spacing:0.282240pt;}
.ls21{letter-spacing:0.367360pt;}
.ls11{letter-spacing:1.066752pt;}
.ls9{letter-spacing:1.406720pt;}
.ls4{letter-spacing:1.406848pt;}
.ls5{letter-spacing:1.532160pt;}
.ls1f{letter-spacing:2.493440pt;}
.ls16{letter-spacing:3.514496pt;}
.ls2{letter-spacing:4.135680pt;}
.ls0{letter-spacing:4.136704pt;}
.ls1{letter-spacing:4.136832pt;}
.ls3{letter-spacing:4.136960pt;}
.ls6{letter-spacing:4.137088pt;}
.ls25{letter-spacing:4.137216pt;}
.ls17{letter-spacing:4.240256pt;}
.ls10{letter-spacing:4.768000pt;}
.lsc{letter-spacing:5.281280pt;}
.ls13{letter-spacing:17.770240pt;}
.ls18{letter-spacing:17.781760pt;}
.ls1e{letter-spacing:17.782144pt;}
.lsb{letter-spacing:17.789440pt;}
.lse{letter-spacing:18.359040pt;}
.ls20{letter-spacing:20.724480pt;}
.lsd{letter-spacing:21.913600pt;}
.ls1c{letter-spacing:21.914880pt;}
.ls12{letter-spacing:22.735360pt;}
.lsa{letter-spacing:25.022720pt;}
.ls19{letter-spacing:26.967040pt;}
.ls24{letter-spacing:30.208000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.987200pt;}
.wsa{word-spacing:-0.412160pt;}
.ws8{word-spacing:-0.327040pt;}
.ws11{word-spacing:-0.259840pt;}
.ws17{word-spacing:-0.215040pt;}
.ws14{word-spacing:-0.078080pt;}
.ws0{word-spacing:-0.064000pt;}
.ws3{word-spacing:0.000000pt;}
.ws9{word-spacing:10.581760pt;}
.wsc{word-spacing:12.060032pt;}
.wsf{word-spacing:12.185600pt;}
.ws7{word-spacing:14.163200pt;}
.wse{word-spacing:17.666560pt;}
.ws16{word-spacing:17.689600pt;}
.ws13{word-spacing:17.706240pt;}
.wsd{word-spacing:17.711232pt;}
.ws4{word-spacing:17.711360pt;}
.ws6{word-spacing:17.717760pt;}
.ws5{word-spacing:19.170560pt;}
.wsb{word-spacing:21.535360pt;}
.ws10{word-spacing:21.536640pt;}
.ws15{word-spacing:21.857280pt;}
.ws12{word-spacing:70.530560pt;}
._6{margin-left:-6.732800pt;}
._0{margin-left:-5.073280pt;}
._9{margin-left:-3.945984pt;}
._1{margin-left:-2.764800pt;}
._3{margin-left:-1.004800pt;}
._2{width:1.339520pt;}
._4{width:3.340800pt;}
._7{width:4.383488pt;}
._a{width:10.618752pt;}
._5{width:17.888640pt;}
._8{width:23.160960pt;}
.fs1{font-size:44.800000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:4.640000pt;}
.y26{bottom:112.000000pt;}
.y6c{bottom:120.320000pt;}
.y48{bottom:125.120000pt;}
.y25{bottom:130.240000pt;}
.y6a{bottom:138.560000pt;}
.y6b{bottom:141.440000pt;}
.y47{bottom:143.360000pt;}
.y24{bottom:148.800000pt;}
.y83{bottom:150.400000pt;}
.y82{bottom:168.640000pt;}
.y69{bottom:176.960000pt;}
.y46{bottom:180.800000pt;}
.y23{bottom:185.600000pt;}
.y81{bottom:187.200000pt;}
.y68{bottom:195.520000pt;}
.y22{bottom:204.480000pt;}
.y80{bottom:205.440000pt;}
.y67{bottom:214.080000pt;}
.y45{bottom:217.920000pt;}
.y21{bottom:223.360000pt;}
.y7f{bottom:224.000000pt;}
.y66{bottom:232.960000pt;}
.y20{bottom:241.600000pt;}
.y7e{bottom:242.240000pt;}
.y44{bottom:255.360000pt;}
.y1f{bottom:259.840000pt;}
.y7d{bottom:260.800000pt;}
.y65{bottom:270.080000pt;}
.y43{bottom:273.600000pt;}
.y1e{bottom:278.720000pt;}
.y7c{bottom:279.040000pt;}
.y1d{bottom:297.600000pt;}
.y64{bottom:307.520000pt;}
.y42{bottom:310.400000pt;}
.y7b{bottom:315.840000pt;}
.y41{bottom:328.960000pt;}
.y1c{bottom:334.400000pt;}
.y63{bottom:344.320000pt;}
.y3f{bottom:347.200000pt;}
.y40{bottom:350.080000pt;}
.y1b{bottom:352.960000pt;}
.y7a{bottom:371.200000pt;}
.y1a{bottom:371.520000pt;}
.y62{bottom:381.760000pt;}
.y3e{bottom:385.920000pt;}
.y19{bottom:389.760000pt;}
.y61{bottom:396.800000pt;}
.y3c{bottom:404.160000pt;}
.y3d{bottom:407.040000pt;}
.y60{bottom:407.360000pt;}
.y18{bottom:408.320000pt;}
.y17{bottom:426.560000pt;}
.y3b{bottom:442.240000pt;}
.y79{bottom:445.120000pt;}
.y5f{bottom:455.040000pt;}
.y3a{bottom:461.120000pt;}
.y16{bottom:463.360000pt;}
.y78{bottom:463.680000pt;}
.y5e{bottom:473.600000pt;}
.y38{bottom:479.360000pt;}
.y39{bottom:482.240000pt;}
.y77{bottom:482.560000pt;}
.y9a{bottom:485.120000pt;}
.y5d{bottom:491.840000pt;}
.y15{bottom:500.800000pt;}
.y76{bottom:501.120000pt;}
.y99{bottom:503.360000pt;}
.y37{bottom:517.440000pt;}
.y14{bottom:519.040000pt;}
.y75{bottom:519.360000pt;}
.y5c{bottom:529.280000pt;}
.y36{bottom:536.000000pt;}
.y74{bottom:537.920000pt;}
.y98{bottom:540.160000pt;}
.y5a{bottom:544.320000pt;}
.y13{bottom:555.840000pt;}
.y5b{bottom:557.760000pt;}
.y97{bottom:559.040000pt;}
.y59{bottom:567.040000pt;}
.y35{bottom:573.760000pt;}
.y12{bottom:574.400000pt;}
.y73{bottom:574.720000pt;}
.y96{bottom:577.280000pt;}
.y33{bottom:588.800000pt;}
.y11{bottom:593.280000pt;}
.y95{bottom:595.840000pt;}
.y32{bottom:599.360000pt;}
.y34{bottom:602.240000pt;}
.y58{bottom:602.560000pt;}
.y10{bottom:611.840000pt;}
.y94{bottom:614.080000pt;}
.y57{bottom:621.120000pt;}
.yf{bottom:630.080000pt;}
.y93{bottom:632.640000pt;}
.y31{bottom:647.040000pt;}
.ye{bottom:648.640000pt;}
.y92{bottom:650.880000pt;}
.y56{bottom:658.240000pt;}
.yd{bottom:667.840000pt;}
.y91{bottom:669.440000pt;}
.y30{bottom:684.480000pt;}
.yc{bottom:686.080000pt;}
.y90{bottom:687.680000pt;}
.y55{bottom:695.680000pt;}
.y2e{bottom:702.720000pt;}
.yb{bottom:704.640000pt;}
.y2f{bottom:705.600000pt;}
.y8f{bottom:706.240000pt;}
.y72{bottom:722.880000pt;}
.y8e{bottom:724.480000pt;}
.y53{bottom:732.480000pt;}
.y54{bottom:735.360000pt;}
.ya{bottom:741.120000pt;}
.y8d{bottom:743.040000pt;}
.y52{bottom:752.320000pt;}
.y2d{bottom:759.680000pt;}
.y71{bottom:760.000000pt;}
.y8c{bottom:761.280000pt;}
.y51{bottom:770.880000pt;}
.y9{bottom:778.240000pt;}
.y70{bottom:778.560000pt;}
.y8b{bottom:779.840000pt;}
.y2c{bottom:796.480000pt;}
.y6f{bottom:796.800000pt;}
.y8a{bottom:798.080000pt;}
.y50{bottom:808.640000pt;}
.y8{bottom:815.360000pt;}
.y89{bottom:816.640000pt;}
.y4d{bottom:827.840000pt;}
.y4f{bottom:830.720000pt;}
.y2b{bottom:833.920000pt;}
.y7{bottom:834.240000pt;}
.y88{bottom:834.880000pt;}
.y4e{bottom:835.520000pt;}
.y87{bottom:853.440000pt;}
.y4c{bottom:867.520000pt;}
.y6{bottom:870.720000pt;}
.y6e{bottom:871.040000pt;}
.y2a{bottom:871.360000pt;}
.y86{bottom:871.680000pt;}
.y29{bottom:889.920000pt;}
.y85{bottom:890.240000pt;}
.y4a{bottom:906.560000pt;}
.y5{bottom:907.840000pt;}
.y84{bottom:908.480000pt;}
.y4b{bottom:909.440000pt;}
.y49{bottom:926.400000pt;}
.y28{bottom:926.720000pt;}
.y6d{bottom:927.040000pt;}
.y4{bottom:944.960000pt;}
.y27{bottom:945.280000pt;}
.y2{bottom:988.000000pt;}
.y1{bottom:992.640000pt;}
.h2{height:20.000000pt;}
.h9{height:30.931250pt;}
.h3{height:43.375000pt;}
.h4{height:44.468750pt;}
.h1{height:44.718750pt;}
.h5{height:45.281250pt;}
.h8{height:53.971250pt;}
.ha{height:82.401250pt;}
.h7{height:87.521250pt;}
.h6{height:93.921250pt;}
.h0{height:1056.000000pt;}
.w1{width:10.666667pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:120.000000pt;}
.x1f{left:144.000000pt;}
.x5{left:154.464832pt;}
.x20{left:168.000000pt;}
.x4{left:189.113280pt;}
.x16{left:198.080000pt;}
.x18{left:235.326496pt;}
.x17{left:238.912416pt;}
.x1b{left:256.986336pt;}
.x6{left:292.449248pt;}
.x13{left:304.284160pt;}
.x9{left:306.859072pt;}
.x19{left:318.400000pt;}
.xa{left:327.213120pt;}
.x1d{left:346.056640pt;}
.x11{left:350.682560pt;}
.x1c{left:352.845120pt;}
.xd{left:358.392000pt;}
.xe{left:361.280000pt;}
.x7{left:398.117760pt;}
.x8{left:400.640000pt;}
.x2{left:402.666667pt;}
.x3{left:408.000000pt;}
.x14{left:409.639680pt;}
.x1e{left:426.880000pt;}
.xb{left:428.160000pt;}
.x15{left:429.120000pt;}
.x12{left:437.120000pt;}
.xf{left:449.920000pt;}
.xc{left:469.120000pt;}
.x10{left:508.160000pt;}
.x1a{left:509.406080pt;}
}




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