
    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_34dadbe2690fda4546297268.woff')format("woff");}.ff1{font-family:ff1;line-height:1.014160;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_aa85de96f00840fdf29977bc.woff')format("woff");}.ff2{font-family:ff2;line-height:1.014160;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_e65e86dc2b09d4feb548980d.woff')format("woff");}.ff3{font-family:ff3;line-height:1.149414;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_dcdae2d5eac153be6fe2510e.woff')format("woff");}.ff4{font-family:ff4;line-height:1.149414;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_defca4745d71b77212ec84c0.woff')format("woff");}.ff5{font-family:ff5;line-height:1.003906;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_84aa559bdd3eca7a9f77b31a.woff')format("woff");}.ff6{font-family:ff6;line-height:1.006836;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_f7cd03b6d76dfa7d62e54f52.woff')format("woff");}.ff7{font-family:ff7;line-height:1.006836;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_095dd3d6dd8513d1603ef853.woff')format("woff");}.ff8{font-family:ff8;line-height:1.057617;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_7b46d86be91fef631bf1ae33.woff')format("woff");}.ff9{font-family:ff9;line-height:1.021484;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:ffa;src:url('chunks/assets/font_5d036d2eec89fc79e422f2e4.woff')format("woff");}.ffa{font-family:ffa;line-height:1.021484;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:ffb;src:url('chunks/assets/font_d18861fe735072766e52e0f0.woff')format("woff");}.ffb{font-family:ffb;line-height:0.739746;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:ffc;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ffc{font-family:ffc;line-height:0.739746;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;}
.ls8{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.110400px;}
.lsb{letter-spacing:-0.072000px;}
.ls1{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.072000px;}
.lsa{letter-spacing:0.075600px;}
.ls9{letter-spacing:0.288000px;}
.ls4{letter-spacing:0.720000px;}
.ls0{letter-spacing:0.840000px;}
.ls2{letter-spacing:14.400000px;}
.ls7{letter-spacing:33.984000px;}
.ls5{letter-spacing:91.386720px;}
.ls3{letter-spacing:114.624000px;}
.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;}
}
.ws3{word-spacing:-18.288000px;}
.ws0{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.928000px;}
.ws5{word-spacing:-15.015600px;}
.ws4{word-spacing:-14.940000px;}
.ws2{word-spacing:-14.829600px;}
.ws1{word-spacing:0.000000px;}
._38{margin-left:-6.396000px;}
._23{margin-left:-5.292480px;}
._2{margin-left:-3.732000px;}
._1{margin-left:-2.664000px;}
._0{margin-left:-1.235760px;}
._3{width:1.776000px;}
._7{width:3.203280px;}
._6{width:4.752000px;}
._19{width:6.264000px;}
._17{width:7.488000px;}
._18{width:9.335520px;}
._10{width:10.512000px;}
._f{width:12.216000px;}
._21{width:13.692000px;}
._1e{width:15.624000px;}
._1f{width:16.716000px;}
._1c{width:19.296000px;}
._1d{width:20.520000px;}
._12{width:21.767520px;}
._11{width:23.040000px;}
._45{width:24.060240px;}
._15{width:25.067760px;}
._14{width:26.496000px;}
._2c{width:27.876000px;}
._2d{width:29.448000px;}
._c{width:31.032000px;}
._24{width:32.472000px;}
._29{width:33.503520px;}
._9{width:34.560000px;}
._8{width:35.568000px;}
._26{width:37.236000px;}
._25{width:38.376000px;}
._13{width:39.456000px;}
._a{width:40.680000px;}
._b{width:41.772000px;}
._31{width:42.840000px;}
._37{width:43.862640px;}
._3c{width:44.943840px;}
._2a{width:46.512000px;}
._33{width:47.736000px;}
._1b{width:48.839520px;}
._1a{width:49.968000px;}
._28{width:51.840000px;}
._34{width:53.183520px;}
._27{width:54.648000px;}
._4{width:55.656000px;}
._5{width:57.179760px;}
._16{width:58.680000px;}
._32{width:60.336000px;}
._42{width:61.433760px;}
._2e{width:62.451120px;}
._22{width:64.235760px;}
._3f{width:65.652240px;}
._2f{width:66.960000px;}
._30{width:68.340000px;}
._41{width:71.208000px;}
._40{width:72.299760px;}
._43{width:73.512000px;}
._44{width:74.664000px;}
._46{width:76.224000px;}
._3d{width:77.340000px;}
._53{width:79.128000px;}
._35{width:80.568000px;}
._36{width:81.936000px;}
._d{width:85.032000px;}
._e{width:87.000000px;}
._49{width:90.000000px;}
._4a{width:91.331760px;}
._48{width:96.552000px;}
._47{width:97.560000px;}
._39{width:107.208000px;}
._3a{width:108.720000px;}
._2b{width:109.728000px;}
._3b{width:111.035760px;}
._4f{width:112.248000px;}
._4b{width:116.928000px;}
._4c{width:118.152000px;}
._50{width:126.660000px;}
._20{width:141.923760px;}
._3e{width:143.363760px;}
._52{width:187.488000px;}
._4d{width:203.063520px;}
._51{width:221.760000px;}
._4e{width:253.656000px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y50{bottom:5.394000px;}
.y42{bottom:5.400000px;}
.y45{bottom:5.430000px;}
.y3f{bottom:17.460000px;}
.y4a{bottom:17.640000px;}
.y41{bottom:29.700000px;}
.y3e{bottom:41.760000px;}
.y40{bottom:54.000000px;}
.y3{bottom:58.356000px;}
.y2{bottom:78.516000px;}
.y52{bottom:97.596000px;}
.y6f{bottom:107.496000px;}
.y3c{bottom:113.436000px;}
.y1f{bottom:120.096000px;}
.y51{bottom:122.616000px;}
.y6e{bottom:131.796000px;}
.y3b{bottom:137.736000px;}
.y1e{bottom:144.396000px;}
.y4f{bottom:147.636000px;}
.y6d{bottom:156.090000px;}
.y3a{bottom:162.030000px;}
.y1d{bottom:168.690000px;}
.y4e{bottom:172.650000px;}
.y6c{bottom:180.390000px;}
.y39{bottom:186.330000px;}
.y1c{bottom:192.990000px;}
.y4d{bottom:197.715000px;}
.y6b{bottom:204.555000px;}
.y38{bottom:210.675000px;}
.y1b{bottom:217.335000px;}
.y4c{bottom:222.735000px;}
.y6a{bottom:228.855000px;}
.y37{bottom:234.975000px;}
.y1a{bottom:241.635000px;}
.y4b{bottom:247.755000px;}
.y69{bottom:253.155000px;}
.y36{bottom:259.275000px;}
.y19{bottom:265.935000px;}
.y49{bottom:272.775000px;}
.y68{bottom:277.455000px;}
.y35{bottom:283.575000px;}
.y18{bottom:290.055000px;}
.y67{bottom:301.755000px;}
.y34{bottom:307.695000px;}
.y17{bottom:314.355000px;}
.y48{bottom:322.095000px;}
.y66{bottom:326.055000px;}
.y33{bottom:331.995000px;}
.y16{bottom:338.655000px;}
.y47{bottom:347.115000px;}
.y65{bottom:350.355000px;}
.y32{bottom:356.295000px;}
.y15{bottom:362.955000px;}
.y46{bottom:372.315000px;}
.y64{bottom:374.655000px;}
.y31{bottom:380.595000px;}
.y14{bottom:387.255000px;}
.y44{bottom:397.335000px;}
.y63{bottom:398.985000px;}
.y30{bottom:404.925000px;}
.y13{bottom:411.585000px;}
.y43{bottom:422.385000px;}
.y62{bottom:423.285000px;}
.y2f{bottom:429.225000px;}
.y12{bottom:435.885000px;}
.y3d{bottom:447.405000px;}
.y61{bottom:447.585000px;}
.y72{bottom:447.765000px;}
.y2e{bottom:453.525000px;}
.y11{bottom:460.185000px;}
.y60{bottom:471.705000px;}
.y2d{bottom:477.825000px;}
.y10{bottom:484.485000px;}
.y5f{bottom:496.005000px;}
.y71{bottom:496.185000px;}
.y2c{bottom:502.125000px;}
.yf{bottom:510.585000px;}
.y5e{bottom:520.305000px;}
.y2b{bottom:526.425000px;}
.ye{bottom:534.885000px;}
.y70{bottom:538.485000px;}
.y5d{bottom:544.605000px;}
.y2a{bottom:550.725000px;}
.yd{bottom:564.045000px;}
.y5c{bottom:568.905000px;}
.y29{bottom:574.845000px;}
.yc{bottom:588.345000px;}
.y5b{bottom:593.205000px;}
.y28{bottom:599.190000px;}
.yb{bottom:612.690000px;}
.y5a{bottom:617.550000px;}
.y27{bottom:623.490000px;}
.ya{bottom:636.990000px;}
.y59{bottom:637.170000px;}
.y26{bottom:647.790000px;}
.y9{bottom:661.290000px;}
.y58{bottom:662.190000px;}
.y25{bottom:672.090000px;}
.y8{bottom:685.590000px;}
.y57{bottom:687.210000px;}
.y24{bottom:696.390000px;}
.y56{bottom:712.230000px;}
.y7{bottom:714.750000px;}
.y23{bottom:720.690000px;}
.y55{bottom:737.250000px;}
.y6{bottom:739.050000px;}
.y22{bottom:744.990000px;}
.y54{bottom:762.270000px;}
.y5{bottom:763.350000px;}
.y21{bottom:769.290000px;}
.y53{bottom:787.470000px;}
.y4{bottom:788.550000px;}
.y20{bottom:793.590000px;}
.y1{bottom:820.080000px;}
.hc{height:24.120000px;}
.hb{height:24.156000px;}
.ha{height:24.300000px;}
.hd{height:48.600000px;}
.h8{height:52.558594px;}
.h2{height:52.769531px;}
.h6{height:53.015625px;}
.h7{height:55.863281px;}
.h5{height:62.028281px;}
.h4{height:65.884219px;}
.h3{height:67.824844px;}
.h9{height:72.720000px;}
.h0{height:892.980000px;}
.h1{height:893.250000px;}
.w4{width:99.576000px;}
.w6{width:111.816000px;}
.w5{width:119.736000px;}
.w3{width:165.090000px;}
.w1{width:629.250000px;}
.w2{width:629.279991px;}
.w0{width:629.280000px;}
.x0{left:0.000000px;}
.x14{left:7.740000px;}
.x3{left:64.835991px;}
.x12{left:66.455991px;}
.xb{left:70.955991px;}
.x11{left:74.915991px;}
.x13{left:75.995991px;}
.x5{left:79.595991px;}
.xf{left:83.735991px;}
.x6{left:92.195991px;}
.xd{left:100.655991px;}
.x10{left:118.835991px;}
.xa{left:131.615991px;}
.x9{left:213.374991px;}
.x7{left:223.994991px;}
.x15{left:231.375000px;}
.x18{left:237.854991px;}
.x4{left:262.154991px;}
.x19{left:283.214991px;}
.xc{left:293.834991px;}
.x2{left:302.144991px;}
.x8{left:314.744991px;}
.x16{left:331.665000px;}
.x1{left:373.604991px;}
.xe{left:388.544991px;}
.x17{left:452.130000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.098133pt;}
.lsb{letter-spacing:-0.064000pt;}
.ls1{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.064000pt;}
.lsa{letter-spacing:0.067200pt;}
.ls9{letter-spacing:0.256000pt;}
.ls4{letter-spacing:0.640000pt;}
.ls0{letter-spacing:0.746667pt;}
.ls2{letter-spacing:12.800000pt;}
.ls7{letter-spacing:30.208000pt;}
.ls5{letter-spacing:81.232640pt;}
.ls3{letter-spacing:101.888000pt;}
.ws3{word-spacing:-16.256000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.936000pt;}
.ws5{word-spacing:-13.347200pt;}
.ws4{word-spacing:-13.280000pt;}
.ws2{word-spacing:-13.181867pt;}
.ws1{word-spacing:0.000000pt;}
._38{margin-left:-5.685333pt;}
._23{margin-left:-4.704427pt;}
._2{margin-left:-3.317333pt;}
._1{margin-left:-2.368000pt;}
._0{margin-left:-1.098453pt;}
._3{width:1.578667pt;}
._7{width:2.847360pt;}
._6{width:4.224000pt;}
._19{width:5.568000pt;}
._17{width:6.656000pt;}
._18{width:8.298240pt;}
._10{width:9.344000pt;}
._f{width:10.858667pt;}
._21{width:12.170667pt;}
._1e{width:13.888000pt;}
._1f{width:14.858667pt;}
._1c{width:17.152000pt;}
._1d{width:18.240000pt;}
._12{width:19.348907pt;}
._11{width:20.480000pt;}
._45{width:21.386880pt;}
._15{width:22.282453pt;}
._14{width:23.552000pt;}
._2c{width:24.778667pt;}
._2d{width:26.176000pt;}
._c{width:27.584000pt;}
._24{width:28.864000pt;}
._29{width:29.780907pt;}
._9{width:30.720000pt;}
._8{width:31.616000pt;}
._26{width:33.098667pt;}
._25{width:34.112000pt;}
._13{width:35.072000pt;}
._a{width:36.160000pt;}
._b{width:37.130667pt;}
._31{width:38.080000pt;}
._37{width:38.989013pt;}
._3c{width:39.950080pt;}
._2a{width:41.344000pt;}
._33{width:42.432000pt;}
._1b{width:43.412907pt;}
._1a{width:44.416000pt;}
._28{width:46.080000pt;}
._34{width:47.274240pt;}
._27{width:48.576000pt;}
._4{width:49.472000pt;}
._5{width:50.826453pt;}
._16{width:52.160000pt;}
._32{width:53.632000pt;}
._42{width:54.607787pt;}
._2e{width:55.512107pt;}
._22{width:57.098453pt;}
._3f{width:58.357547pt;}
._2f{width:59.520000pt;}
._30{width:60.746667pt;}
._41{width:63.296000pt;}
._40{width:64.266453pt;}
._43{width:65.344000pt;}
._44{width:66.368000pt;}
._46{width:67.754667pt;}
._3d{width:68.746667pt;}
._53{width:70.336000pt;}
._35{width:71.616000pt;}
._36{width:72.832000pt;}
._d{width:75.584000pt;}
._e{width:77.333333pt;}
._49{width:80.000000pt;}
._4a{width:81.183787pt;}
._48{width:85.824000pt;}
._47{width:86.720000pt;}
._39{width:95.296000pt;}
._3a{width:96.640000pt;}
._2b{width:97.536000pt;}
._3b{width:98.698453pt;}
._4f{width:99.776000pt;}
._4b{width:103.936000pt;}
._4c{width:105.024000pt;}
._50{width:112.586667pt;}
._20{width:126.154453pt;}
._3e{width:127.434453pt;}
._52{width:166.656000pt;}
._4d{width:180.500907pt;}
._51{width:197.120000pt;}
._4e{width:225.472000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y50{bottom:4.794667pt;}
.y42{bottom:4.800000pt;}
.y45{bottom:4.826667pt;}
.y3f{bottom:15.520000pt;}
.y4a{bottom:15.680000pt;}
.y41{bottom:26.400000pt;}
.y3e{bottom:37.120000pt;}
.y40{bottom:48.000000pt;}
.y3{bottom:51.872000pt;}
.y2{bottom:69.792000pt;}
.y52{bottom:86.752000pt;}
.y6f{bottom:95.552000pt;}
.y3c{bottom:100.832000pt;}
.y1f{bottom:106.752000pt;}
.y51{bottom:108.992000pt;}
.y6e{bottom:117.152000pt;}
.y3b{bottom:122.432000pt;}
.y1e{bottom:128.352000pt;}
.y4f{bottom:131.232000pt;}
.y6d{bottom:138.746667pt;}
.y3a{bottom:144.026667pt;}
.y1d{bottom:149.946667pt;}
.y4e{bottom:153.466667pt;}
.y6c{bottom:160.346667pt;}
.y39{bottom:165.626667pt;}
.y1c{bottom:171.546667pt;}
.y4d{bottom:175.746667pt;}
.y6b{bottom:181.826667pt;}
.y38{bottom:187.266667pt;}
.y1b{bottom:193.186667pt;}
.y4c{bottom:197.986667pt;}
.y6a{bottom:203.426667pt;}
.y37{bottom:208.866667pt;}
.y1a{bottom:214.786667pt;}
.y4b{bottom:220.226667pt;}
.y69{bottom:225.026667pt;}
.y36{bottom:230.466667pt;}
.y19{bottom:236.386667pt;}
.y49{bottom:242.466667pt;}
.y68{bottom:246.626667pt;}
.y35{bottom:252.066667pt;}
.y18{bottom:257.826667pt;}
.y67{bottom:268.226667pt;}
.y34{bottom:273.506667pt;}
.y17{bottom:279.426667pt;}
.y48{bottom:286.306667pt;}
.y66{bottom:289.826667pt;}
.y33{bottom:295.106667pt;}
.y16{bottom:301.026667pt;}
.y47{bottom:308.546667pt;}
.y65{bottom:311.426667pt;}
.y32{bottom:316.706667pt;}
.y15{bottom:322.626667pt;}
.y46{bottom:330.946667pt;}
.y64{bottom:333.026667pt;}
.y31{bottom:338.306667pt;}
.y14{bottom:344.226667pt;}
.y44{bottom:353.186667pt;}
.y63{bottom:354.653333pt;}
.y30{bottom:359.933333pt;}
.y13{bottom:365.853333pt;}
.y43{bottom:375.453333pt;}
.y62{bottom:376.253333pt;}
.y2f{bottom:381.533333pt;}
.y12{bottom:387.453333pt;}
.y3d{bottom:397.693333pt;}
.y61{bottom:397.853333pt;}
.y72{bottom:398.013333pt;}
.y2e{bottom:403.133333pt;}
.y11{bottom:409.053333pt;}
.y60{bottom:419.293333pt;}
.y2d{bottom:424.733333pt;}
.y10{bottom:430.653333pt;}
.y5f{bottom:440.893333pt;}
.y71{bottom:441.053333pt;}
.y2c{bottom:446.333333pt;}
.yf{bottom:453.853333pt;}
.y5e{bottom:462.493333pt;}
.y2b{bottom:467.933333pt;}
.ye{bottom:475.453333pt;}
.y70{bottom:478.653333pt;}
.y5d{bottom:484.093333pt;}
.y2a{bottom:489.533333pt;}
.yd{bottom:501.373333pt;}
.y5c{bottom:505.693333pt;}
.y29{bottom:510.973333pt;}
.yc{bottom:522.973333pt;}
.y5b{bottom:527.293333pt;}
.y28{bottom:532.613333pt;}
.yb{bottom:544.613333pt;}
.y5a{bottom:548.933333pt;}
.y27{bottom:554.213333pt;}
.ya{bottom:566.213333pt;}
.y59{bottom:566.373333pt;}
.y26{bottom:575.813333pt;}
.y9{bottom:587.813333pt;}
.y58{bottom:588.613333pt;}
.y25{bottom:597.413333pt;}
.y8{bottom:609.413333pt;}
.y57{bottom:610.853333pt;}
.y24{bottom:619.013333pt;}
.y56{bottom:633.093333pt;}
.y7{bottom:635.333333pt;}
.y23{bottom:640.613333pt;}
.y55{bottom:655.333333pt;}
.y6{bottom:656.933333pt;}
.y22{bottom:662.213333pt;}
.y54{bottom:677.573333pt;}
.y5{bottom:678.533333pt;}
.y21{bottom:683.813333pt;}
.y53{bottom:699.973333pt;}
.y4{bottom:700.933333pt;}
.y20{bottom:705.413333pt;}
.y1{bottom:728.960000pt;}
.hc{height:21.440000pt;}
.hb{height:21.472000pt;}
.ha{height:21.600000pt;}
.hd{height:43.200000pt;}
.h8{height:46.718750pt;}
.h2{height:46.906250pt;}
.h6{height:47.125000pt;}
.h7{height:49.656250pt;}
.h5{height:55.136250pt;}
.h4{height:58.563750pt;}
.h3{height:60.288750pt;}
.h9{height:64.640000pt;}
.h0{height:793.760000pt;}
.h1{height:794.000000pt;}
.w4{width:88.512000pt;}
.w6{width:99.392000pt;}
.w5{width:106.432000pt;}
.w3{width:146.746667pt;}
.w1{width:559.333333pt;}
.w2{width:559.359992pt;}
.w0{width:559.360000pt;}
.x0{left:0.000000pt;}
.x14{left:6.880000pt;}
.x3{left:57.631992pt;}
.x12{left:59.071992pt;}
.xb{left:63.071992pt;}
.x11{left:66.591992pt;}
.x13{left:67.551992pt;}
.x5{left:70.751992pt;}
.xf{left:74.431992pt;}
.x6{left:81.951992pt;}
.xd{left:89.471992pt;}
.x10{left:105.631992pt;}
.xa{left:116.991992pt;}
.x9{left:189.666658pt;}
.x7{left:199.106658pt;}
.x15{left:205.666667pt;}
.x18{left:211.426658pt;}
.x4{left:233.026658pt;}
.x19{left:251.746658pt;}
.xc{left:261.186658pt;}
.x2{left:268.573325pt;}
.x8{left:279.773325pt;}
.x16{left:294.813333pt;}
.x1{left:332.093325pt;}
.xe{left:345.373325pt;}
.x17{left:401.893333pt;}
}




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