
    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;}
.ff1{font-family:sans-serif;visibility:hidden;}
.ff2{font-family:sans-serif;visibility:hidden;}
.ff3{font-family:sans-serif;visibility:hidden;}
.ff4{font-family:sans-serif;visibility:hidden;}
.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);}
.v2{vertical-align:-48.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:84.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:2.707032px;}
.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:0.000000px;}
.ws3{word-spacing:1354.386805px;}
.ws2{word-spacing:1457.700783px;}
.ws1{word-spacing:2000.850750px;}
._d{margin-left:-33.000000px;}
._0{margin-left:-31.482056px;}
._3{margin-left:-17.156250px;}
._a{margin-left:-15.741005px;}
._9{margin-left:-12.821817px;}
._b{margin-left:-11.382019px;}
._2{margin-left:-9.994492px;}
._7{margin-left:-8.117134px;}
._8{margin-left:-6.590069px;}
._4{margin-left:-4.936523px;}
._6{margin-left:-3.900198px;}
._1{margin-left:-2.808003px;}
._5{margin-left:-1.254295px;}
._c{width:3.923881px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:120.000000px;}
.fs9{font-size:132.000000px;}
.fs2{font-size:144.000000px;}
.fs5{font-size:156.000000px;}
.fs3{font-size:168.000000px;}
.fs6{font-size:192.000000px;}
.fs8{font-size:216.000000px;}
.fs7{font-size:252.000000px;}
.fs1{font-size:288.000000px;}
.fs0{font-size:576.000000px;}
.y0{bottom:0.000000px;}
.y45{bottom:130.500000px;}
.y4c{bottom:144.000000px;}
.y4b{bottom:183.000000px;}
.y44{bottom:195.000000px;}
.y49{bottom:222.000000px;}
.y4a{bottom:234.000000px;}
.y43{bottom:259.500000px;}
.y48{bottom:261.000000px;}
.y47{bottom:300.000000px;}
.y42{bottom:324.000000px;}
.y46{bottom:339.000000px;}
.y41{bottom:388.500000px;}
.y40{bottom:453.000000px;}
.y35{bottom:708.499512px;}
.y36{bottom:729.499512px;}
.y34{bottom:750.499512px;}
.y3f{bottom:822.000000px;}
.y26{bottom:924.999024px;}
.y25{bottom:975.999024px;}
.y20{bottom:993.999024px;}
.y3e{bottom:997.500000px;}
.y22{bottom:1001.499024px;}
.y1f{bottom:1044.999024px;}
.y21{bottom:1052.499024px;}
.y24{bottom:1155.999024px;}
.y3d{bottom:1173.000000px;}
.y23{bottom:1206.999024px;}
.y1e{bottom:1255.100097px;}
.y29{bottom:1328.499024px;}
.y1d{bottom:1328.600097px;}
.y31{bottom:1329.249024px;}
.y3c{bottom:1348.500000px;}
.y28{bottom:1379.499024px;}
.y30{bottom:1380.249024px;}
.y1c{bottom:1402.100097px;}
.y27{bottom:1430.499024px;}
.y2f{bottom:1431.249024px;}
.y3b{bottom:1524.000000px;}
.y33{bottom:1548.249024px;}
.y2e{bottom:1548.999024px;}
.y3a{bottom:1575.000000px;}
.y32{bottom:1599.249024px;}
.y2d{bottom:1599.999024px;}
.y2c{bottom:1710.750000px;}
.y39{bottom:1750.500000px;}
.y2b{bottom:1761.750000px;}
.y38{bottom:1801.500000px;}
.y2a{bottom:1812.750000px;}
.y37{bottom:1983.000000px;}
.y1b{bottom:2001.000000px;}
.y1a{bottom:2043.000000px;}
.y19{bottom:2179.500000px;}
.y12{bottom:2388.000000px;}
.y14{bottom:2404.500000px;}
.y10{bottom:2421.000000px;}
.yd{bottom:2437.500000px;}
.yf{bottom:2454.000000px;}
.yc{bottom:2470.500000px;}
.ye{bottom:2487.000000px;}
.y13{bottom:2503.500000px;}
.y11{bottom:2520.000000px;}
.y18{bottom:2660.090331px;}
.y17{bottom:2714.090331px;}
.y16{bottom:2768.090331px;}
.y15{bottom:2862.000000px;}
.yb{bottom:3001.500000px;}
.ya{bottom:3055.500000px;}
.y9{bottom:3109.500000px;}
.y8{bottom:3163.500000px;}
.y7{bottom:3217.500000px;}
.y6{bottom:3271.500000px;}
.y5{bottom:3325.500000px;}
.y4{bottom:3417.000000px;}
.y3{bottom:3555.000000px;}
.y2{bottom:3621.000000px;}
.y1{bottom:3705.000000px;}
.h5{height:114.000000px;}
.hc{height:125.400000px;}
.h3{height:136.800000px;}
.h6{height:148.200000px;}
.h4{height:159.600000px;}
.h8{height:182.400000px;}
.hb{height:205.200000px;}
.h9{height:232.200000px;}
.ha{height:239.400000px;}
.h2{height:273.600000px;}
.h7{height:316.200000px;}
.h1{height:547.200000px;}
.h0{height:3888.000000px;}
.w0{width:2592.000000px;}
.x0{left:0.000000px;}
.x1{left:91.500000px;}
.x3{left:93.000000px;}
.xb7{left:117.000000px;}
.xdb{left:139.992188px;}
.x2e{left:144.982910px;}
.x4{left:154.110431px;}
.x5{left:167.111205px;}
.x94{left:208.281738px;}
.xb8{left:211.921875px;}
.xdc{left:222.046875px;}
.x70{left:224.390625px;}
.x69{left:231.539062px;}
.x96{left:233.951660px;}
.x5d{left:242.765625px;}
.x2f{left:245.910645px;}
.x59{left:249.867188px;}
.x5f{left:252.468750px;}
.x30{left:254.975097px;}
.x6f{left:266.062500px;}
.x6d{left:268.734375px;}
.xc8{left:270.351562px;}
.x77{left:273.187500px;}
.xc9{left:280.371093px;}
.x49{left:283.125000px;}
.x71{left:297.937500px;}
.xea{left:301.992188px;}
.x34{left:310.885254px;}
.xeb{left:312.011718px;}
.x72{left:322.500000px;}
.xfd{left:332.367188px;}
.xb9{left:338.642579px;}
.xfe{left:342.386718px;}
.x42{left:346.429688px;}
.x6a{left:355.757812px;}
.x73{left:361.406250px;}
.x6b{left:366.914062px;}
.xec{left:373.974609px;}
.xca{left:375.029296px;}
.x93{left:376.289062px;}
.x43{left:378.070312px;}
.xed{left:383.994141px;}
.x10d{left:394.857421px;}
.x78{left:397.406250px;}
.xcb{left:402.978516px;}
.x10e{left:404.876954px;}
.x79{left:408.562500px;}
.x44{left:410.929688px;}
.xba{left:415.582032px;}
.xdd{left:419.009766px;}
.x45{left:422.085938px;}
.x5a{left:424.101562px;}
.xde{left:429.029296px;}
.x7{left:433.449876px;}
.x5b{left:435.257812px;}
.x92{left:440.414062px;}
.xcc{left:443.953125px;}
.x6{left:446.618820px;}
.x74{left:450.515625px;}
.xcd{left:453.972657px;}
.x46{left:456.679688px;}
.x31{left:463.647949px;}
.xee{left:465.996093px;}
.x10f{left:467.894532px;}
.x32{left:472.712403px;}
.x75{left:475.078125px;}
.x110{left:477.914062px;}
.x4a{left:483.796875px;}
.x95{left:487.718262px;}
.x4b{left:494.953125px;}
.xff{left:498.111329px;}
.x47{left:499.476562px;}
.x6e{left:511.265625px;}
.x7a{left:522.656250px;}
.x5c{left:531.632812px;}
.x5e{left:538.734375px;}
.x6c{left:548.460938px;}
.x33{left:551.017090px;}
.x111{left:559.916016px;}
.x112{left:569.935546px;}
.x76{left:571.453125px;}
.xce{left:583.962891px;}
.xcf{left:593.982421px;}
.xdf{left:602.367187px;}
.xef{left:608.906250px;}
.xbb{left:613.546875px;}
.xf0{left:618.925782px;}
.x100{left:620.085938px;}
.xbc{left:623.566407px;}
.x101{left:630.105468px;}
.xe0{left:632.373046px;}
.x113{left:640.916016px;}
.x48{left:642.070312px;}
.x114{left:650.935546px;}
.x102{left:671.080078px;}
.xe1{left:673.347657px;}
.x103{left:681.099609px;}
.x9{left:692.078584px;}
.xd0{left:700.980468px;}
.xc{left:702.699285px;}
.x7f{left:704.671875px;}
.x115{left:706.939453px;}
.xd1{left:711.000000px;}
.xbd{left:714.533204px;}
.x116{left:716.958984px;}
.xe2{left:718.330078px;}
.xf1{left:720.861328px;}
.x8{left:722.471163px;}
.xb{left:727.261201px;}
.xa{left:730.055535px;}
.x80{left:732.421875px;}
.xbe{left:735.574218px;}
.xe3{left:741.322266px;}
.x84{left:743.648438px;}
.x3e{left:745.201173px;}
.xe4{left:752.343750px;}
.xf2{left:761.888671px;}
.xf3{left:771.908204px;}
.x85{left:774.210938px;}
.xe5{left:784.300782px;}
.x2c{left:786.000000px;}
.xe6{left:794.320312px;}
.x2d{left:800.695312px;}
.x40{left:805.142578px;}
.x3b{left:810.099609px;}
.x58{left:811.734375px;}
.x104{left:829.810546px;}
.x105{left:839.830078px;}
.x7d{left:841.640625px;}
.x56{left:844.382812px;}
.xd2{left:850.007812px;}
.x3c{left:857.560548px;}
.xd3{left:860.027343px;}
.xbf{left:867.515625px;}
.x117{left:870.890625px;}
.x118{left:880.910157px;}
.xf4{left:894.832032px;}
.x86{left:897.773438px;}
.x106{left:901.792968px;}
.xf5{left:904.851563px;}
.xc0{left:908.542968px;}
.xd4{left:912.023437px;}
.xd5{left:922.042968px;}
.x87{left:937.289062px;}
.xe{left:947.061006px;}
.xf{left:951.455538px;}
.xe7{left:957.691407px;}
.x11{left:960.779559px;}
.xe8{left:967.710937px;}
.x10{left:970.063157px;}
.x119{left:973.933593px;}
.xf6{left:975.832032px;}
.xd{left:982.141085px;}
.x11a{left:983.953125px;}
.x41{left:985.705078px;}
.x57{left:1018.617188px;}
.x7e{left:1019.906250px;}
.xc1{left:1024.558593px;}
.xc2{left:1034.578125px;}
.x2{left:1038.000000px;}
.x81{left:1050.796875px;}
.x97{left:1059.672363px;}
.x82{left:1061.953125px;}
.x3d{left:1071.451173px;}
.xd6{left:1078.716797px;}
.x107{left:1086.785157px;}
.x83{left:1092.562500px;}
.x108{left:1096.804688px;}
.x98{left:1107.584472px;}
.xd7{left:1110.726563px;}
.x99{left:1116.648926px;}
.x88{left:1119.351562px;}
.x11b{left:1132.664063px;}
.x11c{left:1142.683593px;}
.xc3{left:1167.574218px;}
.xc4{left:1177.593750px;}
.x3f{left:1178.888673px;}
.xf7{left:1188.562500px;}
.xf8{left:1198.582032px;}
.x4f{left:1214.671875px;}
.x13{left:1220.962761px;}
.x19{left:1230.810613px;}
.x16{left:1232.044600px;}
.xf9{left:1237.552734px;}
.xc5{left:1239.556641px;}
.x12{left:1245.719209px;}
.xfa{left:1247.572266px;}
.xc6{left:1249.576172px;}
.x17{left:1250.875459px;}
.x18{left:1254.662371px;}
.xd8{left:1264.605468px;}
.x109{left:1268.771484px;}
.x10a{left:1278.791016px;}
.x4c{left:1288.382812px;}
.xd9{left:1292.554688px;}
.x7b{left:1293.750000px;}
.x4d{left:1316.742188px;}
.x50{left:1319.859375px;}
.x60{left:1325.742188px;}
.x89{left:1332.820312px;}
.x10b{left:1340.753907px;}
.x55{left:1342.289062px;}
.x14{left:1350.003775px;}
.x51{left:1351.265625px;}
.xe9{left:1367.648437px;}
.x15{left:1371.324874px;}
.x8d{left:1381.875000px;}
.xfb{left:1389.585937px;}
.xda{left:1391.537109px;}
.xc7{left:1399.183593px;}
.x8e{left:1416.468750px;}
.x8f{left:1427.625000px;}
.xfc{left:1430.613282px;}
.x8a{left:1457.039062px;}
.x68{left:1459.406250px;}
.x8b{left:1468.195312px;}
.x10c{left:1476.123047px;}
.x91{left:1479.257812px;}
.x61{left:1486.429688px;}
.x62{left:1497.585938px;}
.x1f{left:1506.517645px;}
.x9a{left:1515.407226px;}
.x1a{left:1520.682684px;}
.x1e{left:1531.442253px;}
.x1b{left:1537.814324px;}
.x9b{left:1549.989258px;}
.x4e{left:1551.117188px;}
.x52{left:1562.390625px;}
.x3a{left:1568.441895px;}
.x53{left:1573.546875px;}
.x7c{left:1596.750000px;}
.x9c{left:1599.272461px;}
.x35{left:1606.851562px;}
.x1c{left:1608.026048px;}
.x36{left:1615.916016px;}
.x65{left:1628.273438px;}
.x1d{left:1629.347145px;}
.x66{left:1639.429688px;}
.x129{left:1646.900391px;}
.x135{left:1653.829101px;}
.x150{left:1660.048828px;}
.x12a{left:1664.528321px;}
.x146{left:1668.105468px;}
.x136{left:1670.006836px;}
.x151{left:1678.675782px;}
.x147{left:1685.475586px;}
.x54{left:1687.640625px;}
.x37{left:1694.220704px;}
.x148{left:1695.272461px;}
.x38{left:1703.285157px;}
.x63{left:1708.007812px;}
.x149{left:1713.802734px;}
.x64{left:1719.164062px;}
.x9d{left:1721.490234px;}
.x67{left:1728.773438px;}
.x90{left:1736.625000px;}
.x137{left:1742.903321px;}
.x9e{left:1744.151367px;}
.x20{left:1754.409639px;}
.x14a{left:1756.083984px;}
.x21{left:1762.389519px;}
.x12b{left:1763.818359px;}
.x22{left:1764.902023px;}
.x23{left:1770.728583px;}
.x14b{left:1774.614258px;}
.x8c{left:1785.679688px;}
.x14c{left:1792.661133px;}
.x11d{left:1806.000000px;}
.x11e{left:1814.906250px;}
.x11f{left:1823.812500px;}
.x39{left:1834.833984px;}
.x138{left:1856.663086px;}
.x139{left:1873.517579px;}
.x120{left:1878.029296px;}
.x12c{left:1882.669921px;}
.x121{left:1894.883789px;}
.x13a{left:1899.556641px;}
.x12d{left:1900.652343px;}
.x122{left:1923.887696px;}
.x13b{left:1943.997071px;}
.x123{left:1960.722657px;}
.x13c{left:1971.550782px;}
.x14d{left:1975.998047px;}
.x124{left:1978.415039px;}
.x14e{left:1994.625000px;}
.x26{left:2014.867635px;}
.x13d{left:2018.601562px;}
.x125{left:2028.656250px;}
.x14f{left:2038.066407px;}
.x13e{left:2040.064454px;}
.x126{left:2047.283204px;}
.x24{left:2050.918023px;}
.x12e{left:2051.923829px;}
.xa1{left:2053.476562px;}
.xa6{left:2056.171875px;}
.x25{left:2059.758647px;}
.x12f{left:2070.550782px;}
.x130{left:2080.347657px;}
.xa2{left:2081.835938px;}
.xa7{left:2084.531250px;}
.xb3{left:2103.187500px;}
.x152{left:2107.321288px;}
.xa8{left:2114.484375px;}
.xad{left:2116.687500px;}
.x131{left:2121.726562px;}
.xae{left:2131.312500px;}
.x132{left:2140.353516px;}
.xb4{left:2146.921875px;}
.x127{left:2156.176758px;}
.x9f{left:2165.487304px;}
.x133{left:2168.422851px;}
.x128{left:2174.159179px;}
.xa0{left:2188.804688px;}
.x134{left:2194.010742px;}
.xb5{left:2195.671875px;}
.x2a{left:2198.947266px;}
.xa9{left:2203.312500px;}
.x2b{left:2218.224609px;}
.xaf{left:2222.250000px;}
.x13f{left:2224.368163px;}
.xb6{left:2226.515625px;}
.xaa{left:2233.453125px;}
.x140{left:2242.350586px;}
.x141{left:2250.697266px;}
.xb0{left:2254.312500px;}
.x27{left:2271.148492px;}
.xb1{left:2282.671875px;}
.x28{left:2283.918417px;}
.x142{left:2285.856446px;}
.x29{left:2305.071345px;}
.xb2{left:2328.187500px;}
.xab{left:2329.921875px;}
.x143{left:2351.050782px;}
.xac{left:2364.515625px;}
.xa3{left:2379.773438px;}
.x144{left:2383.180663px;}
.xa4{left:2390.929688px;}
.x145{left:2401.163087px;}
.xa5{left:2425.523438px;}
@media print{
.v2{vertical-align:-42.666667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:74.666667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:2.406251pt;}
.ws0{word-spacing:0.000000pt;}
.ws3{word-spacing:1203.899382pt;}
.ws2{word-spacing:1295.734029pt;}
.ws1{word-spacing:1778.534000pt;}
._d{margin-left:-29.333333pt;}
._0{margin-left:-27.984050pt;}
._3{margin-left:-15.250000pt;}
._a{margin-left:-13.992004pt;}
._9{margin-left:-11.397171pt;}
._b{margin-left:-10.117350pt;}
._2{margin-left:-8.883993pt;}
._7{margin-left:-7.215230pt;}
._8{margin-left:-5.857839pt;}
._4{margin-left:-4.388021pt;}
._6{margin-left:-3.466843pt;}
._1{margin-left:-2.496002pt;}
._5{margin-left:-1.114929pt;}
._c{width:3.487895pt;}
.fs4{font-size:106.666667pt;}
.fs9{font-size:117.333333pt;}
.fs2{font-size:128.000000pt;}
.fs5{font-size:138.666667pt;}
.fs3{font-size:149.333333pt;}
.fs6{font-size:170.666667pt;}
.fs8{font-size:192.000000pt;}
.fs7{font-size:224.000000pt;}
.fs1{font-size:256.000000pt;}
.fs0{font-size:512.000000pt;}
.y0{bottom:0.000000pt;}
.y45{bottom:116.000000pt;}
.y4c{bottom:128.000000pt;}
.y4b{bottom:162.666667pt;}
.y44{bottom:173.333333pt;}
.y49{bottom:197.333333pt;}
.y4a{bottom:208.000000pt;}
.y43{bottom:230.666667pt;}
.y48{bottom:232.000000pt;}
.y47{bottom:266.666667pt;}
.y42{bottom:288.000000pt;}
.y46{bottom:301.333333pt;}
.y41{bottom:345.333333pt;}
.y40{bottom:402.666667pt;}
.y35{bottom:629.777344pt;}
.y36{bottom:648.444011pt;}
.y34{bottom:667.110677pt;}
.y3f{bottom:730.666667pt;}
.y26{bottom:822.221355pt;}
.y25{bottom:867.554688pt;}
.y20{bottom:883.554688pt;}
.y3e{bottom:886.666667pt;}
.y22{bottom:890.221355pt;}
.y1f{bottom:928.888021pt;}
.y21{bottom:935.554688pt;}
.y24{bottom:1027.554688pt;}
.y3d{bottom:1042.666667pt;}
.y23{bottom:1072.888021pt;}
.y1e{bottom:1115.644531pt;}
.y29{bottom:1180.888021pt;}
.y1d{bottom:1180.977864pt;}
.y31{bottom:1181.554688pt;}
.y3c{bottom:1198.666667pt;}
.y28{bottom:1226.221355pt;}
.y30{bottom:1226.888021pt;}
.y1c{bottom:1246.311197pt;}
.y27{bottom:1271.554688pt;}
.y2f{bottom:1272.221355pt;}
.y3b{bottom:1354.666667pt;}
.y33{bottom:1376.221355pt;}
.y2e{bottom:1376.888021pt;}
.y3a{bottom:1400.000000pt;}
.y32{bottom:1421.554688pt;}
.y2d{bottom:1422.221355pt;}
.y2c{bottom:1520.666667pt;}
.y39{bottom:1556.000000pt;}
.y2b{bottom:1566.000000pt;}
.y38{bottom:1601.333333pt;}
.y2a{bottom:1611.333333pt;}
.y37{bottom:1762.666667pt;}
.y1b{bottom:1778.666667pt;}
.y1a{bottom:1816.000000pt;}
.y19{bottom:1937.333333pt;}
.y12{bottom:2122.666667pt;}
.y14{bottom:2137.333333pt;}
.y10{bottom:2152.000000pt;}
.yd{bottom:2166.666667pt;}
.yf{bottom:2181.333333pt;}
.yc{bottom:2196.000000pt;}
.ye{bottom:2210.666667pt;}
.y13{bottom:2225.333333pt;}
.y11{bottom:2240.000000pt;}
.y18{bottom:2364.524739pt;}
.y17{bottom:2412.524739pt;}
.y16{bottom:2460.524739pt;}
.y15{bottom:2544.000000pt;}
.yb{bottom:2668.000000pt;}
.ya{bottom:2716.000000pt;}
.y9{bottom:2764.000000pt;}
.y8{bottom:2812.000000pt;}
.y7{bottom:2860.000000pt;}
.y6{bottom:2908.000000pt;}
.y5{bottom:2956.000000pt;}
.y4{bottom:3037.333333pt;}
.y3{bottom:3160.000000pt;}
.y2{bottom:3218.666667pt;}
.y1{bottom:3293.333333pt;}
.h5{height:101.333333pt;}
.hc{height:111.466667pt;}
.h3{height:121.600000pt;}
.h6{height:131.733333pt;}
.h4{height:141.866667pt;}
.h8{height:162.133333pt;}
.hb{height:182.400000pt;}
.h9{height:206.400000pt;}
.ha{height:212.800000pt;}
.h2{height:243.200000pt;}
.h7{height:281.066667pt;}
.h1{height:486.400000pt;}
.h0{height:3456.000000pt;}
.w0{width:2304.000000pt;}
.x0{left:0.000000pt;}
.x1{left:81.333333pt;}
.x3{left:82.666667pt;}
.xb7{left:104.000000pt;}
.xdb{left:124.437500pt;}
.x2e{left:128.873697pt;}
.x4{left:136.987049pt;}
.x5{left:148.543293pt;}
.x94{left:185.139323pt;}
.xb8{left:188.375000pt;}
.xdc{left:197.375000pt;}
.x70{left:199.458333pt;}
.x69{left:205.812500pt;}
.x96{left:207.957031pt;}
.x5d{left:215.791667pt;}
.x2f{left:218.587240pt;}
.x59{left:222.104167pt;}
.x5f{left:224.416667pt;}
.x30{left:226.644531pt;}
.x6f{left:236.500000pt;}
.x6d{left:238.875000pt;}
.xc8{left:240.312500pt;}
.x77{left:242.833333pt;}
.xc9{left:249.218749pt;}
.x49{left:251.666667pt;}
.x71{left:264.833333pt;}
.xea{left:268.437500pt;}
.x34{left:276.342448pt;}
.xeb{left:277.343749pt;}
.x72{left:286.666667pt;}
.xfd{left:295.437500pt;}
.xb9{left:301.015625pt;}
.xfe{left:304.343749pt;}
.x42{left:307.937500pt;}
.x6a{left:316.229167pt;}
.x73{left:321.250000pt;}
.x6b{left:326.145833pt;}
.xec{left:332.421875pt;}
.xca{left:333.359375pt;}
.x93{left:334.479167pt;}
.x43{left:336.062500pt;}
.xed{left:341.328125pt;}
.x10d{left:350.984375pt;}
.x78{left:353.250000pt;}
.xcb{left:358.203125pt;}
.x10e{left:359.890625pt;}
.x79{left:363.166667pt;}
.x44{left:365.270833pt;}
.xba{left:369.406251pt;}
.xdd{left:372.453125pt;}
.x45{left:375.187500pt;}
.x5a{left:376.979167pt;}
.xde{left:381.359375pt;}
.x7{left:385.288779pt;}
.x5b{left:386.895833pt;}
.x92{left:391.479167pt;}
.xcc{left:394.625000pt;}
.x6{left:396.994507pt;}
.x74{left:400.458333pt;}
.xcd{left:403.531251pt;}
.x46{left:405.937500pt;}
.x31{left:412.131511pt;}
.xee{left:414.218749pt;}
.x10f{left:415.906251pt;}
.x32{left:420.188803pt;}
.x75{left:422.291667pt;}
.x110{left:424.812500pt;}
.x4a{left:430.041667pt;}
.x95{left:433.527344pt;}
.x4b{left:439.958333pt;}
.xff{left:442.765625pt;}
.x47{left:443.979167pt;}
.x6e{left:454.458333pt;}
.x7a{left:464.583333pt;}
.x5c{left:472.562500pt;}
.x5e{left:478.875000pt;}
.x6c{left:487.520833pt;}
.x33{left:489.792969pt;}
.x111{left:497.703125pt;}
.x112{left:506.609375pt;}
.x76{left:507.958333pt;}
.xce{left:519.078125pt;}
.xcf{left:527.984375pt;}
.xdf{left:535.437500pt;}
.xef{left:541.250000pt;}
.xbb{left:545.375000pt;}
.xf0{left:550.156251pt;}
.x100{left:551.187500pt;}
.xbc{left:554.281251pt;}
.x101{left:560.093749pt;}
.xe0{left:562.109375pt;}
.x113{left:569.703125pt;}
.x48{left:570.729167pt;}
.x114{left:578.609375pt;}
.x102{left:596.515625pt;}
.xe1{left:598.531251pt;}
.x103{left:605.421875pt;}
.x9{left:615.180964pt;}
.xd0{left:623.093749pt;}
.xc{left:624.621587pt;}
.x7f{left:626.375000pt;}
.x115{left:628.390625pt;}
.xd1{left:632.000000pt;}
.xbd{left:635.140625pt;}
.x116{left:637.296875pt;}
.xe2{left:638.515625pt;}
.xf1{left:640.765625pt;}
.x8{left:642.196589pt;}
.xb{left:646.454401pt;}
.xa{left:648.938253pt;}
.x80{left:651.041667pt;}
.xbe{left:653.843749pt;}
.xe3{left:658.953125pt;}
.x84{left:661.020833pt;}
.x3e{left:662.401043pt;}
.xe4{left:668.750000pt;}
.xf2{left:677.234375pt;}
.xf3{left:686.140625pt;}
.x85{left:688.187500pt;}
.xe5{left:697.156251pt;}
.x2c{left:698.666667pt;}
.xe6{left:706.062500pt;}
.x2d{left:711.729167pt;}
.x40{left:715.682292pt;}
.x3b{left:720.088541pt;}
.x58{left:721.541667pt;}
.x104{left:737.609375pt;}
.x105{left:746.515625pt;}
.x7d{left:748.125000pt;}
.x56{left:750.562500pt;}
.xd2{left:755.562500pt;}
.x3c{left:762.276043pt;}
.xd3{left:764.468749pt;}
.xbf{left:771.125000pt;}
.x117{left:774.125000pt;}
.x118{left:783.031251pt;}
.xf4{left:795.406251pt;}
.x86{left:798.020833pt;}
.x106{left:801.593749pt;}
.xf5{left:804.312500pt;}
.xc0{left:807.593749pt;}
.xd4{left:810.687500pt;}
.xd5{left:819.593749pt;}
.x87{left:833.145833pt;}
.xe{left:841.832005pt;}
.xf{left:845.738256pt;}
.xe7{left:851.281251pt;}
.x11{left:854.026275pt;}
.xe8{left:860.187500pt;}
.x10{left:862.278361pt;}
.x119{left:865.718749pt;}
.xf6{left:867.406251pt;}
.xd{left:873.014297pt;}
.x11a{left:874.625000pt;}
.x41{left:876.182292pt;}
.x57{left:905.437500pt;}
.x7e{left:906.583333pt;}
.xc1{left:910.718749pt;}
.xc2{left:919.625000pt;}
.x2{left:922.666667pt;}
.x81{left:934.041667pt;}
.x97{left:941.930989pt;}
.x82{left:943.958333pt;}
.x3d{left:952.401043pt;}
.xd6{left:958.859375pt;}
.x107{left:966.031251pt;}
.x83{left:971.166667pt;}
.x108{left:974.937500pt;}
.x98{left:984.519531pt;}
.xd7{left:987.312500pt;}
.x99{left:992.576823pt;}
.x88{left:994.979167pt;}
.x11b{left:1006.812500pt;}
.x11c{left:1015.718749pt;}
.xc3{left:1037.843749pt;}
.xc4{left:1046.750000pt;}
.x3f{left:1047.901043pt;}
.xf7{left:1056.500000pt;}
.xf8{left:1065.406251pt;}
.x4f{left:1079.708333pt;}
.x13{left:1085.300232pt;}
.x19{left:1094.053879pt;}
.x16{left:1095.150756pt;}
.xf9{left:1100.046875pt;}
.xc5{left:1101.828125pt;}
.x12{left:1107.305964pt;}
.xfa{left:1108.953125pt;}
.xc6{left:1110.734375pt;}
.x17{left:1111.889297pt;}
.x18{left:1115.255441pt;}
.xd8{left:1124.093749pt;}
.x109{left:1127.796875pt;}
.x10a{left:1136.703125pt;}
.x4c{left:1145.229167pt;}
.xd9{left:1148.937500pt;}
.x7b{left:1150.000000pt;}
.x4d{left:1170.437500pt;}
.x50{left:1173.208333pt;}
.x60{left:1178.437500pt;}
.x89{left:1184.729167pt;}
.x10b{left:1191.781251pt;}
.x55{left:1193.145833pt;}
.x14{left:1200.003356pt;}
.x51{left:1201.125000pt;}
.xe9{left:1215.687500pt;}
.x15{left:1218.955444pt;}
.x8d{left:1228.333333pt;}
.xfb{left:1235.187500pt;}
.xda{left:1236.921875pt;}
.xc7{left:1243.718749pt;}
.x8e{left:1259.083333pt;}
.x8f{left:1269.000000pt;}
.xfc{left:1271.656251pt;}
.x8a{left:1295.145833pt;}
.x68{left:1297.250000pt;}
.x8b{left:1305.062500pt;}
.x10c{left:1312.109375pt;}
.x91{left:1314.895833pt;}
.x61{left:1321.270833pt;}
.x62{left:1331.187500pt;}
.x1f{left:1339.126796pt;}
.x9a{left:1347.028645pt;}
.x1a{left:1351.717941pt;}
.x1e{left:1361.282003pt;}
.x1b{left:1366.946065pt;}
.x9b{left:1377.768229pt;}
.x4e{left:1378.770833pt;}
.x52{left:1388.791667pt;}
.x3a{left:1394.170573pt;}
.x53{left:1398.708333pt;}
.x7c{left:1419.333333pt;}
.x9c{left:1421.575521pt;}
.x35{left:1428.312500pt;}
.x1c{left:1429.356487pt;}
.x36{left:1436.369792pt;}
.x65{left:1447.354167pt;}
.x1d{left:1448.308573pt;}
.x66{left:1457.270833pt;}
.x129{left:1463.911459pt;}
.x135{left:1470.070312pt;}
.x150{left:1475.598959pt;}
.x12a{left:1479.580729pt;}
.x146{left:1482.760416pt;}
.x136{left:1484.450521pt;}
.x151{left:1492.156251pt;}
.x147{left:1498.200521pt;}
.x54{left:1500.125000pt;}
.x37{left:1505.973959pt;}
.x148{left:1506.908855pt;}
.x38{left:1514.031251pt;}
.x63{left:1518.229167pt;}
.x149{left:1523.380208pt;}
.x64{left:1528.145833pt;}
.x9d{left:1530.213541pt;}
.x67{left:1536.687500pt;}
.x90{left:1543.666667pt;}
.x137{left:1549.247396pt;}
.x9e{left:1550.356771pt;}
.x20{left:1559.475235pt;}
.x14a{left:1560.963541pt;}
.x21{left:1566.568461pt;}
.x12b{left:1567.838541pt;}
.x22{left:1568.801799pt;}
.x23{left:1573.980963pt;}
.x14b{left:1577.434896pt;}
.x8c{left:1587.270833pt;}
.x14c{left:1593.476563pt;}
.x11d{left:1605.333333pt;}
.x11e{left:1613.250000pt;}
.x11f{left:1621.166667pt;}
.x39{left:1630.963541pt;}
.x138{left:1650.367188pt;}
.x139{left:1665.348959pt;}
.x120{left:1669.359375pt;}
.x12c{left:1673.484375pt;}
.x121{left:1684.341145pt;}
.x13a{left:1688.494792pt;}
.x12d{left:1689.468749pt;}
.x122{left:1710.122396pt;}
.x13b{left:1727.997396pt;}
.x123{left:1742.864584pt;}
.x13c{left:1752.489584pt;}
.x14d{left:1756.442708pt;}
.x124{left:1758.591145pt;}
.x14e{left:1773.000000pt;}
.x26{left:1790.993453pt;}
.x13d{left:1794.312500pt;}
.x125{left:1803.250000pt;}
.x14f{left:1811.614584pt;}
.x13e{left:1813.390625pt;}
.x126{left:1819.807292pt;}
.x24{left:1823.038243pt;}
.x12e{left:1823.932292pt;}
.xa1{left:1825.312500pt;}
.xa6{left:1827.708333pt;}
.x25{left:1830.896575pt;}
.x12f{left:1840.489584pt;}
.x130{left:1849.197917pt;}
.xa2{left:1850.520833pt;}
.xa7{left:1852.916667pt;}
.xb3{left:1869.500000pt;}
.x152{left:1873.174479pt;}
.xa8{left:1879.541667pt;}
.xad{left:1881.500000pt;}
.x131{left:1885.979167pt;}
.xae{left:1894.500000pt;}
.x132{left:1902.536459pt;}
.xb4{left:1908.375000pt;}
.x127{left:1916.601563pt;}
.x9f{left:1924.877604pt;}
.x133{left:1927.486979pt;}
.x128{left:1932.585937pt;}
.xa0{left:1945.604167pt;}
.x134{left:1950.231771pt;}
.xb5{left:1951.708333pt;}
.x2a{left:1954.619792pt;}
.xa9{left:1958.500000pt;}
.x2b{left:1971.755208pt;}
.xaf{left:1975.333333pt;}
.x13f{left:1977.216145pt;}
.xb6{left:1979.125000pt;}
.xaa{left:1985.291667pt;}
.x140{left:1993.200521pt;}
.x141{left:2000.619792pt;}
.xb0{left:2003.833333pt;}
.x27{left:2018.798660pt;}
.xb1{left:2029.041667pt;}
.x28{left:2030.149704pt;}
.x142{left:2031.872396pt;}
.x29{left:2048.952307pt;}
.xb2{left:2069.500000pt;}
.xab{left:2071.041667pt;}
.x143{left:2089.822917pt;}
.xac{left:2101.791667pt;}
.xa3{left:2115.354167pt;}
.x144{left:2118.382812pt;}
.xa4{left:2125.270833pt;}
.x145{left:2134.367188pt;}
.xa5{left:2156.020833pt;}
}




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