
    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_6e973a3738c819db9fcdc669.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.924805;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_a8d6693d94f14bf2fdc4bbb3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.919922;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_bee4bbec19e5b1623eb3e534.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.919922;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_34b195330b0a82a207910538.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.919922;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:-28.200000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:25.800000px;}
.v1{vertical-align:28.200000px;}
.ls0{letter-spacing:0.000000px;}
.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:-18.000000px;}
.ws4{word-spacing:-15.000000px;}
.ws8{word-spacing:-14.400000px;}
.ws3{word-spacing:-10.500000px;}
.ws5{word-spacing:-9.600000px;}
.ws2{word-spacing:0.000000px;}
.ws6{word-spacing:27.000000px;}
.ws1{word-spacing:1541.712000px;}
.ws7{word-spacing:1666.794000px;}
._12{margin-left:-1725.564000px;}
._3a{margin-left:-1577.664000px;}
._36{margin-left:-1539.876000px;}
._48{margin-left:-1404.684000px;}
._16{margin-left:-1197.864000px;}
._55{margin-left:-1183.104000px;}
._53{margin-left:-1173.084000px;}
._38{margin-left:-1121.304000px;}
._2d{margin-left:-1111.344000px;}
._57{margin-left:-1096.524000px;}
._4f{margin-left:-1017.984000px;}
._32{margin-left:-992.976000px;}
._c{margin-left:-766.380000px;}
._a{margin-left:-424.896000px;}
._e{margin-left:-8.856000px;}
._0{margin-left:-7.776000px;}
._11{margin-left:-6.564000px;}
._4{margin-left:-5.184000px;}
._1{margin-left:-4.176000px;}
._f{margin-left:-2.748000px;}
._3{margin-left:-1.296000px;}
._2{width:1.056000px;}
._7{width:2.448000px;}
._15{width:42.000000px;}
._14{width:44.748000px;}
._10{width:72.000000px;}
._b{width:388.440000px;}
._21{width:430.152000px;}
._5f{width:432.348000px;}
._26{width:446.352000px;}
._47{width:455.388000px;}
._5e{width:457.116000px;}
._40{width:464.820000px;}
._34{width:474.468000px;}
._3f{width:480.300000px;}
._2b{width:485.628000px;}
._41{width:486.780000px;}
._2a{width:488.390400px;}
._1f{width:493.092000px;}
._4d{width:497.004000px;}
._2c{width:504.492000px;}
._31{width:506.652000px;}
._51{width:508.380000px;}
._18{width:510.072000px;}
._44{width:512.484000px;}
._25{width:513.924000px;}
._3c{width:520.764000px;}
._24{width:523.896000px;}
._4e{width:526.884000px;}
._46{width:530.268000px;}
._22{width:537.228000px;}
._1e{width:539.832000px;}
._19{width:542.976000px;}
._5a{width:545.988000px;}
._1a{width:547.308000px;}
._3d{width:548.988000px;}
._5{width:554.268000px;}
._4a{width:556.620000px;}
._28{width:560.268000px;}
._43{width:572.532000px;}
._3e{width:575.916000px;}
._27{width:579.132000px;}
._1b{width:581.508000px;}
._45{width:584.412000px;}
._2f{width:586.428000px;}
._6{width:588.972000px;}
._4c{width:590.628000px;}
._42{width:596.868000px;}
._23{width:606.708000px;}
._35{width:608.568000px;}
._9{width:614.964000px;}
._5c{width:618.612000px;}
._30{width:630.544800px;}
._5b{width:638.340000px;}
._5d{width:644.244000px;}
._52{width:658.716000px;}
._59{width:660.156000px;}
._4b{width:720.348000px;}
._d{width:728.928000px;}
._33{width:963.540000px;}
._50{width:988.440000px;}
._58{width:1067.040000px;}
._2e{width:1082.040000px;}
._20{width:1083.120000px;}
._39{width:1091.940000px;}
._54{width:1143.540000px;}
._56{width:1153.740000px;}
._17{width:1168.440000px;}
._8{width:1184.340000px;}
._1d{width:1224.888000px;}
._49{width:1375.140000px;}
._29{width:1437.312000px;}
._37{width:1511.040000px;}
._3b{width:1548.540000px;}
._13{width:1696.740000px;}
._1c{width:1772.520000px;}
.fc1{color:rgb(0,0,128);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.400000px;}
.fs2{font-size:42.000000px;}
.fs6{font-size:57.600000px;}
.fs3{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y18{bottom:67.591500px;}
.y37{bottom:108.916500px;}
.ybd{bottom:123.391500px;}
.y36{bottom:126.241500px;}
.y35{bottom:143.566500px;}
.yaa{bottom:147.166500px;}
.y34{bottom:160.891500px;}
.y17{bottom:170.191500px;}
.ya9{bottom:170.941500px;}
.y33{bottom:178.216500px;}
.y16{bottom:193.966500px;}
.ya8{bottom:194.716500px;}
.y32{bottom:195.541500px;}
.y31{bottom:212.866500px;}
.y15{bottom:217.741500px;}
.ya7{bottom:218.491500px;}
.y30{bottom:230.191500px;}
.y86{bottom:233.791500px;}
.y14{bottom:241.516500px;}
.ya6{bottom:242.266500px;}
.y2f{bottom:247.516500px;}
.y85{bottom:257.566500px;}
.y53{bottom:263.266500px;}
.y2e{bottom:264.841500px;}
.y13{bottom:265.291500px;}
.ya5{bottom:266.041500px;}
.y84{bottom:281.341500px;}
.y2d{bottom:282.166500px;}
.y12{bottom:289.066500px;}
.ya4{bottom:289.816500px;}
.y2c{bottom:299.491500px;}
.y52{bottom:303.541500px;}
.y83{bottom:305.116500px;}
.y11{bottom:312.841500px;}
.ya3{bottom:313.591500px;}
.y2b{bottom:316.816500px;}
.y51{bottom:325.291500px;}
.y82{bottom:328.891500px;}
.y2a{bottom:334.141500px;}
.ya2{bottom:337.366500px;}
.y50{bottom:347.041500px;}
.y29{bottom:351.466500px;}
.y81{bottom:352.666500px;}
.y10{bottom:360.391500px;}
.ya1{bottom:361.141500px;}
.y28{bottom:368.791500px;}
.y80{bottom:376.441500px;}
.yf{bottom:384.166500px;}
.ya0{bottom:384.916500px;}
.y27{bottom:386.116500px;}
.y4f{bottom:390.541500px;}
.y7f{bottom:400.216500px;}
.y26{bottom:403.441500px;}
.ye{bottom:407.941500px;}
.y9f{bottom:408.691500px;}
.y4e{bottom:412.291500px;}
.y25{bottom:420.766500px;}
.y7e{bottom:423.991500px;}
.yd{bottom:431.716500px;}
.y9e{bottom:432.466500px;}
.y24{bottom:438.091500px;}
.y4d{bottom:455.266500px;}
.y23{bottom:455.416500px;}
.y9d{bottom:456.241500px;}
.y22{bottom:472.741500px;}
.y4c{bottom:475.141500px;}
.y9c{bottom:480.016500px;}
.y21{bottom:490.066500px;}
.y4b{bottom:495.016500px;}
.y9b{bottom:503.791500px;}
.y20{bottom:507.391500px;}
.y4a{bottom:514.891500px;}
.y7d{bottom:519.091500px;}
.y1f{bottom:524.716500px;}
.y9a{bottom:527.566500px;}
.y49{bottom:534.766500px;}
.y1e{bottom:542.041500px;}
.y7c{bottom:542.866500px;}
.y99{bottom:551.341500px;}
.y48{bottom:554.641500px;}
.ybc{bottom:559.366500px;}
.y7b{bottom:566.641500px;}
.y98{bottom:575.116500px;}
.ybb{bottom:576.691500px;}
.y7a{bottom:590.416500px;}
.yba{bottom:594.016500px;}
.y47{bottom:596.791500px;}
.y97{bottom:598.891500px;}
.yb9{bottom:611.341500px;}
.y79{bottom:614.191500px;}
.y46{bottom:618.541500px;}
.y96{bottom:622.666500px;}
.yb8{bottom:628.666500px;}
.y78{bottom:637.966500px;}
.y45{bottom:640.291500px;}
.yb7{bottom:645.991500px;}
.y95{bottom:646.441500px;}
.y65{bottom:650.491500px;}
.y44{bottom:662.041500px;}
.yb6{bottom:663.316500px;}
.y94{bottom:670.216500px;}
.y64{bottom:674.266500px;}
.yb5{bottom:680.641500px;}
.y43{bottom:683.791500px;}
.y77{bottom:685.516500px;}
.y93{bottom:693.991500px;}
.yb4{bottom:697.966500px;}
.y63{bottom:698.041500px;}
.yc{bottom:700.516500px;}
.y42{bottom:705.541500px;}
.y76{bottom:709.291500px;}
.yb3{bottom:715.291500px;}
.y92{bottom:717.766500px;}
.y62{bottom:721.816500px;}
.y41{bottom:727.291500px;}
.yb{bottom:731.566500px;}
.yb2{bottom:732.616500px;}
.y75{bottom:733.066500px;}
.y91{bottom:741.541500px;}
.y61{bottom:745.591500px;}
.yb1{bottom:749.941500px;}
.y74{bottom:756.841500px;}
.ya{bottom:762.616500px;}
.y90{bottom:765.316500px;}
.yb0{bottom:767.266500px;}
.y60{bottom:769.366500px;}
.y40{bottom:773.416500px;}
.y73{bottom:780.616500px;}
.yaf{bottom:784.591500px;}
.y8f{bottom:789.091500px;}
.y5f{bottom:793.141500px;}
.y9{bottom:793.666500px;}
.y3f{bottom:797.191500px;}
.yae{bottom:801.916500px;}
.y72{bottom:804.391500px;}
.y8e{bottom:812.866500px;}
.y5e{bottom:816.916500px;}
.yad{bottom:819.241500px;}
.y8{bottom:824.716500px;}
.y71{bottom:828.166500px;}
.yac{bottom:836.566500px;}
.y8d{bottom:836.641500px;}
.y5d{bottom:840.691500px;}
.y70{bottom:851.941500px;}
.yab{bottom:853.891500px;}
.y8c{bottom:860.416500px;}
.y5c{bottom:864.466500px;}
.y6f{bottom:875.716500px;}
.y8b{bottom:884.191500px;}
.y5b{bottom:888.241500px;}
.y3e{bottom:891.691500px;}
.y6e{bottom:899.491500px;}
.y8a{bottom:907.966500px;}
.y5a{bottom:912.016500px;}
.y3d{bottom:913.441500px;}
.y6d{bottom:923.266500px;}
.y89{bottom:931.741500px;}
.y3c{bottom:935.191500px;}
.y7{bottom:943.591500px;}
.y6c{bottom:947.041500px;}
.y88{bottom:955.516500px;}
.y3b{bottom:956.941500px;}
.y59{bottom:959.566500px;}
.y6{bottom:967.366500px;}
.y87{bottom:979.291500px;}
.y58{bottom:983.341500px;}
.y5{bottom:991.141500px;}
.y6b{bottom:994.591500px;}
.y3a{bottom:1003.066500px;}
.y57{bottom:1007.116500px;}
.y4{bottom:1014.916500px;}
.y6a{bottom:1018.366500px;}
.y1d{bottom:1026.841500px;}
.y56{bottom:1030.891500px;}
.y69{bottom:1042.141500px;}
.y1c{bottom:1050.616500px;}
.y68{bottom:1065.916500px;}
.y1b{bottom:1074.391500px;}
.y55{bottom:1077.841500px;}
.y67{bottom:1089.691500px;}
.y1a{bottom:1098.166500px;}
.y54{bottom:1099.591500px;}
.y3{bottom:1110.016500px;}
.y66{bottom:1113.466500px;}
.y19{bottom:1121.941500px;}
.y39{bottom:1145.716500px;}
.y2{bottom:1161.091500px;}
.y38{bottom:1169.491500px;}
.h6{height:42.246094px;}
.h7{height:46.470703px;}
.h4{height:50.695312px;}
.h8{height:52.837500px;}
.h5{height:57.772266px;}
.h3{height:76.042969px;}
.h2{height:1262.791500px;}
.h0{height:1262.834646px;}
.h1{height:1263.000000px;}
.w2{width:892.912500px;}
.w0{width:892.955906px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:63.900000px;}
.x3{left:89.400000px;}
.x9{left:91.350000px;}
.x6{left:93.675000px;}
.x4{left:106.425000px;}
.x8{left:127.650000px;}
.x5{left:148.950000px;}
.x7{left:437.625000px;}
.x2{left:442.125000px;}
@media print{
.v2{vertical-align:-25.066667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:22.933333pt;}
.v1{vertical-align:25.066667pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws4{word-spacing:-13.333333pt;}
.ws8{word-spacing:-12.800000pt;}
.ws3{word-spacing:-9.333333pt;}
.ws5{word-spacing:-8.533333pt;}
.ws2{word-spacing:0.000000pt;}
.ws6{word-spacing:24.000000pt;}
.ws1{word-spacing:1370.410667pt;}
.ws7{word-spacing:1481.594667pt;}
._12{margin-left:-1533.834667pt;}
._3a{margin-left:-1402.368000pt;}
._36{margin-left:-1368.778667pt;}
._48{margin-left:-1248.608000pt;}
._16{margin-left:-1064.768000pt;}
._55{margin-left:-1051.648000pt;}
._53{margin-left:-1042.741333pt;}
._38{margin-left:-996.714667pt;}
._2d{margin-left:-987.861333pt;}
._57{margin-left:-974.688000pt;}
._4f{margin-left:-904.874667pt;}
._32{margin-left:-882.645333pt;}
._c{margin-left:-681.226667pt;}
._a{margin-left:-377.685333pt;}
._e{margin-left:-7.872000pt;}
._0{margin-left:-6.912000pt;}
._11{margin-left:-5.834667pt;}
._4{margin-left:-4.608000pt;}
._1{margin-left:-3.712000pt;}
._f{margin-left:-2.442667pt;}
._3{margin-left:-1.152000pt;}
._2{width:0.938667pt;}
._7{width:2.176000pt;}
._15{width:37.333333pt;}
._14{width:39.776000pt;}
._10{width:64.000000pt;}
._b{width:345.280000pt;}
._21{width:382.357333pt;}
._5f{width:384.309333pt;}
._26{width:396.757333pt;}
._47{width:404.789333pt;}
._5e{width:406.325333pt;}
._40{width:413.173333pt;}
._34{width:421.749333pt;}
._3f{width:426.933333pt;}
._2b{width:431.669333pt;}
._41{width:432.693333pt;}
._2a{width:434.124800pt;}
._1f{width:438.304000pt;}
._4d{width:441.781333pt;}
._2c{width:448.437333pt;}
._31{width:450.357333pt;}
._51{width:451.893333pt;}
._18{width:453.397333pt;}
._44{width:455.541333pt;}
._25{width:456.821333pt;}
._3c{width:462.901333pt;}
._24{width:465.685333pt;}
._4e{width:468.341333pt;}
._46{width:471.349333pt;}
._22{width:477.536000pt;}
._1e{width:479.850667pt;}
._19{width:482.645333pt;}
._5a{width:485.322667pt;}
._1a{width:486.496000pt;}
._3d{width:487.989333pt;}
._5{width:492.682667pt;}
._4a{width:494.773333pt;}
._28{width:498.016000pt;}
._43{width:508.917333pt;}
._3e{width:511.925333pt;}
._27{width:514.784000pt;}
._1b{width:516.896000pt;}
._45{width:519.477333pt;}
._2f{width:521.269333pt;}
._6{width:523.530667pt;}
._4c{width:525.002667pt;}
._42{width:530.549333pt;}
._23{width:539.296000pt;}
._35{width:540.949333pt;}
._9{width:546.634667pt;}
._5c{width:549.877333pt;}
._30{width:560.484267pt;}
._5b{width:567.413333pt;}
._5d{width:572.661333pt;}
._52{width:585.525333pt;}
._59{width:586.805333pt;}
._4b{width:640.309333pt;}
._d{width:647.936000pt;}
._33{width:856.480000pt;}
._50{width:878.613333pt;}
._58{width:948.480000pt;}
._2e{width:961.813333pt;}
._20{width:962.773333pt;}
._39{width:970.613333pt;}
._54{width:1016.480000pt;}
._56{width:1025.546667pt;}
._17{width:1038.613333pt;}
._8{width:1052.746667pt;}
._1d{width:1088.789333pt;}
._49{width:1222.346667pt;}
._29{width:1277.610667pt;}
._37{width:1343.146667pt;}
._3b{width:1376.480000pt;}
._13{width:1508.213333pt;}
._1c{width:1575.573333pt;}
.fs5{font-size:34.133333pt;}
.fs2{font-size:37.333333pt;}
.fs6{font-size:51.200000pt;}
.fs3{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y18{bottom:60.081333pt;}
.y37{bottom:96.814667pt;}
.ybd{bottom:109.681333pt;}
.y36{bottom:112.214667pt;}
.y35{bottom:127.614667pt;}
.yaa{bottom:130.814667pt;}
.y34{bottom:143.014667pt;}
.y17{bottom:151.281333pt;}
.ya9{bottom:151.948000pt;}
.y33{bottom:158.414667pt;}
.y16{bottom:172.414667pt;}
.ya8{bottom:173.081333pt;}
.y32{bottom:173.814667pt;}
.y31{bottom:189.214667pt;}
.y15{bottom:193.548000pt;}
.ya7{bottom:194.214667pt;}
.y30{bottom:204.614667pt;}
.y86{bottom:207.814667pt;}
.y14{bottom:214.681333pt;}
.ya6{bottom:215.348000pt;}
.y2f{bottom:220.014667pt;}
.y85{bottom:228.948000pt;}
.y53{bottom:234.014667pt;}
.y2e{bottom:235.414667pt;}
.y13{bottom:235.814667pt;}
.ya5{bottom:236.481333pt;}
.y84{bottom:250.081333pt;}
.y2d{bottom:250.814667pt;}
.y12{bottom:256.948000pt;}
.ya4{bottom:257.614667pt;}
.y2c{bottom:266.214667pt;}
.y52{bottom:269.814667pt;}
.y83{bottom:271.214667pt;}
.y11{bottom:278.081333pt;}
.ya3{bottom:278.748000pt;}
.y2b{bottom:281.614667pt;}
.y51{bottom:289.148000pt;}
.y82{bottom:292.348000pt;}
.y2a{bottom:297.014667pt;}
.ya2{bottom:299.881333pt;}
.y50{bottom:308.481333pt;}
.y29{bottom:312.414667pt;}
.y81{bottom:313.481333pt;}
.y10{bottom:320.348000pt;}
.ya1{bottom:321.014667pt;}
.y28{bottom:327.814667pt;}
.y80{bottom:334.614667pt;}
.yf{bottom:341.481333pt;}
.ya0{bottom:342.148000pt;}
.y27{bottom:343.214667pt;}
.y4f{bottom:347.148000pt;}
.y7f{bottom:355.748000pt;}
.y26{bottom:358.614667pt;}
.ye{bottom:362.614667pt;}
.y9f{bottom:363.281333pt;}
.y4e{bottom:366.481333pt;}
.y25{bottom:374.014667pt;}
.y7e{bottom:376.881333pt;}
.yd{bottom:383.748000pt;}
.y9e{bottom:384.414667pt;}
.y24{bottom:389.414667pt;}
.y4d{bottom:404.681333pt;}
.y23{bottom:404.814667pt;}
.y9d{bottom:405.548000pt;}
.y22{bottom:420.214667pt;}
.y4c{bottom:422.348000pt;}
.y9c{bottom:426.681333pt;}
.y21{bottom:435.614667pt;}
.y4b{bottom:440.014667pt;}
.y9b{bottom:447.814667pt;}
.y20{bottom:451.014667pt;}
.y4a{bottom:457.681333pt;}
.y7d{bottom:461.414667pt;}
.y1f{bottom:466.414667pt;}
.y9a{bottom:468.948000pt;}
.y49{bottom:475.348000pt;}
.y1e{bottom:481.814667pt;}
.y7c{bottom:482.548000pt;}
.y99{bottom:490.081333pt;}
.y48{bottom:493.014667pt;}
.ybc{bottom:497.214667pt;}
.y7b{bottom:503.681333pt;}
.y98{bottom:511.214667pt;}
.ybb{bottom:512.614667pt;}
.y7a{bottom:524.814667pt;}
.yba{bottom:528.014667pt;}
.y47{bottom:530.481333pt;}
.y97{bottom:532.348000pt;}
.yb9{bottom:543.414667pt;}
.y79{bottom:545.948000pt;}
.y46{bottom:549.814667pt;}
.y96{bottom:553.481333pt;}
.yb8{bottom:558.814667pt;}
.y78{bottom:567.081333pt;}
.y45{bottom:569.148000pt;}
.yb7{bottom:574.214667pt;}
.y95{bottom:574.614667pt;}
.y65{bottom:578.214667pt;}
.y44{bottom:588.481333pt;}
.yb6{bottom:589.614667pt;}
.y94{bottom:595.748000pt;}
.y64{bottom:599.348000pt;}
.yb5{bottom:605.014667pt;}
.y43{bottom:607.814667pt;}
.y77{bottom:609.348000pt;}
.y93{bottom:616.881333pt;}
.yb4{bottom:620.414667pt;}
.y63{bottom:620.481333pt;}
.yc{bottom:622.681333pt;}
.y42{bottom:627.148000pt;}
.y76{bottom:630.481333pt;}
.yb3{bottom:635.814667pt;}
.y92{bottom:638.014667pt;}
.y62{bottom:641.614667pt;}
.y41{bottom:646.481333pt;}
.yb{bottom:650.281333pt;}
.yb2{bottom:651.214667pt;}
.y75{bottom:651.614667pt;}
.y91{bottom:659.148000pt;}
.y61{bottom:662.748000pt;}
.yb1{bottom:666.614667pt;}
.y74{bottom:672.748000pt;}
.ya{bottom:677.881333pt;}
.y90{bottom:680.281333pt;}
.yb0{bottom:682.014667pt;}
.y60{bottom:683.881333pt;}
.y40{bottom:687.481333pt;}
.y73{bottom:693.881333pt;}
.yaf{bottom:697.414667pt;}
.y8f{bottom:701.414667pt;}
.y5f{bottom:705.014667pt;}
.y9{bottom:705.481333pt;}
.y3f{bottom:708.614667pt;}
.yae{bottom:712.814667pt;}
.y72{bottom:715.014667pt;}
.y8e{bottom:722.548000pt;}
.y5e{bottom:726.148000pt;}
.yad{bottom:728.214667pt;}
.y8{bottom:733.081333pt;}
.y71{bottom:736.148000pt;}
.yac{bottom:743.614667pt;}
.y8d{bottom:743.681333pt;}
.y5d{bottom:747.281333pt;}
.y70{bottom:757.281333pt;}
.yab{bottom:759.014667pt;}
.y8c{bottom:764.814667pt;}
.y5c{bottom:768.414667pt;}
.y6f{bottom:778.414667pt;}
.y8b{bottom:785.948000pt;}
.y5b{bottom:789.548000pt;}
.y3e{bottom:792.614667pt;}
.y6e{bottom:799.548000pt;}
.y8a{bottom:807.081333pt;}
.y5a{bottom:810.681333pt;}
.y3d{bottom:811.948000pt;}
.y6d{bottom:820.681333pt;}
.y89{bottom:828.214667pt;}
.y3c{bottom:831.281333pt;}
.y7{bottom:838.748000pt;}
.y6c{bottom:841.814667pt;}
.y88{bottom:849.348000pt;}
.y3b{bottom:850.614667pt;}
.y59{bottom:852.948000pt;}
.y6{bottom:859.881333pt;}
.y87{bottom:870.481333pt;}
.y58{bottom:874.081333pt;}
.y5{bottom:881.014667pt;}
.y6b{bottom:884.081333pt;}
.y3a{bottom:891.614667pt;}
.y57{bottom:895.214667pt;}
.y4{bottom:902.148000pt;}
.y6a{bottom:905.214667pt;}
.y1d{bottom:912.748000pt;}
.y56{bottom:916.348000pt;}
.y69{bottom:926.348000pt;}
.y1c{bottom:933.881333pt;}
.y68{bottom:947.481333pt;}
.y1b{bottom:955.014667pt;}
.y55{bottom:958.081333pt;}
.y67{bottom:968.614667pt;}
.y1a{bottom:976.148000pt;}
.y54{bottom:977.414667pt;}
.y3{bottom:986.681333pt;}
.y66{bottom:989.748000pt;}
.y19{bottom:997.281333pt;}
.y39{bottom:1018.414667pt;}
.y2{bottom:1032.081333pt;}
.y38{bottom:1039.548000pt;}
.h6{height:37.552083pt;}
.h7{height:41.307292pt;}
.h4{height:45.062500pt;}
.h8{height:46.966667pt;}
.h5{height:51.353125pt;}
.h3{height:67.593750pt;}
.h2{height:1122.481333pt;}
.h0{height:1122.519685pt;}
.h1{height:1122.666667pt;}
.w2{width:793.700000pt;}
.w0{width:793.738583pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:56.800000pt;}
.x3{left:79.466667pt;}
.x9{left:81.200000pt;}
.x6{left:83.266667pt;}
.x4{left:94.600000pt;}
.x8{left:113.466667pt;}
.x5{left:132.400000pt;}
.x7{left:389.000000pt;}
.x2{left:393.000000pt;}
}




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