
    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_650644f41416308e401eb0f6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.085000;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_e691d4bf8ed54d7fc54687b1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.666504;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_ba218cfa7f2cdbdab384cb4b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_34cd918537cf9d7c37906812.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.995000;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_ff2451ae43fcc27db0cf7e7f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.095000;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_58a5f9c10778761a07ed53bf.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.090000;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_ab4de1a9372a356318e09583.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_5052631ad21baeb364426e03.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_04b9ba0bc26ce77df24b797e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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_04e2e5cbe728c8ff8db480a3.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.940000;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_b601a4b16f81733b360b84a5.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.097000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.ls9d{letter-spacing:-1.802304px;}
.ls74{letter-spacing:-1.351296px;}
.ls22{letter-spacing:-1.181952px;}
.ls11{letter-spacing:-1.067040px;}
.ls26{letter-spacing:-0.995904px;}
.ls59{letter-spacing:-0.986976px;}
.ls12{letter-spacing:-0.941184px;}
.ls9e{letter-spacing:-0.816480px;}
.ls3f{letter-spacing:-0.720000px;}
.ls73{letter-spacing:-0.708768px;}
.ls1f{letter-spacing:-0.673056px;}
.ls4b{letter-spacing:-0.642528px;}
.ls9a{letter-spacing:-0.628992px;}
.ls1b{letter-spacing:-0.626400px;}
.ls67{letter-spacing:-0.622656px;}
.ls4f{letter-spacing:-0.574560px;}
.ls72{letter-spacing:-0.569664px;}
.ls92{letter-spacing:-0.568512px;}
.ls42{letter-spacing:-0.563040px;}
.ls29{letter-spacing:-0.560736px;}
.ls2f{letter-spacing:-0.544320px;}
.ls57{letter-spacing:-0.523296px;}
.ls21{letter-spacing:-0.519840px;}
.lsa0{letter-spacing:-0.514080px;}
.ls43{letter-spacing:-0.510048px;}
.ls3e{letter-spacing:-0.504000px;}
.lsa1{letter-spacing:-0.471744px;}
.ls25{letter-spacing:-0.443232px;}
.ls88{letter-spacing:-0.441504px;}
.ls35{letter-spacing:-0.417312px;}
.ls94{letter-spacing:-0.405216px;}
.ls5c{letter-spacing:-0.397440px;}
.ls52{letter-spacing:-0.390816px;}
.ls3c{letter-spacing:-0.387072px;}
.ls38{letter-spacing:-0.362880px;}
.ls6b{letter-spacing:-0.351072px;}
.ls10{letter-spacing:-0.344736px;}
.ls8d{letter-spacing:-0.332640px;}
.ls14{letter-spacing:-0.328320px;}
.ls27{letter-spacing:-0.308880px;}
.ls18{letter-spacing:-0.300672px;}
.ls8e{letter-spacing:-0.296352px;}
.ls41{letter-spacing:-0.288000px;}
.ls95{letter-spacing:-0.278208px;}
.ls30{letter-spacing:-0.272160px;}
.ls98{letter-spacing:-0.266112px;}
.lsb{letter-spacing:-0.229824px;}
.ls58{letter-spacing:-0.211968px;}
.ls2d{letter-spacing:-0.199584px;}
.ls65{letter-spacing:-0.198720px;}
.ls2c{letter-spacing:-0.194832px;}
.ls8c{letter-spacing:-0.181440px;}
.ls85{letter-spacing:-0.178848px;}
.ls84{letter-spacing:-0.172224px;}
.ls28{letter-spacing:-0.156816px;}
.ls6c{letter-spacing:-0.139104px;}
.ls2e{letter-spacing:-0.133056px;}
.ls36{letter-spacing:-0.114912px;}
.ls4a{letter-spacing:-0.112608px;}
.ls87{letter-spacing:-0.090720px;}
.ls9b{letter-spacing:-0.066528px;}
.ls56{letter-spacing:-0.059616px;}
.ls34{letter-spacing:-0.042336px;}
.ls4e{letter-spacing:-0.036288px;}
.ls93{letter-spacing:-0.030240px;}
.ls19{letter-spacing:-0.016704px;}
.ls60{letter-spacing:-0.013248px;}
.lsc{letter-spacing:0.000000px;}
.ls24{letter-spacing:0.010944px;}
.lsd{letter-spacing:0.032832px;}
.lsf{letter-spacing:0.043776px;}
.ls82{letter-spacing:0.046368px;}
.ls4{letter-spacing:0.057600px;}
.ls86{letter-spacing:0.059616px;}
.ls83{letter-spacing:0.072864px;}
.ls5a{letter-spacing:0.079488px;}
.ls49{letter-spacing:0.086112px;}
.ls13{letter-spacing:0.114912px;}
.ls1e{letter-spacing:0.175104px;}
.ls48{letter-spacing:0.178848px;}
.ls2{letter-spacing:0.205344px;}
.ls3{letter-spacing:0.205920px;}
.ls5d{letter-spacing:0.216000px;}
.ls5{letter-spacing:0.228096px;}
.ls99{letter-spacing:0.229824px;}
.ls4c{letter-spacing:0.237600px;}
.ls64{letter-spacing:0.245088px;}
.ls1a{letter-spacing:0.250560px;}
.ls51{letter-spacing:0.258336px;}
.ls90{letter-spacing:0.260064px;}
.ls39{letter-spacing:0.290304px;}
.ls81{letter-spacing:0.291456px;}
.ls3d{letter-spacing:0.302400px;}
.ls44{letter-spacing:0.304704px;}
.ls55{letter-spacing:0.324576px;}
.ls50{letter-spacing:0.326592px;}
.ls54{letter-spacing:0.331200px;}
.ls32{letter-spacing:0.350784px;}
.ls40{letter-spacing:0.360000px;}
.ls1c{letter-spacing:0.377568px;}
.ls46{letter-spacing:0.397440px;}
.ls15{letter-spacing:0.399456px;}
.ls16{letter-spacing:0.426816px;}
.ls47{letter-spacing:0.443808px;}
.ls31{letter-spacing:0.447552px;}
.ls62{letter-spacing:0.455040px;}
.ls5f{letter-spacing:0.457056px;}
.ls4d{letter-spacing:0.470448px;}
.lse{letter-spacing:0.476064px;}
.ls91{letter-spacing:0.477792px;}
.ls89{letter-spacing:0.489888px;}
.ls8b{letter-spacing:0.495936px;}
.ls23{letter-spacing:0.503424px;}
.ls5b{letter-spacing:0.516672px;}
.ls97{letter-spacing:0.526176px;}
.ls8a{letter-spacing:0.532224px;}
.ls45{letter-spacing:0.536544px;}
.ls9c{letter-spacing:0.544320px;}
.ls8f{letter-spacing:0.556416px;}
.ls80{letter-spacing:0.568512px;}
.lsa{letter-spacing:0.570240px;}
.ls1d{letter-spacing:0.574560px;}
.ls0{letter-spacing:0.576000px;}
.ls7b{letter-spacing:0.598752px;}
.ls6a{letter-spacing:0.602784px;}
.ls7e{letter-spacing:0.604800px;}
.ls7a{letter-spacing:0.610848px;}
.ls78{letter-spacing:0.616896px;}
.ls20{letter-spacing:0.618336px;}
.ls3a{letter-spacing:0.622944px;}
.ls77{letter-spacing:0.629856px;}
.ls96{letter-spacing:0.635040px;}
.ls33{letter-spacing:0.641088px;}
.ls63{letter-spacing:0.642528px;}
.ls7d{letter-spacing:0.653184px;}
.ls6f{letter-spacing:0.669024px;}
.ls37{letter-spacing:0.677376px;}
.ls17{letter-spacing:0.678528px;}
.ls7{letter-spacing:0.708480px;}
.ls53{letter-spacing:0.708768px;}
.ls9{letter-spacing:0.720000px;}
.ls69{letter-spacing:0.735264px;}
.ls9f{letter-spacing:0.762048px;}
.ls2a{letter-spacing:0.822096px;}
.ls66{letter-spacing:0.914112px;}
.ls1{letter-spacing:0.967680px;}
.ls3b{letter-spacing:1.167264px;}
.ls2b{letter-spacing:1.245024px;}
.ls71{letter-spacing:1.642752px;}
.ls7c{letter-spacing:2.304000px;}
.ls6d{letter-spacing:2.592000px;}
.ls79{letter-spacing:3.744000px;}
.ls5e{letter-spacing:4.032000px;}
.ls68{letter-spacing:5.472000px;}
.ls6{letter-spacing:6.624000px;}
.ls6e{letter-spacing:6.912000px;}
.ls7f{letter-spacing:9.504000px;}
.ls61{letter-spacing:9.792000px;}
.ls76{letter-spacing:12.672000px;}
.ls8{letter-spacing:15.264000px;}
.ls75{letter-spacing:15.552000px;}
.ls70{letter-spacing:18.432000px;}
.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;}
}
.ws7{word-spacing:-19.794240px;}
.ws1e{word-spacing:-17.280000px;}
.ws25{word-spacing:-17.064000px;}
.ws19{word-spacing:-16.776000px;}
.ws2c{word-spacing:-15.758496px;}
.ws29{word-spacing:-15.745248px;}
.ws2a{word-spacing:-15.698880px;}
.ws18{word-spacing:-14.400000px;}
.ws9{word-spacing:-13.989024px;}
.ws17{word-spacing:-13.896000px;}
.ws23{word-spacing:-13.784544px;}
.ws2b{word-spacing:-13.691808px;}
.ws1f{word-spacing:-13.645440px;}
.ws24{word-spacing:-13.552704px;}
.ws27{word-spacing:-13.453344px;}
.ws28{word-spacing:-13.426848px;}
.ws26{word-spacing:-13.334112px;}
.ws8{word-spacing:-13.248000px;}
.wsd{word-spacing:-13.143744px;}
.ws20{word-spacing:-13.135392px;}
.ws21{word-spacing:-13.036032px;}
.wsf{word-spacing:-12.979584px;}
.ws22{word-spacing:-12.857184px;}
.ws4b{word-spacing:-12.773376px;}
.ws1d{word-spacing:-12.737952px;}
.ws44{word-spacing:-12.670560px;}
.ws3d{word-spacing:-12.652416px;}
.ws2d{word-spacing:-12.628224px;}
.ws2f{word-spacing:-12.591936px;}
.ws4d{word-spacing:-12.585888px;}
.ws38{word-spacing:-12.573792px;}
.ws3f{word-spacing:-12.446784px;}
.ws47{word-spacing:-12.422592px;}
.ws16{word-spacing:-12.398400px;}
.ws49{word-spacing:-12.386304px;}
.ws32{word-spacing:-12.356064px;}
.ws2e{word-spacing:-12.096000px;}
.ws39{word-spacing:-12.065760px;}
.ws3c{word-spacing:-12.053664px;}
.ws0{word-spacing:-11.866176px;}
.ws42{word-spacing:-11.817792px;}
.ws52{word-spacing:-11.763360px;}
.ws3b{word-spacing:-11.733120px;}
.ws40{word-spacing:-11.708928px;}
.ws35{word-spacing:-11.678688px;}
.ws6{word-spacing:-11.622528px;}
.wsb{word-spacing:-11.562336px;}
.ws4a{word-spacing:-11.467008px;}
.wse{word-spacing:-11.447424px;}
.ws11{word-spacing:-11.420064px;}
.ws5{word-spacing:-11.343456px;}
.ws51{word-spacing:-11.279520px;}
.ws10{word-spacing:-11.058912px;}
.ws1{word-spacing:-10.944000px;}
.ws15{word-spacing:-10.749024px;}
.ws4{word-spacing:-10.615680px;}
.ws2{word-spacing:-10.599264px;}
.ws4f{word-spacing:-10.293696px;}
.wsa{word-spacing:-10.270944px;}
.ws3{word-spacing:-10.002816px;}
.wsc{word-spacing:-9.762048px;}
.ws12{word-spacing:-9.732096px;}
.ws13{word-spacing:-9.504000px;}
.ws14{word-spacing:-8.943264px;}
.ws50{word-spacing:-0.737856px;}
.ws43{word-spacing:-0.635040px;}
.ws46{word-spacing:-0.586656px;}
.ws30{word-spacing:-0.556416px;}
.ws4c{word-spacing:-0.550368px;}
.ws37{word-spacing:-0.538272px;}
.ws3e{word-spacing:-0.411264px;}
.ws1b{word-spacing:-0.397440px;}
.ws1c{word-spacing:-0.390816px;}
.ws33{word-spacing:-0.320544px;}
.ws3a{word-spacing:-0.030240px;}
.ws31{word-spacing:-0.024192px;}
.ws36{word-spacing:-0.018144px;}
.ws1a{word-spacing:0.000000px;}
.ws4e{word-spacing:0.120960px;}
.ws41{word-spacing:0.217728px;}
.ws34{word-spacing:0.272160px;}
.ws45{word-spacing:0.356832px;}
.ws53{word-spacing:0.411264px;}
.ws48{word-spacing:0.483840px;}
._b{margin-left:-4.259520px;}
._1{margin-left:-2.845440px;}
._0{margin-left:-1.422720px;}
._2{width:1.498464px;}
._4{width:2.569536px;}
._d{width:3.915936px;}
._15{width:4.951872px;}
._7{width:5.987520px;}
._8{width:7.076160px;}
._11{width:8.136864px;}
._10{width:9.469440px;}
._c{width:10.476576px;}
._12{width:11.557440px;}
._6{width:12.942720px;}
._e{width:14.400000px;}
._f{width:15.875136px;}
._a{width:17.734176px;}
._9{width:18.930240px;}
._16{width:21.294720px;}
._19{width:22.540896px;}
._17{width:23.546880px;}
._18{width:24.715584px;}
._1b{width:40.588416px;}
._1a{width:41.912640px;}
._5{width:48.301632px;}
._3{width:49.458528px;}
._13{width:64.364256px;}
._14{width:66.654720px;}
.fc2{color:rgb(83,129,53);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:11.520000px;}
.fs7{font-size:38.880000px;}
.fs2{font-size:47.520000px;}
.fs1{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs6{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs5{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y3{bottom:0.720000px;}
.y7{bottom:4.680000px;}
.y12{bottom:7.260000px;}
.y41{bottom:8.760000px;}
.y14{bottom:14.940000px;}
.yf3{bottom:17.820000px;}
.y46{bottom:19.080000px;}
.yc{bottom:19.380000px;}
.y2a{bottom:19.560000px;}
.y6{bottom:22.320000px;}
.ya{bottom:26.640000px;}
.y40{bottom:28.200000px;}
.y11{bottom:34.980000px;}
.y29{bottom:37.200000px;}
.y1{bottom:37.620000px;}
.y5{bottom:39.960000px;}
.yf2{bottom:42.300000px;}
.y9{bottom:44.280000px;}
.y45{bottom:46.440000px;}
.y3f{bottom:48.000000px;}
.y28{bottom:52.680000px;}
.y53{bottom:56.340000px;}
.y4{bottom:57.600000px;}
.y81{bottom:57.780000px;}
.y8e{bottom:60.300000px;}
.y8{bottom:61.920000px;}
.y10{bottom:66.660000px;}
.yf1{bottom:67.140000px;}
.y3e{bottom:67.440000px;}
.y27{bottom:68.520000px;}
.ye9{bottom:68.580000px;}
.y52{bottom:72.540000px;}
.y44{bottom:73.440000px;}
.ybf{bottom:76.860000px;}
.y80{bottom:82.620000px;}
.y26{bottom:84.000000px;}
.y3d{bottom:86.880000px;}
.yf0{bottom:91.980000px;}
.ye8{bottom:93.420000px;}
.yf{bottom:94.020000px;}
.y43{bottom:96.840000px;}
.y8d{bottom:100.980000px;}
.ybe{bottom:101.700000px;}
.y3c{bottom:106.680000px;}
.y7f{bottom:107.460000px;}
.y25{bottom:108.840000px;}
.y108{bottom:108.900000px;}
.y51{bottom:114.300000px;}
.yef{bottom:116.820000px;}
.ye7{bottom:117.900000px;}
.y3b{bottom:126.120000px;}
.y24{bottom:126.480000px;}
.ye{bottom:126.780000px;}
.y107{bottom:128.340000px;}
.y7e{bottom:132.300000px;}
.ybd{bottom:135.180000px;}
.y50{bottom:138.780000px;}
.yee{bottom:141.660000px;}
.ye6{bottom:142.740000px;}
.y23{bottom:144.120000px;}
.y3a{bottom:145.920000px;}
.y106{bottom:147.780000px;}
.y7d{bottom:157.140000px;}
.y22{bottom:161.760000px;}
.y4f{bottom:163.620000px;}
.y39{bottom:165.360000px;}
.yed{bottom:166.140000px;}
.ye5{bottom:167.580000px;}
.ybc{bottom:169.740000px;}
.ycc{bottom:174.420000px;}
.y21{bottom:179.400000px;}
.y7c{bottom:181.620000px;}
.y38{bottom:184.800000px;}
.y105{bottom:187.020000px;}
.y4e{bottom:188.460000px;}
.yec{bottom:190.980000px;}
.ye4{bottom:192.420000px;}
.y20{bottom:197.040000px;}
.ycb{bottom:199.260000px;}
.y37{bottom:204.600000px;}
.y7b{bottom:206.460000px;}
.y104{bottom:206.820000px;}
.y4d{bottom:213.300000px;}
.y1f{bottom:214.680000px;}
.ye3{bottom:217.260000px;}
.yca{bottom:223.740000px;}
.y36{bottom:224.040000px;}
.y103{bottom:226.260000px;}
.y7a{bottom:231.300000px;}
.y9a{bottom:231.660000px;}
.y1e{bottom:232.320000px;}
.y4c{bottom:237.780000px;}
.ye2{bottom:241.740000px;}
.y35{bottom:243.480000px;}
.y102{bottom:245.700000px;}
.yc9{bottom:248.580000px;}
.y1d{bottom:249.960000px;}
.y79{bottom:256.140000px;}
.y99{bottom:256.500000px;}
.y4b{bottom:262.620000px;}
.y34{bottom:263.280000px;}
.y101{bottom:265.500000px;}
.ye1{bottom:266.580000px;}
.y1c{bottom:267.240000px;}
.yc8{bottom:273.420000px;}
.y98{bottom:281.340000px;}
.y78{bottom:281.700000px;}
.y33{bottom:282.720000px;}
.y1b{bottom:284.880000px;}
.y100{bottom:284.940000px;}
.y4a{bottom:287.460000px;}
.ye0{bottom:291.420000px;}
.yaf{bottom:295.380000px;}
.yc7{bottom:298.260000px;}
.y1a{bottom:302.520000px;}
.yff{bottom:304.380000px;}
.y97{bottom:305.820000px;}
.y2e{bottom:307.200000px;}
.y49{bottom:312.300000px;}
.ydf{bottom:316.260000px;}
.yae{bottom:319.860000px;}
.y19{bottom:320.160000px;}
.y32{bottom:321.960000px;}
.yc6{bottom:322.740000px;}
.yfe{bottom:324.180000px;}
.y77{bottom:325.980000px;}
.y96{bottom:330.660000px;}
.y2d{bottom:330.960000px;}
.y48{bottom:337.860000px;}
.yde{bottom:340.740000px;}
.y31{bottom:341.400000px;}
.yfd{bottom:343.620000px;}
.yad{bottom:344.700000px;}
.y18{bottom:346.800000px;}
.yc5{bottom:347.580000px;}
.y76{bottom:350.460000px;}
.y2c{bottom:354.360000px;}
.y95{bottom:355.500000px;}
.y47{bottom:360.180000px;}
.y30{bottom:361.200000px;}
.yfc{bottom:363.420000px;}
.y17{bottom:364.440000px;}
.ydd{bottom:365.580000px;}
.yac{bottom:369.540000px;}
.yc4{bottom:372.420000px;}
.y42{bottom:373.500000px;}
.y75{bottom:375.300000px;}
.y2b{bottom:377.760000px;}
.y94{bottom:380.340000px;}
.y2f{bottom:380.640000px;}
.y16{bottom:382.080000px;}
.yfb{bottom:382.860000px;}
.ydc{bottom:390.420000px;}
.yab{bottom:394.380000px;}
.yc3{bottom:397.260000px;}
.y74{bottom:400.140000px;}
.yfa{bottom:402.300000px;}
.y93{bottom:405.180000px;}
.ydb{bottom:415.260000px;}
.yaa{bottom:418.860000px;}
.yc2{bottom:422.100000px;}
.y73{bottom:424.980000px;}
.y92{bottom:429.660000px;}
.yda{bottom:440.100000px;}
.yf9{bottom:441.540000px;}
.ya9{bottom:443.700000px;}
.y72{bottom:449.460000px;}
.y91{bottom:454.500000px;}
.yc1{bottom:455.580000px;}
.yf8{bottom:461.340000px;}
.yd9{bottom:465.660000px;}
.ya8{bottom:468.540000px;}
.y71{bottom:474.300000px;}
.y8c{bottom:478.980000px;}
.yf7{bottom:480.780000px;}
.y90{bottom:488.340000px;}
.yc0{bottom:490.140000px;}
.ya7{bottom:493.380000px;}
.y15{bottom:496.500000px;}
.y70{bottom:499.140000px;}
.yf6{bottom:500.220000px;}
.y8b{bottom:503.820000px;}
.yd8{bottom:509.580000px;}
.ya6{bottom:518.220000px;}
.yf5{bottom:520.020000px;}
.y6f{bottom:523.980000px;}
.ybb{bottom:524.700000px;}
.y8a{bottom:528.300000px;}
.y8f{bottom:529.020000px;}
.yd7{bottom:534.420000px;}
.yf4{bottom:540.540000px;}
.ya5{bottom:542.700000px;}
.y6e{bottom:548.820000px;}
.yba{bottom:549.540000px;}
.y89{bottom:553.140000px;}
.yd6{bottom:559.260000px;}
.ya4{bottom:567.540000px;}
.y6d{bottom:573.300000px;}
.yb9{bottom:574.020000px;}
.yeb{bottom:576.000000px;}
.y88{bottom:577.980000px;}
.yd5{bottom:584.100000px;}
.ya3{bottom:592.380000px;}
.y6c{bottom:598.140000px;}
.yb8{bottom:598.860000px;}
.y87{bottom:602.820000px;}
.yd4{bottom:608.940000px;}
.ya2{bottom:617.220000px;}
.y6b{bottom:622.980000px;}
.yb7{bottom:623.700000px;}
.y86{bottom:627.300000px;}
.yd3{bottom:633.420000px;}
.ya1{bottom:641.700000px;}
.y6a{bottom:647.820000px;}
.yb6{bottom:648.540000px;}
.y85{bottom:652.140000px;}
.yd2{bottom:658.260000px;}
.ya0{bottom:666.540000px;}
.y69{bottom:672.660000px;}
.yb5{bottom:673.380000px;}
.y84{bottom:676.980000px;}
.yd1{bottom:683.100000px;}
.y9f{bottom:691.380000px;}
.y68{bottom:697.140000px;}
.yb4{bottom:697.860000px;}
.y83{bottom:701.820000px;}
.yd0{bottom:707.940000px;}
.y11e{bottom:715.860000px;}
.y9e{bottom:716.220000px;}
.y67{bottom:721.980000px;}
.yb3{bottom:722.700000px;}
.y82{bottom:727.380000px;}
.ycf{bottom:732.780000px;}
.y11d{bottom:734.580000px;}
.y9d{bottom:741.060000px;}
.y66{bottom:746.820000px;}
.yb2{bottom:747.540000px;}
.y11c{bottom:752.940000px;}
.yce{bottom:766.260000px;}
.y65{bottom:771.660000px;}
.yb1{bottom:772.380000px;}
.y9c{bottom:774.540000px;}
.yea{bottom:791.460000px;}
.y11b{bottom:792.180000px;}
.y64{bottom:796.140000px;}
.ycd{bottom:807.300000px;}
.y11a{bottom:811.620000px;}
.yb0{bottom:813.060000px;}
.y9b{bottom:815.580000px;}
.y63{bottom:820.980000px;}
.y119{bottom:831.060000px;}
.y62{bottom:845.820000px;}
.y118{bottom:850.860000px;}
.y117{bottom:870.300000px;}
.y61{bottom:870.660000px;}
.y116{bottom:890.100000px;}
.y13{bottom:891.000000px;}
.y60{bottom:895.500000px;}
.y115{bottom:909.540000px;}
.y5f{bottom:919.980000px;}
.y114{bottom:928.980000px;}
.yd{bottom:930.000000px;}
.y5e{bottom:944.820000px;}
.y113{bottom:948.780000px;}
.y112{bottom:968.220000px;}
.y5d{bottom:969.660000px;}
.y111{bottom:987.660000px;}
.y5c{bottom:994.500000px;}
.y110{bottom:1007.460000px;}
.y5b{bottom:1018.980000px;}
.y10f{bottom:1026.900000px;}
.y5a{bottom:1043.820000px;}
.y10e{bottom:1046.700000px;}
.yb{bottom:1059.000000px;}
.y10d{bottom:1066.140000px;}
.y59{bottom:1068.660000px;}
.y10c{bottom:1085.580000px;}
.y58{bottom:1093.500000px;}
.y10b{bottom:1105.380000px;}
.y2{bottom:1111.500000px;}
.y57{bottom:1118.340000px;}
.y10a{bottom:1124.820000px;}
.y56{bottom:1142.820000px;}
.y109{bottom:1144.260000px;}
.y55{bottom:1163.700000px;}
.y54{bottom:1193.580000px;}
.h9{height:8.133120px;}
.h4{height:36.471094px;}
.h11{height:37.778400px;}
.h10{height:38.632320px;}
.hd{height:39.000000px;}
.h1f{height:40.310156px;}
.he{height:42.698880px;}
.h5{height:43.502400px;}
.hc{height:43.776000px;}
.h15{height:44.149219px;}
.h6{height:46.500000px;}
.h1b{height:46.765440px;}
.h18{height:47.988281px;}
.h2{height:48.081600px;}
.h19{height:48.384000px;}
.h1e{height:48.686400px;}
.h1d{height:48.807360px;}
.h7{height:50.832000px;}
.h16{height:52.660800px;}
.h1a{height:53.323200px;}
.hb{height:55.389600px;}
.h12{height:57.240000px;}
.h14{height:57.600000px;}
.ha{height:58.965120px;}
.h3{height:76.500000px;}
.h13{height:124.500000px;}
.h8{height:130.500000px;}
.h1c{height:208.500000px;}
.hf{height:396.000000px;}
.h17{height:1251.000000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w8{width:36.000000px;}
.w2{width:87.000000px;}
.w4{width:99.000000px;}
.w7{width:189.000000px;}
.w3{width:249.000000px;}
.w5{width:313.500000px;}
.w9{width:522.000000px;}
.w6{width:744.000000px;}
.wb{width:759.000000px;}
.wa{width:880.800000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x5{left:8.700000px;}
.x10{left:12.000000px;}
.x3{left:61.080000px;}
.x11{left:63.240000px;}
.x25{left:72.000000px;}
.x2{left:75.000000px;}
.x13{left:81.000000px;}
.x9{left:85.980000px;}
.x7{left:89.520000px;}
.x14{left:96.480000px;}
.xb{left:102.900000px;}
.xe{left:105.720000px;}
.xa{left:114.420000px;}
.x26{left:117.360000px;}
.x4{left:160.500000px;}
.x1c{left:210.960000px;}
.xc{left:262.500000px;}
.x20{left:266.040000px;}
.x18{left:279.720000px;}
.x1e{left:286.200000px;}
.x1a{left:288.720000px;}
.x12{left:291.240000px;}
.xd{left:297.000000px;}
.x22{left:301.320000px;}
.xf{left:397.800000px;}
.x24{left:404.280000px;}
.x27{left:406.080000px;}
.x6{left:408.000000px;}
.x16{left:414.000000px;}
.x15{left:417.240000px;}
.x1{left:436.320000px;}
.x8{left:505.500000px;}
.x1b{left:779.040000px;}
.x17{left:787.320000px;}
.x21{left:792.720000px;}
.x1f{left:809.640000px;}
.x23{left:812.160000px;}
.x19{left:815.760000px;}
.x1d{left:817.560000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.ls9d{letter-spacing:-1.602048pt;}
.ls74{letter-spacing:-1.201152pt;}
.ls22{letter-spacing:-1.050624pt;}
.ls11{letter-spacing:-0.948480pt;}
.ls26{letter-spacing:-0.885248pt;}
.ls59{letter-spacing:-0.877312pt;}
.ls12{letter-spacing:-0.836608pt;}
.ls9e{letter-spacing:-0.725760pt;}
.ls3f{letter-spacing:-0.640000pt;}
.ls73{letter-spacing:-0.630016pt;}
.ls1f{letter-spacing:-0.598272pt;}
.ls4b{letter-spacing:-0.571136pt;}
.ls9a{letter-spacing:-0.559104pt;}
.ls1b{letter-spacing:-0.556800pt;}
.ls67{letter-spacing:-0.553472pt;}
.ls4f{letter-spacing:-0.510720pt;}
.ls72{letter-spacing:-0.506368pt;}
.ls92{letter-spacing:-0.505344pt;}
.ls42{letter-spacing:-0.500480pt;}
.ls29{letter-spacing:-0.498432pt;}
.ls2f{letter-spacing:-0.483840pt;}
.ls57{letter-spacing:-0.465152pt;}
.ls21{letter-spacing:-0.462080pt;}
.lsa0{letter-spacing:-0.456960pt;}
.ls43{letter-spacing:-0.453376pt;}
.ls3e{letter-spacing:-0.448000pt;}
.lsa1{letter-spacing:-0.419328pt;}
.ls25{letter-spacing:-0.393984pt;}
.ls88{letter-spacing:-0.392448pt;}
.ls35{letter-spacing:-0.370944pt;}
.ls94{letter-spacing:-0.360192pt;}
.ls5c{letter-spacing:-0.353280pt;}
.ls52{letter-spacing:-0.347392pt;}
.ls3c{letter-spacing:-0.344064pt;}
.ls38{letter-spacing:-0.322560pt;}
.ls6b{letter-spacing:-0.312064pt;}
.ls10{letter-spacing:-0.306432pt;}
.ls8d{letter-spacing:-0.295680pt;}
.ls14{letter-spacing:-0.291840pt;}
.ls27{letter-spacing:-0.274560pt;}
.ls18{letter-spacing:-0.267264pt;}
.ls8e{letter-spacing:-0.263424pt;}
.ls41{letter-spacing:-0.256000pt;}
.ls95{letter-spacing:-0.247296pt;}
.ls30{letter-spacing:-0.241920pt;}
.ls98{letter-spacing:-0.236544pt;}
.lsb{letter-spacing:-0.204288pt;}
.ls58{letter-spacing:-0.188416pt;}
.ls2d{letter-spacing:-0.177408pt;}
.ls65{letter-spacing:-0.176640pt;}
.ls2c{letter-spacing:-0.173184pt;}
.ls8c{letter-spacing:-0.161280pt;}
.ls85{letter-spacing:-0.158976pt;}
.ls84{letter-spacing:-0.153088pt;}
.ls28{letter-spacing:-0.139392pt;}
.ls6c{letter-spacing:-0.123648pt;}
.ls2e{letter-spacing:-0.118272pt;}
.ls36{letter-spacing:-0.102144pt;}
.ls4a{letter-spacing:-0.100096pt;}
.ls87{letter-spacing:-0.080640pt;}
.ls9b{letter-spacing:-0.059136pt;}
.ls56{letter-spacing:-0.052992pt;}
.ls34{letter-spacing:-0.037632pt;}
.ls4e{letter-spacing:-0.032256pt;}
.ls93{letter-spacing:-0.026880pt;}
.ls19{letter-spacing:-0.014848pt;}
.ls60{letter-spacing:-0.011776pt;}
.lsc{letter-spacing:0.000000pt;}
.ls24{letter-spacing:0.009728pt;}
.lsd{letter-spacing:0.029184pt;}
.lsf{letter-spacing:0.038912pt;}
.ls82{letter-spacing:0.041216pt;}
.ls4{letter-spacing:0.051200pt;}
.ls86{letter-spacing:0.052992pt;}
.ls83{letter-spacing:0.064768pt;}
.ls5a{letter-spacing:0.070656pt;}
.ls49{letter-spacing:0.076544pt;}
.ls13{letter-spacing:0.102144pt;}
.ls1e{letter-spacing:0.155648pt;}
.ls48{letter-spacing:0.158976pt;}
.ls2{letter-spacing:0.182528pt;}
.ls3{letter-spacing:0.183040pt;}
.ls5d{letter-spacing:0.192000pt;}
.ls5{letter-spacing:0.202752pt;}
.ls99{letter-spacing:0.204288pt;}
.ls4c{letter-spacing:0.211200pt;}
.ls64{letter-spacing:0.217856pt;}
.ls1a{letter-spacing:0.222720pt;}
.ls51{letter-spacing:0.229632pt;}
.ls90{letter-spacing:0.231168pt;}
.ls39{letter-spacing:0.258048pt;}
.ls81{letter-spacing:0.259072pt;}
.ls3d{letter-spacing:0.268800pt;}
.ls44{letter-spacing:0.270848pt;}
.ls55{letter-spacing:0.288512pt;}
.ls50{letter-spacing:0.290304pt;}
.ls54{letter-spacing:0.294400pt;}
.ls32{letter-spacing:0.311808pt;}
.ls40{letter-spacing:0.320000pt;}
.ls1c{letter-spacing:0.335616pt;}
.ls46{letter-spacing:0.353280pt;}
.ls15{letter-spacing:0.355072pt;}
.ls16{letter-spacing:0.379392pt;}
.ls47{letter-spacing:0.394496pt;}
.ls31{letter-spacing:0.397824pt;}
.ls62{letter-spacing:0.404480pt;}
.ls5f{letter-spacing:0.406272pt;}
.ls4d{letter-spacing:0.418176pt;}
.lse{letter-spacing:0.423168pt;}
.ls91{letter-spacing:0.424704pt;}
.ls89{letter-spacing:0.435456pt;}
.ls8b{letter-spacing:0.440832pt;}
.ls23{letter-spacing:0.447488pt;}
.ls5b{letter-spacing:0.459264pt;}
.ls97{letter-spacing:0.467712pt;}
.ls8a{letter-spacing:0.473088pt;}
.ls45{letter-spacing:0.476928pt;}
.ls9c{letter-spacing:0.483840pt;}
.ls8f{letter-spacing:0.494592pt;}
.ls80{letter-spacing:0.505344pt;}
.lsa{letter-spacing:0.506880pt;}
.ls1d{letter-spacing:0.510720pt;}
.ls0{letter-spacing:0.512000pt;}
.ls7b{letter-spacing:0.532224pt;}
.ls6a{letter-spacing:0.535808pt;}
.ls7e{letter-spacing:0.537600pt;}
.ls7a{letter-spacing:0.542976pt;}
.ls78{letter-spacing:0.548352pt;}
.ls20{letter-spacing:0.549632pt;}
.ls3a{letter-spacing:0.553728pt;}
.ls77{letter-spacing:0.559872pt;}
.ls96{letter-spacing:0.564480pt;}
.ls33{letter-spacing:0.569856pt;}
.ls63{letter-spacing:0.571136pt;}
.ls7d{letter-spacing:0.580608pt;}
.ls6f{letter-spacing:0.594688pt;}
.ls37{letter-spacing:0.602112pt;}
.ls17{letter-spacing:0.603136pt;}
.ls7{letter-spacing:0.629760pt;}
.ls53{letter-spacing:0.630016pt;}
.ls9{letter-spacing:0.640000pt;}
.ls69{letter-spacing:0.653568pt;}
.ls9f{letter-spacing:0.677376pt;}
.ls2a{letter-spacing:0.730752pt;}
.ls66{letter-spacing:0.812544pt;}
.ls1{letter-spacing:0.860160pt;}
.ls3b{letter-spacing:1.037568pt;}
.ls2b{letter-spacing:1.106688pt;}
.ls71{letter-spacing:1.460224pt;}
.ls7c{letter-spacing:2.048000pt;}
.ls6d{letter-spacing:2.304000pt;}
.ls79{letter-spacing:3.328000pt;}
.ls5e{letter-spacing:3.584000pt;}
.ls68{letter-spacing:4.864000pt;}
.ls6{letter-spacing:5.888000pt;}
.ls6e{letter-spacing:6.144000pt;}
.ls7f{letter-spacing:8.448000pt;}
.ls61{letter-spacing:8.704000pt;}
.ls76{letter-spacing:11.264000pt;}
.ls8{letter-spacing:13.568000pt;}
.ls75{letter-spacing:13.824000pt;}
.ls70{letter-spacing:16.384000pt;}
.ws7{word-spacing:-17.594880pt;}
.ws1e{word-spacing:-15.360000pt;}
.ws25{word-spacing:-15.168000pt;}
.ws19{word-spacing:-14.912000pt;}
.ws2c{word-spacing:-14.007552pt;}
.ws29{word-spacing:-13.995776pt;}
.ws2a{word-spacing:-13.954560pt;}
.ws18{word-spacing:-12.800000pt;}
.ws9{word-spacing:-12.434688pt;}
.ws17{word-spacing:-12.352000pt;}
.ws23{word-spacing:-12.252928pt;}
.ws2b{word-spacing:-12.170496pt;}
.ws1f{word-spacing:-12.129280pt;}
.ws24{word-spacing:-12.046848pt;}
.ws27{word-spacing:-11.958528pt;}
.ws28{word-spacing:-11.934976pt;}
.ws26{word-spacing:-11.852544pt;}
.ws8{word-spacing:-11.776000pt;}
.wsd{word-spacing:-11.683328pt;}
.ws20{word-spacing:-11.675904pt;}
.ws21{word-spacing:-11.587584pt;}
.wsf{word-spacing:-11.537408pt;}
.ws22{word-spacing:-11.428608pt;}
.ws4b{word-spacing:-11.354112pt;}
.ws1d{word-spacing:-11.322624pt;}
.ws44{word-spacing:-11.262720pt;}
.ws3d{word-spacing:-11.246592pt;}
.ws2d{word-spacing:-11.225088pt;}
.ws2f{word-spacing:-11.192832pt;}
.ws4d{word-spacing:-11.187456pt;}
.ws38{word-spacing:-11.176704pt;}
.ws3f{word-spacing:-11.063808pt;}
.ws47{word-spacing:-11.042304pt;}
.ws16{word-spacing:-11.020800pt;}
.ws49{word-spacing:-11.010048pt;}
.ws32{word-spacing:-10.983168pt;}
.ws2e{word-spacing:-10.752000pt;}
.ws39{word-spacing:-10.725120pt;}
.ws3c{word-spacing:-10.714368pt;}
.ws0{word-spacing:-10.547712pt;}
.ws42{word-spacing:-10.504704pt;}
.ws52{word-spacing:-10.456320pt;}
.ws3b{word-spacing:-10.429440pt;}
.ws40{word-spacing:-10.407936pt;}
.ws35{word-spacing:-10.381056pt;}
.ws6{word-spacing:-10.331136pt;}
.wsb{word-spacing:-10.277632pt;}
.ws4a{word-spacing:-10.192896pt;}
.wse{word-spacing:-10.175488pt;}
.ws11{word-spacing:-10.151168pt;}
.ws5{word-spacing:-10.083072pt;}
.ws51{word-spacing:-10.026240pt;}
.ws10{word-spacing:-9.830144pt;}
.ws1{word-spacing:-9.728000pt;}
.ws15{word-spacing:-9.554688pt;}
.ws4{word-spacing:-9.436160pt;}
.ws2{word-spacing:-9.421568pt;}
.ws4f{word-spacing:-9.149952pt;}
.wsa{word-spacing:-9.129728pt;}
.ws3{word-spacing:-8.891392pt;}
.wsc{word-spacing:-8.677376pt;}
.ws12{word-spacing:-8.650752pt;}
.ws13{word-spacing:-8.448000pt;}
.ws14{word-spacing:-7.949568pt;}
.ws50{word-spacing:-0.655872pt;}
.ws43{word-spacing:-0.564480pt;}
.ws46{word-spacing:-0.521472pt;}
.ws30{word-spacing:-0.494592pt;}
.ws4c{word-spacing:-0.489216pt;}
.ws37{word-spacing:-0.478464pt;}
.ws3e{word-spacing:-0.365568pt;}
.ws1b{word-spacing:-0.353280pt;}
.ws1c{word-spacing:-0.347392pt;}
.ws33{word-spacing:-0.284928pt;}
.ws3a{word-spacing:-0.026880pt;}
.ws31{word-spacing:-0.021504pt;}
.ws36{word-spacing:-0.016128pt;}
.ws1a{word-spacing:0.000000pt;}
.ws4e{word-spacing:0.107520pt;}
.ws41{word-spacing:0.193536pt;}
.ws34{word-spacing:0.241920pt;}
.ws45{word-spacing:0.317184pt;}
.ws53{word-spacing:0.365568pt;}
.ws48{word-spacing:0.430080pt;}
._b{margin-left:-3.786240pt;}
._1{margin-left:-2.529280pt;}
._0{margin-left:-1.264640pt;}
._2{width:1.331968pt;}
._4{width:2.284032pt;}
._d{width:3.480832pt;}
._15{width:4.401664pt;}
._7{width:5.322240pt;}
._8{width:6.289920pt;}
._11{width:7.232768pt;}
._10{width:8.417280pt;}
._c{width:9.312512pt;}
._12{width:10.273280pt;}
._6{width:11.504640pt;}
._e{width:12.800000pt;}
._f{width:14.111232pt;}
._a{width:15.763712pt;}
._9{width:16.826880pt;}
._16{width:18.928640pt;}
._19{width:20.036352pt;}
._17{width:20.930560pt;}
._18{width:21.969408pt;}
._1b{width:36.078592pt;}
._1a{width:37.255680pt;}
._5{width:42.934784pt;}
._3{width:43.963136pt;}
._13{width:57.212672pt;}
._14{width:59.248640pt;}
.fs4{font-size:10.240000pt;}
.fs7{font-size:34.560000pt;}
.fs2{font-size:42.240000pt;}
.fs1{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs6{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs5{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:0.640000pt;}
.y7{bottom:4.160000pt;}
.y12{bottom:6.453333pt;}
.y41{bottom:7.786667pt;}
.y14{bottom:13.280000pt;}
.yf3{bottom:15.840000pt;}
.y46{bottom:16.960000pt;}
.yc{bottom:17.226667pt;}
.y2a{bottom:17.386667pt;}
.y6{bottom:19.840000pt;}
.ya{bottom:23.680000pt;}
.y40{bottom:25.066667pt;}
.y11{bottom:31.093333pt;}
.y29{bottom:33.066667pt;}
.y1{bottom:33.440000pt;}
.y5{bottom:35.520000pt;}
.yf2{bottom:37.600000pt;}
.y9{bottom:39.360000pt;}
.y45{bottom:41.280000pt;}
.y3f{bottom:42.666667pt;}
.y28{bottom:46.826667pt;}
.y53{bottom:50.080000pt;}
.y4{bottom:51.200000pt;}
.y81{bottom:51.360000pt;}
.y8e{bottom:53.600000pt;}
.y8{bottom:55.040000pt;}
.y10{bottom:59.253333pt;}
.yf1{bottom:59.680000pt;}
.y3e{bottom:59.946667pt;}
.y27{bottom:60.906667pt;}
.ye9{bottom:60.960000pt;}
.y52{bottom:64.480000pt;}
.y44{bottom:65.280000pt;}
.ybf{bottom:68.320000pt;}
.y80{bottom:73.440000pt;}
.y26{bottom:74.666667pt;}
.y3d{bottom:77.226667pt;}
.yf0{bottom:81.760000pt;}
.ye8{bottom:83.040000pt;}
.yf{bottom:83.573333pt;}
.y43{bottom:86.080000pt;}
.y8d{bottom:89.760000pt;}
.ybe{bottom:90.400000pt;}
.y3c{bottom:94.826667pt;}
.y7f{bottom:95.520000pt;}
.y25{bottom:96.746667pt;}
.y108{bottom:96.800000pt;}
.y51{bottom:101.600000pt;}
.yef{bottom:103.840000pt;}
.ye7{bottom:104.800000pt;}
.y3b{bottom:112.106667pt;}
.y24{bottom:112.426667pt;}
.ye{bottom:112.693333pt;}
.y107{bottom:114.080000pt;}
.y7e{bottom:117.600000pt;}
.ybd{bottom:120.160000pt;}
.y50{bottom:123.360000pt;}
.yee{bottom:125.920000pt;}
.ye6{bottom:126.880000pt;}
.y23{bottom:128.106667pt;}
.y3a{bottom:129.706667pt;}
.y106{bottom:131.360000pt;}
.y7d{bottom:139.680000pt;}
.y22{bottom:143.786667pt;}
.y4f{bottom:145.440000pt;}
.y39{bottom:146.986667pt;}
.yed{bottom:147.680000pt;}
.ye5{bottom:148.960000pt;}
.ybc{bottom:150.880000pt;}
.ycc{bottom:155.040000pt;}
.y21{bottom:159.466667pt;}
.y7c{bottom:161.440000pt;}
.y38{bottom:164.266667pt;}
.y105{bottom:166.240000pt;}
.y4e{bottom:167.520000pt;}
.yec{bottom:169.760000pt;}
.ye4{bottom:171.040000pt;}
.y20{bottom:175.146667pt;}
.ycb{bottom:177.120000pt;}
.y37{bottom:181.866667pt;}
.y7b{bottom:183.520000pt;}
.y104{bottom:183.840000pt;}
.y4d{bottom:189.600000pt;}
.y1f{bottom:190.826667pt;}
.ye3{bottom:193.120000pt;}
.yca{bottom:198.880000pt;}
.y36{bottom:199.146667pt;}
.y103{bottom:201.120000pt;}
.y7a{bottom:205.600000pt;}
.y9a{bottom:205.920000pt;}
.y1e{bottom:206.506667pt;}
.y4c{bottom:211.360000pt;}
.ye2{bottom:214.880000pt;}
.y35{bottom:216.426667pt;}
.y102{bottom:218.400000pt;}
.yc9{bottom:220.960000pt;}
.y1d{bottom:222.186667pt;}
.y79{bottom:227.680000pt;}
.y99{bottom:228.000000pt;}
.y4b{bottom:233.440000pt;}
.y34{bottom:234.026667pt;}
.y101{bottom:236.000000pt;}
.ye1{bottom:236.960000pt;}
.y1c{bottom:237.546667pt;}
.yc8{bottom:243.040000pt;}
.y98{bottom:250.080000pt;}
.y78{bottom:250.400000pt;}
.y33{bottom:251.306667pt;}
.y1b{bottom:253.226667pt;}
.y100{bottom:253.280000pt;}
.y4a{bottom:255.520000pt;}
.ye0{bottom:259.040000pt;}
.yaf{bottom:262.560000pt;}
.yc7{bottom:265.120000pt;}
.y1a{bottom:268.906667pt;}
.yff{bottom:270.560000pt;}
.y97{bottom:271.840000pt;}
.y2e{bottom:273.066667pt;}
.y49{bottom:277.600000pt;}
.ydf{bottom:281.120000pt;}
.yae{bottom:284.320000pt;}
.y19{bottom:284.586667pt;}
.y32{bottom:286.186667pt;}
.yc6{bottom:286.880000pt;}
.yfe{bottom:288.160000pt;}
.y77{bottom:289.760000pt;}
.y96{bottom:293.920000pt;}
.y2d{bottom:294.186667pt;}
.y48{bottom:300.320000pt;}
.yde{bottom:302.880000pt;}
.y31{bottom:303.466667pt;}
.yfd{bottom:305.440000pt;}
.yad{bottom:306.400000pt;}
.y18{bottom:308.266667pt;}
.yc5{bottom:308.960000pt;}
.y76{bottom:311.520000pt;}
.y2c{bottom:314.986667pt;}
.y95{bottom:316.000000pt;}
.y47{bottom:320.160000pt;}
.y30{bottom:321.066667pt;}
.yfc{bottom:323.040000pt;}
.y17{bottom:323.946667pt;}
.ydd{bottom:324.960000pt;}
.yac{bottom:328.480000pt;}
.yc4{bottom:331.040000pt;}
.y42{bottom:332.000000pt;}
.y75{bottom:333.600000pt;}
.y2b{bottom:335.786667pt;}
.y94{bottom:338.080000pt;}
.y2f{bottom:338.346667pt;}
.y16{bottom:339.626667pt;}
.yfb{bottom:340.320000pt;}
.ydc{bottom:347.040000pt;}
.yab{bottom:350.560000pt;}
.yc3{bottom:353.120000pt;}
.y74{bottom:355.680000pt;}
.yfa{bottom:357.600000pt;}
.y93{bottom:360.160000pt;}
.ydb{bottom:369.120000pt;}
.yaa{bottom:372.320000pt;}
.yc2{bottom:375.200000pt;}
.y73{bottom:377.760000pt;}
.y92{bottom:381.920000pt;}
.yda{bottom:391.200000pt;}
.yf9{bottom:392.480000pt;}
.ya9{bottom:394.400000pt;}
.y72{bottom:399.520000pt;}
.y91{bottom:404.000000pt;}
.yc1{bottom:404.960000pt;}
.yf8{bottom:410.080000pt;}
.yd9{bottom:413.920000pt;}
.ya8{bottom:416.480000pt;}
.y71{bottom:421.600000pt;}
.y8c{bottom:425.760000pt;}
.yf7{bottom:427.360000pt;}
.y90{bottom:434.080000pt;}
.yc0{bottom:435.680000pt;}
.ya7{bottom:438.560000pt;}
.y15{bottom:441.333333pt;}
.y70{bottom:443.680000pt;}
.yf6{bottom:444.640000pt;}
.y8b{bottom:447.840000pt;}
.yd8{bottom:452.960000pt;}
.ya6{bottom:460.640000pt;}
.yf5{bottom:462.240000pt;}
.y6f{bottom:465.760000pt;}
.ybb{bottom:466.400000pt;}
.y8a{bottom:469.600000pt;}
.y8f{bottom:470.240000pt;}
.yd7{bottom:475.040000pt;}
.yf4{bottom:480.480000pt;}
.ya5{bottom:482.400000pt;}
.y6e{bottom:487.840000pt;}
.yba{bottom:488.480000pt;}
.y89{bottom:491.680000pt;}
.yd6{bottom:497.120000pt;}
.ya4{bottom:504.480000pt;}
.y6d{bottom:509.600000pt;}
.yb9{bottom:510.240000pt;}
.yeb{bottom:512.000000pt;}
.y88{bottom:513.760000pt;}
.yd5{bottom:519.200000pt;}
.ya3{bottom:526.560000pt;}
.y6c{bottom:531.680000pt;}
.yb8{bottom:532.320000pt;}
.y87{bottom:535.840000pt;}
.yd4{bottom:541.280000pt;}
.ya2{bottom:548.640000pt;}
.y6b{bottom:553.760000pt;}
.yb7{bottom:554.400000pt;}
.y86{bottom:557.600000pt;}
.yd3{bottom:563.040000pt;}
.ya1{bottom:570.400000pt;}
.y6a{bottom:575.840000pt;}
.yb6{bottom:576.480000pt;}
.y85{bottom:579.680000pt;}
.yd2{bottom:585.120000pt;}
.ya0{bottom:592.480000pt;}
.y69{bottom:597.920000pt;}
.yb5{bottom:598.560000pt;}
.y84{bottom:601.760000pt;}
.yd1{bottom:607.200000pt;}
.y9f{bottom:614.560000pt;}
.y68{bottom:619.680000pt;}
.yb4{bottom:620.320000pt;}
.y83{bottom:623.840000pt;}
.yd0{bottom:629.280000pt;}
.y11e{bottom:636.320000pt;}
.y9e{bottom:636.640000pt;}
.y67{bottom:641.760000pt;}
.yb3{bottom:642.400000pt;}
.y82{bottom:646.560000pt;}
.ycf{bottom:651.360000pt;}
.y11d{bottom:652.960000pt;}
.y9d{bottom:658.720000pt;}
.y66{bottom:663.840000pt;}
.yb2{bottom:664.480000pt;}
.y11c{bottom:669.280000pt;}
.yce{bottom:681.120000pt;}
.y65{bottom:685.920000pt;}
.yb1{bottom:686.560000pt;}
.y9c{bottom:688.480000pt;}
.yea{bottom:703.520000pt;}
.y11b{bottom:704.160000pt;}
.y64{bottom:707.680000pt;}
.ycd{bottom:717.600000pt;}
.y11a{bottom:721.440000pt;}
.yb0{bottom:722.720000pt;}
.y9b{bottom:724.960000pt;}
.y63{bottom:729.760000pt;}
.y119{bottom:738.720000pt;}
.y62{bottom:751.840000pt;}
.y118{bottom:756.320000pt;}
.y117{bottom:773.600000pt;}
.y61{bottom:773.920000pt;}
.y116{bottom:791.200000pt;}
.y13{bottom:792.000000pt;}
.y60{bottom:796.000000pt;}
.y115{bottom:808.480000pt;}
.y5f{bottom:817.760000pt;}
.y114{bottom:825.760000pt;}
.yd{bottom:826.666667pt;}
.y5e{bottom:839.840000pt;}
.y113{bottom:843.360000pt;}
.y112{bottom:860.640000pt;}
.y5d{bottom:861.920000pt;}
.y111{bottom:877.920000pt;}
.y5c{bottom:884.000000pt;}
.y110{bottom:895.520000pt;}
.y5b{bottom:905.760000pt;}
.y10f{bottom:912.800000pt;}
.y5a{bottom:927.840000pt;}
.y10e{bottom:930.400000pt;}
.yb{bottom:941.333333pt;}
.y10d{bottom:947.680000pt;}
.y59{bottom:949.920000pt;}
.y10c{bottom:964.960000pt;}
.y58{bottom:972.000000pt;}
.y10b{bottom:982.560000pt;}
.y2{bottom:988.000000pt;}
.y57{bottom:994.080000pt;}
.y10a{bottom:999.840000pt;}
.y56{bottom:1015.840000pt;}
.y109{bottom:1017.120000pt;}
.y55{bottom:1034.400000pt;}
.y54{bottom:1060.960000pt;}
.h9{height:7.229440pt;}
.h4{height:32.418750pt;}
.h11{height:33.580800pt;}
.h10{height:34.339840pt;}
.hd{height:34.666667pt;}
.h1f{height:35.831250pt;}
.he{height:37.954560pt;}
.h5{height:38.668800pt;}
.hc{height:38.912000pt;}
.h15{height:39.243750pt;}
.h6{height:41.333333pt;}
.h1b{height:41.569280pt;}
.h18{height:42.656250pt;}
.h2{height:42.739200pt;}
.h19{height:43.008000pt;}
.h1e{height:43.276800pt;}
.h1d{height:43.384320pt;}
.h7{height:45.184000pt;}
.h16{height:46.809600pt;}
.h1a{height:47.398400pt;}
.hb{height:49.235200pt;}
.h12{height:50.880000pt;}
.h14{height:51.200000pt;}
.ha{height:52.413440pt;}
.h3{height:68.000000pt;}
.h13{height:110.666667pt;}
.h8{height:116.000000pt;}
.h1c{height:185.333333pt;}
.hf{height:352.000000pt;}
.h17{height:1112.000000pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w8{width:32.000000pt;}
.w2{width:77.333333pt;}
.w4{width:88.000000pt;}
.w7{width:168.000000pt;}
.w3{width:221.333333pt;}
.w5{width:278.666667pt;}
.w9{width:464.000000pt;}
.w6{width:661.333333pt;}
.wb{width:674.666667pt;}
.wa{width:782.933333pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x5{left:7.733333pt;}
.x10{left:10.666667pt;}
.x3{left:54.293333pt;}
.x11{left:56.213333pt;}
.x25{left:64.000000pt;}
.x2{left:66.666667pt;}
.x13{left:72.000000pt;}
.x9{left:76.426667pt;}
.x7{left:79.573333pt;}
.x14{left:85.760000pt;}
.xb{left:91.466667pt;}
.xe{left:93.973333pt;}
.xa{left:101.706667pt;}
.x26{left:104.320000pt;}
.x4{left:142.666667pt;}
.x1c{left:187.520000pt;}
.xc{left:233.333333pt;}
.x20{left:236.480000pt;}
.x18{left:248.640000pt;}
.x1e{left:254.400000pt;}
.x1a{left:256.640000pt;}
.x12{left:258.880000pt;}
.xd{left:264.000000pt;}
.x22{left:267.840000pt;}
.xf{left:353.600000pt;}
.x24{left:359.360000pt;}
.x27{left:360.960000pt;}
.x6{left:362.666667pt;}
.x16{left:368.000000pt;}
.x15{left:370.880000pt;}
.x1{left:387.840000pt;}
.x8{left:449.333333pt;}
.x1b{left:692.480000pt;}
.x17{left:699.840000pt;}
.x21{left:704.640000pt;}
.x1f{left:719.680000pt;}
.x23{left:721.920000pt;}
.x19{left:725.120000pt;}
.x1d{left:726.720000pt;}
}




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