
    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_59d968028ae024683a8ccf81.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_986bfdc4a7a1c4b16d667401.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_b6f4bac02b5fed23fafbdbee.woff')format("woff");}.ff3{font-family:ff3;line-height:0.767578;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_b4feb020e884746ba36338c3.woff')format("woff");}.ff4{font-family:ff4;line-height:0.739746;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_d830476226222bada7765dda.woff')format("woff");}.ff5{font-family:ff5;line-height:1.172852;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls13{letter-spacing:-0.786000px;}
.ls19{letter-spacing:-0.544800px;}
.lsf{letter-spacing:-0.533400px;}
.ls7{letter-spacing:-0.529800px;}
.ls5{letter-spacing:-0.463800px;}
.lsc{letter-spacing:-0.431400px;}
.ls18{letter-spacing:-0.414000px;}
.ls21{letter-spacing:-0.286800px;}
.ls9{letter-spacing:-0.240600px;}
.ls4{letter-spacing:-0.132600px;}
.lsa{letter-spacing:-0.115800px;}
.ls10{letter-spacing:-0.107400px;}
.ls16{letter-spacing:-0.064800px;}
.ls14{letter-spacing:-0.058320px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.038880px;}
.lsb{letter-spacing:0.140400px;}
.ls6{letter-spacing:0.150000px;}
.ls1a{letter-spacing:0.174000px;}
.lsd{letter-spacing:0.175200px;}
.ls17{letter-spacing:0.180000px;}
.ls1f{letter-spacing:0.186600px;}
.ls8{letter-spacing:0.360000px;}
.ls1d{letter-spacing:0.393600px;}
.ls0{letter-spacing:0.427680px;}
.ls1e{letter-spacing:0.433200px;}
.ls1c{letter-spacing:0.479520px;}
.ls1{letter-spacing:0.617760px;}
.ls20{letter-spacing:0.660000px;}
.ls15{letter-spacing:0.666720px;}
.ls11{letter-spacing:5.706720px;}
.lse{letter-spacing:21.546720px;}
.ls1b{letter-spacing:42.570720px;}
.ls12{letter-spacing:45.306720px;}
.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;}
}
.ws0{word-spacing:-19.077120px;}
.ws3{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.837640px;}
.ws2{word-spacing:-14.506440px;}
.wsf{word-spacing:-14.165760px;}
.wsd{word-spacing:-13.938960px;}
.wse{word-spacing:-13.692360px;}
.wsa{word-spacing:-13.680960px;}
.ws9{word-spacing:-13.646160px;}
.ws7{word-spacing:-13.505760px;}
.wsc{word-spacing:-13.447440px;}
.ws8{word-spacing:-13.389960px;}
.ws10{word-spacing:-13.218960px;}
.ws4{word-spacing:-9.437760px;}
.ws6{word-spacing:-9.146880px;}
.ws5{word-spacing:-8.786880px;}
.wsb{word-spacing:0.000000px;}
._1e{margin-left:-532.918560px;}
._1f{margin-left:-528.059520px;}
._1{margin-left:-487.878240px;}
._6{margin-left:-409.254240px;}
._8{margin-left:-306.459120px;}
._4{margin-left:-289.292160px;}
._5{margin-left:-287.782560px;}
._0{margin-left:-274.978080px;}
._b{margin-left:-240.510240px;}
._12{margin-left:-233.850240px;}
._17{margin-left:-229.991040px;}
._16{margin-left:-222.405360px;}
._f{margin-left:-203.010240px;}
._19{margin-left:-201.453120px;}
._18{margin-left:-200.226720px;}
._22{margin-left:-196.738560px;}
._21{margin-left:-190.074240px;}
._e{margin-left:-171.054720px;}
._27{margin-left:-169.761600px;}
._d{margin-left:-165.322080px;}
._9{margin-left:-153.774720px;}
._3{margin-left:-150.014400px;}
._a{margin-left:-148.521600px;}
._26{margin-left:-145.104000px;}
._10{margin-left:-141.758400px;}
._c{margin-left:-134.192160px;}
._20{margin-left:-133.011360px;}
._11{margin-left:-116.062560px;}
._25{margin-left:-109.410240px;}
._1d{margin-left:-102.529440px;}
._7{margin-left:-91.124880px;}
._1c{margin-left:-86.399760px;}
._1b{margin-left:-83.520000px;}
._13{margin-left:-82.330560px;}
._23{margin-left:-80.367360px;}
._15{margin-left:-66.703680px;}
._14{margin-left:-49.492560px;}
._24{margin-left:-35.130240px;}
._1a{margin-left:-31.530240px;}
._33{margin-left:-5.813520px;}
._2a{margin-left:-4.412160px;}
._28{margin-left:-2.946240px;}
._2{margin-left:-1.347840px;}
._29{width:1.317240px;}
._2c{width:2.432400px;}
._2b{width:3.709440px;}
._2e{width:5.348160px;}
._2d{width:6.703200px;}
._31{width:7.948080px;}
._32{width:8.964000px;}
._2f{width:10.092480px;}
._38{width:11.952000px;}
._30{width:14.658840px;}
._37{width:15.774120px;}
._35{width:16.790040px;}
._34{width:18.226800px;}
._39{width:19.533960px;}
._36{width:20.676960px;}
._3e{width:21.924360px;}
._3a{width:57.023400px;}
._3d{width:132.861360px;}
._3b{width:168.657600px;}
._3c{width:202.494240px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fs2{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y6{bottom:61.416000px;}
.y64{bottom:91.296000px;}
.y93{bottom:94.176000px;}
.y73{bottom:94.356000px;}
.y63{bottom:112.356000px;}
.y92{bottom:115.236000px;}
.y2f{bottom:123.696000px;}
.y72{bottom:124.416000px;}
.y62{bottom:133.416000px;}
.y2e{bottom:144.756000px;}
.y71{bottom:145.476000px;}
.y91{bottom:152.130000px;}
.y61{bottom:154.470000px;}
.y2d{bottom:165.810000px;}
.y70{bottom:166.530000px;}
.y60{bottom:175.530000px;}
.y2c{bottom:186.870000px;}
.y6f{bottom:187.590000px;}
.y90{bottom:190.290000px;}
.y5f{bottom:196.590000px;}
.y2b{bottom:207.930000px;}
.y6e{bottom:208.650000px;}
.y5e{bottom:217.650000px;}
.y8f{bottom:228.450000px;}
.y2a{bottom:228.990000px;}
.y6d{bottom:229.710000px;}
.y5d{bottom:238.710000px;}
.y29{bottom:250.050000px;}
.y6c{bottom:250.770000px;}
.y5c{bottom:259.770000px;}
.y28{bottom:271.110000px;}
.y6b{bottom:271.830000px;}
.y5b{bottom:280.830000px;}
.y27{bottom:292.170000px;}
.y6a{bottom:292.890000px;}
.y5a{bottom:301.890000px;}
.y26{bottom:313.230000px;}
.y69{bottom:313.950000px;}
.y59{bottom:322.950000px;}
.y25{bottom:334.335000px;}
.y68{bottom:335.055000px;}
.y58{bottom:344.055000px;}
.y24{bottom:355.395000px;}
.y67{bottom:356.115000px;}
.y57{bottom:365.115000px;}
.y23{bottom:376.455000px;}
.y66{bottom:377.175000px;}
.y56{bottom:386.175000px;}
.y22{bottom:397.515000px;}
.y65{bottom:398.235000px;}
.y55{bottom:407.235000px;}
.y21{bottom:418.575000px;}
.y8e{bottom:419.295000px;}
.y54{bottom:428.295000px;}
.y20{bottom:439.635000px;}
.y8d{bottom:440.355000px;}
.y53{bottom:449.355000px;}
.y1f{bottom:460.695000px;}
.y8c{bottom:461.415000px;}
.y52{bottom:470.415000px;}
.y1e{bottom:481.755000px;}
.y8b{bottom:482.475000px;}
.y51{bottom:491.475000px;}
.y1d{bottom:502.815000px;}
.y8a{bottom:503.535000px;}
.y50{bottom:512.535000px;}
.y1c{bottom:523.875000px;}
.y89{bottom:524.595000px;}
.y4f{bottom:533.595000px;}
.y1b{bottom:544.935000px;}
.y88{bottom:545.655000px;}
.y4e{bottom:554.655000px;}
.y87{bottom:566.715000px;}
.y4d{bottom:575.715000px;}
.y86{bottom:587.775000px;}
.y1a{bottom:589.575000px;}
.y4c{bottom:596.805000px;}
.y85{bottom:608.865000px;}
.y4b{bottom:617.865000px;}
.y19{bottom:619.485000px;}
.y84{bottom:629.925000px;}
.y4a{bottom:638.925000px;}
.y18{bottom:640.545000px;}
.y83{bottom:650.805000px;}
.y49{bottom:659.805000px;}
.y17{bottom:661.425000px;}
.y82{bottom:671.865000px;}
.y48{bottom:680.865000px;}
.y16{bottom:682.485000px;}
.y81{bottom:692.925000px;}
.y47{bottom:701.925000px;}
.y15{bottom:703.545000px;}
.y80{bottom:713.985000px;}
.y46{bottom:722.985000px;}
.y14{bottom:724.605000px;}
.y7f{bottom:735.045000px;}
.y45{bottom:744.045000px;}
.y13{bottom:745.665000px;}
.y7e{bottom:756.105000px;}
.y44{bottom:765.105000px;}
.y12{bottom:766.725000px;}
.y7d{bottom:777.165000px;}
.y43{bottom:786.165000px;}
.y11{bottom:787.785000px;}
.y7c{bottom:798.225000px;}
.y42{bottom:807.225000px;}
.y10{bottom:808.845000px;}
.y7b{bottom:819.285000px;}
.y41{bottom:828.285000px;}
.yf{bottom:829.905000px;}
.y7a{bottom:840.345000px;}
.y40{bottom:849.345000px;}
.ye{bottom:850.965000px;}
.y79{bottom:861.405000px;}
.y3f{bottom:870.450000px;}
.yd{bottom:872.250000px;}
.y78{bottom:882.510000px;}
.y3e{bottom:891.510000px;}
.yc{bottom:895.470000px;}
.y77{bottom:903.570000px;}
.y3d{bottom:912.570000px;}
.yb{bottom:921.750000px;}
.y76{bottom:924.630000px;}
.y3c{bottom:933.630000px;}
.ya{bottom:938.310000px;}
.y75{bottom:945.690000px;}
.y3b{bottom:954.690000px;}
.y9{bottom:961.530000px;}
.y74{bottom:966.750000px;}
.y3a{bottom:975.750000px;}
.y8{bottom:983.850000px;}
.y39{bottom:996.810000px;}
.y7{bottom:1009.050000px;}
.y38{bottom:1017.870000px;}
.y37{bottom:1038.930000px;}
.y5{bottom:1049.190000px;}
.y36{bottom:1059.990000px;}
.y35{bottom:1081.050000px;}
.y4{bottom:1081.410000px;}
.y34{bottom:1102.110000px;}
.y3{bottom:1113.630000px;}
.y33{bottom:1123.170000px;}
.y32{bottom:1144.260000px;}
.y2{bottom:1145.700000px;}
.y31{bottom:1165.320000px;}
.y1{bottom:1179.720000px;}
.y30{bottom:1193.220000px;}
.h7{height:38.671172px;}
.h8{height:45.316055px;}
.h9{height:59.439023px;}
.h5{height:61.189805px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.h2{height:86.255508px;}
.h4{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:53.999987px;}
.x7{left:70.199987px;}
.x8{left:75.599987px;}
.xc{left:86.399987px;}
.x10{left:102.275987px;}
.xf{left:108.035987px;}
.xb{left:132.695987px;}
.x5{left:176.969987px;}
.xd{left:217.649987px;}
.xe{left:268.409987px;}
.x3{left:272.189987px;}
.x9{left:322.454987px;}
.x2{left:350.534987px;}
.x4{left:419.114987px;}
.xa{left:446.474987px;}
.x1{left:479.264987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls13{letter-spacing:-0.698667pt;}
.ls19{letter-spacing:-0.484267pt;}
.lsf{letter-spacing:-0.474133pt;}
.ls7{letter-spacing:-0.470933pt;}
.ls5{letter-spacing:-0.412267pt;}
.lsc{letter-spacing:-0.383467pt;}
.ls18{letter-spacing:-0.368000pt;}
.ls21{letter-spacing:-0.254933pt;}
.ls9{letter-spacing:-0.213867pt;}
.ls4{letter-spacing:-0.117867pt;}
.lsa{letter-spacing:-0.102933pt;}
.ls10{letter-spacing:-0.095467pt;}
.ls16{letter-spacing:-0.057600pt;}
.ls14{letter-spacing:-0.051840pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.034560pt;}
.lsb{letter-spacing:0.124800pt;}
.ls6{letter-spacing:0.133333pt;}
.ls1a{letter-spacing:0.154667pt;}
.lsd{letter-spacing:0.155733pt;}
.ls17{letter-spacing:0.160000pt;}
.ls1f{letter-spacing:0.165867pt;}
.ls8{letter-spacing:0.320000pt;}
.ls1d{letter-spacing:0.349867pt;}
.ls0{letter-spacing:0.380160pt;}
.ls1e{letter-spacing:0.385067pt;}
.ls1c{letter-spacing:0.426240pt;}
.ls1{letter-spacing:0.549120pt;}
.ls20{letter-spacing:0.586667pt;}
.ls15{letter-spacing:0.592640pt;}
.ls11{letter-spacing:5.072640pt;}
.lse{letter-spacing:19.152640pt;}
.ls1b{letter-spacing:37.840640pt;}
.ls12{letter-spacing:40.272640pt;}
.ws0{word-spacing:-16.957440pt;}
.ws3{word-spacing:-13.306880pt;}
.ws1{word-spacing:-13.189013pt;}
.ws2{word-spacing:-12.894613pt;}
.wsf{word-spacing:-12.591787pt;}
.wsd{word-spacing:-12.390187pt;}
.wse{word-spacing:-12.170987pt;}
.wsa{word-spacing:-12.160853pt;}
.ws9{word-spacing:-12.129920pt;}
.ws7{word-spacing:-12.005120pt;}
.wsc{word-spacing:-11.953280pt;}
.ws8{word-spacing:-11.902187pt;}
.ws10{word-spacing:-11.750187pt;}
.ws4{word-spacing:-8.389120pt;}
.ws6{word-spacing:-8.130560pt;}
.ws5{word-spacing:-7.810560pt;}
.wsb{word-spacing:0.000000pt;}
._1e{margin-left:-473.705387pt;}
._1f{margin-left:-469.386240pt;}
._1{margin-left:-433.669547pt;}
._6{margin-left:-363.781547pt;}
._8{margin-left:-272.408107pt;}
._4{margin-left:-257.148587pt;}
._5{margin-left:-255.806720pt;}
._0{margin-left:-244.424960pt;}
._b{margin-left:-213.786880pt;}
._12{margin-left:-207.866880pt;}
._17{margin-left:-204.436480pt;}
._16{margin-left:-197.693653pt;}
._f{margin-left:-180.453547pt;}
._19{margin-left:-179.069440pt;}
._18{margin-left:-177.979307pt;}
._22{margin-left:-174.878720pt;}
._21{margin-left:-168.954880pt;}
._e{margin-left:-152.048640pt;}
._27{margin-left:-150.899200pt;}
._d{margin-left:-146.952960pt;}
._9{margin-left:-136.688640pt;}
._3{margin-left:-133.346133pt;}
._a{margin-left:-132.019200pt;}
._26{margin-left:-128.981333pt;}
._10{margin-left:-126.007467pt;}
._c{margin-left:-119.281920pt;}
._20{margin-left:-118.232320pt;}
._11{margin-left:-103.166720pt;}
._25{margin-left:-97.253547pt;}
._1d{margin-left:-91.137280pt;}
._7{margin-left:-80.999893pt;}
._1c{margin-left:-76.799787pt;}
._1b{margin-left:-74.240000pt;}
._13{margin-left:-73.182720pt;}
._23{margin-left:-71.437653pt;}
._15{margin-left:-59.292160pt;}
._14{margin-left:-43.993387pt;}
._24{margin-left:-31.226880pt;}
._1a{margin-left:-28.026880pt;}
._33{margin-left:-5.167573pt;}
._2a{margin-left:-3.921920pt;}
._28{margin-left:-2.618880pt;}
._2{margin-left:-1.198080pt;}
._29{width:1.170880pt;}
._2c{width:2.162133pt;}
._2b{width:3.297280pt;}
._2e{width:4.753920pt;}
._2d{width:5.958400pt;}
._31{width:7.064960pt;}
._32{width:7.968000pt;}
._2f{width:8.971093pt;}
._38{width:10.624000pt;}
._30{width:13.030080pt;}
._37{width:14.021440pt;}
._35{width:14.924480pt;}
._34{width:16.201600pt;}
._39{width:17.363520pt;}
._36{width:18.379520pt;}
._3e{width:19.488320pt;}
._3a{width:50.687467pt;}
._3d{width:118.098987pt;}
._3b{width:149.917867pt;}
._3c{width:179.994880pt;}
.fs2{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:54.592000pt;}
.y64{bottom:81.152000pt;}
.y93{bottom:83.712000pt;}
.y73{bottom:83.872000pt;}
.y63{bottom:99.872000pt;}
.y92{bottom:102.432000pt;}
.y2f{bottom:109.952000pt;}
.y72{bottom:110.592000pt;}
.y62{bottom:118.592000pt;}
.y2e{bottom:128.672000pt;}
.y71{bottom:129.312000pt;}
.y91{bottom:135.226667pt;}
.y61{bottom:137.306667pt;}
.y2d{bottom:147.386667pt;}
.y70{bottom:148.026667pt;}
.y60{bottom:156.026667pt;}
.y2c{bottom:166.106667pt;}
.y6f{bottom:166.746667pt;}
.y90{bottom:169.146667pt;}
.y5f{bottom:174.746667pt;}
.y2b{bottom:184.826667pt;}
.y6e{bottom:185.466667pt;}
.y5e{bottom:193.466667pt;}
.y8f{bottom:203.066667pt;}
.y2a{bottom:203.546667pt;}
.y6d{bottom:204.186667pt;}
.y5d{bottom:212.186667pt;}
.y29{bottom:222.266667pt;}
.y6c{bottom:222.906667pt;}
.y5c{bottom:230.906667pt;}
.y28{bottom:240.986667pt;}
.y6b{bottom:241.626667pt;}
.y5b{bottom:249.626667pt;}
.y27{bottom:259.706667pt;}
.y6a{bottom:260.346667pt;}
.y5a{bottom:268.346667pt;}
.y26{bottom:278.426667pt;}
.y69{bottom:279.066667pt;}
.y59{bottom:287.066667pt;}
.y25{bottom:297.186667pt;}
.y68{bottom:297.826667pt;}
.y58{bottom:305.826667pt;}
.y24{bottom:315.906667pt;}
.y67{bottom:316.546667pt;}
.y57{bottom:324.546667pt;}
.y23{bottom:334.626667pt;}
.y66{bottom:335.266667pt;}
.y56{bottom:343.266667pt;}
.y22{bottom:353.346667pt;}
.y65{bottom:353.986667pt;}
.y55{bottom:361.986667pt;}
.y21{bottom:372.066667pt;}
.y8e{bottom:372.706667pt;}
.y54{bottom:380.706667pt;}
.y20{bottom:390.786667pt;}
.y8d{bottom:391.426667pt;}
.y53{bottom:399.426667pt;}
.y1f{bottom:409.506667pt;}
.y8c{bottom:410.146667pt;}
.y52{bottom:418.146667pt;}
.y1e{bottom:428.226667pt;}
.y8b{bottom:428.866667pt;}
.y51{bottom:436.866667pt;}
.y1d{bottom:446.946667pt;}
.y8a{bottom:447.586667pt;}
.y50{bottom:455.586667pt;}
.y1c{bottom:465.666667pt;}
.y89{bottom:466.306667pt;}
.y4f{bottom:474.306667pt;}
.y1b{bottom:484.386667pt;}
.y88{bottom:485.026667pt;}
.y4e{bottom:493.026667pt;}
.y87{bottom:503.746667pt;}
.y4d{bottom:511.746667pt;}
.y86{bottom:522.466667pt;}
.y1a{bottom:524.066667pt;}
.y4c{bottom:530.493333pt;}
.y85{bottom:541.213333pt;}
.y4b{bottom:549.213333pt;}
.y19{bottom:550.653333pt;}
.y84{bottom:559.933333pt;}
.y4a{bottom:567.933333pt;}
.y18{bottom:569.373333pt;}
.y83{bottom:578.493333pt;}
.y49{bottom:586.493333pt;}
.y17{bottom:587.933333pt;}
.y82{bottom:597.213333pt;}
.y48{bottom:605.213333pt;}
.y16{bottom:606.653333pt;}
.y81{bottom:615.933333pt;}
.y47{bottom:623.933333pt;}
.y15{bottom:625.373333pt;}
.y80{bottom:634.653333pt;}
.y46{bottom:642.653333pt;}
.y14{bottom:644.093333pt;}
.y7f{bottom:653.373333pt;}
.y45{bottom:661.373333pt;}
.y13{bottom:662.813333pt;}
.y7e{bottom:672.093333pt;}
.y44{bottom:680.093333pt;}
.y12{bottom:681.533333pt;}
.y7d{bottom:690.813333pt;}
.y43{bottom:698.813333pt;}
.y11{bottom:700.253333pt;}
.y7c{bottom:709.533333pt;}
.y42{bottom:717.533333pt;}
.y10{bottom:718.973333pt;}
.y7b{bottom:728.253333pt;}
.y41{bottom:736.253333pt;}
.yf{bottom:737.693333pt;}
.y7a{bottom:746.973333pt;}
.y40{bottom:754.973333pt;}
.ye{bottom:756.413333pt;}
.y79{bottom:765.693333pt;}
.y3f{bottom:773.733333pt;}
.yd{bottom:775.333333pt;}
.y78{bottom:784.453333pt;}
.y3e{bottom:792.453333pt;}
.yc{bottom:795.973333pt;}
.y77{bottom:803.173333pt;}
.y3d{bottom:811.173333pt;}
.yb{bottom:819.333333pt;}
.y76{bottom:821.893333pt;}
.y3c{bottom:829.893333pt;}
.ya{bottom:834.053333pt;}
.y75{bottom:840.613333pt;}
.y3b{bottom:848.613333pt;}
.y9{bottom:854.693333pt;}
.y74{bottom:859.333333pt;}
.y3a{bottom:867.333333pt;}
.y8{bottom:874.533333pt;}
.y39{bottom:886.053333pt;}
.y7{bottom:896.933333pt;}
.y38{bottom:904.773333pt;}
.y37{bottom:923.493333pt;}
.y5{bottom:932.613333pt;}
.y36{bottom:942.213333pt;}
.y35{bottom:960.933333pt;}
.y4{bottom:961.253333pt;}
.y34{bottom:979.653333pt;}
.y3{bottom:989.893333pt;}
.y33{bottom:998.373333pt;}
.y32{bottom:1017.120000pt;}
.y2{bottom:1018.400000pt;}
.y31{bottom:1035.840000pt;}
.y1{bottom:1048.640000pt;}
.y30{bottom:1060.640000pt;}
.h7{height:34.374375pt;}
.h8{height:40.280938pt;}
.h9{height:52.834688pt;}
.h5{height:54.390938pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.h2{height:76.671562pt;}
.h4{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:47.999988pt;}
.x7{left:62.399988pt;}
.x8{left:67.199988pt;}
.xc{left:76.799988pt;}
.x10{left:90.911988pt;}
.xf{left:96.031988pt;}
.xb{left:117.951988pt;}
.x5{left:157.306655pt;}
.xd{left:193.466655pt;}
.xe{left:238.586655pt;}
.x3{left:241.946655pt;}
.x9{left:286.626655pt;}
.x2{left:311.586655pt;}
.x4{left:372.546655pt;}
.xa{left:396.866655pt;}
.x1{left:426.013322pt;}
}




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