
    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_53ff3edbc1f67ee83a6bcacd.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_ac61c17c8f0b9ae036c88528.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_107a334b0e2217e93d7aa63d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910645;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_12bd36be1e2a0338810b8ac3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.149414;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_a509c3558124f3ffcad21002.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.894531;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_7cede4fa43eeb0cbfda1cf1c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.905762;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_8d099464d1a0b02b2053c01e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.112305;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_6b37ab3739a6914ddb997735.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.936035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_6d3a4effa2d4d0f0232209b4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.936523;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_db42694fb5bedc3d453c277c.woff2')format("woff");}.ffa{font-family:ffa;line-height:2.549805;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_06ae0a691d88c623d319bc1b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_a2823c84db67f86c1f641afa.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_32d0ca42cc03775e4e59b7db.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.040039;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_8a977fab149f1b47d1204a2c.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.084961;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_a17d66f85b13f516c450e24d.woff2')format("woff");}.fff{font-family:fff;line-height:1.104004;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:ff10;src:url('chunks/assets/font_93e9158f5034c24e9163f38d.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.916992;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.144210,-0.204215,0.204215,0.144210,0,0);-ms-transform:matrix(0.144210,-0.204215,0.204215,0.144210,0,0);-webkit-transform:matrix(0.144210,-0.204215,0.204215,0.144210,0,0);}
.m4{transform:matrix(0.220587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220587,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.221428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221428,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257575,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);}
.v17{vertical-align:-36.720000px;}
.v2{vertical-align:-30.240000px;}
.v16{vertical-align:-27.360000px;}
.v3{vertical-align:-20.880000px;}
.vb{vertical-align:-9.360000px;}
.v10{vertical-align:-5.760000px;}
.vd{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.vc{vertical-align:2.880000px;}
.v15{vertical-align:9.360000px;}
.v8{vertical-align:12.960000px;}
.v4{vertical-align:20.880000px;}
.v18{vertical-align:23.880000px;}
.v5{vertical-align:27.360000px;}
.v1{vertical-align:30.240000px;}
.v6{vertical-align:35.280000px;}
.v13{vertical-align:36.720000px;}
.v14{vertical-align:40.320000px;}
.v11{vertical-align:46.080000px;}
.v12{vertical-align:48.960000px;}
.v7{vertical-align:51.120000px;}
.v9{vertical-align:52.560000px;}
.va{vertical-align:57.600000px;}
.vf{vertical-align:59.760000px;}
.ve{vertical-align:65.520000px;}
.ls4a{letter-spacing:-1.912320px;}
.ls1a{letter-spacing:-1.374480px;}
.ls25{letter-spacing:-1.135440px;}
.ls84{letter-spacing:-0.918000px;}
.lsf{letter-spacing:-0.916560px;}
.ls68{letter-spacing:-0.663336px;}
.ls24{letter-spacing:-0.657360px;}
.ls44{letter-spacing:-0.629280px;}
.ls67{letter-spacing:-0.609552px;}
.ls5b{letter-spacing:-0.597600px;}
.ls21{letter-spacing:-0.537840px;}
.ls10{letter-spacing:-0.478080px;}
.ls51{letter-spacing:-0.460152px;}
.ls61{letter-spacing:-0.418320px;}
.ls20{letter-spacing:-0.412344px;}
.ls87{letter-spacing:-0.378000px;}
.ls85{letter-spacing:-0.361800px;}
.lsc{letter-spacing:-0.359136px;}
.ls12{letter-spacing:-0.358560px;}
.lse{letter-spacing:-0.337680px;}
.ls42{letter-spacing:-0.304848px;}
.ls43{letter-spacing:-0.292320px;}
.ls50{letter-spacing:-0.256968px;}
.ls13{letter-spacing:-0.239040px;}
.ls41{letter-spacing:-0.227088px;}
.ls83{letter-spacing:-0.216000px;}
.ls60{letter-spacing:-0.209160px;}
.ls1c{letter-spacing:-0.179280px;}
.ls47{letter-spacing:-0.155376px;}
.ls86{letter-spacing:-0.108000px;}
.ls2b{letter-spacing:-0.107568px;}
.ls1{letter-spacing:-0.072000px;}
.ls17{letter-spacing:-0.053784px;}
.ls88{letter-spacing:-0.014400px;}
.ls0{letter-spacing:0.000000px;}
.ls89{letter-spacing:0.007200px;}
.ls3f{letter-spacing:0.011952px;}
.ls5f{letter-spacing:0.012960px;}
.ls8a{letter-spacing:0.014400px;}
.ls80{letter-spacing:0.018000px;}
.ls14{letter-spacing:0.053784px;}
.ls7f{letter-spacing:0.054000px;}
.ls2a{letter-spacing:0.106560px;}
.ls1d{letter-spacing:0.107568px;}
.ls82{letter-spacing:0.108000px;}
.ls16{letter-spacing:0.119520px;}
.ls7b{letter-spacing:0.120000px;}
.ls63{letter-spacing:0.135360px;}
.ls5a{letter-spacing:0.137448px;}
.ls34{letter-spacing:0.144000px;}
.ls2d{letter-spacing:0.151200px;}
.ls7d{letter-spacing:0.153360px;}
.ls27{letter-spacing:0.155376px;}
.ls73{letter-spacing:0.156000px;}
.ls2{letter-spacing:0.178560px;}
.ls5{letter-spacing:0.179280px;}
.lsb{letter-spacing:0.179568px;}
.ls8{letter-spacing:0.180000px;}
.ls3b{letter-spacing:0.195120px;}
.ls39{letter-spacing:0.209160px;}
.ls81{letter-spacing:0.216000px;}
.ls4{letter-spacing:0.233280px;}
.ls77{letter-spacing:0.239040px;}
.ls3{letter-spacing:0.253440px;}
.ls19{letter-spacing:0.256968px;}
.ls28{letter-spacing:0.259920px;}
.ls18{letter-spacing:0.298800px;}
.ls71{letter-spacing:0.304776px;}
.ls7e{letter-spacing:0.324000px;}
.ls54{letter-spacing:0.336000px;}
.ls26{letter-spacing:0.358560px;}
.lsa{letter-spacing:0.360000px;}
.ls33{letter-spacing:0.368640px;}
.ls3a{letter-spacing:0.371520px;}
.ls30{letter-spacing:0.372960px;}
.ls3d{letter-spacing:0.375120px;}
.ls35{letter-spacing:0.399600px;}
.ls49{letter-spacing:0.418320px;}
.ls4f{letter-spacing:0.460152px;}
.ls79{letter-spacing:0.466128px;}
.ls4e{letter-spacing:0.480000px;}
.ls7a{letter-spacing:0.537840px;}
.ls9{letter-spacing:0.540000px;}
.ls45{letter-spacing:0.564052px;}
.ls1b{letter-spacing:0.597600px;}
.ls70{letter-spacing:0.609552px;}
.ls74{letter-spacing:0.653040px;}
.ls11{letter-spacing:0.663336px;}
.ls58{letter-spacing:0.666720px;}
.ls36{letter-spacing:0.669600px;}
.ls76{letter-spacing:0.717120px;}
.ls40{letter-spacing:0.719280px;}
.ls7{letter-spacing:0.720000px;}
.lsd{letter-spacing:0.722016px;}
.ls15{letter-spacing:0.776880px;}
.ls1e{letter-spacing:0.830664px;}
.ls5c{letter-spacing:0.836640px;}
.ls64{letter-spacing:0.855360px;}
.ls22{letter-spacing:0.896400px;}
.ls7c{letter-spacing:0.900000px;}
.ls48{letter-spacing:0.902376px;}
.ls5e{letter-spacing:0.926640px;}
.ls62{letter-spacing:0.980064px;}
.ls1f{letter-spacing:1.015920px;}
.ls46{letter-spacing:1.075680px;}
.ls23{letter-spacing:1.080000px;}
.ls4c{letter-spacing:1.081656px;}
.ls65{letter-spacing:1.440000px;}
.ls4b{letter-spacing:1.613520px;}
.ls6{letter-spacing:1.620000px;}
.ls72{letter-spacing:2.340000px;}
.ls2e{letter-spacing:2.460960px;}
.ls56{letter-spacing:2.520000px;}
.ls55{letter-spacing:3.060000px;}
.ls31{letter-spacing:3.180960px;}
.ls57{letter-spacing:3.780000px;}
.ls52{letter-spacing:4.500000px;}
.ls6a{letter-spacing:4.620000px;}
.ls2c{letter-spacing:4.852800px;}
.ls6b{letter-spacing:5.220000px;}
.ls2f{letter-spacing:5.572800px;}
.ls4d{letter-spacing:5.940000px;}
.ls6f{letter-spacing:6.660000px;}
.ls53{letter-spacing:7.380000px;}
.ls6c{letter-spacing:8.820000px;}
.ls59{letter-spacing:9.540000px;}
.ls38{letter-spacing:10.380960px;}
.ls32{letter-spacing:11.700000px;}
.ls6e{letter-spacing:12.420000px;}
.ls69{letter-spacing:13.140000px;}
.ls3c{letter-spacing:13.824000px;}
.ls66{letter-spacing:13.860000px;}
.ls6d{letter-spacing:16.020000px;}
.ls75{letter-spacing:16.159680px;}
.ls5d{letter-spacing:24.660000px;}
.ls78{letter-spacing:26.100000px;}
.ls29{letter-spacing:30.420000px;}
.ls3e{letter-spacing:32.364000px;}
.ls37{letter-spacing:46.026720px;}
.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;}
}
.ws4b{word-spacing:-59.760000px;}
.ws54{word-spacing:-27.360000px;}
.ws56{word-spacing:-26.730720px;}
.ws5a{word-spacing:-22.320000px;}
.wse{word-spacing:-18.000000px;}
.ws2f{word-spacing:-17.928000px;}
.ws74{word-spacing:-16.560000px;}
.ws5e{word-spacing:-16.553520px;}
.ws60{word-spacing:-16.021656px;}
.ws5f{word-spacing:-16.015680px;}
.ws63{word-spacing:-15.955920px;}
.ws65{word-spacing:-15.836400px;}
.ws44{word-spacing:-15.770664px;}
.ws42{word-spacing:-15.716880px;}
.ws39{word-spacing:-15.603336px;}
.ws6f{word-spacing:-15.549552px;}
.ws41{word-spacing:-15.537600px;}
.ws73{word-spacing:-15.477840px;}
.ws72{word-spacing:-15.406128px;}
.ws61{word-spacing:-15.400152px;}
.ws5d{word-spacing:-15.358320px;}
.ws4e{word-spacing:-15.298560px;}
.ws6c{word-spacing:-15.244776px;}
.ws3f{word-spacing:-15.238800px;}
.ws40{word-spacing:-15.196968px;}
.ws6d{word-spacing:-15.149160px;}
.ws46{word-spacing:-15.119280px;}
.ws47{word-spacing:-15.095376px;}
.ws71{word-spacing:-15.059520px;}
.ws43{word-spacing:-15.047568px;}
.ws3c{word-spacing:-14.993784px;}
.ws3a{word-spacing:-14.940000px;}
.ws3e{word-spacing:-14.886216px;}
.ws62{word-spacing:-14.832432px;}
.ws6e{word-spacing:-14.760720px;}
.ws67{word-spacing:-14.730840px;}
.ws70{word-spacing:-14.700960px;}
.ws6a{word-spacing:-14.683032px;}
.ws3d{word-spacing:-14.581440px;}
.ws45{word-spacing:-14.527656px;}
.ws69{word-spacing:-14.521680px;}
.ws64{word-spacing:-14.479848px;}
.ws38{word-spacing:-14.461920px;}
.ws4d{word-spacing:-14.402160px;}
.ws66{word-spacing:-14.282640px;}
.ws6b{word-spacing:-14.276664px;}
.ws78{word-spacing:-13.824000px;}
.ws68{word-spacing:-13.804560px;}
.ws77{word-spacing:-13.500000px;}
.ws57{word-spacing:-13.356360px;}
.ws4a{word-spacing:-13.159152px;}
.ws4f{word-spacing:-13.147200px;}
.ws76{word-spacing:-13.138200px;}
.ws79{word-spacing:-13.122000px;}
.ws58{word-spacing:-12.991824px;}
.ws50{word-spacing:-12.920112px;}
.ws37{word-spacing:-11.722320px;}
.ws34{word-spacing:-10.619568px;}
.ws35{word-spacing:-10.440000px;}
.ws4c{word-spacing:-10.439280px;}
.ws3b{word-spacing:-9.720000px;}
.ws49{word-spacing:-9.187200px;}
.ws75{word-spacing:-9.000000px;}
.ws53{word-spacing:-8.894880px;}
.ws52{word-spacing:-8.882352px;}
.ws48{word-spacing:-8.100000px;}
.ws36{word-spacing:-7.560000px;}
.ws55{word-spacing:-6.840000px;}
.ws2e{word-spacing:-0.603000px;}
.ws30{word-spacing:-0.543600px;}
.ws2c{word-spacing:-0.518400px;}
.ws32{word-spacing:-0.422400px;}
.ws31{word-spacing:-0.339600px;}
.ws2d{word-spacing:-0.327000px;}
.ws7d{word-spacing:-0.086400px;}
.ws7c{word-spacing:-0.079200px;}
.ws7a{word-spacing:-0.072000px;}
.ws7b{word-spacing:-0.057600px;}
.ws33{word-spacing:0.000000px;}
.ws23{word-spacing:2.159400px;}
.ws5c{word-spacing:3.240000px;}
.ws17{word-spacing:3.656400px;}
.ws15{word-spacing:3.802800px;}
.ws16{word-spacing:3.811800px;}
.ws5b{word-spacing:3.960000px;}
.ws1e{word-spacing:6.010800px;}
.ws1c{word-spacing:6.153600px;}
.ws28{word-spacing:6.156600px;}
.ws24{word-spacing:6.219600px;}
.ws1f{word-spacing:6.226800px;}
.ws1d{word-spacing:6.237000px;}
.ws25{word-spacing:6.360600px;}
.ws26{word-spacing:6.361200px;}
.ws27{word-spacing:6.372600px;}
.ws8{word-spacing:8.599200px;}
.wsa{word-spacing:8.658600px;}
.ws9{word-spacing:8.982000px;}
.wsb{word-spacing:10.134000px;}
.ws21{word-spacing:11.761200px;}
.ws22{word-spacing:11.892000px;}
.ws20{word-spacing:11.916600px;}
.ws11{word-spacing:14.382600px;}
.ws14{word-spacing:14.491800px;}
.ws13{word-spacing:14.563800px;}
.wsf{word-spacing:14.564400px;}
.ws12{word-spacing:14.586000px;}
.ws10{word-spacing:14.684400px;}
.ws2b{word-spacing:15.325800px;}
.ws29{word-spacing:15.409800px;}
.ws2a{word-spacing:15.480600px;}
.ws5{word-spacing:20.771400px;}
.ws3{word-spacing:20.796000px;}
.ws4{word-spacing:20.925600px;}
.ws7{word-spacing:25.396800px;}
.ws51{word-spacing:29.332080px;}
.ws2{word-spacing:31.471800px;}
.ws0{word-spacing:31.617000px;}
.ws1{word-spacing:31.626600px;}
.ws1b{word-spacing:33.660600px;}
.ws1a{word-spacing:33.661200px;}
.ws18{word-spacing:33.841200px;}
.ws19{word-spacing:33.864600px;}
.ws59{word-spacing:47.048400px;}
.ws6{word-spacing:52.673400px;}
.wsd{word-spacing:536.867400px;}
.wsc{word-spacing:576.827400px;}
._9{margin-left:-9.349200px;}
._0{margin-left:-5.614800px;}
._1{margin-left:-2.893200px;}
._2{margin-left:-1.000200px;}
._a{width:1.281888px;}
._b{width:2.609568px;}
._c{width:3.674064px;}
._d{width:4.960080px;}
._e{width:6.740112px;}
._14{width:7.906320px;}
._11{width:9.329736px;}
._15{width:11.198160px;}
._f{width:12.526560px;}
._16{width:13.546440px;}
._19{width:14.771784px;}
._12{width:15.959520px;}
._13{width:17.031600px;}
._1c{width:18.285264px;}
._1a{width:19.302480px;}
._1d{width:20.670864px;}
._10{width:21.756000px;}
._1e{width:23.250240px;}
._1f{width:25.188192px;}
._3{width:27.035400px;}
._18{width:29.861280px;}
._17{width:31.000440px;}
._22{width:33.107040px;}
._24{width:34.984560px;}
._23{width:36.022800px;}
._20{width:42.549840px;}
._21{width:43.669296px;}
._1b{width:153.082080px;}
._8{width:272.987400px;}
._6{width:276.947400px;}
._7{width:312.875400px;}
._5{width:324.538200px;}
._4{width:390.995400px;}
._25{width:849.216000px;}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(229,229,229);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:27.360000px;}
.fs5{font-size:30.240000px;}
.fsa{font-size:36.000000px;}
.fs7{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fsd{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fsc{font-size:63.360000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs9{font-size:81.600000px;}
.fs0{font-size:94.500000px;}
.fs8{font-size:288.000669px;}
.y0{bottom:0.000000px;}
.y1d5{bottom:2.880000px;}
.y1d7{bottom:3.240000px;}
.y1de{bottom:3.420000px;}
.y20{bottom:4.680000px;}
.y1f3{bottom:18.000000px;}
.y1e7{bottom:18.360000px;}
.y1e5{bottom:18.540000px;}
.y1d9{bottom:18.720000px;}
.y1e0{bottom:18.765000px;}
.y1db{bottom:18.900000px;}
.y1f{bottom:56.340000px;}
.y1e{bottom:58.860000px;}
.yfe{bottom:89.100000px;}
.y8f{bottom:91.980000px;}
.y94{bottom:92.340000px;}
.yc9{bottom:92.880000px;}
.y116{bottom:93.240000px;}
.y57{bottom:96.300000px;}
.y1b8{bottom:104.580000px;}
.y1cf{bottom:105.120000px;}
.y171{bottom:105.300000px;}
.y182{bottom:107.640000px;}
.y147{bottom:108.900000px;}
.yfd{bottom:109.080000px;}
.y8e{bottom:111.780000px;}
.y93{bottom:112.140000px;}
.yc8{bottom:112.860000px;}
.y115{bottom:114.480000px;}
.y56{bottom:116.100000px;}
.y1c{bottom:123.976800px;}
.y1b7{bottom:126.000000px;}
.y170{bottom:126.900000px;}
.y1ce{bottom:128.160000px;}
.yfc{bottom:128.880000px;}
.y181{bottom:129.060000px;}
.y146{bottom:130.320000px;}
.y8d{bottom:131.940000px;}
.yc7{bottom:135.720000px;}
.y55{bottom:135.900000px;}
.y114{bottom:136.080000px;}
.y103{bottom:138.780000px;}
.y1b6{bottom:147.600000px;}
.y16f{bottom:148.500000px;}
.yfb{bottom:148.680000px;}
.y1cd{bottom:149.760000px;}
.y180{bottom:150.660000px;}
.y8c{bottom:151.740000px;}
.y145{bottom:151.920000px;}
.y54{bottom:155.340000px;}
.yc6{bottom:157.860000px;}
.y113{bottom:158.040000px;}
.yc5{bottom:167.940000px;}
.yfa{bottom:168.480000px;}
.y1b5{bottom:169.200000px;}
.y16e{bottom:169.740000px;}
.y109{bottom:171.180000px;}
.y1cc{bottom:171.360000px;}
.y8b{bottom:171.540000px;}
.y17f{bottom:172.260000px;}
.y144{bottom:173.160000px;}
.y176{bottom:173.520000px;}
.y53{bottom:175.500000px;}
.y112{bottom:179.640000px;}
.yf9{bottom:188.280000px;}
.y1b4{bottom:190.800000px;}
.y8a{bottom:191.520000px;}
.y1cb{bottom:192.780000px;}
.y1b{bottom:192.826800px;}
.y17e{bottom:193.500000px;}
.y188{bottom:193.860000px;}
.y143{bottom:194.760000px;}
.y175{bottom:195.120000px;}
.y52{bottom:195.480000px;}
.y111{bottom:201.060000px;}
.yc4{bottom:201.780000px;}
.yf8{bottom:208.260000px;}
.y89{bottom:211.320000px;}
.y1b3{bottom:212.400000px;}
.y16d{bottom:213.120000px;}
.y1ca{bottom:214.380000px;}
.y1a{bottom:214.426800px;}
.y51{bottom:215.280000px;}
.y17d{bottom:215.460000px;}
.y187{bottom:216.000000px;}
.y142{bottom:216.720000px;}
.yc3{bottom:221.760000px;}
.y110{bottom:222.660000px;}
.yf7{bottom:228.060000px;}
.y21a{bottom:228.360000px;}
.y88{bottom:231.120000px;}
.y1b2{bottom:233.820000px;}
.y16c{bottom:234.720000px;}
.y50{bottom:235.080000px;}
.y1c9{bottom:235.980000px;}
.y19{bottom:236.026800px;}
.y17c{bottom:236.910000px;}
.y141{bottom:238.170000px;}
.yc2{bottom:241.590000px;}
.y10f{bottom:244.290000px;}
.yf6{bottom:247.890000px;}
.y219{bottom:249.600000px;}
.y87{bottom:250.950000px;}
.y4f{bottom:254.910000px;}
.y1b1{bottom:255.450000px;}
.y16b{bottom:256.350000px;}
.y1c8{bottom:257.610000px;}
.y18{bottom:257.626800px;}
.y17b{bottom:258.510000px;}
.y140{bottom:259.770000px;}
.y10e{bottom:265.890000px;}
.y211{bottom:267.600000px;}
.yf5{bottom:267.690000px;}
.yc1{bottom:268.410000px;}
.y106{bottom:270.390000px;}
.y86{bottom:270.750000px;}
.y218{bottom:270.840000px;}
.y4e{bottom:274.710000px;}
.yc0{bottom:275.970000px;}
.y1b0{bottom:277.050000px;}
.y16a{bottom:277.770000px;}
.y1c7{bottom:279.030000px;}
.y17{bottom:279.226800px;}
.y17a{bottom:280.110000px;}
.y13f{bottom:281.010000px;}
.y174{bottom:281.370000px;}
.y10d{bottom:287.310000px;}
.yf4{bottom:287.490000px;}
.y217{bottom:287.760000px;}
.y210{bottom:288.840000px;}
.y85{bottom:290.730000px;}
.y4d{bottom:294.690000px;}
.y1af{bottom:298.650000px;}
.y169{bottom:299.370000px;}
.y1c6{bottom:300.630000px;}
.y16{bottom:300.826800px;}
.y179{bottom:302.250000px;}
.y18a{bottom:302.610000px;}
.y13e{bottom:302.970000px;}
.yf3{bottom:307.470000px;}
.y10c{bottom:308.910000px;}
.y20a{bottom:309.720000px;}
.y108{bottom:310.170000px;}
.y84{bottom:310.530000px;}
.ybf{bottom:310.710000px;}
.y4c{bottom:314.490000px;}
.y1ae{bottom:320.250000px;}
.y168{bottom:320.970000px;}
.y1c5{bottom:322.230000px;}
.y15{bottom:322.426800px;}
.y178{bottom:324.030000px;}
.y13d{bottom:324.390000px;}
.y20f{bottom:327.000000px;}
.yf2{bottom:327.270000px;}
.y10b{bottom:330.150000px;}
.y83{bottom:330.330000px;}
.ybe{bottom:330.510000px;}
.y209{bottom:330.960000px;}
.y4b{bottom:334.290000px;}
.y1ad{bottom:341.670000px;}
.y167{bottom:342.570000px;}
.y1c4{bottom:343.830000px;}
.y13c{bottom:345.990000px;}
.yf1{bottom:347.070000px;}
.y10a{bottom:349.770000px;}
.y82{bottom:350.130000px;}
.ybd{bottom:350.310000px;}
.y208{bottom:351.840000px;}
.y4a{bottom:354.090000px;}
.y1ac{bottom:363.270000px;}
.y166{bottom:364.170000px;}
.y1c3{bottom:365.430000px;}
.yf0{bottom:366.870000px;}
.y13b{bottom:367.590000px;}
.y81{bottom:369.930000px;}
.ybc{bottom:370.110000px;}
.y207{bottom:373.080000px;}
.y49{bottom:373.890000px;}
.y1ab{bottom:384.870000px;}
.y165{bottom:385.590000px;}
.yef{bottom:386.670000px;}
.y1c2{bottom:386.850000px;}
.y13a{bottom:389.190000px;}
.y80{bottom:389.910000px;}
.y206{bottom:390.000000px;}
.y14{bottom:391.276800px;}
.y48{bottom:393.870000px;}
.y58{bottom:404.715000px;}
.y1aa{bottom:406.470000px;}
.yee{bottom:406.650000px;}
.y164{bottom:407.190000px;}
.y1c1{bottom:408.450000px;}
.yff{bottom:409.350000px;}
.y7f{bottom:409.710000px;}
.ybb{bottom:409.890000px;}
.y139{bottom:410.790000px;}
.y13{bottom:412.876800px;}
.y47{bottom:413.670000px;}
.y200{bottom:423.840000px;}
.yed{bottom:426.450000px;}
.y1a9{bottom:427.890000px;}
.y163{bottom:428.790000px;}
.y102{bottom:429.150000px;}
.y7e{bottom:429.510000px;}
.yba{bottom:429.690000px;}
.y1c0{bottom:430.050000px;}
.y138{bottom:432.210000px;}
.y46{bottom:433.470000px;}
.y12{bottom:434.476800px;}
.y1ff{bottom:444.720000px;}
.yec{bottom:446.250000px;}
.yb9{bottom:448.590000px;}
.y7d{bottom:449.310000px;}
.y1a8{bottom:449.490000px;}
.y162{bottom:450.390000px;}
.y1bf{bottom:451.650000px;}
.y45{bottom:453.270000px;}
.y137{bottom:453.810000px;}
.y11{bottom:456.076800px;}
.yb8{bottom:456.150000px;}
.y1fe{bottom:465.960000px;}
.yeb{bottom:466.095000px;}
.y101{bottom:468.795000px;}
.y7c{bottom:469.155000px;}
.y1a7{bottom:471.135000px;}
.y161{bottom:471.855000px;}
.y44{bottom:473.115000px;}
.y1fb{bottom:474.240000px;}
.y136{bottom:475.455000px;}
.yb7{bottom:480.495000px;}
.yea{bottom:485.895000px;}
.y205{bottom:486.480000px;}
.y1fd{bottom:487.200000px;}
.y7b{bottom:489.135000px;}
.y1a6{bottom:492.735000px;}
.y43{bottom:493.095000px;}
.y160{bottom:493.455000px;}
.y1be{bottom:494.715000px;}
.y1fa{bottom:495.480000px;}
.y186{bottom:496.695000px;}
.y135{bottom:497.055000px;}
.yb6{bottom:500.295000px;}
.y1fc{bottom:504.120000px;}
.ye9{bottom:505.875000px;}
.y204{bottom:507.360000px;}
.y7a{bottom:508.935000px;}
.y42{bottom:512.895000px;}
.y10{bottom:513.676800px;}
.y1a5{bottom:514.335000px;}
.y15f{bottom:515.055000px;}
.y1bd{bottom:516.315000px;}
.y1f9{bottom:516.720000px;}
.y134{bottom:518.655000px;}
.yb5{bottom:520.095000px;}
.ye8{bottom:525.675000px;}
.y203{bottom:528.600000px;}
.y79{bottom:528.735000px;}
.y41{bottom:532.695000px;}
.y1f8{bottom:533.640000px;}
.y1a4{bottom:535.755000px;}
.y15e{bottom:536.655000px;}
.y1bc{bottom:537.915000px;}
.yb4{bottom:539.895000px;}
.y133{bottom:540.075000px;}
.ye7{bottom:545.475000px;}
.yf{bottom:546.526800px;}
.y78{bottom:548.535000px;}
.y202{bottom:549.840000px;}
.y40{bottom:552.495000px;}
.y1a3{bottom:557.355000px;}
.y15d{bottom:558.255000px;}
.y1bb{bottom:559.515000px;}
.yb3{bottom:559.875000px;}
.y132{bottom:561.675000px;}
.ye6{bottom:565.275000px;}
.y201{bottom:566.760000px;}
.y77{bottom:568.335000px;}
.y3f{bottom:572.295000px;}
.y1a2{bottom:578.955000px;}
.ye{bottom:579.376800px;}
.yb2{bottom:579.675000px;}
.y131{bottom:583.275000px;}
.ye5{bottom:585.075000px;}
.y76{bottom:588.315000px;}
.y3e{bottom:592.275000px;}
.yb1{bottom:599.475000px;}
.y1a1{bottom:600.555000px;}
.y15c{bottom:601.275000px;}
.y130{bottom:604.875000px;}
.ye4{bottom:605.055000px;}
.y92{bottom:607.755000px;}
.y75{bottom:608.115000px;}
.y3d{bottom:612.075000px;}
.yb0{bottom:619.275000px;}
.y1a0{bottom:621.975000px;}
.y15b{bottom:622.875000px;}
.ye3{bottom:624.855000px;}
.y12f{bottom:626.295000px;}
.y74{bottom:627.915000px;}
.y1eb{bottom:629.355000px;}
.yd{bottom:631.351800px;}
.y3c{bottom:631.875000px;}
.yaf{bottom:639.075000px;}
.y19f{bottom:643.575000px;}
.y15a{bottom:644.475000px;}
.ye2{bottom:644.655000px;}
.y1ea{bottom:646.095000px;}
.y91{bottom:647.355000px;}
.y73{bottom:647.715000px;}
.y12e{bottom:647.895000px;}
.y3b{bottom:651.675000px;}
.yae{bottom:659.055000px;}
.y1e9{bottom:660.855000px;}
.ye1{bottom:664.455000px;}
.y19e{bottom:665.175000px;}
.y159{bottom:665.895000px;}
.y107{bottom:667.155000px;}
.y72{bottom:667.515000px;}
.y12d{bottom:669.495000px;}
.y1e8{bottom:671.115000px;}
.y3a{bottom:671.475000px;}
.yad{bottom:678.855000px;}
.yc{bottom:683.326800px;}
.ye0{bottom:683.895000px;}
.y19d{bottom:686.775000px;}
.y1f7{bottom:687.360000px;}
.y71{bottom:687.495000px;}
.y216{bottom:690.600000px;}
.y12c{bottom:691.095000px;}
.y39{bottom:691.455000px;}
.yac{bottom:698.685000px;}
.y1e6{bottom:702.285000px;}
.ydf{bottom:704.265000px;}
.y70{bottom:707.325000px;}
.y19c{bottom:708.405000px;}
.y1f6{bottom:708.600000px;}
.y158{bottom:709.125000px;}
.y38{bottom:711.285000px;}
.y215{bottom:711.840000px;}
.y12b{bottom:712.725000px;}
.y20e{bottom:714.720000px;}
.yb{bottom:716.176800px;}
.yab{bottom:718.485000px;}
.yde{bottom:723.705000px;}
.y6f{bottom:727.125000px;}
.y19b{bottom:729.825000px;}
.y1f5{bottom:729.840000px;}
.y157{bottom:730.725000px;}
.y37{bottom:731.085000px;}
.y214{bottom:733.080000px;}
.y1e4{bottom:733.245000px;}
.y12a{bottom:734.145000px;}
.y20d{bottom:735.960000px;}
.yaa{bottom:738.285000px;}
.ydd{bottom:743.865000px;}
.y1f4{bottom:746.760000px;}
.y6e{bottom:746.925000px;}
.ya{bottom:749.026800px;}
.y36{bottom:750.885000px;}
.y19a{bottom:751.425000px;}
.y156{bottom:752.325000px;}
.y213{bottom:753.960000px;}
.y129{bottom:755.745000px;}
.y20c{bottom:757.200000px;}
.ya9{bottom:758.265000px;}
.ydc{bottom:763.665000px;}
.y1e3{bottom:764.385000px;}
.y6d{bottom:766.725000px;}
.y35{bottom:770.685000px;}
.y212{bottom:771.240000px;}
.y199{bottom:773.025000px;}
.y155{bottom:773.745000px;}
.y20b{bottom:774.120000px;}
.y128{bottom:777.345000px;}
.ya8{bottom:778.065000px;}
.ydb{bottom:783.465000px;}
.y6c{bottom:786.705000px;}
.y34{bottom:791.025000px;}
.y198{bottom:794.625000px;}
.y154{bottom:795.345000px;}
.y9{bottom:796.951800px;}
.ya7{bottom:797.865000px;}
.y173{bottom:798.585000px;}
.y127{bottom:798.945000px;}
.yda{bottom:803.445000px;}
.y6b{bottom:806.505000px;}
.y33{bottom:812.445000px;}
.y197{bottom:816.045000px;}
.y153{bottom:816.945000px;}
.y8{bottom:817.201800px;}
.ya6{bottom:817.665000px;}
.y126{bottom:820.365000px;}
.yd9{bottom:823.245000px;}
.y6a{bottom:826.305000px;}
.y1e2{bottom:826.485000px;}
.y32{bottom:830.985000px;}
.y21e{bottom:831.720000px;}
.y7{bottom:837.451800px;}
.ya5{bottom:837.465000px;}
.y196{bottom:837.645000px;}
.y152{bottom:838.545000px;}
.y125{bottom:841.965000px;}
.yd8{bottom:843.045000px;}
.y69{bottom:846.105000px;}
.y31{bottom:852.045000px;}
.y21d{bottom:852.960000px;}
.ya4{bottom:857.445000px;}
.y6{bottom:857.701800px;}
.y195{bottom:859.245000px;}
.y151{bottom:860.145000px;}
.y30{bottom:862.665000px;}
.yd7{bottom:862.845000px;}
.y177{bottom:863.205000px;}
.y124{bottom:863.565000px;}
.y68{bottom:865.905000px;}
.y21c{bottom:874.200000px;}
.ya3{bottom:877.245000px;}
.y5{bottom:877.951800px;}
.y194{bottom:880.845000px;}
.y150{bottom:881.565000px;}
.yd6{bottom:882.645000px;}
.y2f{bottom:883.725000px;}
.y185{bottom:884.805000px;}
.y123{bottom:885.165000px;}
.y67{bottom:885.885000px;}
.y1e1{bottom:888.585000px;}
.y21b{bottom:891.120000px;}
.ya2{bottom:897.045000px;}
.y2e{bottom:899.745000px;}
.y193{bottom:902.445000px;}
.yd5{bottom:902.625000px;}
.y14f{bottom:903.165000px;}
.y1df{bottom:904.065000px;}
.y66{bottom:905.685000px;}
.y1ba{bottom:906.405000px;}
.y122{bottom:906.765000px;}
.y2d{bottom:915.585000px;}
.ya1{bottom:916.845000px;}
.yd4{bottom:922.470000px;}
.y192{bottom:923.910000px;}
.y65{bottom:925.530000px;}
.y14e{bottom:925.710000px;}
.y189{bottom:927.870000px;}
.y121{bottom:928.230000px;}
.y2c{bottom:931.470000px;}
.y1dd{bottom:935.070000px;}
.ya0{bottom:936.690000px;}
.yd3{bottom:942.270000px;}
.y64{bottom:945.330000px;}
.y191{bottom:945.510000px;}
.y2b{bottom:947.310000px;}
.y14d{bottom:947.670000px;}
.y4{bottom:947.701800px;}
.y184{bottom:949.470000px;}
.y120{bottom:949.830000px;}
.y9f{bottom:956.670000px;}
.yd2{bottom:962.070000px;}
.y2a{bottom:963.150000px;}
.y63{bottom:965.130000px;}
.y1dc{bottom:966.210000px;}
.y190{bottom:967.110000px;}
.y3{bottom:967.951800px;}
.y14c{bottom:969.090000px;}
.y11f{bottom:971.430000px;}
.y9e{bottom:976.650000px;}
.y29{bottom:978.990000px;}
.y1f2{bottom:980.430000px;}
.yd1{bottom:981.870000px;}
.y105{bottom:984.750000px;}
.y62{bottom:985.110000px;}
.y2{bottom:988.201800px;}
.y18f{bottom:988.710000px;}
.y14b{bottom:990.690000px;}
.y11e{bottom:993.030000px;}
.y28{bottom:995.010000px;}
.y1da{bottom:997.170000px;}
.y9d{bottom:997.530000px;}
.yd0{bottom:1001.850000px;}
.y61{bottom:1004.910000px;}
.y18e{bottom:1010.490000px;}
.y1f1{bottom:1011.210000px;}
.y14a{bottom:1012.290000px;}
.y183{bottom:1014.090000px;}
.y11d{bottom:1014.450000px;}
.y27{bottom:1015.170000px;}
.y9c{bottom:1016.430000px;}
.ycf{bottom:1018.770000px;}
.y9b{bottom:1023.990000px;}
.y60{bottom:1024.710000px;}
.y1d8{bottom:1028.310000px;}
.yce{bottom:1028.850000px;}
.y26{bottom:1029.390000px;}
.y104{bottom:1031.550000px;}
.y149{bottom:1033.890000px;}
.y11c{bottom:1035.690000px;}
.y172{bottom:1036.050000px;}
.y1f0{bottom:1041.990000px;}
.y100{bottom:1044.150000px;}
.y5f{bottom:1044.510000px;}
.y9a{bottom:1050.090000px;}
.y25{bottom:1051.170000px;}
.y18d{bottom:1055.490000px;}
.y11b{bottom:1057.290000px;}
.y148{bottom:1057.650000px;}
.y1d6{bottom:1059.270000px;}
.y1{bottom:1060.103850px;}
.ycd{bottom:1061.430000px;}
.y5e{bottom:1064.310000px;}
.y99{bottom:1070.070000px;}
.y1ef{bottom:1072.770000px;}
.y24{bottom:1072.950000px;}
.y1d4{bottom:1075.650000px;}
.y18c{bottom:1077.090000px;}
.y1b9{bottom:1078.890000px;}
.y11a{bottom:1079.250000px;}
.ycc{bottom:1081.230000px;}
.y5d{bottom:1084.290000px;}
.y98{bottom:1090.950000px;}
.y23{bottom:1094.550000px;}
.y1d3{bottom:1095.810000px;}
.y18b{bottom:1099.410000px;}
.y119{bottom:1100.850000px;}
.ycb{bottom:1101.030000px;}
.y1ee{bottom:1103.730000px;}
.y5c{bottom:1104.090000px;}
.y97{bottom:1109.850000px;}
.yca{bottom:1111.110000px;}
.y1d2{bottom:1114.170000px;}
.y22{bottom:1116.870000px;}
.y96{bottom:1117.410000px;}
.y118{bottom:1122.270000px;}
.y95{bottom:1123.530000px;}
.y5b{bottom:1123.890000px;}
.y1ed{bottom:1124.790000px;}
.y1d1{bottom:1129.650000px;}
.y21{bottom:1140.630000px;}
.y1ec{bottom:1142.070000px;}
.y90{bottom:1143.330000px;}
.y5a{bottom:1143.690000px;}
.y117{bottom:1143.870000px;}
.y1d0{bottom:1145.130000px;}
.y59{bottom:1196.280000px;}
.y1d{bottom:1248.840000px;}
.h27{height:15.465000px;}
.h2e{height:15.480000px;}
.h7{height:19.438500px;}
.hc{height:20.745703px;}
.h22{height:27.014766px;}
.hb{height:29.015859px;}
.h29{height:30.945000px;}
.h30{height:30.960000px;}
.h2d{height:30.982500px;}
.h2a{height:31.125000px;}
.h2f{height:31.140000px;}
.h31{height:31.170000px;}
.hd{height:33.094336px;}
.he{height:33.706758px;}
.h28{height:37.045898px;}
.h26{height:37.520508px;}
.h15{height:40.997461px;}
.h6{height:41.522695px;}
.h11{height:41.756133px;}
.h23{height:44.024062px;}
.h5{height:46.025156px;}
.h2c{height:48.410156px;}
.h20{height:48.496641px;}
.h1f{height:49.255313px;}
.h2{height:50.027344px;}
.h25{height:50.255859px;}
.h35{height:50.308594px;}
.h24{height:53.077852px;}
.hf{height:53.573906px;}
.h10{height:54.374766px;}
.h21{height:54.494766px;}
.h12{height:55.616484px;}
.h2b{height:57.263906px;}
.ha{height:59.255859px;}
.h14{height:59.327344px;}
.h32{height:59.383125px;}
.h9{height:61.647187px;}
.h1{height:65.660889px;}
.h8{height:67.007812px;}
.h19{height:71.762695px;}
.h1e{height:93.287461px;}
.h1c{height:96.167461px;}
.h18{height:100.468828px;}
.h16{height:107.317266px;}
.h17{height:123.527461px;}
.h1a{height:130.708828px;}
.h1d{height:139.367461px;}
.h1b{height:142.247461px;}
.h13{height:209.531737px;}
.h0{height:1188.000000px;}
.h34{height:1227.000000px;}
.h33{height:1263.000000px;}
.h4{height:1263.750000px;}
.h3{height:1263.780000px;}
.w3{width:24.120000px;}
.w4{width:93.094500px;}
.wa{width:103.714500px;}
.w8{width:127.605000px;}
.w7{width:129.621000px;}
.w6{width:129.636000px;}
.wd{width:138.081000px;}
.wb{width:138.261000px;}
.wc{width:138.276000px;}
.w5{width:165.975000px;}
.w9{width:645.975000px;}
.we{width:856.500000px;}
.w1{width:892.440000px;}
.w2{width:892.500000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x4{left:4.500000px;}
.x27{left:7.954500px;}
.x2f{left:14.254500px;}
.x20{left:18.754500px;}
.x38{left:22.140000px;}
.x30{left:25.545000px;}
.x36{left:28.785000px;}
.x37{left:30.814500px;}
.x2b{left:32.205000px;}
.x33{left:33.300000px;}
.x35{left:36.034500px;}
.x25{left:37.245000px;}
.x23{left:39.780000px;}
.x28{left:42.694500px;}
.x31{left:44.460000px;}
.x34{left:47.880000px;}
.x32{left:50.565000px;}
.x2e{left:53.314500px;}
.x2a{left:57.225000px;}
.x21{left:60.645000px;}
.x39{left:62.674500px;}
.x3a{left:65.685000px;}
.x1e{left:74.340000px;}
.x1f{left:77.041500px;}
.x2{left:84.996000px;}
.x9{left:86.256000px;}
.x3c{left:90.000000px;}
.xd{left:106.236000px;}
.x1a{left:108.576000px;}
.x10{left:111.996000px;}
.x12{left:113.076000px;}
.x5{left:123.876000px;}
.x8{left:128.736000px;}
.x1{left:135.000000px;}
.x11{left:138.996000px;}
.xa{left:154.110000px;}
.x1d{left:166.170000px;}
.x15{left:169.950000px;}
.x13{left:179.130000px;}
.x29{left:180.765000px;}
.x18{left:210.990000px;}
.x17{left:221.250000px;}
.x16{left:226.650000px;}
.x6{left:254.955000px;}
.x1b{left:270.795000px;}
.x14{left:278.535000px;}
.xb{left:285.795000px;}
.xf{left:313.095000px;}
.xe{left:316.335000px;}
.x2c{left:319.035000px;}
.x22{left:336.135000px;}
.x19{left:337.395000px;}
.xc{left:360.645000px;}
.x7{left:446.145000px;}
.x2d{left:457.320000px;}
.x24{left:465.780000px;}
.x26{left:595.410000px;}
.x3d{left:603.000000px;}
.x1c{left:619.350000px;}
.x3b{left:766.199700px;}
.x3{left:788.220000px;}
@media print{
.v17{vertical-align:-32.640000pt;}
.v2{vertical-align:-26.880000pt;}
.v16{vertical-align:-24.320000pt;}
.v3{vertical-align:-18.560000pt;}
.vb{vertical-align:-8.320000pt;}
.v10{vertical-align:-5.120000pt;}
.vd{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.vc{vertical-align:2.560000pt;}
.v15{vertical-align:8.320000pt;}
.v8{vertical-align:11.520000pt;}
.v4{vertical-align:18.560000pt;}
.v18{vertical-align:21.226667pt;}
.v5{vertical-align:24.320000pt;}
.v1{vertical-align:26.880000pt;}
.v6{vertical-align:31.360000pt;}
.v13{vertical-align:32.640000pt;}
.v14{vertical-align:35.840000pt;}
.v11{vertical-align:40.960000pt;}
.v12{vertical-align:43.520000pt;}
.v7{vertical-align:45.440000pt;}
.v9{vertical-align:46.720000pt;}
.va{vertical-align:51.200000pt;}
.vf{vertical-align:53.120000pt;}
.ve{vertical-align:58.240000pt;}
.ls4a{letter-spacing:-1.699840pt;}
.ls1a{letter-spacing:-1.221760pt;}
.ls25{letter-spacing:-1.009280pt;}
.ls84{letter-spacing:-0.816000pt;}
.lsf{letter-spacing:-0.814720pt;}
.ls68{letter-spacing:-0.589632pt;}
.ls24{letter-spacing:-0.584320pt;}
.ls44{letter-spacing:-0.559360pt;}
.ls67{letter-spacing:-0.541824pt;}
.ls5b{letter-spacing:-0.531200pt;}
.ls21{letter-spacing:-0.478080pt;}
.ls10{letter-spacing:-0.424960pt;}
.ls51{letter-spacing:-0.409024pt;}
.ls61{letter-spacing:-0.371840pt;}
.ls20{letter-spacing:-0.366528pt;}
.ls87{letter-spacing:-0.336000pt;}
.ls85{letter-spacing:-0.321600pt;}
.lsc{letter-spacing:-0.319232pt;}
.ls12{letter-spacing:-0.318720pt;}
.lse{letter-spacing:-0.300160pt;}
.ls42{letter-spacing:-0.270976pt;}
.ls43{letter-spacing:-0.259840pt;}
.ls50{letter-spacing:-0.228416pt;}
.ls13{letter-spacing:-0.212480pt;}
.ls41{letter-spacing:-0.201856pt;}
.ls83{letter-spacing:-0.192000pt;}
.ls60{letter-spacing:-0.185920pt;}
.ls1c{letter-spacing:-0.159360pt;}
.ls47{letter-spacing:-0.138112pt;}
.ls86{letter-spacing:-0.096000pt;}
.ls2b{letter-spacing:-0.095616pt;}
.ls1{letter-spacing:-0.064000pt;}
.ls17{letter-spacing:-0.047808pt;}
.ls88{letter-spacing:-0.012800pt;}
.ls0{letter-spacing:0.000000pt;}
.ls89{letter-spacing:0.006400pt;}
.ls3f{letter-spacing:0.010624pt;}
.ls5f{letter-spacing:0.011520pt;}
.ls8a{letter-spacing:0.012800pt;}
.ls80{letter-spacing:0.016000pt;}
.ls14{letter-spacing:0.047808pt;}
.ls7f{letter-spacing:0.048000pt;}
.ls2a{letter-spacing:0.094720pt;}
.ls1d{letter-spacing:0.095616pt;}
.ls82{letter-spacing:0.096000pt;}
.ls16{letter-spacing:0.106240pt;}
.ls7b{letter-spacing:0.106667pt;}
.ls63{letter-spacing:0.120320pt;}
.ls5a{letter-spacing:0.122176pt;}
.ls34{letter-spacing:0.128000pt;}
.ls2d{letter-spacing:0.134400pt;}
.ls7d{letter-spacing:0.136320pt;}
.ls27{letter-spacing:0.138112pt;}
.ls73{letter-spacing:0.138667pt;}
.ls2{letter-spacing:0.158720pt;}
.ls5{letter-spacing:0.159360pt;}
.lsb{letter-spacing:0.159616pt;}
.ls8{letter-spacing:0.160000pt;}
.ls3b{letter-spacing:0.173440pt;}
.ls39{letter-spacing:0.185920pt;}
.ls81{letter-spacing:0.192000pt;}
.ls4{letter-spacing:0.207360pt;}
.ls77{letter-spacing:0.212480pt;}
.ls3{letter-spacing:0.225280pt;}
.ls19{letter-spacing:0.228416pt;}
.ls28{letter-spacing:0.231040pt;}
.ls18{letter-spacing:0.265600pt;}
.ls71{letter-spacing:0.270912pt;}
.ls7e{letter-spacing:0.288000pt;}
.ls54{letter-spacing:0.298667pt;}
.ls26{letter-spacing:0.318720pt;}
.lsa{letter-spacing:0.320000pt;}
.ls33{letter-spacing:0.327680pt;}
.ls3a{letter-spacing:0.330240pt;}
.ls30{letter-spacing:0.331520pt;}
.ls3d{letter-spacing:0.333440pt;}
.ls35{letter-spacing:0.355200pt;}
.ls49{letter-spacing:0.371840pt;}
.ls4f{letter-spacing:0.409024pt;}
.ls79{letter-spacing:0.414336pt;}
.ls4e{letter-spacing:0.426667pt;}
.ls7a{letter-spacing:0.478080pt;}
.ls9{letter-spacing:0.480000pt;}
.ls45{letter-spacing:0.501379pt;}
.ls1b{letter-spacing:0.531200pt;}
.ls70{letter-spacing:0.541824pt;}
.ls74{letter-spacing:0.580480pt;}
.ls11{letter-spacing:0.589632pt;}
.ls58{letter-spacing:0.592640pt;}
.ls36{letter-spacing:0.595200pt;}
.ls76{letter-spacing:0.637440pt;}
.ls40{letter-spacing:0.639360pt;}
.ls7{letter-spacing:0.640000pt;}
.lsd{letter-spacing:0.641792pt;}
.ls15{letter-spacing:0.690560pt;}
.ls1e{letter-spacing:0.738368pt;}
.ls5c{letter-spacing:0.743680pt;}
.ls64{letter-spacing:0.760320pt;}
.ls22{letter-spacing:0.796800pt;}
.ls7c{letter-spacing:0.800000pt;}
.ls48{letter-spacing:0.802112pt;}
.ls5e{letter-spacing:0.823680pt;}
.ls62{letter-spacing:0.871168pt;}
.ls1f{letter-spacing:0.903040pt;}
.ls46{letter-spacing:0.956160pt;}
.ls23{letter-spacing:0.960000pt;}
.ls4c{letter-spacing:0.961472pt;}
.ls65{letter-spacing:1.280000pt;}
.ls4b{letter-spacing:1.434240pt;}
.ls6{letter-spacing:1.440000pt;}
.ls72{letter-spacing:2.080000pt;}
.ls2e{letter-spacing:2.187520pt;}
.ls56{letter-spacing:2.240000pt;}
.ls55{letter-spacing:2.720000pt;}
.ls31{letter-spacing:2.827520pt;}
.ls57{letter-spacing:3.360000pt;}
.ls52{letter-spacing:4.000000pt;}
.ls6a{letter-spacing:4.106667pt;}
.ls2c{letter-spacing:4.313600pt;}
.ls6b{letter-spacing:4.640000pt;}
.ls2f{letter-spacing:4.953600pt;}
.ls4d{letter-spacing:5.280000pt;}
.ls6f{letter-spacing:5.920000pt;}
.ls53{letter-spacing:6.560000pt;}
.ls6c{letter-spacing:7.840000pt;}
.ls59{letter-spacing:8.480000pt;}
.ls38{letter-spacing:9.227520pt;}
.ls32{letter-spacing:10.400000pt;}
.ls6e{letter-spacing:11.040000pt;}
.ls69{letter-spacing:11.680000pt;}
.ls3c{letter-spacing:12.288000pt;}
.ls66{letter-spacing:12.320000pt;}
.ls6d{letter-spacing:14.240000pt;}
.ls75{letter-spacing:14.364160pt;}
.ls5d{letter-spacing:21.920000pt;}
.ls78{letter-spacing:23.200000pt;}
.ls29{letter-spacing:27.040000pt;}
.ls3e{letter-spacing:28.768000pt;}
.ls37{letter-spacing:40.912640pt;}
.ws4b{word-spacing:-53.120000pt;}
.ws54{word-spacing:-24.320000pt;}
.ws56{word-spacing:-23.760640pt;}
.ws5a{word-spacing:-19.840000pt;}
.wse{word-spacing:-16.000000pt;}
.ws2f{word-spacing:-15.936000pt;}
.ws74{word-spacing:-14.720000pt;}
.ws5e{word-spacing:-14.714240pt;}
.ws60{word-spacing:-14.241472pt;}
.ws5f{word-spacing:-14.236160pt;}
.ws63{word-spacing:-14.183040pt;}
.ws65{word-spacing:-14.076800pt;}
.ws44{word-spacing:-14.018368pt;}
.ws42{word-spacing:-13.970560pt;}
.ws39{word-spacing:-13.869632pt;}
.ws6f{word-spacing:-13.821824pt;}
.ws41{word-spacing:-13.811200pt;}
.ws73{word-spacing:-13.758080pt;}
.ws72{word-spacing:-13.694336pt;}
.ws61{word-spacing:-13.689024pt;}
.ws5d{word-spacing:-13.651840pt;}
.ws4e{word-spacing:-13.598720pt;}
.ws6c{word-spacing:-13.550912pt;}
.ws3f{word-spacing:-13.545600pt;}
.ws40{word-spacing:-13.508416pt;}
.ws6d{word-spacing:-13.465920pt;}
.ws46{word-spacing:-13.439360pt;}
.ws47{word-spacing:-13.418112pt;}
.ws71{word-spacing:-13.386240pt;}
.ws43{word-spacing:-13.375616pt;}
.ws3c{word-spacing:-13.327808pt;}
.ws3a{word-spacing:-13.280000pt;}
.ws3e{word-spacing:-13.232192pt;}
.ws62{word-spacing:-13.184384pt;}
.ws6e{word-spacing:-13.120640pt;}
.ws67{word-spacing:-13.094080pt;}
.ws70{word-spacing:-13.067520pt;}
.ws6a{word-spacing:-13.051584pt;}
.ws3d{word-spacing:-12.961280pt;}
.ws45{word-spacing:-12.913472pt;}
.ws69{word-spacing:-12.908160pt;}
.ws64{word-spacing:-12.870976pt;}
.ws38{word-spacing:-12.855040pt;}
.ws4d{word-spacing:-12.801920pt;}
.ws66{word-spacing:-12.695680pt;}
.ws6b{word-spacing:-12.690368pt;}
.ws78{word-spacing:-12.288000pt;}
.ws68{word-spacing:-12.270720pt;}
.ws77{word-spacing:-12.000000pt;}
.ws57{word-spacing:-11.872320pt;}
.ws4a{word-spacing:-11.697024pt;}
.ws4f{word-spacing:-11.686400pt;}
.ws76{word-spacing:-11.678400pt;}
.ws79{word-spacing:-11.664000pt;}
.ws58{word-spacing:-11.548288pt;}
.ws50{word-spacing:-11.484544pt;}
.ws37{word-spacing:-10.419840pt;}
.ws34{word-spacing:-9.439616pt;}
.ws35{word-spacing:-9.280000pt;}
.ws4c{word-spacing:-9.279360pt;}
.ws3b{word-spacing:-8.640000pt;}
.ws49{word-spacing:-8.166400pt;}
.ws75{word-spacing:-8.000000pt;}
.ws53{word-spacing:-7.906560pt;}
.ws52{word-spacing:-7.895424pt;}
.ws48{word-spacing:-7.200000pt;}
.ws36{word-spacing:-6.720000pt;}
.ws55{word-spacing:-6.080000pt;}
.ws2e{word-spacing:-0.536000pt;}
.ws30{word-spacing:-0.483200pt;}
.ws2c{word-spacing:-0.460800pt;}
.ws32{word-spacing:-0.375467pt;}
.ws31{word-spacing:-0.301867pt;}
.ws2d{word-spacing:-0.290667pt;}
.ws7d{word-spacing:-0.076800pt;}
.ws7c{word-spacing:-0.070400pt;}
.ws7a{word-spacing:-0.064000pt;}
.ws7b{word-spacing:-0.051200pt;}
.ws33{word-spacing:0.000000pt;}
.ws23{word-spacing:1.919467pt;}
.ws5c{word-spacing:2.880000pt;}
.ws17{word-spacing:3.250133pt;}
.ws15{word-spacing:3.380267pt;}
.ws16{word-spacing:3.388267pt;}
.ws5b{word-spacing:3.520000pt;}
.ws1e{word-spacing:5.342933pt;}
.ws1c{word-spacing:5.469867pt;}
.ws28{word-spacing:5.472533pt;}
.ws24{word-spacing:5.528533pt;}
.ws1f{word-spacing:5.534933pt;}
.ws1d{word-spacing:5.544000pt;}
.ws25{word-spacing:5.653867pt;}
.ws26{word-spacing:5.654400pt;}
.ws27{word-spacing:5.664533pt;}
.ws8{word-spacing:7.643733pt;}
.wsa{word-spacing:7.696533pt;}
.ws9{word-spacing:7.984000pt;}
.wsb{word-spacing:9.008000pt;}
.ws21{word-spacing:10.454400pt;}
.ws22{word-spacing:10.570667pt;}
.ws20{word-spacing:10.592533pt;}
.ws11{word-spacing:12.784533pt;}
.ws14{word-spacing:12.881600pt;}
.ws13{word-spacing:12.945600pt;}
.wsf{word-spacing:12.946133pt;}
.ws12{word-spacing:12.965333pt;}
.ws10{word-spacing:13.052800pt;}
.ws2b{word-spacing:13.622933pt;}
.ws29{word-spacing:13.697600pt;}
.ws2a{word-spacing:13.760533pt;}
.ws5{word-spacing:18.463467pt;}
.ws3{word-spacing:18.485333pt;}
.ws4{word-spacing:18.600533pt;}
.ws7{word-spacing:22.574933pt;}
.ws51{word-spacing:26.072960pt;}
.ws2{word-spacing:27.974933pt;}
.ws0{word-spacing:28.104000pt;}
.ws1{word-spacing:28.112533pt;}
.ws1b{word-spacing:29.920533pt;}
.ws1a{word-spacing:29.921067pt;}
.ws18{word-spacing:30.081067pt;}
.ws19{word-spacing:30.101867pt;}
.ws59{word-spacing:41.820800pt;}
.ws6{word-spacing:46.820800pt;}
.wsd{word-spacing:477.215467pt;}
.wsc{word-spacing:512.735467pt;}
._9{margin-left:-8.310400pt;}
._0{margin-left:-4.990933pt;}
._1{margin-left:-2.571733pt;}
._2{margin-left:-0.889067pt;}
._a{width:1.139456pt;}
._b{width:2.319616pt;}
._c{width:3.265835pt;}
._d{width:4.408960pt;}
._e{width:5.991211pt;}
._14{width:7.027840pt;}
._11{width:8.293099pt;}
._15{width:9.953920pt;}
._f{width:11.134720pt;}
._16{width:12.041280pt;}
._19{width:13.130475pt;}
._12{width:14.186240pt;}
._13{width:15.139200pt;}
._1c{width:16.253568pt;}
._1a{width:17.157760pt;}
._1d{width:18.374101pt;}
._10{width:19.338667pt;}
._1e{width:20.666880pt;}
._1f{width:22.389504pt;}
._3{width:24.031467pt;}
._18{width:26.543360pt;}
._17{width:27.555947pt;}
._22{width:29.428480pt;}
._24{width:31.097387pt;}
._23{width:32.020267pt;}
._20{width:37.822080pt;}
._21{width:38.817152pt;}
._1b{width:136.072960pt;}
._8{width:242.655467pt;}
._6{width:246.175467pt;}
._7{width:278.111467pt;}
._5{width:288.478400pt;}
._4{width:347.551467pt;}
._25{width:754.858667pt;}
.fsb{font-size:24.320000pt;}
.fs5{font-size:26.880000pt;}
.fsa{font-size:32.000000pt;}
.fs7{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fsd{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fsc{font-size:56.320000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs9{font-size:72.533333pt;}
.fs0{font-size:84.000000pt;}
.fs8{font-size:256.000595pt;}
.y0{bottom:0.000000pt;}
.y1d5{bottom:2.560000pt;}
.y1d7{bottom:2.880000pt;}
.y1de{bottom:3.040000pt;}
.y20{bottom:4.160000pt;}
.y1f3{bottom:16.000000pt;}
.y1e7{bottom:16.320000pt;}
.y1e5{bottom:16.480000pt;}
.y1d9{bottom:16.640000pt;}
.y1e0{bottom:16.680000pt;}
.y1db{bottom:16.800000pt;}
.y1f{bottom:50.080000pt;}
.y1e{bottom:52.320000pt;}
.yfe{bottom:79.200000pt;}
.y8f{bottom:81.760000pt;}
.y94{bottom:82.080000pt;}
.yc9{bottom:82.560000pt;}
.y116{bottom:82.880000pt;}
.y57{bottom:85.600000pt;}
.y1b8{bottom:92.960000pt;}
.y1cf{bottom:93.440000pt;}
.y171{bottom:93.600000pt;}
.y182{bottom:95.680000pt;}
.y147{bottom:96.800000pt;}
.yfd{bottom:96.960000pt;}
.y8e{bottom:99.360000pt;}
.y93{bottom:99.680000pt;}
.yc8{bottom:100.320000pt;}
.y115{bottom:101.760000pt;}
.y56{bottom:103.200000pt;}
.y1c{bottom:110.201600pt;}
.y1b7{bottom:112.000000pt;}
.y170{bottom:112.800000pt;}
.y1ce{bottom:113.920000pt;}
.yfc{bottom:114.560000pt;}
.y181{bottom:114.720000pt;}
.y146{bottom:115.840000pt;}
.y8d{bottom:117.280000pt;}
.yc7{bottom:120.640000pt;}
.y55{bottom:120.800000pt;}
.y114{bottom:120.960000pt;}
.y103{bottom:123.360000pt;}
.y1b6{bottom:131.200000pt;}
.y16f{bottom:132.000000pt;}
.yfb{bottom:132.160000pt;}
.y1cd{bottom:133.120000pt;}
.y180{bottom:133.920000pt;}
.y8c{bottom:134.880000pt;}
.y145{bottom:135.040000pt;}
.y54{bottom:138.080000pt;}
.yc6{bottom:140.320000pt;}
.y113{bottom:140.480000pt;}
.yc5{bottom:149.280000pt;}
.yfa{bottom:149.760000pt;}
.y1b5{bottom:150.400000pt;}
.y16e{bottom:150.880000pt;}
.y109{bottom:152.160000pt;}
.y1cc{bottom:152.320000pt;}
.y8b{bottom:152.480000pt;}
.y17f{bottom:153.120000pt;}
.y144{bottom:153.920000pt;}
.y176{bottom:154.240000pt;}
.y53{bottom:156.000000pt;}
.y112{bottom:159.680000pt;}
.yf9{bottom:167.360000pt;}
.y1b4{bottom:169.600000pt;}
.y8a{bottom:170.240000pt;}
.y1cb{bottom:171.360000pt;}
.y1b{bottom:171.401600pt;}
.y17e{bottom:172.000000pt;}
.y188{bottom:172.320000pt;}
.y143{bottom:173.120000pt;}
.y175{bottom:173.440000pt;}
.y52{bottom:173.760000pt;}
.y111{bottom:178.720000pt;}
.yc4{bottom:179.360000pt;}
.yf8{bottom:185.120000pt;}
.y89{bottom:187.840000pt;}
.y1b3{bottom:188.800000pt;}
.y16d{bottom:189.440000pt;}
.y1ca{bottom:190.560000pt;}
.y1a{bottom:190.601600pt;}
.y51{bottom:191.360000pt;}
.y17d{bottom:191.520000pt;}
.y187{bottom:192.000000pt;}
.y142{bottom:192.640000pt;}
.yc3{bottom:197.120000pt;}
.y110{bottom:197.920000pt;}
.yf7{bottom:202.720000pt;}
.y21a{bottom:202.986667pt;}
.y88{bottom:205.440000pt;}
.y1b2{bottom:207.840000pt;}
.y16c{bottom:208.640000pt;}
.y50{bottom:208.960000pt;}
.y1c9{bottom:209.760000pt;}
.y19{bottom:209.801600pt;}
.y17c{bottom:210.586667pt;}
.y141{bottom:211.706667pt;}
.yc2{bottom:214.746667pt;}
.y10f{bottom:217.146667pt;}
.yf6{bottom:220.346667pt;}
.y219{bottom:221.866667pt;}
.y87{bottom:223.066667pt;}
.y4f{bottom:226.586667pt;}
.y1b1{bottom:227.066667pt;}
.y16b{bottom:227.866667pt;}
.y1c8{bottom:228.986667pt;}
.y18{bottom:229.001600pt;}
.y17b{bottom:229.786667pt;}
.y140{bottom:230.906667pt;}
.y10e{bottom:236.346667pt;}
.y211{bottom:237.866667pt;}
.yf5{bottom:237.946667pt;}
.yc1{bottom:238.586667pt;}
.y106{bottom:240.346667pt;}
.y86{bottom:240.666667pt;}
.y218{bottom:240.746667pt;}
.y4e{bottom:244.186667pt;}
.yc0{bottom:245.306667pt;}
.y1b0{bottom:246.266667pt;}
.y16a{bottom:246.906667pt;}
.y1c7{bottom:248.026667pt;}
.y17{bottom:248.201600pt;}
.y17a{bottom:248.986667pt;}
.y13f{bottom:249.786667pt;}
.y174{bottom:250.106667pt;}
.y10d{bottom:255.386667pt;}
.yf4{bottom:255.546667pt;}
.y217{bottom:255.786667pt;}
.y210{bottom:256.746667pt;}
.y85{bottom:258.426667pt;}
.y4d{bottom:261.946667pt;}
.y1af{bottom:265.466667pt;}
.y169{bottom:266.106667pt;}
.y1c6{bottom:267.226667pt;}
.y16{bottom:267.401600pt;}
.y179{bottom:268.666667pt;}
.y18a{bottom:268.986667pt;}
.y13e{bottom:269.306667pt;}
.yf3{bottom:273.306667pt;}
.y10c{bottom:274.586667pt;}
.y20a{bottom:275.306667pt;}
.y108{bottom:275.706667pt;}
.y84{bottom:276.026667pt;}
.ybf{bottom:276.186667pt;}
.y4c{bottom:279.546667pt;}
.y1ae{bottom:284.666667pt;}
.y168{bottom:285.306667pt;}
.y1c5{bottom:286.426667pt;}
.y15{bottom:286.601600pt;}
.y178{bottom:288.026667pt;}
.y13d{bottom:288.346667pt;}
.y20f{bottom:290.666667pt;}
.yf2{bottom:290.906667pt;}
.y10b{bottom:293.466667pt;}
.y83{bottom:293.626667pt;}
.ybe{bottom:293.786667pt;}
.y209{bottom:294.186667pt;}
.y4b{bottom:297.146667pt;}
.y1ad{bottom:303.706667pt;}
.y167{bottom:304.506667pt;}
.y1c4{bottom:305.626667pt;}
.y13c{bottom:307.546667pt;}
.yf1{bottom:308.506667pt;}
.y10a{bottom:310.906667pt;}
.y82{bottom:311.226667pt;}
.ybd{bottom:311.386667pt;}
.y208{bottom:312.746667pt;}
.y4a{bottom:314.746667pt;}
.y1ac{bottom:322.906667pt;}
.y166{bottom:323.706667pt;}
.y1c3{bottom:324.826667pt;}
.yf0{bottom:326.106667pt;}
.y13b{bottom:326.746667pt;}
.y81{bottom:328.826667pt;}
.ybc{bottom:328.986667pt;}
.y207{bottom:331.626667pt;}
.y49{bottom:332.346667pt;}
.y1ab{bottom:342.106667pt;}
.y165{bottom:342.746667pt;}
.yef{bottom:343.706667pt;}
.y1c2{bottom:343.866667pt;}
.y13a{bottom:345.946667pt;}
.y80{bottom:346.586667pt;}
.y206{bottom:346.666667pt;}
.y14{bottom:347.801600pt;}
.y48{bottom:350.106667pt;}
.y58{bottom:359.746667pt;}
.y1aa{bottom:361.306667pt;}
.yee{bottom:361.466667pt;}
.y164{bottom:361.946667pt;}
.y1c1{bottom:363.066667pt;}
.yff{bottom:363.866667pt;}
.y7f{bottom:364.186667pt;}
.ybb{bottom:364.346667pt;}
.y139{bottom:365.146667pt;}
.y13{bottom:367.001600pt;}
.y47{bottom:367.706667pt;}
.y200{bottom:376.746667pt;}
.yed{bottom:379.066667pt;}
.y1a9{bottom:380.346667pt;}
.y163{bottom:381.146667pt;}
.y102{bottom:381.466667pt;}
.y7e{bottom:381.786667pt;}
.yba{bottom:381.946667pt;}
.y1c0{bottom:382.266667pt;}
.y138{bottom:384.186667pt;}
.y46{bottom:385.306667pt;}
.y12{bottom:386.201600pt;}
.y1ff{bottom:395.306667pt;}
.yec{bottom:396.666667pt;}
.yb9{bottom:398.746667pt;}
.y7d{bottom:399.386667pt;}
.y1a8{bottom:399.546667pt;}
.y162{bottom:400.346667pt;}
.y1bf{bottom:401.466667pt;}
.y45{bottom:402.906667pt;}
.y137{bottom:403.386667pt;}
.y11{bottom:405.401600pt;}
.yb8{bottom:405.466667pt;}
.y1fe{bottom:414.186667pt;}
.yeb{bottom:414.306667pt;}
.y101{bottom:416.706667pt;}
.y7c{bottom:417.026667pt;}
.y1a7{bottom:418.786667pt;}
.y161{bottom:419.426667pt;}
.y44{bottom:420.546667pt;}
.y1fb{bottom:421.546667pt;}
.y136{bottom:422.626667pt;}
.yb7{bottom:427.106667pt;}
.yea{bottom:431.906667pt;}
.y205{bottom:432.426667pt;}
.y1fd{bottom:433.066667pt;}
.y7b{bottom:434.786667pt;}
.y1a6{bottom:437.986667pt;}
.y43{bottom:438.306667pt;}
.y160{bottom:438.626667pt;}
.y1be{bottom:439.746667pt;}
.y1fa{bottom:440.426667pt;}
.y186{bottom:441.506667pt;}
.y135{bottom:441.826667pt;}
.yb6{bottom:444.706667pt;}
.y1fc{bottom:448.106667pt;}
.ye9{bottom:449.666667pt;}
.y204{bottom:450.986667pt;}
.y7a{bottom:452.386667pt;}
.y42{bottom:455.906667pt;}
.y10{bottom:456.601600pt;}
.y1a5{bottom:457.186667pt;}
.y15f{bottom:457.826667pt;}
.y1bd{bottom:458.946667pt;}
.y1f9{bottom:459.306667pt;}
.y134{bottom:461.026667pt;}
.yb5{bottom:462.306667pt;}
.ye8{bottom:467.266667pt;}
.y203{bottom:469.866667pt;}
.y79{bottom:469.986667pt;}
.y41{bottom:473.506667pt;}
.y1f8{bottom:474.346667pt;}
.y1a4{bottom:476.226667pt;}
.y15e{bottom:477.026667pt;}
.y1bc{bottom:478.146667pt;}
.yb4{bottom:479.906667pt;}
.y133{bottom:480.066667pt;}
.ye7{bottom:484.866667pt;}
.yf{bottom:485.801600pt;}
.y78{bottom:487.586667pt;}
.y202{bottom:488.746667pt;}
.y40{bottom:491.106667pt;}
.y1a3{bottom:495.426667pt;}
.y15d{bottom:496.226667pt;}
.y1bb{bottom:497.346667pt;}
.yb3{bottom:497.666667pt;}
.y132{bottom:499.266667pt;}
.ye6{bottom:502.466667pt;}
.y201{bottom:503.786667pt;}
.y77{bottom:505.186667pt;}
.y3f{bottom:508.706667pt;}
.y1a2{bottom:514.626667pt;}
.ye{bottom:515.001600pt;}
.yb2{bottom:515.266667pt;}
.y131{bottom:518.466667pt;}
.ye5{bottom:520.066667pt;}
.y76{bottom:522.946667pt;}
.y3e{bottom:526.466667pt;}
.yb1{bottom:532.866667pt;}
.y1a1{bottom:533.826667pt;}
.y15c{bottom:534.466667pt;}
.y130{bottom:537.666667pt;}
.ye4{bottom:537.826667pt;}
.y92{bottom:540.226667pt;}
.y75{bottom:540.546667pt;}
.y3d{bottom:544.066667pt;}
.yb0{bottom:550.466667pt;}
.y1a0{bottom:552.866667pt;}
.y15b{bottom:553.666667pt;}
.ye3{bottom:555.426667pt;}
.y12f{bottom:556.706667pt;}
.y74{bottom:558.146667pt;}
.y1eb{bottom:559.426667pt;}
.yd{bottom:561.201600pt;}
.y3c{bottom:561.666667pt;}
.yaf{bottom:568.066667pt;}
.y19f{bottom:572.066667pt;}
.y15a{bottom:572.866667pt;}
.ye2{bottom:573.026667pt;}
.y1ea{bottom:574.306667pt;}
.y91{bottom:575.426667pt;}
.y73{bottom:575.746667pt;}
.y12e{bottom:575.906667pt;}
.y3b{bottom:579.266667pt;}
.yae{bottom:585.826667pt;}
.y1e9{bottom:587.426667pt;}
.ye1{bottom:590.626667pt;}
.y19e{bottom:591.266667pt;}
.y159{bottom:591.906667pt;}
.y107{bottom:593.026667pt;}
.y72{bottom:593.346667pt;}
.y12d{bottom:595.106667pt;}
.y1e8{bottom:596.546667pt;}
.y3a{bottom:596.866667pt;}
.yad{bottom:603.426667pt;}
.yc{bottom:607.401600pt;}
.ye0{bottom:607.906667pt;}
.y19d{bottom:610.466667pt;}
.y1f7{bottom:610.986667pt;}
.y71{bottom:611.106667pt;}
.y216{bottom:613.866667pt;}
.y12c{bottom:614.306667pt;}
.y39{bottom:614.626667pt;}
.yac{bottom:621.053333pt;}
.y1e6{bottom:624.253333pt;}
.ydf{bottom:626.013333pt;}
.y70{bottom:628.733333pt;}
.y19c{bottom:629.693333pt;}
.y1f6{bottom:629.866667pt;}
.y158{bottom:630.333333pt;}
.y38{bottom:632.253333pt;}
.y215{bottom:632.746667pt;}
.y12b{bottom:633.533333pt;}
.y20e{bottom:635.306667pt;}
.yb{bottom:636.601600pt;}
.yab{bottom:638.653333pt;}
.yde{bottom:643.293333pt;}
.y6f{bottom:646.333333pt;}
.y19b{bottom:648.733333pt;}
.y1f5{bottom:648.746667pt;}
.y157{bottom:649.533333pt;}
.y37{bottom:649.853333pt;}
.y214{bottom:651.626667pt;}
.y1e4{bottom:651.773333pt;}
.y12a{bottom:652.573333pt;}
.y20d{bottom:654.186667pt;}
.yaa{bottom:656.253333pt;}
.ydd{bottom:661.213333pt;}
.y1f4{bottom:663.786667pt;}
.y6e{bottom:663.933333pt;}
.ya{bottom:665.801600pt;}
.y36{bottom:667.453333pt;}
.y19a{bottom:667.933333pt;}
.y156{bottom:668.733333pt;}
.y213{bottom:670.186667pt;}
.y129{bottom:671.773333pt;}
.y20c{bottom:673.066667pt;}
.ya9{bottom:674.013333pt;}
.ydc{bottom:678.813333pt;}
.y1e3{bottom:679.453333pt;}
.y6d{bottom:681.533333pt;}
.y35{bottom:685.053333pt;}
.y212{bottom:685.546667pt;}
.y199{bottom:687.133333pt;}
.y155{bottom:687.773333pt;}
.y20b{bottom:688.106667pt;}
.y128{bottom:690.973333pt;}
.ya8{bottom:691.613333pt;}
.ydb{bottom:696.413333pt;}
.y6c{bottom:699.293333pt;}
.y34{bottom:703.133333pt;}
.y198{bottom:706.333333pt;}
.y154{bottom:706.973333pt;}
.y9{bottom:708.401600pt;}
.ya7{bottom:709.213333pt;}
.y173{bottom:709.853333pt;}
.y127{bottom:710.173333pt;}
.yda{bottom:714.173333pt;}
.y6b{bottom:716.893333pt;}
.y33{bottom:722.173333pt;}
.y197{bottom:725.373333pt;}
.y153{bottom:726.173333pt;}
.y8{bottom:726.401600pt;}
.ya6{bottom:726.813333pt;}
.y126{bottom:729.213333pt;}
.yd9{bottom:731.773333pt;}
.y6a{bottom:734.493333pt;}
.y1e2{bottom:734.653333pt;}
.y32{bottom:738.653333pt;}
.y21e{bottom:739.306667pt;}
.y7{bottom:744.401600pt;}
.ya5{bottom:744.413333pt;}
.y196{bottom:744.573333pt;}
.y152{bottom:745.373333pt;}
.y125{bottom:748.413333pt;}
.yd8{bottom:749.373333pt;}
.y69{bottom:752.093333pt;}
.y31{bottom:757.373333pt;}
.y21d{bottom:758.186667pt;}
.ya4{bottom:762.173333pt;}
.y6{bottom:762.401600pt;}
.y195{bottom:763.773333pt;}
.y151{bottom:764.573333pt;}
.y30{bottom:766.813333pt;}
.yd7{bottom:766.973333pt;}
.y177{bottom:767.293333pt;}
.y124{bottom:767.613333pt;}
.y68{bottom:769.693333pt;}
.y21c{bottom:777.066667pt;}
.ya3{bottom:779.773333pt;}
.y5{bottom:780.401600pt;}
.y194{bottom:782.973333pt;}
.y150{bottom:783.613333pt;}
.yd6{bottom:784.573333pt;}
.y2f{bottom:785.533333pt;}
.y185{bottom:786.493333pt;}
.y123{bottom:786.813333pt;}
.y67{bottom:787.453333pt;}
.y1e1{bottom:789.853333pt;}
.y21b{bottom:792.106667pt;}
.ya2{bottom:797.373333pt;}
.y2e{bottom:799.773333pt;}
.y193{bottom:802.173333pt;}
.yd5{bottom:802.333333pt;}
.y14f{bottom:802.813333pt;}
.y1df{bottom:803.613333pt;}
.y66{bottom:805.053333pt;}
.y1ba{bottom:805.693333pt;}
.y122{bottom:806.013333pt;}
.y2d{bottom:813.853333pt;}
.ya1{bottom:814.973333pt;}
.yd4{bottom:819.973333pt;}
.y192{bottom:821.253333pt;}
.y65{bottom:822.693333pt;}
.y14e{bottom:822.853333pt;}
.y189{bottom:824.773333pt;}
.y121{bottom:825.093333pt;}
.y2c{bottom:827.973333pt;}
.y1dd{bottom:831.173333pt;}
.ya0{bottom:832.613333pt;}
.yd3{bottom:837.573333pt;}
.y64{bottom:840.293333pt;}
.y191{bottom:840.453333pt;}
.y2b{bottom:842.053333pt;}
.y14d{bottom:842.373333pt;}
.y4{bottom:842.401600pt;}
.y184{bottom:843.973333pt;}
.y120{bottom:844.293333pt;}
.y9f{bottom:850.373333pt;}
.yd2{bottom:855.173333pt;}
.y2a{bottom:856.133333pt;}
.y63{bottom:857.893333pt;}
.y1dc{bottom:858.853333pt;}
.y190{bottom:859.653333pt;}
.y3{bottom:860.401600pt;}
.y14c{bottom:861.413333pt;}
.y11f{bottom:863.493333pt;}
.y9e{bottom:868.133333pt;}
.y29{bottom:870.213333pt;}
.y1f2{bottom:871.493333pt;}
.yd1{bottom:872.773333pt;}
.y105{bottom:875.333333pt;}
.y62{bottom:875.653333pt;}
.y2{bottom:878.401600pt;}
.y18f{bottom:878.853333pt;}
.y14b{bottom:880.613333pt;}
.y11e{bottom:882.693333pt;}
.y28{bottom:884.453333pt;}
.y1da{bottom:886.373333pt;}
.y9d{bottom:886.693333pt;}
.yd0{bottom:890.533333pt;}
.y61{bottom:893.253333pt;}
.y18e{bottom:898.213333pt;}
.y1f1{bottom:898.853333pt;}
.y14a{bottom:899.813333pt;}
.y183{bottom:901.413333pt;}
.y11d{bottom:901.733333pt;}
.y27{bottom:902.373333pt;}
.y9c{bottom:903.493333pt;}
.ycf{bottom:905.573333pt;}
.y9b{bottom:910.213333pt;}
.y60{bottom:910.853333pt;}
.y1d8{bottom:914.053333pt;}
.yce{bottom:914.533333pt;}
.y26{bottom:915.013333pt;}
.y104{bottom:916.933333pt;}
.y149{bottom:919.013333pt;}
.y11c{bottom:920.613333pt;}
.y172{bottom:920.933333pt;}
.y1f0{bottom:926.213333pt;}
.y100{bottom:928.133333pt;}
.y5f{bottom:928.453333pt;}
.y9a{bottom:933.413333pt;}
.y25{bottom:934.373333pt;}
.y18d{bottom:938.213333pt;}
.y11b{bottom:939.813333pt;}
.y148{bottom:940.133333pt;}
.y1d6{bottom:941.573333pt;}
.y1{bottom:942.314533pt;}
.ycd{bottom:943.493333pt;}
.y5e{bottom:946.053333pt;}
.y99{bottom:951.173333pt;}
.y1ef{bottom:953.573333pt;}
.y24{bottom:953.733333pt;}
.y1d4{bottom:956.133333pt;}
.y18c{bottom:957.413333pt;}
.y1b9{bottom:959.013333pt;}
.y11a{bottom:959.333333pt;}
.ycc{bottom:961.093333pt;}
.y5d{bottom:963.813333pt;}
.y98{bottom:969.733333pt;}
.y23{bottom:972.933333pt;}
.y1d3{bottom:974.053333pt;}
.y18b{bottom:977.253333pt;}
.y119{bottom:978.533333pt;}
.ycb{bottom:978.693333pt;}
.y1ee{bottom:981.093333pt;}
.y5c{bottom:981.413333pt;}
.y97{bottom:986.533333pt;}
.yca{bottom:987.653333pt;}
.y1d2{bottom:990.373333pt;}
.y22{bottom:992.773333pt;}
.y96{bottom:993.253333pt;}
.y118{bottom:997.573333pt;}
.y95{bottom:998.693333pt;}
.y5b{bottom:999.013333pt;}
.y1ed{bottom:999.813333pt;}
.y1d1{bottom:1004.133333pt;}
.y21{bottom:1013.893333pt;}
.y1ec{bottom:1015.173333pt;}
.y90{bottom:1016.293333pt;}
.y5a{bottom:1016.613333pt;}
.y117{bottom:1016.773333pt;}
.y1d0{bottom:1017.893333pt;}
.y59{bottom:1063.360000pt;}
.y1d{bottom:1110.080000pt;}
.h27{height:13.746667pt;}
.h2e{height:13.760000pt;}
.h7{height:17.278667pt;}
.hc{height:18.440625pt;}
.h22{height:24.013125pt;}
.hb{height:25.791875pt;}
.h29{height:27.506667pt;}
.h30{height:27.520000pt;}
.h2d{height:27.540000pt;}
.h2a{height:27.666667pt;}
.h2f{height:27.680000pt;}
.h31{height:27.706667pt;}
.hd{height:29.417187pt;}
.he{height:29.961562pt;}
.h28{height:32.929688pt;}
.h26{height:33.351562pt;}
.h15{height:36.442187pt;}
.h6{height:36.909063pt;}
.h11{height:37.116563pt;}
.h23{height:39.132500pt;}
.h5{height:40.911250pt;}
.h2c{height:43.031250pt;}
.h20{height:43.108125pt;}
.h1f{height:43.782500pt;}
.h2{height:44.468750pt;}
.h25{height:44.671875pt;}
.h35{height:44.718750pt;}
.h24{height:47.180312pt;}
.hf{height:47.621250pt;}
.h10{height:48.333125pt;}
.h21{height:48.439792pt;}
.h12{height:49.436875pt;}
.h2b{height:50.901250pt;}
.ha{height:52.671875pt;}
.h14{height:52.735417pt;}
.h32{height:52.785000pt;}
.h9{height:54.797500pt;}
.h1{height:58.365234pt;}
.h8{height:59.562500pt;}
.h19{height:63.789063pt;}
.h1e{height:82.922188pt;}
.h1c{height:85.482187pt;}
.h18{height:89.305625pt;}
.h16{height:95.393125pt;}
.h17{height:109.802187pt;}
.h1a{height:116.185625pt;}
.h1d{height:123.882187pt;}
.h1b{height:126.442187pt;}
.h13{height:186.250433pt;}
.h0{height:1056.000000pt;}
.h34{height:1090.666667pt;}
.h33{height:1122.666667pt;}
.h4{height:1123.333333pt;}
.h3{height:1123.360000pt;}
.w3{width:21.440000pt;}
.w4{width:82.750667pt;}
.wa{width:92.190667pt;}
.w8{width:113.426667pt;}
.w7{width:115.218667pt;}
.w6{width:115.232000pt;}
.wd{width:122.738667pt;}
.wb{width:122.898667pt;}
.wc{width:122.912000pt;}
.w5{width:147.533333pt;}
.w9{width:574.200000pt;}
.we{width:761.333333pt;}
.w1{width:793.280000pt;}
.w2{width:793.333333pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x4{left:4.000000pt;}
.x27{left:7.070667pt;}
.x2f{left:12.670667pt;}
.x20{left:16.670667pt;}
.x38{left:19.680000pt;}
.x30{left:22.706667pt;}
.x36{left:25.586667pt;}
.x37{left:27.390667pt;}
.x2b{left:28.626667pt;}
.x33{left:29.600000pt;}
.x35{left:32.030667pt;}
.x25{left:33.106667pt;}
.x23{left:35.360000pt;}
.x28{left:37.950667pt;}
.x31{left:39.520000pt;}
.x34{left:42.560000pt;}
.x32{left:44.946667pt;}
.x2e{left:47.390667pt;}
.x2a{left:50.866667pt;}
.x21{left:53.906667pt;}
.x39{left:55.710667pt;}
.x3a{left:58.386667pt;}
.x1e{left:66.080000pt;}
.x1f{left:68.481333pt;}
.x2{left:75.552000pt;}
.x9{left:76.672000pt;}
.x3c{left:80.000000pt;}
.xd{left:94.432000pt;}
.x1a{left:96.512000pt;}
.x10{left:99.552000pt;}
.x12{left:100.512000pt;}
.x5{left:110.112000pt;}
.x8{left:114.432000pt;}
.x1{left:120.000000pt;}
.x11{left:123.552000pt;}
.xa{left:136.986667pt;}
.x1d{left:147.706667pt;}
.x15{left:151.066667pt;}
.x13{left:159.226667pt;}
.x29{left:160.680000pt;}
.x18{left:187.546667pt;}
.x17{left:196.666667pt;}
.x16{left:201.466667pt;}
.x6{left:226.626667pt;}
.x1b{left:240.706667pt;}
.x14{left:247.586667pt;}
.xb{left:254.040000pt;}
.xf{left:278.306667pt;}
.xe{left:281.186667pt;}
.x2c{left:283.586667pt;}
.x22{left:298.786667pt;}
.x19{left:299.906667pt;}
.xc{left:320.573333pt;}
.x7{left:396.573333pt;}
.x2d{left:406.506667pt;}
.x24{left:414.026667pt;}
.x26{left:529.253333pt;}
.x3d{left:536.000000pt;}
.x1c{left:550.533333pt;}
.x3b{left:681.066400pt;}
.x3{left:700.640000pt;}
}




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