
    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_d84787fe958cbb37dfbdb6b6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006000;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_c9438ce247213ef9abb116db.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.046000;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_c900491ba5cf1e1a1aac9127.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.008000;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_d4614fd62a49e0ae16a34ed1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.744000;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_227fc46dc2cf8bde510da85c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.006000;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_6f6f82b141a49347e15f6a1b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.008000;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_3cf911ca87773ed77477100c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.018000;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:ff8;src:url('chunks/assets/font_a371ceff501b41217707f5c5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.926000;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:ff9;src:url('chunks/assets/font_5ae73dbf4b492edfb60f189b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.718000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:56.284200px;}
.v2{vertical-align:58.326600px;}
.ls8{letter-spacing:-3.240000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:51.846000px;}
.ls6{letter-spacing:52.212000px;}
.ls3{letter-spacing:52.374060px;}
.ls5{letter-spacing:52.992000px;}
.ls4{letter-spacing:54.486000px;}
.ls7{letter-spacing:54.540000px;}
.ls2{letter-spacing:56.232060px;}
.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;}
}
.ws1{word-spacing:-63.000000px;}
.ws3{word-spacing:-39.000000px;}
.ws5{word-spacing:-33.000000px;}
.ws6{word-spacing:-27.000000px;}
.ws4{word-spacing:-0.252000px;}
.ws2{word-spacing:-0.150000px;}
.ws0{word-spacing:0.000000px;}
._8{margin-left:-24.192000px;}
._b{margin-left:-22.932000px;}
._c{margin-left:-21.924000px;}
._7{margin-left:-18.144000px;}
._4{margin-left:-16.380000px;}
._e{margin-left:-14.112000px;}
._5{margin-left:-12.096000px;}
._6{margin-left:-10.200000px;}
._a{margin-left:-9.072000px;}
._3{margin-left:-7.560000px;}
._9{margin-left:-6.048000px;}
._2{margin-left:-4.536000px;}
._1{margin-left:-3.024000px;}
._0{margin-left:-2.016000px;}
._19{margin-left:-1.008000px;}
._14{width:3.812400px;}
._15{width:4.854600px;}
._d{width:6.048000px;}
._f{width:9.396000px;}
._13{width:11.428200px;}
._11{width:12.621600px;}
._12{width:13.952400px;}
._16{width:14.973600px;}
._18{width:18.223200px;}
._17{width:19.663200px;}
._10{width:22.561800px;}
._1a{width:36.061200px;}
._1b{width:44.892000px;}
.fc3{color:rgb(52,131,201);}
.fc2{color:rgb(44,135,199);}
.fc4{color:rgb(255,255,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(102,204,255);}
.fs8{font-size:72.000000px;}
.fs7{font-size:96.000000px;}
.fs3{font-size:102.000000px;}
.fsb{font-size:108.000000px;}
.fs6{font-size:120.000000px;}
.fs0{font-size:126.000000px;}
.fsa{font-size:132.000000px;}
.fs5{font-size:150.000000px;}
.fs9{font-size:156.000000px;}
.fs2{font-size:204.000000px;}
.fs1{font-size:252.000000px;}
.fs4{font-size:430.920000px;}
.y1e{bottom:-3.445650px;}
.y1a{bottom:-2.946750px;}
.y1c{bottom:-2.462100px;}
.y0{bottom:0.000000px;}
.y20{bottom:4.215150px;}
.y21{bottom:4.260150px;}
.y25{bottom:4.459950px;}
.y23{bottom:4.898550px;}
.y2f{bottom:19.536600px;}
.y2b{bottom:21.197250px;}
.y75{bottom:23.269500px;}
.y2d{bottom:23.363550px;}
.y3f{bottom:98.223450px;}
.y3d{bottom:99.361800px;}
.y74{bottom:104.269500px;}
.y73{bottom:143.269500px;}
.y67{bottom:161.230500px;}
.y72{bottom:188.269500px;}
.y22{bottom:227.601450px;}
.y3e{bottom:258.776550px;}
.y71{bottom:270.769500px;}
.y70{bottom:314.269500px;}
.y1{bottom:321.000000px;}
.y49{bottom:325.928850px;}
.y39{bottom:326.668200px;}
.y58{bottom:328.500000px;}
.y28{bottom:340.500000px;}
.y6f{bottom:351.769500px;}
.y44{bottom:368.678850px;}
.y34{bottom:369.418350px;}
.y5e{bottom:372.000000px;}
.y12{bottom:377.428950px;}
.y5{bottom:379.500000px;}
.y45{bottom:382.500000px;}
.y35{bottom:384.000000px;}
.yc{bottom:390.000000px;}
.y62{bottom:400.178850px;}
.y48{bottom:411.428850px;}
.y38{bottom:412.168200px;}
.y57{bottom:414.000000px;}
.y17{bottom:426.000000px;}
.y6e{bottom:428.269500px;}
.y5d{bottom:442.928850px;}
.y4{bottom:448.500000px;}
.y43{bottom:454.178850px;}
.y33{bottom:454.918350px;}
.y66{bottom:457.500000px;}
.y1b{bottom:459.962100px;}
.y11{bottom:462.928950px;}
.y50{bottom:468.000000px;}
.y6d{bottom:471.769500px;}
.yb{bottom:475.500000px;}
.y3c{bottom:482.638200px;}
.y47{bottom:496.928850px;}
.y37{bottom:497.668200px;}
.y56{bottom:499.500000px;}
.y6c{bottom:509.269500px;}
.y16{bottom:511.500000px;}
.y3{bottom:517.500000px;}
.y1d{bottom:520.945650px;}
.y1f{bottom:523.784850px;}
.y5c{bottom:528.428850px;}
.y42{bottom:539.678850px;}
.y32{bottom:540.418350px;}
.y2e{bottom:542.963400px;}
.y65{bottom:543.000000px;}
.y10{bottom:548.428950px;}
.y4f{bottom:553.500000px;}
.ya{bottom:561.000000px;}
.y61{bottom:571.178850px;}
.y19{bottom:581.946750px;}
.y46{bottom:582.428850px;}
.y36{bottom:583.168200px;}
.y55{bottom:585.000000px;}
.y6b{bottom:585.769500px;}
.y15{bottom:597.000000px;}
.y4c{bottom:625.178850px;}
.y5b{bottom:628.500000px;}
.y6a{bottom:630.769500px;}
.yf{bottom:633.928950px;}
.y9{bottom:646.500000px;}
.y4e{bottom:667.928850px;}
.y54{bottom:670.500000px;}
.y69{bottom:675.769500px;}
.y14{bottom:682.500000px;}
.y64{bottom:714.000000px;}
.ye{bottom:719.428950px;}
.y68{bottom:720.769500px;}
.y41{bottom:724.500000px;}
.y31{bottom:726.000000px;}
.y8{bottom:732.000000px;}
.y60{bottom:756.000000px;}
.y3b{bottom:765.000000px;}
.y27{bottom:768.000000px;}
.y2{bottom:798.000000px;}
.y5a{bottom:799.500000px;}
.y4b{bottom:810.000000px;}
.y24{bottom:816.040050px;}
.y2c{bottom:830.136450px;}
.y2a{bottom:830.802750px;}
.y53{bottom:841.500000px;}
.y13{bottom:853.500000px;}
.y63{bottom:885.000000px;}
.y18{bottom:892.500000px;}
.y40{bottom:895.500000px;}
.y30{bottom:897.000000px;}
.y7{bottom:903.000000px;}
.yd{bottom:904.500000px;}
.y5f{bottom:927.000000px;}
.y3a{bottom:936.000000px;}
.y26{bottom:939.000000px;}
.y29{bottom:966.000000px;}
.y59{bottom:970.500000px;}
.y4a{bottom:981.000000px;}
.y51{bottom:982.500000px;}
.y52{bottom:1012.500000px;}
.y4d{bottom:1024.500000px;}
.y6{bottom:1104.000000px;}
.h9{height:33.000000px;}
.hc{height:59.391555px;}
.he{height:65.664000px;}
.hf{height:67.124865px;}
.h6{height:77.112000px;}
.h16{height:82.944000px;}
.hd{height:87.552000px;}
.h1{height:95.256000px;}
.h15{height:101.376000px;}
.hb{height:109.440000px;}
.h11{height:113.256000px;}
.h13{height:119.400000px;}
.h12{height:119.808000px;}
.ha{height:136.800000px;}
.h4{height:148.104000px;}
.h5{height:154.224000px;}
.h3{height:156.672000px;}
.h17{height:162.384000px;}
.h7{height:193.536000px;}
.h2{height:200.592000px;}
.h10{height:222.361800px;}
.h8{height:330.946560px;}
.h14{height:765.039000px;}
.h0{height:1152.000000px;}
.w1{width:81.576345px;}
.w4{width:126.820770px;}
.w3{width:146.520990px;}
.w2{width:253.378200px;}
.w5{width:344.905050px;}
.w7{width:353.679450px;}
.w6{width:354.429450px;}
.w8{width:1362.540300px;}
.w0{width:1536.000000px;}
.x0{left:0.000000px;}
.x19{left:9.586800px;}
.x4e{left:10.770150px;}
.x15{left:19.788150px;}
.x7{left:28.500000px;}
.x6{left:30.000000px;}
.x1d{left:36.689100px;}
.xa{left:43.500000px;}
.x30{left:50.570550px;}
.x1e{left:51.689100px;}
.x1b{left:55.558200px;}
.x25{left:65.100750px;}
.x33{left:67.070550px;}
.x46{left:78.000000px;}
.x32{left:81.000000px;}
.x44{left:82.500000px;}
.x26{left:84.000000px;}
.x4d{left:86.729850px;}
.x29{left:92.041485px;}
.x3d{left:94.500000px;}
.x10{left:97.500000px;}
.x8{left:99.000000px;}
.x4a{left:109.500000px;}
.x27{left:113.576985px;}
.x34{left:124.500000px;}
.x20{left:129.000000px;}
.x21{left:132.000000px;}
.x45{left:136.500000px;}
.x12{left:138.000000px;}
.x2{left:141.000000px;}
.x37{left:144.000000px;}
.x35{left:153.582000px;}
.x2a{left:159.000000px;}
.xd{left:163.500000px;}
.x49{left:172.500000px;}
.xe{left:192.673500px;}
.x28{left:207.000000px;}
.x3a{left:211.500000px;}
.x1a{left:219.708600px;}
.x2b{left:235.513500px;}
.x2d{left:283.887000px;}
.x2c{left:288.013500px;}
.x3b{left:304.500000px;}
.x1{left:306.000000px;}
.x23{left:315.391200px;}
.x13{left:322.500000px;}
.x47{left:343.500000px;}
.xc{left:351.000000px;}
.xf{left:352.500000px;}
.x2e{left:418.500000px;}
.x5{left:420.000000px;}
.x43{left:430.500000px;}
.x9{left:432.000000px;}
.x39{left:439.500000px;}
.x36{left:445.500000px;}
.x1f{left:447.000000px;}
.x4c{left:451.500000px;}
.x38{left:460.500000px;}
.xb{left:486.000000px;}
.x4b{left:504.000000px;}
.x3{left:528.000000px;}
.x11{left:531.000000px;}
.x40{left:570.000000px;}
.x42{left:580.500000px;}
.x2f{left:591.429450px;}
.x3e{left:601.500000px;}
.x3f{left:610.500000px;}
.x48{left:621.000000px;}
.x3c{left:625.500000px;}
.x41{left:639.000000px;}
.x1c{left:641.310900px;}
.x16{left:649.922250px;}
.x4{left:714.000000px;}
.x14{left:727.211850px;}
.x24{left:741.899250px;}
.x17{left:804.501450px;}
.x31{left:946.608750px;}
.x18{left:1062.913200px;}
.x22{left:1232.584500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:50.030400pt;}
.v2{vertical-align:51.845867pt;}
.ls8{letter-spacing:-2.880000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:46.085333pt;}
.ls6{letter-spacing:46.410667pt;}
.ls3{letter-spacing:46.554720pt;}
.ls5{letter-spacing:47.104000pt;}
.ls4{letter-spacing:48.432000pt;}
.ls7{letter-spacing:48.480000pt;}
.ls2{letter-spacing:49.984053pt;}
.ws1{word-spacing:-56.000000pt;}
.ws3{word-spacing:-34.666667pt;}
.ws5{word-spacing:-29.333333pt;}
.ws6{word-spacing:-24.000000pt;}
.ws4{word-spacing:-0.224000pt;}
.ws2{word-spacing:-0.133333pt;}
.ws0{word-spacing:0.000000pt;}
._8{margin-left:-21.504000pt;}
._b{margin-left:-20.384000pt;}
._c{margin-left:-19.488000pt;}
._7{margin-left:-16.128000pt;}
._4{margin-left:-14.560000pt;}
._e{margin-left:-12.544000pt;}
._5{margin-left:-10.752000pt;}
._6{margin-left:-9.066667pt;}
._a{margin-left:-8.064000pt;}
._3{margin-left:-6.720000pt;}
._9{margin-left:-5.376000pt;}
._2{margin-left:-4.032000pt;}
._1{margin-left:-2.688000pt;}
._0{margin-left:-1.792000pt;}
._19{margin-left:-0.896000pt;}
._14{width:3.388800pt;}
._15{width:4.315200pt;}
._d{width:5.376000pt;}
._f{width:8.352000pt;}
._13{width:10.158400pt;}
._11{width:11.219200pt;}
._12{width:12.402133pt;}
._16{width:13.309867pt;}
._18{width:16.198400pt;}
._17{width:17.478400pt;}
._10{width:20.054933pt;}
._1a{width:32.054400pt;}
._1b{width:39.904000pt;}
.fs8{font-size:64.000000pt;}
.fs7{font-size:85.333333pt;}
.fs3{font-size:90.666667pt;}
.fsb{font-size:96.000000pt;}
.fs6{font-size:106.666667pt;}
.fs0{font-size:112.000000pt;}
.fsa{font-size:117.333333pt;}
.fs5{font-size:133.333333pt;}
.fs9{font-size:138.666667pt;}
.fs2{font-size:181.333333pt;}
.fs1{font-size:224.000000pt;}
.fs4{font-size:383.040000pt;}
.y1e{bottom:-3.062800pt;}
.y1a{bottom:-2.619333pt;}
.y1c{bottom:-2.188533pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:3.746800pt;}
.y21{bottom:3.786800pt;}
.y25{bottom:3.964400pt;}
.y23{bottom:4.354267pt;}
.y2f{bottom:17.365867pt;}
.y2b{bottom:18.842000pt;}
.y75{bottom:20.684000pt;}
.y2d{bottom:20.767600pt;}
.y3f{bottom:87.309733pt;}
.y3d{bottom:88.321600pt;}
.y74{bottom:92.684000pt;}
.y73{bottom:127.350667pt;}
.y67{bottom:143.316000pt;}
.y72{bottom:167.350667pt;}
.y22{bottom:202.312400pt;}
.y3e{bottom:230.023600pt;}
.y71{bottom:240.684000pt;}
.y70{bottom:279.350667pt;}
.y1{bottom:285.333333pt;}
.y49{bottom:289.714533pt;}
.y39{bottom:290.371733pt;}
.y58{bottom:292.000000pt;}
.y28{bottom:302.666667pt;}
.y6f{bottom:312.684000pt;}
.y44{bottom:327.714533pt;}
.y34{bottom:328.371867pt;}
.y5e{bottom:330.666667pt;}
.y12{bottom:335.492400pt;}
.y5{bottom:337.333333pt;}
.y45{bottom:340.000000pt;}
.y35{bottom:341.333333pt;}
.yc{bottom:346.666667pt;}
.y62{bottom:355.714533pt;}
.y48{bottom:365.714533pt;}
.y38{bottom:366.371733pt;}
.y57{bottom:368.000000pt;}
.y17{bottom:378.666667pt;}
.y6e{bottom:380.684000pt;}
.y5d{bottom:393.714533pt;}
.y4{bottom:398.666667pt;}
.y43{bottom:403.714533pt;}
.y33{bottom:404.371867pt;}
.y66{bottom:406.666667pt;}
.y1b{bottom:408.855200pt;}
.y11{bottom:411.492400pt;}
.y50{bottom:416.000000pt;}
.y6d{bottom:419.350667pt;}
.yb{bottom:422.666667pt;}
.y3c{bottom:429.011733pt;}
.y47{bottom:441.714533pt;}
.y37{bottom:442.371733pt;}
.y56{bottom:444.000000pt;}
.y6c{bottom:452.684000pt;}
.y16{bottom:454.666667pt;}
.y3{bottom:460.000000pt;}
.y1d{bottom:463.062800pt;}
.y1f{bottom:465.586533pt;}
.y5c{bottom:469.714533pt;}
.y42{bottom:479.714533pt;}
.y32{bottom:480.371867pt;}
.y2e{bottom:482.634133pt;}
.y65{bottom:482.666667pt;}
.y10{bottom:487.492400pt;}
.y4f{bottom:492.000000pt;}
.ya{bottom:498.666667pt;}
.y61{bottom:507.714533pt;}
.y19{bottom:517.286000pt;}
.y46{bottom:517.714533pt;}
.y36{bottom:518.371733pt;}
.y55{bottom:520.000000pt;}
.y6b{bottom:520.684000pt;}
.y15{bottom:530.666667pt;}
.y4c{bottom:555.714533pt;}
.y5b{bottom:558.666667pt;}
.y6a{bottom:560.684000pt;}
.yf{bottom:563.492400pt;}
.y9{bottom:574.666667pt;}
.y4e{bottom:593.714533pt;}
.y54{bottom:596.000000pt;}
.y69{bottom:600.684000pt;}
.y14{bottom:606.666667pt;}
.y64{bottom:634.666667pt;}
.ye{bottom:639.492400pt;}
.y68{bottom:640.684000pt;}
.y41{bottom:644.000000pt;}
.y31{bottom:645.333333pt;}
.y8{bottom:650.666667pt;}
.y60{bottom:672.000000pt;}
.y3b{bottom:680.000000pt;}
.y27{bottom:682.666667pt;}
.y2{bottom:709.333333pt;}
.y5a{bottom:710.666667pt;}
.y4b{bottom:720.000000pt;}
.y24{bottom:725.368933pt;}
.y2c{bottom:737.899067pt;}
.y2a{bottom:738.491333pt;}
.y53{bottom:748.000000pt;}
.y13{bottom:758.666667pt;}
.y63{bottom:786.666667pt;}
.y18{bottom:793.333333pt;}
.y40{bottom:796.000000pt;}
.y30{bottom:797.333333pt;}
.y7{bottom:802.666667pt;}
.yd{bottom:804.000000pt;}
.y5f{bottom:824.000000pt;}
.y3a{bottom:832.000000pt;}
.y26{bottom:834.666667pt;}
.y29{bottom:858.666667pt;}
.y59{bottom:862.666667pt;}
.y4a{bottom:872.000000pt;}
.y51{bottom:873.333333pt;}
.y52{bottom:900.000000pt;}
.y4d{bottom:910.666667pt;}
.y6{bottom:981.333333pt;}
.h9{height:29.333333pt;}
.hc{height:52.792493pt;}
.he{height:58.368000pt;}
.hf{height:59.666547pt;}
.h6{height:68.544000pt;}
.h16{height:73.728000pt;}
.hd{height:77.824000pt;}
.h1{height:84.672000pt;}
.h15{height:90.112000pt;}
.hb{height:97.280000pt;}
.h11{height:100.672000pt;}
.h13{height:106.133333pt;}
.h12{height:106.496000pt;}
.ha{height:121.600000pt;}
.h4{height:131.648000pt;}
.h5{height:137.088000pt;}
.h3{height:139.264000pt;}
.h17{height:144.341333pt;}
.h7{height:172.032000pt;}
.h2{height:178.304000pt;}
.h10{height:197.654933pt;}
.h8{height:294.174720pt;}
.h14{height:680.034667pt;}
.h0{height:1024.000000pt;}
.w1{width:72.512307pt;}
.w4{width:112.729573pt;}
.w3{width:130.240880pt;}
.w2{width:225.225067pt;}
.w5{width:306.582267pt;}
.w7{width:314.381733pt;}
.w6{width:315.048400pt;}
.w8{width:1211.146933pt;}
.w0{width:1365.333333pt;}
.x0{left:0.000000pt;}
.x19{left:8.521600pt;}
.x4e{left:9.573467pt;}
.x15{left:17.589467pt;}
.x7{left:25.333333pt;}
.x6{left:26.666667pt;}
.x1d{left:32.612533pt;}
.xa{left:38.666667pt;}
.x30{left:44.951600pt;}
.x1e{left:45.945867pt;}
.x1b{left:49.385067pt;}
.x25{left:57.867333pt;}
.x33{left:59.618267pt;}
.x46{left:69.333333pt;}
.x32{left:72.000000pt;}
.x44{left:73.333333pt;}
.x26{left:74.666667pt;}
.x4d{left:77.093200pt;}
.x29{left:81.814653pt;}
.x3d{left:84.000000pt;}
.x10{left:86.666667pt;}
.x8{left:88.000000pt;}
.x4a{left:97.333333pt;}
.x27{left:100.957320pt;}
.x34{left:110.666667pt;}
.x20{left:114.666667pt;}
.x21{left:117.333333pt;}
.x45{left:121.333333pt;}
.x12{left:122.666667pt;}
.x2{left:125.333333pt;}
.x37{left:128.000000pt;}
.x35{left:136.517333pt;}
.x2a{left:141.333333pt;}
.xd{left:145.333333pt;}
.x49{left:153.333333pt;}
.xe{left:171.265333pt;}
.x28{left:184.000000pt;}
.x3a{left:188.000000pt;}
.x1a{left:195.296533pt;}
.x2b{left:209.345333pt;}
.x2d{left:252.344000pt;}
.x2c{left:256.012000pt;}
.x3b{left:270.666667pt;}
.x1{left:272.000000pt;}
.x23{left:280.347733pt;}
.x13{left:286.666667pt;}
.x47{left:305.333333pt;}
.xc{left:312.000000pt;}
.xf{left:313.333333pt;}
.x2e{left:372.000000pt;}
.x5{left:373.333333pt;}
.x43{left:382.666667pt;}
.x9{left:384.000000pt;}
.x39{left:390.666667pt;}
.x36{left:396.000000pt;}
.x1f{left:397.333333pt;}
.x4c{left:401.333333pt;}
.x38{left:409.333333pt;}
.xb{left:432.000000pt;}
.x4b{left:448.000000pt;}
.x3{left:469.333333pt;}
.x11{left:472.000000pt;}
.x40{left:506.666667pt;}
.x42{left:516.000000pt;}
.x2f{left:525.715067pt;}
.x3e{left:534.666667pt;}
.x3f{left:542.666667pt;}
.x48{left:552.000000pt;}
.x3c{left:556.000000pt;}
.x41{left:568.000000pt;}
.x1c{left:570.054133pt;}
.x16{left:577.708667pt;}
.x4{left:634.666667pt;}
.x14{left:646.410533pt;}
.x24{left:659.466000pt;}
.x17{left:715.112400pt;}
.x31{left:841.430000pt;}
.x18{left:944.811733pt;}
.x22{left:1095.630667pt;}
}




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