
    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_9eb6812f5dee122a03d6f6e3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.871094;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_9333b21280008c0685c4325d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_97d540734ee08e63b7d37699.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_888897ef639d178f9ff24cf0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8{transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.236979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236979,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242188,0.000000,0.000000,0.250000,0,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);}
.m4{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);}
.v1{vertical-align:-23.400000px;}
.v0{vertical-align:0.000000px;}
.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;}
}
.ws4{word-spacing:-19.500000px;}
.ws0{word-spacing:-18.000000px;}
.ws2{word-spacing:-15.000000px;}
.ws5{word-spacing:-10.500000px;}
.ws1{word-spacing:-8.700000px;}
.ws3{word-spacing:0.000000px;}
._7{margin-left:-673.118609px;}
._5{margin-left:-549.372522px;}
._3{margin-left:-277.497391px;}
._b{margin-left:-193.792696px;}
._d{margin-left:-110.363478px;}
._9{margin-left:-23.919652px;}
._a{margin-left:-12.168000px;}
._1{margin-left:-1.080000px;}
._0{width:1.008000px;}
._10{width:2.075478px;}
._2{width:3.142957px;}
._e{width:73.512000px;}
._c{width:157.464000px;}
._4{width:240.984000px;}
._f{width:349.920000px;}
._6{width:512.424000px;}
._8{width:636.048000px;}
.fc4{color:rgb(57,100,254);}
.fc3{color:rgb(15,17,21);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:12.000000px;}
.fs8{font-size:31.200000px;}
.fs5{font-size:34.800000px;}
.fs4{font-size:42.000000px;}
.fs0{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs3{font-size:72.000000px;}
.fs6{font-size:78.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:0.042000px;}
.y7{bottom:57.316500px;}
.y6{bottom:73.816500px;}
.y5{bottom:90.316500px;}
.yac{bottom:111.241500px;}
.y7b{bottom:113.341500px;}
.yee{bottom:121.966500px;}
.y4{bottom:123.241500px;}
.y44{bottom:125.641500px;}
.y8f{bottom:127.816500px;}
.y64{bottom:128.566500px;}
.y8e{bottom:133.441500px;}
.yc6{bottom:134.191500px;}
.yed{bottom:142.666500px;}
.y7a{bottom:144.391500px;}
.yab{bottom:145.891500px;}
.y63{bottom:145.966500px;}
.y62{bottom:151.591500px;}
.y43{bottom:156.691500px;}
.y10{bottom:157.891500px;}
.yaa{bottom:163.291500px;}
.yec{bottom:163.366500px;}
.yc5{bottom:165.241500px;}
.ya9{bottom:168.916500px;}
.yf{bottom:175.216500px;}
.y79{bottom:175.441500px;}
.y8d{bottom:183.241500px;}
.y42{bottom:187.741500px;}
.yc4{bottom:196.291500px;}
.ye{bottom:198.391500px;}
.y8c{bottom:203.941500px;}
.yeb{bottom:204.766500px;}
.y61{bottom:215.116500px;}
.y8b{bottom:224.641500px;}
.yea{bottom:225.466500px;}
.yc3{bottom:227.341500px;}
.y77{bottom:237.541500px;}
.y41{bottom:239.491500px;}
.y78{bottom:244.591500px;}
.y8a{bottom:245.341500px;}
.y60{bottom:246.166500px;}
.yc2{bottom:258.391500px;}
.y89{bottom:266.041500px;}
.y76{bottom:268.591500px;}
.y40{bottom:270.541500px;}
.y5f{bottom:277.216500px;}
.y88{bottom:286.741500px;}
.ye9{bottom:287.566500px;}
.yc1{bottom:289.441500px;}
.y75{bottom:299.641500px;}
.y3f{bottom:301.591500px;}
.y87{bottom:307.441500px;}
.y5e{bottom:308.266500px;}
.yc0{bottom:320.491500px;}
.y85{bottom:328.141500px;}
.ye8{bottom:328.966500px;}
.y3e{bottom:332.641500px;}
.y86{bottom:335.191500px;}
.ya8{bottom:338.116500px;}
.y5d{bottom:339.316500px;}
.y84{bottom:348.841500px;}
.ye7{bottom:349.666500px;}
.y74{bottom:361.741500px;}
.y3d{bottom:363.691500px;}
.ya7{bottom:369.166500px;}
.y5c{bottom:370.366500px;}
.ybf{bottom:372.241500px;}
.y83{bottom:382.441500px;}
.ye6{bottom:391.066500px;}
.y73{bottom:392.791500px;}
.y3c{bottom:394.741500px;}
.ya6{bottom:400.216500px;}
.y5b{bottom:401.416500px;}
.ye5{bottom:411.766500px;}
.y72{bottom:423.841500px;}
.ybe{bottom:423.991500px;}
.y3b{bottom:425.791500px;}
.ya5{bottom:431.266500px;}
.y5a{bottom:432.466500px;}
.y82{bottom:434.191500px;}
.ybd{bottom:455.041500px;}
.y3a{bottom:456.841500px;}
.ya4{bottom:462.316500px;}
.y59{bottom:463.516500px;}
.y81{bottom:465.241500px;}
.ye4{bottom:473.866500px;}
.y71{bottom:485.941500px;}
.ybc{bottom:486.091500px;}
.y39{bottom:487.891500px;}
.ya3{bottom:493.366500px;}
.y58{bottom:494.566500px;}
.y80{bottom:496.291500px;}
.ye3{bottom:515.266500px;}
.y70{bottom:516.991500px;}
.y38{bottom:518.941500px;}
.ya2{bottom:524.416500px;}
.y57{bottom:525.616500px;}
.ybb{bottom:527.491500px;}
.ye2{bottom:535.966500px;}
.y6f{bottom:548.041500px;}
.y37{bottom:549.991500px;}
.y56{bottom:556.666500px;}
.ya1{bottom:576.166500px;}
.ye1{bottom:577.366500px;}
.y6e{bottom:579.091500px;}
.yba{bottom:579.241500px;}
.y55{bottom:587.716500px;}
.ye0{bottom:598.066500px;}
.y36{bottom:602.266500px;}
.y7f{bottom:610.141500px;}
.yb9{bottom:610.291500px;}
.y54{bottom:618.766500px;}
.ya0{bottom:627.916500px;}
.y35{bottom:633.316500px;}
.y6d{bottom:641.191500px;}
.y9f{bottom:658.966500px;}
.ydf{bottom:660.166500px;}
.yb8{bottom:662.041500px;}
.y34{bottom:664.366500px;}
.y1e{bottom:669.691500px;}
.y53{bottom:670.516500px;}
.y7e{bottom:672.241500px;}
.yde{bottom:680.866500px;}
.y9e{bottom:690.016500px;}
.yb7{bottom:693.091500px;}
.y33{bottom:695.416500px;}
.y1d{bottom:700.741500px;}
.y52{bottom:701.566500px;}
.y6c{bottom:703.291500px;}
.y9d{bottom:721.066500px;}
.ydd{bottom:722.266500px;}
.y32{bottom:726.466500px;}
.y51{bottom:732.616500px;}
.y7d{bottom:734.341500px;}
.ydc{bottom:742.966500px;}
.yb6{bottom:744.841500px;}
.y9c{bottom:752.116500px;}
.y1c{bottom:762.841500px;}
.ydb{bottom:763.666500px;}
.y6b{bottom:765.391500px;}
.y31{bottom:768.391500px;}
.y30{bottom:768.433500px;}
.y50{bottom:774.316500px;}
.yb5{bottom:775.891500px;}
.y9b{bottom:783.166500px;}
.y1b{bottom:793.891500px;}
.y7c{bottom:796.441500px;}
.yda{bottom:805.066500px;}
.y2e{bottom:810.316500px;}
.y9a{bottom:814.216500px;}
.y2f{bottom:817.366500px;}
.y1a{bottom:824.941500px;}
.yd9{bottom:825.766500px;}
.y4e{bottom:827.491500px;}
.yb4{bottom:827.641500px;}
.y2d{bottom:831.016500px;}
.y4f{bottom:834.541500px;}
.yd8{bottom:846.466500px;}
.y2b{bottom:851.716500px;}
.y19{bottom:855.991500px;}
.y4d{bottom:858.541500px;}
.yb3{bottom:858.691500px;}
.y2c{bottom:858.766500px;}
.y99{bottom:864.091500px;}
.ycc{bottom:867.166500px;}
.y29{bottom:872.416500px;}
.y2a{bottom:879.466500px;}
.y18{bottom:887.041500px;}
.yd7{bottom:887.866500px;}
.y4c{bottom:889.591500px;}
.yb2{bottom:889.741500px;}
.y27{bottom:893.116500px;}
.y98{bottom:895.141500px;}
.ycb{bottom:898.216500px;}
.y28{bottom:900.166500px;}
.yd6{bottom:908.566500px;}
.yd{bottom:913.216500px;}
.y26{bottom:913.816500px;}
.y17{bottom:918.091500px;}
.y4b{bottom:920.641500px;}
.yb1{bottom:920.791500px;}
.y97{bottom:926.191500px;}
.yca{bottom:929.266500px;}
.y24{bottom:934.516500px;}
.yc{bottom:940.816500px;}
.y25{bottom:941.566500px;}
.y16{bottom:949.141500px;}
.y6a{bottom:951.691500px;}
.yb0{bottom:951.841500px;}
.y23{bottom:955.216500px;}
.y96{bottom:957.241500px;}
.yc9{bottom:960.316500px;}
.yd1{bottom:968.941500px;}
.yd5{bottom:970.666500px;}
.y4a{bottom:972.391500px;}
.y22{bottom:975.916500px;}
.y15{bottom:980.191500px;}
.y69{bottom:982.741500px;}
.y95{bottom:988.291500px;}
.yd0{bottom:989.641500px;}
.yc8{bottom:991.366500px;}
.y49{bottom:1003.441500px;}
.yaf{bottom:1003.591500px;}
.ycf{bottom:1010.341500px;}
.y14{bottom:1011.241500px;}
.yd4{bottom:1012.066500px;}
.y68{bottom:1013.791500px;}
.y21{bottom:1015.591500px;}
.y94{bottom:1019.341500px;}
.yd3{bottom:1032.766500px;}
.y48{bottom:1034.491500px;}
.yae{bottom:1034.641500px;}
.ya{bottom:1036.216500px;}
.y13{bottom:1042.291500px;}
.yb{bottom:1043.266500px;}
.yc7{bottom:1043.416500px;}
.y67{bottom:1044.841500px;}
.y20{bottom:1046.641500px;}
.y93{bottom:1050.391500px;}
.yce{bottom:1052.041500px;}
.yf0{bottom:1055.191500px;}
.y47{bottom:1065.541500px;}
.y12{bottom:1073.341500px;}
.yd2{bottom:1074.166500px;}
.y66{bottom:1075.891500px;}
.y91{bottom:1081.441500px;}
.y1f{bottom:1081.966500px;}
.yad{bottom:1086.391500px;}
.y92{bottom:1088.491500px;}
.ycd{bottom:1094.866500px;}
.y46{bottom:1096.591500px;}
.y9{bottom:1098.916500px;}
.y65{bottom:1106.941500px;}
.yef{bottom:1117.291500px;}
.y8{bottom:1135.141500px;}
.y11{bottom:1136.566500px;}
.y45{bottom:1137.991500px;}
.y90{bottom:1145.041500px;}
.y1{bottom:1195.708500px;}
.y3{bottom:1196.191500px;}
.hd{height:8.337891px;}
.he{height:21.617578px;}
.h9{height:24.179883px;}
.h8{height:29.182617px;}
.h2{height:37.415039px;}
.h4{height:37.520508px;}
.h5{height:41.689453px;}
.hc{height:48.796875px;}
.hb{height:49.992188px;}
.h7{height:50.027344px;}
.ha{height:52.863281px;}
.h6{height:56.929688px;}
.h3{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;}
.x2{left:108.150000px;}
.x2c{left:112.050000px;}
.x17{left:131.925000px;}
.x34{left:134.850000px;}
.x1a{left:148.650000px;}
.x9{left:151.875000px;}
.x4d{left:172.950000px;}
.x14{left:184.275000px;}
.x15{left:192.825000px;}
.x3f{left:194.175000px;}
.x18{left:201.300000px;}
.x4f{left:212.625000px;}
.x1c{left:214.125000px;}
.x31{left:220.125000px;}
.x1d{left:224.025000px;}
.x49{left:226.200000px;}
.x6{left:235.875000px;}
.x47{left:243.600000px;}
.x25{left:248.550000px;}
.x22{left:253.725000px;}
.x51{left:256.125000px;}
.x23{left:268.575000px;}
.x24{left:270.150000px;}
.x12{left:271.575000px;}
.x16{left:276.675000px;}
.x3a{left:290.775000px;}
.x7{left:324.000000px;}
.xc{left:326.475000px;}
.x28{left:332.250000px;}
.x8{left:341.400000px;}
.x38{left:366.975000px;}
.x52{left:376.200000px;}
.x4e{left:386.625000px;}
.x4a{left:391.500000px;}
.x19{left:395.925000px;}
.x48{left:402.150000px;}
.x35{left:409.125000px;}
.x50{left:410.325000px;}
.xb{left:411.975000px;}
.x27{left:441.225000px;}
.x26{left:442.275000px;}
.x32{left:444.150000px;}
.x1b{left:456.450000px;}
.x5{left:465.825000px;}
.x54{left:469.875000px;}
.x3b{left:494.325000px;}
.x2d{left:511.500000px;}
.xd{left:514.425000px;}
.x57{left:525.375000px;}
.x33{left:528.000000px;}
.x2a{left:535.950000px;}
.xe{left:539.250000px;}
.x3c{left:542.475000px;}
.x3{left:546.075000px;}
.x4b{left:553.950000px;}
.x10{left:556.425000px;}
.x43{left:562.425000px;}
.x44{left:567.375000px;}
.x20{left:572.550000px;}
.x21{left:582.450000px;}
.x3d{left:596.025000px;}
.x2b{left:597.150000px;}
.x29{left:614.700000px;}
.x4{left:621.150000px;}
.x36{left:626.250000px;}
.x37{left:636.150000px;}
.x53{left:638.325000px;}
.x30{left:642.750000px;}
.x13{left:664.500000px;}
.x39{left:672.900000px;}
.x42{left:674.775000px;}
.x2e{left:685.950000px;}
.x46{left:689.175000px;}
.x56{left:696.525000px;}
.x45{left:710.250000px;}
.xf{left:717.600000px;}
.x2f{left:720.825000px;}
.x55{left:724.350000px;}
.x11{left:726.525000px;}
.x1e{left:730.725000px;}
.x40{left:734.400000px;}
.x41{left:739.350000px;}
.x1f{left:740.625000px;}
.x3e{left:757.500000px;}
.x4c{left:771.375000px;}
.x1{left:774.825000px;}
.xa{left:778.200000px;}
@media print{
.v1{vertical-align:-20.800000pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws4{word-spacing:-17.333333pt;}
.ws0{word-spacing:-16.000000pt;}
.ws2{word-spacing:-13.333333pt;}
.ws5{word-spacing:-9.333333pt;}
.ws1{word-spacing:-7.733333pt;}
.ws3{word-spacing:0.000000pt;}
._7{margin-left:-598.327652pt;}
._5{margin-left:-488.331130pt;}
._3{margin-left:-246.664348pt;}
._b{margin-left:-172.260174pt;}
._d{margin-left:-98.100869pt;}
._9{margin-left:-21.261913pt;}
._a{margin-left:-10.816000pt;}
._1{margin-left:-0.960000pt;}
._0{width:0.896000pt;}
._10{width:1.844870pt;}
._2{width:2.793739pt;}
._e{width:65.344000pt;}
._c{width:139.968000pt;}
._4{width:214.208000pt;}
._f{width:311.040000pt;}
._6{width:455.488000pt;}
._8{width:565.376000pt;}
.fs7{font-size:10.666667pt;}
.fs8{font-size:27.733333pt;}
.fs5{font-size:30.933333pt;}
.fs4{font-size:37.333333pt;}
.fs0{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs3{font-size:64.000000pt;}
.fs6{font-size:69.333333pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:0.037333pt;}
.y7{bottom:50.948000pt;}
.y6{bottom:65.614667pt;}
.y5{bottom:80.281333pt;}
.yac{bottom:98.881333pt;}
.y7b{bottom:100.748000pt;}
.yee{bottom:108.414667pt;}
.y4{bottom:109.548000pt;}
.y44{bottom:111.681333pt;}
.y8f{bottom:113.614667pt;}
.y64{bottom:114.281333pt;}
.y8e{bottom:118.614667pt;}
.yc6{bottom:119.281333pt;}
.yed{bottom:126.814667pt;}
.y7a{bottom:128.348000pt;}
.yab{bottom:129.681333pt;}
.y63{bottom:129.748000pt;}
.y62{bottom:134.748000pt;}
.y43{bottom:139.281333pt;}
.y10{bottom:140.348000pt;}
.yaa{bottom:145.148000pt;}
.yec{bottom:145.214667pt;}
.yc5{bottom:146.881333pt;}
.ya9{bottom:150.148000pt;}
.yf{bottom:155.748000pt;}
.y79{bottom:155.948000pt;}
.y8d{bottom:162.881333pt;}
.y42{bottom:166.881333pt;}
.yc4{bottom:174.481333pt;}
.ye{bottom:176.348000pt;}
.y8c{bottom:181.281333pt;}
.yeb{bottom:182.014667pt;}
.y61{bottom:191.214667pt;}
.y8b{bottom:199.681333pt;}
.yea{bottom:200.414667pt;}
.yc3{bottom:202.081333pt;}
.y77{bottom:211.148000pt;}
.y41{bottom:212.881333pt;}
.y78{bottom:217.414667pt;}
.y8a{bottom:218.081333pt;}
.y60{bottom:218.814667pt;}
.yc2{bottom:229.681333pt;}
.y89{bottom:236.481333pt;}
.y76{bottom:238.748000pt;}
.y40{bottom:240.481333pt;}
.y5f{bottom:246.414667pt;}
.y88{bottom:254.881333pt;}
.ye9{bottom:255.614667pt;}
.yc1{bottom:257.281333pt;}
.y75{bottom:266.348000pt;}
.y3f{bottom:268.081333pt;}
.y87{bottom:273.281333pt;}
.y5e{bottom:274.014667pt;}
.yc0{bottom:284.881333pt;}
.y85{bottom:291.681333pt;}
.ye8{bottom:292.414667pt;}
.y3e{bottom:295.681333pt;}
.y86{bottom:297.948000pt;}
.ya8{bottom:300.548000pt;}
.y5d{bottom:301.614667pt;}
.y84{bottom:310.081333pt;}
.ye7{bottom:310.814667pt;}
.y74{bottom:321.548000pt;}
.y3d{bottom:323.281333pt;}
.ya7{bottom:328.148000pt;}
.y5c{bottom:329.214667pt;}
.ybf{bottom:330.881333pt;}
.y83{bottom:339.948000pt;}
.ye6{bottom:347.614667pt;}
.y73{bottom:349.148000pt;}
.y3c{bottom:350.881333pt;}
.ya6{bottom:355.748000pt;}
.y5b{bottom:356.814667pt;}
.ye5{bottom:366.014667pt;}
.y72{bottom:376.748000pt;}
.ybe{bottom:376.881333pt;}
.y3b{bottom:378.481333pt;}
.ya5{bottom:383.348000pt;}
.y5a{bottom:384.414667pt;}
.y82{bottom:385.948000pt;}
.ybd{bottom:404.481333pt;}
.y3a{bottom:406.081333pt;}
.ya4{bottom:410.948000pt;}
.y59{bottom:412.014667pt;}
.y81{bottom:413.548000pt;}
.ye4{bottom:421.214667pt;}
.y71{bottom:431.948000pt;}
.ybc{bottom:432.081333pt;}
.y39{bottom:433.681333pt;}
.ya3{bottom:438.548000pt;}
.y58{bottom:439.614667pt;}
.y80{bottom:441.148000pt;}
.ye3{bottom:458.014667pt;}
.y70{bottom:459.548000pt;}
.y38{bottom:461.281333pt;}
.ya2{bottom:466.148000pt;}
.y57{bottom:467.214667pt;}
.ybb{bottom:468.881333pt;}
.ye2{bottom:476.414667pt;}
.y6f{bottom:487.148000pt;}
.y37{bottom:488.881333pt;}
.y56{bottom:494.814667pt;}
.ya1{bottom:512.148000pt;}
.ye1{bottom:513.214667pt;}
.y6e{bottom:514.748000pt;}
.yba{bottom:514.881333pt;}
.y55{bottom:522.414667pt;}
.ye0{bottom:531.614667pt;}
.y36{bottom:535.348000pt;}
.y7f{bottom:542.348000pt;}
.yb9{bottom:542.481333pt;}
.y54{bottom:550.014667pt;}
.ya0{bottom:558.148000pt;}
.y35{bottom:562.948000pt;}
.y6d{bottom:569.948000pt;}
.y9f{bottom:585.748000pt;}
.ydf{bottom:586.814667pt;}
.yb8{bottom:588.481333pt;}
.y34{bottom:590.548000pt;}
.y1e{bottom:595.281333pt;}
.y53{bottom:596.014667pt;}
.y7e{bottom:597.548000pt;}
.yde{bottom:605.214667pt;}
.y9e{bottom:613.348000pt;}
.yb7{bottom:616.081333pt;}
.y33{bottom:618.148000pt;}
.y1d{bottom:622.881333pt;}
.y52{bottom:623.614667pt;}
.y6c{bottom:625.148000pt;}
.y9d{bottom:640.948000pt;}
.ydd{bottom:642.014667pt;}
.y32{bottom:645.748000pt;}
.y51{bottom:651.214667pt;}
.y7d{bottom:652.748000pt;}
.ydc{bottom:660.414667pt;}
.yb6{bottom:662.081333pt;}
.y9c{bottom:668.548000pt;}
.y1c{bottom:678.081333pt;}
.ydb{bottom:678.814667pt;}
.y6b{bottom:680.348000pt;}
.y31{bottom:683.014667pt;}
.y30{bottom:683.052000pt;}
.y50{bottom:688.281333pt;}
.yb5{bottom:689.681333pt;}
.y9b{bottom:696.148000pt;}
.y1b{bottom:705.681333pt;}
.y7c{bottom:707.948000pt;}
.yda{bottom:715.614667pt;}
.y2e{bottom:720.281333pt;}
.y9a{bottom:723.748000pt;}
.y2f{bottom:726.548000pt;}
.y1a{bottom:733.281333pt;}
.yd9{bottom:734.014667pt;}
.y4e{bottom:735.548000pt;}
.yb4{bottom:735.681333pt;}
.y2d{bottom:738.681333pt;}
.y4f{bottom:741.814667pt;}
.yd8{bottom:752.414667pt;}
.y2b{bottom:757.081333pt;}
.y19{bottom:760.881333pt;}
.y4d{bottom:763.148000pt;}
.yb3{bottom:763.281333pt;}
.y2c{bottom:763.348000pt;}
.y99{bottom:768.081333pt;}
.ycc{bottom:770.814667pt;}
.y29{bottom:775.481333pt;}
.y2a{bottom:781.748000pt;}
.y18{bottom:788.481333pt;}
.yd7{bottom:789.214667pt;}
.y4c{bottom:790.748000pt;}
.yb2{bottom:790.881333pt;}
.y27{bottom:793.881333pt;}
.y98{bottom:795.681333pt;}
.ycb{bottom:798.414667pt;}
.y28{bottom:800.148000pt;}
.yd6{bottom:807.614667pt;}
.yd{bottom:811.748000pt;}
.y26{bottom:812.281333pt;}
.y17{bottom:816.081333pt;}
.y4b{bottom:818.348000pt;}
.yb1{bottom:818.481333pt;}
.y97{bottom:823.281333pt;}
.yca{bottom:826.014667pt;}
.y24{bottom:830.681333pt;}
.yc{bottom:836.281333pt;}
.y25{bottom:836.948000pt;}
.y16{bottom:843.681333pt;}
.y6a{bottom:845.948000pt;}
.yb0{bottom:846.081333pt;}
.y23{bottom:849.081333pt;}
.y96{bottom:850.881333pt;}
.yc9{bottom:853.614667pt;}
.yd1{bottom:861.281333pt;}
.yd5{bottom:862.814667pt;}
.y4a{bottom:864.348000pt;}
.y22{bottom:867.481333pt;}
.y15{bottom:871.281333pt;}
.y69{bottom:873.548000pt;}
.y95{bottom:878.481333pt;}
.yd0{bottom:879.681333pt;}
.yc8{bottom:881.214667pt;}
.y49{bottom:891.948000pt;}
.yaf{bottom:892.081333pt;}
.ycf{bottom:898.081333pt;}
.y14{bottom:898.881333pt;}
.yd4{bottom:899.614667pt;}
.y68{bottom:901.148000pt;}
.y21{bottom:902.748000pt;}
.y94{bottom:906.081333pt;}
.yd3{bottom:918.014667pt;}
.y48{bottom:919.548000pt;}
.yae{bottom:919.681333pt;}
.ya{bottom:921.081333pt;}
.y13{bottom:926.481333pt;}
.yb{bottom:927.348000pt;}
.yc7{bottom:927.481333pt;}
.y67{bottom:928.748000pt;}
.y20{bottom:930.348000pt;}
.y93{bottom:933.681333pt;}
.yce{bottom:935.148000pt;}
.yf0{bottom:937.948000pt;}
.y47{bottom:947.148000pt;}
.y12{bottom:954.081333pt;}
.yd2{bottom:954.814667pt;}
.y66{bottom:956.348000pt;}
.y91{bottom:961.281333pt;}
.y1f{bottom:961.748000pt;}
.yad{bottom:965.681333pt;}
.y92{bottom:967.548000pt;}
.ycd{bottom:973.214667pt;}
.y46{bottom:974.748000pt;}
.y9{bottom:976.814667pt;}
.y65{bottom:983.948000pt;}
.yef{bottom:993.148000pt;}
.y8{bottom:1009.014667pt;}
.y11{bottom:1010.281333pt;}
.y45{bottom:1011.548000pt;}
.y90{bottom:1017.814667pt;}
.y1{bottom:1062.852000pt;}
.y3{bottom:1063.281333pt;}
.hd{height:7.411458pt;}
.he{height:19.215625pt;}
.h9{height:21.493229pt;}
.h8{height:25.940104pt;}
.h2{height:33.257812pt;}
.h4{height:33.351562pt;}
.h5{height:37.057292pt;}
.hc{height:43.375000pt;}
.hb{height:44.437500pt;}
.h7{height:44.468750pt;}
.ha{height:46.989583pt;}
.h6{height:50.604167pt;}
.h3{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;}
.x2{left:96.133333pt;}
.x2c{left:99.600000pt;}
.x17{left:117.266667pt;}
.x34{left:119.866667pt;}
.x1a{left:132.133333pt;}
.x9{left:135.000000pt;}
.x4d{left:153.733333pt;}
.x14{left:163.800000pt;}
.x15{left:171.400000pt;}
.x3f{left:172.600000pt;}
.x18{left:178.933333pt;}
.x4f{left:189.000000pt;}
.x1c{left:190.333333pt;}
.x31{left:195.666667pt;}
.x1d{left:199.133333pt;}
.x49{left:201.066667pt;}
.x6{left:209.666667pt;}
.x47{left:216.533333pt;}
.x25{left:220.933333pt;}
.x22{left:225.533333pt;}
.x51{left:227.666667pt;}
.x23{left:238.733333pt;}
.x24{left:240.133333pt;}
.x12{left:241.400000pt;}
.x16{left:245.933333pt;}
.x3a{left:258.466667pt;}
.x7{left:288.000000pt;}
.xc{left:290.200000pt;}
.x28{left:295.333333pt;}
.x8{left:303.466667pt;}
.x38{left:326.200000pt;}
.x52{left:334.400000pt;}
.x4e{left:343.666667pt;}
.x4a{left:348.000000pt;}
.x19{left:351.933333pt;}
.x48{left:357.466667pt;}
.x35{left:363.666667pt;}
.x50{left:364.733333pt;}
.xb{left:366.200000pt;}
.x27{left:392.200000pt;}
.x26{left:393.133333pt;}
.x32{left:394.800000pt;}
.x1b{left:405.733333pt;}
.x5{left:414.066667pt;}
.x54{left:417.666667pt;}
.x3b{left:439.400000pt;}
.x2d{left:454.666667pt;}
.xd{left:457.266667pt;}
.x57{left:467.000000pt;}
.x33{left:469.333333pt;}
.x2a{left:476.400000pt;}
.xe{left:479.333333pt;}
.x3c{left:482.200000pt;}
.x3{left:485.400000pt;}
.x4b{left:492.400000pt;}
.x10{left:494.600000pt;}
.x43{left:499.933333pt;}
.x44{left:504.333333pt;}
.x20{left:508.933333pt;}
.x21{left:517.733333pt;}
.x3d{left:529.800000pt;}
.x2b{left:530.800000pt;}
.x29{left:546.400000pt;}
.x4{left:552.133333pt;}
.x36{left:556.666667pt;}
.x37{left:565.466667pt;}
.x53{left:567.400000pt;}
.x30{left:571.333333pt;}
.x13{left:590.666667pt;}
.x39{left:598.133333pt;}
.x42{left:599.800000pt;}
.x2e{left:609.733333pt;}
.x46{left:612.600000pt;}
.x56{left:619.133333pt;}
.x45{left:631.333333pt;}
.xf{left:637.866667pt;}
.x2f{left:640.733333pt;}
.x55{left:643.866667pt;}
.x11{left:645.800000pt;}
.x1e{left:649.533333pt;}
.x40{left:652.800000pt;}
.x41{left:657.200000pt;}
.x1f{left:658.333333pt;}
.x3e{left:673.333333pt;}
.x4c{left:685.666667pt;}
.x1{left:688.733333pt;}
.xa{left:691.733333pt;}
}




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