
    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_4b47ec868c2c841de9449035.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.575000;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_7f20eba0840d9b398fac8073.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.575000;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_67d6765850b12aa1afa2e395.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.592000;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_390f910aa24528ee0f41879c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.592000;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_85f0ce6024cb7d355b86fadb.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.213379;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_225db5edc5853e7d821c8e25.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.272949;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_32756898755ad7e3b538bf11.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.213379;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.249950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249950,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:-57.600000px;}
.v1{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.044640px;}
.ls8{letter-spacing:0.050400px;}
.ls4{letter-spacing:0.118369px;}
.ls0{letter-spacing:0.201025px;}
.ls1{letter-spacing:0.403200px;}
.lsd{letter-spacing:0.665280px;}
.lsc{letter-spacing:0.687744px;}
.ls2{letter-spacing:0.698689px;}
.ls7{letter-spacing:7.031233px;}
.lsa{letter-spacing:8.672833px;}
.ls9{letter-spacing:10.113121px;}
.lsb{letter-spacing:11.553409px;}
.ls5{letter-spacing:34.396706px;}
.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;}
}
.ws8{word-spacing:-14.446080px;}
.ws5{word-spacing:-13.132800px;}
.ws2{word-spacing:-12.476023px;}
.ws3{word-spacing:-11.894400px;}
.wsa{word-spacing:-11.541600px;}
.wsb{word-spacing:-11.499840px;}
.ws9{word-spacing:-11.491200px;}
.ws6{word-spacing:-10.834560px;}
.ws4{word-spacing:-10.177920px;}
.ws0{word-spacing:-9.521280px;}
.ws1{word-spacing:-6.237943px;}
.ws7{word-spacing:0.000000px;}
._7{margin-left:-10.852109px;}
._6{margin-left:-2.369959px;}
._5{margin-left:-1.146228px;}
._0{width:1.330560px;}
._b{width:2.386414px;}
._1{width:3.494022px;}
._2{width:5.257425px;}
._4{width:7.080480px;}
._3{width:8.411040px;}
._a{width:10.059732px;}
._17{width:11.309868px;}
._c{width:13.621982px;}
._15{width:14.673146px;}
._d{width:15.701589px;}
._12{width:16.983712px;}
._16{width:17.987215px;}
._13{width:19.094191px;}
._e{width:20.128102px;}
._f{width:21.175453px;}
._14{width:22.464000px;}
._8{width:24.156977px;}
._9{width:25.847883px;}
._1b{width:27.685569px;}
._10{width:28.837124px;}
._11{width:30.218717px;}
._1c{width:32.113704px;}
._1a{width:33.382084px;}
._19{width:34.582166px;}
._1e{width:35.908691px;}
._18{width:37.053795px;}
._1f{width:45.743040px;}
._20{width:47.344061px;}
._1d{width:48.885085px;}
._22{width:55.742400px;}
._21{width:57.304800px;}
.fc4{color:rgb(104,115,25);}
.fc3{color:rgb(105,114,25);}
.fc6{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,128);}
.fc5{color:rgb(51,51,51);}
.fc2{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:24.480000px;}
.fs3{font-size:27.359400px;}
.fs1{font-size:36.000000px;}
.fs2{font-size:41.760000px;}
.fsc{font-size:44.640000px;}
.fs0{font-size:47.520000px;}
.fs9{font-size:50.400000px;}
.fs4{font-size:54.719400px;}
.fsb{font-size:57.600000px;}
.fs6{font-size:60.480000px;}
.fs8{font-size:63.360000px;}
.fs5{font-size:72.000000px;}
.fs7{font-size:96.479400px;}
.y0{bottom:0.000000px;}
.y9{bottom:3.240000px;}
.y7{bottom:56.880000px;}
.y59{bottom:57.960000px;}
.y6{bottom:70.560000px;}
.ya{bottom:70.920000px;}
.y5{bottom:82.440000px;}
.y8{bottom:88.560000px;}
.y4{bottom:94.680000px;}
.y36{bottom:143.280000px;}
.y8f{bottom:151.200000px;}
.y58{bottom:160.200000px;}
.y35{bottom:160.560000px;}
.yb9{bottom:164.520000px;}
.y8e{bottom:168.480000px;}
.y57{bottom:177.480000px;}
.y34{bottom:177.840000px;}
.yb8{bottom:180.000000px;}
.y8d{bottom:185.760000px;}
.y33{bottom:194.760000px;}
.y8c{bottom:202.680000px;}
.y56{bottom:203.760000px;}
.y32{bottom:212.040000px;}
.y8b{bottom:219.960000px;}
.y55{bottom:221.040000px;}
.y31{bottom:229.320000px;}
.yb7{bottom:235.800000px;}
.y8a{bottom:237.240000px;}
.y54{bottom:237.960000px;}
.yb6{bottom:250.560000px;}
.y30{bottom:251.280000px;}
.y89{bottom:254.160000px;}
.y53{bottom:259.560000px;}
.yb5{bottom:264.960000px;}
.y2f{bottom:268.560000px;}
.y88{bottom:271.440000px;}
.y52{bottom:276.840000px;}
.yb4{bottom:279.720000px;}
.y2e{bottom:286.200000px;}
.y87{bottom:288.720000px;}
.yb3{bottom:294.480000px;}
.y51{bottom:298.800000px;}
.y2d{bottom:303.840000px;}
.y86{bottom:305.640000px;}
.yb2{bottom:308.880000px;}
.y2c{bottom:321.120000px;}
.y85{bottom:322.920000px;}
.yb1{bottom:323.640000px;}
.y50{bottom:325.080000px;}
.yb0{bottom:338.400000px;}
.y2b{bottom:338.760000px;}
.y84{bottom:340.200000px;}
.y4f{bottom:341.640000px;}
.yaf{bottom:352.800000px;}
.y2a{bottom:356.400000px;}
.y83{bottom:361.800000px;}
.y4e{bottom:363.240000px;}
.yae{bottom:367.560000px;}
.y29{bottom:373.680000px;}
.y82{bottom:379.080000px;}
.y4d{bottom:380.520000px;}
.yad{bottom:381.960000px;}
.y28{bottom:391.320000px;}
.y81{bottom:396.000000px;}
.yac{bottom:396.720000px;}
.y4c{bottom:397.800000px;}
.y27{bottom:408.600000px;}
.yab{bottom:411.480000px;}
.y80{bottom:413.280000px;}
.y4b{bottom:414.720000px;}
.yaa{bottom:425.880000px;}
.y7f{bottom:430.560000px;}
.y4a{bottom:436.680000px;}
.ya9{bottom:440.640000px;}
.y7e{bottom:447.840000px;}
.y49{bottom:453.600000px;}
.ya8{bottom:455.400000px;}
.y26{bottom:461.880000px;}
.y7d{bottom:464.760000px;}
.ya7{bottom:469.800000px;}
.y48{bottom:470.520000px;}
.y25{bottom:478.080000px;}
.y7c{bottom:482.040000px;}
.ya6{bottom:484.560000px;}
.y47{bottom:487.440000px;}
.y7b{bottom:499.320000px;}
.y24{bottom:502.920000px;}
.y46{bottom:504.360000px;}
.ya5{bottom:513.720000px;}
.y7a{bottom:516.240000px;}
.y23{bottom:519.120000px;}
.y45{bottom:521.640000px;}
.ya4{bottom:528.480000px;}
.y79{bottom:533.160000px;}
.y22{bottom:535.680000px;}
.y44{bottom:538.560000px;}
.ya3{bottom:542.880000px;}
.y21{bottom:551.880000px;}
.y43{bottom:555.480000px;}
.ya2{bottom:557.640000px;}
.y78{bottom:559.800000px;}
.y20{bottom:568.080000px;}
.ya1{bottom:572.400000px;}
.y77{bottom:576.720000px;}
.y42{bottom:577.440000px;}
.y1f{bottom:584.280000px;}
.ya0{bottom:586.800000px;}
.y41{bottom:594.360000px;}
.y76{bottom:598.680000px;}
.y1e{bottom:600.480000px;}
.y9f{bottom:601.560000px;}
.y40{bottom:611.640000px;}
.y75{bottom:615.600000px;}
.y9e{bottom:616.320000px;}
.y1d{bottom:617.040000px;}
.y3f{bottom:628.920000px;}
.y9d{bottom:630.720000px;}
.y1c{bottom:633.240000px;}
.y74{bottom:637.560000px;}
.y9c{bottom:645.480000px;}
.y3e{bottom:645.840000px;}
.y1b{bottom:649.440000px;}
.y73{bottom:654.480000px;}
.y9b{bottom:660.240000px;}
.y3d{bottom:663.120000px;}
.y1a{bottom:665.640000px;}
.y9a{bottom:674.640000px;}
.y72{bottom:676.440000px;}
.y3c{bottom:680.400000px;}
.y19{bottom:681.840000px;}
.y71{bottom:693.360000px;}
.y3b{bottom:697.320000px;}
.y18{bottom:698.040000px;}
.y17{bottom:714.600000px;}
.y70{bottom:714.960000px;}
.y99{bottom:717.120000px;}
.y16{bottom:730.800000px;}
.y3a{bottom:731.880000px;}
.y6f{bottom:732.240000px;}
.y15{bottom:747.000000px;}
.y39{bottom:748.800000px;}
.y6e{bottom:753.840000px;}
.y14{bottom:763.200000px;}
.y38{bottom:766.080000px;}
.y6d{bottom:771.120000px;}
.y98{bottom:772.200000px;}
.y13{bottom:779.760000px;}
.y37{bottom:783.360000px;}
.y97{bottom:789.120000px;}
.y6c{bottom:792.720000px;}
.y96{bottom:806.400000px;}
.y6b{bottom:810.000000px;}
.y12{bottom:816.120000px;}
.y95{bottom:823.680000px;}
.y6a{bottom:831.600000px;}
.y94{bottom:840.600000px;}
.y69{bottom:848.880000px;}
.y93{bottom:857.880000px;}
.y68{bottom:866.160000px;}
.y11{bottom:875.160000px;}
.y92{bottom:879.480000px;}
.y67{bottom:887.760000px;}
.y10{bottom:889.920000px;}
.y91{bottom:896.760000px;}
.y66{bottom:904.680000px;}
.yf{bottom:909.360000px;}
.y90{bottom:914.040000px;}
.y65{bottom:930.960000px;}
.y64{bottom:948.240000px;}
.y63{bottom:965.520000px;}
.ye{bottom:972.000000px;}
.y62{bottom:982.440000px;}
.y61{bottom:1004.400000px;}
.yd{bottom:1007.640000px;}
.y60{bottom:1021.320000px;}
.yc{bottom:1035.360000px;}
.y5f{bottom:1038.600000px;}
.y5e{bottom:1055.880000px;}
.y5d{bottom:1072.800000px;}
.y5c{bottom:1090.080000px;}
.yb{bottom:1096.560000px;}
.y5b{bottom:1107.360000px;}
.y5a{bottom:1124.280000px;}
.y3{bottom:1171.440000px;}
.y2{bottom:1185.120000px;}
.y1{bottom:1198.800000px;}
.h5{height:15.480000px;}
.h8{height:17.280000px;}
.hf{height:26.120160px;}
.h4{height:44.557920px;}
.h3{height:45.267840px;}
.h7{height:49.803204px;}
.h1{height:50.703840px;}
.h2{height:51.511680px;}
.he{height:53.776800px;}
.h12{height:54.633600px;}
.h6{height:58.385600px;}
.hc{height:59.315830px;}
.h10{height:61.459200px;}
.h11{height:62.438400px;}
.ha{height:64.532160px;}
.hd{height:67.605120px;}
.h9{height:73.054688px;}
.hb{height:102.943520px;}
.h0{height:1263.000000px;}
.w4{width:0.720000px;}
.w2{width:3.240000px;}
.w3{width:4.680000px;}
.w5{width:10.440000px;}
.w1{width:18.360000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x2{left:95.760000px;}
.xd{left:117.000000px;}
.xc{left:138.240000px;}
.x1{left:325.440000px;}
.xe{left:456.840000px;}
.xf{left:478.080000px;}
.x10{left:547.560000px;}
.x7{left:584.280000px;}
.xa{left:585.720000px;}
.x8{left:629.640000px;}
.x11{left:662.040000px;}
.xb{left:678.240000px;}
.x9{left:699.480000px;}
.x3{left:769.680000px;}
.x4{left:788.040000px;}
.x5{left:791.280000px;}
.x6{left:795.960000px;}
@media print{
.v2{vertical-align:-51.200000pt;}
.v1{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.039680pt;}
.ls8{letter-spacing:0.044800pt;}
.ls4{letter-spacing:0.105217pt;}
.ls0{letter-spacing:0.178689pt;}
.ls1{letter-spacing:0.358400pt;}
.lsd{letter-spacing:0.591360pt;}
.lsc{letter-spacing:0.611328pt;}
.ls2{letter-spacing:0.621057pt;}
.ls7{letter-spacing:6.249985pt;}
.lsa{letter-spacing:7.709185pt;}
.ls9{letter-spacing:8.989441pt;}
.lsb{letter-spacing:10.269697pt;}
.ls5{letter-spacing:30.574850pt;}
.ws8{word-spacing:-12.840960pt;}
.ws5{word-spacing:-11.673600pt;}
.ws2{word-spacing:-11.089798pt;}
.ws3{word-spacing:-10.572800pt;}
.wsa{word-spacing:-10.259200pt;}
.wsb{word-spacing:-10.222080pt;}
.ws9{word-spacing:-10.214400pt;}
.ws6{word-spacing:-9.630720pt;}
.ws4{word-spacing:-9.047040pt;}
.ws0{word-spacing:-8.463360pt;}
.ws1{word-spacing:-5.544838pt;}
.ws7{word-spacing:0.000000pt;}
._7{margin-left:-9.646319pt;}
._6{margin-left:-2.106631pt;}
._5{margin-left:-1.018870pt;}
._0{width:1.182720pt;}
._b{width:2.121257pt;}
._1{width:3.105797pt;}
._2{width:4.673267pt;}
._4{width:6.293760pt;}
._3{width:7.476480pt;}
._a{width:8.941984pt;}
._17{width:10.053216pt;}
._c{width:12.108429pt;}
._15{width:13.042797pt;}
._d{width:13.956968pt;}
._12{width:15.096633pt;}
._16{width:15.988636pt;}
._13{width:16.972615pt;}
._e{width:17.891646pt;}
._f{width:18.822625pt;}
._14{width:19.968000pt;}
._8{width:21.472869pt;}
._9{width:22.975896pt;}
._1b{width:24.609394pt;}
._10{width:25.632999pt;}
._11{width:26.861081pt;}
._1c{width:28.545515pt;}
._1a{width:29.672963pt;}
._19{width:30.739703pt;}
._1e{width:31.918836pt;}
._18{width:32.936707pt;}
._1f{width:40.660480pt;}
._20{width:42.083610pt;}
._1d{width:43.453409pt;}
._22{width:49.548800pt;}
._21{width:50.937600pt;}
.fsa{font-size:21.760000pt;}
.fs3{font-size:24.319467pt;}
.fs1{font-size:32.000000pt;}
.fs2{font-size:37.120000pt;}
.fsc{font-size:39.680000pt;}
.fs0{font-size:42.240000pt;}
.fs9{font-size:44.800000pt;}
.fs4{font-size:48.639467pt;}
.fsb{font-size:51.200000pt;}
.fs6{font-size:53.760000pt;}
.fs8{font-size:56.320000pt;}
.fs5{font-size:64.000000pt;}
.fs7{font-size:85.759467pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:2.880000pt;}
.y7{bottom:50.560000pt;}
.y59{bottom:51.520000pt;}
.y6{bottom:62.720000pt;}
.ya{bottom:63.040000pt;}
.y5{bottom:73.280000pt;}
.y8{bottom:78.720000pt;}
.y4{bottom:84.160000pt;}
.y36{bottom:127.360000pt;}
.y8f{bottom:134.400000pt;}
.y58{bottom:142.400000pt;}
.y35{bottom:142.720000pt;}
.yb9{bottom:146.240000pt;}
.y8e{bottom:149.760000pt;}
.y57{bottom:157.760000pt;}
.y34{bottom:158.080000pt;}
.yb8{bottom:160.000000pt;}
.y8d{bottom:165.120000pt;}
.y33{bottom:173.120000pt;}
.y8c{bottom:180.160000pt;}
.y56{bottom:181.120000pt;}
.y32{bottom:188.480000pt;}
.y8b{bottom:195.520000pt;}
.y55{bottom:196.480000pt;}
.y31{bottom:203.840000pt;}
.yb7{bottom:209.600000pt;}
.y8a{bottom:210.880000pt;}
.y54{bottom:211.520000pt;}
.yb6{bottom:222.720000pt;}
.y30{bottom:223.360000pt;}
.y89{bottom:225.920000pt;}
.y53{bottom:230.720000pt;}
.yb5{bottom:235.520000pt;}
.y2f{bottom:238.720000pt;}
.y88{bottom:241.280000pt;}
.y52{bottom:246.080000pt;}
.yb4{bottom:248.640000pt;}
.y2e{bottom:254.400000pt;}
.y87{bottom:256.640000pt;}
.yb3{bottom:261.760000pt;}
.y51{bottom:265.600000pt;}
.y2d{bottom:270.080000pt;}
.y86{bottom:271.680000pt;}
.yb2{bottom:274.560000pt;}
.y2c{bottom:285.440000pt;}
.y85{bottom:287.040000pt;}
.yb1{bottom:287.680000pt;}
.y50{bottom:288.960000pt;}
.yb0{bottom:300.800000pt;}
.y2b{bottom:301.120000pt;}
.y84{bottom:302.400000pt;}
.y4f{bottom:303.680000pt;}
.yaf{bottom:313.600000pt;}
.y2a{bottom:316.800000pt;}
.y83{bottom:321.600000pt;}
.y4e{bottom:322.880000pt;}
.yae{bottom:326.720000pt;}
.y29{bottom:332.160000pt;}
.y82{bottom:336.960000pt;}
.y4d{bottom:338.240000pt;}
.yad{bottom:339.520000pt;}
.y28{bottom:347.840000pt;}
.y81{bottom:352.000000pt;}
.yac{bottom:352.640000pt;}
.y4c{bottom:353.600000pt;}
.y27{bottom:363.200000pt;}
.yab{bottom:365.760000pt;}
.y80{bottom:367.360000pt;}
.y4b{bottom:368.640000pt;}
.yaa{bottom:378.560000pt;}
.y7f{bottom:382.720000pt;}
.y4a{bottom:388.160000pt;}
.ya9{bottom:391.680000pt;}
.y7e{bottom:398.080000pt;}
.y49{bottom:403.200000pt;}
.ya8{bottom:404.800000pt;}
.y26{bottom:410.560000pt;}
.y7d{bottom:413.120000pt;}
.ya7{bottom:417.600000pt;}
.y48{bottom:418.240000pt;}
.y25{bottom:424.960000pt;}
.y7c{bottom:428.480000pt;}
.ya6{bottom:430.720000pt;}
.y47{bottom:433.280000pt;}
.y7b{bottom:443.840000pt;}
.y24{bottom:447.040000pt;}
.y46{bottom:448.320000pt;}
.ya5{bottom:456.640000pt;}
.y7a{bottom:458.880000pt;}
.y23{bottom:461.440000pt;}
.y45{bottom:463.680000pt;}
.ya4{bottom:469.760000pt;}
.y79{bottom:473.920000pt;}
.y22{bottom:476.160000pt;}
.y44{bottom:478.720000pt;}
.ya3{bottom:482.560000pt;}
.y21{bottom:490.560000pt;}
.y43{bottom:493.760000pt;}
.ya2{bottom:495.680000pt;}
.y78{bottom:497.600000pt;}
.y20{bottom:504.960000pt;}
.ya1{bottom:508.800000pt;}
.y77{bottom:512.640000pt;}
.y42{bottom:513.280000pt;}
.y1f{bottom:519.360000pt;}
.ya0{bottom:521.600000pt;}
.y41{bottom:528.320000pt;}
.y76{bottom:532.160000pt;}
.y1e{bottom:533.760000pt;}
.y9f{bottom:534.720000pt;}
.y40{bottom:543.680000pt;}
.y75{bottom:547.200000pt;}
.y9e{bottom:547.840000pt;}
.y1d{bottom:548.480000pt;}
.y3f{bottom:559.040000pt;}
.y9d{bottom:560.640000pt;}
.y1c{bottom:562.880000pt;}
.y74{bottom:566.720000pt;}
.y9c{bottom:573.760000pt;}
.y3e{bottom:574.080000pt;}
.y1b{bottom:577.280000pt;}
.y73{bottom:581.760000pt;}
.y9b{bottom:586.880000pt;}
.y3d{bottom:589.440000pt;}
.y1a{bottom:591.680000pt;}
.y9a{bottom:599.680000pt;}
.y72{bottom:601.280000pt;}
.y3c{bottom:604.800000pt;}
.y19{bottom:606.080000pt;}
.y71{bottom:616.320000pt;}
.y3b{bottom:619.840000pt;}
.y18{bottom:620.480000pt;}
.y17{bottom:635.200000pt;}
.y70{bottom:635.520000pt;}
.y99{bottom:637.440000pt;}
.y16{bottom:649.600000pt;}
.y3a{bottom:650.560000pt;}
.y6f{bottom:650.880000pt;}
.y15{bottom:664.000000pt;}
.y39{bottom:665.600000pt;}
.y6e{bottom:670.080000pt;}
.y14{bottom:678.400000pt;}
.y38{bottom:680.960000pt;}
.y6d{bottom:685.440000pt;}
.y98{bottom:686.400000pt;}
.y13{bottom:693.120000pt;}
.y37{bottom:696.320000pt;}
.y97{bottom:701.440000pt;}
.y6c{bottom:704.640000pt;}
.y96{bottom:716.800000pt;}
.y6b{bottom:720.000000pt;}
.y12{bottom:725.440000pt;}
.y95{bottom:732.160000pt;}
.y6a{bottom:739.200000pt;}
.y94{bottom:747.200000pt;}
.y69{bottom:754.560000pt;}
.y93{bottom:762.560000pt;}
.y68{bottom:769.920000pt;}
.y11{bottom:777.920000pt;}
.y92{bottom:781.760000pt;}
.y67{bottom:789.120000pt;}
.y10{bottom:791.040000pt;}
.y91{bottom:797.120000pt;}
.y66{bottom:804.160000pt;}
.yf{bottom:808.320000pt;}
.y90{bottom:812.480000pt;}
.y65{bottom:827.520000pt;}
.y64{bottom:842.880000pt;}
.y63{bottom:858.240000pt;}
.ye{bottom:864.000000pt;}
.y62{bottom:873.280000pt;}
.y61{bottom:892.800000pt;}
.yd{bottom:895.680000pt;}
.y60{bottom:907.840000pt;}
.yc{bottom:920.320000pt;}
.y5f{bottom:923.200000pt;}
.y5e{bottom:938.560000pt;}
.y5d{bottom:953.600000pt;}
.y5c{bottom:968.960000pt;}
.yb{bottom:974.720000pt;}
.y5b{bottom:984.320000pt;}
.y5a{bottom:999.360000pt;}
.y3{bottom:1041.280000pt;}
.y2{bottom:1053.440000pt;}
.y1{bottom:1065.600000pt;}
.h5{height:13.760000pt;}
.h8{height:15.360000pt;}
.hf{height:23.217920pt;}
.h4{height:39.607040pt;}
.h3{height:40.238080pt;}
.h7{height:44.269515pt;}
.h1{height:45.070080pt;}
.h2{height:45.788160pt;}
.he{height:47.801600pt;}
.h12{height:48.563200pt;}
.h6{height:51.898311pt;}
.hc{height:52.725182pt;}
.h10{height:54.630400pt;}
.h11{height:55.500800pt;}
.ha{height:57.361920pt;}
.hd{height:60.093440pt;}
.h9{height:64.937500pt;}
.hb{height:91.505351pt;}
.h0{height:1122.666667pt;}
.w4{width:0.640000pt;}
.w2{width:2.880000pt;}
.w3{width:4.160000pt;}
.w5{width:9.280000pt;}
.w1{width:16.320000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2{left:85.120000pt;}
.xd{left:104.000000pt;}
.xc{left:122.880000pt;}
.x1{left:289.280000pt;}
.xe{left:406.080000pt;}
.xf{left:424.960000pt;}
.x10{left:486.720000pt;}
.x7{left:519.360000pt;}
.xa{left:520.640000pt;}
.x8{left:559.680000pt;}
.x11{left:588.480000pt;}
.xb{left:602.880000pt;}
.x9{left:621.760000pt;}
.x3{left:684.160000pt;}
.x4{left:700.480000pt;}
.x5{left:703.360000pt;}
.x6{left:707.520000pt;}
}




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