
    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_313a29ceaef8e0572088fb6c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.109000;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_a8fe50b0667ff08072eb413f.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_61980b3dbb08ae3bf6e90eab.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.973633;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_ce9229f9f8c64d499ec3d3d8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.024000;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_3f52b2deb306a5bdd76d9dc5.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.028000;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_354a2cd74443f5bd1ed187e1.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.109000;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_7fb5db9df7f7f6614ea56b04.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.109000;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_a41a3131cbe4b9261510325b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.107000;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_e9b7c876a0e8543afeca4975.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.094000;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_afe4384f1d18f7a9ea626d68.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.963379;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_1d7a30716a43802d600b4aec.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_f9564b227ec55475c73d72a9.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_ba318fcad7f2356e97e1955b.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.094000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_4eea27e6aebbfb0def7141c2.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_ff904c73520cb33bd8b945f7.woff2')format("woff");}.fff{font-family:fff;line-height:0.991000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.782080px;}
.lsa9{letter-spacing:-9.672000px;}
.ls94{letter-spacing:-4.242960px;}
.ls85{letter-spacing:-3.859200px;}
.ls4d{letter-spacing:-3.585600px;}
.lsaa{letter-spacing:-3.288000px;}
.ls80{letter-spacing:-3.039120px;}
.ls68{letter-spacing:-2.868480px;}
.ls73{letter-spacing:-2.689200px;}
.ls5f{letter-spacing:-2.267280px;}
.ls23{letter-spacing:-2.219040px;}
.ls59{letter-spacing:-2.031840px;}
.ls77{letter-spacing:-1.881360px;}
.ls2b{letter-spacing:-1.852560px;}
.ls76{letter-spacing:-1.833120px;}
.lsa7{letter-spacing:-1.794000px;}
.ls6f{letter-spacing:-1.591920px;}
.ls1c{letter-spacing:-1.494000px;}
.ls8f{letter-spacing:-1.374480px;}
.ls5a{letter-spacing:-1.314720px;}
.ls15{letter-spacing:-1.254960px;}
.lsa3{letter-spacing:-1.254000px;}
.ls16{letter-spacing:-1.195200px;}
.lsa2{letter-spacing:-1.194000px;}
.ls5c{letter-spacing:-1.157760px;}
.ls2c{letter-spacing:-1.135440px;}
.ls7f{letter-spacing:-1.061280px;}
.ls1b{letter-spacing:-1.015920px;}
.ls75{letter-spacing:-1.013040px;}
.ls78{letter-spacing:-0.964800px;}
.ls41{letter-spacing:-0.936000px;}
.lsa5{letter-spacing:-0.894000px;}
.ls5e{letter-spacing:-0.868320px;}
.ls7e{letter-spacing:-0.820080px;}
.ls19{letter-spacing:-0.776880px;}
.ls74{letter-spacing:-0.771840px;}
.ls5d{letter-spacing:-0.675360px;}
.ls5{letter-spacing:-0.673920px;}
.ls93{letter-spacing:-0.657360px;}
.lsa8{letter-spacing:-0.480000px;}
.ls4a{letter-spacing:-0.478080px;}
.lsac{letter-spacing:-0.420000px;}
.ls8a{letter-spacing:-0.418320px;}
.ls9{letter-spacing:-0.360000px;}
.ls5b{letter-spacing:-0.358560px;}
.lsa1{letter-spacing:-0.300000px;}
.ls4{letter-spacing:-0.298800px;}
.ls1f{letter-spacing:-0.289440px;}
.ls3b{letter-spacing:-0.288000px;}
.ls7d{letter-spacing:-0.270000px;}
.ls8{letter-spacing:-0.252720px;}
.ls2a{letter-spacing:-0.252000px;}
.ls22{letter-spacing:-0.241200px;}
.lsa6{letter-spacing:-0.240000px;}
.ls2d{letter-spacing:-0.239040px;}
.ls3f{letter-spacing:-0.216000px;}
.ls4f{letter-spacing:-0.192960px;}
.ls3e{letter-spacing:-0.191520px;}
.ls4e{letter-spacing:-0.180000px;}
.ls1d{letter-spacing:-0.179280px;}
.ls7{letter-spacing:-0.168480px;}
.ls24{letter-spacing:-0.144720px;}
.ls6e{letter-spacing:-0.144000px;}
.ls29{letter-spacing:-0.126000px;}
.lsa4{letter-spacing:-0.120000px;}
.ls18{letter-spacing:-0.119520px;}
.ls25{letter-spacing:-0.096480px;}
.lsab{letter-spacing:-0.060000px;}
.ls14{letter-spacing:-0.059760px;}
.ls20{letter-spacing:-0.048240px;}
.ls3{letter-spacing:0.000000px;}
.ls96{letter-spacing:0.047808px;}
.ls90{letter-spacing:0.048240px;}
.lsb{letter-spacing:0.059760px;}
.ls28{letter-spacing:0.072000px;}
.ls95{letter-spacing:0.095616px;}
.ls3d{letter-spacing:0.095760px;}
.ls9e{letter-spacing:0.120000px;}
.ls3a{letter-spacing:0.126000px;}
.ls34{letter-spacing:0.144000px;}
.ls70{letter-spacing:0.144720px;}
.ls9f{letter-spacing:0.151920px;}
.ls17{letter-spacing:0.179280px;}
.ls1{letter-spacing:0.180000px;}
.ls2e{letter-spacing:0.214560px;}
.ls3c{letter-spacing:0.216000px;}
.ls1a{letter-spacing:0.239040px;}
.ls13{letter-spacing:0.241200px;}
.ls6{letter-spacing:0.252720px;}
.ls61{letter-spacing:0.256968px;}
.ls87{letter-spacing:0.286848px;}
.ls42{letter-spacing:0.287280px;}
.ls40{letter-spacing:0.288000px;}
.ls21{letter-spacing:0.289440px;}
.lsc{letter-spacing:0.298800px;}
.lsa0{letter-spacing:0.300000px;}
.lsd{letter-spacing:0.310752px;}
.ls65{letter-spacing:0.322704px;}
.ls6c{letter-spacing:0.337680px;}
.ls1e{letter-spacing:0.358560px;}
.lsa{letter-spacing:0.360000px;}
.ls4c{letter-spacing:0.418320px;}
.ls8e{letter-spacing:0.478080px;}
.ls2{letter-spacing:0.540000px;}
.ls63{letter-spacing:0.627120px;}
.ls69{letter-spacing:0.657360px;}
.ls72{letter-spacing:0.675360px;}
.ls44{letter-spacing:0.717120px;}
.ls62{letter-spacing:0.836640px;}
.ls54{letter-spacing:1.015920px;}
.ls84{letter-spacing:1.075680px;}
.ls7b{letter-spacing:1.350720px;}
.ls31{letter-spacing:1.532160px;}
.ls71{letter-spacing:1.691208px;}
.ls4b{letter-spacing:1.733040px;}
.ls46{letter-spacing:1.744992px;}
.ls89{letter-spacing:1.762920px;}
.ls45{letter-spacing:1.852560px;}
.ls6d{letter-spacing:2.074320px;}
.ls97{letter-spacing:2.390400px;}
.ls64{letter-spacing:2.450160px;}
.ls11{letter-spacing:2.501280px;}
.ls52{letter-spacing:2.527848px;}
.ls58{letter-spacing:2.797920px;}
.ls53{letter-spacing:3.144240px;}
.ls91{letter-spacing:3.161304px;}
.ls27{letter-spacing:3.167280px;}
.ls56{letter-spacing:3.228480px;}
.ls79{letter-spacing:3.239280px;}
.ls86{letter-spacing:3.821040px;}
.ls57{letter-spacing:3.884400px;}
.ls8b{letter-spacing:3.890448px;}
.ls88{letter-spacing:3.911040px;}
.ls83{letter-spacing:3.949920px;}
.ls49{letter-spacing:4.274064px;}
.ls55{letter-spacing:4.587120px;}
.ls10{letter-spacing:4.601520px;}
.ls7c{letter-spacing:4.920480px;}
.ls6a{letter-spacing:5.318640px;}
.ls51{letter-spacing:6.035760px;}
.ls7a{letter-spacing:6.125400px;}
.ls9d{letter-spacing:6.250896px;}
.ls26{letter-spacing:6.752880px;}
.ls8c{letter-spacing:7.470000px;}
.ls60{letter-spacing:8.187120px;}
.ls47{letter-spacing:8.904240px;}
.ls66{letter-spacing:9.621360px;}
.ls6b{letter-spacing:9.985680px;}
.ls50{letter-spacing:10.398240px;}
.lsf{letter-spacing:13.266720px;}
.ls82{letter-spacing:16.852320px;}
.ls8d{letter-spacing:17.897040px;}
.ls67{letter-spacing:25.084800px;}
.ls43{letter-spacing:32.634000px;}
.ls48{letter-spacing:35.460000px;}
.ls9b{letter-spacing:43.863840px;}
.ls9a{letter-spacing:44.580960px;}
.ls99{letter-spacing:46.015200px;}
.ls9c{letter-spacing:46.732320px;}
.ls98{letter-spacing:54.680400px;}
.ls81{letter-spacing:62.568720px;}
.ls2f{letter-spacing:80.208000px;}
.ls38{letter-spacing:100.931040px;}
.ls30{letter-spacing:121.968000px;}
.lse{letter-spacing:202.347360px;}
.ls32{letter-spacing:209.520000px;}
.ls35{letter-spacing:220.320000px;}
.ls36{letter-spacing:365.760000px;}
.ls37{letter-spacing:637.920000px;}
.ls12{letter-spacing:849.049200px;}
.ls92{letter-spacing:849.060000px;}
.ls0{letter-spacing:849.070080px;}
.ls39{letter-spacing:1850.466240px;}
.ls33{letter-spacing:2026.800000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-40.680000px;}
.ws4f{word-spacing:-28.854000px;}
.ws42{word-spacing:-28.476000px;}
.ws33{word-spacing:-28.224000px;}
.ws54{word-spacing:-20.610000px;}
.wsd4{word-spacing:-20.430000px;}
.wsc2{word-spacing:-20.250000px;}
.wsb5{word-spacing:-19.980000px;}
.ws49{word-spacing:-18.194400px;}
.ws44{word-spacing:-17.715600px;}
.ws1{word-spacing:-17.100720px;}
.ws43{word-spacing:-16.200000px;}
.ws0{word-spacing:-16.174080px;}
.ws45{word-spacing:-14.688000px;}
.ws46{word-spacing:-14.616000px;}
.ws48{word-spacing:-14.400000px;}
.ws47{word-spacing:-14.112000px;}
.ws89{word-spacing:-12.609360px;}
.wsdb{word-spacing:-12.370320px;}
.wse2{word-spacing:-12.312000px;}
.ws52{word-spacing:-12.310560px;}
.ws36{word-spacing:-12.191040px;}
.ws65{word-spacing:-12.131280px;}
.ws53{word-spacing:-11.952000px;}
.wse{word-spacing:-11.892240px;}
.wse8{word-spacing:-11.892000px;}
.ws51{word-spacing:-11.832480px;}
.wse5{word-spacing:-11.832000px;}
.wsda{word-spacing:-11.712960px;}
.wsc{word-spacing:-11.653200px;}
.wse1{word-spacing:-11.652000px;}
.wsac{word-spacing:-11.593440px;}
.wse7{word-spacing:-11.592000px;}
.ws77{word-spacing:-11.533680px;}
.wsea{word-spacing:-11.532000px;}
.ws50{word-spacing:-11.473920px;}
.wse3{word-spacing:-11.295120px;}
.wscf{word-spacing:-11.294640px;}
.wsf{word-spacing:-11.175120px;}
.wsdf{word-spacing:-11.056800px;}
.ws55{word-spacing:-10.936080px;}
.ws35{word-spacing:-10.816560px;}
.wse4{word-spacing:-10.815120px;}
.ws11{word-spacing:-10.756800px;}
.wseb{word-spacing:-10.698000px;}
.wsd{word-spacing:-10.697040px;}
.wsad{word-spacing:-10.637280px;}
.wsd0{word-spacing:-10.577520px;}
.wsa8{word-spacing:-10.516320px;}
.ws67{word-spacing:-10.468080px;}
.wsd5{word-spacing:-10.458000px;}
.wse0{word-spacing:-10.456800px;}
.ws94{word-spacing:-10.323360px;}
.ws14{word-spacing:-10.178640px;}
.ws15{word-spacing:-10.130400px;}
.ws34{word-spacing:-10.099440px;}
.ws8a{word-spacing:-10.082160px;}
.ws66{word-spacing:-10.033920px;}
.ws56{word-spacing:-9.985680px;}
.ws78{word-spacing:-9.937440px;}
.ws76{word-spacing:-9.920160px;}
.ws13{word-spacing:-9.889200px;}
.ws10{word-spacing:-9.740880px;}
.wse9{word-spacing:-9.681120px;}
.ws69{word-spacing:-9.503280px;}
.wsa3{word-spacing:-9.406800px;}
.ws6a{word-spacing:-9.310320px;}
.wsa9{word-spacing:-9.213840px;}
.wsa4{word-spacing:-9.165600px;}
.wsae{word-spacing:-9.117360px;}
.ws68{word-spacing:-9.020880px;}
.wse6{word-spacing:-8.664000px;}
.ws93{word-spacing:-8.586720px;}
.wsa6{word-spacing:-8.345520px;}
.wsa7{word-spacing:-8.297280px;}
.ws16{word-spacing:-7.959600px;}
.wsa5{word-spacing:-7.911360px;}
.wsd9{word-spacing:-7.709040px;}
.wsbe{word-spacing:-7.560000px;}
.ws12{word-spacing:-7.200000px;}
.wsaf{word-spacing:-7.139520px;}
.ws92{word-spacing:-7.056000px;}
.ws75{word-spacing:-6.984000px;}
.wsb6{word-spacing:-6.319440px;}
.ws99{word-spacing:-3.167280px;}
.ws8c{word-spacing:-2.928240px;}
.ws5e{word-spacing:-2.748960px;}
.ws58{word-spacing:-2.270880px;}
.wsab{word-spacing:-2.122560px;}
.wsb7{word-spacing:-2.091600px;}
.wsbf{word-spacing:-2.031840px;}
.wscb{word-spacing:-2.026080px;}
.ws2e{word-spacing:-1.833120px;}
.ws59{word-spacing:-1.733040px;}
.wsb8{word-spacing:-1.673280px;}
.wsdc{word-spacing:-1.638000px;}
.ws6f{word-spacing:-1.553760px;}
.wsb1{word-spacing:-1.350720px;}
.ws2c{word-spacing:-1.314720px;}
.ws2f{word-spacing:-1.302480px;}
.wsbd{word-spacing:-1.075680px;}
.ws2d{word-spacing:-0.836640px;}
.ws7b{word-spacing:-0.776880px;}
.wsf6{word-spacing:-0.708000px;}
.ws87{word-spacing:-0.675360px;}
.ws96{word-spacing:-0.657360px;}
.wsd6{word-spacing:-0.630000px;}
.ws3a{word-spacing:-0.597600px;}
.wsb{word-spacing:-0.540000px;}
.ws71{word-spacing:-0.537840px;}
.ws17{word-spacing:-0.530640px;}
.wsc7{word-spacing:-0.478080px;}
.wsf7{word-spacing:-0.456000px;}
.wsc1{word-spacing:-0.434160px;}
.ws8{word-spacing:-0.360000px;}
.ws2a{word-spacing:-0.358560px;}
.wsec{word-spacing:-0.330000px;}
.ws72{word-spacing:-0.298800px;}
.ws38{word-spacing:-0.252000px;}
.ws1a{word-spacing:-0.239040px;}
.ws4b{word-spacing:-0.216000px;}
.ws9{word-spacing:-0.180000px;}
.ws39{word-spacing:-0.179280px;}
.ws115{word-spacing:-0.162000px;}
.wsa0{word-spacing:-0.144720px;}
.ws4a{word-spacing:-0.144000px;}
.ws37{word-spacing:-0.126000px;}
.ws5{word-spacing:-0.119520px;}
.ws9e{word-spacing:-0.096480px;}
.wsf8{word-spacing:-0.060000px;}
.wsb0{word-spacing:-0.059760px;}
.wscd{word-spacing:-0.048240px;}
.ws3{word-spacing:0.000000px;}
.ws32{word-spacing:0.048240px;}
.ws97{word-spacing:0.059760px;}
.ws60{word-spacing:0.090000px;}
.ws4e{word-spacing:0.095760px;}
.ws64{word-spacing:0.096480px;}
.ws1d{word-spacing:0.119520px;}
.ws101{word-spacing:0.120000px;}
.ws63{word-spacing:0.144720px;}
.ws7{word-spacing:0.168480px;}
.ws82{word-spacing:0.179280px;}
.wsa{word-spacing:0.180000px;}
.ws4c{word-spacing:0.216000px;}
.ws40{word-spacing:0.239040px;}
.ws103{word-spacing:0.240000px;}
.ws86{word-spacing:0.241200px;}
.wsc5{word-spacing:0.270000px;}
.ws9f{word-spacing:0.289440px;}
.ws1f{word-spacing:0.298800px;}
.ws11e{word-spacing:0.300000px;}
.ws10e{word-spacing:0.318000px;}
.ws20{word-spacing:0.358560px;}
.ws19{word-spacing:0.418320px;}
.ws7a{word-spacing:0.478080px;}
.ws106{word-spacing:0.480000px;}
.ws110{word-spacing:0.558000px;}
.ws10a{word-spacing:0.576000px;}
.ws105{word-spacing:0.594000px;}
.ws1c{word-spacing:0.597600px;}
.wsf0{word-spacing:0.600000px;}
.ws113{word-spacing:0.660000px;}
.ws10d{word-spacing:0.678000px;}
.wsee{word-spacing:0.738000px;}
.wsf4{word-spacing:0.744000px;}
.ws108{word-spacing:0.750000px;}
.wsfa{word-spacing:0.762000px;}
.ws31{word-spacing:0.771840px;}
.ws6e{word-spacing:0.776880px;}
.ws10c{word-spacing:0.786000px;}
.wsb2{word-spacing:0.820080px;}
.ws7d{word-spacing:0.836640px;}
.ws88{word-spacing:0.868320px;}
.ws10f{word-spacing:0.870000px;}
.ws1e{word-spacing:0.896400px;}
.wsc6{word-spacing:0.900000px;}
.ws4d{word-spacing:0.936000px;}
.ws10b{word-spacing:0.954000px;}
.wsf1{word-spacing:0.960000px;}
.ws83{word-spacing:1.015920px;}
.ws104{word-spacing:1.038000px;}
.ws114{word-spacing:1.044000px;}
.wsfb{word-spacing:1.122000px;}
.wsef{word-spacing:1.128000px;}
.wsf2{word-spacing:1.134000px;}
.ws79{word-spacing:1.135440px;}
.ws109{word-spacing:1.170000px;}
.wsfd{word-spacing:1.194000px;}
.ws1b{word-spacing:1.195200px;}
.wsf3{word-spacing:1.224000px;}
.wsfc{word-spacing:1.236000px;}
.wsf5{word-spacing:1.248000px;}
.wsff{word-spacing:1.254000px;}
.ws6c{word-spacing:1.254960px;}
.ws112{word-spacing:1.272000px;}
.ws3b{word-spacing:1.314720px;}
.wsed{word-spacing:1.338000px;}
.wsde{word-spacing:1.374480px;}
.ws30{word-spacing:1.398960px;}
.ws95{word-spacing:1.494000px;}
.ws21{word-spacing:1.553760px;}
.ws28{word-spacing:1.613520px;}
.wsc9{word-spacing:1.673280px;}
.ws107{word-spacing:1.794000px;}
.ws100{word-spacing:1.818000px;}
.ws22{word-spacing:1.852560px;}
.wscc{word-spacing:1.881360px;}
.ws27{word-spacing:2.031840px;}
.ws11b{word-spacing:2.034000px;}
.ws74{word-spacing:2.267280px;}
.ws61{word-spacing:2.270880px;}
.ws102{word-spacing:2.280000px;}
.ws119{word-spacing:2.304000px;}
.ws6d{word-spacing:2.330640px;}
.wsfe{word-spacing:2.412000px;}
.wsc4{word-spacing:2.629440px;}
.wsaa{word-spacing:2.689200px;}
.ws3c{word-spacing:2.748960px;}
.ws8b{word-spacing:2.868480px;}
.ws7c{word-spacing:2.928240px;}
.wsce{word-spacing:2.942640px;}
.ws41{word-spacing:2.988000px;}
.wsd8{word-spacing:3.227040px;}
.wsa2{word-spacing:3.232080px;}
.ws118{word-spacing:3.378000px;}
.ws117{word-spacing:3.438000px;}
.ws3f{word-spacing:3.466080px;}
.ws5f{word-spacing:3.585600px;}
.ws5b{word-spacing:3.645360px;}
.wsa1{word-spacing:3.666240px;}
.ws73{word-spacing:3.705120px;}
.ws111{word-spacing:3.930000px;}
.ws116{word-spacing:4.014000px;}
.ws5a{word-spacing:4.183200px;}
.wsd3{word-spacing:4.242960px;}
.ws3e{word-spacing:4.362480px;}
.ws62{word-spacing:4.389840px;}
.ws11f{word-spacing:4.422000px;}
.wsd1{word-spacing:4.422240px;}
.ws6{word-spacing:4.900320px;}
.ws11a{word-spacing:4.902000px;}
.wsb4{word-spacing:5.065200px;}
.wsb9{word-spacing:5.079600px;}
.ws2b{word-spacing:5.139360px;}
.ws98{word-spacing:5.199120px;}
.ws29{word-spacing:5.617440px;}
.ws70{word-spacing:6.334560px;}
.wsd7{word-spacing:6.573600px;}
.wsca{word-spacing:6.932160px;}
.ws85{word-spacing:6.991920px;}
.ws3d{word-spacing:7.051680px;}
.wsc8{word-spacing:7.230960px;}
.ws84{word-spacing:7.350480px;}
.ws81{word-spacing:7.768800px;}
.ws7f{word-spacing:7.948080px;}
.ws7e{word-spacing:8.007840px;}
.wsc3{word-spacing:8.246880px;}
.ws80{word-spacing:8.485920px;}
.wsd2{word-spacing:8.665200px;}
.ws5c{word-spacing:8.724960px;}
.wsbb{word-spacing:8.964000px;}
.ws5d{word-spacing:9.203040px;}
.ws8e{word-spacing:9.442080px;}
.ws9c{word-spacing:9.696240px;}
.ws8d{word-spacing:9.920160px;}
.ws9a{word-spacing:10.099440px;}
.ws9b{word-spacing:10.130400px;}
.ws9d{word-spacing:10.226880px;}
.ws6b{word-spacing:10.697040px;}
.ws4{word-spacing:11.414160px;}
.ws11d{word-spacing:12.486000px;}
.ws11c{word-spacing:12.846000px;}
.ws90{word-spacing:12.848400px;}
.ws23{word-spacing:13.087440px;}
.ws24{word-spacing:13.565520px;}
.wsdd{word-spacing:14.282640px;}
.wsba{word-spacing:15.477840px;}
.ws8f{word-spacing:15.716880px;}
.ws91{word-spacing:16.434000px;}
.wsb3{word-spacing:18.331200px;}
.wsbc{word-spacing:19.302480px;}
.ws26{word-spacing:20.198880px;}
.ws25{word-spacing:20.736720px;}
.ws57{word-spacing:21.453840px;}
.wsc0{word-spacing:36.758880px;}
.ws18{word-spacing:74.458080px;}
.wsf9{word-spacing:91.284000px;}
._22{margin-left:-8.167104px;}
._1d{margin-left:-5.786568px;}
._0{margin-left:-4.111488px;}
._c{margin-left:-3.095568px;}
._1{margin-left:-2.019888px;}
._3{margin-left:-1.000224px;}
._2{width:1.416312px;}
._e{width:2.486016px;}
._4{width:3.960000px;}
._14{width:5.061672px;}
._15{width:6.663240px;}
._16{width:8.336520px;}
._1e{width:9.394272px;}
._13{width:10.786680px;}
._12{width:13.750776px;}
._21{width:15.346368px;}
._1f{width:16.770456px;}
._26{width:17.841312px;}
._23{width:19.257336px;}
._1c{width:21.099024px;}
._1b{width:22.173192px;}
._a{width:23.360184px;}
._20{width:24.871176px;}
._25{width:35.900208px;}
._24{width:37.199520px;}
._d{width:54.859680px;}
._8{width:107.657640px;}
._7{width:115.895952px;}
._10{width:172.057248px;}
._5{width:179.271504px;}
._6{width:180.712224px;}
._11{width:189.841824px;}
._f{width:193.783752px;}
._9{width:200.088432px;}
._b{width:201.498768px;}
._1a{width:504.174672px;}
._19{width:539.606016px;}
._18{width:710.118792px;}
._27{width:835.632000px;}
._17{width:1815.763392px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:36.000000px;}
.fs4{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs7{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs9{font-size:90.000000px;}
.fs8{font-size:95.760000px;}
.fs6{font-size:126.000000px;}
.fs2{font-size:180.000000px;}
.y19{bottom:-67.680000px;}
.y18{bottom:-36.360000px;}
.y13{bottom:-9.180000px;}
.y17{bottom:-4.860000px;}
.y0{bottom:0.000000px;}
.y9{bottom:1.260000px;}
.y4{bottom:3.240000px;}
.yc{bottom:10.800000px;}
.y3{bottom:26.640000px;}
.y16{bottom:27.540000px;}
.y2{bottom:50.040000px;}
.y1ba{bottom:63.176040px;}
.y195{bottom:63.178020px;}
.y140{bottom:63.178200px;}
.y1fa{bottom:63.180000px;}
.ydc{bottom:63.180540px;}
.y124{bottom:63.180720px;}
.y3a{bottom:63.182160px;}
.y88{bottom:63.182520px;}
.yb3{bottom:63.184860px;}
.y101{bottom:63.193140px;}
.y1{bottom:77.580000px;}
.y1b9{bottom:80.458020px;}
.y194{bottom:80.460000px;}
.y13f{bottom:80.460180px;}
.ydb{bottom:80.462520px;}
.y123{bottom:80.462700px;}
.yb2{bottom:80.466840px;}
.y1f9{bottom:83.700000px;}
.y39{bottom:86.397660px;}
.y87{bottom:86.398020px;}
.y100{bottom:86.408640px;}
.y1b8{bottom:97.740000px;}
.yda{bottom:97.744500px;}
.yb1{bottom:97.748820px;}
.y13e{bottom:103.675680px;}
.y122{bottom:103.678200px;}
.y38{bottom:103.679640px;}
.y86{bottom:103.680000px;}
.y193{bottom:103.688280px;}
.yff{bottom:103.690620px;}
.yb0{bottom:115.030800px;}
.y13d{bottom:120.957660px;}
.yd9{bottom:120.960000px;}
.y121{bottom:120.960180px;}
.y37{bottom:120.961620px;}
.y192{bottom:120.970260px;}
.yfe{bottom:120.972600px;}
.y85{bottom:124.200000px;}
.yaf{bottom:132.312780px;}
.y1b7{bottom:138.238020px;}
.y13c{bottom:138.239640px;}
.y179{bottom:138.240000px;}
.y120{bottom:138.242160px;}
.y191{bottom:138.252240px;}
.yd8{bottom:141.480000px;}
.y159{bottom:144.356580px;}
.y36{bottom:144.358020px;}
.yfd{bottom:144.369000px;}
.y1b6{bottom:155.520000px;}
.y13b{bottom:155.521620px;}
.y11f{bottom:155.524140px;}
.yae{bottom:155.528280px;}
.y190{bottom:155.534220px;}
.y178{bottom:158.760000px;}
.y158{bottom:161.638560px;}
.y35{bottom:161.640000px;}
.yfc{bottom:167.584500px;}
.y1b5{bottom:172.798020px;}
.y13a{bottom:178.918020px;}
.y11e{bottom:178.920540px;}
.yad{bottom:178.924680px;}
.y18f{bottom:178.930620px;}
.y34{bottom:182.160000px;}
.y1d8{bottom:183.960000px;}
.y1b4{bottom:190.080000px;}
.yfb{bottom:190.800000px;}
.y139{bottom:196.200000px;}
.y11d{bottom:196.202520px;}
.y18e{bottom:196.212600px;}
.y20c{bottom:198.540000px;}
.yd7{bottom:200.019600px;}
.y157{bottom:202.136040px;}
.yac{bottom:202.140180px;}
.y177{bottom:209.715840px;}
.yfa{bottom:211.320000px;}
.y1b3{bottom:213.474060px;}
.y138{bottom:216.720000px;}
.y11c{bottom:219.418020px;}
.y18d{bottom:219.428100px;}
.y54{bottom:221.112000px;}
.yd6{bottom:223.415640px;}
.y1f8{bottom:224.651880px;}
.yab{bottom:225.355680px;}
.y1d7{bottom:229.687920px;}
.y1b2{bottom:230.756040px;}
.y176{bottom:233.111880px;}
.y11b{bottom:236.700000px;}
.yaa{bottom:242.637660px;}
.y18c{bottom:242.643600px;}
.yd5{bottom:246.811680px;}
.y1b1{bottom:248.038020px;}
.y84{bottom:252.019800px;}
.y20b{bottom:252.931680px;}
.y1d6{bottom:253.083960px;}
.yf9{bottom:255.291480px;}
.y175{bottom:256.507920px;}
.y11a{bottom:257.220000px;}
.y53{bottom:259.448040px;}
.ya9{bottom:259.919640px;}
.ye{bottom:261.000000px;}
.y1f7{bottom:262.987920px;}
.y1b0{bottom:265.320000px;}
.y18b{bottom:266.040000px;}
.yd4{bottom:270.207720px;}
.y20a{bottom:276.327720px;}
.y1d5{bottom:276.480000px;}
.yf8{bottom:278.687520px;}
.y174{bottom:279.903960px;}
.y1af{bottom:282.594060px;}
.y52{bottom:282.844080px;}
.ya8{bottom:283.316040px;}
.y1f6{bottom:286.383960px;}
.y18a{bottom:286.560000px;}
.y33{bottom:289.801260px;}
.y83{bottom:290.355840px;}
.yd3{bottom:293.603760px;}
.y209{bottom:299.723760px;}
.y1ae{bottom:299.876040px;}
.ya7{bottom:300.598020px;}
.yf7{bottom:302.083560px;}
.y173{bottom:303.307920px;}
.y51{bottom:306.240120px;}
.y119{bottom:306.559800px;}
.y1f5{bottom:309.780000px;}
.y156{bottom:311.955840px;}
.y137{bottom:312.843960px;}
.y82{bottom:313.751880px;}
.y1d4{bottom:315.095760px;}
.yd2{bottom:316.999800px;}
.y1ad{bottom:317.158020px;}
.ya6{bottom:317.880000px;}
.y208{bottom:323.119800px;}
.yf6{bottom:325.479600px;}
.y172{bottom:326.703960px;}
.y50{bottom:329.636160px;}
.y118{bottom:329.955840px;}
.y1ac{bottom:334.440000px;}
.y155{bottom:335.351880px;}
.y136{bottom:336.275640px;}
.y81{bottom:337.147920px;}
.ya5{bottom:338.400000px;}
.yd1{bottom:340.395840px;}
.y32{bottom:343.988640px;}
.y207{bottom:346.515840px;}
.y1f4{bottom:348.343560px;}
.yf5{bottom:348.875640px;}
.y171{bottom:350.100000px;}
.y117{bottom:353.351880px;}
.y1d3{bottom:353.431800px;}
.y1ab{bottom:354.960000px;}
.y154{bottom:358.747920px;}
.y135{bottom:359.671680px;}
.y80{bottom:360.543960px;}
.yd0{bottom:363.791880px;}
.y4f{bottom:367.972200px;}
.y206{bottom:369.911880px;}
.yf4{bottom:372.271680px;}
.y67{bottom:376.738020px;}
.y116{bottom:376.747920px;}
.y1d2{bottom:376.827840px;}
.y153{bottom:382.143960px;}
.y31{bottom:382.503960px;}
.y134{bottom:383.067720px;}
.y7f{bottom:383.943960px;}
.y1f3{bottom:386.679600px;}
.y170{bottom:386.820000px;}
.ycf{bottom:387.187920px;}
.y189{bottom:387.195840px;}
.ya4{bottom:389.883960px;}
.y4e{bottom:391.368240px;}
.y205{bottom:393.307920px;}
.y66{bottom:394.920000px;}
.yf3{bottom:395.667720px;}
.y115{bottom:400.143960px;}
.y1d1{bottom:400.223880px;}
.y152{bottom:405.543960px;}
.y30{bottom:405.907920px;}
.y133{bottom:406.463760px;}
.y7e{bottom:407.340000px;}
.y1f2{bottom:410.075640px;}
.yce{bottom:410.583960px;}
.y188{bottom:410.591880px;}
.ya3{bottom:413.283960px;}
.y4d{bottom:414.764280px;}
.y204{bottom:416.703960px;}
.yd{bottom:418.500000px;}
.yf2{bottom:419.063760px;}
.y16f{bottom:421.740000px;}
.y114{bottom:423.567720px;}
.y1d0{bottom:423.619920px;}
.y151{bottom:428.963760px;}
.y2f{bottom:429.303960px;}
.y132{bottom:429.859800px;}
.y65{bottom:432.900000px;}
.y1f1{bottom:433.471680px;}
.y187{bottom:433.987920px;}
.ycd{bottom:434.044080px;}
.ya2{bottom:436.703760px;}
.y4c{bottom:438.160320px;}
.y203{bottom:440.100000px;}
.y1aa{bottom:440.283960px;}
.yf1{bottom:442.459800px;}
.y7d{bottom:444.060000px;}
.y113{bottom:446.963760px;}
.y1cf{bottom:447.015960px;}
.y150{bottom:452.359800px;}
.y2e{bottom:452.724480px;}
.y131{bottom:453.255840px;}
.y1f0{bottom:456.867720px;}
.y186{bottom:457.383960px;}
.ycc{bottom:457.440120px;}
.ya1{bottom:460.099800px;}
.y4b{bottom:461.556360px;}
.y12{bottom:463.320000px;}
.y1a9{bottom:463.680000px;}
.yf0{bottom:465.855840px;}
.y1ce{bottom:470.412000px;}
.y14f{bottom:475.755840px;}
.y2d{bottom:476.120520px;}
.y21d{bottom:476.698500px;}
.y64{bottom:479.700000px;}
.y1ef{bottom:480.263760px;}
.y185{bottom:480.783960px;}
.ya0{bottom:483.495840px;}
.y4a{bottom:484.952400px;}
.y112{bottom:485.299800px;}
.y130{bottom:491.591880px;}
.y1cd{bottom:493.808040px;}
.ycb{bottom:495.955440px;}
.y16e{bottom:497.715840px;}
.y14e{bottom:499.151880px;}
.y2c{bottom:499.516560px;}
.y21c{bottom:500.094000px;}
.y202{bottom:500.940000px;}
.y1a8{bottom:502.219800px;}
.y1ee{bottom:503.659800px;}
.y184{bottom:504.187920px;}
.yef{bottom:504.191880px;}
.y9f{bottom:506.891880px;}
.y49{bottom:508.348440px;}
.y111{bottom:508.695840px;}
.y12f{bottom:514.987920px;}
.y11{bottom:517.500000px;}
.yca{bottom:519.351480px;}
.y7c{bottom:519.915240px;}
.y16d{bottom:521.111880px;}
.y63{bottom:522.540000px;}
.y14d{bottom:522.547920px;}
.y2b{bottom:522.912600px;}
.y21b{bottom:523.489500px;}
.y1ed{bottom:527.055840px;}
.y183{bottom:527.583960px;}
.yee{bottom:527.587920px;}
.y9e{bottom:530.287920px;}
.y110{bottom:532.091880px;}
.y1cc{bottom:532.144080px;}
.y12e{bottom:538.383960px;}
.y1a7{bottom:540.555840px;}
.yc9{bottom:542.747520px;}
.y7b{bottom:543.311280px;}
.y16c{bottom:544.507920px;}
.y14c{bottom:545.943960px;}
.y2a{bottom:546.308640px;}
.y48{bottom:546.863760px;}
.y21a{bottom:546.885000px;}
.y1ec{bottom:550.451880px;}
.y62{bottom:550.800000px;}
.yed{bottom:550.983960px;}
.y182{bottom:550.984680px;}
.y9d{bottom:553.683960px;}
.y10f{bottom:555.487920px;}
.y1cb{bottom:555.540120px;}
.y12d{bottom:561.787920px;}
.y1a6{bottom:563.951880px;}
.yc8{bottom:566.143560px;}
.y7a{bottom:566.707320px;}
.y16b{bottom:567.903960px;}
.y14b{bottom:569.340000px;}
.y29{bottom:569.704680px;}
.y47{bottom:570.259800px;}
.y219{bottom:570.280500px;}
.y10{bottom:571.500000px;}
.y1eb{bottom:573.847920px;}
.yec{bottom:574.395840px;}
.y9c{bottom:577.095840px;}
.y10e{bottom:578.883960px;}
.y1ca{bottom:578.936160px;}
.y12c{bottom:585.183960px;}
.y1a5{bottom:587.347920px;}
.y61{bottom:587.880000px;}
.y181{bottom:589.531680px;}
.yc7{bottom:589.539600px;}
.y79{bottom:590.103360px;}
.y16a{bottom:591.303960px;}
.y28{bottom:593.100720px;}
.y46{bottom:593.655840px;}
.y1ea{bottom:597.243960px;}
.yeb{bottom:597.791880px;}
.y9b{bottom:600.491880px;}
.y10d{bottom:602.280000px;}
.y1c9{bottom:602.332200px;}
.y218{bottom:605.703000px;}
.y14a{bottom:606.060000px;}
.y12b{bottom:608.642640px;}
.y1a4{bottom:610.743960px;}
.y180{bottom:612.927720px;}
.yc6{bottom:612.935640px;}
.y78{bottom:613.499400px;}
.y169{bottom:614.700000px;}
.y45{bottom:617.051880px;}
.yea{bottom:621.187920px;}
.y9a{bottom:623.887920px;}
.y60{bottom:624.960000px;}
.yf{bottom:625.500000px;}
.y1c8{bottom:625.728240px;}
.y12a{bottom:632.038680px;}
.y1e9{bottom:635.636160px;}
.y17f{bottom:636.323760px;}
.yc5{bottom:636.331680px;}
.y77{bottom:636.895440px;}
.y27{bottom:638.100000px;}
.y168{bottom:638.115840px;}
.y10c{bottom:639.000000px;}
.y44{bottom:640.447920px;}
.ye9{bottom:644.583960px;}
.y99{bottom:647.283960px;}
.y1a3{bottom:649.091880px;}
.y1c7{bottom:649.124280px;}
.y129{bottom:655.434720px;}
.y1e8{bottom:659.032200px;}
.y17e{bottom:659.719800px;}
.yc4{bottom:659.727720px;}
.y76{bottom:660.291480px;}
.y167{bottom:661.511880px;}
.y5f{bottom:661.860000px;}
.y217{bottom:662.068500px;}
.y43{bottom:663.843960px;}
.ye8{bottom:667.999650px;}
.y98{bottom:670.695840px;}
.y1a2{bottom:672.487920px;}
.y1c6{bottom:672.520320px;}
.y128{bottom:678.830760px;}
.y149{bottom:680.409000px;}
.y1e7{bottom:682.428240px;}
.y17d{bottom:683.115840px;}
.yc3{bottom:683.123760px;}
.y75{bottom:683.687520px;}
.y166{bottom:684.907920px;}
.y216{bottom:685.464000px;}
.y42{bottom:687.240000px;}
.y5e{bottom:690.120000px;}
.ye7{bottom:691.395690px;}
.y97{bottom:694.091880px;}
.y1a1{bottom:695.883960px;}
.y1c5{bottom:695.916360px;}
.y1e6{bottom:705.824280px;}
.y17c{bottom:706.511880px;}
.yc2{bottom:706.519800px;}
.y74{bottom:707.083560px;}
.y165{bottom:708.303960px;}
.y215{bottom:708.859500px;}
.y26{bottom:710.107920px;}
.ye6{bottom:714.791730px;}
.y127{bottom:717.166800px;}
.y96{bottom:717.487920px;}
.y148{bottom:719.280000px;}
.y1a0{bottom:719.287920px;}
.y1c4{bottom:719.312400px;}
.yb{bottom:724.140000px;}
.y5d{bottom:727.200000px;}
.y1e5{bottom:729.220320px;}
.y17b{bottom:729.907920px;}
.yc1{bottom:729.915840px;}
.y73{bottom:730.479600px;}
.y164{bottom:731.700000px;}
.ye5{bottom:738.187770px;}
.y95{bottom:740.883960px;}
.y19f{bottom:742.683960px;}
.y1c3{bottom:742.708440px;}
.y41{bottom:748.260000px;}
.y25{bottom:748.443960px;}
.y1e4{bottom:752.616360px;}
.y214{bottom:753.291000px;}
.y17a{bottom:753.303960px;}
.yc0{bottom:753.311880px;}
.y201{bottom:753.875640px;}
.ye4{bottom:761.583810px;}
.y94{bottom:764.287920px;}
.y19e{bottom:766.087920px;}
.y5c{bottom:768.060000px;}
.y72{bottom:768.815640px;}
.y163{bottom:770.084280px;}
.y1e3{bottom:776.012400px;}
.ybf{bottom:776.707920px;}
.y126{bottom:776.747520px;}
.y200{bottom:777.271680px;}
.y1c2{bottom:781.223760px;}
.y10b{bottom:785.003760px;}
.ye3{bottom:785.008440px;}
.y24{bottom:786.780000px;}
.y93{bottom:787.683960px;}
.y19d{bottom:789.483960px;}
.y71{bottom:792.211680px;}
.y162{bottom:793.480320px;}
.y1e2{bottom:799.408440px;}
.ybe{bottom:800.103960px;}
.y125{bottom:800.143560px;}
.y1ff{bottom:800.667720px;}
.y213{bottom:803.698500px;}
.y1c1{bottom:804.619800px;}
.y10a{bottom:808.399800px;}
.ye2{bottom:808.404480px;}
.y5b{bottom:810.900000px;}
.y92{bottom:811.112400px;}
.y19c{bottom:812.880000px;}
.y70{bottom:815.607720px;}
.ybd{bottom:823.539600px;}
.y1fe{bottom:824.063760px;}
.y23{bottom:825.319800px;}
.y1c0{bottom:828.015840px;}
.y109{bottom:831.795840px;}
.ye1{bottom:831.800520px;}
.y147{bottom:831.808440px;}
.y161{bottom:831.816360px;}
.y91{bottom:834.508440px;}
.y1e1{bottom:837.923760px;}
.y6f{bottom:839.003760px;}
.ybc{bottom:846.935640px;}
.y1fd{bottom:847.459800px;}
.y5a{bottom:848.340000px;}
.y22{bottom:848.715840px;}
.y19b{bottom:849.600000px;}
.y1bf{bottom:851.411880px;}
.y108{bottom:855.191880px;}
.ye0{bottom:855.196560px;}
.y146{bottom:855.204480px;}
.y160{bottom:855.212400px;}
.y90{bottom:857.904480px;}
.y212{bottom:860.082000px;}
.y1e0{bottom:861.319800px;}
.y6e{bottom:862.399800px;}
.y40{bottom:866.700000px;}
.ybb{bottom:870.331680px;}
.y1fc{bottom:870.855840px;}
.y21{bottom:872.111880px;}
.y1be{bottom:874.807920px;}
.y107{bottom:878.587920px;}
.y145{bottom:878.600520px;}
.y15f{bottom:878.608440px;}
.y8f{bottom:881.300520px;}
.y211{bottom:883.477500px;}
.y1df{bottom:884.715840px;}
.y59{bottom:885.600000px;}
.y6d{bottom:885.795840px;}
.y3f{bottom:888.660000px;}
.ydf{bottom:893.711880px;}
.yba{bottom:893.727720px;}
.y1fb{bottom:894.251880px;}
.y20{bottom:895.507920px;}
.y1bd{bottom:898.203960px;}
.y106{bottom:901.983960px;}
.y144{bottom:901.996560px;}
.y15e{bottom:902.004480px;}
.y8e{bottom:904.696560px;}
.y1de{bottom:908.111880px;}
.y6c{bottom:909.191880px;}
.yde{bottom:917.107920px;}
.yb9{bottom:917.123760px;}
.y1f{bottom:918.903960px;}
.y1bc{bottom:921.600000px;}
.y105{bottom:925.383960px;}
.y19a{bottom:925.387920px;}
.y15d{bottom:925.400520px;}
.y3e{bottom:926.460000px;}
.y58{bottom:926.820000px;}
.y8d{bottom:928.092600px;}
.ya{bottom:930.420000px;}
.y1dd{bottom:931.507920px;}
.y6b{bottom:932.587920px;}
.y210{bottom:933.885000px;}
.ydd{bottom:940.503960px;}
.y143{bottom:940.511880px;}
.yb8{bottom:940.519800px;}
.y1e{bottom:942.300000px;}
.y199{bottom:948.783960px;}
.y104{bottom:948.792600px;}
.y15c{bottom:948.796560px;}
.y8c{bottom:951.488640px;}
.y1dc{bottom:954.903960px;}
.y6a{bottom:955.983960px;}
.y20f{bottom:957.280500px;}
.y1bb{bottom:958.140000px;}
.y57{bottom:962.637300px;}
.y142{bottom:963.907920px;}
.yb7{bottom:963.915840px;}
.y3d{bottom:964.260000px;}
.y1d{bottom:965.707920px;}
.y8{bottom:966.240000px;}
.y198{bottom:972.180000px;}
.y103{bottom:972.188640px;}
.y15b{bottom:972.192600px;}
.y1db{bottom:978.300000px;}
.y69{bottom:979.380000px;}
.y56{bottom:980.640000px;}
.y7{bottom:980.648640px;}
.y20e{bottom:980.676000px;}
.y141{bottom:987.303960px;}
.yb6{bottom:987.311880px;}
.y1c{bottom:989.103960px;}
.y8b{bottom:990.003960px;}
.y197{bottom:995.583960px;}
.y102{bottom:995.584680px;}
.y15a{bottom:995.588640px;}
.y3c{bottom:1002.060000px;}
.yb5{bottom:1010.707920px;}
.y1b{bottom:1012.500000px;}
.y8a{bottom:1013.400000px;}
.y1da{bottom:1015.020000px;}
.y196{bottom:1018.980000px;}
.y6{bottom:1018.984680px;}
.yb4{bottom:1034.103960px;}
.y68{bottom:1040.400000px;}
.y55{bottom:1041.480000px;}
.y20d{bottom:1041.660000px;}
.y89{bottom:1049.940000px;}
.y1d9{bottom:1050.120000px;}
.y3b{bottom:1054.440000px;}
.y1a{bottom:1057.320000px;}
.y5{bottom:1057.500000px;}
.y15{bottom:1169.280000px;}
.y14{bottom:1195.740000px;}
.h4{height:20.880000px;}
.h6{height:30.780000px;}
.hc{height:36.331200px;}
.ha{height:38.700000px;}
.h12{height:41.341680px;}
.hb{height:41.968800px;}
.hd{height:46.792080px;}
.h21{height:46.971360px;}
.he{height:51.871680px;}
.h2{height:51.991200px;}
.h24{height:52.009920px;}
.h1c{height:52.041600px;}
.h22{height:52.057440px;}
.h19{height:52.070400px;}
.h25{height:52.073280px;}
.h1d{height:52.086240px;}
.h20{height:52.089120px;}
.hf{height:52.102080px;}
.h1b{height:52.104960px;}
.h1e{height:52.121400px;}
.h1a{height:52.136640px;}
.h1f{height:52.149600px;}
.h27{height:52.152480px;}
.h10{height:52.168320px;}
.h26{height:52.181280px;}
.h18{height:52.184160px;}
.h23{height:52.200000px;}
.h13{height:54.000000px;}
.h16{height:62.640000px;}
.h7{height:64.043789px;}
.h3{height:64.080000px;}
.h17{height:68.422852px;}
.h5{height:73.288800px;}
.h15{height:74.980080px;}
.h11{height:95.786952px;}
.h14{height:95.791992px;}
.h9{height:136.845703px;}
.h8{height:303.840000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:145.260000px;}
.w3{width:184.140000px;}
.w2{width:258.120000px;}
.w5{width:567.360000px;}
.w7{width:576.538500px;}
.w6{width:626.940000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:10.800000px;}
.x3{left:21.420000px;}
.xd{left:91.980000px;}
.xc{left:105.120000px;}
.x8{left:113.400000px;}
.xe{left:119.162700px;}
.x1{left:129.780000px;}
.x9{left:132.480000px;}
.x12{left:134.100000px;}
.x1b{left:140.391000px;}
.xa{left:143.280000px;}
.x10{left:146.869020px;}
.x1a{left:156.791520px;}
.x14{left:162.193500px;}
.x16{left:163.980000px;}
.x19{left:172.980000px;}
.x17{left:183.805380px;}
.x2{left:316.080000px;}
.x4{left:337.500000px;}
.xf{left:345.780000px;}
.x5{left:648.000000px;}
.x7{left:695.880000px;}
.x13{left:789.660000px;}
.x18{left:791.100000px;}
.x15{left:793.260000px;}
.x11{left:797.220000px;}
.xb{left:799.200000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.472960pt;}
.lsa9{letter-spacing:-8.597333pt;}
.ls94{letter-spacing:-3.771520pt;}
.ls85{letter-spacing:-3.430400pt;}
.ls4d{letter-spacing:-3.187200pt;}
.lsaa{letter-spacing:-2.922667pt;}
.ls80{letter-spacing:-2.701440pt;}
.ls68{letter-spacing:-2.549760pt;}
.ls73{letter-spacing:-2.390400pt;}
.ls5f{letter-spacing:-2.015360pt;}
.ls23{letter-spacing:-1.972480pt;}
.ls59{letter-spacing:-1.806080pt;}
.ls77{letter-spacing:-1.672320pt;}
.ls2b{letter-spacing:-1.646720pt;}
.ls76{letter-spacing:-1.629440pt;}
.lsa7{letter-spacing:-1.594667pt;}
.ls6f{letter-spacing:-1.415040pt;}
.ls1c{letter-spacing:-1.328000pt;}
.ls8f{letter-spacing:-1.221760pt;}
.ls5a{letter-spacing:-1.168640pt;}
.ls15{letter-spacing:-1.115520pt;}
.lsa3{letter-spacing:-1.114667pt;}
.ls16{letter-spacing:-1.062400pt;}
.lsa2{letter-spacing:-1.061333pt;}
.ls5c{letter-spacing:-1.029120pt;}
.ls2c{letter-spacing:-1.009280pt;}
.ls7f{letter-spacing:-0.943360pt;}
.ls1b{letter-spacing:-0.903040pt;}
.ls75{letter-spacing:-0.900480pt;}
.ls78{letter-spacing:-0.857600pt;}
.ls41{letter-spacing:-0.832000pt;}
.lsa5{letter-spacing:-0.794667pt;}
.ls5e{letter-spacing:-0.771840pt;}
.ls7e{letter-spacing:-0.728960pt;}
.ls19{letter-spacing:-0.690560pt;}
.ls74{letter-spacing:-0.686080pt;}
.ls5d{letter-spacing:-0.600320pt;}
.ls5{letter-spacing:-0.599040pt;}
.ls93{letter-spacing:-0.584320pt;}
.lsa8{letter-spacing:-0.426667pt;}
.ls4a{letter-spacing:-0.424960pt;}
.lsac{letter-spacing:-0.373333pt;}
.ls8a{letter-spacing:-0.371840pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls5b{letter-spacing:-0.318720pt;}
.lsa1{letter-spacing:-0.266667pt;}
.ls4{letter-spacing:-0.265600pt;}
.ls1f{letter-spacing:-0.257280pt;}
.ls3b{letter-spacing:-0.256000pt;}
.ls7d{letter-spacing:-0.240000pt;}
.ls8{letter-spacing:-0.224640pt;}
.ls2a{letter-spacing:-0.224000pt;}
.ls22{letter-spacing:-0.214400pt;}
.lsa6{letter-spacing:-0.213333pt;}
.ls2d{letter-spacing:-0.212480pt;}
.ls3f{letter-spacing:-0.192000pt;}
.ls4f{letter-spacing:-0.171520pt;}
.ls3e{letter-spacing:-0.170240pt;}
.ls4e{letter-spacing:-0.160000pt;}
.ls1d{letter-spacing:-0.159360pt;}
.ls7{letter-spacing:-0.149760pt;}
.ls24{letter-spacing:-0.128640pt;}
.ls6e{letter-spacing:-0.128000pt;}
.ls29{letter-spacing:-0.112000pt;}
.lsa4{letter-spacing:-0.106667pt;}
.ls18{letter-spacing:-0.106240pt;}
.ls25{letter-spacing:-0.085760pt;}
.lsab{letter-spacing:-0.053333pt;}
.ls14{letter-spacing:-0.053120pt;}
.ls20{letter-spacing:-0.042880pt;}
.ls3{letter-spacing:0.000000pt;}
.ls96{letter-spacing:0.042496pt;}
.ls90{letter-spacing:0.042880pt;}
.lsb{letter-spacing:0.053120pt;}
.ls28{letter-spacing:0.064000pt;}
.ls95{letter-spacing:0.084992pt;}
.ls3d{letter-spacing:0.085120pt;}
.ls9e{letter-spacing:0.106667pt;}
.ls3a{letter-spacing:0.112000pt;}
.ls34{letter-spacing:0.128000pt;}
.ls70{letter-spacing:0.128640pt;}
.ls9f{letter-spacing:0.135040pt;}
.ls17{letter-spacing:0.159360pt;}
.ls1{letter-spacing:0.160000pt;}
.ls2e{letter-spacing:0.190720pt;}
.ls3c{letter-spacing:0.192000pt;}
.ls1a{letter-spacing:0.212480pt;}
.ls13{letter-spacing:0.214400pt;}
.ls6{letter-spacing:0.224640pt;}
.ls61{letter-spacing:0.228416pt;}
.ls87{letter-spacing:0.254976pt;}
.ls42{letter-spacing:0.255360pt;}
.ls40{letter-spacing:0.256000pt;}
.ls21{letter-spacing:0.257280pt;}
.lsc{letter-spacing:0.265600pt;}
.lsa0{letter-spacing:0.266667pt;}
.lsd{letter-spacing:0.276224pt;}
.ls65{letter-spacing:0.286848pt;}
.ls6c{letter-spacing:0.300160pt;}
.ls1e{letter-spacing:0.318720pt;}
.lsa{letter-spacing:0.320000pt;}
.ls4c{letter-spacing:0.371840pt;}
.ls8e{letter-spacing:0.424960pt;}
.ls2{letter-spacing:0.480000pt;}
.ls63{letter-spacing:0.557440pt;}
.ls69{letter-spacing:0.584320pt;}
.ls72{letter-spacing:0.600320pt;}
.ls44{letter-spacing:0.637440pt;}
.ls62{letter-spacing:0.743680pt;}
.ls54{letter-spacing:0.903040pt;}
.ls84{letter-spacing:0.956160pt;}
.ls7b{letter-spacing:1.200640pt;}
.ls31{letter-spacing:1.361920pt;}
.ls71{letter-spacing:1.503296pt;}
.ls4b{letter-spacing:1.540480pt;}
.ls46{letter-spacing:1.551104pt;}
.ls89{letter-spacing:1.567040pt;}
.ls45{letter-spacing:1.646720pt;}
.ls6d{letter-spacing:1.843840pt;}
.ls97{letter-spacing:2.124800pt;}
.ls64{letter-spacing:2.177920pt;}
.ls11{letter-spacing:2.223360pt;}
.ls52{letter-spacing:2.246976pt;}
.ls58{letter-spacing:2.487040pt;}
.ls53{letter-spacing:2.794880pt;}
.ls91{letter-spacing:2.810048pt;}
.ls27{letter-spacing:2.815360pt;}
.ls56{letter-spacing:2.869760pt;}
.ls79{letter-spacing:2.879360pt;}
.ls86{letter-spacing:3.396480pt;}
.ls57{letter-spacing:3.452800pt;}
.ls8b{letter-spacing:3.458176pt;}
.ls88{letter-spacing:3.476480pt;}
.ls83{letter-spacing:3.511040pt;}
.ls49{letter-spacing:3.799168pt;}
.ls55{letter-spacing:4.077440pt;}
.ls10{letter-spacing:4.090240pt;}
.ls7c{letter-spacing:4.373760pt;}
.ls6a{letter-spacing:4.727680pt;}
.ls51{letter-spacing:5.365120pt;}
.ls7a{letter-spacing:5.444800pt;}
.ls9d{letter-spacing:5.556352pt;}
.ls26{letter-spacing:6.002560pt;}
.ls8c{letter-spacing:6.640000pt;}
.ls60{letter-spacing:7.277440pt;}
.ls47{letter-spacing:7.914880pt;}
.ls66{letter-spacing:8.552320pt;}
.ls6b{letter-spacing:8.876160pt;}
.ls50{letter-spacing:9.242880pt;}
.lsf{letter-spacing:11.792640pt;}
.ls82{letter-spacing:14.979840pt;}
.ls8d{letter-spacing:15.908480pt;}
.ls67{letter-spacing:22.297600pt;}
.ls43{letter-spacing:29.008000pt;}
.ls48{letter-spacing:31.520000pt;}
.ls9b{letter-spacing:38.990080pt;}
.ls9a{letter-spacing:39.627520pt;}
.ls99{letter-spacing:40.902400pt;}
.ls9c{letter-spacing:41.539840pt;}
.ls98{letter-spacing:48.604800pt;}
.ls81{letter-spacing:55.616640pt;}
.ls2f{letter-spacing:71.296000pt;}
.ls38{letter-spacing:89.716480pt;}
.ls30{letter-spacing:108.416000pt;}
.lse{letter-spacing:179.864320pt;}
.ls32{letter-spacing:186.240000pt;}
.ls35{letter-spacing:195.840000pt;}
.ls36{letter-spacing:325.120000pt;}
.ls37{letter-spacing:567.040000pt;}
.ls12{letter-spacing:754.710400pt;}
.ls92{letter-spacing:754.720000pt;}
.ls0{letter-spacing:754.728960pt;}
.ls39{letter-spacing:1644.858880pt;}
.ls33{letter-spacing:1801.600000pt;}
.ws2{word-spacing:-36.160000pt;}
.ws4f{word-spacing:-25.648000pt;}
.ws42{word-spacing:-25.312000pt;}
.ws33{word-spacing:-25.088000pt;}
.ws54{word-spacing:-18.320000pt;}
.wsd4{word-spacing:-18.160000pt;}
.wsc2{word-spacing:-18.000000pt;}
.wsb5{word-spacing:-17.760000pt;}
.ws49{word-spacing:-16.172800pt;}
.ws44{word-spacing:-15.747200pt;}
.ws1{word-spacing:-15.200640pt;}
.ws43{word-spacing:-14.400000pt;}
.ws0{word-spacing:-14.376960pt;}
.ws45{word-spacing:-13.056000pt;}
.ws46{word-spacing:-12.992000pt;}
.ws48{word-spacing:-12.800000pt;}
.ws47{word-spacing:-12.544000pt;}
.ws89{word-spacing:-11.208320pt;}
.wsdb{word-spacing:-10.995840pt;}
.wse2{word-spacing:-10.944000pt;}
.ws52{word-spacing:-10.942720pt;}
.ws36{word-spacing:-10.836480pt;}
.ws65{word-spacing:-10.783360pt;}
.ws53{word-spacing:-10.624000pt;}
.wse{word-spacing:-10.570880pt;}
.wse8{word-spacing:-10.570667pt;}
.ws51{word-spacing:-10.517760pt;}
.wse5{word-spacing:-10.517333pt;}
.wsda{word-spacing:-10.411520pt;}
.wsc{word-spacing:-10.358400pt;}
.wse1{word-spacing:-10.357333pt;}
.wsac{word-spacing:-10.305280pt;}
.wse7{word-spacing:-10.304000pt;}
.ws77{word-spacing:-10.252160pt;}
.wsea{word-spacing:-10.250667pt;}
.ws50{word-spacing:-10.199040pt;}
.wse3{word-spacing:-10.040107pt;}
.wscf{word-spacing:-10.039680pt;}
.wsf{word-spacing:-9.933440pt;}
.wsdf{word-spacing:-9.828267pt;}
.ws55{word-spacing:-9.720960pt;}
.ws35{word-spacing:-9.614720pt;}
.wse4{word-spacing:-9.613440pt;}
.ws11{word-spacing:-9.561600pt;}
.wseb{word-spacing:-9.509333pt;}
.wsd{word-spacing:-9.508480pt;}
.wsad{word-spacing:-9.455360pt;}
.wsd0{word-spacing:-9.402240pt;}
.wsa8{word-spacing:-9.347840pt;}
.ws67{word-spacing:-9.304960pt;}
.wsd5{word-spacing:-9.296000pt;}
.wse0{word-spacing:-9.294933pt;}
.ws94{word-spacing:-9.176320pt;}
.ws14{word-spacing:-9.047680pt;}
.ws15{word-spacing:-9.004800pt;}
.ws34{word-spacing:-8.977280pt;}
.ws8a{word-spacing:-8.961920pt;}
.ws66{word-spacing:-8.919040pt;}
.ws56{word-spacing:-8.876160pt;}
.ws78{word-spacing:-8.833280pt;}
.ws76{word-spacing:-8.817920pt;}
.ws13{word-spacing:-8.790400pt;}
.ws10{word-spacing:-8.658560pt;}
.wse9{word-spacing:-8.605440pt;}
.ws69{word-spacing:-8.447360pt;}
.wsa3{word-spacing:-8.361600pt;}
.ws6a{word-spacing:-8.275840pt;}
.wsa9{word-spacing:-8.190080pt;}
.wsa4{word-spacing:-8.147200pt;}
.wsae{word-spacing:-8.104320pt;}
.ws68{word-spacing:-8.018560pt;}
.wse6{word-spacing:-7.701333pt;}
.ws93{word-spacing:-7.632640pt;}
.wsa6{word-spacing:-7.418240pt;}
.wsa7{word-spacing:-7.375360pt;}
.ws16{word-spacing:-7.075200pt;}
.wsa5{word-spacing:-7.032320pt;}
.wsd9{word-spacing:-6.852480pt;}
.wsbe{word-spacing:-6.720000pt;}
.ws12{word-spacing:-6.400000pt;}
.wsaf{word-spacing:-6.346240pt;}
.ws92{word-spacing:-6.272000pt;}
.ws75{word-spacing:-6.208000pt;}
.wsb6{word-spacing:-5.617280pt;}
.ws99{word-spacing:-2.815360pt;}
.ws8c{word-spacing:-2.602880pt;}
.ws5e{word-spacing:-2.443520pt;}
.ws58{word-spacing:-2.018560pt;}
.wsab{word-spacing:-1.886720pt;}
.wsb7{word-spacing:-1.859200pt;}
.wsbf{word-spacing:-1.806080pt;}
.wscb{word-spacing:-1.800960pt;}
.ws2e{word-spacing:-1.629440pt;}
.ws59{word-spacing:-1.540480pt;}
.wsb8{word-spacing:-1.487360pt;}
.wsdc{word-spacing:-1.456000pt;}
.ws6f{word-spacing:-1.381120pt;}
.wsb1{word-spacing:-1.200640pt;}
.ws2c{word-spacing:-1.168640pt;}
.ws2f{word-spacing:-1.157760pt;}
.wsbd{word-spacing:-0.956160pt;}
.ws2d{word-spacing:-0.743680pt;}
.ws7b{word-spacing:-0.690560pt;}
.wsf6{word-spacing:-0.629333pt;}
.ws87{word-spacing:-0.600320pt;}
.ws96{word-spacing:-0.584320pt;}
.wsd6{word-spacing:-0.560000pt;}
.ws3a{word-spacing:-0.531200pt;}
.wsb{word-spacing:-0.480000pt;}
.ws71{word-spacing:-0.478080pt;}
.ws17{word-spacing:-0.471680pt;}
.wsc7{word-spacing:-0.424960pt;}
.wsf7{word-spacing:-0.405333pt;}
.wsc1{word-spacing:-0.385920pt;}
.ws8{word-spacing:-0.320000pt;}
.ws2a{word-spacing:-0.318720pt;}
.wsec{word-spacing:-0.293333pt;}
.ws72{word-spacing:-0.265600pt;}
.ws38{word-spacing:-0.224000pt;}
.ws1a{word-spacing:-0.212480pt;}
.ws4b{word-spacing:-0.192000pt;}
.ws9{word-spacing:-0.160000pt;}
.ws39{word-spacing:-0.159360pt;}
.ws115{word-spacing:-0.144000pt;}
.wsa0{word-spacing:-0.128640pt;}
.ws4a{word-spacing:-0.128000pt;}
.ws37{word-spacing:-0.112000pt;}
.ws5{word-spacing:-0.106240pt;}
.ws9e{word-spacing:-0.085760pt;}
.wsf8{word-spacing:-0.053333pt;}
.wsb0{word-spacing:-0.053120pt;}
.wscd{word-spacing:-0.042880pt;}
.ws3{word-spacing:0.000000pt;}
.ws32{word-spacing:0.042880pt;}
.ws97{word-spacing:0.053120pt;}
.ws60{word-spacing:0.080000pt;}
.ws4e{word-spacing:0.085120pt;}
.ws64{word-spacing:0.085760pt;}
.ws1d{word-spacing:0.106240pt;}
.ws101{word-spacing:0.106667pt;}
.ws63{word-spacing:0.128640pt;}
.ws7{word-spacing:0.149760pt;}
.ws82{word-spacing:0.159360pt;}
.wsa{word-spacing:0.160000pt;}
.ws4c{word-spacing:0.192000pt;}
.ws40{word-spacing:0.212480pt;}
.ws103{word-spacing:0.213333pt;}
.ws86{word-spacing:0.214400pt;}
.wsc5{word-spacing:0.240000pt;}
.ws9f{word-spacing:0.257280pt;}
.ws1f{word-spacing:0.265600pt;}
.ws11e{word-spacing:0.266667pt;}
.ws10e{word-spacing:0.282667pt;}
.ws20{word-spacing:0.318720pt;}
.ws19{word-spacing:0.371840pt;}
.ws7a{word-spacing:0.424960pt;}
.ws106{word-spacing:0.426667pt;}
.ws110{word-spacing:0.496000pt;}
.ws10a{word-spacing:0.512000pt;}
.ws105{word-spacing:0.528000pt;}
.ws1c{word-spacing:0.531200pt;}
.wsf0{word-spacing:0.533333pt;}
.ws113{word-spacing:0.586667pt;}
.ws10d{word-spacing:0.602667pt;}
.wsee{word-spacing:0.656000pt;}
.wsf4{word-spacing:0.661333pt;}
.ws108{word-spacing:0.666667pt;}
.wsfa{word-spacing:0.677333pt;}
.ws31{word-spacing:0.686080pt;}
.ws6e{word-spacing:0.690560pt;}
.ws10c{word-spacing:0.698667pt;}
.wsb2{word-spacing:0.728960pt;}
.ws7d{word-spacing:0.743680pt;}
.ws88{word-spacing:0.771840pt;}
.ws10f{word-spacing:0.773333pt;}
.ws1e{word-spacing:0.796800pt;}
.wsc6{word-spacing:0.800000pt;}
.ws4d{word-spacing:0.832000pt;}
.ws10b{word-spacing:0.848000pt;}
.wsf1{word-spacing:0.853333pt;}
.ws83{word-spacing:0.903040pt;}
.ws104{word-spacing:0.922667pt;}
.ws114{word-spacing:0.928000pt;}
.wsfb{word-spacing:0.997333pt;}
.wsef{word-spacing:1.002667pt;}
.wsf2{word-spacing:1.008000pt;}
.ws79{word-spacing:1.009280pt;}
.ws109{word-spacing:1.040000pt;}
.wsfd{word-spacing:1.061333pt;}
.ws1b{word-spacing:1.062400pt;}
.wsf3{word-spacing:1.088000pt;}
.wsfc{word-spacing:1.098667pt;}
.wsf5{word-spacing:1.109333pt;}
.wsff{word-spacing:1.114667pt;}
.ws6c{word-spacing:1.115520pt;}
.ws112{word-spacing:1.130667pt;}
.ws3b{word-spacing:1.168640pt;}
.wsed{word-spacing:1.189333pt;}
.wsde{word-spacing:1.221760pt;}
.ws30{word-spacing:1.243520pt;}
.ws95{word-spacing:1.328000pt;}
.ws21{word-spacing:1.381120pt;}
.ws28{word-spacing:1.434240pt;}
.wsc9{word-spacing:1.487360pt;}
.ws107{word-spacing:1.594667pt;}
.ws100{word-spacing:1.616000pt;}
.ws22{word-spacing:1.646720pt;}
.wscc{word-spacing:1.672320pt;}
.ws27{word-spacing:1.806080pt;}
.ws11b{word-spacing:1.808000pt;}
.ws74{word-spacing:2.015360pt;}
.ws61{word-spacing:2.018560pt;}
.ws102{word-spacing:2.026667pt;}
.ws119{word-spacing:2.048000pt;}
.ws6d{word-spacing:2.071680pt;}
.wsfe{word-spacing:2.144000pt;}
.wsc4{word-spacing:2.337280pt;}
.wsaa{word-spacing:2.390400pt;}
.ws3c{word-spacing:2.443520pt;}
.ws8b{word-spacing:2.549760pt;}
.ws7c{word-spacing:2.602880pt;}
.wsce{word-spacing:2.615680pt;}
.ws41{word-spacing:2.656000pt;}
.wsd8{word-spacing:2.868480pt;}
.wsa2{word-spacing:2.872960pt;}
.ws118{word-spacing:3.002667pt;}
.ws117{word-spacing:3.056000pt;}
.ws3f{word-spacing:3.080960pt;}
.ws5f{word-spacing:3.187200pt;}
.ws5b{word-spacing:3.240320pt;}
.wsa1{word-spacing:3.258880pt;}
.ws73{word-spacing:3.293440pt;}
.ws111{word-spacing:3.493333pt;}
.ws116{word-spacing:3.568000pt;}
.ws5a{word-spacing:3.718400pt;}
.wsd3{word-spacing:3.771520pt;}
.ws3e{word-spacing:3.877760pt;}
.ws62{word-spacing:3.902080pt;}
.ws11f{word-spacing:3.930667pt;}
.wsd1{word-spacing:3.930880pt;}
.ws6{word-spacing:4.355840pt;}
.ws11a{word-spacing:4.357333pt;}
.wsb4{word-spacing:4.502400pt;}
.wsb9{word-spacing:4.515200pt;}
.ws2b{word-spacing:4.568320pt;}
.ws98{word-spacing:4.621440pt;}
.ws29{word-spacing:4.993280pt;}
.ws70{word-spacing:5.630720pt;}
.wsd7{word-spacing:5.843200pt;}
.wsca{word-spacing:6.161920pt;}
.ws85{word-spacing:6.215040pt;}
.ws3d{word-spacing:6.268160pt;}
.wsc8{word-spacing:6.427520pt;}
.ws84{word-spacing:6.533760pt;}
.ws81{word-spacing:6.905600pt;}
.ws7f{word-spacing:7.064960pt;}
.ws7e{word-spacing:7.118080pt;}
.wsc3{word-spacing:7.330560pt;}
.ws80{word-spacing:7.543040pt;}
.wsd2{word-spacing:7.702400pt;}
.ws5c{word-spacing:7.755520pt;}
.wsbb{word-spacing:7.968000pt;}
.ws5d{word-spacing:8.180480pt;}
.ws8e{word-spacing:8.392960pt;}
.ws9c{word-spacing:8.618880pt;}
.ws8d{word-spacing:8.817920pt;}
.ws9a{word-spacing:8.977280pt;}
.ws9b{word-spacing:9.004800pt;}
.ws9d{word-spacing:9.090560pt;}
.ws6b{word-spacing:9.508480pt;}
.ws4{word-spacing:10.145920pt;}
.ws11d{word-spacing:11.098667pt;}
.ws11c{word-spacing:11.418667pt;}
.ws90{word-spacing:11.420800pt;}
.ws23{word-spacing:11.633280pt;}
.ws24{word-spacing:12.058240pt;}
.wsdd{word-spacing:12.695680pt;}
.wsba{word-spacing:13.758080pt;}
.ws8f{word-spacing:13.970560pt;}
.ws91{word-spacing:14.608000pt;}
.wsb3{word-spacing:16.294400pt;}
.wsbc{word-spacing:17.157760pt;}
.ws26{word-spacing:17.954560pt;}
.ws25{word-spacing:18.432640pt;}
.ws57{word-spacing:19.070080pt;}
.wsc0{word-spacing:32.674560pt;}
.ws18{word-spacing:66.184960pt;}
.wsf9{word-spacing:81.141333pt;}
._22{margin-left:-7.259648pt;}
._1d{margin-left:-5.143616pt;}
._0{margin-left:-3.654656pt;}
._c{margin-left:-2.751616pt;}
._1{margin-left:-1.795456pt;}
._3{margin-left:-0.889088pt;}
._2{width:1.258944pt;}
._e{width:2.209792pt;}
._4{width:3.520000pt;}
._14{width:4.499264pt;}
._15{width:5.922880pt;}
._16{width:7.410240pt;}
._1e{width:8.350464pt;}
._13{width:9.588160pt;}
._12{width:12.222912pt;}
._21{width:13.641216pt;}
._1f{width:14.907072pt;}
._26{width:15.858944pt;}
._23{width:17.117632pt;}
._1c{width:18.754688pt;}
._1b{width:19.709504pt;}
._a{width:20.764608pt;}
._20{width:22.107712pt;}
._25{width:31.911296pt;}
._24{width:33.066240pt;}
._d{width:48.764160pt;}
._8{width:95.695680pt;}
._7{width:103.018624pt;}
._10{width:152.939776pt;}
._5{width:159.352448pt;}
._6{width:160.633088pt;}
._11{width:168.748288pt;}
._f{width:172.252224pt;}
._9{width:177.856384pt;}
._b{width:179.110016pt;}
._1a{width:448.155264pt;}
._19{width:479.649792pt;}
._18{width:631.216704pt;}
._27{width:742.784000pt;}
._17{width:1614.011904pt;}
.fs5{font-size:32.000000pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs7{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs9{font-size:80.000000pt;}
.fs8{font-size:85.120000pt;}
.fs6{font-size:112.000000pt;}
.fs2{font-size:160.000000pt;}
.y19{bottom:-60.160000pt;}
.y18{bottom:-32.320000pt;}
.y13{bottom:-8.160000pt;}
.y17{bottom:-4.320000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:1.120000pt;}
.y4{bottom:2.880000pt;}
.yc{bottom:9.600000pt;}
.y3{bottom:23.680000pt;}
.y16{bottom:24.480000pt;}
.y2{bottom:44.480000pt;}
.y1ba{bottom:56.156480pt;}
.y195{bottom:56.158240pt;}
.y140{bottom:56.158400pt;}
.y1fa{bottom:56.160000pt;}
.ydc{bottom:56.160480pt;}
.y124{bottom:56.160640pt;}
.y3a{bottom:56.161920pt;}
.y88{bottom:56.162240pt;}
.yb3{bottom:56.164320pt;}
.y101{bottom:56.171680pt;}
.y1{bottom:68.960000pt;}
.y1b9{bottom:71.518240pt;}
.y194{bottom:71.520000pt;}
.y13f{bottom:71.520160pt;}
.ydb{bottom:71.522240pt;}
.y123{bottom:71.522400pt;}
.yb2{bottom:71.526080pt;}
.y1f9{bottom:74.400000pt;}
.y39{bottom:76.797920pt;}
.y87{bottom:76.798240pt;}
.y100{bottom:76.807680pt;}
.y1b8{bottom:86.880000pt;}
.yda{bottom:86.884000pt;}
.yb1{bottom:86.887840pt;}
.y13e{bottom:92.156160pt;}
.y122{bottom:92.158400pt;}
.y38{bottom:92.159680pt;}
.y86{bottom:92.160000pt;}
.y193{bottom:92.167360pt;}
.yff{bottom:92.169440pt;}
.yb0{bottom:102.249600pt;}
.y13d{bottom:107.517920pt;}
.yd9{bottom:107.520000pt;}
.y121{bottom:107.520160pt;}
.y37{bottom:107.521440pt;}
.y192{bottom:107.529120pt;}
.yfe{bottom:107.531200pt;}
.y85{bottom:110.400000pt;}
.yaf{bottom:117.611360pt;}
.y1b7{bottom:122.878240pt;}
.y13c{bottom:122.879680pt;}
.y179{bottom:122.880000pt;}
.y120{bottom:122.881920pt;}
.y191{bottom:122.890880pt;}
.yd8{bottom:125.760000pt;}
.y159{bottom:128.316960pt;}
.y36{bottom:128.318240pt;}
.yfd{bottom:128.328000pt;}
.y1b6{bottom:138.240000pt;}
.y13b{bottom:138.241440pt;}
.y11f{bottom:138.243680pt;}
.yae{bottom:138.247360pt;}
.y190{bottom:138.252640pt;}
.y178{bottom:141.120000pt;}
.y158{bottom:143.678720pt;}
.y35{bottom:143.680000pt;}
.yfc{bottom:148.964000pt;}
.y1b5{bottom:153.598240pt;}
.y13a{bottom:159.038240pt;}
.y11e{bottom:159.040480pt;}
.yad{bottom:159.044160pt;}
.y18f{bottom:159.049440pt;}
.y34{bottom:161.920000pt;}
.y1d8{bottom:163.520000pt;}
.y1b4{bottom:168.960000pt;}
.yfb{bottom:169.600000pt;}
.y139{bottom:174.400000pt;}
.y11d{bottom:174.402240pt;}
.y18e{bottom:174.411200pt;}
.y20c{bottom:176.480000pt;}
.yd7{bottom:177.795200pt;}
.y157{bottom:179.676480pt;}
.yac{bottom:179.680160pt;}
.y177{bottom:186.414080pt;}
.yfa{bottom:187.840000pt;}
.y1b3{bottom:189.754720pt;}
.y138{bottom:192.640000pt;}
.y11c{bottom:195.038240pt;}
.y18d{bottom:195.047200pt;}
.y54{bottom:196.544000pt;}
.yd6{bottom:198.591680pt;}
.y1f8{bottom:199.690560pt;}
.yab{bottom:200.316160pt;}
.y1d7{bottom:204.167040pt;}
.y1b2{bottom:205.116480pt;}
.y176{bottom:207.210560pt;}
.y11b{bottom:210.400000pt;}
.yaa{bottom:215.677920pt;}
.y18c{bottom:215.683200pt;}
.yd5{bottom:219.388160pt;}
.y1b1{bottom:220.478240pt;}
.y84{bottom:224.017600pt;}
.y20b{bottom:224.828160pt;}
.y1d6{bottom:224.963520pt;}
.yf9{bottom:226.925760pt;}
.y175{bottom:228.007040pt;}
.y11a{bottom:228.640000pt;}
.y53{bottom:230.620480pt;}
.ya9{bottom:231.039680pt;}
.ye{bottom:232.000000pt;}
.y1f7{bottom:233.767040pt;}
.y1b0{bottom:235.840000pt;}
.y18b{bottom:236.480000pt;}
.yd4{bottom:240.184640pt;}
.y20a{bottom:245.624640pt;}
.y1d5{bottom:245.760000pt;}
.yf8{bottom:247.722240pt;}
.y174{bottom:248.803520pt;}
.y1af{bottom:251.194720pt;}
.y52{bottom:251.416960pt;}
.ya8{bottom:251.836480pt;}
.y1f6{bottom:254.563520pt;}
.y18a{bottom:254.720000pt;}
.y33{bottom:257.601120pt;}
.y83{bottom:258.094080pt;}
.yd3{bottom:260.981120pt;}
.y209{bottom:266.421120pt;}
.y1ae{bottom:266.556480pt;}
.ya7{bottom:267.198240pt;}
.yf7{bottom:268.518720pt;}
.y173{bottom:269.607040pt;}
.y51{bottom:272.213440pt;}
.y119{bottom:272.497600pt;}
.y1f5{bottom:275.360000pt;}
.y156{bottom:277.294080pt;}
.y137{bottom:278.083520pt;}
.y82{bottom:278.890560pt;}
.y1d4{bottom:280.085120pt;}
.yd2{bottom:281.777600pt;}
.y1ad{bottom:281.918240pt;}
.ya6{bottom:282.560000pt;}
.y208{bottom:287.217600pt;}
.yf6{bottom:289.315200pt;}
.y172{bottom:290.403520pt;}
.y50{bottom:293.009920pt;}
.y118{bottom:293.294080pt;}
.y1ac{bottom:297.280000pt;}
.y155{bottom:298.090560pt;}
.y136{bottom:298.911680pt;}
.y81{bottom:299.687040pt;}
.ya5{bottom:300.800000pt;}
.yd1{bottom:302.574080pt;}
.y32{bottom:305.767680pt;}
.y207{bottom:308.014080pt;}
.y1f4{bottom:309.638720pt;}
.yf5{bottom:310.111680pt;}
.y171{bottom:311.200000pt;}
.y117{bottom:314.090560pt;}
.y1d3{bottom:314.161600pt;}
.y1ab{bottom:315.520000pt;}
.y154{bottom:318.887040pt;}
.y135{bottom:319.708160pt;}
.y80{bottom:320.483520pt;}
.yd0{bottom:323.370560pt;}
.y4f{bottom:327.086400pt;}
.y206{bottom:328.810560pt;}
.yf4{bottom:330.908160pt;}
.y67{bottom:334.878240pt;}
.y116{bottom:334.887040pt;}
.y1d2{bottom:334.958080pt;}
.y153{bottom:339.683520pt;}
.y31{bottom:340.003520pt;}
.y134{bottom:340.504640pt;}
.y7f{bottom:341.283520pt;}
.y1f3{bottom:343.715200pt;}
.y170{bottom:343.840000pt;}
.ycf{bottom:344.167040pt;}
.y189{bottom:344.174080pt;}
.ya4{bottom:346.563520pt;}
.y4e{bottom:347.882880pt;}
.y205{bottom:349.607040pt;}
.y66{bottom:351.040000pt;}
.yf3{bottom:351.704640pt;}
.y115{bottom:355.683520pt;}
.y1d1{bottom:355.754560pt;}
.y152{bottom:360.483520pt;}
.y30{bottom:360.807040pt;}
.y133{bottom:361.301120pt;}
.y7e{bottom:362.080000pt;}
.y1f2{bottom:364.511680pt;}
.yce{bottom:364.963520pt;}
.y188{bottom:364.970560pt;}
.ya3{bottom:367.363520pt;}
.y4d{bottom:368.679360pt;}
.y204{bottom:370.403520pt;}
.yd{bottom:372.000000pt;}
.yf2{bottom:372.501120pt;}
.y16f{bottom:374.880000pt;}
.y114{bottom:376.504640pt;}
.y1d0{bottom:376.551040pt;}
.y151{bottom:381.301120pt;}
.y2f{bottom:381.603520pt;}
.y132{bottom:382.097600pt;}
.y65{bottom:384.800000pt;}
.y1f1{bottom:385.308160pt;}
.y187{bottom:385.767040pt;}
.ycd{bottom:385.816960pt;}
.ya2{bottom:388.181120pt;}
.y4c{bottom:389.475840pt;}
.y203{bottom:391.200000pt;}
.y1aa{bottom:391.363520pt;}
.yf1{bottom:393.297600pt;}
.y7d{bottom:394.720000pt;}
.y113{bottom:397.301120pt;}
.y1cf{bottom:397.347520pt;}
.y150{bottom:402.097600pt;}
.y2e{bottom:402.421760pt;}
.y131{bottom:402.894080pt;}
.y1f0{bottom:406.104640pt;}
.y186{bottom:406.563520pt;}
.ycc{bottom:406.613440pt;}
.ya1{bottom:408.977600pt;}
.y4b{bottom:410.272320pt;}
.y12{bottom:411.840000pt;}
.y1a9{bottom:412.160000pt;}
.yf0{bottom:414.094080pt;}
.y1ce{bottom:418.144000pt;}
.y14f{bottom:422.894080pt;}
.y2d{bottom:423.218240pt;}
.y21d{bottom:423.732000pt;}
.y64{bottom:426.400000pt;}
.y1ef{bottom:426.901120pt;}
.y185{bottom:427.363520pt;}
.ya0{bottom:429.774080pt;}
.y4a{bottom:431.068800pt;}
.y112{bottom:431.377600pt;}
.y130{bottom:436.970560pt;}
.y1cd{bottom:438.940480pt;}
.ycb{bottom:440.849280pt;}
.y16e{bottom:442.414080pt;}
.y14e{bottom:443.690560pt;}
.y2c{bottom:444.014720pt;}
.y21c{bottom:444.528000pt;}
.y202{bottom:445.280000pt;}
.y1a8{bottom:446.417600pt;}
.y1ee{bottom:447.697600pt;}
.y184{bottom:448.167040pt;}
.yef{bottom:448.170560pt;}
.y9f{bottom:450.570560pt;}
.y49{bottom:451.865280pt;}
.y111{bottom:452.174080pt;}
.y12f{bottom:457.767040pt;}
.y11{bottom:460.000000pt;}
.yca{bottom:461.645760pt;}
.y7c{bottom:462.146880pt;}
.y16d{bottom:463.210560pt;}
.y63{bottom:464.480000pt;}
.y14d{bottom:464.487040pt;}
.y2b{bottom:464.811200pt;}
.y21b{bottom:465.324000pt;}
.y1ed{bottom:468.494080pt;}
.y183{bottom:468.963520pt;}
.yee{bottom:468.967040pt;}
.y9e{bottom:471.367040pt;}
.y110{bottom:472.970560pt;}
.y1cc{bottom:473.016960pt;}
.y12e{bottom:478.563520pt;}
.y1a7{bottom:480.494080pt;}
.yc9{bottom:482.442240pt;}
.y7b{bottom:482.943360pt;}
.y16c{bottom:484.007040pt;}
.y14c{bottom:485.283520pt;}
.y2a{bottom:485.607680pt;}
.y48{bottom:486.101120pt;}
.y21a{bottom:486.120000pt;}
.y1ec{bottom:489.290560pt;}
.y62{bottom:489.600000pt;}
.yed{bottom:489.763520pt;}
.y182{bottom:489.764160pt;}
.y9d{bottom:492.163520pt;}
.y10f{bottom:493.767040pt;}
.y1cb{bottom:493.813440pt;}
.y12d{bottom:499.367040pt;}
.y1a6{bottom:501.290560pt;}
.yc8{bottom:503.238720pt;}
.y7a{bottom:503.739840pt;}
.y16b{bottom:504.803520pt;}
.y14b{bottom:506.080000pt;}
.y29{bottom:506.404160pt;}
.y47{bottom:506.897600pt;}
.y219{bottom:506.916000pt;}
.y10{bottom:508.000000pt;}
.y1eb{bottom:510.087040pt;}
.yec{bottom:510.574080pt;}
.y9c{bottom:512.974080pt;}
.y10e{bottom:514.563520pt;}
.y1ca{bottom:514.609920pt;}
.y12c{bottom:520.163520pt;}
.y1a5{bottom:522.087040pt;}
.y61{bottom:522.560000pt;}
.y181{bottom:524.028160pt;}
.yc7{bottom:524.035200pt;}
.y79{bottom:524.536320pt;}
.y16a{bottom:525.603520pt;}
.y28{bottom:527.200640pt;}
.y46{bottom:527.694080pt;}
.y1ea{bottom:530.883520pt;}
.yeb{bottom:531.370560pt;}
.y9b{bottom:533.770560pt;}
.y10d{bottom:535.360000pt;}
.y1c9{bottom:535.406400pt;}
.y218{bottom:538.402667pt;}
.y14a{bottom:538.720000pt;}
.y12b{bottom:541.015680pt;}
.y1a4{bottom:542.883520pt;}
.y180{bottom:544.824640pt;}
.yc6{bottom:544.831680pt;}
.y78{bottom:545.332800pt;}
.y169{bottom:546.400000pt;}
.y45{bottom:548.490560pt;}
.yea{bottom:552.167040pt;}
.y9a{bottom:554.567040pt;}
.y60{bottom:555.520000pt;}
.yf{bottom:556.000000pt;}
.y1c8{bottom:556.202880pt;}
.y12a{bottom:561.812160pt;}
.y1e9{bottom:565.009920pt;}
.y17f{bottom:565.621120pt;}
.yc5{bottom:565.628160pt;}
.y77{bottom:566.129280pt;}
.y27{bottom:567.200000pt;}
.y168{bottom:567.214080pt;}
.y10c{bottom:568.000000pt;}
.y44{bottom:569.287040pt;}
.ye9{bottom:572.963520pt;}
.y99{bottom:575.363520pt;}
.y1a3{bottom:576.970560pt;}
.y1c7{bottom:576.999360pt;}
.y129{bottom:582.608640pt;}
.y1e8{bottom:585.806400pt;}
.y17e{bottom:586.417600pt;}
.yc4{bottom:586.424640pt;}
.y76{bottom:586.925760pt;}
.y167{bottom:588.010560pt;}
.y5f{bottom:588.320000pt;}
.y217{bottom:588.505333pt;}
.y43{bottom:590.083520pt;}
.ye8{bottom:593.777467pt;}
.y98{bottom:596.174080pt;}
.y1a2{bottom:597.767040pt;}
.y1c6{bottom:597.795840pt;}
.y128{bottom:603.405120pt;}
.y149{bottom:604.808000pt;}
.y1e7{bottom:606.602880pt;}
.y17d{bottom:607.214080pt;}
.yc3{bottom:607.221120pt;}
.y75{bottom:607.722240pt;}
.y166{bottom:608.807040pt;}
.y216{bottom:609.301333pt;}
.y42{bottom:610.880000pt;}
.y5e{bottom:613.440000pt;}
.ye7{bottom:614.573947pt;}
.y97{bottom:616.970560pt;}
.y1a1{bottom:618.563520pt;}
.y1c5{bottom:618.592320pt;}
.y1e6{bottom:627.399360pt;}
.y17c{bottom:628.010560pt;}
.yc2{bottom:628.017600pt;}
.y74{bottom:628.518720pt;}
.y165{bottom:629.603520pt;}
.y215{bottom:630.097333pt;}
.y26{bottom:631.207040pt;}
.ye6{bottom:635.370427pt;}
.y127{bottom:637.481600pt;}
.y96{bottom:637.767040pt;}
.y148{bottom:639.360000pt;}
.y1a0{bottom:639.367040pt;}
.y1c4{bottom:639.388800pt;}
.yb{bottom:643.680000pt;}
.y5d{bottom:646.400000pt;}
.y1e5{bottom:648.195840pt;}
.y17b{bottom:648.807040pt;}
.yc1{bottom:648.814080pt;}
.y73{bottom:649.315200pt;}
.y164{bottom:650.400000pt;}
.ye5{bottom:656.166907pt;}
.y95{bottom:658.563520pt;}
.y19f{bottom:660.163520pt;}
.y1c3{bottom:660.185280pt;}
.y41{bottom:665.120000pt;}
.y25{bottom:665.283520pt;}
.y1e4{bottom:668.992320pt;}
.y214{bottom:669.592000pt;}
.y17a{bottom:669.603520pt;}
.yc0{bottom:669.610560pt;}
.y201{bottom:670.111680pt;}
.ye4{bottom:676.963387pt;}
.y94{bottom:679.367040pt;}
.y19e{bottom:680.967040pt;}
.y5c{bottom:682.720000pt;}
.y72{bottom:683.391680pt;}
.y163{bottom:684.519360pt;}
.y1e3{bottom:689.788800pt;}
.ybf{bottom:690.407040pt;}
.y126{bottom:690.442240pt;}
.y200{bottom:690.908160pt;}
.y1c2{bottom:694.421120pt;}
.y10b{bottom:697.781120pt;}
.ye3{bottom:697.785280pt;}
.y24{bottom:699.360000pt;}
.y93{bottom:700.163520pt;}
.y19d{bottom:701.763520pt;}
.y71{bottom:704.188160pt;}
.y162{bottom:705.315840pt;}
.y1e2{bottom:710.585280pt;}
.ybe{bottom:711.203520pt;}
.y125{bottom:711.238720pt;}
.y1ff{bottom:711.704640pt;}
.y213{bottom:714.398667pt;}
.y1c1{bottom:715.217600pt;}
.y10a{bottom:718.577600pt;}
.ye2{bottom:718.581760pt;}
.y5b{bottom:720.800000pt;}
.y92{bottom:720.988800pt;}
.y19c{bottom:722.560000pt;}
.y70{bottom:724.984640pt;}
.ybd{bottom:732.035200pt;}
.y1fe{bottom:732.501120pt;}
.y23{bottom:733.617600pt;}
.y1c0{bottom:736.014080pt;}
.y109{bottom:739.374080pt;}
.ye1{bottom:739.378240pt;}
.y147{bottom:739.385280pt;}
.y161{bottom:739.392320pt;}
.y91{bottom:741.785280pt;}
.y1e1{bottom:744.821120pt;}
.y6f{bottom:745.781120pt;}
.ybc{bottom:752.831680pt;}
.y1fd{bottom:753.297600pt;}
.y5a{bottom:754.080000pt;}
.y22{bottom:754.414080pt;}
.y19b{bottom:755.200000pt;}
.y1bf{bottom:756.810560pt;}
.y108{bottom:760.170560pt;}
.ye0{bottom:760.174720pt;}
.y146{bottom:760.181760pt;}
.y160{bottom:760.188800pt;}
.y90{bottom:762.581760pt;}
.y212{bottom:764.517333pt;}
.y1e0{bottom:765.617600pt;}
.y6e{bottom:766.577600pt;}
.y40{bottom:770.400000pt;}
.ybb{bottom:773.628160pt;}
.y1fc{bottom:774.094080pt;}
.y21{bottom:775.210560pt;}
.y1be{bottom:777.607040pt;}
.y107{bottom:780.967040pt;}
.y145{bottom:780.978240pt;}
.y15f{bottom:780.985280pt;}
.y8f{bottom:783.378240pt;}
.y211{bottom:785.313333pt;}
.y1df{bottom:786.414080pt;}
.y59{bottom:787.200000pt;}
.y6d{bottom:787.374080pt;}
.y3f{bottom:789.920000pt;}
.ydf{bottom:794.410560pt;}
.yba{bottom:794.424640pt;}
.y1fb{bottom:794.890560pt;}
.y20{bottom:796.007040pt;}
.y1bd{bottom:798.403520pt;}
.y106{bottom:801.763520pt;}
.y144{bottom:801.774720pt;}
.y15e{bottom:801.781760pt;}
.y8e{bottom:804.174720pt;}
.y1de{bottom:807.210560pt;}
.y6c{bottom:808.170560pt;}
.yde{bottom:815.207040pt;}
.yb9{bottom:815.221120pt;}
.y1f{bottom:816.803520pt;}
.y1bc{bottom:819.200000pt;}
.y105{bottom:822.563520pt;}
.y19a{bottom:822.567040pt;}
.y15d{bottom:822.578240pt;}
.y3e{bottom:823.520000pt;}
.y58{bottom:823.840000pt;}
.y8d{bottom:824.971200pt;}
.ya{bottom:827.040000pt;}
.y1dd{bottom:828.007040pt;}
.y6b{bottom:828.967040pt;}
.y210{bottom:830.120000pt;}
.ydd{bottom:836.003520pt;}
.y143{bottom:836.010560pt;}
.yb8{bottom:836.017600pt;}
.y1e{bottom:837.600000pt;}
.y199{bottom:843.363520pt;}
.y104{bottom:843.371200pt;}
.y15c{bottom:843.374720pt;}
.y8c{bottom:845.767680pt;}
.y1dc{bottom:848.803520pt;}
.y6a{bottom:849.763520pt;}
.y20f{bottom:850.916000pt;}
.y1bb{bottom:851.680000pt;}
.y57{bottom:855.677600pt;}
.y142{bottom:856.807040pt;}
.yb7{bottom:856.814080pt;}
.y3d{bottom:857.120000pt;}
.y1d{bottom:858.407040pt;}
.y8{bottom:858.880000pt;}
.y198{bottom:864.160000pt;}
.y103{bottom:864.167680pt;}
.y15b{bottom:864.171200pt;}
.y1db{bottom:869.600000pt;}
.y69{bottom:870.560000pt;}
.y56{bottom:871.680000pt;}
.y7{bottom:871.687680pt;}
.y20e{bottom:871.712000pt;}
.y141{bottom:877.603520pt;}
.yb6{bottom:877.610560pt;}
.y1c{bottom:879.203520pt;}
.y8b{bottom:880.003520pt;}
.y197{bottom:884.963520pt;}
.y102{bottom:884.964160pt;}
.y15a{bottom:884.967680pt;}
.y3c{bottom:890.720000pt;}
.yb5{bottom:898.407040pt;}
.y1b{bottom:900.000000pt;}
.y8a{bottom:900.800000pt;}
.y1da{bottom:902.240000pt;}
.y196{bottom:905.760000pt;}
.y6{bottom:905.764160pt;}
.yb4{bottom:919.203520pt;}
.y68{bottom:924.800000pt;}
.y55{bottom:925.760000pt;}
.y20d{bottom:925.920000pt;}
.y89{bottom:933.280000pt;}
.y1d9{bottom:933.440000pt;}
.y3b{bottom:937.280000pt;}
.y1a{bottom:939.840000pt;}
.y5{bottom:940.000000pt;}
.y15{bottom:1039.360000pt;}
.y14{bottom:1062.880000pt;}
.h4{height:18.560000pt;}
.h6{height:27.360000pt;}
.hc{height:32.294400pt;}
.ha{height:34.400000pt;}
.h12{height:36.748160pt;}
.hb{height:37.305600pt;}
.hd{height:41.592960pt;}
.h21{height:41.752320pt;}
.he{height:46.108160pt;}
.h2{height:46.214400pt;}
.h24{height:46.231040pt;}
.h1c{height:46.259200pt;}
.h22{height:46.273280pt;}
.h19{height:46.284800pt;}
.h25{height:46.287360pt;}
.h1d{height:46.298880pt;}
.h20{height:46.301440pt;}
.hf{height:46.312960pt;}
.h1b{height:46.315520pt;}
.h1e{height:46.330133pt;}
.h1a{height:46.343680pt;}
.h1f{height:46.355200pt;}
.h27{height:46.357760pt;}
.h10{height:46.371840pt;}
.h26{height:46.383360pt;}
.h18{height:46.385920pt;}
.h23{height:46.400000pt;}
.h13{height:48.000000pt;}
.h16{height:55.680000pt;}
.h7{height:56.927812pt;}
.h3{height:56.960000pt;}
.h17{height:60.820312pt;}
.h5{height:65.145600pt;}
.h15{height:66.648960pt;}
.h11{height:85.143957pt;}
.h14{height:85.148438pt;}
.h9{height:121.640625pt;}
.h8{height:270.080000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:129.120000pt;}
.w3{width:163.680000pt;}
.w2{width:229.440000pt;}
.w5{width:504.320000pt;}
.w7{width:512.478667pt;}
.w6{width:557.280000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:9.600000pt;}
.x3{left:19.040000pt;}
.xd{left:81.760000pt;}
.xc{left:93.440000pt;}
.x8{left:100.800000pt;}
.xe{left:105.922400pt;}
.x1{left:115.360000pt;}
.x9{left:117.760000pt;}
.x12{left:119.200000pt;}
.x1b{left:124.792000pt;}
.xa{left:127.360000pt;}
.x10{left:130.550240pt;}
.x1a{left:139.370240pt;}
.x14{left:144.172000pt;}
.x16{left:145.760000pt;}
.x19{left:153.760000pt;}
.x17{left:163.382560pt;}
.x2{left:280.960000pt;}
.x4{left:300.000000pt;}
.xf{left:307.360000pt;}
.x5{left:576.000000pt;}
.x7{left:618.560000pt;}
.x13{left:701.920000pt;}
.x18{left:703.200000pt;}
.x15{left:705.120000pt;}
.x11{left:708.640000pt;}
.xb{left:710.400000pt;}
}




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