
    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_d7e11b8f7faffa843473084b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.946289;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_cbf6e8c27f4b821251bb066b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.946289;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_3a36d818ccd31c77ffba7ba5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_51e3fb88fe7d104fc3b65f60.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_4600c7895e436119e2f0f92c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_67827c22f7dbc380c76c6285.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_7241fcfee4ce9191386e6148.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.719238;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_81154591fa442295624837fb.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.973000;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_f809a0d83d21ef8e38784a64.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.923500;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_973e0828714bc92680889da7.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_d6b27f304ecd1c6c3bf037b6.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.946289;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_cbf6e8c27f4b821251bb066b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.946289;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_3a36d818ccd31c77ffba7ba5.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_053e009546b550e56344a847.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_eaf6ede58296103c1592c753.woff2')format("woff");}.fff{font-family:fff;line-height:0.970000;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_d6b27f304ecd1c6c3bf037b6.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.946289;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:ff11;src:url('chunks/assets/font_cbf6e8c27f4b821251bb066b.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.946289;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:ff12;src:url('chunks/assets/font_3a36d818ccd31c77ffba7ba5.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_053e009546b550e56344a847.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_b3173f8a9f7f2669a78fc68e.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.947000;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:ff15;src:url('chunks/assets/font_cbf6e8c27f4b821251bb066b.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.946289;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:ff16;src:url('chunks/assets/font_3a36d818ccd31c77ffba7ba5.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_053e009546b550e56344a847.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_cbf6e8c27f4b821251bb066b.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.946289;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:ff19;src:url('chunks/assets/font_3a36d818ccd31c77ffba7ba5.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_053e009546b550e56344a847.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_22d51395ecdbf1490b3d0504.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.897000;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:ff1c;src:url('chunks/assets/font_cab8df6987712fe2e4ba3ecc.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.750000;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);}
.v4{vertical-align:-18.360000px;}
.v3{vertical-align:-17.340000px;}
.v6{vertical-align:-10.811400px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:5.994000px;}
.v2{vertical-align:18.192000px;}
.v1{vertical-align:20.400000px;}
.ls8f{letter-spacing:-3.420000px;}
.ls90{letter-spacing:-1.755000px;}
.ls58{letter-spacing:-1.404000px;}
.ls85{letter-spacing:-1.350000px;}
.ls87{letter-spacing:-1.305000px;}
.ls9e{letter-spacing:-1.080000px;}
.ls43{letter-spacing:-1.026000px;}
.ls8a{letter-spacing:-0.990000px;}
.ls74{letter-spacing:-0.918000px;}
.ls9f{letter-spacing:-0.900000px;}
.ls8e{letter-spacing:-0.855000px;}
.ls80{letter-spacing:-0.765000px;}
.ls8d{letter-spacing:-0.720000px;}
.ls47{letter-spacing:-0.648000px;}
.ls8c{letter-spacing:-0.585000px;}
.ls60{letter-spacing:-0.540000px;}
.ls83{letter-spacing:-0.495000px;}
.ls39{letter-spacing:-0.486000px;}
.ls91{letter-spacing:-0.450000px;}
.ls9d{letter-spacing:-0.360000px;}
.ls3a{letter-spacing:-0.315900px;}
.ls88{letter-spacing:-0.315000px;}
.ls45{letter-spacing:-0.270000px;}
.ls42{letter-spacing:-0.240000px;}
.ls1c{letter-spacing:-0.216000px;}
.ls5b{letter-spacing:-0.180000px;}
.ls65{letter-spacing:-0.175500px;}
.ls5a{letter-spacing:-0.162000px;}
.ls3b{letter-spacing:-0.140400px;}
.ls81{letter-spacing:-0.135000px;}
.ls1f{letter-spacing:-0.108000px;}
.ls62{letter-spacing:-0.105300px;}
.ls22{letter-spacing:-0.102000px;}
.ls84{letter-spacing:-0.090000px;}
.ls5c{letter-spacing:-0.070200px;}
.ls1e{letter-spacing:-0.054000px;}
.ls23{letter-spacing:-0.051000px;}
.ls82{letter-spacing:-0.045000px;}
.ls3d{letter-spacing:-0.035100px;}
.ls1a{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.001800px;}
.ls6b{letter-spacing:0.012900px;}
.ls3{letter-spacing:0.013200px;}
.ls2{letter-spacing:0.013800px;}
.ls66{letter-spacing:0.035100px;}
.ls10{letter-spacing:0.038850px;}
.ls32{letter-spacing:0.043200px;}
.ls33{letter-spacing:0.054000px;}
.ls6f{letter-spacing:0.060000px;}
.ls44{letter-spacing:0.070200px;}
.ls89{letter-spacing:0.090000px;}
.ls5{letter-spacing:0.097200px;}
.ls21{letter-spacing:0.102000px;}
.ls55{letter-spacing:0.102600px;}
.ls56{letter-spacing:0.105300px;}
.lsd{letter-spacing:0.108000px;}
.ls18{letter-spacing:0.116700px;}
.ls6e{letter-spacing:0.120000px;}
.lsc{letter-spacing:0.121800px;}
.ls38{letter-spacing:0.135000px;}
.ls61{letter-spacing:0.136200px;}
.ls3c{letter-spacing:0.140400px;}
.ls35{letter-spacing:0.162000px;}
.ls2d{letter-spacing:0.175500px;}
.ls7{letter-spacing:0.176400px;}
.ls92{letter-spacing:0.180000px;}
.ls34{letter-spacing:0.194400px;}
.ls17{letter-spacing:0.204000px;}
.lse{letter-spacing:0.210600px;}
.ls4{letter-spacing:0.216000px;}
.ls8b{letter-spacing:0.225000px;}
.ls27{letter-spacing:0.225600px;}
.ls6d{letter-spacing:0.240000px;}
.ls67{letter-spacing:0.245700px;}
.ls57{letter-spacing:0.248400px;}
.ls36{letter-spacing:0.253800px;}
.ls1b{letter-spacing:0.270000px;}
.ls59{letter-spacing:0.280800px;}
.ls4f{letter-spacing:0.313200px;}
.ls79{letter-spacing:0.315000px;}
.ls75{letter-spacing:0.315900px;}
.ls11{letter-spacing:0.316650px;}
.ls20{letter-spacing:0.324000px;}
.ls64{letter-spacing:0.337800px;}
.ls3e{letter-spacing:0.351000px;}
.ls96{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.367200px;}
.ls29{letter-spacing:0.378000px;}
.ls3f{letter-spacing:0.386100px;}
.ls8{letter-spacing:0.387000px;}
.ls7a{letter-spacing:0.405000px;}
.ls40{letter-spacing:0.421200px;}
.ls31{letter-spacing:0.432000px;}
.ls86{letter-spacing:0.450000px;}
.ls41{letter-spacing:0.456300px;}
.ls71{letter-spacing:0.469800px;}
.ls7f{letter-spacing:0.480000px;}
.ls26{letter-spacing:0.486000px;}
.ls5f{letter-spacing:0.491400px;}
.ls7e{letter-spacing:0.495000px;}
.ls48{letter-spacing:0.496800px;}
.ls14{letter-spacing:0.503250px;}
.ls12{letter-spacing:0.510000px;}
.ls15{letter-spacing:0.525000px;}
.ls68{letter-spacing:0.526500px;}
.lsb{letter-spacing:0.540000px;}
.ls51{letter-spacing:0.550800px;}
.ls72{letter-spacing:0.561600px;}
.ls7d{letter-spacing:0.562500px;}
.lsa{letter-spacing:0.572400px;}
.ls53{letter-spacing:0.577800px;}
.ls7b{letter-spacing:0.585000px;}
.ls9{letter-spacing:0.594000px;}
.ls50{letter-spacing:0.599400px;}
.ls4e{letter-spacing:0.626400px;}
.ls2a{letter-spacing:0.648000px;}
.ls16{letter-spacing:0.663000px;}
.ls9a{letter-spacing:0.666900px;}
.ls97{letter-spacing:0.675000px;}
.ls9b{letter-spacing:0.695100px;}
.ls2e{letter-spacing:0.702000px;}
.ls78{letter-spacing:0.720000px;}
.ls54{letter-spacing:0.723600px;}
.ls2c{letter-spacing:0.734400px;}
.ls99{letter-spacing:0.737100px;}
.ls30{letter-spacing:0.756000px;}
.ls76{letter-spacing:0.765000px;}
.ls5e{letter-spacing:0.810000px;}
.ls2b{letter-spacing:0.815400px;}
.ls24{letter-spacing:0.816000px;}
.ls63{letter-spacing:0.820800px;}
.ls5d{letter-spacing:0.840000px;}
.ls4c{letter-spacing:0.842400px;}
.ls37{letter-spacing:0.847800px;}
.ls2f{letter-spacing:0.853200px;}
.ls95{letter-spacing:0.855000px;}
.ls1d{letter-spacing:0.864000px;}
.ls93{letter-spacing:0.900000px;}
.ls6a{letter-spacing:0.923400px;}
.ls52{letter-spacing:0.924000px;}
.ls19{letter-spacing:0.960000px;}
.ls9c{letter-spacing:0.972000px;}
.ls98{letter-spacing:1.026000px;}
.ls4d{letter-spacing:1.080000px;}
.ls69{letter-spacing:1.150200px;}
.ls70{letter-spacing:1.171800px;}
.ls4a{letter-spacing:1.188000px;}
.ls49{letter-spacing:1.200000px;}
.ls4b{letter-spacing:1.296000px;}
.ls28{letter-spacing:1.350000px;}
.ls7c{letter-spacing:1.435500px;}
.ls77{letter-spacing:1.620000px;}
.ls6c{letter-spacing:1.630800px;}
.ls13{letter-spacing:1.632000px;}
.ls94{letter-spacing:2.160000px;}
.ls0{letter-spacing:2.592000px;}
.ls25{letter-spacing:2.700000px;}
.ls1{letter-spacing:2.767500px;}
.ls73{letter-spacing:6.120000px;}
.ls46{letter-spacing:14.742000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-15.067500px;}
.ws2f{word-spacing:-13.596000px;}
.wsa5{word-spacing:-13.392000px;}
.ws6{word-spacing:-13.122000px;}
.ws2a{word-spacing:-12.906000px;}
.ws73{word-spacing:-12.744000px;}
.ws55{word-spacing:-12.582000px;}
.ws65{word-spacing:-12.528000px;}
.ws32{word-spacing:-12.393000px;}
.ws4b{word-spacing:-12.366000px;}
.ws4{word-spacing:-12.360000px;}
.ws30{word-spacing:-12.312000px;}
.ws2e{word-spacing:-12.258000px;}
.ws26{word-spacing:-12.204000px;}
.ws0{word-spacing:-12.192000px;}
.ws76{word-spacing:-12.150000px;}
.ws75{word-spacing:-12.096000px;}
.ws4c{word-spacing:-12.042000px;}
.ws57{word-spacing:-11.718000px;}
.ws83{word-spacing:-10.755000px;}
.wsa3{word-spacing:-10.620000px;}
.ws84{word-spacing:-10.485000px;}
.ws88{word-spacing:-10.327500px;}
.ws87{word-spacing:-10.305000px;}
.ws8a{word-spacing:-10.260000px;}
.ws89{word-spacing:-10.125000px;}
.ws3e{word-spacing:-10.044000px;}
.ws80{word-spacing:-10.035000px;}
.ws41{word-spacing:-9.990000px;}
.wsa1{word-spacing:-9.855000px;}
.ws82{word-spacing:-9.720000px;}
.wsa2{word-spacing:-9.630000px;}
.wsa4{word-spacing:-9.585000px;}
.ws79{word-spacing:-9.558000px;}
.ws86{word-spacing:-9.540000px;}
.ws13{word-spacing:-9.342000px;}
.ws85{word-spacing:-9.000000px;}
.ws81{word-spacing:-8.955000px;}
.ws4a{word-spacing:-8.810100px;}
.ws77{word-spacing:-8.529300px;}
.ws6d{word-spacing:-8.494200px;}
.ws56{word-spacing:-8.459100px;}
.ws2d{word-spacing:-8.424000px;}
.ws2b{word-spacing:-8.388900px;}
.ws29{word-spacing:-8.353800px;}
.ws28{word-spacing:-8.318700px;}
.ws74{word-spacing:-8.283600px;}
.ws53{word-spacing:-8.248500px;}
.ws6c{word-spacing:-8.213400px;}
.ws7{word-spacing:-8.178300px;}
.ws2c{word-spacing:-8.143200px;}
.ws25{word-spacing:-8.108100px;}
.ws58{word-spacing:-8.073000px;}
.ws31{word-spacing:-8.037900px;}
.ws3{word-spacing:-8.034000px;}
.ws6e{word-spacing:-8.002800px;}
.ws22{word-spacing:-7.967700px;}
.ws27{word-spacing:-7.932600px;}
.ws54{word-spacing:-7.897500px;}
.ws66{word-spacing:-7.862400px;}
.ws24{word-spacing:-7.827300px;}
.ws6b{word-spacing:-7.792200px;}
.ws23{word-spacing:-7.651800px;}
.ws8{word-spacing:-6.630000px;}
.ws78{word-spacing:-6.120000px;}
.wsc{word-spacing:-5.340000px;}
.wsb4{word-spacing:-3.960000px;}
.wse{word-spacing:-3.840000px;}
.wsb{word-spacing:-3.600000px;}
.wsa{word-spacing:-3.276000px;}
.ws21{word-spacing:-2.760000px;}
.ws1{word-spacing:-2.640000px;}
.ws33{word-spacing:-2.538000px;}
.ws43{word-spacing:-1.890000px;}
.ws7b{word-spacing:-1.860000px;}
.ws11{word-spacing:-1.836000px;}
.ws7c{word-spacing:-1.782000px;}
.ws47{word-spacing:-1.674000px;}
.ws1b{word-spacing:-1.632000px;}
.ws5e{word-spacing:-1.620000px;}
.ws92{word-spacing:-1.575000px;}
.ws46{word-spacing:-1.566000px;}
.ws8d{word-spacing:-1.530000px;}
.ws5f{word-spacing:-1.512000px;}
.ws64{word-spacing:-1.458000px;}
.ws34{word-spacing:-1.404000px;}
.ws72{word-spacing:-1.350000px;}
.ws49{word-spacing:-1.296000px;}
.wsd{word-spacing:-1.260000px;}
.ws15{word-spacing:-1.242000px;}
.wsac{word-spacing:-1.215000px;}
.ws4d{word-spacing:-1.200000px;}
.ws52{word-spacing:-1.188000px;}
.wsa7{word-spacing:-1.170000px;}
.ws67{word-spacing:-1.134000px;}
.ws71{word-spacing:-1.080000px;}
.ws8c{word-spacing:-1.035000px;}
.ws68{word-spacing:-1.026000px;}
.wsa0{word-spacing:-0.990000px;}
.wsb5{word-spacing:-0.972000px;}
.ws7a{word-spacing:-0.918000px;}
.ws70{word-spacing:-0.864000px;}
.ws96{word-spacing:-0.855000px;}
.ws61{word-spacing:-0.840000px;}
.ws1d{word-spacing:-0.816000px;}
.ws40{word-spacing:-0.810000px;}
.wsab{word-spacing:-0.765000px;}
.ws6f{word-spacing:-0.756000px;}
.ws9b{word-spacing:-0.720000px;}
.wsa6{word-spacing:-0.675000px;}
.ws1f{word-spacing:-0.663000px;}
.ws16{word-spacing:-0.648000px;}
.wsae{word-spacing:-0.630000px;}
.ws7e{word-spacing:-0.600000px;}
.wsf{word-spacing:-0.594000px;}
.ws9f{word-spacing:-0.585000px;}
.ws10{word-spacing:-0.540000px;}
.ws1a{word-spacing:-0.510000px;}
.ws93{word-spacing:-0.495000px;}
.ws3b{word-spacing:-0.486000px;}
.ws9d{word-spacing:-0.450000px;}
.ws3d{word-spacing:-0.432000px;}
.ws99{word-spacing:-0.405000px;}
.ws17{word-spacing:-0.378000px;}
.ws8f{word-spacing:-0.360000px;}
.ws36{word-spacing:-0.324000px;}
.ws8e{word-spacing:-0.315000px;}
.ws60{word-spacing:-0.270000px;}
.ws7d{word-spacing:-0.240000px;}
.ws39{word-spacing:-0.216000px;}
.ws20{word-spacing:-0.204000px;}
.wsad{word-spacing:-0.180000px;}
.ws5b{word-spacing:-0.162000px;}
.ws8b{word-spacing:-0.120000px;}
.ws69{word-spacing:-0.108000px;}
.ws18{word-spacing:-0.102000px;}
.ws5{word-spacing:-0.054000px;}
.wsaf{word-spacing:-0.045000px;}
.ws48{word-spacing:-0.035100px;}
.ws9{word-spacing:0.000000px;}
.ws94{word-spacing:0.045000px;}
.ws1c{word-spacing:0.051000px;}
.ws38{word-spacing:0.054000px;}
.ws19{word-spacing:0.102000px;}
.ws45{word-spacing:0.108000px;}
.ws14{word-spacing:0.162000px;}
.ws5c{word-spacing:0.180000px;}
.ws35{word-spacing:0.216000px;}
.ws42{word-spacing:0.240000px;}
.ws12{word-spacing:0.270000px;}
.ws9a{word-spacing:0.315000px;}
.ws5a{word-spacing:0.324000px;}
.ws44{word-spacing:0.378000px;}
.ws90{word-spacing:0.405000px;}
.ws3a{word-spacing:0.432000px;}
.ws98{word-spacing:0.450000px;}
.ws51{word-spacing:0.486000px;}
.ws3c{word-spacing:0.594000px;}
.ws63{word-spacing:0.648000px;}
.ws3f{word-spacing:0.702000px;}
.ws9e{word-spacing:0.720000px;}
.ws95{word-spacing:0.765000px;}
.ws6a{word-spacing:0.810000px;}
.ws91{word-spacing:0.855000px;}
.ws62{word-spacing:0.864000px;}
.ws7f{word-spacing:0.900000px;}
.ws1e{word-spacing:0.918000px;}
.ws97{word-spacing:0.990000px;}
.ws5d{word-spacing:1.026000px;}
.wsb0{word-spacing:1.035000px;}
.wsa8{word-spacing:1.080000px;}
.wsb3{word-spacing:1.134000px;}
.wsa9{word-spacing:1.260000px;}
.wsb1{word-spacing:1.296000px;}
.ws50{word-spacing:1.404000px;}
.ws4e{word-spacing:1.728000px;}
.ws4f{word-spacing:1.944000px;}
.wsaa{word-spacing:2.025000px;}
.ws37{word-spacing:2.106000px;}
.wsb2{word-spacing:2.322000px;}
.ws59{word-spacing:2.592000px;}
.ws9c{word-spacing:3.420000px;}
._c{margin-left:-12.834000px;}
._9{margin-left:-10.518600px;}
._6{margin-left:-9.127200px;}
._7{margin-left:-8.023200px;}
._5{margin-left:-6.369600px;}
._4{margin-left:-4.537200px;}
._1{margin-left:-3.307200px;}
._0{margin-left:-1.776000px;}
._2{width:1.917600px;}
._b{width:3.090600px;}
._3{width:4.093800px;}
._a{width:5.461200px;}
._d{width:8.278200px;}
._10{width:9.412200px;}
._8{width:10.620600px;}
._11{width:47.044200px;}
._e{width:48.148800px;}
._f{width:49.619400px;}
.fc3{color:rgb(245,130,32);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(131,144,151);}
.fs7{font-size:33.150000px;}
.fs6{font-size:35.100000px;}
.fs4{font-size:39.000000px;}
.fsb{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:61.500000px;}
.fsa{font-size:66.000000px;}
.fs9{font-size:108.000000px;}
.fs3{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:27.197850px;}
.y2{bottom:27.253800px;}
.y2f{bottom:68.307900px;}
.y18c{bottom:68.553000px;}
.y78{bottom:68.557500px;}
.ye5{bottom:68.794800px;}
.y95{bottom:71.802300px;}
.yff{bottom:74.052300px;}
.y11d{bottom:77.796300px;}
.y2e{bottom:83.313900px;}
.y18b{bottom:83.551500px;}
.y77{bottom:83.556000px;}
.y14f{bottom:83.794800px;}
.ye4{bottom:83.796300px;}
.y94{bottom:86.800800px;}
.yfe{bottom:89.050800px;}
.yde{bottom:89.806800px;}
.y11c{bottom:92.794800px;}
.y1d5{bottom:93.059550px;}
.y2d{bottom:98.307900px;}
.y18a{bottom:98.553000px;}
.y76{bottom:98.554500px;}
.ye3{bottom:98.794800px;}
.y14e{bottom:98.800800px;}
.y93{bottom:101.799300px;}
.y8b{bottom:102.258450px;}
.yfd{bottom:104.049300px;}
.ydd{bottom:104.805300px;}
.y1d4{bottom:105.805800px;}
.y11b{bottom:107.797800px;}
.y189{bottom:113.551500px;}
.y75{bottom:113.553000px;}
.ye2{bottom:113.796300px;}
.y14d{bottom:113.799300px;}
.y92{bottom:116.797800px;}
.y8a{bottom:117.256950px;}
.y2c{bottom:117.636900px;}
.y1d3{bottom:118.552050px;}
.yfc{bottom:119.047800px;}
.ydc{bottom:119.803800px;}
.y11a{bottom:122.796300px;}
.y2b{bottom:128.313900px;}
.y188{bottom:128.550000px;}
.y74{bottom:128.551500px;}
.ye1{bottom:128.794800px;}
.y14c{bottom:128.797800px;}
.y1d2{bottom:131.298300px;}
.y91{bottom:131.796300px;}
.y89{bottom:132.255450px;}
.yfb{bottom:134.046300px;}
.ydb{bottom:134.802300px;}
.y119{bottom:137.794800px;}
.y2a{bottom:143.307900px;}
.y73{bottom:143.577000px;}
.ye0{bottom:143.793300px;}
.y14b{bottom:143.796300px;}
.y1d1{bottom:144.044550px;}
.y90{bottom:146.794800px;}
.y88{bottom:147.253950px;}
.yfa{bottom:149.044800px;}
.yda{bottom:149.800800px;}
.y118{bottom:152.796300px;}
.y1d0{bottom:156.790800px;}
.y29{bottom:158.307900px;}
.y72{bottom:158.575500px;}
.y187{bottom:158.593500px;}
.ydf{bottom:158.793300px;}
.y14a{bottom:158.794800px;}
.y8f{bottom:161.794800px;}
.y87{bottom:162.252450px;}
.yf9{bottom:164.046300px;}
.yd9{bottom:164.799300px;}
.y117{bottom:167.794800px;}
.y1cf{bottom:169.537050px;}
.y28{bottom:173.307900px;}
.y71{bottom:173.574000px;}
.y186{bottom:173.592000px;}
.y149{bottom:173.797800px;}
.y8e{bottom:176.796300px;}
.y86{bottom:177.250950px;}
.yf8{bottom:179.044800px;}
.yd8{bottom:179.797800px;}
.y1ce{bottom:182.283300px;}
.y116{bottom:182.796300px;}
.y70{bottom:188.572500px;}
.y185{bottom:188.592000px;}
.y148{bottom:188.796300px;}
.y8d{bottom:191.794800px;}
.y85{bottom:192.249450px;}
.y27{bottom:192.636900px;}
.yf7{bottom:194.049300px;}
.yd7{bottom:194.796300px;}
.y1cd{bottom:195.029550px;}
.y115{bottom:197.794800px;}
.y6f{bottom:203.571000px;}
.y184{bottom:203.592000px;}
.y147{bottom:203.794800px;}
.y8c{bottom:206.793300px;}
.y84{bottom:207.247950px;}
.y1cc{bottom:207.775800px;}
.yf6{bottom:209.047800px;}
.yd6{bottom:209.794800px;}
.yf2{bottom:210.067950px;}
.y114{bottom:212.799300px;}
.y6e{bottom:218.569500px;}
.y183{bottom:218.590500px;}
.y146{bottom:218.800800px;}
.y1cb{bottom:220.522050px;}
.y83{bottom:222.246450px;}
.yf5{bottom:224.046300px;}
.yd5{bottom:224.796300px;}
.yf1{bottom:225.066450px;}
.y26{bottom:225.688800px;}
.y113{bottom:227.797800px;}
.y1ca{bottom:233.268300px;}
.y6d{bottom:233.568000px;}
.y145{bottom:233.799300px;}
.y82{bottom:237.244950px;}
.yf4{bottom:239.044800px;}
.yd4{bottom:239.794800px;}
.yf0{bottom:240.064950px;}
.y25{bottom:240.687300px;}
.y112{bottom:242.796300px;}
.y1c9{bottom:246.014550px;}
.y6c{bottom:248.566500px;}
.y182{bottom:248.644650px;}
.y144{bottom:248.797800px;}
.y81{bottom:252.243450px;}
.yf3{bottom:254.043300px;}
.yd3{bottom:254.796300px;}
.yef{bottom:255.063450px;}
.y24{bottom:255.685800px;}
.y111{bottom:257.794800px;}
.y1c8{bottom:258.760800px;}
.y6b{bottom:263.565000px;}
.y181{bottom:263.643150px;}
.y143{bottom:263.796300px;}
.y80{bottom:267.241950px;}
.ya5{bottom:267.255450px;}
.yd2{bottom:269.794800px;}
.yee{bottom:270.061950px;}
.y23{bottom:270.691800px;}
.y1c7{bottom:271.507050px;}
.y110{bottom:272.799300px;}
.y6a{bottom:278.563500px;}
.y180{bottom:278.641650px;}
.y142{bottom:278.794800px;}
.y7f{bottom:282.240450px;}
.ya4{bottom:282.253950px;}
.y1c6{bottom:284.253300px;}
.yd0{bottom:284.794800px;}
.yed{bottom:285.060450px;}
.y22{bottom:285.690300px;}
.y10f{bottom:287.797800px;}
.y20d{bottom:288.549300px;}
.yd1{bottom:289.383300px;}
.y69{bottom:293.562000px;}
.y17f{bottom:293.640150px;}
.y141{bottom:293.796300px;}
.y1c5{bottom:296.999550px;}
.y7d{bottom:297.244950px;}
.ya3{bottom:297.252450px;}
.ycf{bottom:299.793300px;}
.yeb{bottom:300.066450px;}
.y21{bottom:300.688800px;}
.y7e{bottom:301.828950px;}
.y10e{bottom:302.796300px;}
.y20c{bottom:303.547800px;}
.yec{bottom:304.648950px;}
.y68{bottom:308.560500px;}
.y17e{bottom:308.638650px;}
.y140{bottom:308.794800px;}
.y1c4{bottom:309.745800px;}
.y7c{bottom:312.243450px;}
.ya2{bottom:312.250950px;}
.y10b{bottom:312.367950px;}
.yea{bottom:315.064950px;}
.y20{bottom:315.687300px;}
.y10d{bottom:317.794800px;}
.y20b{bottom:318.546300px;}
.y1c3{bottom:322.492050px;}
.y67{bottom:323.559000px;}
.y17d{bottom:323.637150px;}
.y13f{bottom:323.794800px;}
.y7b{bottom:327.241950px;}
.ya1{bottom:327.249450px;}
.y10a{bottom:327.366450px;}
.ye9{bottom:330.063450px;}
.y1f{bottom:330.685800px;}
.y10c{bottom:332.793300px;}
.yce{bottom:332.805300px;}
.y20a{bottom:333.544800px;}
.y1c2{bottom:335.238300px;}
.y66{bottom:338.557500px;}
.y17c{bottom:338.635650px;}
.y13e{bottom:338.796300px;}
.y7a{bottom:342.240450px;}
.ya0{bottom:342.247950px;}
.y109{bottom:342.364950px;}
.ye8{bottom:345.061950px;}
.y1e{bottom:345.687300px;}
.ycd{bottom:347.803800px;}
.y1c1{bottom:347.984550px;}
.y209{bottom:348.543300px;}
.y65{bottom:353.556000px;}
.y17b{bottom:353.634150px;}
.y13d{bottom:353.794800px;}
.y79{bottom:357.238950px;}
.y9f{bottom:357.246450px;}
.y108{bottom:357.363450px;}
.ye7{bottom:360.060450px;}
.y1d{bottom:360.685800px;}
.y1c0{bottom:360.730800px;}
.ycc{bottom:362.802300px;}
.y64{bottom:368.554500px;}
.y17a{bottom:368.632650px;}
.y13b{bottom:368.794800px;}
.y208{bottom:370.297800px;}
.y9e{bottom:372.244950px;}
.y107{bottom:372.361950px;}
.y13c{bottom:373.383300px;}
.y1bf{bottom:373.477050px;}
.ye6{bottom:375.058950px;}
.y1c{bottom:375.685800px;}
.ycb{bottom:377.800800px;}
.y63{bottom:383.553000px;}
.y179{bottom:383.631150px;}
.y13a{bottom:383.794800px;}
.y207{bottom:385.296300px;}
.y1be{bottom:386.223300px;}
.y123{bottom:386.959950px;}
.y9d{bottom:387.243450px;}
.y106{bottom:387.360450px;}
.y1b{bottom:390.726300px;}
.yca{bottom:392.799300px;}
.y62{bottom:398.551500px;}
.y139{bottom:398.796300px;}
.y1bd{bottom:398.969550px;}
.y122{bottom:401.958450px;}
.y9c{bottom:402.241950px;}
.y104{bottom:402.364950px;}
.y1a{bottom:405.724800px;}
.y105{bottom:406.948950px;}
.y206{bottom:407.044800px;}
.yc9{bottom:407.797800px;}
.y1bc{bottom:411.715800px;}
.y61{bottom:413.553000px;}
.y178{bottom:413.673150px;}
.y138{bottom:413.794800px;}
.y121{bottom:416.956950px;}
.y9b{bottom:417.240450px;}
.y103{bottom:417.363450px;}
.y19{bottom:420.723300px;}
.yc8{bottom:422.796300px;}
.y1bb{bottom:424.462050px;}
.y60{bottom:428.551500px;}
.y177{bottom:428.671650px;}
.y205{bottom:428.793300px;}
.y137{bottom:428.794800px;}
.y120{bottom:431.955450px;}
.y9a{bottom:432.244950px;}
.y102{bottom:432.361950px;}
.y1ba{bottom:437.208300px;}
.yc7{bottom:437.794800px;}
.y5f{bottom:443.553000px;}
.y204{bottom:443.793300px;}
.y136{bottom:443.797800px;}
.y11f{bottom:446.953950px;}
.y99{bottom:447.243450px;}
.y101{bottom:447.360450px;}
.y1b9{bottom:449.954550px;}
.yc6{bottom:452.802300px;}
.y5e{bottom:458.551500px;}
.y176{bottom:458.716650px;}
.y135{bottom:458.796300px;}
.y11e{bottom:461.952450px;}
.y98{bottom:462.241950px;}
.y100{bottom:462.358950px;}
.y1b8{bottom:462.700800px;}
.yc5{bottom:467.800800px;}
.y18{bottom:467.973300px;}
.y203{bottom:470.794800px;}
.y5d{bottom:473.550000px;}
.y175{bottom:473.715150px;}
.y134{bottom:473.794800px;}
.y1b7{bottom:475.447050px;}
.y97{bottom:477.240450px;}
.yc4{bottom:482.799300px;}
.y17{bottom:484.470300px;}
.y202{bottom:485.793300px;}
.y1b6{bottom:488.193300px;}
.y5c{bottom:488.550000px;}
.y174{bottom:488.713650px;}
.y133{bottom:488.794800px;}
.y96{bottom:492.238950px;}
.yc3{bottom:497.797800px;}
.y201{bottom:500.793300px;}
.y1b5{bottom:500.939550px;}
.y16{bottom:500.967300px;}
.y173{bottom:503.716650px;}
.y132{bottom:503.794800px;}
.yc2{bottom:512.796300px;}
.y1b4{bottom:513.685800px;}
.y15{bottom:517.464300px;}
.y172{bottom:518.715150px;}
.y131{bottom:518.796300px;}
.y5b{bottom:518.802300px;}
.y1b3{bottom:526.432050px;}
.yc1{bottom:527.794800px;}
.y200{bottom:527.800800px;}
.y171{bottom:533.713650px;}
.y130{bottom:533.794800px;}
.y5a{bottom:533.800800px;}
.y14{bottom:533.961300px;}
.y1b2{bottom:539.178300px;}
.yc0{bottom:542.796300px;}
.y1ff{bottom:542.799300px;}
.y170{bottom:548.712150px;}
.y12f{bottom:548.796300px;}
.y59{bottom:548.799300px;}
.y13{bottom:550.458300px;}
.y1b1{bottom:551.924550px;}
.ybf{bottom:557.794800px;}
.y1fe{bottom:557.797800px;}
.y12e{bottom:563.794800px;}
.y58{bottom:563.797800px;}
.y1b0{bottom:564.670800px;}
.y12{bottom:566.955300px;}
.ybe{bottom:572.793300px;}
.y1fd{bottom:572.796300px;}
.y1af{bottom:577.417050px;}
.y16f{bottom:578.758650px;}
.y12d{bottom:578.794800px;}
.y57{bottom:578.796300px;}
.y11{bottom:583.452300px;}
.y1fc{bottom:587.794800px;}
.y1ae{bottom:590.163300px;}
.y16e{bottom:593.757150px;}
.y56{bottom:593.794800px;}
.y12c{bottom:593.800800px;}
.y10{bottom:599.949300px;}
.y1fb{bottom:602.793300px;}
.y1ad{bottom:602.909550px;}
.ybd{bottom:605.799300px;}
.y16d{bottom:608.755650px;}
.y55{bottom:608.796300px;}
.y12b{bottom:608.799300px;}
.y1ac{bottom:615.655800px;}
.yf{bottom:616.446300px;}
.y1fa{bottom:617.793300px;}
.ybc{bottom:620.797800px;}
.y16c{bottom:623.754150px;}
.y54{bottom:623.794800px;}
.y12a{bottom:623.797800px;}
.y1ab{bottom:628.402050px;}
.ye{bottom:632.943300px;}
.ybb{bottom:635.796300px;}
.y16b{bottom:638.755650px;}
.y53{bottom:638.796300px;}
.y1aa{bottom:641.148300px;}
.y1f9{bottom:644.924550px;}
.yd{bottom:649.440300px;}
.yba{bottom:650.794800px;}
.y16a{bottom:653.754150px;}
.y52{bottom:653.794800px;}
.y1a9{bottom:653.894550px;}
.y1f8{bottom:657.670800px;}
.yb9{bottom:665.802300px;}
.yc{bottom:665.937300px;}
.y1a8{bottom:666.640800px;}
.y169{bottom:668.754150px;}
.y51{bottom:668.794800px;}
.y129{bottom:668.796300px;}
.y1f7{bottom:670.417050px;}
.y1a7{bottom:679.387050px;}
.yb8{bottom:680.800800px;}
.yb{bottom:682.434300px;}
.y1f6{bottom:683.163300px;}
.y168{bottom:683.757150px;}
.y50{bottom:683.794800px;}
.y1a6{bottom:692.133300px;}
.yb7{bottom:695.799300px;}
.y1f5{bottom:695.909550px;}
.y167{bottom:698.755650px;}
.y128{bottom:698.794800px;}
.y4f{bottom:698.800800px;}
.y1a5{bottom:704.879550px;}
.y1f4{bottom:708.655800px;}
.yb6{bottom:710.797800px;}
.ya{bottom:712.434300px;}
.y166{bottom:713.754150px;}
.y127{bottom:713.797800px;}
.y4e{bottom:713.799300px;}
.y1a4{bottom:717.625800px;}
.y1f3{bottom:721.402050px;}
.yb5{bottom:725.796300px;}
.y165{bottom:728.760150px;}
.y126{bottom:728.796300px;}
.y4d{bottom:728.797800px;}
.y1a3{bottom:730.372050px;}
.y9{bottom:730.434300px;}
.y1f2{bottom:734.148300px;}
.yb4{bottom:740.794800px;}
.y1a2{bottom:743.118300px;}
.y164{bottom:743.758650px;}
.y125{bottom:743.794800px;}
.y4c{bottom:743.796300px;}
.y1f1{bottom:746.894550px;}
.y8{bottom:748.434300px;}
.yb2{bottom:755.794800px;}
.y1a1{bottom:755.864550px;}
.y32{bottom:757.050000px;}
.y163{bottom:758.757150px;}
.y4b{bottom:758.794800px;}
.y1f0{bottom:759.640800px;}
.yb3{bottom:760.383300px;}
.y1a0{bottom:768.610800px;}
.yb1{bottom:770.796300px;}
.y1ef{bottom:772.387050px;}
.y162{bottom:773.755650px;}
.y124{bottom:773.793300px;}
.y4a{bottom:773.794800px;}
.y31{bottom:778.050000px;}
.y19f{bottom:781.357050px;}
.y7{bottom:781.416300px;}
.y1ee{bottom:785.133300px;}
.yb0{bottom:785.794800px;}
.y161{bottom:788.754150px;}
.y49{bottom:788.794800px;}
.y19e{bottom:794.103300px;}
.y1ed{bottom:797.879550px;}
.y30{bottom:799.050000px;}
.yaf{bottom:800.796300px;}
.y160{bottom:803.754150px;}
.y48{bottom:803.797800px;}
.y19d{bottom:806.849550px;}
.y1ec{bottom:810.625800px;}
.yae{bottom:815.794800px;}
.y15e{bottom:818.754150px;}
.y47{bottom:818.796300px;}
.y19c{bottom:819.595800px;}
.y15f{bottom:823.342650px;}
.y1eb{bottom:823.372050px;}
.y6{bottom:826.422300px;}
.y151{bottom:830.580450px;}
.yad{bottom:830.796300px;}
.y19b{bottom:832.342050px;}
.y15d{bottom:833.754150px;}
.y46{bottom:833.794800px;}
.y1ea{bottom:836.118300px;}
.y19a{bottom:845.088300px;}
.y150{bottom:845.578950px;}
.yac{bottom:845.794800px;}
.y15c{bottom:848.752650px;}
.y45{bottom:848.796300px;}
.y1e9{bottom:848.864550px;}
.y199{bottom:857.834550px;}
.yab{bottom:860.793300px;}
.y1e8{bottom:861.610800px;}
.y15b{bottom:863.752650px;}
.y44{bottom:863.794800px;}
.y198{bottom:870.580800px;}
.y5{bottom:871.428300px;}
.y1e7{bottom:874.357050px;}
.y43{bottom:878.796300px;}
.y197{bottom:883.327050px;}
.y1e6{bottom:887.103300px;}
.y42{bottom:893.794800px;}
.yaa{bottom:893.796300px;}
.y15a{bottom:893.806800px;}
.y196{bottom:896.073300px;}
.y1e5{bottom:899.849550px;}
.y41{bottom:908.794800px;}
.y159{bottom:908.805300px;}
.y195{bottom:908.819550px;}
.y1e4{bottom:912.595800px;}
.y4{bottom:916.434300px;}
.y194{bottom:921.565800px;}
.y40{bottom:923.794800px;}
.ya9{bottom:923.796300px;}
.y158{bottom:923.803800px;}
.y1e3{bottom:925.342050px;}
.y33{bottom:926.409600px;}
.y193{bottom:934.312050px;}
.y1e2{bottom:938.088300px;}
.ya8{bottom:938.794800px;}
.y3f{bottom:938.796300px;}
.y157{bottom:938.802300px;}
.y192{bottom:947.058300px;}
.y1e1{bottom:950.834550px;}
.y3e{bottom:953.794800px;}
.ya7{bottom:953.799300px;}
.y156{bottom:953.800800px;}
.y191{bottom:959.804550px;}
.y1e0{bottom:963.580800px;}
.y3d{bottom:968.797800px;}
.y155{bottom:968.799300px;}
.y190{bottom:972.550800px;}
.y1df{bottom:976.327050px;}
.y3c{bottom:983.796300px;}
.y154{bottom:983.797800px;}
.y18f{bottom:985.297050px;}
.y1de{bottom:989.073300px;}
.y18e{bottom:998.043300px;}
.y3b{bottom:998.794800px;}
.y153{bottom:998.796300px;}
.y1dd{bottom:1001.819550px;}
.y18d{bottom:1010.793300px;}
.ya6{bottom:1013.794800px;}
.y3a{bottom:1013.800800px;}
.y1dc{bottom:1014.565800px;}
.y1db{bottom:1027.312050px;}
.y152{bottom:1028.794800px;}
.y39{bottom:1028.799300px;}
.y1da{bottom:1040.058300px;}
.y38{bottom:1043.797800px;}
.y1d9{bottom:1052.804550px;}
.y37{bottom:1058.796300px;}
.y1d8{bottom:1065.550800px;}
.y36{bottom:1073.794800px;}
.y1d7{bottom:1078.297050px;}
.y35{bottom:1088.793300px;}
.y1d6{bottom:1091.043300px;}
.y34{bottom:1139.853000px;}
.y3{bottom:1140.126900px;}
.he{height:23.842749px;}
.h16{height:25.131600px;}
.h1f{height:32.220000px;}
.h3{height:34.523438px;}
.h10{height:36.681152px;}
.h8{height:38.664000px;}
.h7{height:38.838867px;}
.h19{height:40.500000px;}
.h11{height:41.134749px;}
.hf{height:41.158749px;}
.h1b{height:43.122600px;}
.h1c{height:43.134600px;}
.h2{height:43.154297px;}
.h9{height:43.323600px;}
.h15{height:43.383000px;}
.h18{height:43.455600px;}
.hc{height:43.461600px;}
.h17{height:43.467600px;}
.hd{height:43.473600px;}
.h1e{height:43.479000px;}
.hb{height:43.479600px;}
.ha{height:43.485600px;}
.h1d{height:43.491000px;}
.h13{height:43.491600px;}
.h1a{height:44.118000px;}
.h4{height:44.233154px;}
.h14{height:47.469727px;}
.h6{height:48.450293px;}
.h12{height:77.677734px;}
.h5{height:112.201172px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:61.191450px;}
.x6{left:66.728400px;}
.x7{left:94.232400px;}
.x8{left:140.952750px;}
.x4{left:233.456400px;}
.x11{left:238.992150px;}
.x5{left:251.442000px;}
.xf{left:285.539100px;}
.x12{left:300.348600px;}
.x9{left:357.073050px;}
.xb{left:405.655200px;}
.xd{left:409.532700px;}
.xe{left:557.753100px;}
.x3{left:584.586600px;}
.x10{left:816.003600px;}
.xc{left:820.211100px;}
.xa{left:824.207400px;}
.x1{left:825.232800px;}
@media print{
.v4{vertical-align:-16.320000pt;}
.v3{vertical-align:-15.413333pt;}
.v6{vertical-align:-9.610133pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:5.328000pt;}
.v2{vertical-align:16.170667pt;}
.v1{vertical-align:18.133333pt;}
.ls8f{letter-spacing:-3.040000pt;}
.ls90{letter-spacing:-1.560000pt;}
.ls58{letter-spacing:-1.248000pt;}
.ls85{letter-spacing:-1.200000pt;}
.ls87{letter-spacing:-1.160000pt;}
.ls9e{letter-spacing:-0.960000pt;}
.ls43{letter-spacing:-0.912000pt;}
.ls8a{letter-spacing:-0.880000pt;}
.ls74{letter-spacing:-0.816000pt;}
.ls9f{letter-spacing:-0.800000pt;}
.ls8e{letter-spacing:-0.760000pt;}
.ls80{letter-spacing:-0.680000pt;}
.ls8d{letter-spacing:-0.640000pt;}
.ls47{letter-spacing:-0.576000pt;}
.ls8c{letter-spacing:-0.520000pt;}
.ls60{letter-spacing:-0.480000pt;}
.ls83{letter-spacing:-0.440000pt;}
.ls39{letter-spacing:-0.432000pt;}
.ls91{letter-spacing:-0.400000pt;}
.ls9d{letter-spacing:-0.320000pt;}
.ls3a{letter-spacing:-0.280800pt;}
.ls88{letter-spacing:-0.280000pt;}
.ls45{letter-spacing:-0.240000pt;}
.ls42{letter-spacing:-0.213333pt;}
.ls1c{letter-spacing:-0.192000pt;}
.ls5b{letter-spacing:-0.160000pt;}
.ls65{letter-spacing:-0.156000pt;}
.ls5a{letter-spacing:-0.144000pt;}
.ls3b{letter-spacing:-0.124800pt;}
.ls81{letter-spacing:-0.120000pt;}
.ls1f{letter-spacing:-0.096000pt;}
.ls62{letter-spacing:-0.093600pt;}
.ls22{letter-spacing:-0.090667pt;}
.ls84{letter-spacing:-0.080000pt;}
.ls5c{letter-spacing:-0.062400pt;}
.ls1e{letter-spacing:-0.048000pt;}
.ls23{letter-spacing:-0.045333pt;}
.ls82{letter-spacing:-0.040000pt;}
.ls3d{letter-spacing:-0.031200pt;}
.ls1a{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.001600pt;}
.ls6b{letter-spacing:0.011467pt;}
.ls3{letter-spacing:0.011733pt;}
.ls2{letter-spacing:0.012267pt;}
.ls66{letter-spacing:0.031200pt;}
.ls10{letter-spacing:0.034533pt;}
.ls32{letter-spacing:0.038400pt;}
.ls33{letter-spacing:0.048000pt;}
.ls6f{letter-spacing:0.053333pt;}
.ls44{letter-spacing:0.062400pt;}
.ls89{letter-spacing:0.080000pt;}
.ls5{letter-spacing:0.086400pt;}
.ls21{letter-spacing:0.090667pt;}
.ls55{letter-spacing:0.091200pt;}
.ls56{letter-spacing:0.093600pt;}
.lsd{letter-spacing:0.096000pt;}
.ls18{letter-spacing:0.103733pt;}
.ls6e{letter-spacing:0.106667pt;}
.lsc{letter-spacing:0.108267pt;}
.ls38{letter-spacing:0.120000pt;}
.ls61{letter-spacing:0.121067pt;}
.ls3c{letter-spacing:0.124800pt;}
.ls35{letter-spacing:0.144000pt;}
.ls2d{letter-spacing:0.156000pt;}
.ls7{letter-spacing:0.156800pt;}
.ls92{letter-spacing:0.160000pt;}
.ls34{letter-spacing:0.172800pt;}
.ls17{letter-spacing:0.181333pt;}
.lse{letter-spacing:0.187200pt;}
.ls4{letter-spacing:0.192000pt;}
.ls8b{letter-spacing:0.200000pt;}
.ls27{letter-spacing:0.200533pt;}
.ls6d{letter-spacing:0.213333pt;}
.ls67{letter-spacing:0.218400pt;}
.ls57{letter-spacing:0.220800pt;}
.ls36{letter-spacing:0.225600pt;}
.ls1b{letter-spacing:0.240000pt;}
.ls59{letter-spacing:0.249600pt;}
.ls4f{letter-spacing:0.278400pt;}
.ls79{letter-spacing:0.280000pt;}
.ls75{letter-spacing:0.280800pt;}
.ls11{letter-spacing:0.281467pt;}
.ls20{letter-spacing:0.288000pt;}
.ls64{letter-spacing:0.300267pt;}
.ls3e{letter-spacing:0.312000pt;}
.ls96{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.326400pt;}
.ls29{letter-spacing:0.336000pt;}
.ls3f{letter-spacing:0.343200pt;}
.ls8{letter-spacing:0.344000pt;}
.ls7a{letter-spacing:0.360000pt;}
.ls40{letter-spacing:0.374400pt;}
.ls31{letter-spacing:0.384000pt;}
.ls86{letter-spacing:0.400000pt;}
.ls41{letter-spacing:0.405600pt;}
.ls71{letter-spacing:0.417600pt;}
.ls7f{letter-spacing:0.426667pt;}
.ls26{letter-spacing:0.432000pt;}
.ls5f{letter-spacing:0.436800pt;}
.ls7e{letter-spacing:0.440000pt;}
.ls48{letter-spacing:0.441600pt;}
.ls14{letter-spacing:0.447333pt;}
.ls12{letter-spacing:0.453333pt;}
.ls15{letter-spacing:0.466667pt;}
.ls68{letter-spacing:0.468000pt;}
.lsb{letter-spacing:0.480000pt;}
.ls51{letter-spacing:0.489600pt;}
.ls72{letter-spacing:0.499200pt;}
.ls7d{letter-spacing:0.500000pt;}
.lsa{letter-spacing:0.508800pt;}
.ls53{letter-spacing:0.513600pt;}
.ls7b{letter-spacing:0.520000pt;}
.ls9{letter-spacing:0.528000pt;}
.ls50{letter-spacing:0.532800pt;}
.ls4e{letter-spacing:0.556800pt;}
.ls2a{letter-spacing:0.576000pt;}
.ls16{letter-spacing:0.589333pt;}
.ls9a{letter-spacing:0.592800pt;}
.ls97{letter-spacing:0.600000pt;}
.ls9b{letter-spacing:0.617867pt;}
.ls2e{letter-spacing:0.624000pt;}
.ls78{letter-spacing:0.640000pt;}
.ls54{letter-spacing:0.643200pt;}
.ls2c{letter-spacing:0.652800pt;}
.ls99{letter-spacing:0.655200pt;}
.ls30{letter-spacing:0.672000pt;}
.ls76{letter-spacing:0.680000pt;}
.ls5e{letter-spacing:0.720000pt;}
.ls2b{letter-spacing:0.724800pt;}
.ls24{letter-spacing:0.725333pt;}
.ls63{letter-spacing:0.729600pt;}
.ls5d{letter-spacing:0.746667pt;}
.ls4c{letter-spacing:0.748800pt;}
.ls37{letter-spacing:0.753600pt;}
.ls2f{letter-spacing:0.758400pt;}
.ls95{letter-spacing:0.760000pt;}
.ls1d{letter-spacing:0.768000pt;}
.ls93{letter-spacing:0.800000pt;}
.ls6a{letter-spacing:0.820800pt;}
.ls52{letter-spacing:0.821333pt;}
.ls19{letter-spacing:0.853333pt;}
.ls9c{letter-spacing:0.864000pt;}
.ls98{letter-spacing:0.912000pt;}
.ls4d{letter-spacing:0.960000pt;}
.ls69{letter-spacing:1.022400pt;}
.ls70{letter-spacing:1.041600pt;}
.ls4a{letter-spacing:1.056000pt;}
.ls49{letter-spacing:1.066667pt;}
.ls4b{letter-spacing:1.152000pt;}
.ls28{letter-spacing:1.200000pt;}
.ls7c{letter-spacing:1.276000pt;}
.ls77{letter-spacing:1.440000pt;}
.ls6c{letter-spacing:1.449600pt;}
.ls13{letter-spacing:1.450667pt;}
.ls94{letter-spacing:1.920000pt;}
.ls0{letter-spacing:2.304000pt;}
.ls25{letter-spacing:2.400000pt;}
.ls1{letter-spacing:2.460000pt;}
.ls73{letter-spacing:5.440000pt;}
.ls46{letter-spacing:13.104000pt;}
.ws2{word-spacing:-13.393333pt;}
.ws2f{word-spacing:-12.085333pt;}
.wsa5{word-spacing:-11.904000pt;}
.ws6{word-spacing:-11.664000pt;}
.ws2a{word-spacing:-11.472000pt;}
.ws73{word-spacing:-11.328000pt;}
.ws55{word-spacing:-11.184000pt;}
.ws65{word-spacing:-11.136000pt;}
.ws32{word-spacing:-11.016000pt;}
.ws4b{word-spacing:-10.992000pt;}
.ws4{word-spacing:-10.986667pt;}
.ws30{word-spacing:-10.944000pt;}
.ws2e{word-spacing:-10.896000pt;}
.ws26{word-spacing:-10.848000pt;}
.ws0{word-spacing:-10.837333pt;}
.ws76{word-spacing:-10.800000pt;}
.ws75{word-spacing:-10.752000pt;}
.ws4c{word-spacing:-10.704000pt;}
.ws57{word-spacing:-10.416000pt;}
.ws83{word-spacing:-9.560000pt;}
.wsa3{word-spacing:-9.440000pt;}
.ws84{word-spacing:-9.320000pt;}
.ws88{word-spacing:-9.180000pt;}
.ws87{word-spacing:-9.160000pt;}
.ws8a{word-spacing:-9.120000pt;}
.ws89{word-spacing:-9.000000pt;}
.ws3e{word-spacing:-8.928000pt;}
.ws80{word-spacing:-8.920000pt;}
.ws41{word-spacing:-8.880000pt;}
.wsa1{word-spacing:-8.760000pt;}
.ws82{word-spacing:-8.640000pt;}
.wsa2{word-spacing:-8.560000pt;}
.wsa4{word-spacing:-8.520000pt;}
.ws79{word-spacing:-8.496000pt;}
.ws86{word-spacing:-8.480000pt;}
.ws13{word-spacing:-8.304000pt;}
.ws85{word-spacing:-8.000000pt;}
.ws81{word-spacing:-7.960000pt;}
.ws4a{word-spacing:-7.831200pt;}
.ws77{word-spacing:-7.581600pt;}
.ws6d{word-spacing:-7.550400pt;}
.ws56{word-spacing:-7.519200pt;}
.ws2d{word-spacing:-7.488000pt;}
.ws2b{word-spacing:-7.456800pt;}
.ws29{word-spacing:-7.425600pt;}
.ws28{word-spacing:-7.394400pt;}
.ws74{word-spacing:-7.363200pt;}
.ws53{word-spacing:-7.332000pt;}
.ws6c{word-spacing:-7.300800pt;}
.ws7{word-spacing:-7.269600pt;}
.ws2c{word-spacing:-7.238400pt;}
.ws25{word-spacing:-7.207200pt;}
.ws58{word-spacing:-7.176000pt;}
.ws31{word-spacing:-7.144800pt;}
.ws3{word-spacing:-7.141333pt;}
.ws6e{word-spacing:-7.113600pt;}
.ws22{word-spacing:-7.082400pt;}
.ws27{word-spacing:-7.051200pt;}
.ws54{word-spacing:-7.020000pt;}
.ws66{word-spacing:-6.988800pt;}
.ws24{word-spacing:-6.957600pt;}
.ws6b{word-spacing:-6.926400pt;}
.ws23{word-spacing:-6.801600pt;}
.ws8{word-spacing:-5.893333pt;}
.ws78{word-spacing:-5.440000pt;}
.wsc{word-spacing:-4.746667pt;}
.wsb4{word-spacing:-3.520000pt;}
.wse{word-spacing:-3.413333pt;}
.wsb{word-spacing:-3.200000pt;}
.wsa{word-spacing:-2.912000pt;}
.ws21{word-spacing:-2.453333pt;}
.ws1{word-spacing:-2.346667pt;}
.ws33{word-spacing:-2.256000pt;}
.ws43{word-spacing:-1.680000pt;}
.ws7b{word-spacing:-1.653333pt;}
.ws11{word-spacing:-1.632000pt;}
.ws7c{word-spacing:-1.584000pt;}
.ws47{word-spacing:-1.488000pt;}
.ws1b{word-spacing:-1.450667pt;}
.ws5e{word-spacing:-1.440000pt;}
.ws92{word-spacing:-1.400000pt;}
.ws46{word-spacing:-1.392000pt;}
.ws8d{word-spacing:-1.360000pt;}
.ws5f{word-spacing:-1.344000pt;}
.ws64{word-spacing:-1.296000pt;}
.ws34{word-spacing:-1.248000pt;}
.ws72{word-spacing:-1.200000pt;}
.ws49{word-spacing:-1.152000pt;}
.wsd{word-spacing:-1.120000pt;}
.ws15{word-spacing:-1.104000pt;}
.wsac{word-spacing:-1.080000pt;}
.ws4d{word-spacing:-1.066667pt;}
.ws52{word-spacing:-1.056000pt;}
.wsa7{word-spacing:-1.040000pt;}
.ws67{word-spacing:-1.008000pt;}
.ws71{word-spacing:-0.960000pt;}
.ws8c{word-spacing:-0.920000pt;}
.ws68{word-spacing:-0.912000pt;}
.wsa0{word-spacing:-0.880000pt;}
.wsb5{word-spacing:-0.864000pt;}
.ws7a{word-spacing:-0.816000pt;}
.ws70{word-spacing:-0.768000pt;}
.ws96{word-spacing:-0.760000pt;}
.ws61{word-spacing:-0.746667pt;}
.ws1d{word-spacing:-0.725333pt;}
.ws40{word-spacing:-0.720000pt;}
.wsab{word-spacing:-0.680000pt;}
.ws6f{word-spacing:-0.672000pt;}
.ws9b{word-spacing:-0.640000pt;}
.wsa6{word-spacing:-0.600000pt;}
.ws1f{word-spacing:-0.589333pt;}
.ws16{word-spacing:-0.576000pt;}
.wsae{word-spacing:-0.560000pt;}
.ws7e{word-spacing:-0.533333pt;}
.wsf{word-spacing:-0.528000pt;}
.ws9f{word-spacing:-0.520000pt;}
.ws10{word-spacing:-0.480000pt;}
.ws1a{word-spacing:-0.453333pt;}
.ws93{word-spacing:-0.440000pt;}
.ws3b{word-spacing:-0.432000pt;}
.ws9d{word-spacing:-0.400000pt;}
.ws3d{word-spacing:-0.384000pt;}
.ws99{word-spacing:-0.360000pt;}
.ws17{word-spacing:-0.336000pt;}
.ws8f{word-spacing:-0.320000pt;}
.ws36{word-spacing:-0.288000pt;}
.ws8e{word-spacing:-0.280000pt;}
.ws60{word-spacing:-0.240000pt;}
.ws7d{word-spacing:-0.213333pt;}
.ws39{word-spacing:-0.192000pt;}
.ws20{word-spacing:-0.181333pt;}
.wsad{word-spacing:-0.160000pt;}
.ws5b{word-spacing:-0.144000pt;}
.ws8b{word-spacing:-0.106667pt;}
.ws69{word-spacing:-0.096000pt;}
.ws18{word-spacing:-0.090667pt;}
.ws5{word-spacing:-0.048000pt;}
.wsaf{word-spacing:-0.040000pt;}
.ws48{word-spacing:-0.031200pt;}
.ws9{word-spacing:0.000000pt;}
.ws94{word-spacing:0.040000pt;}
.ws1c{word-spacing:0.045333pt;}
.ws38{word-spacing:0.048000pt;}
.ws19{word-spacing:0.090667pt;}
.ws45{word-spacing:0.096000pt;}
.ws14{word-spacing:0.144000pt;}
.ws5c{word-spacing:0.160000pt;}
.ws35{word-spacing:0.192000pt;}
.ws42{word-spacing:0.213333pt;}
.ws12{word-spacing:0.240000pt;}
.ws9a{word-spacing:0.280000pt;}
.ws5a{word-spacing:0.288000pt;}
.ws44{word-spacing:0.336000pt;}
.ws90{word-spacing:0.360000pt;}
.ws3a{word-spacing:0.384000pt;}
.ws98{word-spacing:0.400000pt;}
.ws51{word-spacing:0.432000pt;}
.ws3c{word-spacing:0.528000pt;}
.ws63{word-spacing:0.576000pt;}
.ws3f{word-spacing:0.624000pt;}
.ws9e{word-spacing:0.640000pt;}
.ws95{word-spacing:0.680000pt;}
.ws6a{word-spacing:0.720000pt;}
.ws91{word-spacing:0.760000pt;}
.ws62{word-spacing:0.768000pt;}
.ws7f{word-spacing:0.800000pt;}
.ws1e{word-spacing:0.816000pt;}
.ws97{word-spacing:0.880000pt;}
.ws5d{word-spacing:0.912000pt;}
.wsb0{word-spacing:0.920000pt;}
.wsa8{word-spacing:0.960000pt;}
.wsb3{word-spacing:1.008000pt;}
.wsa9{word-spacing:1.120000pt;}
.wsb1{word-spacing:1.152000pt;}
.ws50{word-spacing:1.248000pt;}
.ws4e{word-spacing:1.536000pt;}
.ws4f{word-spacing:1.728000pt;}
.wsaa{word-spacing:1.800000pt;}
.ws37{word-spacing:1.872000pt;}
.wsb2{word-spacing:2.064000pt;}
.ws59{word-spacing:2.304000pt;}
.ws9c{word-spacing:3.040000pt;}
._c{margin-left:-11.408000pt;}
._9{margin-left:-9.349867pt;}
._6{margin-left:-8.113067pt;}
._7{margin-left:-7.131733pt;}
._5{margin-left:-5.661867pt;}
._4{margin-left:-4.033067pt;}
._1{margin-left:-2.939733pt;}
._0{margin-left:-1.578667pt;}
._2{width:1.704533pt;}
._b{width:2.747200pt;}
._3{width:3.638933pt;}
._a{width:4.854400pt;}
._d{width:7.358400pt;}
._10{width:8.366400pt;}
._8{width:9.440533pt;}
._11{width:41.817067pt;}
._e{width:42.798933pt;}
._f{width:44.106133pt;}
.fs7{font-size:29.466667pt;}
.fs6{font-size:31.200000pt;}
.fs4{font-size:34.666667pt;}
.fsb{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:54.666667pt;}
.fsa{font-size:58.666667pt;}
.fs9{font-size:96.000000pt;}
.fs3{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:24.175867pt;}
.y2{bottom:24.225600pt;}
.y2f{bottom:60.718133pt;}
.y18c{bottom:60.936000pt;}
.y78{bottom:60.940000pt;}
.ye5{bottom:61.150933pt;}
.y95{bottom:63.824267pt;}
.yff{bottom:65.824267pt;}
.y11d{bottom:69.152267pt;}
.y2e{bottom:74.056800pt;}
.y18b{bottom:74.268000pt;}
.y77{bottom:74.272000pt;}
.y14f{bottom:74.484267pt;}
.ye4{bottom:74.485600pt;}
.y94{bottom:77.156267pt;}
.yfe{bottom:79.156267pt;}
.yde{bottom:79.828267pt;}
.y11c{bottom:82.484267pt;}
.y1d5{bottom:82.719600pt;}
.y2d{bottom:87.384800pt;}
.y18a{bottom:87.602667pt;}
.y76{bottom:87.604000pt;}
.ye3{bottom:87.817600pt;}
.y14e{bottom:87.822933pt;}
.y93{bottom:90.488267pt;}
.y8b{bottom:90.896400pt;}
.yfd{bottom:92.488267pt;}
.ydd{bottom:93.160267pt;}
.y1d4{bottom:94.049600pt;}
.y11b{bottom:95.820267pt;}
.y189{bottom:100.934667pt;}
.y75{bottom:100.936000pt;}
.ye2{bottom:101.152267pt;}
.y14d{bottom:101.154933pt;}
.y92{bottom:103.820267pt;}
.y8a{bottom:104.228400pt;}
.y2c{bottom:104.566133pt;}
.y1d3{bottom:105.379600pt;}
.yfc{bottom:105.820267pt;}
.ydc{bottom:106.492267pt;}
.y11a{bottom:109.152267pt;}
.y2b{bottom:114.056800pt;}
.y188{bottom:114.266667pt;}
.y74{bottom:114.268000pt;}
.ye1{bottom:114.484267pt;}
.y14c{bottom:114.486933pt;}
.y1d2{bottom:116.709600pt;}
.y91{bottom:117.152267pt;}
.y89{bottom:117.560400pt;}
.yfb{bottom:119.152267pt;}
.ydb{bottom:119.824267pt;}
.y119{bottom:122.484267pt;}
.y2a{bottom:127.384800pt;}
.y73{bottom:127.624000pt;}
.ye0{bottom:127.816267pt;}
.y14b{bottom:127.818933pt;}
.y1d1{bottom:128.039600pt;}
.y90{bottom:130.484267pt;}
.y88{bottom:130.892400pt;}
.yfa{bottom:132.484267pt;}
.yda{bottom:133.156267pt;}
.y118{bottom:135.818933pt;}
.y1d0{bottom:139.369600pt;}
.y29{bottom:140.718133pt;}
.y72{bottom:140.956000pt;}
.y187{bottom:140.972000pt;}
.ydf{bottom:141.149600pt;}
.y14a{bottom:141.150933pt;}
.y8f{bottom:143.817600pt;}
.y87{bottom:144.224400pt;}
.yf9{bottom:145.818933pt;}
.yd9{bottom:146.488267pt;}
.y117{bottom:149.150933pt;}
.y1cf{bottom:150.699600pt;}
.y28{bottom:154.051467pt;}
.y71{bottom:154.288000pt;}
.y186{bottom:154.304000pt;}
.y149{bottom:154.486933pt;}
.y8e{bottom:157.152267pt;}
.y86{bottom:157.556400pt;}
.yf8{bottom:159.150933pt;}
.yd8{bottom:159.820267pt;}
.y1ce{bottom:162.029600pt;}
.y116{bottom:162.485600pt;}
.y70{bottom:167.620000pt;}
.y185{bottom:167.637333pt;}
.y148{bottom:167.818933pt;}
.y8d{bottom:170.484267pt;}
.y85{bottom:170.888400pt;}
.y27{bottom:171.232800pt;}
.yf7{bottom:172.488267pt;}
.yd7{bottom:173.152267pt;}
.y1cd{bottom:173.359600pt;}
.y115{bottom:175.817600pt;}
.y6f{bottom:180.952000pt;}
.y184{bottom:180.970667pt;}
.y147{bottom:181.150933pt;}
.y8c{bottom:183.816267pt;}
.y84{bottom:184.220400pt;}
.y1cc{bottom:184.689600pt;}
.yf6{bottom:185.820267pt;}
.yd6{bottom:186.484267pt;}
.yf2{bottom:186.727067pt;}
.y114{bottom:189.154933pt;}
.y6e{bottom:194.284000pt;}
.y183{bottom:194.302667pt;}
.y146{bottom:194.489600pt;}
.y1cb{bottom:196.019600pt;}
.y83{bottom:197.552400pt;}
.yf5{bottom:199.152267pt;}
.yd5{bottom:199.818933pt;}
.yf1{bottom:200.059067pt;}
.y26{bottom:200.612267pt;}
.y113{bottom:202.486933pt;}
.y1ca{bottom:207.349600pt;}
.y6d{bottom:207.616000pt;}
.y145{bottom:207.821600pt;}
.y82{bottom:210.884400pt;}
.yf4{bottom:212.484267pt;}
.yd4{bottom:213.150933pt;}
.yf0{bottom:213.391067pt;}
.y25{bottom:213.944267pt;}
.y112{bottom:215.818933pt;}
.y1c9{bottom:218.679600pt;}
.y6c{bottom:220.948000pt;}
.y182{bottom:221.017467pt;}
.y144{bottom:221.153600pt;}
.y81{bottom:224.216400pt;}
.yf3{bottom:225.816267pt;}
.yd3{bottom:226.485600pt;}
.yef{bottom:226.723067pt;}
.y24{bottom:227.276267pt;}
.y111{bottom:229.150933pt;}
.y1c8{bottom:230.009600pt;}
.y6b{bottom:234.280000pt;}
.y181{bottom:234.349467pt;}
.y143{bottom:234.485600pt;}
.y80{bottom:237.548400pt;}
.ya5{bottom:237.560400pt;}
.yd2{bottom:239.817600pt;}
.yee{bottom:240.055067pt;}
.y23{bottom:240.614933pt;}
.y1c7{bottom:241.339600pt;}
.y110{bottom:242.488267pt;}
.y6a{bottom:247.612000pt;}
.y180{bottom:247.681467pt;}
.y142{bottom:247.817600pt;}
.y7f{bottom:250.880400pt;}
.ya4{bottom:250.892400pt;}
.y1c6{bottom:252.669600pt;}
.yd0{bottom:253.150933pt;}
.yed{bottom:253.387067pt;}
.y22{bottom:253.946933pt;}
.y10f{bottom:255.820267pt;}
.y20d{bottom:256.488267pt;}
.yd1{bottom:257.229600pt;}
.y69{bottom:260.944000pt;}
.y17f{bottom:261.013467pt;}
.y141{bottom:261.152267pt;}
.y1c5{bottom:263.999600pt;}
.y7d{bottom:264.217733pt;}
.ya3{bottom:264.224400pt;}
.ycf{bottom:266.482933pt;}
.yeb{bottom:266.725733pt;}
.y21{bottom:267.278933pt;}
.y7e{bottom:268.292400pt;}
.y10e{bottom:269.152267pt;}
.y20c{bottom:269.820267pt;}
.yec{bottom:270.799067pt;}
.y68{bottom:274.276000pt;}
.y17e{bottom:274.345467pt;}
.y140{bottom:274.484267pt;}
.y1c4{bottom:275.329600pt;}
.y7c{bottom:277.549733pt;}
.ya2{bottom:277.556400pt;}
.y10b{bottom:277.660400pt;}
.yea{bottom:280.057733pt;}
.y20{bottom:280.610933pt;}
.y10d{bottom:282.484267pt;}
.y20b{bottom:283.152267pt;}
.y1c3{bottom:286.659600pt;}
.y67{bottom:287.608000pt;}
.y17d{bottom:287.677467pt;}
.y13f{bottom:287.817600pt;}
.y7b{bottom:290.881733pt;}
.ya1{bottom:290.888400pt;}
.y10a{bottom:290.992400pt;}
.ye9{bottom:293.389733pt;}
.y1f{bottom:293.942933pt;}
.y10c{bottom:295.816267pt;}
.yce{bottom:295.826933pt;}
.y20a{bottom:296.484267pt;}
.y1c2{bottom:297.989600pt;}
.y66{bottom:300.940000pt;}
.y17c{bottom:301.009467pt;}
.y13e{bottom:301.152267pt;}
.y7a{bottom:304.213733pt;}
.ya0{bottom:304.220400pt;}
.y109{bottom:304.324400pt;}
.ye8{bottom:306.721733pt;}
.y1e{bottom:307.277600pt;}
.ycd{bottom:309.158933pt;}
.y1c1{bottom:309.319600pt;}
.y209{bottom:309.816267pt;}
.y65{bottom:314.272000pt;}
.y17b{bottom:314.341467pt;}
.y13d{bottom:314.484267pt;}
.y79{bottom:317.545733pt;}
.y9f{bottom:317.552400pt;}
.y108{bottom:317.656400pt;}
.ye7{bottom:320.053733pt;}
.y1d{bottom:320.609600pt;}
.y1c0{bottom:320.649600pt;}
.ycc{bottom:322.490933pt;}
.y64{bottom:327.604000pt;}
.y17a{bottom:327.673467pt;}
.y13b{bottom:327.817600pt;}
.y208{bottom:329.153600pt;}
.y9e{bottom:330.884400pt;}
.y107{bottom:330.988400pt;}
.y13c{bottom:331.896267pt;}
.y1bf{bottom:331.979600pt;}
.ye6{bottom:333.385733pt;}
.y1c{bottom:333.942933pt;}
.ycb{bottom:335.822933pt;}
.y63{bottom:340.936000pt;}
.y179{bottom:341.005467pt;}
.y13a{bottom:341.150933pt;}
.y207{bottom:342.485600pt;}
.y1be{bottom:343.309600pt;}
.y123{bottom:343.964400pt;}
.y9d{bottom:344.216400pt;}
.y106{bottom:344.320400pt;}
.y1b{bottom:347.312267pt;}
.yca{bottom:349.154933pt;}
.y62{bottom:354.268000pt;}
.y139{bottom:354.485600pt;}
.y1bd{bottom:354.639600pt;}
.y122{bottom:357.296400pt;}
.y9c{bottom:357.548400pt;}
.y104{bottom:357.657733pt;}
.y1a{bottom:360.644267pt;}
.y105{bottom:361.732400pt;}
.y206{bottom:361.817600pt;}
.yc9{bottom:362.486933pt;}
.y1bc{bottom:365.969600pt;}
.y61{bottom:367.602667pt;}
.y178{bottom:367.709467pt;}
.y138{bottom:367.817600pt;}
.y121{bottom:370.628400pt;}
.y9b{bottom:370.880400pt;}
.y103{bottom:370.989733pt;}
.y19{bottom:373.976267pt;}
.yc8{bottom:375.818933pt;}
.y1bb{bottom:377.299600pt;}
.y60{bottom:380.934667pt;}
.y177{bottom:381.041467pt;}
.y205{bottom:381.149600pt;}
.y137{bottom:381.150933pt;}
.y120{bottom:383.960400pt;}
.y9a{bottom:384.217733pt;}
.y102{bottom:384.321733pt;}
.y1ba{bottom:388.629600pt;}
.yc7{bottom:389.150933pt;}
.y5f{bottom:394.269333pt;}
.y204{bottom:394.482933pt;}
.y136{bottom:394.486933pt;}
.y11f{bottom:397.292400pt;}
.y99{bottom:397.549733pt;}
.y101{bottom:397.653733pt;}
.y1b9{bottom:399.959600pt;}
.yc6{bottom:402.490933pt;}
.y5e{bottom:407.601333pt;}
.y176{bottom:407.748133pt;}
.y135{bottom:407.818933pt;}
.y11e{bottom:410.624400pt;}
.y98{bottom:410.881733pt;}
.y100{bottom:410.985733pt;}
.y1b8{bottom:411.289600pt;}
.yc5{bottom:415.822933pt;}
.y18{bottom:415.976267pt;}
.y203{bottom:418.484267pt;}
.y5d{bottom:420.933333pt;}
.y175{bottom:421.080133pt;}
.y134{bottom:421.150933pt;}
.y1b7{bottom:422.619600pt;}
.y97{bottom:424.213733pt;}
.yc4{bottom:429.154933pt;}
.y17{bottom:430.640267pt;}
.y202{bottom:431.816267pt;}
.y1b6{bottom:433.949600pt;}
.y5c{bottom:434.266667pt;}
.y174{bottom:434.412133pt;}
.y133{bottom:434.484267pt;}
.y96{bottom:437.545733pt;}
.yc3{bottom:442.486933pt;}
.y201{bottom:445.149600pt;}
.y1b5{bottom:445.279600pt;}
.y16{bottom:445.304267pt;}
.y173{bottom:447.748133pt;}
.y132{bottom:447.817600pt;}
.yc2{bottom:455.818933pt;}
.y1b4{bottom:456.609600pt;}
.y15{bottom:459.968267pt;}
.y172{bottom:461.080133pt;}
.y131{bottom:461.152267pt;}
.y5b{bottom:461.157600pt;}
.y1b3{bottom:467.939600pt;}
.yc1{bottom:469.150933pt;}
.y200{bottom:469.156267pt;}
.y171{bottom:474.412133pt;}
.y130{bottom:474.484267pt;}
.y5a{bottom:474.489600pt;}
.y14{bottom:474.632267pt;}
.y1b2{bottom:479.269600pt;}
.yc0{bottom:482.485600pt;}
.y1ff{bottom:482.488267pt;}
.y170{bottom:487.744133pt;}
.y12f{bottom:487.818933pt;}
.y59{bottom:487.821600pt;}
.y13{bottom:489.296267pt;}
.y1b1{bottom:490.599600pt;}
.ybf{bottom:495.817600pt;}
.y1fe{bottom:495.820267pt;}
.y12e{bottom:501.150933pt;}
.y58{bottom:501.153600pt;}
.y1b0{bottom:501.929600pt;}
.y12{bottom:503.960267pt;}
.ybe{bottom:509.149600pt;}
.y1fd{bottom:509.152267pt;}
.y1af{bottom:513.259600pt;}
.y16f{bottom:514.452133pt;}
.y12d{bottom:514.484267pt;}
.y57{bottom:514.485600pt;}
.y11{bottom:518.624267pt;}
.y1fc{bottom:522.484267pt;}
.y1ae{bottom:524.589600pt;}
.y16e{bottom:527.784133pt;}
.y56{bottom:527.817600pt;}
.y12c{bottom:527.822933pt;}
.y10{bottom:533.288267pt;}
.y1fb{bottom:535.816267pt;}
.y1ad{bottom:535.919600pt;}
.ybd{bottom:538.488267pt;}
.y16d{bottom:541.116133pt;}
.y55{bottom:541.152267pt;}
.y12b{bottom:541.154933pt;}
.y1ac{bottom:547.249600pt;}
.yf{bottom:547.952267pt;}
.y1fa{bottom:549.149600pt;}
.ybc{bottom:551.820267pt;}
.y16c{bottom:554.448133pt;}
.y54{bottom:554.484267pt;}
.y12a{bottom:554.486933pt;}
.y1ab{bottom:558.579600pt;}
.ye{bottom:562.616267pt;}
.ybb{bottom:565.152267pt;}
.y16b{bottom:567.782800pt;}
.y53{bottom:567.818933pt;}
.y1aa{bottom:569.909600pt;}
.y1f9{bottom:573.266267pt;}
.yd{bottom:577.280267pt;}
.yba{bottom:578.484267pt;}
.y16a{bottom:581.114800pt;}
.y52{bottom:581.150933pt;}
.y1a9{bottom:581.239600pt;}
.y1f8{bottom:584.596267pt;}
.yb9{bottom:591.824267pt;}
.yc{bottom:591.944267pt;}
.y1a8{bottom:592.569600pt;}
.y169{bottom:594.448133pt;}
.y51{bottom:594.484267pt;}
.y129{bottom:594.485600pt;}
.y1f7{bottom:595.926267pt;}
.y1a7{bottom:603.899600pt;}
.yb8{bottom:605.156267pt;}
.yb{bottom:606.608267pt;}
.y1f6{bottom:607.256267pt;}
.y168{bottom:607.784133pt;}
.y50{bottom:607.817600pt;}
.y1a6{bottom:615.229600pt;}
.yb7{bottom:618.488267pt;}
.y1f5{bottom:618.586267pt;}
.y167{bottom:621.116133pt;}
.y128{bottom:621.150933pt;}
.y4f{bottom:621.156267pt;}
.y1a5{bottom:626.559600pt;}
.y1f4{bottom:629.916267pt;}
.yb6{bottom:631.820267pt;}
.ya{bottom:633.274933pt;}
.y166{bottom:634.448133pt;}
.y127{bottom:634.486933pt;}
.y4e{bottom:634.488267pt;}
.y1a4{bottom:637.889600pt;}
.y1f3{bottom:641.246267pt;}
.yb5{bottom:645.152267pt;}
.y165{bottom:647.786800pt;}
.y126{bottom:647.818933pt;}
.y4d{bottom:647.820267pt;}
.y1a3{bottom:649.219600pt;}
.y9{bottom:649.274933pt;}
.y1f2{bottom:652.576267pt;}
.yb4{bottom:658.484267pt;}
.y1a2{bottom:660.549600pt;}
.y164{bottom:661.118800pt;}
.y125{bottom:661.150933pt;}
.y4c{bottom:661.152267pt;}
.y1f1{bottom:663.906267pt;}
.y8{bottom:665.274933pt;}
.yb2{bottom:671.817600pt;}
.y1a1{bottom:671.879600pt;}
.y32{bottom:672.933333pt;}
.y163{bottom:674.450800pt;}
.y4b{bottom:674.484267pt;}
.y1f0{bottom:675.236267pt;}
.yb3{bottom:675.896267pt;}
.y1a0{bottom:683.209600pt;}
.yb1{bottom:685.152267pt;}
.y1ef{bottom:686.566267pt;}
.y162{bottom:687.782800pt;}
.y124{bottom:687.816267pt;}
.y4a{bottom:687.817600pt;}
.y31{bottom:691.600000pt;}
.y19f{bottom:694.539600pt;}
.y7{bottom:694.592267pt;}
.y1ee{bottom:697.896267pt;}
.yb0{bottom:698.484267pt;}
.y161{bottom:701.114800pt;}
.y49{bottom:701.150933pt;}
.y19e{bottom:705.869600pt;}
.y1ed{bottom:709.226267pt;}
.y30{bottom:710.266667pt;}
.yaf{bottom:711.818933pt;}
.y160{bottom:714.448133pt;}
.y48{bottom:714.486933pt;}
.y19d{bottom:717.199600pt;}
.y1ec{bottom:720.556267pt;}
.yae{bottom:725.150933pt;}
.y15e{bottom:727.781467pt;}
.y47{bottom:727.818933pt;}
.y19c{bottom:728.529600pt;}
.y15f{bottom:731.860133pt;}
.y1eb{bottom:731.886267pt;}
.y6{bottom:734.597600pt;}
.y151{bottom:738.293733pt;}
.yad{bottom:738.485600pt;}
.y19b{bottom:739.859600pt;}
.y15d{bottom:741.114800pt;}
.y46{bottom:741.150933pt;}
.y1ea{bottom:743.216267pt;}
.y19a{bottom:751.189600pt;}
.y150{bottom:751.625733pt;}
.yac{bottom:751.817600pt;}
.y15c{bottom:754.446800pt;}
.y45{bottom:754.485600pt;}
.y1e9{bottom:754.546267pt;}
.y199{bottom:762.519600pt;}
.yab{bottom:765.149600pt;}
.y1e8{bottom:765.876267pt;}
.y15b{bottom:767.780133pt;}
.y44{bottom:767.817600pt;}
.y198{bottom:773.849600pt;}
.y5{bottom:774.602933pt;}
.y1e7{bottom:777.206267pt;}
.y43{bottom:781.152267pt;}
.y197{bottom:785.179600pt;}
.y1e6{bottom:788.536267pt;}
.y42{bottom:794.484267pt;}
.yaa{bottom:794.485600pt;}
.y15a{bottom:794.494933pt;}
.y196{bottom:796.509600pt;}
.y1e5{bottom:799.866267pt;}
.y41{bottom:807.817600pt;}
.y159{bottom:807.826933pt;}
.y195{bottom:807.839600pt;}
.y1e4{bottom:811.196267pt;}
.y4{bottom:814.608267pt;}
.y194{bottom:819.169600pt;}
.y40{bottom:821.150933pt;}
.ya9{bottom:821.152267pt;}
.y158{bottom:821.158933pt;}
.y1e3{bottom:822.526267pt;}
.y33{bottom:823.475200pt;}
.y193{bottom:830.499600pt;}
.y1e2{bottom:833.856267pt;}
.ya8{bottom:834.484267pt;}
.y3f{bottom:834.485600pt;}
.y157{bottom:834.490933pt;}
.y192{bottom:841.829600pt;}
.y1e1{bottom:845.186267pt;}
.y3e{bottom:847.817600pt;}
.ya7{bottom:847.821600pt;}
.y156{bottom:847.822933pt;}
.y191{bottom:853.159600pt;}
.y1e0{bottom:856.516267pt;}
.y3d{bottom:861.153600pt;}
.y155{bottom:861.154933pt;}
.y190{bottom:864.489600pt;}
.y1df{bottom:867.846267pt;}
.y3c{bottom:874.485600pt;}
.y154{bottom:874.486933pt;}
.y18f{bottom:875.819600pt;}
.y1de{bottom:879.176267pt;}
.y18e{bottom:887.149600pt;}
.y3b{bottom:887.817600pt;}
.y153{bottom:887.818933pt;}
.y1dd{bottom:890.506267pt;}
.y18d{bottom:898.482933pt;}
.ya6{bottom:901.150933pt;}
.y3a{bottom:901.156267pt;}
.y1dc{bottom:901.836267pt;}
.y1db{bottom:913.166267pt;}
.y152{bottom:914.484267pt;}
.y39{bottom:914.488267pt;}
.y1da{bottom:924.496267pt;}
.y38{bottom:927.820267pt;}
.y1d9{bottom:935.826267pt;}
.y37{bottom:941.152267pt;}
.y1d8{bottom:947.156267pt;}
.y36{bottom:954.484267pt;}
.y1d7{bottom:958.486267pt;}
.y35{bottom:967.816267pt;}
.y1d6{bottom:969.816267pt;}
.y34{bottom:1013.202667pt;}
.y3{bottom:1013.446133pt;}
.he{height:21.193555pt;}
.h16{height:22.339200pt;}
.h1f{height:28.640000pt;}
.h3{height:30.687500pt;}
.h10{height:32.605469pt;}
.h8{height:34.368000pt;}
.h7{height:34.523438pt;}
.h19{height:36.000000pt;}
.h11{height:36.564221pt;}
.hf{height:36.585555pt;}
.h1b{height:38.331200pt;}
.h1c{height:38.341867pt;}
.h2{height:38.359375pt;}
.h9{height:38.509867pt;}
.h15{height:38.562667pt;}
.h18{height:38.627200pt;}
.hc{height:38.632533pt;}
.h17{height:38.637867pt;}
.hd{height:38.643200pt;}
.h1e{height:38.648000pt;}
.hb{height:38.648533pt;}
.ha{height:38.653867pt;}
.h1d{height:38.658667pt;}
.h13{height:38.659200pt;}
.h1a{height:39.216000pt;}
.h4{height:39.318359pt;}
.h14{height:42.195312pt;}
.h6{height:43.066927pt;}
.h12{height:69.046875pt;}
.h5{height:99.734375pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:54.392400pt;}
.x6{left:59.314133pt;}
.x7{left:83.762133pt;}
.x8{left:125.291333pt;}
.x4{left:207.516800pt;}
.x11{left:212.437467pt;}
.x5{left:223.504000pt;}
.xf{left:253.812533pt;}
.x12{left:266.976533pt;}
.x9{left:317.398267pt;}
.xb{left:360.582400pt;}
.xd{left:364.029067pt;}
.xe{left:495.780533pt;}
.x3{left:519.632533pt;}
.x10{left:725.336533pt;}
.xc{left:729.076533pt;}
.xa{left:732.628800pt;}
.x1{left:733.540267pt;}
}




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