
    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_7b8171525a2a74a015a7a752.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_d60127ed656e76f9b314a00d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.962402;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_33244044a76fcb96552a05bb.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.941406;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_88b95462654ed0e6443b288e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.941406;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_c70b337ebbf59b12e4caa1d2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.962402;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_28f166ba0cc44fa92f2baaf1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.941406;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_40c083ed150d5520820beea3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.941406;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_ed0d4a74a5c52fe54bdfae16.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.926758;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_4ec8bc43aba56a68d347e0d8.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.926758;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);}
.v1{vertical-align:-3.780000px;}
.v0{vertical-align:0.000000px;}
.ls20{letter-spacing:-3.660000px;}
.ls21{letter-spacing:-2.040000px;}
.ls23{letter-spacing:-1.650000px;}
.ls1b{letter-spacing:-1.548000px;}
.ls1f{letter-spacing:-1.488000px;}
.ls1e{letter-spacing:-1.320000px;}
.ls1a{letter-spacing:-0.576600px;}
.ls19{letter-spacing:-0.501600px;}
.ls17{letter-spacing:-0.468000px;}
.ls28{letter-spacing:-0.351600px;}
.ls22{letter-spacing:-0.318000px;}
.ls16{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.048000px;}
.ls6{letter-spacing:0.118050px;}
.ls14{letter-spacing:0.132600px;}
.ls1c{letter-spacing:0.165000px;}
.ls1d{letter-spacing:0.207000px;}
.ls5{letter-spacing:0.426000px;}
.ls18{letter-spacing:0.468000px;}
.ls24{letter-spacing:0.576000px;}
.ls4{letter-spacing:0.852000px;}
.ls2{letter-spacing:0.864000px;}
.ls9{letter-spacing:0.936000px;}
.ls15{letter-spacing:1.002000px;}
.lsc{letter-spacing:1.086000px;}
.ls27{letter-spacing:1.422000px;}
.ls25{letter-spacing:1.500000px;}
.ls26{letter-spacing:1.548000px;}
.ls10{letter-spacing:6.288000px;}
.ls11{letter-spacing:7.368000px;}
.ls13{letter-spacing:11.268000px;}
.lsf{letter-spacing:25.728000px;}
.lsb{letter-spacing:26.988000px;}
.lsd{letter-spacing:27.048000px;}
.ls12{letter-spacing:27.066300px;}
.lsa{letter-spacing:111.517500px;}
.ls7{letter-spacing:111.547500px;}
.ls8{letter-spacing:111.600000px;}
.lse{letter-spacing:111.750000px;}
.ls1{letter-spacing:122.347500px;}
.ls0{letter-spacing:122.400000px;}
.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;}
}
.ws11{word-spacing:-144.150000px;}
.wsd{word-spacing:-144.000000px;}
.ws10{word-spacing:-54.000000px;}
.wse{word-spacing:-53.999700px;}
.ws15{word-spacing:-53.834700px;}
.ws12{word-spacing:-52.514700px;}
.ws13{word-spacing:-52.346700px;}
.ws16{word-spacing:-51.753000px;}
.ws14{word-spacing:-50.174700px;}
.ws1c{word-spacing:-41.580000px;}
.ws1b{word-spacing:-41.573700px;}
.ws1d{word-spacing:-41.495700px;}
.wsf{word-spacing:-41.118000px;}
.wsb{word-spacing:-41.075700px;}
.ws5{word-spacing:-40.968000px;}
.ws9{word-spacing:-40.925700px;}
.ws0{word-spacing:-40.896000px;}
.ws1a{word-spacing:-40.649700px;}
.ws4{word-spacing:-40.500000px;}
.ws7{word-spacing:-40.499700px;}
.ws1{word-spacing:-40.080000px;}
.ws6{word-spacing:-40.073700px;}
.ws3{word-spacing:-40.032000px;}
.ws1e{word-spacing:-39.722100px;}
.ws17{word-spacing:-39.714000px;}
.ws8{word-spacing:-39.572100px;}
.ws2{word-spacing:-39.564000px;}
.wsa{word-spacing:-39.497100px;}
.wsc{word-spacing:-38.484000px;}
.ws19{word-spacing:-38.423700px;}
.ws1f{word-spacing:0.000000px;}
.ws18{word-spacing:270.816000px;}
._c{margin-left:-22.612950px;}
._b{margin-left:-18.225000px;}
._e{margin-left:-15.888600px;}
._8{margin-left:-13.163250px;}
._22{margin-left:-10.885950px;}
._21{margin-left:-9.627600px;}
._7{margin-left:-8.418300px;}
._5{margin-left:-6.912900px;}
._1{margin-left:-5.357100px;}
._6{margin-left:-4.072350px;}
._2{margin-left:-3.061200px;}
._4{margin-left:-1.667400px;}
._0{width:1.913250px;}
._3{width:3.456450px;}
._9{width:4.678350px;}
._d{width:6.396150px;}
._2a{width:7.920150px;}
._a{width:9.016200px;}
._2b{width:10.610700px;}
._2c{width:12.053850px;}
._1c{width:15.675900px;}
._1b{width:16.819950px;}
._2d{width:18.353250px;}
._30{width:19.463700px;}
._28{width:25.013100px;}
._18{width:26.687400px;}
._17{width:28.001850px;}
._25{width:30.611400px;}
._24{width:31.819950px;}
._34{width:36.666300px;}
._26{width:42.528150px;}
._10{width:50.854950px;}
._29{width:52.141800px;}
._16{width:55.330200px;}
._f{width:57.277650px;}
._1e{width:60.958350px;}
._1d{width:62.262150px;}
._32{width:63.505800px;}
._31{width:64.609950px;}
._15{width:68.146200px;}
._14{width:69.166500px;}
._23{width:74.102400px;}
._33{width:79.049850px;}
._13{width:93.588600px;}
._12{width:95.028300px;}
._1a{width:99.762750px;}
._19{width:101.136000px;}
._2f{width:142.250850px;}
._2e{width:143.707800px;}
._27{width:156.132000px;}
._20{width:163.514700px;}
._1f{width:164.932500px;}
._11{width:190.111350px;}
.fc8{color:transparent;}
.fc7{color:rgb(0,32,96);}
.fc6{color:rgb(255,255,0);}
.fc5{color:rgb(255,0,0);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(13,13,13);}
.fc4{color:rgb(192,0,0);}
.fc0{color:rgb(47,85,151);}
.fs7{font-size:126.000000px;}
.fs5{font-size:144.000000px;}
.fs6{font-size:144.150000px;}
.fs9{font-size:193.500000px;}
.fs8{font-size:193.650000px;}
.fs2{font-size:220.650000px;}
.fs4{font-size:243.000000px;}
.fs3{font-size:243.150000px;}
.fs0{font-size:382.650000px;}
.fs1{font-size:382.800000px;}
.y0{bottom:0.000000px;}
.y57{bottom:36.262500px;}
.y63{bottom:62.212500px;}
.y3c{bottom:64.912500px;}
.y56{bottom:80.137500px;}
.y62{bottom:104.962500px;}
.y55{bottom:122.925000px;}
.y61{bottom:148.875000px;}
.y78{bottom:161.100000px;}
.y54{bottom:165.675000px;}
.y77{bottom:205.020000px;}
.y53{bottom:209.580000px;}
.y1d{bottom:266.730000px;}
.y22{bottom:294.645000px;}
.y3b{bottom:312.945000px;}
.y1c{bottom:363.705000px;}
.y1b{bottom:429.000000px;}
.y25{bottom:438.855000px;}
.y1a{bottom:493.155000px;}
.y52{bottom:496.725000px;}
.y51{bottom:539.475000px;}
.y19{bottom:558.450000px;}
.y2f{bottom:559.575000px;}
.y50{bottom:583.380000px;}
.y2e{bottom:602.325000px;}
.y18{bottom:622.605000px;}
.y2d{bottom:646.230000px;}
.y17{bottom:687.855000px;}
.y5c{bottom:738.600000px;}
.y2c{bottom:739.320000px;}
.y16{bottom:753.150000px;}
.y15{bottom:817.320000px;}
.y43{bottom:839.325000px;}
.y5b{bottom:841.455000px;}
.y31{bottom:847.800000px;}
.y14{bottom:882.600000px;}
.y30{bottom:891.675000px;}
.y5a{bottom:933.870000px;}
.y42{bottom:936.000000px;}
.y13{bottom:942.480000px;}
.y24{bottom:995.250000px;}
.y41{bottom:1018.395000px;}
.y59{bottom:1018.800000px;}
.y12{bottom:1050.000000px;}
.y11{bottom:1093.905000px;}
.y58{bottom:1114.980000px;}
.y10{bottom:1158.075000px;}
.y75{bottom:1160.355000px;}
.yf{bottom:1201.950000px;}
.y2b{bottom:1250.820000px;}
.ye{bottom:1266.120000px;}
.y2a{bottom:1294.725000px;}
.y40{bottom:1298.520000px;}
.yd{bottom:1310.025000px;}
.y4f{bottom:1324.800000px;}
.y4e{bottom:1368.675000px;}
.yc{bottom:1374.195000px;}
.y21{bottom:1385.325000px;}
.y20{bottom:1429.230000px;}
.yb{bottom:1439.445000px;}
.ya{bottom:1503.600000px;}
.y27{bottom:1506.600000px;}
.y9{bottom:1547.520000px;}
.y26{bottom:1550.475000px;}
.y8{bottom:1607.400000px;}
.y74{bottom:1614.150000px;}
.y29{bottom:1638.375000px;}
.y73{bottom:1658.025000px;}
.y28{bottom:1682.250000px;}
.y46{bottom:1693.695000px;}
.y5d{bottom:1742.580000px;}
.y71{bottom:1760.670000px;}
.y47{bottom:1763.295000px;}
.y70{bottom:1803.450000px;}
.y23{bottom:1809.375000px;}
.y45{bottom:1819.170000px;}
.y6f{bottom:1846.200000px;}
.y44{bottom:1877.700000px;}
.y76{bottom:1881.900000px;}
.y6e{bottom:1890.105000px;}
.y6{bottom:1973.100000px;}
.y72{bottom:2014.980000px;}
.y3f{bottom:2061.900000px;}
.y33{bottom:2093.445000px;}
.y6d{bottom:2104.650000px;}
.y3e{bottom:2126.070000px;}
.y32{bottom:2137.320000px;}
.y60{bottom:2179.320000px;}
.y4b{bottom:2181.480000px;}
.y6c{bottom:2187.045000px;}
.y3d{bottom:2191.350000px;}
.y6b{bottom:2230.950000px;}
.y37{bottom:2283.105000px;}
.y4c{bottom:2291.550000px;}
.y6a{bottom:2324.070000px;}
.y38{bottom:2364.855000px;}
.y69{bottom:2367.975000px;}
.y64{bottom:2381.625000px;}
.y3a{bottom:2416.350000px;}
.y68{bottom:2436.975000px;}
.y5f{bottom:2453.175000px;}
.y39{bottom:2460.270000px;}
.y67{bottom:2480.895000px;}
.y5e{bottom:2507.775000px;}
.y36{bottom:2546.025000px;}
.y66{bottom:2565.000000px;}
.y4a{bottom:2588.280000px;}
.y35{bottom:2589.900000px;}
.y65{bottom:2608.920000px;}
.y49{bottom:2703.975000px;}
.y34{bottom:2714.070000px;}
.y4d{bottom:2732.145000px;}
.y48{bottom:2762.520000px;}
.y5{bottom:2874.855000px;}
.y7{bottom:2874.900000px;}
.y1e{bottom:2968.455000px;}
.y1f{bottom:2970.195000px;}
.y4{bottom:3012.900000px;}
.y3{bottom:3079.305000px;}
.y2{bottom:3158.730000px;}
.y1{bottom:3273.525000px;}
.h6{height:105.257812px;}
.h7{height:105.367456px;}
.h8{height:108.281250px;}
.h9{height:108.394043px;}
.hc{height:145.502930px;}
.hb{height:145.615723px;}
.ha{height:165.918457px;}
.h5{height:182.724609px;}
.h4{height:182.837402px;}
.h3{height:225.929224px;}
.h1{height:391.805200px;}
.h2{height:391.958789px;}
.h0{height:3402.000000px;}
.w2{width:5952.374911px;}
.w0{width:5952.375000px;}
.w1{width:5952.750000px;}
.x0{left:0.000000px;}
.x27{left:61.912411px;}
.x29{left:63.412411px;}
.x28{left:68.287411px;}
.x2a{left:70.087411px;}
.x13{left:83.999911px;}
.x11{left:94.387411px;}
.x16{left:97.874911px;}
.x10{left:101.812411px;}
.x15{left:104.699911px;}
.x19{left:108.224911px;}
.x18{left:111.112411px;}
.x14{left:116.062411px;}
.x12{left:134.887411px;}
.x17{left:138.374911px;}
.x1a{left:148.724911px;}
.x1b{left:157.124911px;}
.x31{left:374.879911px;}
.x32{left:376.574911px;}
.x6{left:636.524911px;}
.x5{left:673.124911px;}
.x21{left:743.399911px;}
.x33{left:778.829911px;}
.x2b{left:969.794911px;}
.x2c{left:1039.154911px;}
.x20{left:1185.119911px;}
.x35{left:1270.379911px;}
.x1{left:1634.294911px;}
.x34{left:1829.849911px;}
.x2e{left:1832.819911px;}
.x1c{left:1858.694911px;}
.x3{left:1893.899911px;}
.x2f{left:1895.249911px;}
.x22{left:2001.569911px;}
.x2{left:2230.619911px;}
.xf{left:2412.374911px;}
.x23{left:2499.074911px;}
.x24{left:2507.819911px;}
.x4{left:2600.624911px;}
.x2d{left:3068.444911px;}
.x1e{left:3428.549911px;}
.x41{left:3445.754911px;}
.x1d{left:3498.749911px;}
.x25{left:3509.549911px;}
.x3f{left:3510.869911px;}
.x1f{left:3530.249911px;}
.x40{left:3551.369911px;}
.x9{left:4288.349911px;}
.x42{left:4301.024911px;}
.xc{left:4307.174911px;}
.xa{left:4331.549911px;}
.x3d{left:4351.649911px;}
.x36{left:4360.079911px;}
.x3b{left:4372.649911px;}
.x26{left:4386.224911px;}
.x3c{left:4466.324911px;}
.x3e{left:4469.324911px;}
.x37{left:4472.129911px;}
.x39{left:4473.329911px;}
.x38{left:4512.629911px;}
.x3a{left:4513.829911px;}
.x8{left:4707.074911px;}
.xd{left:4769.024911px;}
.x7{left:4843.004911px;}
.xb{left:4897.679911px;}
.x30{left:5110.649911px;}
.xe{left:5211.074911px;}
@media print{
.v1{vertical-align:-3.360000pt;}
.v0{vertical-align:0.000000pt;}
.ls20{letter-spacing:-3.253333pt;}
.ls21{letter-spacing:-1.813333pt;}
.ls23{letter-spacing:-1.466667pt;}
.ls1b{letter-spacing:-1.376000pt;}
.ls1f{letter-spacing:-1.322667pt;}
.ls1e{letter-spacing:-1.173333pt;}
.ls1a{letter-spacing:-0.512533pt;}
.ls19{letter-spacing:-0.445867pt;}
.ls17{letter-spacing:-0.416000pt;}
.ls28{letter-spacing:-0.312533pt;}
.ls22{letter-spacing:-0.282667pt;}
.ls16{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.042667pt;}
.ls6{letter-spacing:0.104933pt;}
.ls14{letter-spacing:0.117867pt;}
.ls1c{letter-spacing:0.146667pt;}
.ls1d{letter-spacing:0.184000pt;}
.ls5{letter-spacing:0.378667pt;}
.ls18{letter-spacing:0.416000pt;}
.ls24{letter-spacing:0.512000pt;}
.ls4{letter-spacing:0.757333pt;}
.ls2{letter-spacing:0.768000pt;}
.ls9{letter-spacing:0.832000pt;}
.ls15{letter-spacing:0.890667pt;}
.lsc{letter-spacing:0.965333pt;}
.ls27{letter-spacing:1.264000pt;}
.ls25{letter-spacing:1.333333pt;}
.ls26{letter-spacing:1.376000pt;}
.ls10{letter-spacing:5.589333pt;}
.ls11{letter-spacing:6.549333pt;}
.ls13{letter-spacing:10.016000pt;}
.lsf{letter-spacing:22.869333pt;}
.lsb{letter-spacing:23.989333pt;}
.lsd{letter-spacing:24.042667pt;}
.ls12{letter-spacing:24.058933pt;}
.lsa{letter-spacing:99.126667pt;}
.ls7{letter-spacing:99.153333pt;}
.ls8{letter-spacing:99.200000pt;}
.lse{letter-spacing:99.333333pt;}
.ls1{letter-spacing:108.753333pt;}
.ls0{letter-spacing:108.800000pt;}
.ws11{word-spacing:-128.133333pt;}
.wsd{word-spacing:-128.000000pt;}
.ws10{word-spacing:-48.000000pt;}
.wse{word-spacing:-47.999733pt;}
.ws15{word-spacing:-47.853067pt;}
.ws12{word-spacing:-46.679733pt;}
.ws13{word-spacing:-46.530400pt;}
.ws16{word-spacing:-46.002667pt;}
.ws14{word-spacing:-44.599733pt;}
.ws1c{word-spacing:-36.960000pt;}
.ws1b{word-spacing:-36.954400pt;}
.ws1d{word-spacing:-36.885067pt;}
.wsf{word-spacing:-36.549333pt;}
.wsb{word-spacing:-36.511733pt;}
.ws5{word-spacing:-36.416000pt;}
.ws9{word-spacing:-36.378400pt;}
.ws0{word-spacing:-36.352000pt;}
.ws1a{word-spacing:-36.133067pt;}
.ws4{word-spacing:-36.000000pt;}
.ws7{word-spacing:-35.999733pt;}
.ws1{word-spacing:-35.626667pt;}
.ws6{word-spacing:-35.621067pt;}
.ws3{word-spacing:-35.584000pt;}
.ws1e{word-spacing:-35.308533pt;}
.ws17{word-spacing:-35.301333pt;}
.ws8{word-spacing:-35.175200pt;}
.ws2{word-spacing:-35.168000pt;}
.wsa{word-spacing:-35.108533pt;}
.wsc{word-spacing:-34.208000pt;}
.ws19{word-spacing:-34.154400pt;}
.ws1f{word-spacing:0.000000pt;}
.ws18{word-spacing:240.725333pt;}
._c{margin-left:-20.100400pt;}
._b{margin-left:-16.200000pt;}
._e{margin-left:-14.123200pt;}
._8{margin-left:-11.700667pt;}
._22{margin-left:-9.676400pt;}
._21{margin-left:-8.557867pt;}
._7{margin-left:-7.482933pt;}
._5{margin-left:-6.144800pt;}
._1{margin-left:-4.761867pt;}
._6{margin-left:-3.619867pt;}
._2{margin-left:-2.721067pt;}
._4{margin-left:-1.482133pt;}
._0{width:1.700667pt;}
._3{width:3.072400pt;}
._9{width:4.158533pt;}
._d{width:5.685467pt;}
._2a{width:7.040133pt;}
._a{width:8.014400pt;}
._2b{width:9.431733pt;}
._2c{width:10.714533pt;}
._1c{width:13.934133pt;}
._1b{width:14.951067pt;}
._2d{width:16.314000pt;}
._30{width:17.301067pt;}
._28{width:22.233867pt;}
._18{width:23.722133pt;}
._17{width:24.890533pt;}
._25{width:27.210133pt;}
._24{width:28.284400pt;}
._34{width:32.592267pt;}
._26{width:37.802800pt;}
._10{width:45.204400pt;}
._29{width:46.348267pt;}
._16{width:49.182400pt;}
._f{width:50.913467pt;}
._1e{width:54.185200pt;}
._1d{width:55.344133pt;}
._32{width:56.449600pt;}
._31{width:57.431067pt;}
._15{width:60.574400pt;}
._14{width:61.481333pt;}
._23{width:65.868800pt;}
._33{width:70.266533pt;}
._13{width:83.189867pt;}
._12{width:84.469600pt;}
._1a{width:88.678000pt;}
._19{width:89.898667pt;}
._2f{width:126.445200pt;}
._2e{width:127.740267pt;}
._27{width:138.784000pt;}
._20{width:145.346400pt;}
._1f{width:146.606667pt;}
._11{width:168.987867pt;}
.fs7{font-size:112.000000pt;}
.fs5{font-size:128.000000pt;}
.fs6{font-size:128.133333pt;}
.fs9{font-size:172.000000pt;}
.fs8{font-size:172.133333pt;}
.fs2{font-size:196.133333pt;}
.fs4{font-size:216.000000pt;}
.fs3{font-size:216.133333pt;}
.fs0{font-size:340.133333pt;}
.fs1{font-size:340.266667pt;}
.y0{bottom:0.000000pt;}
.y57{bottom:32.233333pt;}
.y63{bottom:55.300000pt;}
.y3c{bottom:57.700000pt;}
.y56{bottom:71.233333pt;}
.y62{bottom:93.300000pt;}
.y55{bottom:109.266667pt;}
.y61{bottom:132.333333pt;}
.y78{bottom:143.200000pt;}
.y54{bottom:147.266667pt;}
.y77{bottom:182.240000pt;}
.y53{bottom:186.293333pt;}
.y1d{bottom:237.093333pt;}
.y22{bottom:261.906667pt;}
.y3b{bottom:278.173333pt;}
.y1c{bottom:323.293333pt;}
.y1b{bottom:381.333333pt;}
.y25{bottom:390.093333pt;}
.y1a{bottom:438.360000pt;}
.y52{bottom:441.533333pt;}
.y51{bottom:479.533333pt;}
.y19{bottom:496.400000pt;}
.y2f{bottom:497.400000pt;}
.y50{bottom:518.560000pt;}
.y2e{bottom:535.400000pt;}
.y18{bottom:553.426667pt;}
.y2d{bottom:574.426667pt;}
.y17{bottom:611.426667pt;}
.y5c{bottom:656.533333pt;}
.y2c{bottom:657.173333pt;}
.y16{bottom:669.466667pt;}
.y15{bottom:726.506667pt;}
.y43{bottom:746.066667pt;}
.y5b{bottom:747.960000pt;}
.y31{bottom:753.600000pt;}
.y14{bottom:784.533333pt;}
.y30{bottom:792.600000pt;}
.y5a{bottom:830.106667pt;}
.y42{bottom:832.000000pt;}
.y13{bottom:837.760000pt;}
.y24{bottom:884.666667pt;}
.y41{bottom:905.240000pt;}
.y59{bottom:905.600000pt;}
.y12{bottom:933.333333pt;}
.y11{bottom:972.360000pt;}
.y58{bottom:991.093333pt;}
.y10{bottom:1029.400000pt;}
.y75{bottom:1031.426667pt;}
.yf{bottom:1068.400000pt;}
.y2b{bottom:1111.840000pt;}
.ye{bottom:1125.440000pt;}
.y2a{bottom:1150.866667pt;}
.y40{bottom:1154.240000pt;}
.yd{bottom:1164.466667pt;}
.y4f{bottom:1177.600000pt;}
.y4e{bottom:1216.600000pt;}
.yc{bottom:1221.506667pt;}
.y21{bottom:1231.400000pt;}
.y20{bottom:1270.426667pt;}
.yb{bottom:1279.506667pt;}
.ya{bottom:1336.533333pt;}
.y27{bottom:1339.200000pt;}
.y9{bottom:1375.573333pt;}
.y26{bottom:1378.200000pt;}
.y8{bottom:1428.800000pt;}
.y74{bottom:1434.800000pt;}
.y29{bottom:1456.333333pt;}
.y73{bottom:1473.800000pt;}
.y28{bottom:1495.333333pt;}
.y46{bottom:1505.506667pt;}
.y5d{bottom:1548.960000pt;}
.y71{bottom:1565.040000pt;}
.y47{bottom:1567.373333pt;}
.y70{bottom:1603.066667pt;}
.y23{bottom:1608.333333pt;}
.y45{bottom:1617.040000pt;}
.y6f{bottom:1641.066667pt;}
.y44{bottom:1669.066667pt;}
.y76{bottom:1672.800000pt;}
.y6e{bottom:1680.093333pt;}
.y6{bottom:1753.866667pt;}
.y72{bottom:1791.093333pt;}
.y3f{bottom:1832.800000pt;}
.y33{bottom:1860.840000pt;}
.y6d{bottom:1870.800000pt;}
.y3e{bottom:1889.840000pt;}
.y32{bottom:1899.840000pt;}
.y60{bottom:1937.173333pt;}
.y4b{bottom:1939.093333pt;}
.y6c{bottom:1944.040000pt;}
.y3d{bottom:1947.866667pt;}
.y6b{bottom:1983.066667pt;}
.y37{bottom:2029.426667pt;}
.y4c{bottom:2036.933333pt;}
.y6a{bottom:2065.840000pt;}
.y38{bottom:2102.093333pt;}
.y69{bottom:2104.866667pt;}
.y64{bottom:2117.000000pt;}
.y3a{bottom:2147.866667pt;}
.y68{bottom:2166.200000pt;}
.y5f{bottom:2180.600000pt;}
.y39{bottom:2186.906667pt;}
.y67{bottom:2205.240000pt;}
.y5e{bottom:2229.133333pt;}
.y36{bottom:2263.133333pt;}
.y66{bottom:2280.000000pt;}
.y4a{bottom:2300.693333pt;}
.y35{bottom:2302.133333pt;}
.y65{bottom:2319.040000pt;}
.y49{bottom:2403.533333pt;}
.y34{bottom:2412.506667pt;}
.y4d{bottom:2428.573333pt;}
.y48{bottom:2455.573333pt;}
.y5{bottom:2555.426667pt;}
.y7{bottom:2555.466667pt;}
.y1e{bottom:2638.626667pt;}
.y1f{bottom:2640.173333pt;}
.y4{bottom:2678.133333pt;}
.y3{bottom:2737.160000pt;}
.y2{bottom:2807.760000pt;}
.y1{bottom:2909.800000pt;}
.h6{height:93.562500pt;}
.h7{height:93.659961pt;}
.h8{height:96.250000pt;}
.h9{height:96.350260pt;}
.hc{height:129.335938pt;}
.hb{height:129.436198pt;}
.ha{height:147.483073pt;}
.h5{height:162.421875pt;}
.h4{height:162.522135pt;}
.h3{height:200.825977pt;}
.h1{height:348.271289pt;}
.h2{height:348.407812pt;}
.h0{height:3024.000000pt;}
.w2{width:5290.999921pt;}
.w0{width:5291.000000pt;}
.w1{width:5291.333333pt;}
.x0{left:0.000000pt;}
.x27{left:55.033254pt;}
.x29{left:56.366588pt;}
.x28{left:60.699921pt;}
.x2a{left:62.299921pt;}
.x13{left:74.666588pt;}
.x11{left:83.899921pt;}
.x16{left:86.999921pt;}
.x10{left:90.499921pt;}
.x15{left:93.066588pt;}
.x19{left:96.199921pt;}
.x18{left:98.766588pt;}
.x14{left:103.166588pt;}
.x12{left:119.899921pt;}
.x17{left:122.999921pt;}
.x1a{left:132.199921pt;}
.x1b{left:139.666588pt;}
.x31{left:333.226588pt;}
.x32{left:334.733254pt;}
.x6{left:565.799921pt;}
.x5{left:598.333254pt;}
.x21{left:660.799921pt;}
.x33{left:692.293254pt;}
.x2b{left:862.039921pt;}
.x2c{left:923.693254pt;}
.x20{left:1053.439921pt;}
.x35{left:1129.226588pt;}
.x1{left:1452.706588pt;}
.x34{left:1626.533254pt;}
.x2e{left:1629.173254pt;}
.x1c{left:1652.173254pt;}
.x3{left:1683.466588pt;}
.x2f{left:1684.666588pt;}
.x22{left:1779.173254pt;}
.x2{left:1982.773254pt;}
.xf{left:2144.333254pt;}
.x23{left:2221.399921pt;}
.x24{left:2229.173254pt;}
.x4{left:2311.666588pt;}
.x2d{left:2727.506588pt;}
.x1e{left:3047.599921pt;}
.x41{left:3062.893254pt;}
.x1d{left:3109.999921pt;}
.x25{left:3119.599921pt;}
.x3f{left:3120.773254pt;}
.x1f{left:3137.999921pt;}
.x40{left:3156.773254pt;}
.x9{left:3811.866588pt;}
.x42{left:3823.133254pt;}
.xc{left:3828.599921pt;}
.xa{left:3850.266588pt;}
.x3d{left:3868.133254pt;}
.x36{left:3875.626588pt;}
.x3b{left:3886.799921pt;}
.x26{left:3898.866588pt;}
.x3c{left:3970.066588pt;}
.x3e{left:3972.733254pt;}
.x37{left:3975.226588pt;}
.x39{left:3976.293254pt;}
.x38{left:4011.226588pt;}
.x3a{left:4012.293254pt;}
.x8{left:4184.066588pt;}
.xd{left:4239.133254pt;}
.x7{left:4304.893254pt;}
.xb{left:4353.493254pt;}
.x30{left:4542.799921pt;}
.xe{left:4632.066588pt;}
}




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