
    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_41b7bc6fb8a846c5b4cca057.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.002930;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_a0813f799a6f19192a4a4792.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.002930;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_58a2d9852bc0cbb2ed94283f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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;}
.m1{transform:matrix(0.247778,-0.032177,0.032199,0.247918,0,0);-ms-transform:matrix(0.247778,-0.032177,0.032199,0.247918,0,0);-webkit-transform:matrix(0.247778,-0.032177,0.032199,0.247918,0,0);}
.m8{transform:matrix(0.247942,-0.030878,0.030898,0.248083,0,0);-ms-transform:matrix(0.247942,-0.030878,0.030898,0.248083,0,0);-webkit-transform:matrix(0.247942,-0.030878,0.030898,0.248083,0,0);}
.m7{transform:matrix(0.248624,-0.024812,0.024824,0.248764,0,0);-ms-transform:matrix(0.248624,-0.024812,0.024824,0.248764,0,0);-webkit-transform:matrix(0.248624,-0.024812,0.024824,0.248764,0,0);}
.m0{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls16{letter-spacing:0.000000px;}
.ls2a{letter-spacing:0.012257px;}
.ls14{letter-spacing:0.023646px;}
.ls31{letter-spacing:0.032761px;}
.ls9{letter-spacing:0.042693px;}
.ls2e{letter-spacing:0.052508px;}
.ls6{letter-spacing:0.078414px;}
.ls30{letter-spacing:0.081059px;}
.ls21{letter-spacing:0.083777px;}
.ls34{letter-spacing:0.102037px;}
.ls2b{letter-spacing:0.131002px;}
.ls33{letter-spacing:0.150515px;}
.lsc{letter-spacing:0.163362px;}
.ls1d{letter-spacing:0.193670px;}
.ls24{letter-spacing:0.202675px;}
.ls13{letter-spacing:0.208854px;}
.ls26{letter-spacing:0.222288px;}
.ls2c{letter-spacing:0.245124px;}
.ls20{letter-spacing:0.265070px;}
.ls1a{letter-spacing:0.276540px;}
.ls1f{letter-spacing:0.281645px;}
.ls28{letter-spacing:0.293808px;}
.ls3{letter-spacing:0.301614px;}
.ls22{letter-spacing:0.327319px;}
.ls5{letter-spacing:0.340026px;}
.lsd{letter-spacing:0.352302px;}
.ls23{letter-spacing:0.353165px;}
.ls1b{letter-spacing:0.357638px;}
.ls29{letter-spacing:0.362650px;}
.lsf{letter-spacing:0.391023px;}
.ls10{letter-spacing:0.405627px;}
.ls1{letter-spacing:0.417705px;}
.ls4{letter-spacing:0.484023px;}
.ls8{letter-spacing:0.510525px;}
.ls1c{letter-spacing:0.531120px;}
.ls2d{letter-spacing:0.531481px;}
.ls1e{letter-spacing:0.537350px;}
.ls7{letter-spacing:0.570861px;}
.ls2{letter-spacing:0.583137px;}
.ls25{letter-spacing:0.603120px;}
.ls27{letter-spacing:0.633019px;}
.ls11{letter-spacing:0.757113px;}
.ls2f{letter-spacing:0.817237px;}
.lsb{letter-spacing:0.869967px;}
.ls0{letter-spacing:1.054026px;}
.ls15{letter-spacing:1.198023px;}
.lsa{letter-spacing:1.224945px;}
.lse{letter-spacing:1.237221px;}
.ls12{letter-spacing:1.297736px;}
.ls32{letter-spacing:1.443037px;}
.ls17{letter-spacing:47.891981px;}
.ls18{letter-spacing:51.922179px;}
.ls19{letter-spacing:58.224577px;}
.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;}
}
.ws9{word-spacing:-32.534088px;}
.ws3{word-spacing:-29.777748px;}
.ws0{word-spacing:-29.768939px;}
.ws7{word-spacing:-27.174229px;}
.ws8{word-spacing:-27.173150px;}
.ws5{word-spacing:-21.641751px;}
.ws6{word-spacing:-19.038232px;}
.ws1{word-spacing:-16.271993px;}
.ws4{word-spacing:-8.135997px;}
.ws2{word-spacing:0.000000px;}
._0{margin-left:-1.224009px;}
._1{width:1.015820px;}
._2{width:14.629348px;}
._3{width:26.158379px;}
._4{width:29.054987px;}
._5{width:56.553083px;}
.fcf{color:rgb(89,89,89);}
.fce{color:rgb(79,98,40);}
.fc0{color:rgb(137,137,137);}
.fc3{color:rgb(0,0,0);}
.fc4{color:rgb(255,255,255);}
.fc1{color:rgb(228,108,10);}
.fc2{color:rgb(49,133,156);}
.fc5{color:transparent;}
.fc6{color:rgb(149,55,53);}
.fc7{color:rgb(0,0,255);}
.fc9{color:rgb(0,128,0);}
.fc8{color:rgb(255,0,0);}
.fca{color:rgb(79,129,189);}
.fcd{color:rgb(31,73,124);}
.fcb{color:rgb(255,101,0);}
.fcc{color:rgb(152,72,7);}
.fs0{font-size:35.999986px;}
.fs5{font-size:53.999978px;}
.fs4{font-size:59.759976px;}
.fs9{font-size:66.239974px;}
.fs3{font-size:71.999971px;}
.fs8{font-size:84.239966px;}
.fs2{font-size:95.759962px;}
.fsb{font-size:107.999957px;}
.fsa{font-size:120.235176px;}
.fs7{font-size:120.239952px;}
.fs1{font-size:131.720967px;}
.fs6{font-size:131.759947px;}
.fsc{font-size:143.956143px;}
.y0{bottom:0.000000px;}
.y51{bottom:8.099183px;}
.y65{bottom:8.818973px;}
.y25{bottom:8.819184px;}
.y8b{bottom:12.058993px;}
.yb{bottom:174.719930px;}
.y48{bottom:181.919927px;}
.ya{bottom:182.099927px;}
.y47{bottom:210.719916px;}
.y22{bottom:217.739913px;}
.y5d{bottom:224.219910px;}
.y46{bottom:239.519904px;}
.y5c{bottom:246.899901px;}
.y76{bottom:258.059897px;}
.y30{bottom:261.299895px;}
.y63{bottom:264.539894px;}
.y5b{bottom:269.579892px;}
.y45{bottom:274.079890px;}
.y62{bottom:287.219885px;}
.y5a{bottom:292.259883px;}
.y44{bottom:302.699879px;}
.y2f{bottom:304.319878px;}
.y61{bottom:309.899876px;}
.y7f{bottom:312.059875px;}
.y59{bottom:320.159872px;}
.y2e{bottom:325.919870px;}
.y43{bottom:337.259865px;}
.y60{bottom:337.799865px;}
.y75{bottom:338.699794px;}
.y7e{bottom:342.299863px;}
.y58{bottom:342.839863px;}
.y2d{bottom:347.519861px;}
.y5f{bottom:360.479856px;}
.y57{bottom:365.519854px;}
.y42{bottom:366.059854px;}
.y2c{bottom:369.119852px;}
.y7d{bottom:372.539851px;}
.y74{bottom:375.599850px;}
.y5e{bottom:383.159847px;}
.y56{bottom:388.199845px;}
.y2b{bottom:390.539844px;}
.y73{bottom:400.259746px;}
.y41{bottom:400.619840px;}
.y7c{bottom:402.779839px;}
.y55{bottom:410.879836px;}
.y2a{bottom:412.139835px;}
.y88{bottom:421.319831px;}
.y40{bottom:429.419828px;}
.y54{bottom:433.559827px;}
.y29{bottom:433.739827px;}
.y72{bottom:434.459826px;}
.y1d{bottom:444.179822px;}
.y87{bottom:451.739819px;}
.y28{bottom:455.339818px;}
.y53{bottom:456.239818px;}
.y3f{bottom:458.039817px;}
.y1c{bottom:465.599814px;}
.y86{bottom:481.979807px;}
.y3e{bottom:486.839805px;}
.y21{bottom:497.459801px;}
.y27{bottom:498.359801px;}
.y52{bottom:506.819797px;}
.y85{bottom:512.219795px;}
.y1b{bottom:523.559791px;}
.y7b{bottom:525.899790px;}
.y1e{bottom:526.259789px;}
.y3d{bottom:531.659787px;}
.y24{bottom:532.200600px;}
.y20{bottom:533.459787px;}
.y50{bottom:534.720600px;}
.y89{bottom:537.060600px;}
.y71{bottom:537.599785px;}
.yc{bottom:537.959785px;}
.y26{bottom:541.019784px;}
.y9{bottom:704.099718px;}
.y11{bottom:705.359718px;}
.y12{bottom:706.619717px;}
.y1{bottom:708.059717px;}
.y8{bottom:722.099711px;}
.y3c{bottom:765.659694px;}
.y3b{bottom:787.259685px;}
.y4f{bottom:823.799670px;}
.y7{bottom:825.239670px;}
.y3a{bottom:830.279668px;}
.y6{bottom:846.839661px;}
.y4e{bottom:848.999660px;}
.y39{bottom:851.879659px;}
.y70{bottom:855.299658px;}
.y5{bottom:870.959652px;}
.y38{bottom:873.479651px;}
.ye{bottom:874.199650px;}
.y6f{bottom:875.099650px;}
.y10{bottom:875.459650px;}
.y6c{bottom:888.419645px;}
.y7a{bottom:891.659643px;}
.y6e{bottom:894.899642px;}
.y37{bottom:895.079642px;}
.yd{bottom:895.799642px;}
.yf{bottom:897.059641px;}
.y4d{bottom:899.399640px;}
.y6b{bottom:908.219637px;}
.y16{bottom:912.899635px;}
.y1a{bottom:914.159634px;}
.y6d{bottom:914.699634px;}
.y36{bottom:916.499633px;}
.y79{bottom:919.379632px;}
.y84{bottom:923.519631px;}
.y6a{bottom:928.019629px;}
.y4{bottom:929.459584px;}
.y4c{bottom:929.819628px;}
.y15{bottom:934.499626px;}
.y19{bottom:935.759626px;}
.y35{bottom:938.099625px;}
.y78{bottom:947.279621px;}
.y69{bottom:947.819621px;}
.y83{bottom:951.239620px;}
.y4b{bottom:955.019618px;}
.y14{bottom:955.919618px;}
.y18{bottom:957.179617px;}
.y34{bottom:959.699616px;}
.y3{bottom:967.439586px;}
.y68{bottom:967.619613px;}
.y13{bottom:977.519609px;}
.y17{bottom:978.779608px;}
.y82{bottom:978.959608px;}
.y4a{bottom:980.219608px;}
.y33{bottom:981.299607px;}
.y67{bottom:987.419605px;}
.y2{bottom:1002.719599px;}
.y8a{bottom:1005.600600px;}
.y81{bottom:1006.679597px;}
.y32{bottom:1024.319590px;}
.y66{bottom:1039.259584px;}
.y31{bottom:1048.799580px;}
.y23{bottom:1051.139580px;}
.y49{bottom:1052.219579px;}
.y64{bottom:1058.160600px;}
.y1f{bottom:1059.419576px;}
.y80{bottom:1063.199575px;}
.y77{bottom:1067.519573px;}
.h1{height:29.689441px;}
.h18{height:34.020000px;}
.hf{height:36.360000px;}
.hb{height:38.880000px;}
.h8{height:44.534162px;}
.h7{height:49.284472px;}
.h10{height:54.628572px;}
.h6{height:59.378882px;}
.h11{height:69.086222px;}
.he{height:69.473293px;}
.h19{height:77.220000px;}
.h5{height:78.973914px;}
.hd{height:87.859652px;}
.h17{height:89.068324px;}
.ha{height:99.162734px;}
.h13{height:99.422286px;}
.h12{height:99.479924px;}
.h14{height:99.482807px;}
.h16{height:99.496669px;}
.h15{height:99.511624px;}
.hc{height:99.874648px;}
.h9{height:108.663355px;}
.h3{height:108.957178px;}
.h2{height:108.968462px;}
.h4{height:109.015622px;}
.h1a{height:119.049959px;}
.h0{height:1263.000000px;}
.w8{width:7.020000px;}
.w2{width:15.660000px;}
.w4{width:15.840000px;}
.w3{width:16.020000px;}
.w9{width:58.680000px;}
.w1{width:76.320000px;}
.w7{width:145.800000px;}
.w6{width:177.660000px;}
.wa{width:240.300000px;}
.w5{width:245.700000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x33{left:4.859808px;}
.x14{left:181.619927px;}
.x19{left:184.500000px;}
.x9{left:193.499923px;}
.x6{left:194.939922px;}
.x1c{left:196.559921px;}
.x11{left:198.359921px;}
.xa{left:201.059920px;}
.x28{left:204.479918px;}
.xb{left:207.359918px;}
.x13{left:208.619917px;}
.x2e{left:216.899913px;}
.x15{left:219.059912px;}
.x29{left:223.739630px;}
.x2{left:229.679908px;}
.x5{left:232.019907px;}
.x7{left:241.019904px;}
.x2f{left:249.119900px;}
.x21{left:250.560000px;}
.x2c{left:254.519898px;}
.x1a{left:260.820000px;}
.x3{left:265.139291px;}
.x22{left:266.580000px;}
.x26{left:271.259891px;}
.x2d{left:274.859890px;}
.x1b{left:276.479889px;}
.x4{left:280.259194px;}
.x23{left:282.420000px;}
.x25{left:300.960000px;}
.x1d{left:311.759875px;}
.x1f{left:321.299871px;}
.x17{left:322.919871px;}
.x24{left:334.979866px;}
.x8{left:379.439848px;}
.x30{left:388.080000px;}
.x1e{left:397.979841px;}
.x27{left:432.359537px;}
.x2b{left:446.939849px;}
.x2a{left:453.779818px;}
.x12{left:457.019817px;}
.xf{left:459.719921px;}
.x10{left:467.819921px;}
.x16{left:470.339812px;}
.x20{left:476.459881px;}
.xe{left:480.419842px;}
.xc{left:516.959793px;}
.xd{left:525.959790px;}
.x31{left:533.520000px;}
.x32{left:540.360000px;}
.x18{left:674.819730px;}
.x1{left:679.319728px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls16{letter-spacing:0.000000pt;}
.ls2a{letter-spacing:0.010895pt;}
.ls14{letter-spacing:0.021019pt;}
.ls31{letter-spacing:0.029121pt;}
.ls9{letter-spacing:0.037949pt;}
.ls2e{letter-spacing:0.046674pt;}
.ls6{letter-spacing:0.069701pt;}
.ls30{letter-spacing:0.072052pt;}
.ls21{letter-spacing:0.074468pt;}
.ls34{letter-spacing:0.090700pt;}
.ls2b{letter-spacing:0.116446pt;}
.ls33{letter-spacing:0.133791pt;}
.lsc{letter-spacing:0.145211pt;}
.ls1d{letter-spacing:0.172151pt;}
.ls24{letter-spacing:0.180156pt;}
.ls13{letter-spacing:0.185648pt;}
.ls26{letter-spacing:0.197589pt;}
.ls2c{letter-spacing:0.217888pt;}
.ls20{letter-spacing:0.235618pt;}
.ls1a{letter-spacing:0.245813pt;}
.ls1f{letter-spacing:0.250351pt;}
.ls28{letter-spacing:0.261163pt;}
.ls3{letter-spacing:0.268101pt;}
.ls22{letter-spacing:0.290950pt;}
.ls5{letter-spacing:0.302245pt;}
.lsd{letter-spacing:0.313157pt;}
.ls23{letter-spacing:0.313924pt;}
.ls1b{letter-spacing:0.317901pt;}
.ls29{letter-spacing:0.322355pt;}
.lsf{letter-spacing:0.347576pt;}
.ls10{letter-spacing:0.360557pt;}
.ls1{letter-spacing:0.371293pt;}
.ls4{letter-spacing:0.430242pt;}
.ls8{letter-spacing:0.453800pt;}
.ls1c{letter-spacing:0.472107pt;}
.ls2d{letter-spacing:0.472428pt;}
.ls1e{letter-spacing:0.477645pt;}
.ls7{letter-spacing:0.507432pt;}
.ls2{letter-spacing:0.518344pt;}
.ls25{letter-spacing:0.536107pt;}
.ls27{letter-spacing:0.562684pt;}
.ls11{letter-spacing:0.672989pt;}
.ls2f{letter-spacing:0.726433pt;}
.lsb{letter-spacing:0.773304pt;}
.ls0{letter-spacing:0.936912pt;}
.ls15{letter-spacing:1.064909pt;}
.lsa{letter-spacing:1.088840pt;}
.lse{letter-spacing:1.099752pt;}
.ls12{letter-spacing:1.153544pt;}
.ls32{letter-spacing:1.282699pt;}
.ls17{letter-spacing:42.570650pt;}
.ls18{letter-spacing:46.153048pt;}
.ls19{letter-spacing:51.755179pt;}
.ws9{word-spacing:-28.919190pt;}
.ws3{word-spacing:-26.469109pt;}
.ws0{word-spacing:-26.461279pt;}
.ws7{word-spacing:-24.154870pt;}
.ws8{word-spacing:-24.153911pt;}
.ws5{word-spacing:-19.237112pt;}
.ws6{word-spacing:-16.922873pt;}
.ws1{word-spacing:-14.463994pt;}
.ws4{word-spacing:-7.231997pt;}
.ws2{word-spacing:0.000000pt;}
._0{margin-left:-1.088008pt;}
._1{width:0.902951pt;}
._2{width:13.003865pt;}
._3{width:23.251892pt;}
._4{width:25.826655pt;}
._5{width:50.269407pt;}
.fs0{font-size:31.999987pt;}
.fs5{font-size:47.999981pt;}
.fs4{font-size:53.119979pt;}
.fs9{font-size:58.879976pt;}
.fs3{font-size:63.999974pt;}
.fs8{font-size:74.879970pt;}
.fs2{font-size:85.119966pt;}
.fsb{font-size:95.999962pt;}
.fsa{font-size:106.875712pt;}
.fs7{font-size:106.879957pt;}
.fs1{font-size:117.085304pt;}
.fs6{font-size:117.119953pt;}
.fsc{font-size:127.961016pt;}
.y0{bottom:0.000000pt;}
.y51{bottom:7.199274pt;}
.y65{bottom:7.839087pt;}
.y25{bottom:7.839274pt;}
.y8b{bottom:10.719105pt;}
.yb{bottom:155.306605pt;}
.y48{bottom:161.706602pt;}
.ya{bottom:161.866602pt;}
.y47{bottom:187.306592pt;}
.y22{bottom:193.546589pt;}
.y5d{bottom:199.306587pt;}
.y46{bottom:212.906582pt;}
.y5c{bottom:219.466579pt;}
.y76{bottom:229.386575pt;}
.y30{bottom:232.266574pt;}
.y63{bottom:235.146573pt;}
.y5b{bottom:239.626571pt;}
.y45{bottom:243.626569pt;}
.y62{bottom:255.306565pt;}
.y5a{bottom:259.786563pt;}
.y44{bottom:269.066559pt;}
.y2f{bottom:270.506558pt;}
.y61{bottom:275.466556pt;}
.y7f{bottom:277.386556pt;}
.y59{bottom:284.586553pt;}
.y2e{bottom:289.706551pt;}
.y43{bottom:299.786547pt;}
.y60{bottom:300.266547pt;}
.y75{bottom:301.066483pt;}
.y7e{bottom:304.266545pt;}
.y58{bottom:304.746545pt;}
.y2d{bottom:308.906543pt;}
.y5f{bottom:320.426538pt;}
.y57{bottom:324.906537pt;}
.y42{bottom:325.386537pt;}
.y2c{bottom:328.106535pt;}
.y7d{bottom:331.146534pt;}
.y74{bottom:333.866533pt;}
.y5e{bottom:340.586530pt;}
.y56{bottom:345.066529pt;}
.y2b{bottom:347.146528pt;}
.y73{bottom:355.786441pt;}
.y41{bottom:356.106524pt;}
.y7c{bottom:358.026523pt;}
.y55{bottom:365.226521pt;}
.y2a{bottom:366.346520pt;}
.y88{bottom:374.506517pt;}
.y40{bottom:381.706514pt;}
.y54{bottom:385.386513pt;}
.y29{bottom:385.546512pt;}
.y72{bottom:386.186512pt;}
.y1d{bottom:394.826509pt;}
.y87{bottom:401.546506pt;}
.y28{bottom:404.746505pt;}
.y53{bottom:405.546504pt;}
.y3f{bottom:407.146504pt;}
.y1c{bottom:413.866501pt;}
.y86{bottom:428.426495pt;}
.y3e{bottom:432.746494pt;}
.y21{bottom:442.186490pt;}
.y27{bottom:442.986489pt;}
.y52{bottom:450.506486pt;}
.y85{bottom:455.306485pt;}
.y1b{bottom:465.386481pt;}
.y7b{bottom:467.466480pt;}
.y1e{bottom:467.786480pt;}
.y3d{bottom:472.586478pt;}
.y24{bottom:473.067200pt;}
.y20{bottom:474.186477pt;}
.y50{bottom:475.307200pt;}
.y89{bottom:477.387200pt;}
.y71{bottom:477.866476pt;}
.yc{bottom:478.186475pt;}
.y26{bottom:480.906474pt;}
.y9{bottom:625.866416pt;}
.y11{bottom:626.986416pt;}
.y12{bottom:628.106415pt;}
.y1{bottom:629.386415pt;}
.y8{bottom:641.866410pt;}
.y3c{bottom:680.586394pt;}
.y3b{bottom:699.786387pt;}
.y4f{bottom:732.266374pt;}
.y7{bottom:733.546373pt;}
.y3a{bottom:738.026371pt;}
.y6{bottom:752.746366pt;}
.y4e{bottom:754.666365pt;}
.y39{bottom:757.226364pt;}
.y70{bottom:760.266363pt;}
.y5{bottom:774.186357pt;}
.y38{bottom:776.426356pt;}
.ye{bottom:777.066356pt;}
.y6f{bottom:777.866356pt;}
.y10{bottom:778.186355pt;}
.y6c{bottom:789.706351pt;}
.y7a{bottom:792.586350pt;}
.y6e{bottom:795.466348pt;}
.y37{bottom:795.626348pt;}
.yd{bottom:796.266348pt;}
.yf{bottom:797.386348pt;}
.y4d{bottom:799.466347pt;}
.y6b{bottom:807.306344pt;}
.y16{bottom:811.466342pt;}
.y1a{bottom:812.586342pt;}
.y6d{bottom:813.066341pt;}
.y36{bottom:814.666341pt;}
.y79{bottom:817.226340pt;}
.y84{bottom:820.906338pt;}
.y6a{bottom:824.906337pt;}
.y4{bottom:826.186297pt;}
.y4c{bottom:826.506336pt;}
.y15{bottom:830.666334pt;}
.y19{bottom:831.786334pt;}
.y35{bottom:833.866333pt;}
.y78{bottom:842.026330pt;}
.y69{bottom:842.506330pt;}
.y83{bottom:845.546328pt;}
.y4b{bottom:848.906327pt;}
.y14{bottom:849.706327pt;}
.y18{bottom:850.826326pt;}
.y34{bottom:853.066325pt;}
.y3{bottom:859.946299pt;}
.y68{bottom:860.106323pt;}
.y13{bottom:868.906319pt;}
.y17{bottom:870.026319pt;}
.y82{bottom:870.186319pt;}
.y4a{bottom:871.306318pt;}
.y33{bottom:872.266318pt;}
.y67{bottom:877.706316pt;}
.y2{bottom:891.306310pt;}
.y8a{bottom:893.867200pt;}
.y81{bottom:894.826309pt;}
.y32{bottom:910.506302pt;}
.y66{bottom:923.786297pt;}
.y31{bottom:932.266294pt;}
.y23{bottom:934.346293pt;}
.y49{bottom:935.306293pt;}
.y64{bottom:940.587200pt;}
.y1f{bottom:941.706290pt;}
.y80{bottom:945.066289pt;}
.y77{bottom:948.906287pt;}
.h1{height:26.390614pt;}
.h18{height:30.240000pt;}
.hf{height:32.320000pt;}
.hb{height:34.560000pt;}
.h8{height:39.585922pt;}
.h7{height:43.808420pt;}
.h10{height:48.558731pt;}
.h6{height:52.781229pt;}
.h11{height:61.409975pt;}
.he{height:61.754038pt;}
.h19{height:68.640000pt;}
.h5{height:70.199034pt;}
.hd{height:78.097469pt;}
.h17{height:79.171843pt;}
.ha{height:88.144652pt;}
.h13{height:88.375366pt;}
.h12{height:88.426599pt;}
.h14{height:88.429161pt;}
.h16{height:88.441483pt;}
.h15{height:88.454777pt;}
.hc{height:88.777464pt;}
.h9{height:96.589649pt;}
.h3{height:96.850825pt;}
.h2{height:96.860855pt;}
.h4{height:96.902775pt;}
.h1a{height:105.822185pt;}
.h0{height:1122.666667pt;}
.w8{width:6.240000pt;}
.w2{width:13.920000pt;}
.w4{width:14.080000pt;}
.w3{width:14.240000pt;}
.w9{width:52.160000pt;}
.w1{width:67.840000pt;}
.w7{width:129.600000pt;}
.w6{width:157.920000pt;}
.wa{width:213.600000pt;}
.w5{width:218.400000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x33{left:4.319829pt;}
.x14{left:161.439935pt;}
.x19{left:164.000000pt;}
.x9{left:171.999931pt;}
.x6{left:173.279931pt;}
.x1c{left:174.719930pt;}
.x11{left:176.319929pt;}
.xa{left:178.719929pt;}
.x28{left:181.759927pt;}
.xb{left:184.319927pt;}
.x13{left:185.439926pt;}
.x2e{left:192.799923pt;}
.x15{left:194.719922pt;}
.x29{left:198.879671pt;}
.x2{left:204.159918pt;}
.x5{left:206.239918pt;}
.x7{left:214.239914pt;}
.x2f{left:221.439911pt;}
.x21{left:222.720000pt;}
.x2c{left:226.239910pt;}
.x1a{left:231.840000pt;}
.x3{left:235.679370pt;}
.x22{left:236.960000pt;}
.x26{left:241.119904pt;}
.x2d{left:244.319902pt;}
.x1b{left:245.759902pt;}
.x4{left:249.119283pt;}
.x23{left:251.040000pt;}
.x25{left:267.520000pt;}
.x1d{left:277.119889pt;}
.x1f{left:285.599886pt;}
.x17{left:287.039885pt;}
.x24{left:297.759881pt;}
.x8{left:337.279865pt;}
.x30{left:344.960000pt;}
.x1e{left:353.759858pt;}
.x27{left:384.319588pt;}
.x2b{left:397.279866pt;}
.x2a{left:403.359839pt;}
.x12{left:406.239838pt;}
.xf{left:408.639930pt;}
.x10{left:415.839929pt;}
.x16{left:418.079833pt;}
.x20{left:423.519894pt;}
.xe{left:427.039860pt;}
.xc{left:459.519816pt;}
.xd{left:467.519813pt;}
.x31{left:474.240000pt;}
.x32{left:480.320000pt;}
.x18{left:599.839760pt;}
.x1{left:603.839758pt;}
}




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