
    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_0c8af45db14ee475332f59da.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.958000;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_e946dbd62b7e400ee1bdd42e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.946000;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_24c13348dbd3f685fbc45859.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.203000;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_c7bc1a4be11fc702ef89033e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.958496;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_b8a6910d7d9e43d2267c3601.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.958000;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_6132461637e723fb3d6ee4a8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.958496;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_bc7a098b30cdf42ab1002436.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.349000;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_bbc0de31917fc9865dd8b841.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.200885;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_2565ce25b0aa009ca585d174.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.362000;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_356ec4a5ab465d0d547dcc27.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910000;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_3c10f019a1e424d979b416ef.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.384000;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_abd9a9794c459e1cec0e8c54.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.100000;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_401eafaeebe2408d04dbde69.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.268000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-18.359985px;}
.v4{vertical-align:-17.339996px;}
.v6{vertical-align:-10.829989px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:14.292030px;}
.v2{vertical-align:18.209982px;}
.v1{vertical-align:20.400879px;}
.ls63{letter-spacing:-3.942000px;}
.ls97{letter-spacing:-2.610000px;}
.ls92{letter-spacing:-2.385000px;}
.ls74{letter-spacing:-2.268000px;}
.ls62{letter-spacing:-1.848000px;}
.ls9a{letter-spacing:-1.395000px;}
.lsad{letter-spacing:-1.125000px;}
.lsaa{letter-spacing:-1.080000px;}
.ls1b{letter-spacing:-1.026000px;}
.lsac{letter-spacing:-0.990000px;}
.ls95{letter-spacing:-0.810000px;}
.ls96{letter-spacing:-0.765000px;}
.ls94{letter-spacing:-0.720000px;}
.ls5d{letter-spacing:-0.702000px;}
.lsa6{letter-spacing:-0.675000px;}
.ls89{letter-spacing:-0.648000px;}
.lsa7{letter-spacing:-0.630000px;}
.ls8a{letter-spacing:-0.585000px;}
.ls91{letter-spacing:-0.540000px;}
.ls8c{letter-spacing:-0.495000px;}
.ls8f{letter-spacing:-0.450000px;}
.lsb1{letter-spacing:-0.432000px;}
.ls61{letter-spacing:-0.420000px;}
.lsa8{letter-spacing:-0.405000px;}
.ls17{letter-spacing:-0.378000px;}
.ls8e{letter-spacing:-0.360000px;}
.ls8b{letter-spacing:-0.315000px;}
.ls5f{letter-spacing:-0.270000px;}
.ls21{letter-spacing:-0.255000px;}
.ls93{letter-spacing:-0.225000px;}
.ls1f{letter-spacing:-0.216000px;}
.lsa5{letter-spacing:-0.180000px;}
.ls60{letter-spacing:-0.175500px;}
.ls19{letter-spacing:-0.162000px;}
.ls20{letter-spacing:-0.140400px;}
.ls98{letter-spacing:-0.135000px;}
.ls41{letter-spacing:-0.108000px;}
.ls8d{letter-spacing:-0.090000px;}
.ls72{letter-spacing:-0.060000px;}
.ls1c{letter-spacing:-0.054000px;}
.ls90{letter-spacing:-0.045000px;}
.ls1d{letter-spacing:-0.035100px;}
.ls16{letter-spacing:0.000000px;}
.ls39{letter-spacing:0.000004px;}
.ls5c{letter-spacing:0.000011px;}
.ls29{letter-spacing:0.000184px;}
.ls6f{letter-spacing:0.000285px;}
.ls50{letter-spacing:0.011395px;}
.ls4{letter-spacing:0.013223px;}
.ls3{letter-spacing:0.013772px;}
.ls2{letter-spacing:0.013864px;}
.ls47{letter-spacing:0.035100px;}
.ls9b{letter-spacing:0.040537px;}
.ls52{letter-spacing:0.041330px;}
.ls49{letter-spacing:0.041400px;}
.lsab{letter-spacing:0.045000px;}
.ls69{letter-spacing:0.053999px;}
.ls10{letter-spacing:0.054000px;}
.ls38{letter-spacing:0.058128px;}
.ls46{letter-spacing:0.070199px;}
.ls1a{letter-spacing:0.070200px;}
.ls59{letter-spacing:0.077239px;}
.ls86{letter-spacing:0.090000px;}
.ls3e{letter-spacing:0.105300px;}
.ls37{letter-spacing:0.107998px;}
.lsf{letter-spacing:0.108000px;}
.ls9c{letter-spacing:0.112469px;}
.ls68{letter-spacing:0.112758px;}
.ls6a{letter-spacing:0.112941px;}
.ls7c{letter-spacing:0.123131px;}
.ls6e{letter-spacing:0.124195px;}
.ls88{letter-spacing:0.135001px;}
.ls6b{letter-spacing:0.140400px;}
.ls6c{letter-spacing:0.140401px;}
.ls7e{letter-spacing:0.142723px;}
.ls2d{letter-spacing:0.162001px;}
.ls75{letter-spacing:0.162003px;}
.lse{letter-spacing:0.175499px;}
.ls5e{letter-spacing:0.175500px;}
.ls3f{letter-spacing:0.175501px;}
.ls84{letter-spacing:0.180000px;}
.ls23{letter-spacing:0.210599px;}
.lsa{letter-spacing:0.210600px;}
.ls81{letter-spacing:0.215987px;}
.ls2e{letter-spacing:0.216000px;}
.ls7d{letter-spacing:0.216002px;}
.ls48{letter-spacing:0.216004px;}
.ls7f{letter-spacing:0.221388px;}
.lsa4{letter-spacing:0.225000px;}
.ls65{letter-spacing:0.226774px;}
.ls2c{letter-spacing:0.228150px;}
.lsb{letter-spacing:0.236416px;}
.ls64{letter-spacing:0.240000px;}
.ls26{letter-spacing:0.245699px;}
.ls3d{letter-spacing:0.245701px;}
.ls66{letter-spacing:0.250819px;}
.lsc{letter-spacing:0.270000px;}
.ls2a{letter-spacing:0.273011px;}
.ls27{letter-spacing:0.280801px;}
.ls6{letter-spacing:0.291588px;}
.lsa3{letter-spacing:0.315000px;}
.ls5{letter-spacing:0.324000px;}
.ls79{letter-spacing:0.340158px;}
.ls80{letter-spacing:0.343773px;}
.ls82{letter-spacing:0.343956px;}
.ls13{letter-spacing:0.358674px;}
.ls43{letter-spacing:0.360000px;}
.ls2f{letter-spacing:0.361734px;}
.ls6d{letter-spacing:0.373270px;}
.ls34{letter-spacing:0.377999px;}
.ls1e{letter-spacing:0.378000px;}
.ls7b{letter-spacing:0.378001px;}
.ls42{letter-spacing:0.386100px;}
.ls35{letter-spacing:0.399595px;}
.ls85{letter-spacing:0.405000px;}
.ls7a{letter-spacing:0.406212px;}
.ls73{letter-spacing:0.420000px;}
.ls18{letter-spacing:0.421200px;}
.ls2b{letter-spacing:0.421202px;}
.ls7{letter-spacing:0.432000px;}
.ls87{letter-spacing:0.450000px;}
.ls67{letter-spacing:0.471598px;}
.ls14{letter-spacing:0.482270px;}
.ls32{letter-spacing:0.486000px;}
.ls83{letter-spacing:0.495000px;}
.ls3a{letter-spacing:0.540000px;}
.ls3b{letter-spacing:0.556212px;}
.ls12{letter-spacing:0.561000px;}
.ls36{letter-spacing:0.577800px;}
.ls9f{letter-spacing:0.585000px;}
.ls3c{letter-spacing:0.593998px;}
.ls8{letter-spacing:0.594000px;}
.ls9e{letter-spacing:0.630000px;}
.lsd{letter-spacing:0.648000px;}
.ls9{letter-spacing:0.664235px;}
.ls78{letter-spacing:0.691201px;}
.ls25{letter-spacing:0.701999px;}
.ls31{letter-spacing:0.702000px;}
.ls99{letter-spacing:0.720000px;}
.ls9d{letter-spacing:0.733477px;}
.ls24{letter-spacing:0.756000px;}
.ls15{letter-spacing:0.765000px;}
.ls45{letter-spacing:0.810000px;}
.ls28{letter-spacing:0.820800px;}
.ls33{letter-spacing:0.837072px;}
.ls76{letter-spacing:0.840000px;}
.ls30{letter-spacing:0.864000px;}
.lsa2{letter-spacing:0.913501px;}
.lsb2{letter-spacing:0.918000px;}
.lsa9{letter-spacing:0.945000px;}
.lsb0{letter-spacing:0.972000px;}
.lsa0{letter-spacing:0.990000px;}
.ls40{letter-spacing:1.080000px;}
.ls11{letter-spacing:1.122000px;}
.lsaf{letter-spacing:1.134000px;}
.ls77{letter-spacing:1.151986px;}
.lsae{letter-spacing:1.188000px;}
.ls44{letter-spacing:1.242000px;}
.lsa1{letter-spacing:2.429999px;}
.ls0{letter-spacing:2.592000px;}
.ls22{letter-spacing:2.700000px;}
.ls1{letter-spacing:2.767500px;}
.ls70{letter-spacing:84.630003px;}
.ls55{letter-spacing:92.232001px;}
.ls5b{letter-spacing:94.079997px;}
.ls4c{letter-spacing:97.020005px;}
.ls5a{letter-spacing:160.606209px;}
.ls53{letter-spacing:162.489909px;}
.ls51{letter-spacing:166.972237px;}
.ls4a{letter-spacing:168.855937px;}
.ls58{letter-spacing:174.467992px;}
.ls4d{letter-spacing:180.851990px;}
.ls71{letter-spacing:214.914001px;}
.ls4f{letter-spacing:253.007990px;}
.ls4e{letter-spacing:254.645992px;}
.ls54{letter-spacing:257.207986px;}
.ls56{letter-spacing:257.754007px;}
.ls4b{letter-spacing:261.155981px;}
.ls57{letter-spacing:266.280010px;}
.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;}
}
.wsc{word-spacing:-51.000000px;}
.wsb{word-spacing:-33.150001px;}
.ws2{word-spacing:-15.067500px;}
.ws2a{word-spacing:-14.700000px;}
.ws31{word-spacing:-13.596000px;}
.ws78{word-spacing:-13.500000px;}
.ws35{word-spacing:-12.852000px;}
.ws79{word-spacing:-12.798000px;}
.ws2e{word-spacing:-12.690000px;}
.ws53{word-spacing:-12.528000px;}
.ws1{word-spacing:-12.480000px;}
.ws33{word-spacing:-12.366000px;}
.ws3{word-spacing:-12.360000px;}
.ws6b{word-spacing:-12.312000px;}
.ws32{word-spacing:-12.258000px;}
.ws0{word-spacing:-12.192000px;}
.ws2d{word-spacing:-12.150000px;}
.ws9c{word-spacing:-11.250000px;}
.ws99{word-spacing:-10.305000px;}
.ws7d{word-spacing:-10.215000px;}
.wsac{word-spacing:-10.170000px;}
.ws9d{word-spacing:-10.125000px;}
.ws7b{word-spacing:-9.990000px;}
.ws7a{word-spacing:-9.855000px;}
.ws9b{word-spacing:-9.765000px;}
.ws8c{word-spacing:-9.675000px;}
.ws95{word-spacing:-9.630000px;}
.ws9a{word-spacing:-9.540000px;}
.ws8e{word-spacing:-9.450000px;}
.ws30{word-spacing:-8.775000px;}
.ws56{word-spacing:-8.694000px;}
.ws2b{word-spacing:-8.669700px;}
.ws6{word-spacing:-8.388900px;}
.ws2f{word-spacing:-8.353800px;}
.ws2c{word-spacing:-8.213400px;}
.ws8{word-spacing:-8.178300px;}
.ws54{word-spacing:-8.143200px;}
.ws6c{word-spacing:-8.108100px;}
.ws34{word-spacing:-8.073000px;}
.ws7{word-spacing:-8.037900px;}
.ws4{word-spacing:-8.034000px;}
.ws4f{word-spacing:-8.002800px;}
.ws5{word-spacing:-7.967700px;}
.ws9{word-spacing:-7.932600px;}
.ws7c{word-spacing:-7.920000px;}
.wsa{word-spacing:-7.827300px;}
.ws55{word-spacing:-7.792200px;}
.ws7e{word-spacing:-7.695000px;}
.ws47{word-spacing:-5.508000px;}
.ws11{word-spacing:-5.340000px;}
.ws7f{word-spacing:-4.806000px;}
.ws77{word-spacing:-4.284000px;}
.ws68{word-spacing:-3.864000px;}
.wsf{word-spacing:-3.276000px;}
.ws72{word-spacing:-1.890000px;}
.ws1b{word-spacing:-1.836000px;}
.ws65{word-spacing:-1.782000px;}
.ws27{word-spacing:-1.632000px;}
.ws93{word-spacing:-1.575000px;}
.ws88{word-spacing:-1.530000px;}
.ws3e{word-spacing:-1.458000px;}
.ws3a{word-spacing:-1.350000px;}
.ws3f{word-spacing:-1.296000px;}
.ws29{word-spacing:-1.275000px;}
.ws10{word-spacing:-1.260000px;}
.ws17{word-spacing:-1.242000px;}
.ws87{word-spacing:-1.215000px;}
.ws43{word-spacing:-1.188000px;}
.ws66{word-spacing:-1.134000px;}
.ws85{word-spacing:-1.080000px;}
.ws82{word-spacing:-1.035000px;}
.ws1d{word-spacing:-1.026000px;}
.ws28{word-spacing:-1.020000px;}
.ws20{word-spacing:-0.972000px;}
.wse{word-spacing:-0.960000px;}
.ws8f{word-spacing:-0.945000px;}
.ws67{word-spacing:-0.924000px;}
.ws41{word-spacing:-0.918000px;}
.ws92{word-spacing:-0.900000px;}
.ws4a{word-spacing:-0.864000px;}
.ws8b{word-spacing:-0.855000px;}
.ws80{word-spacing:-0.840000px;}
.ws64{word-spacing:-0.810000px;}
.ws52{word-spacing:-0.756000px;}
.ws84{word-spacing:-0.720000px;}
.ws16{word-spacing:-0.702000px;}
.ws42{word-spacing:-0.648000px;}
.wsa4{word-spacing:-0.630000px;}
.ws18{word-spacing:-0.594000px;}
.ws86{word-spacing:-0.585000px;}
.ws49{word-spacing:-0.540000px;}
.ws23{word-spacing:-0.510000px;}
.ws90{word-spacing:-0.495000px;}
.ws12{word-spacing:-0.486000px;}
.ws83{word-spacing:-0.450000px;}
.ws1e{word-spacing:-0.432000px;}
.ws75{word-spacing:-0.420000px;}
.wsa0{word-spacing:-0.405000px;}
.ws3c{word-spacing:-0.386100px;}
.ws15{word-spacing:-0.378000px;}
.ws40{word-spacing:-0.360000px;}
.ws21{word-spacing:-0.324000px;}
.wsa2{word-spacing:-0.315000px;}
.ws3b{word-spacing:-0.270000px;}
.ws39{word-spacing:-0.245700px;}
.ws70{word-spacing:-0.240000px;}
.ws91{word-spacing:-0.225000px;}
.ws38{word-spacing:-0.216000px;}
.ws1f{word-spacing:-0.210600px;}
.ws98{word-spacing:-0.180000px;}
.ws45{word-spacing:-0.162000px;}
.ws74{word-spacing:-0.140400px;}
.ws13{word-spacing:-0.108000px;}
.ws51{word-spacing:-0.105300px;}
.ws46{word-spacing:-0.054000px;}
.wsd{word-spacing:0.000000px;}
.ws4d{word-spacing:0.035100px;}
.wsa7{word-spacing:0.045000px;}
.ws44{word-spacing:0.054000px;}
.ws73{word-spacing:0.060000px;}
.ws96{word-spacing:0.090000px;}
.ws4b{word-spacing:0.108000px;}
.ws22{word-spacing:0.140400px;}
.ws81{word-spacing:0.180000px;}
.ws4e{word-spacing:0.216000px;}
.ws94{word-spacing:0.225000px;}
.ws14{word-spacing:0.270000px;}
.wsae{word-spacing:0.315000px;}
.ws3d{word-spacing:0.324000px;}
.ws89{word-spacing:0.360000px;}
.ws1a{word-spacing:0.378000px;}
.ws9f{word-spacing:0.405000px;}
.ws25{word-spacing:0.408000px;}
.ws1c{word-spacing:0.432000px;}
.wsa5{word-spacing:0.495000px;}
.wsa6{word-spacing:0.540000px;}
.ws9e{word-spacing:0.585000px;}
.wsb4{word-spacing:0.594000px;}
.wsa1{word-spacing:0.630000px;}
.wsab{word-spacing:0.675000px;}
.ws36{word-spacing:0.702000px;}
.ws97{word-spacing:0.720000px;}
.ws50{word-spacing:0.756000px;}
.wsad{word-spacing:0.765000px;}
.wsb0{word-spacing:0.810000px;}
.ws48{word-spacing:0.864000px;}
.ws26{word-spacing:0.867000px;}
.ws71{word-spacing:0.918000px;}
.ws8d{word-spacing:0.945000px;}
.wsaf{word-spacing:0.990000px;}
.wsa3{word-spacing:1.080000px;}
.wsb2{word-spacing:1.188000px;}
.wsb3{word-spacing:1.242000px;}
.ws8a{word-spacing:1.350000px;}
.ws19{word-spacing:1.404000px;}
.wsa8{word-spacing:1.440000px;}
.ws37{word-spacing:1.512000px;}
.wsb1{word-spacing:1.674000px;}
.ws4c{word-spacing:1.782000px;}
.ws24{word-spacing:1.836000px;}
.ws69{word-spacing:1.848000px;}
.wsa9{word-spacing:1.980000px;}
.ws76{word-spacing:2.430000px;}
.ws6a{word-spacing:2.700000px;}
.wsaa{word-spacing:3.870000px;}
.ws6e{word-spacing:46.787996px;}
.ws5d{word-spacing:49.139997px;}
.ws6f{word-spacing:66.947996px;}
.ws5b{word-spacing:69.846001px;}
.ws5c{word-spacing:71.693997px;}
.ws57{word-spacing:74.634005px;}
.ws6d{word-spacing:75.851996px;}
.ws61{word-spacing:87.780001px;}
.ws5e{word-spacing:89.627997px;}
.ws58{word-spacing:92.568005px;}
.ws63{word-spacing:144.773992px;}
.ws5a{word-spacing:151.157990px;}
.ws62{word-spacing:209.244010px;}
.ws59{word-spacing:242.507990px;}
.ws60{word-spacing:255.780010px;}
.ws5f{word-spacing:261.870010px;}
._1{margin-left:-11.388006px;}
._32{margin-left:-10.215000px;}
._2d{margin-left:-8.820000px;}
._6{margin-left:-7.607483px;}
._9{margin-left:-6.227434px;}
._4{margin-left:-4.822200px;}
._2{margin-left:-3.432000px;}
._0{margin-left:-1.776011px;}
._5{width:1.239644px;}
._8{width:2.270352px;}
._1a{width:3.270550px;}
._3{width:4.324800px;}
._30{width:5.334015px;}
._29{width:6.480000px;}
._2b{width:7.785000px;}
._2f{width:8.920522px;}
._31{width:9.965354px;}
._33{width:11.070653px;}
._2a{width:12.285000px;}
._2c{width:13.545000px;}
._a{width:15.281992px;}
._2e{width:17.460001px;}
._1c{width:37.128001px;}
._7{width:47.519958px;}
._1d{width:48.846004px;}
._f{width:55.313990px;}
._e{width:56.951992px;}
._14{width:59.513986px;}
._d{width:63.461981px;}
._15{width:69.132030px;}
._1e{width:70.139992px;}
._23{width:75.474003px;}
._24{width:90.725451px;}
._22{width:110.935411px;}
._27{width:125.748001px;}
._20{width:145.908001px;}
._26{width:153.342004px;}
._1f{width:172.535992px;}
._21{width:193.662004px;}
._28{width:199.709980px;}
._25{width:201.642003px;}
._19{width:215.753986px;}
._10{width:254.645992px;}
._16{width:257.754007px;}
._11{width:261.155981px;}
._17{width:262.331986px;}
._18{width:271.404010px;}
._12{width:322.223988px;}
._1b{width:332.820023px;}
._b{width:368.507996px;}
._c{width:378.462007px;}
._13{width:381.569995px;}
.fc5{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc4{color:rgb(245,130,32);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(131,144,151);}
.fsc{font-size:27.300001px;}
.fs7{font-size:33.150001px;}
.fs6{font-size:35.099999px;}
.fs4{font-size:39.000000px;}
.fsb{font-size:42.000000px;}
.fse{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:61.500000px;}
.fsa{font-size:66.000000px;}
.fsd{font-size:96.000000px;}
.fs9{font-size:108.000000px;}
.fs3{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:27.177601px;}
.y1{bottom:27.197851px;}
.y31{bottom:68.307899px;}
.y78{bottom:68.552997px;}
.y7f{bottom:69.547799px;}
.yc2{bottom:69.715648px;}
.yf8{bottom:81.104396px;}
.y9f{bottom:81.825755px;}
.y144{bottom:82.413591px;}
.y30{bottom:83.307899px;}
.y77{bottom:83.551496px;}
.y7e{bottom:84.546298px;}
.yc1{bottom:84.714147px;}
.y143{bottom:95.159841px;}
.yf7{bottom:96.102895px;}
.y9e{bottom:96.824254px;}
.y76{bottom:98.551496px;}
.y7d{bottom:99.544798px;}
.yc0{bottom:99.712646px;}
.y2f{bottom:102.636898px;}
.y142{bottom:107.906091px;}
.y18d{bottom:109.302302px;}
.yf6{bottom:111.108899px;}
.y9d{bottom:111.822753px;}
.y2e{bottom:113.313899px;}
.y75{bottom:113.555999px;}
.y7c{bottom:114.547799px;}
.y141{bottom:120.652342px;}
.y18c{bottom:124.300801px;}
.yf5{bottom:126.107398px;}
.y9c{bottom:126.821253px;}
.y2d{bottom:128.307899px;}
.y74{bottom:128.554498px;}
.y7b{bottom:129.546298px;}
.y140{bottom:133.398592px;}
.y18b{bottom:139.299300px;}
.yf4{bottom:141.105897px;}
.y9b{bottom:141.827244px;}
.y73{bottom:143.552997px;}
.y7a{bottom:144.544798px;}
.y13f{bottom:146.144842px;}
.y2c{bottom:147.636898px;}
.yca{bottom:152.214147px;}
.y18a{bottom:154.297799px;}
.yf3{bottom:156.104396px;}
.y9a{bottom:156.825744px;}
.y72{bottom:158.551496px;}
.y13e{bottom:158.891092px;}
.y79{bottom:159.543297px;}
.yc9{bottom:167.215648px;}
.y189{bottom:169.296298px;}
.yf2{bottom:171.102895px;}
.y13d{bottom:171.637342px;}
.y99{bottom:171.824243px;}
.y71{bottom:173.551496px;}
.yc8{bottom:182.214147px;}
.y188{bottom:184.294798px;}
.y13c{bottom:184.383592px;}
.yf1{bottom:186.101395px;}
.y98{bottom:186.822742px;}
.y2b{bottom:188.187313px;}
.y70{bottom:188.552997px;}
.y13b{bottom:197.129842px;}
.yc7{bottom:197.218650px;}
.y187{bottom:199.293297px;}
.y97{bottom:201.821241px;}
.y2a{bottom:203.185812px;}
.y6f{bottom:203.551496px;}
.y13a{bottom:209.876092px;}
.yc6{bottom:212.217149px;}
.y186{bottom:214.293297px;}
.yf0{bottom:215.551496px;}
.y86{bottom:215.767947px;}
.y96{bottom:216.821241px;}
.y29{bottom:218.190314px;}
.y6e{bottom:218.551496px;}
.y139{bottom:222.622342px;}
.yc5{bottom:227.215648px;}
.yef{bottom:230.554498px;}
.y85{bottom:230.766446px;}
.y95{bottom:231.824243px;}
.y28{bottom:233.188813px;}
.y6d{bottom:233.551496px;}
.y138{bottom:235.368593px;}
.y185{bottom:241.300801px;}
.yc4{bottom:242.214147px;}
.yee{bottom:245.552997px;}
.y84{bottom:245.764945px;}
.y94{bottom:246.822742px;}
.y137{bottom:248.114843px;}
.y27{bottom:248.187313px;}
.y6c{bottom:248.549995px;}
.y184{bottom:256.299300px;}
.yc3{bottom:257.212646px;}
.yed{bottom:260.551496px;}
.y83{bottom:260.763444px;}
.y136{bottom:260.861093px;}
.y93{bottom:261.821241px;}
.y26{bottom:263.185812px;}
.y6b{bottom:263.549995px;}
.y183{bottom:271.297799px;}
.y135{bottom:273.607343px;}
.yec{bottom:275.549995px;}
.y82{bottom:275.761943px;}
.y92{bottom:276.830246px;}
.y25{bottom:278.185812px;}
.y182{bottom:286.296298px;}
.y134{bottom:286.353593px;}
.y81{bottom:290.760442px;}
.y91{bottom:291.828745px;}
.y24{bottom:293.185812px;}
.y6a{bottom:293.635659px;}
.y133{bottom:299.099843px;}
.y181{bottom:301.294798px;}
.yeb{bottom:303.798147px;}
.y80{bottom:305.758942px;}
.y90{bottom:306.827244px;}
.y23{bottom:308.185812px;}
.y69{bottom:308.634159px;}
.y132{bottom:311.846093px;}
.y180{bottom:316.293297px;}
.yea{bottom:318.798147px;}
.y8f{bottom:321.825744px;}
.y22{bottom:323.187313px;}
.y68{bottom:323.632658px;}
.y131{bottom:324.592343px;}
.y17f{bottom:331.293297px;}
.ye9{bottom:333.801149px;}
.y8e{bottom:336.824243px;}
.y130{bottom:337.338593px;}
.y21{bottom:338.185812px;}
.y67{bottom:338.632658px;}
.ye8{bottom:348.799648px;}
.y12f{bottom:350.084844px;}
.y8d{bottom:351.822742px;}
.y20{bottom:353.187313px;}
.y66{bottom:353.632658px;}
.y12e{bottom:362.831094px;}
.ye7{bottom:363.798147px;}
.y17e{bottom:364.507018px;}
.y8c{bottom:366.821241px;}
.y1f{bottom:368.185812px;}
.y65{bottom:368.641640px;}
.y12d{bottom:375.577344px;}
.y17d{bottom:377.253268px;}
.ye6{bottom:378.813155px;}
.y8b{bottom:381.824266px;}
.y1e{bottom:383.187313px;}
.y64{bottom:383.640139px;}
.y12c{bottom:388.323594px;}
.y17c{bottom:389.999518px;}
.ye5{bottom:393.811654px;}
.y8a{bottom:396.822765px;}
.y1d{bottom:398.185812px;}
.y63{bottom:398.638638px;}
.y12b{bottom:401.069844px;}
.y17b{bottom:402.745768px;}
.ye4{bottom:408.810153px;}
.y89{bottom:411.821264px;}
.y1c{bottom:413.187313px;}
.y62{bottom:413.637137px;}
.y12a{bottom:413.816094px;}
.y17a{bottom:415.492018px;}
.ye3{bottom:423.808653px;}
.y129{bottom:426.562344px;}
.y88{bottom:426.821264px;}
.y1b{bottom:428.185812px;}
.y179{bottom:428.238268px;}
.y61{bottom:428.635636px;}
.ye2{bottom:438.807152px;}
.y128{bottom:439.308594px;}
.y178{bottom:440.984518px;}
.y87{bottom:441.819763px;}
.y1a{bottom:443.185812px;}
.y60{bottom:443.634136px;}
.y127{bottom:452.054845px;}
.y177{bottom:453.730768px;}
.ye1{bottom:453.805651px;}
.y19{bottom:458.185812px;}
.y5f{bottom:458.632635px;}
.y126{bottom:464.801095px;}
.y176{bottom:466.477018px;}
.ye0{bottom:468.804150px;}
.y18{bottom:473.187313px;}
.y5e{bottom:473.631134px;}
.y125{bottom:477.547345px;}
.y175{bottom:479.223269px;}
.ydf{bottom:483.802649px;}
.y17{bottom:488.185812px;}
.y124{bottom:490.293595px;}
.y174{bottom:491.969519px;}
.yde{bottom:498.801149px;}
.y123{bottom:503.039845px;}
.y16{bottom:503.221812px;}
.ybf{bottom:503.322765px;}
.y5d{bottom:503.743675px;}
.y173{bottom:504.715769px;}
.ydd{bottom:513.799648px;}
.y122{bottom:515.786095px;}
.y172{bottom:517.462019px;}
.y15{bottom:518.220311px;}
.ybe{bottom:518.321264px;}
.y5c{bottom:518.742174px;}
.y121{bottom:528.532345px;}
.ydc{bottom:528.798147px;}
.y171{bottom:530.208269px;}
.ybd{bottom:533.321264px;}
.y5b{bottom:533.740674px;}
.y120{bottom:541.278595px;}
.y170{bottom:542.954519px;}
.ydb{bottom:543.796646px;}
.ybc{bottom:548.319763px;}
.y5a{bottom:548.739173px;}
.y11f{bottom:554.024845px;}
.y16f{bottom:555.700769px;}
.yda{bottom:558.796646px;}
.y59{bottom:563.737672px;}
.y14{bottom:565.470311px;}
.y11e{bottom:566.771096px;}
.y16e{bottom:568.447019px;}
.ybb{bottom:578.500651px;}
.y58{bottom:578.736171px;}
.y11d{bottom:579.517346px;}
.y16d{bottom:581.193269px;}
.y13{bottom:581.967311px;}
.yd9{bottom:587.064285px;}
.y11c{bottom:592.263596px;}
.y57{bottom:593.734670px;}
.y16c{bottom:593.939520px;}
.yba{bottom:595.941151px;}
.y12{bottom:598.464311px;}
.yd8{bottom:602.062784px;}
.y11b{bottom:605.009846px;}
.y16b{bottom:606.685770px;}
.y56{bottom:608.733170px;}
.yb9{bottom:613.434151px;}
.y11{bottom:614.961311px;}
.yd7{bottom:617.061284px;}
.y11a{bottom:617.756096px;}
.y16a{bottom:619.432020px;}
.y55{bottom:623.731669px;}
.y119{bottom:630.502346px;}
.yb8{bottom:630.927151px;}
.y10{bottom:631.458311px;}
.yd6{bottom:632.059783px;}
.y169{bottom:632.178270px;}
.y54{bottom:638.730168px;}
.y118{bottom:643.248596px;}
.y168{bottom:644.924520px;}
.yd5{bottom:647.058282px;}
.yf{bottom:647.955311px;}
.yb7{bottom:648.367651px;}
.y53{bottom:653.728667px;}
.y117{bottom:655.998596px;}
.y167{bottom:657.670770px;}
.yd4{bottom:662.056781px;}
.ye{bottom:664.452311px;}
.yb6{bottom:665.802151px;}
.y52{bottom:668.727166px;}
.y166{bottom:670.417020px;}
.yd3{bottom:677.055280px;}
.yd{bottom:680.949311px;}
.y165{bottom:683.163270px;}
.yb5{bottom:683.242651px;}
.y51{bottom:683.725665px;}
.y116{bottom:685.448858px;}
.yd2{bottom:692.053780px;}
.y164{bottom:695.909520px;}
.yc{bottom:697.446311px;}
.y50{bottom:698.724165px;}
.y115{bottom:700.447357px;}
.yb4{bottom:700.677151px;}
.yd1{bottom:707.052279px;}
.y163{bottom:708.655771px;}
.y4f{bottom:713.722664px;}
.yb{bottom:713.943311px;}
.y114{bottom:715.447357px;}
.yb3{bottom:718.117651px;}
.y162{bottom:721.402021px;}
.yd0{bottom:722.050778px;}
.y4e{bottom:728.721163px;}
.ya{bottom:730.440311px;}
.y161{bottom:734.148271px;}
.yb2{bottom:735.555151px;}
.ycf{bottom:737.049277px;}
.y4d{bottom:743.719662px;}
.y113{bottom:744.900437px;}
.y160{bottom:746.894521px;}
.y9{bottom:746.937311px;}
.yce{bottom:752.047776px;}
.yb0{bottom:752.995651px;}
.y34{bottom:757.139396px;}
.y4c{bottom:758.718161px;}
.y15f{bottom:759.640771px;}
.y112{bottom:759.898937px;}
.y8{bottom:763.434311px;}
.ycd{bottom:767.046276px;}
.yb1{bottom:770.436151px;}
.y15e{bottom:772.387021px;}
.y4b{bottom:773.716661px;}
.y111{bottom:774.897436px;}
.y33{bottom:778.138646px;}
.ycc{bottom:782.044775px;}
.y15d{bottom:785.133271px;}
.y4a{bottom:788.715160px;}
.y110{bottom:789.895935px;}
.y7{bottom:793.434265px;}
.ycb{bottom:797.043274px;}
.y15c{bottom:797.879521px;}
.y32{bottom:799.137895px;}
.y49{bottom:803.713659px;}
.y15b{bottom:810.625771px;}
.y48{bottom:818.712158px;}
.y10f{bottom:819.347515px;}
.y15a{bottom:823.372022px;}
.yaf{bottom:825.171276px;}
.y6{bottom:826.422262px;}
.y47{bottom:833.712158px;}
.y10e{bottom:834.346014px;}
.y159{bottom:836.118272px;}
.yae{bottom:840.169775px;}
.y158{bottom:848.864522px;}
.y10d{bottom:849.350516px;}
.yad{bottom:855.169775px;}
.y157{bottom:861.610772px;}
.y46{bottom:863.794775px;}
.y10c{bottom:864.349015px;}
.yac{bottom:870.168274px;}
.y5{bottom:871.428264px;}
.y156{bottom:874.357022px;}
.y45{bottom:878.794775px;}
.y10b{bottom:879.347515px;}
.y19a{bottom:880.306781px;}
.y155{bottom:887.103272px;}
.y44{bottom:893.794775px;}
.y10a{bottom:894.346014px;}
.y199{bottom:895.305280px;}
.y154{bottom:899.849522px;}
.yff{bottom:900.328773px;}
.yab{bottom:900.340773px;}
.y43{bottom:908.794775px;}
.y109{bottom:909.346014px;}
.y198{bottom:910.303780px;}
.y153{bottom:912.595772px;}
.y4{bottom:916.434265px;}
.yfe{bottom:917.769273px;}
.yaa{bottom:917.781273px;}
.y42{bottom:923.794775px;}
.y108{bottom:924.349015px;}
.y197{bottom:925.302279px;}
.y152{bottom:925.342022px;}
.y35{bottom:926.409576px;}
.yfd{bottom:935.209773px;}
.ya9{bottom:935.221774px;}
.y151{bottom:938.088273px;}
.y41{bottom:938.794775px;}
.y107{bottom:939.347515px;}
.y196{bottom:940.300778px;}
.y150{bottom:950.834523px;}
.yfc{bottom:952.650273px;}
.ya8{bottom:952.662274px;}
.y40{bottom:953.796276px;}
.y106{bottom:954.346014px;}
.y195{bottom:955.299277px;}
.y14f{bottom:963.580773px;}
.y3f{bottom:968.794775px;}
.y105{bottom:969.347515px;}
.yfb{bottom:970.090773px;}
.ya7{bottom:970.102774px;}
.y194{bottom:970.297776px;}
.y14e{bottom:976.327023px;}
.y3e{bottom:983.796276px;}
.y104{bottom:984.346014px;}
.y193{bottom:985.296276px;}
.yfa{bottom:987.531273px;}
.ya6{bottom:987.537274px;}
.y14d{bottom:989.073273px;}
.y3d{bottom:998.794775px;}
.y103{bottom:999.346014px;}
.y192{bottom:1000.294775px;}
.y14c{bottom:1001.819523px;}
.yf9{bottom:1004.971774px;}
.ya5{bottom:1004.977774px;}
.y3c{bottom:1013.796276px;}
.y102{bottom:1014.344513px;}
.y14b{bottom:1014.565773px;}
.y191{bottom:1015.293274px;}
.ya4{bottom:1022.412274px;}
.y14a{bottom:1027.312023px;}
.y3b{bottom:1028.794775px;}
.y190{bottom:1037.046276px;}
.ya3{bottom:1039.852774px;}
.y149{bottom:1040.058273px;}
.y3a{bottom:1043.796276px;}
.y101{bottom:1043.797776px;}
.y18f{bottom:1052.044775px;}
.y148{bottom:1052.804524px;}
.ya2{bottom:1057.290274px;}
.y39{bottom:1058.794775px;}
.y100{bottom:1058.796276px;}
.y147{bottom:1065.550774px;}
.y18e{bottom:1073.793274px;}
.y38{bottom:1073.794775px;}
.ya0{bottom:1074.730774px;}
.y146{bottom:1078.297024px;}
.y37{bottom:1088.793274px;}
.y145{bottom:1091.043274px;}
.ya1{bottom:1092.171274px;}
.y36{bottom:1139.852966px;}
.y3{bottom:1140.126892px;}
.hb{height:23.842749px;}
.h10{height:35.394000px;}
.hc{height:36.669000px;}
.hf{height:36.681152px;}
.h8{height:38.838867px;}
.hd{height:41.134746px;}
.he{height:41.158746px;}
.h16{height:41.538000px;}
.h15{height:41.550000px;}
.h17{height:41.562001px;}
.h14{height:43.008000px;}
.h2{height:43.140000px;}
.h4{height:44.218500px;}
.h1d{height:44.505000px;}
.h1f{height:45.090000px;}
.h3{height:45.744000px;}
.h1e{height:46.080000px;}
.h12{height:47.454000px;}
.h1c{height:47.469727px;}
.h7{height:48.451172px;}
.h9{height:53.406000px;}
.ha{height:54.108000px;}
.h13{height:55.296000px;}
.h1b{height:57.600000px;}
.h18{height:76.877964px;}
.h19{height:76.925990px;}
.h1a{height:76.937997px;}
.h11{height:77.677734px;}
.h5{height:112.164000px;}
.h6{height:112.201172px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:14.091353px;}
.x2{left:61.191450px;}
.x7{left:140.952747px;}
.x4{left:233.456406px;}
.x9{left:238.143906px;}
.x5{left:251.456234px;}
.xb{left:286.359459px;}
.xa{left:288.396903px;}
.xc{left:300.594589px;}
.x3{left:584.586594px;}
.x8{left:824.207428px;}
.x1{left:825.232819px;}
@media print{
.v3{vertical-align:-16.319987pt;}
.v4{vertical-align:-15.413330pt;}
.v6{vertical-align:-9.626657pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:12.704026pt;}
.v2{vertical-align:16.186651pt;}
.v1{vertical-align:18.134115pt;}
.ls63{letter-spacing:-3.504000pt;}
.ls97{letter-spacing:-2.320000pt;}
.ls92{letter-spacing:-2.120000pt;}
.ls74{letter-spacing:-2.016000pt;}
.ls62{letter-spacing:-1.642667pt;}
.ls9a{letter-spacing:-1.240000pt;}
.lsad{letter-spacing:-1.000000pt;}
.lsaa{letter-spacing:-0.960000pt;}
.ls1b{letter-spacing:-0.912000pt;}
.lsac{letter-spacing:-0.880000pt;}
.ls95{letter-spacing:-0.720000pt;}
.ls96{letter-spacing:-0.680000pt;}
.ls94{letter-spacing:-0.640000pt;}
.ls5d{letter-spacing:-0.624000pt;}
.lsa6{letter-spacing:-0.600000pt;}
.ls89{letter-spacing:-0.576000pt;}
.lsa7{letter-spacing:-0.560000pt;}
.ls8a{letter-spacing:-0.520000pt;}
.ls91{letter-spacing:-0.480000pt;}
.ls8c{letter-spacing:-0.440000pt;}
.ls8f{letter-spacing:-0.400000pt;}
.lsb1{letter-spacing:-0.384000pt;}
.ls61{letter-spacing:-0.373333pt;}
.lsa8{letter-spacing:-0.360000pt;}
.ls17{letter-spacing:-0.336000pt;}
.ls8e{letter-spacing:-0.320000pt;}
.ls8b{letter-spacing:-0.280000pt;}
.ls5f{letter-spacing:-0.240000pt;}
.ls21{letter-spacing:-0.226667pt;}
.ls93{letter-spacing:-0.200000pt;}
.ls1f{letter-spacing:-0.192000pt;}
.lsa5{letter-spacing:-0.160000pt;}
.ls60{letter-spacing:-0.156000pt;}
.ls19{letter-spacing:-0.144000pt;}
.ls20{letter-spacing:-0.124800pt;}
.ls98{letter-spacing:-0.120000pt;}
.ls41{letter-spacing:-0.096000pt;}
.ls8d{letter-spacing:-0.080000pt;}
.ls72{letter-spacing:-0.053333pt;}
.ls1c{letter-spacing:-0.048000pt;}
.ls90{letter-spacing:-0.040000pt;}
.ls1d{letter-spacing:-0.031200pt;}
.ls16{letter-spacing:0.000000pt;}
.ls39{letter-spacing:0.000003pt;}
.ls5c{letter-spacing:0.000010pt;}
.ls29{letter-spacing:0.000163pt;}
.ls6f{letter-spacing:0.000253pt;}
.ls50{letter-spacing:0.010129pt;}
.ls4{letter-spacing:0.011754pt;}
.ls3{letter-spacing:0.012242pt;}
.ls2{letter-spacing:0.012324pt;}
.ls47{letter-spacing:0.031200pt;}
.ls9b{letter-spacing:0.036033pt;}
.ls52{letter-spacing:0.036738pt;}
.ls49{letter-spacing:0.036800pt;}
.lsab{letter-spacing:0.040000pt;}
.ls69{letter-spacing:0.047999pt;}
.ls10{letter-spacing:0.048000pt;}
.ls38{letter-spacing:0.051670pt;}
.ls46{letter-spacing:0.062399pt;}
.ls1a{letter-spacing:0.062400pt;}
.ls59{letter-spacing:0.068657pt;}
.ls86{letter-spacing:0.080000pt;}
.ls3e{letter-spacing:0.093600pt;}
.ls37{letter-spacing:0.095999pt;}
.lsf{letter-spacing:0.096000pt;}
.ls9c{letter-spacing:0.099973pt;}
.ls68{letter-spacing:0.100229pt;}
.ls6a{letter-spacing:0.100392pt;}
.ls7c{letter-spacing:0.109449pt;}
.ls6e{letter-spacing:0.110395pt;}
.ls88{letter-spacing:0.120001pt;}
.ls6b{letter-spacing:0.124800pt;}
.ls6c{letter-spacing:0.124801pt;}
.ls7e{letter-spacing:0.126865pt;}
.ls2d{letter-spacing:0.144000pt;}
.ls75{letter-spacing:0.144002pt;}
.lse{letter-spacing:0.155999pt;}
.ls5e{letter-spacing:0.156000pt;}
.ls3f{letter-spacing:0.156001pt;}
.ls84{letter-spacing:0.160000pt;}
.ls23{letter-spacing:0.187199pt;}
.lsa{letter-spacing:0.187200pt;}
.ls81{letter-spacing:0.191989pt;}
.ls2e{letter-spacing:0.192000pt;}
.ls7d{letter-spacing:0.192001pt;}
.ls48{letter-spacing:0.192004pt;}
.ls7f{letter-spacing:0.196789pt;}
.lsa4{letter-spacing:0.200000pt;}
.ls65{letter-spacing:0.201577pt;}
.ls2c{letter-spacing:0.202800pt;}
.lsb{letter-spacing:0.210147pt;}
.ls64{letter-spacing:0.213333pt;}
.ls26{letter-spacing:0.218399pt;}
.ls3d{letter-spacing:0.218401pt;}
.ls66{letter-spacing:0.222951pt;}
.lsc{letter-spacing:0.240000pt;}
.ls2a{letter-spacing:0.242676pt;}
.ls27{letter-spacing:0.249601pt;}
.ls6{letter-spacing:0.259189pt;}
.lsa3{letter-spacing:0.280000pt;}
.ls5{letter-spacing:0.288000pt;}
.ls79{letter-spacing:0.302362pt;}
.ls80{letter-spacing:0.305576pt;}
.ls82{letter-spacing:0.305739pt;}
.ls13{letter-spacing:0.318821pt;}
.ls43{letter-spacing:0.320000pt;}
.ls2f{letter-spacing:0.321541pt;}
.ls6d{letter-spacing:0.331796pt;}
.ls34{letter-spacing:0.335999pt;}
.ls1e{letter-spacing:0.336000pt;}
.ls7b{letter-spacing:0.336001pt;}
.ls42{letter-spacing:0.343200pt;}
.ls35{letter-spacing:0.355196pt;}
.ls85{letter-spacing:0.360000pt;}
.ls7a{letter-spacing:0.361077pt;}
.ls73{letter-spacing:0.373333pt;}
.ls18{letter-spacing:0.374400pt;}
.ls2b{letter-spacing:0.374402pt;}
.ls7{letter-spacing:0.384000pt;}
.ls87{letter-spacing:0.400000pt;}
.ls67{letter-spacing:0.419198pt;}
.ls14{letter-spacing:0.428684pt;}
.ls32{letter-spacing:0.432000pt;}
.ls83{letter-spacing:0.440000pt;}
.ls3a{letter-spacing:0.480000pt;}
.ls3b{letter-spacing:0.494411pt;}
.ls12{letter-spacing:0.498667pt;}
.ls36{letter-spacing:0.513600pt;}
.ls9f{letter-spacing:0.520000pt;}
.ls3c{letter-spacing:0.527999pt;}
.ls8{letter-spacing:0.528000pt;}
.ls9e{letter-spacing:0.560000pt;}
.lsd{letter-spacing:0.576000pt;}
.ls9{letter-spacing:0.590431pt;}
.ls78{letter-spacing:0.614401pt;}
.ls25{letter-spacing:0.623999pt;}
.ls31{letter-spacing:0.624000pt;}
.ls99{letter-spacing:0.640000pt;}
.ls9d{letter-spacing:0.651980pt;}
.ls24{letter-spacing:0.672000pt;}
.ls15{letter-spacing:0.680000pt;}
.ls45{letter-spacing:0.720000pt;}
.ls28{letter-spacing:0.729600pt;}
.ls33{letter-spacing:0.744064pt;}
.ls76{letter-spacing:0.746667pt;}
.ls30{letter-spacing:0.768000pt;}
.lsa2{letter-spacing:0.812001pt;}
.lsb2{letter-spacing:0.816000pt;}
.lsa9{letter-spacing:0.840000pt;}
.lsb0{letter-spacing:0.864000pt;}
.lsa0{letter-spacing:0.880000pt;}
.ls40{letter-spacing:0.960000pt;}
.ls11{letter-spacing:0.997333pt;}
.lsaf{letter-spacing:1.008000pt;}
.ls77{letter-spacing:1.023988pt;}
.lsae{letter-spacing:1.056000pt;}
.ls44{letter-spacing:1.104000pt;}
.lsa1{letter-spacing:2.159999pt;}
.ls0{letter-spacing:2.304000pt;}
.ls22{letter-spacing:2.400000pt;}
.ls1{letter-spacing:2.460000pt;}
.ls70{letter-spacing:75.226669pt;}
.ls55{letter-spacing:81.984001pt;}
.ls5b{letter-spacing:83.626664pt;}
.ls4c{letter-spacing:86.240004pt;}
.ls5a{letter-spacing:142.761074pt;}
.ls53{letter-spacing:144.435474pt;}
.ls51{letter-spacing:148.419766pt;}
.ls4a{letter-spacing:150.094166pt;}
.ls58{letter-spacing:155.082660pt;}
.ls4d{letter-spacing:160.757325pt;}
.ls71{letter-spacing:191.034668pt;}
.ls4f{letter-spacing:224.895991pt;}
.ls4e{letter-spacing:226.351993pt;}
.ls54{letter-spacing:228.629321pt;}
.ls56{letter-spacing:229.114673pt;}
.ls4b{letter-spacing:232.138649pt;}
.ls57{letter-spacing:236.693342pt;}
.wsc{word-spacing:-45.333333pt;}
.wsb{word-spacing:-29.466667pt;}
.ws2{word-spacing:-13.393333pt;}
.ws2a{word-spacing:-13.066667pt;}
.ws31{word-spacing:-12.085333pt;}
.ws78{word-spacing:-12.000000pt;}
.ws35{word-spacing:-11.424000pt;}
.ws79{word-spacing:-11.376000pt;}
.ws2e{word-spacing:-11.280000pt;}
.ws53{word-spacing:-11.136000pt;}
.ws1{word-spacing:-11.093333pt;}
.ws33{word-spacing:-10.992000pt;}
.ws3{word-spacing:-10.986667pt;}
.ws6b{word-spacing:-10.944000pt;}
.ws32{word-spacing:-10.896000pt;}
.ws0{word-spacing:-10.837333pt;}
.ws2d{word-spacing:-10.800000pt;}
.ws9c{word-spacing:-10.000000pt;}
.ws99{word-spacing:-9.160000pt;}
.ws7d{word-spacing:-9.080000pt;}
.wsac{word-spacing:-9.040000pt;}
.ws9d{word-spacing:-9.000000pt;}
.ws7b{word-spacing:-8.880000pt;}
.ws7a{word-spacing:-8.760000pt;}
.ws9b{word-spacing:-8.680000pt;}
.ws8c{word-spacing:-8.600000pt;}
.ws95{word-spacing:-8.560000pt;}
.ws9a{word-spacing:-8.480000pt;}
.ws8e{word-spacing:-8.400000pt;}
.ws30{word-spacing:-7.800000pt;}
.ws56{word-spacing:-7.728000pt;}
.ws2b{word-spacing:-7.706400pt;}
.ws6{word-spacing:-7.456800pt;}
.ws2f{word-spacing:-7.425600pt;}
.ws2c{word-spacing:-7.300800pt;}
.ws8{word-spacing:-7.269600pt;}
.ws54{word-spacing:-7.238400pt;}
.ws6c{word-spacing:-7.207200pt;}
.ws34{word-spacing:-7.176000pt;}
.ws7{word-spacing:-7.144800pt;}
.ws4{word-spacing:-7.141333pt;}
.ws4f{word-spacing:-7.113600pt;}
.ws5{word-spacing:-7.082400pt;}
.ws9{word-spacing:-7.051200pt;}
.ws7c{word-spacing:-7.040000pt;}
.wsa{word-spacing:-6.957600pt;}
.ws55{word-spacing:-6.926400pt;}
.ws7e{word-spacing:-6.840000pt;}
.ws47{word-spacing:-4.896000pt;}
.ws11{word-spacing:-4.746667pt;}
.ws7f{word-spacing:-4.272000pt;}
.ws77{word-spacing:-3.808000pt;}
.ws68{word-spacing:-3.434667pt;}
.wsf{word-spacing:-2.912000pt;}
.ws72{word-spacing:-1.680000pt;}
.ws1b{word-spacing:-1.632000pt;}
.ws65{word-spacing:-1.584000pt;}
.ws27{word-spacing:-1.450667pt;}
.ws93{word-spacing:-1.400000pt;}
.ws88{word-spacing:-1.360000pt;}
.ws3e{word-spacing:-1.296000pt;}
.ws3a{word-spacing:-1.200000pt;}
.ws3f{word-spacing:-1.152000pt;}
.ws29{word-spacing:-1.133333pt;}
.ws10{word-spacing:-1.120000pt;}
.ws17{word-spacing:-1.104000pt;}
.ws87{word-spacing:-1.080000pt;}
.ws43{word-spacing:-1.056000pt;}
.ws66{word-spacing:-1.008000pt;}
.ws85{word-spacing:-0.960000pt;}
.ws82{word-spacing:-0.920000pt;}
.ws1d{word-spacing:-0.912000pt;}
.ws28{word-spacing:-0.906667pt;}
.ws20{word-spacing:-0.864000pt;}
.wse{word-spacing:-0.853333pt;}
.ws8f{word-spacing:-0.840000pt;}
.ws67{word-spacing:-0.821333pt;}
.ws41{word-spacing:-0.816000pt;}
.ws92{word-spacing:-0.800000pt;}
.ws4a{word-spacing:-0.768000pt;}
.ws8b{word-spacing:-0.760000pt;}
.ws80{word-spacing:-0.746667pt;}
.ws64{word-spacing:-0.720000pt;}
.ws52{word-spacing:-0.672000pt;}
.ws84{word-spacing:-0.640000pt;}
.ws16{word-spacing:-0.624000pt;}
.ws42{word-spacing:-0.576000pt;}
.wsa4{word-spacing:-0.560000pt;}
.ws18{word-spacing:-0.528000pt;}
.ws86{word-spacing:-0.520000pt;}
.ws49{word-spacing:-0.480000pt;}
.ws23{word-spacing:-0.453333pt;}
.ws90{word-spacing:-0.440000pt;}
.ws12{word-spacing:-0.432000pt;}
.ws83{word-spacing:-0.400000pt;}
.ws1e{word-spacing:-0.384000pt;}
.ws75{word-spacing:-0.373333pt;}
.wsa0{word-spacing:-0.360000pt;}
.ws3c{word-spacing:-0.343200pt;}
.ws15{word-spacing:-0.336000pt;}
.ws40{word-spacing:-0.320000pt;}
.ws21{word-spacing:-0.288000pt;}
.wsa2{word-spacing:-0.280000pt;}
.ws3b{word-spacing:-0.240000pt;}
.ws39{word-spacing:-0.218400pt;}
.ws70{word-spacing:-0.213333pt;}
.ws91{word-spacing:-0.200000pt;}
.ws38{word-spacing:-0.192000pt;}
.ws1f{word-spacing:-0.187200pt;}
.ws98{word-spacing:-0.160000pt;}
.ws45{word-spacing:-0.144000pt;}
.ws74{word-spacing:-0.124800pt;}
.ws13{word-spacing:-0.096000pt;}
.ws51{word-spacing:-0.093600pt;}
.ws46{word-spacing:-0.048000pt;}
.wsd{word-spacing:0.000000pt;}
.ws4d{word-spacing:0.031200pt;}
.wsa7{word-spacing:0.040000pt;}
.ws44{word-spacing:0.048000pt;}
.ws73{word-spacing:0.053333pt;}
.ws96{word-spacing:0.080000pt;}
.ws4b{word-spacing:0.096000pt;}
.ws22{word-spacing:0.124800pt;}
.ws81{word-spacing:0.160000pt;}
.ws4e{word-spacing:0.192000pt;}
.ws94{word-spacing:0.200000pt;}
.ws14{word-spacing:0.240000pt;}
.wsae{word-spacing:0.280000pt;}
.ws3d{word-spacing:0.288000pt;}
.ws89{word-spacing:0.320000pt;}
.ws1a{word-spacing:0.336000pt;}
.ws9f{word-spacing:0.360000pt;}
.ws25{word-spacing:0.362667pt;}
.ws1c{word-spacing:0.384000pt;}
.wsa5{word-spacing:0.440000pt;}
.wsa6{word-spacing:0.480000pt;}
.ws9e{word-spacing:0.520000pt;}
.wsb4{word-spacing:0.528000pt;}
.wsa1{word-spacing:0.560000pt;}
.wsab{word-spacing:0.600000pt;}
.ws36{word-spacing:0.624000pt;}
.ws97{word-spacing:0.640000pt;}
.ws50{word-spacing:0.672000pt;}
.wsad{word-spacing:0.680000pt;}
.wsb0{word-spacing:0.720000pt;}
.ws48{word-spacing:0.768000pt;}
.ws26{word-spacing:0.770667pt;}
.ws71{word-spacing:0.816000pt;}
.ws8d{word-spacing:0.840000pt;}
.wsaf{word-spacing:0.880000pt;}
.wsa3{word-spacing:0.960000pt;}
.wsb2{word-spacing:1.056000pt;}
.wsb3{word-spacing:1.104000pt;}
.ws8a{word-spacing:1.200000pt;}
.ws19{word-spacing:1.248000pt;}
.wsa8{word-spacing:1.280000pt;}
.ws37{word-spacing:1.344000pt;}
.wsb1{word-spacing:1.488000pt;}
.ws4c{word-spacing:1.584000pt;}
.ws24{word-spacing:1.632000pt;}
.ws69{word-spacing:1.642667pt;}
.wsa9{word-spacing:1.760000pt;}
.ws76{word-spacing:2.160000pt;}
.ws6a{word-spacing:2.400000pt;}
.wsaa{word-spacing:3.440000pt;}
.ws6e{word-spacing:41.589330pt;}
.ws5d{word-spacing:43.679998pt;}
.ws6f{word-spacing:59.509330pt;}
.ws5b{word-spacing:62.085334pt;}
.ws5c{word-spacing:63.727998pt;}
.ws57{word-spacing:66.341337pt;}
.ws6d{word-spacing:67.423997pt;}
.ws61{word-spacing:78.026668pt;}
.ws5e{word-spacing:79.669331pt;}
.ws58{word-spacing:82.282671pt;}
.ws63{word-spacing:128.687993pt;}
.ws5a{word-spacing:134.362658pt;}
.ws62{word-spacing:185.994675pt;}
.ws59{word-spacing:215.562658pt;}
.ws60{word-spacing:227.360009pt;}
.ws5f{word-spacing:232.773342pt;}
._1{margin-left:-10.122672pt;}
._32{margin-left:-9.080000pt;}
._2d{margin-left:-7.840000pt;}
._6{margin-left:-6.762207pt;}
._9{margin-left:-5.535497pt;}
._4{margin-left:-4.286400pt;}
._2{margin-left:-3.050667pt;}
._0{margin-left:-1.578676pt;}
._5{width:1.101906pt;}
._8{width:2.018091pt;}
._1a{width:2.907155pt;}
._3{width:3.844267pt;}
._30{width:4.741347pt;}
._29{width:5.760000pt;}
._2b{width:6.920000pt;}
._2f{width:7.929353pt;}
._31{width:8.858093pt;}
._33{width:9.840581pt;}
._2a{width:10.920000pt;}
._2c{width:12.040000pt;}
._a{width:13.583993pt;}
._2e{width:15.520001pt;}
._1c{width:33.002668pt;}
._7{width:42.239962pt;}
._1d{width:43.418670pt;}
._f{width:49.167991pt;}
._e{width:50.623993pt;}
._14{width:52.901321pt;}
._d{width:56.410649pt;}
._15{width:61.450694pt;}
._1e{width:62.346659pt;}
._23{width:67.088003pt;}
._24{width:80.644846pt;}
._22{width:98.609254pt;}
._27{width:111.776001pt;}
._20{width:129.696001pt;}
._26{width:136.304004pt;}
._1f{width:153.365327pt;}
._21{width:172.144004pt;}
._28{width:177.519982pt;}
._25{width:179.237336pt;}
._19{width:191.781321pt;}
._10{width:226.351993pt;}
._16{width:229.114673pt;}
._11{width:232.138649pt;}
._17{width:233.183988pt;}
._18{width:241.248009pt;}
._12{width:286.421323pt;}
._1b{width:295.840020pt;}
._b{width:327.562663pt;}
._c{width:336.410673pt;}
._13{width:339.173328pt;}
.fsc{font-size:24.266668pt;}
.fs7{font-size:29.466667pt;}
.fs6{font-size:31.199999pt;}
.fs4{font-size:34.666667pt;}
.fsb{font-size:37.333333pt;}
.fse{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:54.666667pt;}
.fsa{font-size:58.666667pt;}
.fsd{font-size:85.333333pt;}
.fs9{font-size:96.000000pt;}
.fs3{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:24.157867pt;}
.y1{bottom:24.175868pt;}
.y31{bottom:60.718132pt;}
.y78{bottom:60.935997pt;}
.y7f{bottom:61.820266pt;}
.yc2{bottom:61.969465pt;}
.yf8{bottom:72.092797pt;}
.y9f{bottom:72.734004pt;}
.y144{bottom:73.256526pt;}
.y30{bottom:74.051466pt;}
.y77{bottom:74.267997pt;}
.y7e{bottom:75.152265pt;}
.yc1{bottom:75.301464pt;}
.y143{bottom:84.586526pt;}
.yf7{bottom:85.424796pt;}
.y9e{bottom:86.066004pt;}
.y76{bottom:87.601330pt;}
.y7d{bottom:88.484265pt;}
.yc0{bottom:88.633464pt;}
.y2f{bottom:91.232798pt;}
.y142{bottom:95.916526pt;}
.y18d{bottom:97.157601pt;}
.yf6{bottom:98.763466pt;}
.y9d{bottom:99.398003pt;}
.y2e{bottom:100.723466pt;}
.y75{bottom:100.938665pt;}
.y7c{bottom:101.820266pt;}
.y141{bottom:107.246526pt;}
.y18c{bottom:110.489601pt;}
.yf5{bottom:112.095465pt;}
.y9c{bottom:112.730002pt;}
.y2d{bottom:114.051466pt;}
.y74{bottom:114.270665pt;}
.y7b{bottom:115.152265pt;}
.y140{bottom:118.576526pt;}
.y18b{bottom:123.821600pt;}
.yf4{bottom:125.427464pt;}
.y9b{bottom:126.068662pt;}
.y73{bottom:127.602664pt;}
.y7a{bottom:128.484265pt;}
.y13f{bottom:129.906526pt;}
.y2c{bottom:131.232798pt;}
.yca{bottom:135.301464pt;}
.y18a{bottom:137.153599pt;}
.yf3{bottom:138.759463pt;}
.y9a{bottom:139.400661pt;}
.y72{bottom:140.934663pt;}
.y13e{bottom:141.236526pt;}
.y79{bottom:141.816264pt;}
.yc9{bottom:148.636132pt;}
.y189{bottom:150.485599pt;}
.yf2{bottom:152.091463pt;}
.y13d{bottom:152.566526pt;}
.y99{bottom:152.732660pt;}
.y71{bottom:154.267997pt;}
.yc8{bottom:161.968131pt;}
.y188{bottom:163.817598pt;}
.y13c{bottom:163.896526pt;}
.yf1{bottom:165.423462pt;}
.y98{bottom:166.064659pt;}
.y2b{bottom:167.277611pt;}
.y70{bottom:167.602664pt;}
.y13b{bottom:175.226526pt;}
.yc7{bottom:175.305466pt;}
.y187{bottom:177.149597pt;}
.y97{bottom:179.396659pt;}
.y2a{bottom:180.609610pt;}
.y6f{bottom:180.934663pt;}
.y13a{bottom:186.556527pt;}
.yc6{bottom:188.637466pt;}
.y186{bottom:190.482930pt;}
.yf0{bottom:191.601330pt;}
.y86{bottom:191.793730pt;}
.y96{bottom:192.729992pt;}
.y29{bottom:193.946946pt;}
.y6e{bottom:194.267997pt;}
.y139{bottom:197.886527pt;}
.yc5{bottom:201.969465pt;}
.yef{bottom:204.937331pt;}
.y85{bottom:205.125730pt;}
.y95{bottom:206.065994pt;}
.y28{bottom:207.278945pt;}
.y6d{bottom:207.601330pt;}
.y138{bottom:209.216527pt;}
.y185{bottom:214.489601pt;}
.yc4{bottom:215.301464pt;}
.yee{bottom:218.269331pt;}
.y84{bottom:218.457729pt;}
.y94{bottom:219.397993pt;}
.y137{bottom:220.546527pt;}
.y27{bottom:220.610944pt;}
.y6c{bottom:220.933329pt;}
.y184{bottom:227.821600pt;}
.yc3{bottom:228.633464pt;}
.yed{bottom:231.601330pt;}
.y83{bottom:231.789728pt;}
.y136{bottom:231.876527pt;}
.y93{bottom:232.729992pt;}
.y26{bottom:233.942944pt;}
.y6b{bottom:234.266663pt;}
.y183{bottom:241.153599pt;}
.y135{bottom:243.206527pt;}
.yec{bottom:244.933329pt;}
.y82{bottom:245.121727pt;}
.y92{bottom:246.071330pt;}
.y25{bottom:247.276277pt;}
.y182{bottom:254.485599pt;}
.y134{bottom:254.536527pt;}
.y81{bottom:258.453727pt;}
.y91{bottom:259.403329pt;}
.y24{bottom:260.609610pt;}
.y6a{bottom:261.009475pt;}
.y133{bottom:265.866527pt;}
.y181{bottom:267.817598pt;}
.yeb{bottom:270.042797pt;}
.y80{bottom:271.785726pt;}
.y90{bottom:272.735328pt;}
.y23{bottom:273.942944pt;}
.y69{bottom:274.341474pt;}
.y132{bottom:277.196527pt;}
.y180{bottom:281.149597pt;}
.yea{bottom:283.376131pt;}
.y8f{bottom:286.067328pt;}
.y22{bottom:287.277611pt;}
.y68{bottom:287.673474pt;}
.y131{bottom:288.526527pt;}
.y17f{bottom:294.482930pt;}
.ye9{bottom:296.712132pt;}
.y8e{bottom:299.399327pt;}
.y130{bottom:299.856528pt;}
.y21{bottom:300.609610pt;}
.y67{bottom:301.006807pt;}
.ye8{bottom:310.044131pt;}
.y12f{bottom:311.186528pt;}
.y8d{bottom:312.731326pt;}
.y20{bottom:313.944278pt;}
.y66{bottom:314.340140pt;}
.y12e{bottom:322.516528pt;}
.ye7{bottom:323.376131pt;}
.y17e{bottom:324.006238pt;}
.y8c{bottom:326.063325pt;}
.y1f{bottom:327.276277pt;}
.y65{bottom:327.681458pt;}
.y12d{bottom:333.846528pt;}
.y17d{bottom:335.336238pt;}
.ye6{bottom:336.722804pt;}
.y8b{bottom:339.399347pt;}
.y1e{bottom:340.610944pt;}
.y64{bottom:341.013457pt;}
.y12c{bottom:345.176528pt;}
.y17c{bottom:346.666238pt;}
.ye5{bottom:350.054804pt;}
.y8a{bottom:352.731346pt;}
.y1d{bottom:353.942944pt;}
.y63{bottom:354.345456pt;}
.y12b{bottom:356.506528pt;}
.y17b{bottom:357.996238pt;}
.ye4{bottom:363.386803pt;}
.y89{bottom:366.063346pt;}
.y1c{bottom:367.277611pt;}
.y62{bottom:367.677455pt;}
.y12a{bottom:367.836528pt;}
.y17a{bottom:369.326238pt;}
.ye3{bottom:376.718802pt;}
.y129{bottom:379.166528pt;}
.y88{bottom:379.396679pt;}
.y1b{bottom:380.609610pt;}
.y179{bottom:380.656238pt;}
.y61{bottom:381.009455pt;}
.ye2{bottom:390.050802pt;}
.y128{bottom:390.496528pt;}
.y178{bottom:391.986238pt;}
.y87{bottom:392.728678pt;}
.y1a{bottom:393.942944pt;}
.y60{bottom:394.341454pt;}
.y127{bottom:401.826528pt;}
.y177{bottom:403.316238pt;}
.ye1{bottom:403.382801pt;}
.y19{bottom:407.276277pt;}
.y5f{bottom:407.673453pt;}
.y126{bottom:413.156529pt;}
.y176{bottom:414.646239pt;}
.ye0{bottom:416.714800pt;}
.y18{bottom:420.610944pt;}
.y5e{bottom:421.005452pt;}
.y125{bottom:424.486529pt;}
.y175{bottom:425.976239pt;}
.ydf{bottom:430.046799pt;}
.y17{bottom:433.942944pt;}
.y124{bottom:435.816529pt;}
.y174{bottom:437.306239pt;}
.yde{bottom:443.378799pt;}
.y123{bottom:447.146529pt;}
.y16{bottom:447.308277pt;}
.ybf{bottom:447.398013pt;}
.y5d{bottom:447.772156pt;}
.y173{bottom:448.636239pt;}
.ydd{bottom:456.710798pt;}
.y122{bottom:458.476529pt;}
.y172{bottom:459.966239pt;}
.y15{bottom:460.640276pt;}
.ybe{bottom:460.730012pt;}
.y5c{bottom:461.104155pt;}
.y121{bottom:469.806529pt;}
.ydc{bottom:470.042797pt;}
.y171{bottom:471.296239pt;}
.ybd{bottom:474.063346pt;}
.y5b{bottom:474.436154pt;}
.y120{bottom:481.136529pt;}
.y170{bottom:482.626239pt;}
.ydb{bottom:483.374797pt;}
.ybc{bottom:487.395345pt;}
.y5a{bottom:487.768154pt;}
.y11f{bottom:492.466529pt;}
.y16f{bottom:493.956239pt;}
.yda{bottom:496.708130pt;}
.y59{bottom:501.100153pt;}
.y14{bottom:502.640276pt;}
.y11e{bottom:503.796529pt;}
.y16e{bottom:505.286239pt;}
.ybb{bottom:514.222801pt;}
.y58{bottom:514.432152pt;}
.y11d{bottom:515.126529pt;}
.y16d{bottom:516.616239pt;}
.y13{bottom:517.304276pt;}
.yd9{bottom:521.834920pt;}
.y11c{bottom:526.456530pt;}
.y57{bottom:527.764151pt;}
.y16c{bottom:527.946240pt;}
.yba{bottom:529.725468pt;}
.y12{bottom:531.968276pt;}
.yd8{bottom:535.166920pt;}
.y11b{bottom:537.786530pt;}
.y16b{bottom:539.276240pt;}
.y56{bottom:541.096151pt;}
.yb9{bottom:545.274801pt;}
.y11{bottom:546.632276pt;}
.yd7{bottom:548.498919pt;}
.y11a{bottom:549.116530pt;}
.y16a{bottom:550.606240pt;}
.y55{bottom:554.428150pt;}
.y119{bottom:560.446530pt;}
.yb8{bottom:560.824134pt;}
.y10{bottom:561.296276pt;}
.yd6{bottom:561.830918pt;}
.y169{bottom:561.936240pt;}
.y54{bottom:567.760149pt;}
.y118{bottom:571.776530pt;}
.y168{bottom:573.266240pt;}
.yd5{bottom:575.162917pt;}
.yf{bottom:575.960276pt;}
.yb7{bottom:576.326801pt;}
.y53{bottom:581.092149pt;}
.y117{bottom:583.109863pt;}
.y167{bottom:584.596240pt;}
.yd4{bottom:588.494917pt;}
.ye{bottom:590.624276pt;}
.yb6{bottom:591.824134pt;}
.y52{bottom:594.424148pt;}
.y166{bottom:595.926240pt;}
.yd3{bottom:601.826916pt;}
.yd{bottom:605.288276pt;}
.y165{bottom:607.256240pt;}
.yb5{bottom:607.326801pt;}
.y51{bottom:607.756147pt;}
.y116{bottom:609.287874pt;}
.yd2{bottom:615.158915pt;}
.y164{bottom:618.586240pt;}
.yc{bottom:619.952276pt;}
.y50{bottom:621.088146pt;}
.y115{bottom:622.619873pt;}
.yb4{bottom:622.824134pt;}
.yd1{bottom:628.490914pt;}
.y163{bottom:629.916240pt;}
.y4f{bottom:634.420146pt;}
.yb{bottom:634.616276pt;}
.y114{bottom:635.953206pt;}
.yb3{bottom:638.326801pt;}
.y162{bottom:641.246241pt;}
.yd0{bottom:641.822914pt;}
.y4e{bottom:647.752145pt;}
.ya{bottom:649.280276pt;}
.y161{bottom:652.576241pt;}
.yb2{bottom:653.826801pt;}
.ycf{bottom:655.154913pt;}
.y4d{bottom:661.084144pt;}
.y113{bottom:662.133722pt;}
.y160{bottom:663.906241pt;}
.y9{bottom:663.944276pt;}
.yce{bottom:668.486912pt;}
.yb0{bottom:669.329468pt;}
.y34{bottom:673.012797pt;}
.y4c{bottom:674.416143pt;}
.y15f{bottom:675.236241pt;}
.y112{bottom:675.465721pt;}
.y8{bottom:678.608276pt;}
.ycd{bottom:681.818912pt;}
.yb1{bottom:684.832135pt;}
.y15e{bottom:686.566241pt;}
.y4b{bottom:687.748143pt;}
.y111{bottom:688.797721pt;}
.y33{bottom:691.678796pt;}
.ycc{bottom:695.150911pt;}
.y15d{bottom:697.896241pt;}
.y4a{bottom:701.080142pt;}
.y110{bottom:702.129720pt;}
.y7{bottom:705.274902pt;}
.ycb{bottom:708.482910pt;}
.y15c{bottom:709.226241pt;}
.y32{bottom:710.344796pt;}
.y49{bottom:714.412141pt;}
.y15b{bottom:720.556241pt;}
.y48{bottom:727.744141pt;}
.y10f{bottom:728.308902pt;}
.y15a{bottom:731.886241pt;}
.yaf{bottom:733.485578pt;}
.y6{bottom:734.597566pt;}
.y47{bottom:741.077474pt;}
.y10e{bottom:741.640901pt;}
.y159{bottom:743.216241pt;}
.yae{bottom:746.817578pt;}
.y158{bottom:754.546242pt;}
.y10d{bottom:754.978237pt;}
.yad{bottom:760.150911pt;}
.y157{bottom:765.876242pt;}
.y46{bottom:767.817578pt;}
.y10c{bottom:768.310236pt;}
.yac{bottom:773.482910pt;}
.y5{bottom:774.602901pt;}
.y156{bottom:777.206242pt;}
.y45{bottom:781.150911pt;}
.y10b{bottom:781.642235pt;}
.y19a{bottom:782.494917pt;}
.y155{bottom:788.536242pt;}
.y44{bottom:794.484244pt;}
.y10a{bottom:794.974234pt;}
.y199{bottom:795.826916pt;}
.y154{bottom:799.866242pt;}
.yff{bottom:800.292243pt;}
.yab{bottom:800.302910pt;}
.y43{bottom:807.817578pt;}
.y109{bottom:808.307568pt;}
.y198{bottom:809.158915pt;}
.y153{bottom:811.196242pt;}
.y4{bottom:814.608236pt;}
.yfe{bottom:815.794909pt;}
.yaa{bottom:815.805576pt;}
.y42{bottom:821.150911pt;}
.y108{bottom:821.643569pt;}
.y197{bottom:822.490914pt;}
.y152{bottom:822.526242pt;}
.y35{bottom:823.475179pt;}
.yfd{bottom:831.297576pt;}
.ya9{bottom:831.308243pt;}
.y151{bottom:833.856242pt;}
.y41{bottom:834.484244pt;}
.y107{bottom:834.975569pt;}
.y196{bottom:835.822914pt;}
.y150{bottom:845.186242pt;}
.yfc{bottom:846.800243pt;}
.ya8{bottom:846.810910pt;}
.y40{bottom:847.818912pt;}
.y106{bottom:848.307568pt;}
.y195{bottom:849.154913pt;}
.y14f{bottom:856.516242pt;}
.y3f{bottom:861.150911pt;}
.y105{bottom:861.642235pt;}
.yfb{bottom:862.302910pt;}
.ya7{bottom:862.313577pt;}
.y194{bottom:862.486912pt;}
.y14e{bottom:867.846243pt;}
.y3e{bottom:874.485578pt;}
.y104{bottom:874.974234pt;}
.y193{bottom:875.818912pt;}
.yfa{bottom:877.805576pt;}
.ya6{bottom:877.810910pt;}
.y14d{bottom:879.176243pt;}
.y3d{bottom:887.817578pt;}
.y103{bottom:888.307568pt;}
.y192{bottom:889.150911pt;}
.y14c{bottom:890.506243pt;}
.yf9{bottom:893.308243pt;}
.ya5{bottom:893.313577pt;}
.y3c{bottom:901.152245pt;}
.y102{bottom:901.639567pt;}
.y14b{bottom:901.836243pt;}
.y191{bottom:902.482910pt;}
.ya4{bottom:908.810910pt;}
.y14a{bottom:913.166243pt;}
.y3b{bottom:914.484244pt;}
.y190{bottom:921.818912pt;}
.ya3{bottom:924.313577pt;}
.y149{bottom:924.496243pt;}
.y3a{bottom:927.818912pt;}
.y101{bottom:927.820246pt;}
.y18f{bottom:935.150911pt;}
.y148{bottom:935.826243pt;}
.ya2{bottom:939.813577pt;}
.y39{bottom:941.150911pt;}
.y100{bottom:941.152245pt;}
.y147{bottom:947.156243pt;}
.y18e{bottom:954.482910pt;}
.y38{bottom:954.484244pt;}
.ya0{bottom:955.316243pt;}
.y146{bottom:958.486243pt;}
.y37{bottom:967.816243pt;}
.y145{bottom:969.816243pt;}
.ya1{bottom:970.818910pt;}
.y36{bottom:1013.202637pt;}
.y3{bottom:1013.446126pt;}
.hb{height:21.193555pt;}
.h10{height:31.461333pt;}
.hc{height:32.594667pt;}
.hf{height:32.605469pt;}
.h8{height:34.523438pt;}
.hd{height:36.564219pt;}
.he{height:36.585552pt;}
.h16{height:36.922667pt;}
.h15{height:36.933334pt;}
.h17{height:36.944001pt;}
.h14{height:38.229333pt;}
.h2{height:38.346667pt;}
.h4{height:39.305333pt;}
.h1d{height:39.560000pt;}
.h1f{height:40.080000pt;}
.h3{height:40.661333pt;}
.h1e{height:40.960000pt;}
.h12{height:42.181333pt;}
.h1c{height:42.195312pt;}
.h7{height:43.067708pt;}
.h9{height:47.472000pt;}
.ha{height:48.096000pt;}
.h13{height:49.152000pt;}
.h1b{height:51.200000pt;}
.h18{height:68.335968pt;}
.h19{height:68.378658pt;}
.h1a{height:68.389330pt;}
.h11{height:69.046875pt;}
.h5{height:99.701333pt;}
.h6{height:99.734375pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:12.525647pt;}
.x2{left:54.392400pt;}
.x7{left:125.291331pt;}
.x4{left:207.516805pt;}
.x9{left:211.683472pt;}
.x5{left:223.516652pt;}
.xb{left:254.541742pt;}
.xa{left:256.352803pt;}
.xc{left:267.195190pt;}
.x3{left:519.632528pt;}
.x8{left:732.628825pt;}
.x1{left:733.540283pt;}
}




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