
    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_b7e95d193ded5ff495b54e87.woff')format("woff");}.ff1{font-family:ff1;line-height:0.933000;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_b424da6ee190c2748ad296bb.woff')format("woff");}.ff2{font-family:ff2;line-height:0.921000;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_15f1b36fff5342f61dcb150e.woff')format("woff");}.ff3{font-family:ff3;line-height:0.934000;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_f58c7441b32ee3de7267cb31.woff')format("woff");}.ff4{font-family:ff4;line-height:0.933000;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_59372384bd466880884068af.woff')format("woff");}.ff5{font-family:ff5;line-height:1.048000;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_fe74092313f90492649b0d91.woff')format("woff");}.ff6{font-family:ff6;line-height:0.931000;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_cb9e03ec45493cbd17d4fb64.woff')format("woff");}.ff7{font-family:ff7;line-height:0.715000;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_cb560ad0aab62d3eaa1f1b7a.woff')format("woff");}.ff8{font-family:ff8;line-height:0.700000;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_3032cbd53e23d950947824d0.woff')format("woff");}.ff9{font-family:ff9;line-height:0.725000;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_c777cecb7df47df2bcec8aba.woff')format("woff");}.ffa{font-family:ffa;line-height:0.921000;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_42497cb226d92a3a361f40ad.woff')format("woff");}.ffb{font-family:ffb;line-height:0.909000;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_9b31c1a46083a2f715618c16.woff')format("woff");}.ffc{font-family:ffc;line-height:0.842000;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_048e83a6123e55a9156b00b4.woff')format("woff");}.ffd{font-family:ffd;line-height:0.732000;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:ffe;src:url('chunks/assets/font_cd2ebac4595d516e93905e44.woff')format("woff");}.ffe{font-family:ffe;line-height:0.811000;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:fff;src:url('chunks/assets/font_a754bcb12fa20f1b47209922.woff')format("woff");}.fff{font-family:fff;line-height:0.842000;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;}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,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);}
.m3{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;}
.v4{vertical-align:14.910000px;}
.v2{vertical-align:15.984000px;}
.v3{vertical-align:17.994000px;}
.v1{vertical-align:19.980000px;}
.lsd{letter-spacing:-5.892000px;}
.ls17{letter-spacing:-4.494000px;}
.ls38{letter-spacing:-3.744000px;}
.ls40{letter-spacing:-2.700000px;}
.ls19{letter-spacing:-2.268000px;}
.ls35{letter-spacing:-2.214000px;}
.ls3f{letter-spacing:-2.106000px;}
.ls1a{letter-spacing:-2.052000px;}
.ls3a{letter-spacing:-1.836000px;}
.ls48{letter-spacing:-1.665000px;}
.ls10{letter-spacing:-1.512000px;}
.ls36{letter-spacing:-1.296000px;}
.ls1c{letter-spacing:-1.188000px;}
.ls18{letter-spacing:-1.080000px;}
.ls37{letter-spacing:-1.026000px;}
.ls3d{letter-spacing:-0.972000px;}
.ls33{letter-spacing:-0.918000px;}
.ls41{letter-spacing:-0.810000px;}
.ls14{letter-spacing:-0.756000px;}
.lsc{letter-spacing:-0.702000px;}
.ls47{letter-spacing:-0.630000px;}
.ls3c{letter-spacing:-0.594000px;}
.ls1b{letter-spacing:-0.540000px;}
.ls46{letter-spacing:-0.450000px;}
.ls15{letter-spacing:-0.378000px;}
.ls3e{letter-spacing:-0.324000px;}
.ls1d{letter-spacing:-0.300000px;}
.ls12{letter-spacing:-0.270000px;}
.ls8{letter-spacing:-0.240000px;}
.ls34{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.162000px;}
.ls13{letter-spacing:-0.108000px;}
.lsa{letter-spacing:-0.054000px;}
.ls7{letter-spacing:0.000000px;}
.ls31{letter-spacing:0.048000px;}
.ls2{letter-spacing:0.054000px;}
.lse{letter-spacing:0.108000px;}
.ls44{letter-spacing:0.118740px;}
.ls6{letter-spacing:0.140136px;}
.ls11{letter-spacing:0.162000px;}
.ls22{letter-spacing:0.192000px;}
.ls45{letter-spacing:0.202500px;}
.ls3b{letter-spacing:0.216000px;}
.ls1e{letter-spacing:0.240000px;}
.ls9{letter-spacing:0.270000px;}
.ls2a{letter-spacing:0.273000px;}
.ls16{letter-spacing:0.324000px;}
.ls29{letter-spacing:0.378000px;}
.ls2c{letter-spacing:0.399000px;}
.ls26{letter-spacing:0.405000px;}
.lsf{letter-spacing:0.432000px;}
.ls5{letter-spacing:0.480000px;}
.ls28{letter-spacing:0.486000px;}
.ls2f{letter-spacing:0.523200px;}
.ls42{letter-spacing:0.540000px;}
.ls43{letter-spacing:0.576000px;}
.ls39{letter-spacing:0.594000px;}
.ls2b{letter-spacing:0.756000px;}
.ls1f{letter-spacing:0.768000px;}
.ls24{letter-spacing:0.885600px;}
.ls2e{letter-spacing:0.918000px;}
.ls2d{letter-spacing:0.972000px;}
.ls1{letter-spacing:1.170000px;}
.ls25{letter-spacing:1.220400px;}
.ls27{letter-spacing:1.317000px;}
.ls32{letter-spacing:1.404000px;}
.ls30{letter-spacing:1.416600px;}
.ls23{letter-spacing:1.458000px;}
.ls3{letter-spacing:1.620000px;}
.ls4{letter-spacing:2.226048px;}
.ls0{letter-spacing:4.320000px;}
.ls21{letter-spacing:13.824000px;}
.ls20{letter-spacing:14.928000px;}
.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;}
}
.ws47{word-spacing:-16.380000px;}
.ws5{word-spacing:-16.146000px;}
.ws81{word-spacing:-11.556000px;}
.ws9{word-spacing:-11.232000px;}
.ws4f{word-spacing:-11.178000px;}
.ws51{word-spacing:-11.070000px;}
.ws4d{word-spacing:-11.016000px;}
.ws2{word-spacing:-10.854000px;}
.wse{word-spacing:-10.800000px;}
.ws4a{word-spacing:-10.746000px;}
.ws50{word-spacing:-10.476000px;}
.ws4e{word-spacing:-10.206000px;}
.ws53{word-spacing:-9.990000px;}
.ws80{word-spacing:-9.984000px;}
.ws48{word-spacing:-9.882000px;}
.ws89{word-spacing:-9.792000px;}
.wsc{word-spacing:-9.558000px;}
.ws7b{word-spacing:-9.456000px;}
.ws46{word-spacing:-9.408000px;}
.ws8{word-spacing:-9.342000px;}
.ws7{word-spacing:-9.288000px;}
.wsa{word-spacing:-9.180000px;}
.ws3{word-spacing:-9.072000px;}
.ws8b{word-spacing:-9.000000px;}
.ws0{word-spacing:-8.976000px;}
.ws1{word-spacing:-8.820000px;}
.ws4b{word-spacing:-8.748000px;}
.ws52{word-spacing:-8.694000px;}
.ws11{word-spacing:-8.688000px;}
.ws4c{word-spacing:-8.640000px;}
.ws49{word-spacing:-8.586000px;}
.ws4{word-spacing:-8.532000px;}
.wsd{word-spacing:-8.478000px;}
.ws10{word-spacing:-8.208000px;}
.wsb{word-spacing:-7.722000px;}
.ws8a{word-spacing:-7.695000px;}
.wsf{word-spacing:-6.996000px;}
.ws6{word-spacing:-4.908000px;}
.ws77{word-spacing:-2.160000px;}
.ws24{word-spacing:-2.106000px;}
.ws21{word-spacing:-1.944000px;}
.ws5c{word-spacing:-1.890000px;}
.ws57{word-spacing:-1.836000px;}
.ws29{word-spacing:-1.782000px;}
.ws78{word-spacing:-1.728000px;}
.ws28{word-spacing:-1.620000px;}
.ws93{word-spacing:-1.575000px;}
.ws59{word-spacing:-1.458000px;}
.ws2a{word-spacing:-1.404000px;}
.ws6e{word-spacing:-1.350000px;}
.ws22{word-spacing:-1.296000px;}
.ws5a{word-spacing:-1.242000px;}
.ws6f{word-spacing:-1.134000px;}
.ws58{word-spacing:-1.080000px;}
.ws5e{word-spacing:-0.864000px;}
.ws26{word-spacing:-0.810000px;}
.ws1f{word-spacing:-0.648000px;}
.ws84{word-spacing:-0.624000px;}
.ws13{word-spacing:-0.540000px;}
.ws45{word-spacing:-0.528000px;}
.ws87{word-spacing:-0.486000px;}
.ws7f{word-spacing:-0.480000px;}
.ws88{word-spacing:-0.432000px;}
.ws85{word-spacing:-0.378000px;}
.ws86{word-spacing:-0.324000px;}
.ws5b{word-spacing:-0.270000px;}
.ws44{word-spacing:-0.240000px;}
.ws83{word-spacing:-0.216000px;}
.ws1d{word-spacing:-0.054000px;}
.ws55{word-spacing:-0.048000px;}
.ws8e{word-spacing:-0.045000px;}
.ws12{word-spacing:0.000000px;}
.ws23{word-spacing:0.054000px;}
.ws97{word-spacing:0.090000px;}
.ws1e{word-spacing:0.108000px;}
.ws18{word-spacing:0.162000px;}
.ws14{word-spacing:0.216000px;}
.ws8f{word-spacing:0.225000px;}
.ws2b{word-spacing:0.270000px;}
.ws9e{word-spacing:0.315000px;}
.ws70{word-spacing:0.324000px;}
.ws98{word-spacing:0.360000px;}
.ws32{word-spacing:0.378000px;}
.ws99{word-spacing:0.405000px;}
.ws65{word-spacing:0.432000px;}
.ws73{word-spacing:0.486000px;}
.ws56{word-spacing:0.540000px;}
.ws43{word-spacing:0.648000px;}
.ws90{word-spacing:0.675000px;}
.ws66{word-spacing:0.702000px;}
.wsa0{word-spacing:0.720000px;}
.ws6b{word-spacing:0.756000px;}
.wsa1{word-spacing:0.765000px;}
.ws40{word-spacing:0.810000px;}
.ws91{word-spacing:0.855000px;}
.ws1b{word-spacing:0.864000px;}
.ws25{word-spacing:0.972000px;}
.ws15{word-spacing:1.026000px;}
.ws16{word-spacing:1.080000px;}
.ws42{word-spacing:1.188000px;}
.ws20{word-spacing:1.242000px;}
.ws5f{word-spacing:1.296000px;}
.ws6a{word-spacing:1.350000px;}
.ws67{word-spacing:1.404000px;}
.ws9f{word-spacing:1.440000px;}
.ws60{word-spacing:1.458000px;}
.ws27{word-spacing:1.512000px;}
.ws74{word-spacing:1.566000px;}
.ws62{word-spacing:1.620000px;}
.ws95{word-spacing:1.665000px;}
.ws6c{word-spacing:1.674000px;}
.ws61{word-spacing:1.728000px;}
.ws75{word-spacing:1.782000px;}
.ws6d{word-spacing:1.836000px;}
.ws9d{word-spacing:2.025000px;}
.ws3a{word-spacing:2.052000px;}
.ws31{word-spacing:2.106000px;}
.ws76{word-spacing:2.160000px;}
.ws17{word-spacing:2.214000px;}
.ws94{word-spacing:2.250000px;}
.ws2f{word-spacing:2.268000px;}
.ws19{word-spacing:2.322000px;}
.ws1a{word-spacing:2.376000px;}
.ws34{word-spacing:2.484000px;}
.ws2d{word-spacing:2.538000px;}
.ws39{word-spacing:2.592000px;}
.ws38{word-spacing:2.700000px;}
.ws2e{word-spacing:2.808000px;}
.ws8c{word-spacing:2.835000px;}
.ws35{word-spacing:2.862000px;}
.ws8d{word-spacing:2.880000px;}
.ws30{word-spacing:2.916000px;}
.ws37{word-spacing:2.970000px;}
.ws5d{word-spacing:3.078000px;}
.ws3b{word-spacing:3.132000px;}
.ws36{word-spacing:3.186000px;}
.ws7a{word-spacing:3.510000px;}
.ws72{word-spacing:3.564000px;}
.ws7c{word-spacing:3.618000px;}
.ws2c{word-spacing:3.672000px;}
.ws3e{word-spacing:3.834000px;}
.ws1c{word-spacing:3.888000px;}
.ws79{word-spacing:3.942000px;}
.ws69{word-spacing:3.996000px;}
.ws96{word-spacing:4.005000px;}
.ws7d{word-spacing:4.158000px;}
.ws3d{word-spacing:4.266000px;}
.ws9c{word-spacing:4.275000px;}
.ws7e{word-spacing:4.374000px;}
.ws63{word-spacing:4.590000px;}
.ws82{word-spacing:4.644000px;}
.ws3f{word-spacing:4.752000px;}
.ws71{word-spacing:4.914000px;}
.ws92{word-spacing:4.995000px;}
.ws68{word-spacing:5.022000px;}
.ws64{word-spacing:5.400000px;}
.ws33{word-spacing:5.508000px;}
.ws3c{word-spacing:5.886000px;}
.ws9a{word-spacing:6.390000px;}
.ws9b{word-spacing:6.525000px;}
.ws54{word-spacing:14.400000px;}
.ws41{word-spacing:25.200000px;}
._8{margin-left:-25.200000px;}
._b{margin-left:-14.400000px;}
._e{margin-left:-6.419758px;}
._4{margin-left:-5.064012px;}
._7{margin-left:-4.017088px;}
._1{margin-left:-2.604000px;}
._0{margin-left:-1.188000px;}
._2{width:1.091939px;}
._3{width:2.496069px;}
._5{width:3.678000px;}
._6{width:5.435278px;}
._a{width:13.008000px;}
._c{width:14.880242px;}
._9{width:18.048000px;}
._10{width:39.346921px;}
._f{width:1850.172303px;}
._d{width:1851.372303px;}
._11{width:1858.092303px;}
.fc2{color:rgb(0,103,104);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:26.235000px;}
.fsa{font-size:27.984000px;}
.fsc{font-size:31.482000px;}
.fs9{font-size:34.980000px;}
.fs4{font-size:42.000000px;}
.fsb{font-size:43.200000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:59.400000px;}
.fs8{font-size:60.000000px;}
.fs5{font-size:78.000000px;}
.fs6{font-size:84.000000px;}
.fs7{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y3d{bottom:37.986600px;}
.y4{bottom:75.486600px;}
.ya9{bottom:98.746500px;}
.y31{bottom:112.864350px;}
.yc{bottom:112.942350px;}
.ya8{bottom:115.999500px;}
.yb{bottom:125.542350px;}
.y30{bottom:130.117350px;}
.y72{bottom:130.687200px;}
.ya7{bottom:137.745000px;}
.ya{bottom:138.142350px;}
.y2f{bottom:147.370350px;}
.y71{bottom:147.940200px;}
.y9{bottom:150.742350px;}
.ya6{bottom:154.995000px;}
.y2e{bottom:164.623350px;}
.y70{bottom:165.193200px;}
.ya5{bottom:172.245000px;}
.y2d{bottom:181.876350px;}
.y6f{bottom:182.446200px;}
.y81{bottom:183.170700px;}
.ya4{bottom:189.495000px;}
.y2c{bottom:199.129350px;}
.y8{bottom:199.342350px;}
.y6e{bottom:199.699200px;}
.y80{bottom:200.423700px;}
.ya3{bottom:206.745000px;}
.y7{bottom:212.842350px;}
.y2b{bottom:216.382350px;}
.y6d{bottom:216.952200px;}
.y7f{bottom:217.676700px;}
.ya2{bottom:223.974000px;}
.y6{bottom:226.342350px;}
.y2a{bottom:233.635350px;}
.y6c{bottom:234.205200px;}
.y7e{bottom:234.929700px;}
.y5{bottom:239.842350px;}
.ya1{bottom:241.227000px;}
.y29{bottom:250.888350px;}
.y6b{bottom:251.458200px;}
.y7d{bottom:252.182700px;}
.ya0{bottom:262.975500px;}
.y28{bottom:268.141350px;}
.y7c{bottom:269.435700px;}
.y6a{bottom:273.206700px;}
.y9f{bottom:280.228500px;}
.y27{bottom:285.394350px;}
.y7b{bottom:286.688700px;}
.y69{bottom:290.450700px;}
.y9e{bottom:297.481500px;}
.y26{bottom:302.647350px;}
.y7a{bottom:303.941700px;}
.y68{bottom:307.703700px;}
.y9d{bottom:314.734500px;}
.y25{bottom:319.900350px;}
.y79{bottom:321.194700px;}
.y67{bottom:324.956700px;}
.y9c{bottom:336.483000px;}
.y24{bottom:337.153350px;}
.y78{bottom:338.447700px;}
.y66{bottom:342.197700px;}
.y9b{bottom:353.736000px;}
.y23{bottom:354.406350px;}
.y77{bottom:355.700700px;}
.y65{bottom:359.450700px;}
.y9a{bottom:370.989000px;}
.y22{bottom:371.659350px;}
.y76{bottom:372.953700px;}
.y64{bottom:376.703700px;}
.y99{bottom:388.242000px;}
.y21{bottom:388.912350px;}
.y75{bottom:390.206700px;}
.y63{bottom:393.956700px;}
.y98{bottom:405.495000px;}
.y20{bottom:406.165350px;}
.y74{bottom:407.459700px;}
.y62{bottom:411.206700px;}
.y1f{bottom:423.418350px;}
.y97{bottom:427.243500px;}
.y61{bottom:428.453700px;}
.y73{bottom:429.209700px;}
.y1e{bottom:440.671350px;}
.y96{bottom:444.496500px;}
.y60{bottom:445.706700px;}
.y1d{bottom:457.924350px;}
.y5f{bottom:462.958200px;}
.y95{bottom:466.245000px;}
.y1c{bottom:475.177350px;}
.y94{bottom:483.498000px;}
.y5e{bottom:484.706700px;}
.y1b{bottom:492.430350px;}
.y5d{bottom:501.964200px;}
.y93{bottom:505.248000px;}
.y1a{bottom:509.683350px;}
.yd4{bottom:513.337200px;}
.y5c{bottom:523.712700px;}
.y19{bottom:526.936350px;}
.yd3{bottom:528.333450px;}
.y5b{bottom:540.209700px;}
.yd2{bottom:543.329700px;}
.y18{bottom:544.189350px;}
.yd1{bottom:558.325950px;}
.y17{bottom:561.442350px;}
.y92{bottom:561.480000px;}
.yd0{bottom:573.322200px;}
.y5a{bottom:577.709700px;}
.y91{bottom:578.733000px;}
.y16{bottom:583.192350px;}
.ycf{bottom:588.318450px;}
.y90{bottom:595.986000px;}
.yce{bottom:603.314700px;}
.y8f{bottom:613.239000px;}
.ycd{bottom:618.310950px;}
.y8e{bottom:630.492000px;}
.ycc{bottom:633.307200px;}
.y59{bottom:633.893700px;}
.y15{bottom:639.425850px;}
.y8d{bottom:647.745000px;}
.ycb{bottom:648.303450px;}
.y58{bottom:651.146700px;}
.y14{bottom:656.678850px;}
.yca{bottom:663.299700px;}
.y8c{bottom:664.998000px;}
.y57{bottom:668.399700px;}
.y13{bottom:673.931850px;}
.yc9{bottom:678.295950px;}
.y8a{bottom:679.686600px;}
.y56{bottom:685.652700px;}
.y8b{bottom:686.748000px;}
.yc8{bottom:693.292200px;}
.y89{bottom:694.686600px;}
.y55{bottom:702.905700px;}
.y12{bottom:703.186350px;}
.yc7{bottom:708.288450px;}
.y88{bottom:709.686600px;}
.y54{bottom:720.158700px;}
.yc6{bottom:723.284700px;}
.y87{bottom:724.686600px;}
.y11{bottom:729.430350px;}
.y33{bottom:732.380250px;}
.yab{bottom:736.810500px;}
.y53{bottom:737.411700px;}
.yc5{bottom:738.280950px;}
.y10{bottom:746.683350px;}
.y32{bottom:751.730250px;}
.yaa{bottom:751.810500px;}
.yc4{bottom:753.277200px;}
.y52{bottom:754.664700px;}
.yf{bottom:763.936350px;}
.yc3{bottom:768.273450px;}
.y86{bottom:769.686600px;}
.y51{bottom:771.917700px;}
.ye{bottom:781.189350px;}
.yc2{bottom:783.269700px;}
.y85{bottom:784.686600px;}
.y50{bottom:789.170700px;}
.yc1{bottom:798.265950px;}
.yd{bottom:798.442500px;}
.y84{bottom:799.686600px;}
.y4f{bottom:806.423700px;}
.yc0{bottom:813.262200px;}
.y83{bottom:814.686600px;}
.y4e{bottom:823.676700px;}
.ybf{bottom:828.258450px;}
.y82{bottom:829.686600px;}
.y4d{bottom:840.929700px;}
.ybe{bottom:843.254700px;}
.y3c{bottom:844.567350px;}
.y4c{bottom:858.182700px;}
.ybd{bottom:858.250950px;}
.y3b{bottom:868.567350px;}
.ybc{bottom:873.247200px;}
.y4b{bottom:875.435700px;}
.y3a{bottom:883.567350px;}
.ybb{bottom:888.243450px;}
.y4a{bottom:892.688700px;}
.y39{bottom:898.567350px;}
.yba{bottom:903.239700px;}
.y49{bottom:909.941700px;}
.yb9{bottom:918.235950px;}
.y48{bottom:927.194700px;}
.y38{bottom:928.567350px;}
.yb8{bottom:933.232200px;}
.y47{bottom:944.447700px;}
.y37{bottom:946.567350px;}
.yb7{bottom:948.228450px;}
.y46{bottom:961.700700px;}
.yb6{bottom:963.224700px;}
.yb5{bottom:978.220950px;}
.y45{bottom:978.953700px;}
.y36{bottom:981.067350px;}
.yb4{bottom:993.217200px;}
.y44{bottom:996.206700px;}
.yb3{bottom:1008.213450px;}
.y43{bottom:1013.459700px;}
.y35{bottom:1013.467350px;}
.yb2{bottom:1023.228450px;}
.y42{bottom:1035.209700px;}
.yb1{bottom:1038.224700px;}
.y34{bottom:1045.867350px;}
.yb0{bottom:1053.220950px;}
.yaf{bottom:1068.217200px;}
.yae{bottom:1083.213450px;}
.y41{bottom:1091.453700px;}
.yad{bottom:1098.209700px;}
.y3{bottom:1103.439450px;}
.y40{bottom:1108.706700px;}
.yac{bottom:1122.209700px;}
.y3f{bottom:1125.959700px;}
.y2{bottom:1136.834700px;}
.y1{bottom:1154.654700px;}
.y3e{bottom:1179.366450px;}
.h4{height:34.320000px;}
.h6{height:34.860000px;}
.he{height:35.992560px;}
.h17{height:37.275000px;}
.h5{height:37.350000px;}
.h10{height:37.800000px;}
.h3{height:38.610000px;}
.hf{height:38.934000px;}
.hb{height:39.840000px;}
.h2{height:42.471000px;}
.h7{height:44.819400px;}
.h8{height:44.820000px;}
.h11{height:44.826000px;}
.h13{height:44.832000px;}
.h12{height:44.844000px;}
.h15{height:44.856000px;}
.h14{height:44.868000px;}
.h16{height:44.916000px;}
.hd{height:49.013400px;}
.h9{height:55.770000px;}
.ha{height:69.720000px;}
.hc{height:77.220000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x7{left:-337.606350px;}
.x8{left:-85.039350px;}
.x0{left:0.000000px;}
.x4{left:81.000000px;}
.x9{left:91.632000px;}
.x2{left:93.134850px;}
.x5{left:288.000000px;}
.x6{left:305.995500px;}
.x1{left:715.606200px;}
.x3{left:795.108000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:13.253333pt;}
.v2{vertical-align:14.208000pt;}
.v3{vertical-align:15.994667pt;}
.v1{vertical-align:17.760000pt;}
.lsd{letter-spacing:-5.237333pt;}
.ls17{letter-spacing:-3.994667pt;}
.ls38{letter-spacing:-3.328000pt;}
.ls40{letter-spacing:-2.400000pt;}
.ls19{letter-spacing:-2.016000pt;}
.ls35{letter-spacing:-1.968000pt;}
.ls3f{letter-spacing:-1.872000pt;}
.ls1a{letter-spacing:-1.824000pt;}
.ls3a{letter-spacing:-1.632000pt;}
.ls48{letter-spacing:-1.480000pt;}
.ls10{letter-spacing:-1.344000pt;}
.ls36{letter-spacing:-1.152000pt;}
.ls1c{letter-spacing:-1.056000pt;}
.ls18{letter-spacing:-0.960000pt;}
.ls37{letter-spacing:-0.912000pt;}
.ls3d{letter-spacing:-0.864000pt;}
.ls33{letter-spacing:-0.816000pt;}
.ls41{letter-spacing:-0.720000pt;}
.ls14{letter-spacing:-0.672000pt;}
.lsc{letter-spacing:-0.624000pt;}
.ls47{letter-spacing:-0.560000pt;}
.ls3c{letter-spacing:-0.528000pt;}
.ls1b{letter-spacing:-0.480000pt;}
.ls46{letter-spacing:-0.400000pt;}
.ls15{letter-spacing:-0.336000pt;}
.ls3e{letter-spacing:-0.288000pt;}
.ls1d{letter-spacing:-0.266667pt;}
.ls12{letter-spacing:-0.240000pt;}
.ls8{letter-spacing:-0.213333pt;}
.ls34{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.144000pt;}
.ls13{letter-spacing:-0.096000pt;}
.lsa{letter-spacing:-0.048000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls31{letter-spacing:0.042667pt;}
.ls2{letter-spacing:0.048000pt;}
.lse{letter-spacing:0.096000pt;}
.ls44{letter-spacing:0.105547pt;}
.ls6{letter-spacing:0.124565pt;}
.ls11{letter-spacing:0.144000pt;}
.ls22{letter-spacing:0.170667pt;}
.ls45{letter-spacing:0.180000pt;}
.ls3b{letter-spacing:0.192000pt;}
.ls1e{letter-spacing:0.213333pt;}
.ls9{letter-spacing:0.240000pt;}
.ls2a{letter-spacing:0.242667pt;}
.ls16{letter-spacing:0.288000pt;}
.ls29{letter-spacing:0.336000pt;}
.ls2c{letter-spacing:0.354667pt;}
.ls26{letter-spacing:0.360000pt;}
.lsf{letter-spacing:0.384000pt;}
.ls5{letter-spacing:0.426667pt;}
.ls28{letter-spacing:0.432000pt;}
.ls2f{letter-spacing:0.465067pt;}
.ls42{letter-spacing:0.480000pt;}
.ls43{letter-spacing:0.512000pt;}
.ls39{letter-spacing:0.528000pt;}
.ls2b{letter-spacing:0.672000pt;}
.ls1f{letter-spacing:0.682667pt;}
.ls24{letter-spacing:0.787200pt;}
.ls2e{letter-spacing:0.816000pt;}
.ls2d{letter-spacing:0.864000pt;}
.ls1{letter-spacing:1.040000pt;}
.ls25{letter-spacing:1.084800pt;}
.ls27{letter-spacing:1.170667pt;}
.ls32{letter-spacing:1.248000pt;}
.ls30{letter-spacing:1.259200pt;}
.ls23{letter-spacing:1.296000pt;}
.ls3{letter-spacing:1.440000pt;}
.ls4{letter-spacing:1.978709pt;}
.ls0{letter-spacing:3.840000pt;}
.ls21{letter-spacing:12.288000pt;}
.ls20{letter-spacing:13.269333pt;}
.ws47{word-spacing:-14.560000pt;}
.ws5{word-spacing:-14.352000pt;}
.ws81{word-spacing:-10.272000pt;}
.ws9{word-spacing:-9.984000pt;}
.ws4f{word-spacing:-9.936000pt;}
.ws51{word-spacing:-9.840000pt;}
.ws4d{word-spacing:-9.792000pt;}
.ws2{word-spacing:-9.648000pt;}
.wse{word-spacing:-9.600000pt;}
.ws4a{word-spacing:-9.552000pt;}
.ws50{word-spacing:-9.312000pt;}
.ws4e{word-spacing:-9.072000pt;}
.ws53{word-spacing:-8.880000pt;}
.ws80{word-spacing:-8.874667pt;}
.ws48{word-spacing:-8.784000pt;}
.ws89{word-spacing:-8.704000pt;}
.wsc{word-spacing:-8.496000pt;}
.ws7b{word-spacing:-8.405333pt;}
.ws46{word-spacing:-8.362667pt;}
.ws8{word-spacing:-8.304000pt;}
.ws7{word-spacing:-8.256000pt;}
.wsa{word-spacing:-8.160000pt;}
.ws3{word-spacing:-8.064000pt;}
.ws8b{word-spacing:-8.000000pt;}
.ws0{word-spacing:-7.978667pt;}
.ws1{word-spacing:-7.840000pt;}
.ws4b{word-spacing:-7.776000pt;}
.ws52{word-spacing:-7.728000pt;}
.ws11{word-spacing:-7.722667pt;}
.ws4c{word-spacing:-7.680000pt;}
.ws49{word-spacing:-7.632000pt;}
.ws4{word-spacing:-7.584000pt;}
.wsd{word-spacing:-7.536000pt;}
.ws10{word-spacing:-7.296000pt;}
.wsb{word-spacing:-6.864000pt;}
.ws8a{word-spacing:-6.840000pt;}
.wsf{word-spacing:-6.218667pt;}
.ws6{word-spacing:-4.362667pt;}
.ws77{word-spacing:-1.920000pt;}
.ws24{word-spacing:-1.872000pt;}
.ws21{word-spacing:-1.728000pt;}
.ws5c{word-spacing:-1.680000pt;}
.ws57{word-spacing:-1.632000pt;}
.ws29{word-spacing:-1.584000pt;}
.ws78{word-spacing:-1.536000pt;}
.ws28{word-spacing:-1.440000pt;}
.ws93{word-spacing:-1.400000pt;}
.ws59{word-spacing:-1.296000pt;}
.ws2a{word-spacing:-1.248000pt;}
.ws6e{word-spacing:-1.200000pt;}
.ws22{word-spacing:-1.152000pt;}
.ws5a{word-spacing:-1.104000pt;}
.ws6f{word-spacing:-1.008000pt;}
.ws58{word-spacing:-0.960000pt;}
.ws5e{word-spacing:-0.768000pt;}
.ws26{word-spacing:-0.720000pt;}
.ws1f{word-spacing:-0.576000pt;}
.ws84{word-spacing:-0.554667pt;}
.ws13{word-spacing:-0.480000pt;}
.ws45{word-spacing:-0.469333pt;}
.ws87{word-spacing:-0.432000pt;}
.ws7f{word-spacing:-0.426667pt;}
.ws88{word-spacing:-0.384000pt;}
.ws85{word-spacing:-0.336000pt;}
.ws86{word-spacing:-0.288000pt;}
.ws5b{word-spacing:-0.240000pt;}
.ws44{word-spacing:-0.213333pt;}
.ws83{word-spacing:-0.192000pt;}
.ws1d{word-spacing:-0.048000pt;}
.ws55{word-spacing:-0.042667pt;}
.ws8e{word-spacing:-0.040000pt;}
.ws12{word-spacing:0.000000pt;}
.ws23{word-spacing:0.048000pt;}
.ws97{word-spacing:0.080000pt;}
.ws1e{word-spacing:0.096000pt;}
.ws18{word-spacing:0.144000pt;}
.ws14{word-spacing:0.192000pt;}
.ws8f{word-spacing:0.200000pt;}
.ws2b{word-spacing:0.240000pt;}
.ws9e{word-spacing:0.280000pt;}
.ws70{word-spacing:0.288000pt;}
.ws98{word-spacing:0.320000pt;}
.ws32{word-spacing:0.336000pt;}
.ws99{word-spacing:0.360000pt;}
.ws65{word-spacing:0.384000pt;}
.ws73{word-spacing:0.432000pt;}
.ws56{word-spacing:0.480000pt;}
.ws43{word-spacing:0.576000pt;}
.ws90{word-spacing:0.600000pt;}
.ws66{word-spacing:0.624000pt;}
.wsa0{word-spacing:0.640000pt;}
.ws6b{word-spacing:0.672000pt;}
.wsa1{word-spacing:0.680000pt;}
.ws40{word-spacing:0.720000pt;}
.ws91{word-spacing:0.760000pt;}
.ws1b{word-spacing:0.768000pt;}
.ws25{word-spacing:0.864000pt;}
.ws15{word-spacing:0.912000pt;}
.ws16{word-spacing:0.960000pt;}
.ws42{word-spacing:1.056000pt;}
.ws20{word-spacing:1.104000pt;}
.ws5f{word-spacing:1.152000pt;}
.ws6a{word-spacing:1.200000pt;}
.ws67{word-spacing:1.248000pt;}
.ws9f{word-spacing:1.280000pt;}
.ws60{word-spacing:1.296000pt;}
.ws27{word-spacing:1.344000pt;}
.ws74{word-spacing:1.392000pt;}
.ws62{word-spacing:1.440000pt;}
.ws95{word-spacing:1.480000pt;}
.ws6c{word-spacing:1.488000pt;}
.ws61{word-spacing:1.536000pt;}
.ws75{word-spacing:1.584000pt;}
.ws6d{word-spacing:1.632000pt;}
.ws9d{word-spacing:1.800000pt;}
.ws3a{word-spacing:1.824000pt;}
.ws31{word-spacing:1.872000pt;}
.ws76{word-spacing:1.920000pt;}
.ws17{word-spacing:1.968000pt;}
.ws94{word-spacing:2.000000pt;}
.ws2f{word-spacing:2.016000pt;}
.ws19{word-spacing:2.064000pt;}
.ws1a{word-spacing:2.112000pt;}
.ws34{word-spacing:2.208000pt;}
.ws2d{word-spacing:2.256000pt;}
.ws39{word-spacing:2.304000pt;}
.ws38{word-spacing:2.400000pt;}
.ws2e{word-spacing:2.496000pt;}
.ws8c{word-spacing:2.520000pt;}
.ws35{word-spacing:2.544000pt;}
.ws8d{word-spacing:2.560000pt;}
.ws30{word-spacing:2.592000pt;}
.ws37{word-spacing:2.640000pt;}
.ws5d{word-spacing:2.736000pt;}
.ws3b{word-spacing:2.784000pt;}
.ws36{word-spacing:2.832000pt;}
.ws7a{word-spacing:3.120000pt;}
.ws72{word-spacing:3.168000pt;}
.ws7c{word-spacing:3.216000pt;}
.ws2c{word-spacing:3.264000pt;}
.ws3e{word-spacing:3.408000pt;}
.ws1c{word-spacing:3.456000pt;}
.ws79{word-spacing:3.504000pt;}
.ws69{word-spacing:3.552000pt;}
.ws96{word-spacing:3.560000pt;}
.ws7d{word-spacing:3.696000pt;}
.ws3d{word-spacing:3.792000pt;}
.ws9c{word-spacing:3.800000pt;}
.ws7e{word-spacing:3.888000pt;}
.ws63{word-spacing:4.080000pt;}
.ws82{word-spacing:4.128000pt;}
.ws3f{word-spacing:4.224000pt;}
.ws71{word-spacing:4.368000pt;}
.ws92{word-spacing:4.440000pt;}
.ws68{word-spacing:4.464000pt;}
.ws64{word-spacing:4.800000pt;}
.ws33{word-spacing:4.896000pt;}
.ws3c{word-spacing:5.232000pt;}
.ws9a{word-spacing:5.680000pt;}
.ws9b{word-spacing:5.800000pt;}
.ws54{word-spacing:12.800000pt;}
.ws41{word-spacing:22.400000pt;}
._8{margin-left:-22.400000pt;}
._b{margin-left:-12.800000pt;}
._e{margin-left:-5.706451pt;}
._4{margin-left:-4.501344pt;}
._7{margin-left:-3.570744pt;}
._1{margin-left:-2.314667pt;}
._0{margin-left:-1.056000pt;}
._2{width:0.970613pt;}
._3{width:2.218728pt;}
._5{width:3.269333pt;}
._6{width:4.831358pt;}
._a{width:11.562667pt;}
._c{width:13.226882pt;}
._9{width:16.042667pt;}
._10{width:34.975041pt;}
._f{width:1644.597603pt;}
._d{width:1645.664269pt;}
._11{width:1651.637603pt;}
.fsd{font-size:23.320000pt;}
.fsa{font-size:24.874667pt;}
.fsc{font-size:27.984000pt;}
.fs9{font-size:31.093333pt;}
.fs4{font-size:37.333333pt;}
.fsb{font-size:38.400000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:52.800000pt;}
.fs8{font-size:53.333333pt;}
.fs5{font-size:69.333333pt;}
.fs6{font-size:74.666667pt;}
.fs7{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y3d{bottom:33.765867pt;}
.y4{bottom:67.099200pt;}
.ya9{bottom:87.774667pt;}
.y31{bottom:100.323867pt;}
.yc{bottom:100.393200pt;}
.ya8{bottom:103.110667pt;}
.yb{bottom:111.593200pt;}
.y30{bottom:115.659867pt;}
.y72{bottom:116.166400pt;}
.ya7{bottom:122.440000pt;}
.ya{bottom:122.793200pt;}
.y2f{bottom:130.995867pt;}
.y71{bottom:131.502400pt;}
.y9{bottom:133.993200pt;}
.ya6{bottom:137.773333pt;}
.y2e{bottom:146.331867pt;}
.y70{bottom:146.838400pt;}
.ya5{bottom:153.106667pt;}
.y2d{bottom:161.667867pt;}
.y6f{bottom:162.174400pt;}
.y81{bottom:162.818400pt;}
.ya4{bottom:168.440000pt;}
.y2c{bottom:177.003867pt;}
.y8{bottom:177.193200pt;}
.y6e{bottom:177.510400pt;}
.y80{bottom:178.154400pt;}
.ya3{bottom:183.773333pt;}
.y7{bottom:189.193200pt;}
.y2b{bottom:192.339867pt;}
.y6d{bottom:192.846400pt;}
.y7f{bottom:193.490400pt;}
.ya2{bottom:199.088000pt;}
.y6{bottom:201.193200pt;}
.y2a{bottom:207.675867pt;}
.y6c{bottom:208.182400pt;}
.y7e{bottom:208.826400pt;}
.y5{bottom:213.193200pt;}
.ya1{bottom:214.424000pt;}
.y29{bottom:223.011867pt;}
.y6b{bottom:223.518400pt;}
.y7d{bottom:224.162400pt;}
.ya0{bottom:233.756000pt;}
.y28{bottom:238.347867pt;}
.y7c{bottom:239.498400pt;}
.y6a{bottom:242.850400pt;}
.y9f{bottom:249.092000pt;}
.y27{bottom:253.683867pt;}
.y7b{bottom:254.834400pt;}
.y69{bottom:258.178400pt;}
.y9e{bottom:264.428000pt;}
.y26{bottom:269.019867pt;}
.y7a{bottom:270.170400pt;}
.y68{bottom:273.514400pt;}
.y9d{bottom:279.764000pt;}
.y25{bottom:284.355867pt;}
.y79{bottom:285.506400pt;}
.y67{bottom:288.850400pt;}
.y9c{bottom:299.096000pt;}
.y24{bottom:299.691867pt;}
.y78{bottom:300.842400pt;}
.y66{bottom:304.175733pt;}
.y9b{bottom:314.432000pt;}
.y23{bottom:315.027867pt;}
.y77{bottom:316.178400pt;}
.y65{bottom:319.511733pt;}
.y9a{bottom:329.768000pt;}
.y22{bottom:330.363867pt;}
.y76{bottom:331.514400pt;}
.y64{bottom:334.847733pt;}
.y99{bottom:345.104000pt;}
.y21{bottom:345.699867pt;}
.y75{bottom:346.850400pt;}
.y63{bottom:350.183733pt;}
.y98{bottom:360.440000pt;}
.y20{bottom:361.035867pt;}
.y74{bottom:362.186400pt;}
.y62{bottom:365.517067pt;}
.y1f{bottom:376.371867pt;}
.y97{bottom:379.772000pt;}
.y61{bottom:380.847733pt;}
.y73{bottom:381.519733pt;}
.y1e{bottom:391.707867pt;}
.y96{bottom:395.108000pt;}
.y60{bottom:396.183733pt;}
.y1d{bottom:407.043867pt;}
.y5f{bottom:411.518400pt;}
.y95{bottom:414.440000pt;}
.y1c{bottom:422.379867pt;}
.y94{bottom:429.776000pt;}
.y5e{bottom:430.850400pt;}
.y1b{bottom:437.715867pt;}
.y5d{bottom:446.190400pt;}
.y93{bottom:449.109333pt;}
.y1a{bottom:453.051867pt;}
.yd4{bottom:456.299733pt;}
.y5c{bottom:465.522400pt;}
.y19{bottom:468.387867pt;}
.yd3{bottom:469.629733pt;}
.y5b{bottom:480.186400pt;}
.yd2{bottom:482.959733pt;}
.y18{bottom:483.723867pt;}
.yd1{bottom:496.289733pt;}
.y17{bottom:499.059867pt;}
.y92{bottom:499.093333pt;}
.yd0{bottom:509.619733pt;}
.y5a{bottom:513.519733pt;}
.y91{bottom:514.429333pt;}
.y16{bottom:518.393200pt;}
.ycf{bottom:522.949733pt;}
.y90{bottom:529.765333pt;}
.yce{bottom:536.279733pt;}
.y8f{bottom:545.101333pt;}
.ycd{bottom:549.609733pt;}
.y8e{bottom:560.437333pt;}
.ycc{bottom:562.939733pt;}
.y59{bottom:563.461067pt;}
.y15{bottom:568.378533pt;}
.y8d{bottom:575.773333pt;}
.ycb{bottom:576.269733pt;}
.y58{bottom:578.797067pt;}
.y14{bottom:583.714533pt;}
.yca{bottom:589.599733pt;}
.y8c{bottom:591.109333pt;}
.y57{bottom:594.133067pt;}
.y13{bottom:599.050533pt;}
.yc9{bottom:602.929733pt;}
.y8a{bottom:604.165867pt;}
.y56{bottom:609.469067pt;}
.y8b{bottom:610.442667pt;}
.yc8{bottom:616.259733pt;}
.y89{bottom:617.499200pt;}
.y55{bottom:624.805067pt;}
.y12{bottom:625.054533pt;}
.yc7{bottom:629.589733pt;}
.y88{bottom:630.832533pt;}
.y54{bottom:640.141067pt;}
.yc6{bottom:642.919733pt;}
.y87{bottom:644.165867pt;}
.y11{bottom:648.382533pt;}
.y33{bottom:651.004667pt;}
.yab{bottom:654.942667pt;}
.y53{bottom:655.477067pt;}
.yc5{bottom:656.249733pt;}
.y10{bottom:663.718533pt;}
.y32{bottom:668.204667pt;}
.yaa{bottom:668.276000pt;}
.yc4{bottom:669.579733pt;}
.y52{bottom:670.813067pt;}
.yf{bottom:679.054533pt;}
.yc3{bottom:682.909733pt;}
.y86{bottom:684.165867pt;}
.y51{bottom:686.149067pt;}
.ye{bottom:694.390533pt;}
.yc2{bottom:696.239733pt;}
.y85{bottom:697.499200pt;}
.y50{bottom:701.485067pt;}
.yc1{bottom:709.569733pt;}
.yd{bottom:709.726667pt;}
.y84{bottom:710.832533pt;}
.y4f{bottom:716.821067pt;}
.yc0{bottom:722.899733pt;}
.y83{bottom:724.165867pt;}
.y4e{bottom:732.157067pt;}
.ybf{bottom:736.229733pt;}
.y82{bottom:737.499200pt;}
.y4d{bottom:747.493067pt;}
.ybe{bottom:749.559733pt;}
.y3c{bottom:750.726533pt;}
.y4c{bottom:762.829067pt;}
.ybd{bottom:762.889733pt;}
.y3b{bottom:772.059867pt;}
.ybc{bottom:776.219733pt;}
.y4b{bottom:778.165067pt;}
.y3a{bottom:785.393200pt;}
.ybb{bottom:789.549733pt;}
.y4a{bottom:793.501067pt;}
.y39{bottom:798.726533pt;}
.yba{bottom:802.879733pt;}
.y49{bottom:808.837067pt;}
.yb9{bottom:816.209733pt;}
.y48{bottom:824.173067pt;}
.y38{bottom:825.393200pt;}
.yb8{bottom:829.539733pt;}
.y47{bottom:839.509067pt;}
.y37{bottom:841.393200pt;}
.yb7{bottom:842.869733pt;}
.y46{bottom:854.845067pt;}
.yb6{bottom:856.199733pt;}
.yb5{bottom:869.529733pt;}
.y45{bottom:870.181067pt;}
.y36{bottom:872.059867pt;}
.yb4{bottom:882.859733pt;}
.y44{bottom:885.517067pt;}
.yb3{bottom:896.189733pt;}
.y43{bottom:900.853067pt;}
.y35{bottom:900.859867pt;}
.yb2{bottom:909.536400pt;}
.y42{bottom:920.186400pt;}
.yb1{bottom:922.866400pt;}
.y34{bottom:929.659867pt;}
.yb0{bottom:936.196400pt;}
.yaf{bottom:949.526400pt;}
.yae{bottom:962.856400pt;}
.y41{bottom:970.181067pt;}
.yad{bottom:976.186400pt;}
.y3{bottom:980.835067pt;}
.y40{bottom:985.517067pt;}
.yac{bottom:997.519733pt;}
.y3f{bottom:1000.853067pt;}
.y2{bottom:1010.519733pt;}
.y1{bottom:1026.359733pt;}
.y3e{bottom:1048.325733pt;}
.h4{height:30.506667pt;}
.h6{height:30.986667pt;}
.he{height:31.993387pt;}
.h17{height:33.133333pt;}
.h5{height:33.200000pt;}
.h10{height:33.600000pt;}
.h3{height:34.320000pt;}
.hf{height:34.608000pt;}
.hb{height:35.413333pt;}
.h2{height:37.752000pt;}
.h7{height:39.839467pt;}
.h8{height:39.840000pt;}
.h11{height:39.845333pt;}
.h13{height:39.850667pt;}
.h12{height:39.861333pt;}
.h15{height:39.872000pt;}
.h14{height:39.882667pt;}
.h16{height:39.925333pt;}
.hd{height:43.567467pt;}
.h9{height:49.573333pt;}
.ha{height:61.973333pt;}
.hc{height:68.640000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x7{left:-300.094533pt;}
.x8{left:-75.590533pt;}
.x0{left:0.000000pt;}
.x4{left:72.000000pt;}
.x9{left:81.450667pt;}
.x2{left:82.786533pt;}
.x5{left:256.000000pt;}
.x6{left:271.996000pt;}
.x1{left:636.094400pt;}
.x3{left:706.762667pt;}
}




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