
    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_d5cb7e925bf70ee39a305a73.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.008789;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_4645ef52a9652f3bce7dda00.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.012207;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_9cf0c6926da81dff341adcb9.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_ee9cf5f6506d66e7e8a2c7e5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.402354;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_ff3c12d8478fc6e1462859c6.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_2eda51a463ba22458ab3020b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_79d6795d114b1338cded8dba.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.936035;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_83d291300efc1b3c9fa2e63a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.974121;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_fd2c2def7b7401d352f705a1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.764160;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_8f351f9548648c18d41584fd.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.762207;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_63ff95cd3b93dea1803fa0e2.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.932617;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_f17e1d018b153b76bd89cd2f.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.005859;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:ffd;src:url('chunks/assets/font_733810c9ed1b288e8aa72aba.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.690918;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-53.280000px;}
.v5{vertical-align:-50.400000px;}
.v8{vertical-align:-41.040000px;}
.va{vertical-align:-29.520000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:32.400000px;}
.v3{vertical-align:36.000000px;}
.v9{vertical-align:41.040000px;}
.v6{vertical-align:50.400000px;}
.v1{vertical-align:57.600000px;}
.v4{vertical-align:64.800000px;}
.ls54{letter-spacing:-11.880000px;}
.ls37{letter-spacing:-4.836000px;}
.ls4e{letter-spacing:-4.524000px;}
.ls4b{letter-spacing:-3.804000px;}
.ls43{letter-spacing:-3.252000px;}
.ls44{letter-spacing:-2.940000px;}
.ls3b{letter-spacing:-2.160000px;}
.ls5f{letter-spacing:-1.560000px;}
.ls56{letter-spacing:-0.840000px;}
.ls67{letter-spacing:-0.720000px;}
.ls3f{letter-spacing:-0.504000px;}
.ls42{letter-spacing:-0.450000px;}
.ls48{letter-spacing:-0.432000px;}
.ls3d{letter-spacing:-0.360000px;}
.ls57{letter-spacing:-0.353400px;}
.ls51{letter-spacing:-0.340800px;}
.ls53{letter-spacing:-0.309000px;}
.ls55{letter-spacing:-0.289200px;}
.ls47{letter-spacing:-0.288000px;}
.ls4a{letter-spacing:-0.270000px;}
.ls33{letter-spacing:-0.256800px;}
.ls3a{letter-spacing:-0.216000px;}
.ls5b{letter-spacing:-0.205800px;}
.ls50{letter-spacing:-0.186600px;}
.ls65{letter-spacing:-0.184800px;}
.ls46{letter-spacing:-0.144000px;}
.ls41{letter-spacing:-0.142800px;}
.ls45{letter-spacing:-0.122400px;}
.ls52{letter-spacing:-0.103200px;}
.ls36{letter-spacing:-0.090000px;}
.ls3c{letter-spacing:-0.072000px;}
.ls34{letter-spacing:-0.025920px;}
.ls31{letter-spacing:0.000000px;}
.ls5a{letter-spacing:0.025920px;}
.ls2f{letter-spacing:0.051120px;}
.ls66{letter-spacing:0.052560px;}
.ls23{letter-spacing:0.061200px;}
.ls8{letter-spacing:0.072000px;}
.ls1d{letter-spacing:0.080640px;}
.ls68{letter-spacing:0.106800px;}
.ls4f{letter-spacing:0.109200px;}
.ls1{letter-spacing:0.122400px;}
.ls16{letter-spacing:0.123840px;}
.ls39{letter-spacing:0.144000px;}
.ls32{letter-spacing:0.160800px;}
.ls4d{letter-spacing:0.263400px;}
.ls64{letter-spacing:0.267600px;}
.ls27{letter-spacing:0.267840px;}
.ls3e{letter-spacing:0.288000px;}
.ls15{letter-spacing:0.322560px;}
.ls28{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.364320px;}
.ls14{letter-spacing:0.366600px;}
.lsf{letter-spacing:0.403200px;}
.ls58{letter-spacing:0.411000px;}
.ls63{letter-spacing:0.450000px;}
.ls5d{letter-spacing:0.514200px;}
.ls62{letter-spacing:0.533400px;}
.ls49{letter-spacing:0.597600px;}
.ls5c{letter-spacing:0.618000px;}
.ls38{letter-spacing:0.630000px;}
.ls12{letter-spacing:0.658800px;}
.ls59{letter-spacing:0.660000px;}
.ls40{letter-spacing:0.720000px;}
.ls2d{letter-spacing:0.740160px;}
.ls35{letter-spacing:0.840000px;}
.ls17{letter-spacing:0.843840px;}
.ls4c{letter-spacing:1.068000px;}
.ls7{letter-spacing:1.080000px;}
.ls4{letter-spacing:1.141200px;}
.ls1a{letter-spacing:1.378800px;}
.ls6{letter-spacing:1.800000px;}
.ls20{letter-spacing:2.098800px;}
.ls11{letter-spacing:2.818800px;}
.ls1c{letter-spacing:3.538800px;}
.ls1b{letter-spacing:4.258800px;}
.lsb{letter-spacing:4.680000px;}
.ls2b{letter-spacing:6.480000px;}
.lsc{letter-spacing:6.840000px;}
.ls0{letter-spacing:15.541200px;}
.ls10{letter-spacing:15.778800px;}
.lsa{letter-spacing:19.080000px;}
.ls18{letter-spacing:20.098800px;}
.ls19{letter-spacing:20.818800px;}
.lse{letter-spacing:25.200000px;}
.ls13{letter-spacing:27.298800px;}
.ls2c{letter-spacing:28.738800px;}
.ls9{letter-spacing:30.600000px;}
.ls61{letter-spacing:38.100000px;}
.ls1f{letter-spacing:38.818800px;}
.ls60{letter-spacing:38.820000px;}
.ls69{letter-spacing:39.540000px;}
.ls5e{letter-spacing:41.700000px;}
.ls1e{letter-spacing:48.898800px;}
.ls2e{letter-spacing:73.378800px;}
.ls2{letter-spacing:83.941200px;}
.lsd{letter-spacing:101.844000px;}
.ls5{letter-spacing:140.400000px;}
.ls30{letter-spacing:155.458800px;}
.ls26{letter-spacing:234.361200px;}
.ls25{letter-spacing:263.821200px;}
.ls24{letter-spacing:263.881200px;}
.ls29{letter-spacing:532.261200px;}
.ls2a{letter-spacing:532.321200px;}
.ls22{letter-spacing:587.281200px;}
.ls21{letter-spacing:616.801200px;}
.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;}
}
.ws48{word-spacing:-112.320000px;}
.ws52{word-spacing:-95.760000px;}
.wse{word-spacing:-88.200000px;}
.ws1b{word-spacing:-72.000000px;}
.ws10{word-spacing:-53.280000px;}
.ws17{word-spacing:-53.208000px;}
.ws11{word-spacing:-53.064000px;}
.wsf{word-spacing:-52.920000px;}
.ws14{word-spacing:-52.848000px;}
.ws12{word-spacing:-52.704000px;}
.ws16{word-spacing:-52.560000px;}
.ws13{word-spacing:-50.760000px;}
.ws7{word-spacing:-47.938800px;}
.wsc{word-spacing:-47.728800px;}
.ws3{word-spacing:-47.458800px;}
.ws0{word-spacing:-47.259600px;}
.ws2{word-spacing:-47.221200px;}
.ws8{word-spacing:-47.098800px;}
.ws6{word-spacing:-47.072880px;}
.ws9{word-spacing:-47.008800px;}
.ws1{word-spacing:-46.842000px;}
.wsa{word-spacing:-42.262800px;}
.ws30{word-spacing:-42.169200px;}
.ws46{word-spacing:-41.719200px;}
.ws2b{word-spacing:-41.698800px;}
.ws4a{word-spacing:-41.634600px;}
.ws47{word-spacing:-41.615400px;}
.ws4b{word-spacing:-41.551200px;}
.ws43{word-spacing:-41.512200px;}
.ws39{word-spacing:-41.467800px;}
.ws3e{word-spacing:-41.461200px;}
.ws34{word-spacing:-41.364600px;}
.ws38{word-spacing:-41.210400px;}
.ws44{word-spacing:-41.127120px;}
.ws2d{word-spacing:-41.101200px;}
.ws3c{word-spacing:-40.998000px;}
.ws2c{word-spacing:-40.978800px;}
.ws3a{word-spacing:-40.914600px;}
.ws45{word-spacing:-40.895400px;}
.ws2e{word-spacing:-40.831200px;}
.ws40{word-spacing:-40.812000px;}
.ws3d{word-spacing:-40.792200px;}
.ws3b{word-spacing:-40.760400px;}
.ws42{word-spacing:-40.747800px;}
.ws41{word-spacing:-40.261200px;}
.ws49{word-spacing:-39.541200px;}
.ws32{word-spacing:-37.913760px;}
.ws2f{word-spacing:-37.297200px;}
.ws35{word-spacing:-36.577200px;}
.ws15{word-spacing:-35.280000px;}
.ws27{word-spacing:-35.136000px;}
.ws28{word-spacing:-34.992000px;}
.ws29{word-spacing:-34.848000px;}
.ws51{word-spacing:-34.560000px;}
.ws5{word-spacing:-31.763520px;}
.ws4{word-spacing:-31.399200px;}
.ws21{word-spacing:-29.581200px;}
.ws53{word-spacing:-29.565600px;}
.ws4f{word-spacing:-29.511360px;}
.ws4c{word-spacing:-29.458800px;}
.ws20{word-spacing:-29.316000px;}
.ws4e{word-spacing:-29.274000px;}
.ws3f{word-spacing:-29.221200px;}
.ws22{word-spacing:-29.008800px;}
.ws2a{word-spacing:-27.518400px;}
.ws50{word-spacing:-27.174240px;}
.ws36{word-spacing:-26.820000px;}
.ws37{word-spacing:-26.244000px;}
.ws23{word-spacing:-26.206800px;}
.ws26{word-spacing:-23.338800px;}
.ws24{word-spacing:-20.521200px;}
.ws4d{word-spacing:-19.580400px;}
.ws1f{word-spacing:-18.360000px;}
.ws1c{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.997120px;}
.ws18{word-spacing:-17.640000px;}
.ws1d{word-spacing:-17.568000px;}
.ws19{word-spacing:-17.424000px;}
.wsd{word-spacing:-17.277120px;}
.ws1e{word-spacing:-17.136000px;}
.ws33{word-spacing:-15.122880px;}
.ws31{word-spacing:-14.402880px;}
.ws25{word-spacing:-8.066880px;}
.ws54{word-spacing:0.000000px;}
.ws1a{word-spacing:89.568000px;}
._28{margin-left:-23.791920px;}
._2c{margin-left:-21.595680px;}
._1a{margin-left:-17.928000px;}
._2d{margin-left:-16.548480px;}
._19{margin-left:-15.105360px;}
._27{margin-left:-12.666720px;}
._1c{margin-left:-11.449440px;}
._24{margin-left:-9.864960px;}
._25{margin-left:-7.972560px;}
._7{margin-left:-6.920640px;}
._16{margin-left:-5.705520px;}
._6{margin-left:-4.384320px;}
._14{margin-left:-3.308640px;}
._3{margin-left:-2.114640px;}
._11{margin-left:-1.016160px;}
._2{width:1.632000px;}
._e{width:3.652560px;}
._f{width:4.840080px;}
._17{width:6.248160px;}
._21{width:7.481760px;}
._20{width:9.562800px;}
._1f{width:11.482560px;}
._26{width:12.626880px;}
._10{width:14.185920px;}
._0{width:15.238560px;}
._1{width:16.358400px;}
._1d{width:17.768640px;}
._1b{width:18.944640px;}
._b{width:20.080800px;}
._c{width:21.288960px;}
._29{width:22.308960px;}
._22{width:23.616000px;}
._23{width:24.805200px;}
._2a{width:26.102400px;}
._12{width:27.704880px;}
._d{width:28.712880px;}
._18{width:30.600000px;}
._2b{width:32.394480px;}
._31{width:38.106240px;}
._30{width:39.538800px;}
._13{width:41.422800px;}
._15{width:42.666240px;}
._9{width:44.032800px;}
._a{width:45.106560px;}
._35{width:46.277040px;}
._2e{width:47.934000px;}
._2f{width:49.271760px;}
._32{width:64.232400px;}
._39{width:73.701360px;}
._38{width:74.887920px;}
._5{width:83.171760px;}
._4{width:84.254880px;}
._8{width:85.614480px;}
._36{width:86.795040px;}
._1e{width:107.208000px;}
._3a{width:156.247920px;}
._34{width:322.983600px;}
._37{width:591.603600px;}
._33{width:676.143600px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:72.000000px;}
.fs8{font-size:79.920000px;}
.fs9{font-size:95.760000px;}
.fs3{font-size:108.000000px;}
.fsc{font-size:112.320000px;}
.fs7{font-size:120.240000px;}
.fs1{font-size:128.160000px;}
.fs5{font-size:144.000000px;}
.fsb{font-size:151.920000px;}
.fsd{font-size:167.760000px;}
.fs0{font-size:192.240000px;}
.fs4{font-size:216.000000px;}
.fs2{font-size:360.000000px;}
.fsa{font-size:396.000000px;}
.y0{bottom:0.000000px;}
.ya2{bottom:14.835000px;}
.y97{bottom:15.945000px;}
.yad{bottom:17.130000px;}
.yac{bottom:17.790000px;}
.y70{bottom:17.820000px;}
.y62{bottom:17.970000px;}
.y98{bottom:24.585000px;}
.y71{bottom:27.180000px;}
.y63{bottom:27.210000px;}
.y83{bottom:30.090000px;}
.ya0{bottom:46.800000px;}
.yaa{bottom:52.200000px;}
.y6e{bottom:67.650000px;}
.y60{bottom:67.680000px;}
.y22{bottom:70.452000px;}
.y81{bottom:71.670000px;}
.y9a{bottom:75.930000px;}
.ya4{bottom:81.330000px;}
.y85{bottom:81.975000px;}
.y87{bottom:82.050000px;}
.y95{bottom:87.375000px;}
.y21{bottom:95.292000px;}
.yb0{bottom:95.400000px;}
.yaf{bottom:101.448000px;}
.y65{bottom:105.480000px;}
.y59{bottom:105.510000px;}
.y7a{bottom:109.515000px;}
.y8f{bottom:116.460000px;}
.y20{bottom:120.132000px;}
.yae{bottom:130.248000px;}
.y9b{bottom:135.975000px;}
.ya5{bottom:144.615000px;}
.y66{bottom:147.165000px;}
.y1f{bottom:157.035000px;}
.y5a{bottom:158.835000px;}
.y90{bottom:177.870000px;}
.y7b{bottom:178.050000px;}
.y1e{bottom:181.875000px;}
.y67{bottom:188.850000px;}
.y9c{bottom:196.020000px;}
.y2b{bottom:205.890000px;}
.ya6{bottom:207.900000px;}
.y5b{bottom:212.115000px;}
.y1d{bottom:218.775000px;}
.y68{bottom:230.550000px;}
.y2a{bottom:239.010000px;}
.y91{bottom:239.250000px;}
.y1c{bottom:243.615000px;}
.y7c{bottom:246.630000px;}
.y9d{bottom:256.065000px;}
.y5c{bottom:265.425000px;}
.y1b{bottom:268.455000px;}
.ya7{bottom:271.230000px;}
.y29{bottom:272.130000px;}
.y69{bottom:272.235000px;}
.y92{bottom:300.630000px;}
.y1a{bottom:305.175000px;}
.y6a{bottom:313.920000px;}
.y7d{bottom:315.210000px;}
.y9e{bottom:316.110000px;}
.y28{bottom:317.310000px;}
.y5d{bottom:318.705000px;}
.y19{bottom:330.015000px;}
.ya8{bottom:334.515000px;}
.y27{bottom:350.430000px;}
.y6b{bottom:355.575000px;}
.y93{bottom:362.055000px;}
.y5e{bottom:372.030000px;}
.y9f{bottom:376.170000px;}
.y7e{bottom:383.790000px;}
.yf{bottom:386.850000px;}
.y6c{bottom:397.260000px;}
.ya9{bottom:397.800000px;}
.y26{bottom:407.490000px;}
.y94{bottom:423.435000px;}
.y5f{bottom:425.310000px;}
.y6d{bottom:438.945000px;}
.y7f{bottom:452.340000px;}
.y18{bottom:508.785000px;}
.y80{bottom:520.920000px;}
.y17{bottom:583.305000px;}
.y16{bottom:657.825000px;}
.y15{bottom:744.405000px;}
.y14{bottom:818.925000px;}
.y13{bottom:893.445000px;}
.y12{bottom:979.845000px;}
.ye{bottom:1056.270000px;}
.yb3{bottom:1174.170000px;}
.yb2{bottom:1224.570000px;}
.yb1{bottom:1274.970000px;}
.y25{bottom:1359.870000px;}
.y24{bottom:1395.870000px;}
.y23{bottom:1431.870000px;}
.ya3{bottom:1475.640000px;}
.yab{bottom:1643.040000px;}
.y57{bottom:1778.430000px;}
.y56{bottom:1828.830000px;}
.y55{bottom:1879.230000px;}
.y99{bottom:1893.060000px;}
.y54{bottom:1929.630000px;}
.y53{bottom:1980.030000px;}
.y52{bottom:2030.430000px;}
.ya1{bottom:2043.540000px;}
.y51{bottom:2080.830000px;}
.y50{bottom:2131.230000px;}
.y4f{bottom:2181.630000px;}
.y4e{bottom:2232.030000px;}
.y8e{bottom:2240.460000px;}
.y48{bottom:2339.715000px;}
.y47{bottom:2390.115000px;}
.y46{bottom:2440.515000px;}
.y96{bottom:2448.900000px;}
.y45{bottom:2490.915000px;}
.y44{bottom:2541.315000px;}
.y43{bottom:2591.715000px;}
.y42{bottom:2642.115000px;}
.y41{bottom:2692.515000px;}
.y79{bottom:2715.300000px;}
.y88{bottom:2728.515000px;}
.y78{bottom:2761.020000px;}
.y4d{bottom:2795.070000px;}
.y77{bottom:2804.220000px;}
.y4c{bottom:2846.010000px;}
.y76{bottom:2847.420000px;}
.y75{bottom:2890.620000px;}
.y4b{bottom:2896.410000px;}
.y8d{bottom:2911.860000px;}
.y74{bottom:2933.820000px;}
.y8c{bottom:2944.260000px;}
.y4a{bottom:2946.810000px;}
.y82{bottom:2985.840000px;}
.y49{bottom:2997.210000px;}
.y86{bottom:3062.880000px;}
.y40{bottom:3065.865000px;}
.y3e{bottom:3082.830000px;}
.y3f{bottom:3098.265000px;}
.ybc{bottom:3100.830000px;}
.y84{bottom:3120.480000px;}
.y3d{bottom:3133.230000px;}
.ybb{bottom:3151.230000px;}
.y3c{bottom:3183.450000px;}
.yba{bottom:3201.630000px;}
.y3b{bottom:3234.030000px;}
.yb9{bottom:3252.030000px;}
.y3a{bottom:3284.430000px;}
.y39{bottom:3334.830000px;}
.y2e{bottom:3355.920000px;}
.y8b{bottom:3360.990000px;}
.y2d{bottom:3399.120000px;}
.y8a{bottom:3404.190000px;}
.yc{bottom:3404.880000px;}
.y2c{bottom:3442.320000px;}
.y89{bottom:3447.390000px;}
.y64{bottom:3465.720000px;}
.y58{bottom:3468.240000px;}
.ya{bottom:3533.430000px;}
.y9{bottom:3591.030000px;}
.y6f{bottom:3623.400000px;}
.y73{bottom:3634.485000px;}
.y61{bottom:3640.140000px;}
.y8{bottom:3648.630000px;}
.y72{bottom:3666.885000px;}
.y7{bottom:3706.230000px;}
.y11{bottom:3729.705000px;}
.y10{bottom:3762.105000px;}
.y6{bottom:3763.830000px;}
.y5{bottom:3821.430000px;}
.y4{bottom:3879.030000px;}
.y3{bottom:3936.630000px;}
.yb6{bottom:3963.495000px;}
.y2{bottom:3994.230000px;}
.yb5{bottom:4013.895000px;}
.yb8{bottom:4015.980000px;}
.y1{bottom:4051.830000px;}
.yb4{bottom:4064.295000px;}
.yb7{bottom:4066.560000px;}
.yb{bottom:4127.115000px;}
.yd{bottom:4133.340000px;}
.y35{bottom:4271.835000px;}
.y34{bottom:4322.235000px;}
.y33{bottom:4385.235000px;}
.y32{bottom:4438.875000px;}
.y31{bottom:4471.995000px;}
.y30{bottom:4536.795000px;}
.y2f{bottom:4612.395000px;}
.y38{bottom:4667.835000px;}
.y37{bottom:4786.635000px;}
.y36{bottom:4905.435000px;}
.h29{height:44.640000px;}
.h2d{height:46.980000px;}
.h8{height:54.000000px;}
.h25{height:54.540000px;}
.h1a{height:57.060000px;}
.h1f{height:61.020000px;}
.h27{height:69.480000px;}
.hb{height:71.820000px;}
.h2b{height:74.880000px;}
.h14{height:81.000000px;}
.h10{height:84.240000px;}
.h15{height:86.400000px;}
.h9{height:90.180000px;}
.h20{height:90.825820px;}
.h19{height:95.939999px;}
.ha{height:95.940000px;}
.h1e{height:105.660000px;}
.hc{height:108.000000px;}
.h23{height:109.980000px;}
.h6{height:111.006981px;}
.hf{height:113.940000px;}
.h21{height:115.020000px;}
.h11{height:125.820000px;}
.h2e{height:126.721055px;}
.h13{height:127.212539px;}
.h16{height:134.640000px;}
.h3{height:144.180000px;}
.h4{height:153.720000px;}
.h24{height:158.040000px;}
.h7{height:162.000000px;}
.he{height:172.800000px;}
.h2c{height:175.500000px;}
.h28{height:175.680000px;}
.h18{height:203.220000px;}
.h1c{height:245.340000px;}
.h5{height:270.000000px;}
.h12{height:297.000000px;}
.hd{height:300.287109px;}
.h26{height:402.300000px;}
.h2a{height:423.900000px;}
.h22{height:449.640000px;}
.h17{height:458.820000px;}
.h1b{height:472.500000px;}
.h1d{height:566.100000px;}
.h1{height:5102.250000px;}
.h2{height:5102.459634px;}
.h0{height:5102.460000px;}
.w10{width:123.660000px;}
.wf{width:123.840000px;}
.w8{width:124.740000px;}
.wb{width:126.000000px;}
.w11{width:135.540000px;}
.w13{width:147.240000px;}
.w12{width:147.420000px;}
.w4{width:149.940000px;}
.w7{width:166.320000px;}
.wa{width:202.860000px;}
.wc{width:210.420000px;}
.wd{width:254.880000px;}
.w1a{width:350.820000px;}
.w1b{width:353.520000px;}
.w18{width:353.700000px;}
.w15{width:358.560000px;}
.w5{width:363.060000px;}
.w14{width:385.380000px;}
.w17{width:392.760000px;}
.w3{width:749.880000px;}
.w6{width:831.420000px;}
.w9{width:1014.840000px;}
.w19{width:1754.820000px;}
.we{width:1927.080000px;}
.w16{width:1964.520000px;}
.w1{width:3826.500000px;}
.w2{width:3826.619997px;}
.w0{width:3826.620000px;}
.x0{left:0.000000px;}
.x3e{left:14.835000px;}
.x26{left:18.180000px;}
.x36{left:21.750000px;}
.x49{left:27.150000px;}
.x24{left:29.850000px;}
.x21{left:59.325000px;}
.x20{left:74.055000px;}
.x28{left:96.870000px;}
.x31{left:97.950000px;}
.x22{left:108.570000px;}
.x30{left:120.930000px;}
.x1c{left:125.963997px;}
.x19{left:128.807997px;}
.x29{left:131.370000px;}
.x1{left:136.871997px;}
.x3c{left:143.280000px;}
.x32{left:155.415000px;}
.x1b{left:168.554997px;}
.x13{left:204.014997px;}
.x5a{left:231.330000px;}
.x59{left:246.060000px;}
.x10{left:261.614997px;}
.x4d{left:265.755000px;}
.x4c{left:280.470000px;}
.x1d{left:402.299997px;}
.x3{left:417.959997px;}
.x15{left:433.829997px;}
.x18{left:453.989997px;}
.x14{left:549.209997px;}
.x1a{left:574.634997px;}
.x2{left:592.229997px;}
.x65{left:750.209997px;}
.x17{left:876.089997px;}
.x1e{left:949.709997px;}
.x11{left:1396.049997px;}
.x16{left:1411.274997px;}
.x7{left:1451.414997px;}
.x3b{left:1763.460000px;}
.x4b{left:1770.840000px;}
.x67{left:1838.729997px;}
.x8{left:1844.129997px;}
.x48{left:1846.440000px;}
.x38{left:1851.689997px;}
.x2e{left:1863.434997px;}
.x69{left:1865.729997px;}
.xb{left:1875.314997px;}
.x66{left:1879.094997px;}
.xa{left:1884.629997px;}
.x9{left:1898.129997px;}
.xf{left:1910.309997px;}
.x56{left:1953.180000px;}
.x3d{left:1973.160000px;}
.x58{left:1990.980000px;}
.x1f{left:1999.620000px;}
.x23{left:2016.180000px;}
.x6{left:2101.529997px;}
.x4e{left:2120.040000px;}
.x3f{left:2145.960000px;}
.x62{left:2153.880000px;}
.x25{left:2231.640000px;}
.x4f{left:2297.880000px;}
.x5b{left:2306.160000px;}
.x40{left:2318.760000px;}
.x4{left:2370.314997px;}
.x50{left:2475.540000px;}
.x5c{left:2484.900000px;}
.x41{left:2491.380000px;}
.x5{left:2612.369997px;}
.x51{left:2653.200000px;}
.x42{left:2664.180000px;}
.x2f{left:2718.540000px;}
.x4a{left:2725.380000px;}
.x57{left:2742.300000px;}
.x63{left:2767.680000px;}
.x33{left:2773.800000px;}
.x37{left:2821.784997px;}
.x64{left:2828.549997px;}
.x52{left:2831.040000px;}
.x43{left:2836.980000px;}
.x5d{left:2842.020000px;}
.xd{left:2852.714997px;}
.x68{left:2875.169997px;}
.xe{left:2886.554997px;}
.x27{left:2891.160000px;}
.x2a{left:2907.720000px;}
.xc{left:2945.549997px;}
.x53{left:3008.700000px;}
.x44{left:3009.780000px;}
.x5e{left:3020.760000px;}
.x45{left:3176.640000px;}
.x54{left:3180.600000px;}
.x35{left:3185.640000px;}
.x34{left:3187.620000px;}
.x5f{left:3193.380000px;}
.x2b{left:3290.940000px;}
.x46{left:3343.500000px;}
.x55{left:3352.500000px;}
.x60{left:3366.180000px;}
.x47{left:3516.300000px;}
.x3a{left:3520.799997px;}
.x39{left:3530.159997px;}
.x61{left:3544.740000px;}
.x2c{left:3591.179997px;}
.x12{left:3616.589997px;}
.x2d{left:3617.819997px;}
@media print{
.v2{vertical-align:-47.360000pt;}
.v5{vertical-align:-44.800000pt;}
.v8{vertical-align:-36.480000pt;}
.va{vertical-align:-26.240000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:28.800000pt;}
.v3{vertical-align:32.000000pt;}
.v9{vertical-align:36.480000pt;}
.v6{vertical-align:44.800000pt;}
.v1{vertical-align:51.200000pt;}
.v4{vertical-align:57.600000pt;}
.ls54{letter-spacing:-10.560000pt;}
.ls37{letter-spacing:-4.298667pt;}
.ls4e{letter-spacing:-4.021333pt;}
.ls4b{letter-spacing:-3.381333pt;}
.ls43{letter-spacing:-2.890667pt;}
.ls44{letter-spacing:-2.613333pt;}
.ls3b{letter-spacing:-1.920000pt;}
.ls5f{letter-spacing:-1.386667pt;}
.ls56{letter-spacing:-0.746667pt;}
.ls67{letter-spacing:-0.640000pt;}
.ls3f{letter-spacing:-0.448000pt;}
.ls42{letter-spacing:-0.400000pt;}
.ls48{letter-spacing:-0.384000pt;}
.ls3d{letter-spacing:-0.320000pt;}
.ls57{letter-spacing:-0.314133pt;}
.ls51{letter-spacing:-0.302933pt;}
.ls53{letter-spacing:-0.274667pt;}
.ls55{letter-spacing:-0.257067pt;}
.ls47{letter-spacing:-0.256000pt;}
.ls4a{letter-spacing:-0.240000pt;}
.ls33{letter-spacing:-0.228267pt;}
.ls3a{letter-spacing:-0.192000pt;}
.ls5b{letter-spacing:-0.182933pt;}
.ls50{letter-spacing:-0.165867pt;}
.ls65{letter-spacing:-0.164267pt;}
.ls46{letter-spacing:-0.128000pt;}
.ls41{letter-spacing:-0.126933pt;}
.ls45{letter-spacing:-0.108800pt;}
.ls52{letter-spacing:-0.091733pt;}
.ls36{letter-spacing:-0.080000pt;}
.ls3c{letter-spacing:-0.064000pt;}
.ls34{letter-spacing:-0.023040pt;}
.ls31{letter-spacing:0.000000pt;}
.ls5a{letter-spacing:0.023040pt;}
.ls2f{letter-spacing:0.045440pt;}
.ls66{letter-spacing:0.046720pt;}
.ls23{letter-spacing:0.054400pt;}
.ls8{letter-spacing:0.064000pt;}
.ls1d{letter-spacing:0.071680pt;}
.ls68{letter-spacing:0.094933pt;}
.ls4f{letter-spacing:0.097067pt;}
.ls1{letter-spacing:0.108800pt;}
.ls16{letter-spacing:0.110080pt;}
.ls39{letter-spacing:0.128000pt;}
.ls32{letter-spacing:0.142933pt;}
.ls4d{letter-spacing:0.234133pt;}
.ls64{letter-spacing:0.237867pt;}
.ls27{letter-spacing:0.238080pt;}
.ls3e{letter-spacing:0.256000pt;}
.ls15{letter-spacing:0.286720pt;}
.ls28{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.323840pt;}
.ls14{letter-spacing:0.325867pt;}
.lsf{letter-spacing:0.358400pt;}
.ls58{letter-spacing:0.365333pt;}
.ls63{letter-spacing:0.400000pt;}
.ls5d{letter-spacing:0.457067pt;}
.ls62{letter-spacing:0.474133pt;}
.ls49{letter-spacing:0.531200pt;}
.ls5c{letter-spacing:0.549333pt;}
.ls38{letter-spacing:0.560000pt;}
.ls12{letter-spacing:0.585600pt;}
.ls59{letter-spacing:0.586667pt;}
.ls40{letter-spacing:0.640000pt;}
.ls2d{letter-spacing:0.657920pt;}
.ls35{letter-spacing:0.746667pt;}
.ls17{letter-spacing:0.750080pt;}
.ls4c{letter-spacing:0.949333pt;}
.ls7{letter-spacing:0.960000pt;}
.ls4{letter-spacing:1.014400pt;}
.ls1a{letter-spacing:1.225600pt;}
.ls6{letter-spacing:1.600000pt;}
.ls20{letter-spacing:1.865600pt;}
.ls11{letter-spacing:2.505600pt;}
.ls1c{letter-spacing:3.145600pt;}
.ls1b{letter-spacing:3.785600pt;}
.lsb{letter-spacing:4.160000pt;}
.ls2b{letter-spacing:5.760000pt;}
.lsc{letter-spacing:6.080000pt;}
.ls0{letter-spacing:13.814400pt;}
.ls10{letter-spacing:14.025600pt;}
.lsa{letter-spacing:16.960000pt;}
.ls18{letter-spacing:17.865600pt;}
.ls19{letter-spacing:18.505600pt;}
.lse{letter-spacing:22.400000pt;}
.ls13{letter-spacing:24.265600pt;}
.ls2c{letter-spacing:25.545600pt;}
.ls9{letter-spacing:27.200000pt;}
.ls61{letter-spacing:33.866667pt;}
.ls1f{letter-spacing:34.505600pt;}
.ls60{letter-spacing:34.506667pt;}
.ls69{letter-spacing:35.146667pt;}
.ls5e{letter-spacing:37.066667pt;}
.ls1e{letter-spacing:43.465600pt;}
.ls2e{letter-spacing:65.225600pt;}
.ls2{letter-spacing:74.614400pt;}
.lsd{letter-spacing:90.528000pt;}
.ls5{letter-spacing:124.800000pt;}
.ls30{letter-spacing:138.185600pt;}
.ls26{letter-spacing:208.321067pt;}
.ls25{letter-spacing:234.507733pt;}
.ls24{letter-spacing:234.561067pt;}
.ls29{letter-spacing:473.121067pt;}
.ls2a{letter-spacing:473.174400pt;}
.ls22{letter-spacing:522.027733pt;}
.ls21{letter-spacing:548.267733pt;}
.ws48{word-spacing:-99.840000pt;}
.ws52{word-spacing:-85.120000pt;}
.wse{word-spacing:-78.400000pt;}
.ws1b{word-spacing:-64.000000pt;}
.ws10{word-spacing:-47.360000pt;}
.ws17{word-spacing:-47.296000pt;}
.ws11{word-spacing:-47.168000pt;}
.wsf{word-spacing:-47.040000pt;}
.ws14{word-spacing:-46.976000pt;}
.ws12{word-spacing:-46.848000pt;}
.ws16{word-spacing:-46.720000pt;}
.ws13{word-spacing:-45.120000pt;}
.ws7{word-spacing:-42.612267pt;}
.wsc{word-spacing:-42.425600pt;}
.ws3{word-spacing:-42.185600pt;}
.ws0{word-spacing:-42.008533pt;}
.ws2{word-spacing:-41.974400pt;}
.ws8{word-spacing:-41.865600pt;}
.ws6{word-spacing:-41.842560pt;}
.ws9{word-spacing:-41.785600pt;}
.ws1{word-spacing:-41.637333pt;}
.wsa{word-spacing:-37.566933pt;}
.ws30{word-spacing:-37.483733pt;}
.ws46{word-spacing:-37.083733pt;}
.ws2b{word-spacing:-37.065600pt;}
.ws4a{word-spacing:-37.008533pt;}
.ws47{word-spacing:-36.991467pt;}
.ws4b{word-spacing:-36.934400pt;}
.ws43{word-spacing:-36.899733pt;}
.ws39{word-spacing:-36.860267pt;}
.ws3e{word-spacing:-36.854400pt;}
.ws34{word-spacing:-36.768533pt;}
.ws38{word-spacing:-36.631467pt;}
.ws44{word-spacing:-36.557440pt;}
.ws2d{word-spacing:-36.534400pt;}
.ws3c{word-spacing:-36.442667pt;}
.ws2c{word-spacing:-36.425600pt;}
.ws3a{word-spacing:-36.368533pt;}
.ws45{word-spacing:-36.351467pt;}
.ws2e{word-spacing:-36.294400pt;}
.ws40{word-spacing:-36.277333pt;}
.ws3d{word-spacing:-36.259733pt;}
.ws3b{word-spacing:-36.231467pt;}
.ws42{word-spacing:-36.220267pt;}
.ws41{word-spacing:-35.787733pt;}
.ws49{word-spacing:-35.147733pt;}
.ws32{word-spacing:-33.701120pt;}
.ws2f{word-spacing:-33.153067pt;}
.ws35{word-spacing:-32.513067pt;}
.ws15{word-spacing:-31.360000pt;}
.ws27{word-spacing:-31.232000pt;}
.ws28{word-spacing:-31.104000pt;}
.ws29{word-spacing:-30.976000pt;}
.ws51{word-spacing:-30.720000pt;}
.ws5{word-spacing:-28.234240pt;}
.ws4{word-spacing:-27.910400pt;}
.ws21{word-spacing:-26.294400pt;}
.ws53{word-spacing:-26.280533pt;}
.ws4f{word-spacing:-26.232320pt;}
.ws4c{word-spacing:-26.185600pt;}
.ws20{word-spacing:-26.058667pt;}
.ws4e{word-spacing:-26.021333pt;}
.ws3f{word-spacing:-25.974400pt;}
.ws22{word-spacing:-25.785600pt;}
.ws2a{word-spacing:-24.460800pt;}
.ws50{word-spacing:-24.154880pt;}
.ws36{word-spacing:-23.840000pt;}
.ws37{word-spacing:-23.328000pt;}
.ws23{word-spacing:-23.294933pt;}
.ws26{word-spacing:-20.745600pt;}
.ws24{word-spacing:-18.241067pt;}
.ws4d{word-spacing:-17.404800pt;}
.ws1f{word-spacing:-16.320000pt;}
.ws1c{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.997440pt;}
.ws18{word-spacing:-15.680000pt;}
.ws1d{word-spacing:-15.616000pt;}
.ws19{word-spacing:-15.488000pt;}
.wsd{word-spacing:-15.357440pt;}
.ws1e{word-spacing:-15.232000pt;}
.ws33{word-spacing:-13.442560pt;}
.ws31{word-spacing:-12.802560pt;}
.ws25{word-spacing:-7.170560pt;}
.ws54{word-spacing:0.000000pt;}
.ws1a{word-spacing:79.616000pt;}
._28{margin-left:-21.148373pt;}
._2c{margin-left:-19.196160pt;}
._1a{margin-left:-15.936000pt;}
._2d{margin-left:-14.709760pt;}
._19{margin-left:-13.426987pt;}
._27{margin-left:-11.259307pt;}
._1c{margin-left:-10.177280pt;}
._24{margin-left:-8.768853pt;}
._25{margin-left:-7.086720pt;}
._7{margin-left:-6.151680pt;}
._16{margin-left:-5.071573pt;}
._6{margin-left:-3.897173pt;}
._14{margin-left:-2.941013pt;}
._3{margin-left:-1.879680pt;}
._11{margin-left:-0.903253pt;}
._2{width:1.450667pt;}
._e{width:3.246720pt;}
._f{width:4.302293pt;}
._17{width:5.553920pt;}
._21{width:6.650453pt;}
._20{width:8.500267pt;}
._1f{width:10.206720pt;}
._26{width:11.223893pt;}
._10{width:12.609707pt;}
._0{width:13.545387pt;}
._1{width:14.540800pt;}
._1d{width:15.794347pt;}
._1b{width:16.839680pt;}
._b{width:17.849600pt;}
._c{width:18.923520pt;}
._29{width:19.830187pt;}
._22{width:20.992000pt;}
._23{width:22.049067pt;}
._2a{width:23.202133pt;}
._12{width:24.626560pt;}
._d{width:25.522560pt;}
._18{width:27.200000pt;}
._2b{width:28.795093pt;}
._31{width:33.872213pt;}
._30{width:35.145600pt;}
._13{width:36.820267pt;}
._15{width:37.925547pt;}
._9{width:39.140267pt;}
._a{width:40.094720pt;}
._35{width:41.135147pt;}
._2e{width:42.608000pt;}
._2f{width:43.797120pt;}
._32{width:57.095467pt;}
._39{width:65.512320pt;}
._38{width:66.567040pt;}
._5{width:73.930453pt;}
._4{width:74.893227pt;}
._8{width:76.101760pt;}
._36{width:77.151147pt;}
._1e{width:95.296000pt;}
._3a{width:138.887040pt;}
._34{width:287.096533pt;}
._37{width:525.869867pt;}
._33{width:601.016533pt;}
.fs6{font-size:64.000000pt;}
.fs8{font-size:71.040000pt;}
.fs9{font-size:85.120000pt;}
.fs3{font-size:96.000000pt;}
.fsc{font-size:99.840000pt;}
.fs7{font-size:106.880000pt;}
.fs1{font-size:113.920000pt;}
.fs5{font-size:128.000000pt;}
.fsb{font-size:135.040000pt;}
.fsd{font-size:149.120000pt;}
.fs0{font-size:170.880000pt;}
.fs4{font-size:192.000000pt;}
.fs2{font-size:320.000000pt;}
.fsa{font-size:352.000000pt;}
.y0{bottom:0.000000pt;}
.ya2{bottom:13.186667pt;}
.y97{bottom:14.173333pt;}
.yad{bottom:15.226667pt;}
.yac{bottom:15.813333pt;}
.y70{bottom:15.840000pt;}
.y62{bottom:15.973333pt;}
.y98{bottom:21.853333pt;}
.y71{bottom:24.160000pt;}
.y63{bottom:24.186667pt;}
.y83{bottom:26.746667pt;}
.ya0{bottom:41.600000pt;}
.yaa{bottom:46.400000pt;}
.y6e{bottom:60.133333pt;}
.y60{bottom:60.160000pt;}
.y22{bottom:62.624000pt;}
.y81{bottom:63.706667pt;}
.y9a{bottom:67.493333pt;}
.ya4{bottom:72.293333pt;}
.y85{bottom:72.866667pt;}
.y87{bottom:72.933333pt;}
.y95{bottom:77.666667pt;}
.y21{bottom:84.704000pt;}
.yb0{bottom:84.800000pt;}
.yaf{bottom:90.176000pt;}
.y65{bottom:93.760000pt;}
.y59{bottom:93.786667pt;}
.y7a{bottom:97.346667pt;}
.y8f{bottom:103.520000pt;}
.y20{bottom:106.784000pt;}
.yae{bottom:115.776000pt;}
.y9b{bottom:120.866667pt;}
.ya5{bottom:128.546667pt;}
.y66{bottom:130.813333pt;}
.y1f{bottom:139.586667pt;}
.y5a{bottom:141.186667pt;}
.y90{bottom:158.106667pt;}
.y7b{bottom:158.266667pt;}
.y1e{bottom:161.666667pt;}
.y67{bottom:167.866667pt;}
.y9c{bottom:174.240000pt;}
.y2b{bottom:183.013333pt;}
.ya6{bottom:184.800000pt;}
.y5b{bottom:188.546667pt;}
.y1d{bottom:194.466667pt;}
.y68{bottom:204.933333pt;}
.y2a{bottom:212.453333pt;}
.y91{bottom:212.666667pt;}
.y1c{bottom:216.546667pt;}
.y7c{bottom:219.226667pt;}
.y9d{bottom:227.613333pt;}
.y5c{bottom:235.933333pt;}
.y1b{bottom:238.626667pt;}
.ya7{bottom:241.093333pt;}
.y29{bottom:241.893333pt;}
.y69{bottom:241.986667pt;}
.y92{bottom:267.226667pt;}
.y1a{bottom:271.266667pt;}
.y6a{bottom:279.040000pt;}
.y7d{bottom:280.186667pt;}
.y9e{bottom:280.986667pt;}
.y28{bottom:282.053333pt;}
.y5d{bottom:283.293333pt;}
.y19{bottom:293.346667pt;}
.ya8{bottom:297.346667pt;}
.y27{bottom:311.493333pt;}
.y6b{bottom:316.066667pt;}
.y93{bottom:321.826667pt;}
.y5e{bottom:330.693333pt;}
.y9f{bottom:334.373333pt;}
.y7e{bottom:341.146667pt;}
.yf{bottom:343.866667pt;}
.y6c{bottom:353.120000pt;}
.ya9{bottom:353.600000pt;}
.y26{bottom:362.213333pt;}
.y94{bottom:376.386667pt;}
.y5f{bottom:378.053333pt;}
.y6d{bottom:390.173333pt;}
.y7f{bottom:402.080000pt;}
.y18{bottom:452.253333pt;}
.y80{bottom:463.040000pt;}
.y17{bottom:518.493333pt;}
.y16{bottom:584.733333pt;}
.y15{bottom:661.693333pt;}
.y14{bottom:727.933333pt;}
.y13{bottom:794.173333pt;}
.y12{bottom:870.973333pt;}
.ye{bottom:938.906667pt;}
.yb3{bottom:1043.706667pt;}
.yb2{bottom:1088.506667pt;}
.yb1{bottom:1133.306667pt;}
.y25{bottom:1208.773333pt;}
.y24{bottom:1240.773333pt;}
.y23{bottom:1272.773333pt;}
.ya3{bottom:1311.680000pt;}
.yab{bottom:1460.480000pt;}
.y57{bottom:1580.826667pt;}
.y56{bottom:1625.626667pt;}
.y55{bottom:1670.426667pt;}
.y99{bottom:1682.720000pt;}
.y54{bottom:1715.226667pt;}
.y53{bottom:1760.026667pt;}
.y52{bottom:1804.826667pt;}
.ya1{bottom:1816.480000pt;}
.y51{bottom:1849.626667pt;}
.y50{bottom:1894.426667pt;}
.y4f{bottom:1939.226667pt;}
.y4e{bottom:1984.026667pt;}
.y8e{bottom:1991.520000pt;}
.y48{bottom:2079.746667pt;}
.y47{bottom:2124.546667pt;}
.y46{bottom:2169.346667pt;}
.y96{bottom:2176.800000pt;}
.y45{bottom:2214.146667pt;}
.y44{bottom:2258.946667pt;}
.y43{bottom:2303.746667pt;}
.y42{bottom:2348.546667pt;}
.y41{bottom:2393.346667pt;}
.y79{bottom:2413.600000pt;}
.y88{bottom:2425.346667pt;}
.y78{bottom:2454.240000pt;}
.y4d{bottom:2484.506667pt;}
.y77{bottom:2492.640000pt;}
.y4c{bottom:2529.786667pt;}
.y76{bottom:2531.040000pt;}
.y75{bottom:2569.440000pt;}
.y4b{bottom:2574.586667pt;}
.y8d{bottom:2588.320000pt;}
.y74{bottom:2607.840000pt;}
.y8c{bottom:2617.120000pt;}
.y4a{bottom:2619.386667pt;}
.y82{bottom:2654.080000pt;}
.y49{bottom:2664.186667pt;}
.y86{bottom:2722.560000pt;}
.y40{bottom:2725.213333pt;}
.y3e{bottom:2740.293333pt;}
.y3f{bottom:2754.013333pt;}
.ybc{bottom:2756.293333pt;}
.y84{bottom:2773.760000pt;}
.y3d{bottom:2785.093333pt;}
.ybb{bottom:2801.093333pt;}
.y3c{bottom:2829.733333pt;}
.yba{bottom:2845.893333pt;}
.y3b{bottom:2874.693333pt;}
.yb9{bottom:2890.693333pt;}
.y3a{bottom:2919.493333pt;}
.y39{bottom:2964.293333pt;}
.y2e{bottom:2983.040000pt;}
.y8b{bottom:2987.546667pt;}
.y2d{bottom:3021.440000pt;}
.y8a{bottom:3025.946667pt;}
.yc{bottom:3026.560000pt;}
.y2c{bottom:3059.840000pt;}
.y89{bottom:3064.346667pt;}
.y64{bottom:3080.640000pt;}
.y58{bottom:3082.880000pt;}
.ya{bottom:3140.826667pt;}
.y9{bottom:3192.026667pt;}
.y6f{bottom:3220.800000pt;}
.y73{bottom:3230.653333pt;}
.y61{bottom:3235.680000pt;}
.y8{bottom:3243.226667pt;}
.y72{bottom:3259.453333pt;}
.y7{bottom:3294.426667pt;}
.y11{bottom:3315.293333pt;}
.y10{bottom:3344.093333pt;}
.y6{bottom:3345.626667pt;}
.y5{bottom:3396.826667pt;}
.y4{bottom:3448.026667pt;}
.y3{bottom:3499.226667pt;}
.yb6{bottom:3523.106667pt;}
.y2{bottom:3550.426667pt;}
.yb5{bottom:3567.906667pt;}
.yb8{bottom:3569.760000pt;}
.y1{bottom:3601.626667pt;}
.yb4{bottom:3612.706667pt;}
.yb7{bottom:3614.720000pt;}
.yb{bottom:3668.546667pt;}
.yd{bottom:3674.080000pt;}
.y35{bottom:3797.186667pt;}
.y34{bottom:3841.986667pt;}
.y33{bottom:3897.986667pt;}
.y32{bottom:3945.666667pt;}
.y31{bottom:3975.106667pt;}
.y30{bottom:4032.706667pt;}
.y2f{bottom:4099.906667pt;}
.y38{bottom:4149.186667pt;}
.y37{bottom:4254.786667pt;}
.y36{bottom:4360.386667pt;}
.h29{height:39.680000pt;}
.h2d{height:41.760000pt;}
.h8{height:48.000000pt;}
.h25{height:48.480000pt;}
.h1a{height:50.720000pt;}
.h1f{height:54.240000pt;}
.h27{height:61.760000pt;}
.hb{height:63.840000pt;}
.h2b{height:66.560000pt;}
.h14{height:72.000000pt;}
.h10{height:74.880000pt;}
.h15{height:76.800000pt;}
.h9{height:80.160000pt;}
.h20{height:80.734062pt;}
.h19{height:85.279999pt;}
.ha{height:85.280000pt;}
.h1e{height:93.920000pt;}
.hc{height:96.000000pt;}
.h23{height:97.760000pt;}
.h6{height:98.672872pt;}
.hf{height:101.280000pt;}
.h21{height:102.240000pt;}
.h11{height:111.840000pt;}
.h2e{height:112.640937pt;}
.h13{height:113.077812pt;}
.h16{height:119.680000pt;}
.h3{height:128.160000pt;}
.h4{height:136.640000pt;}
.h24{height:140.480000pt;}
.h7{height:144.000000pt;}
.he{height:153.600000pt;}
.h2c{height:156.000000pt;}
.h28{height:156.160000pt;}
.h18{height:180.640000pt;}
.h1c{height:218.080000pt;}
.h5{height:240.000000pt;}
.h12{height:264.000000pt;}
.hd{height:266.921875pt;}
.h26{height:357.600000pt;}
.h2a{height:376.800000pt;}
.h22{height:399.680000pt;}
.h17{height:407.840000pt;}
.h1b{height:420.000000pt;}
.h1d{height:503.200000pt;}
.h1{height:4535.333333pt;}
.h2{height:4535.519674pt;}
.h0{height:4535.520000pt;}
.w10{width:109.920000pt;}
.wf{width:110.080000pt;}
.w8{width:110.880000pt;}
.wb{width:112.000000pt;}
.w11{width:120.480000pt;}
.w13{width:130.880000pt;}
.w12{width:131.040000pt;}
.w4{width:133.280000pt;}
.w7{width:147.840000pt;}
.wa{width:180.320000pt;}
.wc{width:187.040000pt;}
.wd{width:226.560000pt;}
.w1a{width:311.840000pt;}
.w1b{width:314.240000pt;}
.w18{width:314.400000pt;}
.w15{width:318.720000pt;}
.w5{width:322.720000pt;}
.w14{width:342.560000pt;}
.w17{width:349.120000pt;}
.w3{width:666.560000pt;}
.w6{width:739.040000pt;}
.w9{width:902.080000pt;}
.w19{width:1559.840000pt;}
.we{width:1712.960000pt;}
.w16{width:1746.240000pt;}
.w1{width:3401.333333pt;}
.w2{width:3401.439997pt;}
.w0{width:3401.440000pt;}
.x0{left:0.000000pt;}
.x3e{left:13.186667pt;}
.x26{left:16.160000pt;}
.x36{left:19.333333pt;}
.x49{left:24.133333pt;}
.x24{left:26.533333pt;}
.x21{left:52.733333pt;}
.x20{left:65.826667pt;}
.x28{left:86.106667pt;}
.x31{left:87.066667pt;}
.x22{left:96.506667pt;}
.x30{left:107.493333pt;}
.x1c{left:111.967997pt;}
.x19{left:114.495997pt;}
.x29{left:116.773333pt;}
.x1{left:121.663997pt;}
.x3c{left:127.360000pt;}
.x32{left:138.146667pt;}
.x1b{left:149.826664pt;}
.x13{left:181.346664pt;}
.x5a{left:205.626667pt;}
.x59{left:218.720000pt;}
.x10{left:232.546664pt;}
.x4d{left:236.226667pt;}
.x4c{left:249.306667pt;}
.x1d{left:357.599997pt;}
.x3{left:371.519997pt;}
.x15{left:385.626664pt;}
.x18{left:403.546664pt;}
.x14{left:488.186664pt;}
.x1a{left:510.786664pt;}
.x2{left:526.426664pt;}
.x65{left:666.853331pt;}
.x17{left:778.746664pt;}
.x1e{left:844.186664pt;}
.x11{left:1240.933331pt;}
.x16{left:1254.466664pt;}
.x7{left:1290.146664pt;}
.x3b{left:1567.520000pt;}
.x4b{left:1574.080000pt;}
.x67{left:1634.426664pt;}
.x8{left:1639.226664pt;}
.x48{left:1641.280000pt;}
.x38{left:1645.946664pt;}
.x2e{left:1656.386664pt;}
.x69{left:1658.426664pt;}
.xb{left:1666.946664pt;}
.x66{left:1670.306664pt;}
.xa{left:1675.226664pt;}
.x9{left:1687.226664pt;}
.xf{left:1698.053331pt;}
.x56{left:1736.160000pt;}
.x3d{left:1753.920000pt;}
.x58{left:1769.760000pt;}
.x1f{left:1777.440000pt;}
.x23{left:1792.160000pt;}
.x6{left:1868.026664pt;}
.x4e{left:1884.480000pt;}
.x3f{left:1907.520000pt;}
.x62{left:1914.560000pt;}
.x25{left:1983.680000pt;}
.x4f{left:2042.560000pt;}
.x5b{left:2049.920000pt;}
.x40{left:2061.120000pt;}
.x4{left:2106.946664pt;}
.x50{left:2200.480000pt;}
.x5c{left:2208.800000pt;}
.x41{left:2214.560000pt;}
.x5{left:2322.106664pt;}
.x51{left:2358.400000pt;}
.x42{left:2368.160000pt;}
.x2f{left:2416.480000pt;}
.x4a{left:2422.560000pt;}
.x57{left:2437.600000pt;}
.x63{left:2460.160000pt;}
.x33{left:2465.600000pt;}
.x37{left:2508.253331pt;}
.x64{left:2514.266664pt;}
.x52{left:2516.480000pt;}
.x43{left:2521.760000pt;}
.x5d{left:2526.240000pt;}
.xd{left:2535.746664pt;}
.x68{left:2555.706664pt;}
.xe{left:2565.826664pt;}
.x27{left:2569.920000pt;}
.x2a{left:2584.640000pt;}
.xc{left:2618.266664pt;}
.x53{left:2674.400000pt;}
.x44{left:2675.360000pt;}
.x5e{left:2685.120000pt;}
.x45{left:2823.680000pt;}
.x54{left:2827.200000pt;}
.x35{left:2831.680000pt;}
.x34{left:2833.440000pt;}
.x5f{left:2838.560000pt;}
.x2b{left:2925.280000pt;}
.x46{left:2972.000000pt;}
.x55{left:2980.000000pt;}
.x60{left:2992.160000pt;}
.x47{left:3125.600000pt;}
.x3a{left:3129.599997pt;}
.x39{left:3137.919997pt;}
.x61{left:3150.880000pt;}
.x2c{left:3192.159997pt;}
.x12{left:3214.746664pt;}
.x2d{left:3215.839997pt;}
}




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