
    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_4810ab08cd947d0684a820ec.woff')format("woff");}.ff1{font-family:ff1;line-height:1.172363;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_d88628f2df9ac4daf910c6b2.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172363;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_7bf18c73350ceaca4fd3cdf3.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_3b2e120cda25f5a3516c88f9.woff')format("woff");}.ff4{font-family:ff4;line-height:0.775879;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_c410a520326fcc8347f90847.woff')format("woff");}.ff5{font-family:ff5;line-height:1.311035;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_55bbbc04300b968cf210c3e6.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6202f95a847faf3dc307b58a.woff')format("woff");}.ff7{font-family:ff7;line-height:1.072754;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_8cea118b919525291876cf14.woff')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_71817ec07b2f789c7bddc22f.woff')format("woff");}.ff9{font-family:ff9;line-height:0.956543;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_47c4b6f7fea9aa0342c911aa.woff')format("woff");}.ffa{font-family:ffa;line-height:1.402354;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_3b0e652d6463ab7feccc7fcb.woff')format("woff");}.ffb{font-family:ffb;line-height:1.401855;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_974d9483cb40dd56708571c6.woff')format("woff");}.ffc{font-family:ffc;line-height:0.916016;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_2968935ea69234ec2b231cd9.woff')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_c8f2cbe76de78a6b204a06fd.woff')format("woff");}.ffe{font-family:ffe;line-height:0.758789;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_909d8d5d04e644bfcc267e0d.woff')format("woff");}.fff{font-family:fff;line-height:0.978027;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_61ee79b516243071a95fa690.woff')format("woff");}.ff10{font-family:ff10;line-height:1.284180;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_a3f1f22878fadfb50809c4ec.woff')format("woff");}.ff11{font-family:ff11;line-height:0.901855;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_2656f4930447747b0f6b1b08.woff')format("woff");}.ff12{font-family:ff12;line-height:1.284668;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);}
.mb{transform:matrix(0.280998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280998,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.282407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282407,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.291138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291138,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.314174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314174,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.323457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323457,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.337960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337960,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.344074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344074,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.364366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364366,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.378248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378248,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.378573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378573,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.389401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389401,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.405037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405037,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.439457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439457,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.469672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469672,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);}
.v1{vertical-align:-69.120000px;}
.v8{vertical-align:-58.080606px;}
.v9{vertical-align:-30.297961px;}
.v5{vertical-align:-27.925816px;}
.v4{vertical-align:-19.746508px;}
.v3{vertical-align:-18.000000px;}
.va{vertical-align:-15.846543px;}
.vc{vertical-align:-11.673351px;}
.v2{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:18.478509px;}
.v6{vertical-align:20.880000px;}
.v7{vertical-align:23.037779px;}
.ls59{letter-spacing:-2.407436px;}
.ls5a{letter-spacing:-2.381136px;}
.ls56{letter-spacing:-2.073108px;}
.ls5c{letter-spacing:-1.678348px;}
.ls3e{letter-spacing:-1.390302px;}
.ls3f{letter-spacing:-1.260000px;}
.ls57{letter-spacing:-1.153349px;}
.ls55{letter-spacing:-1.041950px;}
.ls24{letter-spacing:-1.014000px;}
.ls58{letter-spacing:-0.481395px;}
.ls5b{letter-spacing:-0.378015px;}
.ls18{letter-spacing:-0.291600px;}
.ls3c{letter-spacing:-0.195000px;}
.ls22{letter-spacing:-0.177600px;}
.ls3b{letter-spacing:-0.129600px;}
.lsb{letter-spacing:-0.058320px;}
.ls3d{letter-spacing:-0.053280px;}
.lsa{letter-spacing:0.000000px;}
.ls43{letter-spacing:0.053280px;}
.ls20{letter-spacing:0.064800px;}
.ls2e{letter-spacing:0.070560px;}
.ls31{letter-spacing:0.106800px;}
.ls2{letter-spacing:0.126720px;}
.ls15{letter-spacing:0.129600px;}
.ls5d{letter-spacing:0.135600px;}
.ls23{letter-spacing:0.154800px;}
.ls47{letter-spacing:0.163673px;}
.ls1{letter-spacing:0.180000px;}
.ls21{letter-spacing:0.180600px;}
.ls4b{letter-spacing:0.206640px;}
.ls48{letter-spacing:0.251739px;}
.ls1f{letter-spacing:0.259800px;}
.ls7{letter-spacing:0.259920px;}
.ls44{letter-spacing:0.298800px;}
.ls5e{letter-spacing:0.300000px;}
.ls30{letter-spacing:0.331800px;}
.ls50{letter-spacing:0.331920px;}
.ls0{letter-spacing:0.360000px;}
.ls19{letter-spacing:0.428400px;}
.ls25{letter-spacing:0.460200px;}
.ls35{letter-spacing:0.540000px;}
.ls4e{letter-spacing:0.720000px;}
.ls4d{letter-spacing:0.793440px;}
.ls17{letter-spacing:0.876000px;}
.ls9{letter-spacing:0.900000px;}
.ls34{letter-spacing:0.924000px;}
.ls12{letter-spacing:1.620000px;}
.ls63{letter-spacing:2.106720px;}
.ls29{letter-spacing:2.316000px;}
.ls16{letter-spacing:2.340000px;}
.ls52{letter-spacing:2.520000px;}
.ls10{letter-spacing:3.060000px;}
.ls5{letter-spacing:3.780000px;}
.ls6{letter-spacing:3.900000px;}
.ls2b{letter-spacing:4.500000px;}
.ls36{letter-spacing:4.680000px;}
.ls1c{letter-spacing:5.220000px;}
.ls8{letter-spacing:5.940000px;}
.ls1d{letter-spacing:6.660000px;}
.ls26{letter-spacing:7.146720px;}
.ls37{letter-spacing:7.380000px;}
.ls13{letter-spacing:8.100000px;}
.ls1a{letter-spacing:8.820000px;}
.ls1b{letter-spacing:9.540000px;}
.ls5f{letter-spacing:10.260000px;}
.ls14{letter-spacing:10.980000px;}
.lsc{letter-spacing:11.700000px;}
.lsf{letter-spacing:12.420000px;}
.ls27{letter-spacing:13.140000px;}
.ls4{letter-spacing:14.580000px;}
.ls51{letter-spacing:14.760000px;}
.ls2d{letter-spacing:15.300000px;}
.ls11{letter-spacing:17.460000px;}
.lsd{letter-spacing:19.800000px;}
.ls32{letter-spacing:21.060000px;}
.ls2c{letter-spacing:21.780000px;}
.ls61{letter-spacing:31.602720px;}
.ls62{letter-spacing:31.626720px;}
.ls2a{letter-spacing:41.220000px;}
.ls64{letter-spacing:45.540000px;}
.ls60{letter-spacing:49.602720px;}
.ls3a{letter-spacing:56.340000px;}
.ls54{letter-spacing:56.826720px;}
.lse{letter-spacing:57.060000px;}
.ls38{letter-spacing:71.460000px;}
.ls46{letter-spacing:100.835085px;}
.ls49{letter-spacing:103.860000px;}
.ls33{letter-spacing:147.060000px;}
.ls2f{letter-spacing:148.266720px;}
.ls41{letter-spacing:148.972417px;}
.ls65{letter-spacing:156.600000px;}
.ls39{letter-spacing:197.460000px;}
.ls3{letter-spacing:314.820000px;}
.ls42{letter-spacing:391.860000px;}
.ls40{letter-spacing:465.367835px;}
.ls53{letter-spacing:763.700826px;}
.ls4c{letter-spacing:839.160000px;}
.ls28{letter-spacing:853.560000px;}
.ls45{letter-spacing:862.472111px;}
.ls4f{letter-spacing:908.656668px;}
.ls4a{letter-spacing:968.217981px;}
.ls1e{letter-spacing:1866.900000px;}
.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;}
}
.ws3a{word-spacing:-40.495402px;}
.ws17{word-spacing:-35.880262px;}
.wsc{word-spacing:-32.808240px;}
.ws23{word-spacing:-32.110273px;}
.ws1f{word-spacing:-30.182492px;}
.ws3d{word-spacing:-27.713399px;}
.ws2b{word-spacing:-26.494147px;}
.ws28{word-spacing:-24.127415px;}
.wsd{word-spacing:-17.256000px;}
.wse{word-spacing:-16.613280px;}
.ws10{word-spacing:-15.864000px;}
.wsb{word-spacing:-15.400200px;}
.ws4{word-spacing:-15.300000px;}
.wsf{word-spacing:-15.271800px;}
.ws5{word-spacing:-15.199800px;}
.ws7{word-spacing:-15.120600px;}
.ws9{word-spacing:-15.094800px;}
.ws3e{word-spacing:-15.046800px;}
.ws6{word-spacing:-15.004800px;}
.ws1{word-spacing:-14.940000px;}
.ws14{word-spacing:-14.886720px;}
.ws11{word-spacing:-14.810400px;}
.ws8{word-spacing:-14.762400px;}
.ws13{word-spacing:-14.745000px;}
.ws3{word-spacing:-14.648400px;}
.wsa{word-spacing:-13.926000px;}
.ws0{word-spacing:-13.447440px;}
.ws12{word-spacing:-9.720000px;}
.ws2a{word-spacing:-0.299998px;}
.ws33{word-spacing:-0.075829px;}
.ws38{word-spacing:-0.073762px;}
.ws2c{word-spacing:-0.072907px;}
.ws35{word-spacing:-0.068526px;}
.ws1c{word-spacing:-0.062303px;}
.ws22{word-spacing:-0.058489px;}
.ws3c{word-spacing:-0.050480px;}
.ws29{word-spacing:-0.048259px;}
.ws2{word-spacing:0.000000px;}
.ws2d{word-spacing:0.408488px;}
.ws1d{word-spacing:0.979647px;}
.ws26{word-spacing:1.094860px;}
.ws15{word-spacing:1.324946px;}
.ws3b{word-spacing:1.627868px;}
.ws34{word-spacing:2.312609px;}
.ws32{word-spacing:2.331606px;}
.ws27{word-spacing:10.210028px;}
.ws2f{word-spacing:83.489835px;}
.ws20{word-spacing:84.244439px;}
.ws18{word-spacing:90.446458px;}
.ws1e{word-spacing:99.880467px;}
.ws21{word-spacing:101.851975px;}
.ws16{word-spacing:108.382525px;}
.ws19{word-spacing:109.404541px;}
.ws24{word-spacing:112.216445px;}
.ws1a{word-spacing:120.464175px;}
.ws37{word-spacing:121.983713px;}
.ws31{word-spacing:186.604230px;}
.ws25{word-spacing:259.790356px;}
.ws1b{word-spacing:278.447905px;}
.ws36{word-spacing:310.043990px;}
.ws2e{word-spacing:416.073055px;}
.ws30{word-spacing:420.524801px;}
.ws39{word-spacing:656.681955px;}
._73{margin-left:-656.017721px;}
._5f{margin-left:-543.555983px;}
._6a{margin-left:-489.134200px;}
._72{margin-left:-387.427105px;}
._74{margin-left:-373.979879px;}
._6b{margin-left:-367.517911px;}
._42{margin-left:-336.527645px;}
._6d{margin-left:-324.691632px;}
._45{margin-left:-307.255942px;}
._66{margin-left:-295.742607px;}
._75{margin-left:-284.900552px;}
._38{margin-left:-260.123118px;}
._35{margin-left:-256.814537px;}
._60{margin-left:-254.004598px;}
._43{margin-left:-249.362161px;}
._4d{margin-left:-243.218926px;}
._4a{margin-left:-240.120213px;}
._47{margin-left:-236.537714px;}
._5b{margin-left:-235.163586px;}
._63{margin-left:-234.126441px;}
._64{margin-left:-230.719619px;}
._68{margin-left:-228.393086px;}
._46{margin-left:-224.751471px;}
._44{margin-left:-222.313426px;}
._56{margin-left:-211.433912px;}
._34{margin-left:-210.066726px;}
._48{margin-left:-208.361851px;}
._6f{margin-left:-207.270101px;}
._61{margin-left:-200.615917px;}
._49{margin-left:-196.566671px;}
._5c{margin-left:-194.701583px;}
._5d{margin-left:-193.110798px;}
._5a{margin-left:-188.905040px;}
._7d{margin-left:-187.111806px;}
._37{margin-left:-180.396931px;}
._67{margin-left:-178.518998px;}
._39{margin-left:-171.455891px;}
._4c{margin-left:-168.731658px;}
._6c{margin-left:-165.319157px;}
._4e{margin-left:-160.166491px;}
._6e{margin-left:-157.589059px;}
._2f{margin-left:-155.181810px;}
._78{margin-left:-147.205579px;}
._7a{margin-left:-145.468902px;}
._52{margin-left:-142.804496px;}
._36{margin-left:-138.899229px;}
._69{margin-left:-136.855545px;}
._30{margin-left:-135.248852px;}
._4b{margin-left:-129.953495px;}
._70{margin-left:-128.574321px;}
._57{margin-left:-127.020306px;}
._31{margin-left:-125.491524px;}
._3e{margin-left:-117.600528px;}
._3c{margin-left:-113.617804px;}
._3d{margin-left:-108.808956px;}
._7c{margin-left:-106.393839px;}
._7b{margin-left:-101.370032px;}
._40{margin-left:-98.364919px;}
._76{margin-left:-95.897417px;}
._59{margin-left:-87.949512px;}
._71{margin-left:-86.804981px;}
._77{margin-left:-84.092480px;}
._53{margin-left:-72.954948px;}
._4f{margin-left:-66.570112px;}
._3b{margin-left:-60.560154px;}
._51{margin-left:-59.246469px;}
._62{margin-left:-55.884817px;}
._54{margin-left:-53.015262px;}
._55{margin-left:-50.334467px;}
._65{margin-left:-48.946517px;}
._58{margin-left:-47.538844px;}
._41{margin-left:-43.820871px;}
._79{margin-left:-36.606112px;}
._50{margin-left:-31.607242px;}
._2d{margin-left:-5.516880px;}
._9{margin-left:-3.824640px;}
._7{margin-left:-2.808720px;}
._4{margin-left:-1.195200px;}
._0{width:1.015920px;}
._2{width:2.682960px;}
._5{width:3.796080px;}
._6{width:5.199120px;}
._8{width:6.215040px;}
._14{width:7.230960px;}
._13{width:8.426160px;}
._d{width:10.409520px;}
._a{width:11.498160px;}
._b{width:12.560880px;}
._19{width:13.864320px;}
._15{width:15.955920px;}
._e{width:17.452560px;}
._18{width:19.362240px;}
._1d{width:20.437920px;}
._1b{width:22.469760px;}
._1a{width:23.724720px;}
._11{width:25.756560px;}
._1e{width:27.310320px;}
._23{width:29.043360px;}
._25{width:30.795120px;}
._28{width:32.292720px;}
._1f{width:33.346080px;}
._f{width:34.780320px;}
._10{width:35.856000px;}
._17{width:37.754160px;}
._16{width:39.575280px;}
._29{width:41.473440px;}
._2c{width:42.668640px;}
._2b{width:43.744320px;}
._32{width:44.939520px;}
._24{width:46.433520px;}
._2a{width:47.449440px;}
._22{width:50.019120px;}
._12{width:55.756080px;}
._1c{width:56.831760px;}
._5e{width:58.266000px;}
._84{width:59.580720px;}
._83{width:60.656400px;}
._2e{width:66.154320px;}
._c{width:68.664240px;}
._27{width:73.982880px;}
._26{width:76.508640px;}
._80{width:85.456800px;}
._81{width:86.472720px;}
._3a{width:102.708720px;}
._3{width:103.860000px;}
._3f{width:142.990143px;}
._33{width:153.170046px;}
._87{width:156.989520px;}
._7f{width:163.795680px;}
._85{width:166.252320px;}
._82{width:167.686560px;}
._7e{width:198.435600px;}
._86{width:275.433840px;}
._20{width:849.216000px;}
._21{width:1790.268000px;}
._1{width:1819.788000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:32.905482px;}
.fs9{font-size:35.051510px;}
.fs3{font-size:38.880000px;}
.fs14{font-size:41.471753px;}
.fsf{font-size:43.947933px;}
.fs2{font-size:48.240000px;}
.fs10{font-size:48.258920px;}
.fs16{font-size:50.479780px;}
.fs17{font-size:54.000000px;}
.fsa{font-size:54.977216px;}
.fs5{font-size:55.060474px;}
.fsc{font-size:58.488658px;}
.fs0{font-size:59.760000px;}
.fs8{font-size:62.303169px;}
.fs4{font-size:65.355668px;}
.fs13{font-size:68.526170px;}
.fs11{font-size:72.907027px;}
.fse{font-size:73.044213px;}
.fs15{font-size:73.762116px;}
.fsb{font-size:74.898331px;}
.fs12{font-size:75.829483px;}
.fs7{font-size:77.808008px;}
.fs6{font-size:79.783047px;}
.fs1{font-size:108.000000px;}
.ye9{bottom:-16.950000px;}
.ye2{bottom:-1.515000px;}
.yde{bottom:-0.615000px;}
.yec{bottom:-0.390000px;}
.ye8{bottom:-0.030000px;}
.y0{bottom:0.000000px;}
.y140{bottom:1.731692px;}
.y170{bottom:1.785842px;}
.y174{bottom:1.961021px;}
.y195{bottom:2.269320px;}
.y151{bottom:2.597497px;}
.y13b{bottom:2.732536px;}
.y7a{bottom:3.240000px;}
.y7f{bottom:3.600000px;}
.y92{bottom:3.630000px;}
.y10b{bottom:3.645000px;}
.y19f{bottom:4.215429px;}
.y149{bottom:4.301737px;}
.y141{bottom:4.913081px;}
.yf0{bottom:5.325000px;}
.y177{bottom:5.687636px;}
.y181{bottom:5.722434px;}
.yee{bottom:5.865000px;}
.ycf{bottom:6.120000px;}
.y16b{bottom:6.245056px;}
.yd1{bottom:6.300000px;}
.y17a{bottom:6.332314px;}
.y164{bottom:6.333291px;}
.y13c{bottom:6.530205px;}
.y14b{bottom:6.652346px;}
.y148{bottom:6.746335px;}
.ycb{bottom:6.840000px;}
.y1a0{bottom:7.133767px;}
.y166{bottom:7.171932px;}
.yd5{bottom:7.200000px;}
.y182{bottom:9.684070px;}
.y16f{bottom:10.337980px;}
.y17b{bottom:10.716169px;}
.y196{bottom:11.157481px;}
.y173{bottom:11.352064px;}
.y105{bottom:12.060000px;}
.y96{bottom:12.240000px;}
.y10c{bottom:12.285000px;}
.y16a{bottom:12.799070px;}
.y14e{bottom:13.633800px;}
.y168{bottom:13.748028px;}
.y169{bottom:13.924133px;}
.yd6{bottom:15.840000px;}
.ydd{bottom:16.485000px;}
.yeb{bottom:16.890000px;}
.y171{bottom:17.235838px;}
.ye7{bottom:17.250000px;}
.y165{bottom:18.558515px;}
.y175{bottom:18.926555px;}
.y14d{bottom:19.768864px;}
.ye5{bottom:20.085000px;}
.y104{bottom:20.700000px;}
.y91{bottom:20.730000px;}
.y7e{bottom:20.880000px;}
.y88{bottom:20.925000px;}
.yd4{bottom:24.480000px;}
.y1fb{bottom:24.555000px;}
.y16d{bottom:25.907464px;}
.y14a{bottom:27.597096px;}
.y167{bottom:27.716872px;}
.y16c{bottom:28.113792px;}
.y163{bottom:28.202300px;}
.y156{bottom:29.340000px;}
.y8b{bottom:29.520000px;}
.y14c{bottom:29.947316px;}
.y147{bottom:30.041597px;}
.ye0{bottom:33.045000px;}
.ye4{bottom:37.230000px;}
.y8c{bottom:37.980000px;}
.y8e{bottom:38.010000px;}
.y87{bottom:38.025000px;}
.y7d{bottom:38.160000px;}
.yf3{bottom:38.205000px;}
.ycd{bottom:41.070000px;}
.y95{bottom:46.800000px;}
.yd9{bottom:48.750000px;}
.y81{bottom:55.260000px;}
.y90{bottom:55.290000px;}
.y86{bottom:55.305000px;}
.y7c{bottom:55.440000px;}
.yf2{bottom:55.485000px;}
.y1fa{bottom:65.670000px;}
.y83{bottom:72.540000px;}
.y8f{bottom:72.570000px;}
.y85{bottom:72.585000px;}
.y1f9{bottom:79.560000px;}
.y145{bottom:89.100000px;}
.y82{bottom:89.820000px;}
.y1aa{bottom:95.400000px;}
.yd7{bottom:96.300000px;}
.y19e{bottom:99.615000px;}
.yfd{bottom:100.620000px;}
.y117{bottom:105.120000px;}
.y144{bottom:106.380000px;}
.yfa{bottom:107.100000px;}
.y3d{bottom:109.080000px;}
.y1f6{bottom:109.620000px;}
.yd3{bottom:110.700000px;}
.y1a9{bottom:112.680000px;}
.yfc{bottom:115.020000px;}
.y1f8{bottom:116.610000px;}
.y116{bottom:119.520000px;}
.y19d{bottom:120.780000px;}
.y1d8{bottom:121.500000px;}
.y11c{bottom:122.400000px;}
.y143{bottom:123.660000px;}
.yf9{bottom:124.380000px;}
.y3c{bottom:126.360000px;}
.y1f5{bottom:126.900000px;}
.y1a8{bottom:129.960000px;}
.y115{bottom:137.520000px;}
.y19c{bottom:138.060000px;}
.y1d7{bottom:138.780000px;}
.y11b{bottom:139.680000px;}
.y142{bottom:140.940000px;}
.yf8{bottom:141.480000px;}
.y3b{bottom:143.460000px;}
.y1f4{bottom:144.180000px;}
.y1a7{bottom:147.060000px;}
.ycc{bottom:153.180000px;}
.y19b{bottom:155.160000px;}
.y13f{bottom:155.265000px;}
.y1d6{bottom:156.060000px;}
.y11a{bottom:156.960000px;}
.y13e{bottom:158.220000px;}
.yf7{bottom:158.760000px;}
.y3a{bottom:160.410000px;}
.ya5{bottom:161.490000px;}
.y1a6{bottom:164.370000px;}
.yfb{bottom:171.210000px;}
.y19a{bottom:172.470000px;}
.y114{bottom:172.830000px;}
.y1d5{bottom:173.370000px;}
.y119{bottom:174.270000px;}
.y13a{bottom:175.440000px;}
.yf6{bottom:176.040000px;}
.yd2{bottom:176.430000px;}
.y39{bottom:178.050000px;}
.y1f3{bottom:178.590000px;}
.ya4{bottom:178.770000px;}
.y13d{bottom:179.850000px;}
.y1a5{bottom:181.650000px;}
.yf5{bottom:185.610000px;}
.y199{bottom:189.750000px;}
.y1d4{bottom:190.470000px;}
.y113{bottom:190.830000px;}
.y118{bottom:191.370000px;}
.y38{bottom:195.330000px;}
.ya3{bottom:195.870000px;}
.y139{bottom:198.750000px;}
.y1a4{bottom:198.930000px;}
.yd0{bottom:199.650000px;}
.y198{bottom:207.030000px;}
.y1d3{bottom:207.750000px;}
.y77{bottom:208.650000px;}
.ya2{bottom:210.270000px;}
.y37{bottom:212.610000px;}
.y1f2{bottom:213.150000px;}
.y138{bottom:216.030000px;}
.y1a3{bottom:216.210000px;}
.y194{bottom:220.740000px;}
.yce{bottom:223.050000px;}
.y1d2{bottom:225.030000px;}
.y75{bottom:225.930000px;}
.y112{bottom:226.110000px;}
.y197{bottom:229.710000px;}
.y36{bottom:229.890000px;}
.y1f1{bottom:230.430000px;}
.y137{bottom:233.310000px;}
.y1a2{bottom:233.490000px;}
.y1d1{bottom:242.310000px;}
.y74{bottom:243.210000px;}
.y111{bottom:244.110000px;}
.ya1{bottom:245.550000px;}
.yca{bottom:246.270000px;}
.y35{bottom:246.990000px;}
.y1f0{bottom:247.710000px;}
.y136{bottom:250.590000px;}
.y1d0{bottom:259.590000px;}
.y73{bottom:260.490000px;}
.y110{bottom:262.110000px;}
.y34{bottom:264.270000px;}
.y1ef{bottom:264.990000px;}
.y135{bottom:267.690000px;}
.y1a1{bottom:267.870000px;}
.yc9{bottom:273.810000px;}
.y1cf{bottom:276.870000px;}
.y72{bottom:277.770000px;}
.y10f{bottom:280.110000px;}
.ya0{bottom:280.830000px;}
.y33{bottom:281.550000px;}
.y1ee{bottom:282.090000px;}
.y134{bottom:284.970000px;}
.y193{bottom:285.150000px;}
.yc8{bottom:291.090000px;}
.y1ce{bottom:293.970000px;}
.y71{bottom:294.870000px;}
.y32{bottom:298.830000px;}
.y1ed{bottom:299.370000px;}
.y192{bottom:299.550000px;}
.y133{bottom:302.250000px;}
.y1cd{bottom:311.250000px;}
.y70{bottom:312.150000px;}
.y31{bottom:316.110000px;}
.y1ec{bottom:316.650000px;}
.y191{bottom:317.550000px;}
.y132{bottom:319.530000px;}
.yc7{bottom:326.010000px;}
.y1cc{bottom:328.530000px;}
.y6f{bottom:329.430000px;}
.y10e{bottom:332.490000px;}
.y30{bottom:333.210000px;}
.y1eb{bottom:333.930000px;}
.y190{bottom:335.550000px;}
.y131{bottom:336.810000px;}
.yc6{bottom:343.290000px;}
.y1cb{bottom:345.810000px;}
.y1fe{bottom:346.350000px;}
.y6e{bottom:346.710000px;}
.y2f{bottom:350.490000px;}
.y1ea{bottom:351.210000px;}
.y9f{bottom:351.390000px;}
.y18f{bottom:353.550000px;}
.y130{bottom:354.090000px;}
.yc5{bottom:360.390000px;}
.y1ca{bottom:363.090000px;}
.y6d{bottom:363.990000px;}
.y2e{bottom:367.770000px;}
.y10d{bottom:368.490000px;}
.y9e{bottom:369.390000px;}
.y12f{bottom:371.190000px;}
.y18e{bottom:371.550000px;}
.yc4{bottom:377.670000px;}
.yf4{bottom:379.650000px;}
.y1c9{bottom:380.190000px;}
.y6c{bottom:381.090000px;}
.y2d{bottom:385.050000px;}
.y1e9{bottom:385.590000px;}
.y12e{bottom:388.470000px;}
.y18d{bottom:389.550000px;}
.y9d{bottom:390.630000px;}
.yf1{bottom:394.050000px;}
.yc3{bottom:394.950000px;}
.y6b{bottom:398.370000px;}
.y1c8{bottom:398.550000px;}
.y2c{bottom:402.330000px;}
.y1e8{bottom:402.870000px;}
.y10a{bottom:403.770000px;}
.y12d{bottom:405.795000px;}
.y18c{bottom:407.595000px;}
.yc2{bottom:412.275000px;}
.y6a{bottom:415.695000px;}
.y1c7{bottom:415.875000px;}
.y2b{bottom:419.655000px;}
.y1e7{bottom:420.195000px;}
.y12c{bottom:423.075000px;}
.y9c{bottom:425.415000px;}
.y18b{bottom:425.595000px;}
.yc1{bottom:429.555000px;}
.y69{bottom:432.975000px;}
.y1c6{bottom:433.155000px;}
.y2a{bottom:436.755000px;}
.y1e6{bottom:437.475000px;}
.y109{bottom:439.095000px;}
.y12b{bottom:440.355000px;}
.y9b{bottom:442.695000px;}
.y18a{bottom:443.595000px;}
.yc0{bottom:446.655000px;}
.y68{bottom:450.255000px;}
.y1c5{bottom:450.435000px;}
.y29{bottom:454.035000px;}
.y1e5{bottom:454.755000px;}
.y12a{bottom:457.635000px;}
.y9a{bottom:459.975000px;}
.y189{bottom:461.595000px;}
.ybf{bottom:463.935000px;}
.y67{bottom:467.535000px;}
.y1c4{bottom:467.715000px;}
.y28{bottom:470.955000px;}
.y1e4{bottom:472.035000px;}
.y108{bottom:474.375000px;}
.y129{bottom:474.735000px;}
.y99{bottom:477.255000px;}
.y188{bottom:479.595000px;}
.ybe{bottom:481.215000px;}
.y76{bottom:484.275000px;}
.y66{bottom:484.635000px;}
.y1c3{bottom:485.895000px;}
.y27{bottom:488.595000px;}
.y1e3{bottom:489.135000px;}
.y128{bottom:492.015000px;}
.y107{bottom:492.375000px;}
.y98{bottom:494.535000px;}
.y187{bottom:497.595000px;}
.ybd{bottom:498.495000px;}
.y65{bottom:501.915000px;}
.y1c2{bottom:503.175000px;}
.y26{bottom:505.875000px;}
.y1e2{bottom:506.415000px;}
.y127{bottom:509.295000px;}
.y97{bottom:511.635000px;}
.ybc{bottom:515.775000px;}
.y64{bottom:519.195000px;}
.y1c1{bottom:520.455000px;}
.y25{bottom:523.155000px;}
.y1e1{bottom:523.695000px;}
.y94{bottom:526.035000px;}
.y126{bottom:526.575000px;}
.y106{bottom:527.655000px;}
.ybb{bottom:533.055000px;}
.y186{bottom:536.115000px;}
.y63{bottom:536.475000px;}
.y1c0{bottom:537.735000px;}
.y24{bottom:540.255000px;}
.y1e0{bottom:540.975000px;}
.y125{bottom:543.855000px;}
.yba{bottom:550.155000px;}
.y62{bottom:553.755000px;}
.y1bf{bottom:556.095000px;}
.y23{bottom:557.535000px;}
.y1df{bottom:558.255000px;}
.y124{bottom:561.135000px;}
.y103{bottom:562.935000px;}
.yb9{bottom:567.435000px;}
.y185{bottom:570.855000px;}
.y61{bottom:571.035000px;}
.y183{bottom:572.475000px;}
.y1be{bottom:573.375000px;}
.y22{bottom:574.815000px;}
.y1de{bottom:575.355000px;}
.y123{bottom:578.235000px;}
.yb8{bottom:584.715000px;}
.y180{bottom:585.990000px;}
.y1fd{bottom:587.775000px;}
.y60{bottom:588.135000px;}
.y1bd{bottom:591.555000px;}
.y21{bottom:592.095000px;}
.y1dd{bottom:592.635000px;}
.y122{bottom:595.515000px;}
.y93{bottom:595.875000px;}
.y102{bottom:598.035000px;}
.yb7{bottom:601.995000px;}
.y1fc{bottom:605.055000px;}
.y5f{bottom:605.415000px;}
.y1bc{bottom:608.835000px;}
.y20{bottom:609.375000px;}
.y1dc{bottom:609.915000px;}
.y121{bottom:612.795000px;}
.y17f{bottom:613.515000px;}
.yb6{bottom:619.275000px;}
.y5e{bottom:622.695000px;}
.y1bb{bottom:626.115000px;}
.y1f{bottom:626.655000px;}
.y1db{bottom:627.195000px;}
.y120{bottom:630.075000px;}
.y17e{bottom:630.795000px;}
.y101{bottom:633.315000px;}
.yb5{bottom:636.555000px;}
.y5d{bottom:639.975000px;}
.y1ba{bottom:643.395000px;}
.y1e{bottom:643.755000px;}
.y1da{bottom:644.475000px;}
.y11f{bottom:647.355000px;}
.y17d{bottom:648.075000px;}
.y8d{bottom:648.435000px;}
.y100{bottom:651.345000px;}
.yb4{bottom:653.685000px;}
.y184{bottom:657.105000px;}
.y5c{bottom:657.285000px;}
.y1b9{bottom:660.705000px;}
.y1d{bottom:661.065000px;}
.y1d9{bottom:661.785000px;}
.y11e{bottom:664.485000px;}
.y17c{bottom:665.205000px;}
.yff{bottom:669.345000px;}
.yb3{bottom:670.965000px;}
.y5b{bottom:674.385000px;}
.y11d{bottom:678.165000px;}
.y1c{bottom:678.345000px;}
.y179{bottom:678.840000px;}
.y1b8{bottom:678.885000px;}
.y178{bottom:686.445000px;}
.yfe{bottom:687.345000px;}
.yb2{bottom:688.245000px;}
.y5a{bottom:691.665000px;}
.y1b{bottom:695.625000px;}
.y1b7{bottom:696.165000px;}
.yb1{bottom:705.525000px;}
.y59{bottom:708.945000px;}
.y1a{bottom:712.905000px;}
.y1b6{bottom:713.445000px;}
.yb0{bottom:722.805000px;}
.y58{bottom:726.225000px;}
.y19{bottom:730.005000px;}
.y1b5{bottom:730.725000px;}
.y8a{bottom:735.405000px;}
.yaf{bottom:739.725000px;}
.y57{bottom:743.505000px;}
.y18{bottom:747.285000px;}
.y1b4{bottom:748.005000px;}
.yae{bottom:756.825000px;}
.y16e{bottom:756.990000px;}
.y56{bottom:760.785000px;}
.y17{bottom:764.565000px;}
.y1b3{bottom:765.285000px;}
.yad{bottom:770.865000px;}
.y176{bottom:771.915000px;}
.ydc{bottom:776.160000px;}
.y55{bottom:777.885000px;}
.y172{bottom:779.505000px;}
.y16{bottom:781.485000px;}
.y1b2{bottom:782.385000px;}
.yef{bottom:784.800000px;}
.yed{bottom:784.980000px;}
.y54{bottom:795.165000px;}
.y162{bottom:796.215000px;}
.y15{bottom:799.125000px;}
.y1b1{bottom:799.665000px;}
.y89{bottom:805.065000px;}
.y53{bottom:812.445000px;}
.y14{bottom:816.405000px;}
.y1b0{bottom:816.945000px;}
.ydf{bottom:817.560000px;}
.y161{bottom:826.305000px;}
.y52{bottom:829.725000px;}
.ye1{bottom:833.325000px;}
.y13{bottom:833.505000px;}
.y1af{bottom:834.225000px;}
.y160{bottom:840.885000px;}
.y51{bottom:847.005000px;}
.y12{bottom:850.785000px;}
.y1ae{bottom:851.505000px;}
.y15f{bottom:858.885000px;}
.y50{bottom:864.285000px;}
.y11{bottom:868.065000px;}
.y1ad{bottom:868.605000px;}
.y84{bottom:874.905000px;}
.y15e{bottom:876.885000px;}
.ye3{bottom:876.960000px;}
.y4f{bottom:881.385000px;}
.y10{bottom:885.345000px;}
.y1ac{bottom:885.885000px;}
.y15d{bottom:894.885000px;}
.y4e{bottom:898.710000px;}
.y1ab{bottom:899.610000px;}
.y1f7{bottom:899.640000px;}
.yf{bottom:902.670000px;}
.y15c{bottom:912.930000px;}
.y4d{bottom:915.990000px;}
.ye{bottom:919.590000px;}
.yd8{bottom:921.420000px;}
.ye6{bottom:928.440000px;}
.y15b{bottom:930.930000px;}
.y4c{bottom:933.270000px;}
.ydb{bottom:935.790000px;}
.y15a{bottom:948.930000px;}
.y4b{bottom:950.550000px;}
.yda{bottom:952.890000px;}
.yd{bottom:953.970000px;}
.y80{bottom:961.890000px;}
.yea{bottom:966.420000px;}
.y159{bottom:966.930000px;}
.y4a{bottom:967.830000px;}
.yc{bottom:971.610000px;}
.y49{bottom:984.930000px;}
.yb{bottom:988.890000px;}
.y48{bottom:1002.210000px;}
.y158{bottom:1002.930000px;}
.ya{bottom:1006.170000px;}
.yac{bottom:1017.330000px;}
.y47{bottom:1019.490000px;}
.y157{bottom:1020.930000px;}
.y9{bottom:1023.450000px;}
.yab{bottom:1034.610000px;}
.y46{bottom:1036.770000px;}
.y155{bottom:1038.930000px;}
.y8{bottom:1040.550000px;}
.yaa{bottom:1051.890000px;}
.y45{bottom:1054.050000px;}
.y7{bottom:1057.830000px;}
.y7b{bottom:1066.110000px;}
.ya9{bottom:1069.170000px;}
.y44{bottom:1071.150000px;}
.y6{bottom:1074.750000px;}
.ya8{bottom:1086.270000px;}
.y43{bottom:1088.430000px;}
.y154{bottom:1094.550000px;}
.ya7{bottom:1104.630000px;}
.y42{bottom:1105.710000px;}
.y5{bottom:1109.310000px;}
.y153{bottom:1112.190000px;}
.ya6{bottom:1121.910000px;}
.y41{bottom:1122.990000px;}
.y150{bottom:1125.840000px;}
.y4{bottom:1126.770000px;}
.y152{bottom:1130.370000px;}
.y79{bottom:1135.950000px;}
.y40{bottom:1140.270000px;}
.y3{bottom:1143.720000px;}
.y146{bottom:1144.365000px;}
.y78{bottom:1157.220000px;}
.y3f{bottom:1157.580000px;}
.y2{bottom:1163.880000px;}
.y14f{bottom:1174.500000px;}
.y3e{bottom:1174.680000px;}
.y1{bottom:1195.380000px;}
.h29{height:16.350293px;}
.hf{height:17.100000px;}
.h8{height:17.136000px;}
.h23{height:17.280000px;}
.h24{height:17.316000px;}
.h4b{height:17.624229px;}
.h26{height:20.100009px;}
.h1f{height:21.420000px;}
.h15{height:22.500000px;}
.h16{height:22.536000px;}
.h13{height:23.580000px;}
.h45{height:23.924845px;}
.h40{height:23.925103px;}
.h42{height:26.474683px;}
.h48{height:26.475586px;}
.h3c{height:27.525042px;}
.h3e{height:30.225058px;}
.h1a{height:30.600000px;}
.h1e{height:30.960000px;}
.h1d{height:31.320000px;}
.h37{height:32.294931px;}
.h10{height:34.380000px;}
.h30{height:34.401140px;}
.h11{height:34.560000px;}
.h25{height:34.596000px;}
.h4d{height:37.845145px;}
.h2b{height:38.445546px;}
.h4f{height:40.394531px;}
.h34{height:41.398290px;}
.h17{height:41.760000px;}
.h3d{height:43.132493px;}
.h39{height:43.323874px;}
.h2c{height:44.098202px;}
.h19{height:44.703281px;}
.h28{height:45.634085px;}
.h2f{height:46.149369px;}
.h1b{height:47.160000px;}
.h3f{height:47.363491px;}
.h20{height:48.616875px;}
.h4c{height:49.543144px;}
.h1c{height:51.120000px;}
.h7{height:51.210352px;}
.h47{height:51.374685px;}
.hd{height:51.660000px;}
.h22{height:51.876000px;}
.h44{height:52.947344px;}
.h6{height:53.573906px;}
.h32{height:53.930287px;}
.h2a{height:54.011960px;}
.h3a{height:54.105504px;}
.h4a{height:55.283333px;}
.h35{height:55.478891px;}
.h3b{height:57.374860px;}
.h36{height:57.403419px;}
.h2e{height:57.634154px;}
.he{height:58.621992px;}
.h5{height:58.651172px;}
.h33{height:59.038594px;}
.h2d{height:59.097111px;}
.h2{height:59.439023px;}
.h4{height:60.226875px;}
.h31{height:61.116732px;}
.h12{height:61.423863px;}
.h18{height:63.000000px;}
.h27{height:64.111102px;}
.h38{height:66.361653px;}
.h46{height:67.254688px;}
.h9{height:68.940000px;}
.hc{height:69.120000px;}
.h41{height:71.554260px;}
.h43{height:74.422490px;}
.h3{height:81.949219px;}
.hb{height:86.256000px;}
.h49{height:90.871992px;}
.h14{height:92.376000px;}
.ha{height:103.500000px;}
.h4e{height:150.840000px;}
.h21{height:189.720000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w17{width:16.424202px;}
.wf{width:23.400000px;}
.w10{width:43.740000px;}
.w25{width:64.980000px;}
.w1d{width:86.796000px;}
.w1a{width:89.280000px;}
.w5{width:90.540000px;}
.w19{width:92.925077px;}
.w1e{width:98.820000px;}
.w16{width:108.001179px;}
.wa{width:110.520000px;}
.w21{width:111.747853px;}
.w20{width:136.958321px;}
.w26{width:154.470000px;}
.w27{width:160.230000px;}
.w3{width:176.220000px;}
.w23{width:178.353621px;}
.wb{width:184.860000px;}
.w1c{width:189.750000px;}
.wc{width:194.580000px;}
.w1b{width:211.350000px;}
.wd{width:226.800000px;}
.w18{width:244.046503px;}
.w14{width:265.170000px;}
.we{width:265.500000px;}
.w22{width:283.883323px;}
.w7{width:287.850000px;}
.w29{width:293.775487px;}
.w28{width:297.030000px;}
.w6{width:299.055000px;}
.w8{width:328.530000px;}
.w2a{width:336.455243px;}
.w9{width:349.995000px;}
.w24{width:369.375073px;}
.w15{width:412.995000px;}
.w4{width:501.945000px;}
.w13{width:531.285000px;}
.w12{width:531.645000px;}
.w11{width:541.905000px;}
.w1f{width:595.946183px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x55{left:1.849961px;}
.x3e{left:6.225000px;}
.x16{left:7.740000px;}
.x21{left:9.900000px;}
.x39{left:11.085000px;}
.x26{left:12.240000px;}
.x28{left:14.220000px;}
.x23{left:19.260000px;}
.x19{left:20.340000px;}
.x59{left:25.020000px;}
.x67{left:26.820000px;}
.x65{left:28.260000px;}
.x66{left:30.600000px;}
.x61{left:32.400000px;}
.x78{left:33.792643px;}
.x82{left:35.460000px;}
.x68{left:37.080000px;}
.x3b{left:38.805000px;}
.x63{left:41.580000px;}
.x35{left:44.130000px;}
.x5b{left:48.600000px;}
.x75{left:50.296960px;}
.x52{left:51.299661px;}
.x72{left:55.632871px;}
.x13{left:58.674000px;}
.x29{left:65.700000px;}
.x47{left:67.854000px;}
.x27{left:68.940000px;}
.x5c{left:70.020000px;}
.x51{left:72.928413px;}
.x34{left:74.730000px;}
.x22{left:75.960000px;}
.x1f{left:78.840000px;}
.x64{left:83.550000px;}
.x33{left:85.710000px;}
.x32{left:88.194000px;}
.x5f{left:90.210000px;}
.x20{left:94.725000px;}
.x2f{left:97.374000px;}
.x5d{left:101.565000px;}
.x31{left:104.250000px;}
.x1{left:106.415987px;}
.x24{left:108.405000px;}
.x54{left:111.421557px;}
.x1d{left:116.460000px;}
.x1e{left:118.125000px;}
.x1b{left:120.465000px;}
.x25{left:124.020000px;}
.x12{left:126.035987px;}
.x36{left:127.440000px;}
.x4a{left:128.694000px;}
.x53{left:131.769804px;}
.x49{left:133.410000px;}
.x3{left:136.115987px;}
.x37{left:138.275987px;}
.x86{left:140.940000px;}
.x71{left:142.898768px;}
.x85{left:144.720000px;}
.x50{left:148.273594px;}
.x7d{left:157.330555px;}
.x6a{left:160.811639px;}
.x8c{left:171.209987px;}
.x81{left:172.830000px;}
.x43{left:175.530000px;}
.x69{left:177.765000px;}
.x8a{left:178.769987px;}
.x44{left:180.750000px;}
.x9{left:188.669987px;}
.x80{left:190.469987px;}
.x5a{left:197.130000px;}
.x1a{left:198.390000px;}
.x8d{left:201.059987px;}
.x4b{left:202.710000px;}
.x8f{left:204.149987px;}
.x15{left:210.315000px;}
.x2c{left:215.489987px;}
.x6e{left:225.819575px;}
.x7c{left:233.040000px;}
.x73{left:234.545042px;}
.x8e{left:241.484987px;}
.x46{left:246.809987px;}
.x18{left:258.149987px;}
.x2d{left:267.149987px;}
.x7a{left:271.286970px;}
.x45{left:279.929987px;}
.x14{left:284.070000px;}
.x87{left:285.358827px;}
.x2e{left:292.934987px;}
.x2{left:302.474987px;}
.x89{left:308.960046px;}
.x76{left:326.054987px;}
.x83{left:328.035000px;}
.x77{left:330.240000px;}
.x7f{left:344.925533px;}
.x41{left:349.380000px;}
.x17{left:357.374987px;}
.x48{left:373.035000px;}
.x6{left:392.294987px;}
.x5e{left:409.215000px;}
.x7e{left:411.374987px;}
.x6f{left:414.860666px;}
.xc{left:418.934987px;}
.x88{left:429.914987px;}
.x6b{left:433.273967px;}
.x30{left:436.035000px;}
.x79{left:441.974987px;}
.x2a{left:446.474987px;}
.xf{left:457.274987px;}
.xb{left:459.074987px;}
.x70{left:464.246167px;}
.x6c{left:471.030859px;}
.x40{left:482.040000px;}
.x6d{left:485.995676px;}
.x10{left:487.004987px;}
.x84{left:488.985000px;}
.x1c{left:498.165000px;}
.x4e{left:506.940000px;}
.xd{left:509.144987px;}
.x42{left:515.160000px;}
.x3f{left:520.740000px;}
.x4f{left:523.364987px;}
.xe{left:537.944987px;}
.x7{left:542.984987px;}
.x3d{left:553.140000px;}
.x5{left:568.004987px;}
.x57{left:572.640000px;}
.x3a{left:580.680000px;}
.x4c{left:584.565000px;}
.x38{left:589.320000px;}
.x60{left:599.685000px;}
.xa{left:609.584987px;}
.x3c{left:615.884987px;}
.x58{left:665.609987px;}
.x62{left:687.210000px;}
.x4d{left:692.609987px;}
.x4{left:715.829987px;}
.x11{left:721.589987px;}
.x7b{left:730.049987px;}
.x56{left:731.129987px;}
.x2b{left:765.689987px;}
.x8b{left:770.549987px;}
.x74{left:773.789987px;}
.x8{left:786.749987px;}
@media print{
.v1{vertical-align:-61.440000pt;}
.v8{vertical-align:-51.627206pt;}
.v9{vertical-align:-26.931521pt;}
.v5{vertical-align:-24.822948pt;}
.v4{vertical-align:-17.552452pt;}
.v3{vertical-align:-16.000000pt;}
.va{vertical-align:-14.085816pt;}
.vc{vertical-align:-10.376312pt;}
.v2{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:16.425342pt;}
.v6{vertical-align:18.560000pt;}
.v7{vertical-align:20.478026pt;}
.ls59{letter-spacing:-2.139943pt;}
.ls5a{letter-spacing:-2.116565pt;}
.ls56{letter-spacing:-1.842763pt;}
.ls5c{letter-spacing:-1.491865pt;}
.ls3e{letter-spacing:-1.235824pt;}
.ls3f{letter-spacing:-1.120000pt;}
.ls57{letter-spacing:-1.025199pt;}
.ls55{letter-spacing:-0.926178pt;}
.ls24{letter-spacing:-0.901333pt;}
.ls58{letter-spacing:-0.427907pt;}
.ls5b{letter-spacing:-0.336014pt;}
.ls18{letter-spacing:-0.259200pt;}
.ls3c{letter-spacing:-0.173333pt;}
.ls22{letter-spacing:-0.157867pt;}
.ls3b{letter-spacing:-0.115200pt;}
.lsb{letter-spacing:-0.051840pt;}
.ls3d{letter-spacing:-0.047360pt;}
.lsa{letter-spacing:0.000000pt;}
.ls43{letter-spacing:0.047360pt;}
.ls20{letter-spacing:0.057600pt;}
.ls2e{letter-spacing:0.062720pt;}
.ls31{letter-spacing:0.094933pt;}
.ls2{letter-spacing:0.112640pt;}
.ls15{letter-spacing:0.115200pt;}
.ls5d{letter-spacing:0.120533pt;}
.ls23{letter-spacing:0.137600pt;}
.ls47{letter-spacing:0.145487pt;}
.ls1{letter-spacing:0.160000pt;}
.ls21{letter-spacing:0.160533pt;}
.ls4b{letter-spacing:0.183680pt;}
.ls48{letter-spacing:0.223768pt;}
.ls1f{letter-spacing:0.230933pt;}
.ls7{letter-spacing:0.231040pt;}
.ls44{letter-spacing:0.265600pt;}
.ls5e{letter-spacing:0.266667pt;}
.ls30{letter-spacing:0.294933pt;}
.ls50{letter-spacing:0.295040pt;}
.ls0{letter-spacing:0.320000pt;}
.ls19{letter-spacing:0.380800pt;}
.ls25{letter-spacing:0.409067pt;}
.ls35{letter-spacing:0.480000pt;}
.ls4e{letter-spacing:0.640000pt;}
.ls4d{letter-spacing:0.705280pt;}
.ls17{letter-spacing:0.778667pt;}
.ls9{letter-spacing:0.800000pt;}
.ls34{letter-spacing:0.821333pt;}
.ls12{letter-spacing:1.440000pt;}
.ls63{letter-spacing:1.872640pt;}
.ls29{letter-spacing:2.058667pt;}
.ls16{letter-spacing:2.080000pt;}
.ls52{letter-spacing:2.240000pt;}
.ls10{letter-spacing:2.720000pt;}
.ls5{letter-spacing:3.360000pt;}
.ls6{letter-spacing:3.466667pt;}
.ls2b{letter-spacing:4.000000pt;}
.ls36{letter-spacing:4.160000pt;}
.ls1c{letter-spacing:4.640000pt;}
.ls8{letter-spacing:5.280000pt;}
.ls1d{letter-spacing:5.920000pt;}
.ls26{letter-spacing:6.352640pt;}
.ls37{letter-spacing:6.560000pt;}
.ls13{letter-spacing:7.200000pt;}
.ls1a{letter-spacing:7.840000pt;}
.ls1b{letter-spacing:8.480000pt;}
.ls5f{letter-spacing:9.120000pt;}
.ls14{letter-spacing:9.760000pt;}
.lsc{letter-spacing:10.400000pt;}
.lsf{letter-spacing:11.040000pt;}
.ls27{letter-spacing:11.680000pt;}
.ls4{letter-spacing:12.960000pt;}
.ls51{letter-spacing:13.120000pt;}
.ls2d{letter-spacing:13.600000pt;}
.ls11{letter-spacing:15.520000pt;}
.lsd{letter-spacing:17.600000pt;}
.ls32{letter-spacing:18.720000pt;}
.ls2c{letter-spacing:19.360000pt;}
.ls61{letter-spacing:28.091307pt;}
.ls62{letter-spacing:28.112640pt;}
.ls2a{letter-spacing:36.640000pt;}
.ls64{letter-spacing:40.480000pt;}
.ls60{letter-spacing:44.091307pt;}
.ls3a{letter-spacing:50.080000pt;}
.ls54{letter-spacing:50.512640pt;}
.lse{letter-spacing:50.720000pt;}
.ls38{letter-spacing:63.520000pt;}
.ls46{letter-spacing:89.631187pt;}
.ls49{letter-spacing:92.320000pt;}
.ls33{letter-spacing:130.720000pt;}
.ls2f{letter-spacing:131.792640pt;}
.ls41{letter-spacing:132.419927pt;}
.ls65{letter-spacing:139.200000pt;}
.ls39{letter-spacing:175.520000pt;}
.ls3{letter-spacing:279.840000pt;}
.ls42{letter-spacing:348.320000pt;}
.ls40{letter-spacing:413.660298pt;}
.ls53{letter-spacing:678.845178pt;}
.ls4c{letter-spacing:745.920000pt;}
.ls28{letter-spacing:758.720000pt;}
.ls45{letter-spacing:766.641876pt;}
.ls4f{letter-spacing:807.694816pt;}
.ls4a{letter-spacing:860.638206pt;}
.ls1e{letter-spacing:1659.466667pt;}
.ws3a{word-spacing:-35.995913pt;}
.ws17{word-spacing:-31.893566pt;}
.wsc{word-spacing:-29.162880pt;}
.ws23{word-spacing:-28.542465pt;}
.ws1f{word-spacing:-26.828881pt;}
.ws3d{word-spacing:-24.634133pt;}
.ws2b{word-spacing:-23.550353pt;}
.ws28{word-spacing:-21.446591pt;}
.wsd{word-spacing:-15.338667pt;}
.wse{word-spacing:-14.767360pt;}
.ws10{word-spacing:-14.101333pt;}
.wsb{word-spacing:-13.689067pt;}
.ws4{word-spacing:-13.600000pt;}
.wsf{word-spacing:-13.574933pt;}
.ws5{word-spacing:-13.510933pt;}
.ws7{word-spacing:-13.440533pt;}
.ws9{word-spacing:-13.417600pt;}
.ws3e{word-spacing:-13.374933pt;}
.ws6{word-spacing:-13.337600pt;}
.ws1{word-spacing:-13.280000pt;}
.ws14{word-spacing:-13.232640pt;}
.ws11{word-spacing:-13.164800pt;}
.ws8{word-spacing:-13.122133pt;}
.ws13{word-spacing:-13.106667pt;}
.ws3{word-spacing:-13.020800pt;}
.wsa{word-spacing:-12.378667pt;}
.ws0{word-spacing:-11.953280pt;}
.ws12{word-spacing:-8.640000pt;}
.ws2a{word-spacing:-0.266665pt;}
.ws33{word-spacing:-0.067404pt;}
.ws38{word-spacing:-0.065566pt;}
.ws2c{word-spacing:-0.064806pt;}
.ws35{word-spacing:-0.060912pt;}
.ws1c{word-spacing:-0.055381pt;}
.ws22{word-spacing:-0.051990pt;}
.ws3c{word-spacing:-0.044871pt;}
.ws29{word-spacing:-0.042897pt;}
.ws2{word-spacing:0.000000pt;}
.ws2d{word-spacing:0.363100pt;}
.ws1d{word-spacing:0.870797pt;}
.ws26{word-spacing:0.973209pt;}
.ws15{word-spacing:1.177730pt;}
.ws3b{word-spacing:1.446994pt;}
.ws34{word-spacing:2.055653pt;}
.ws32{word-spacing:2.072539pt;}
.ws27{word-spacing:9.075580pt;}
.ws2f{word-spacing:74.213186pt;}
.ws20{word-spacing:74.883946pt;}
.ws18{word-spacing:80.396851pt;}
.ws1e{word-spacing:88.782637pt;}
.ws21{word-spacing:90.535089pt;}
.ws16{word-spacing:96.340022pt;}
.ws19{word-spacing:97.248481pt;}
.ws24{word-spacing:99.747951pt;}
.ws1a{word-spacing:107.079266pt;}
.ws37{word-spacing:108.429967pt;}
.ws31{word-spacing:165.870426pt;}
.ws25{word-spacing:230.924761pt;}
.ws1b{word-spacing:247.509248pt;}
.ws36{word-spacing:275.594658pt;}
.ws2e{word-spacing:369.842715pt;}
.ws30{word-spacing:373.799823pt;}
.ws39{word-spacing:583.717294pt;}
._73{margin-left:-583.126863pt;}
._5f{margin-left:-483.160874pt;}
._6a{margin-left:-434.785955pt;}
._72{margin-left:-344.379648pt;}
._74{margin-left:-332.426559pt;}
._6b{margin-left:-326.682587pt;}
._42{margin-left:-299.135685pt;}
._6d{margin-left:-288.614784pt;}
._45{margin-left:-273.116393pt;}
._66{margin-left:-262.882317pt;}
._75{margin-left:-253.244935pt;}
._38{margin-left:-231.220549pt;}
._35{margin-left:-228.279589pt;}
._60{margin-left:-225.781865pt;}
._43{margin-left:-221.655254pt;}
._4d{margin-left:-216.194601pt;}
._4a{margin-left:-213.440189pt;}
._47{margin-left:-210.255746pt;}
._5b{margin-left:-209.034298pt;}
._63{margin-left:-208.112392pt;}
._64{margin-left:-205.084105pt;}
._68{margin-left:-203.016077pt;}
._46{margin-left:-199.779085pt;}
._44{margin-left:-197.611934pt;}
._56{margin-left:-187.941255pt;}
._34{margin-left:-186.725979pt;}
._48{margin-left:-185.210534pt;}
._6f{margin-left:-184.240090pt;}
._61{margin-left:-178.325260pt;}
._49{margin-left:-174.725930pt;}
._5c{margin-left:-173.068074pt;}
._5d{margin-left:-171.654043pt;}
._5a{margin-left:-167.915591pt;}
._7d{margin-left:-166.321605pt;}
._37{margin-left:-160.352827pt;}
._67{margin-left:-158.683554pt;}
._39{margin-left:-152.405237pt;}
._4c{margin-left:-149.983696pt;}
._6c{margin-left:-146.950362pt;}
._4e{margin-left:-142.370214pt;}
._6e{margin-left:-140.079164pt;}
._2f{margin-left:-137.939387pt;}
._78{margin-left:-130.849403pt;}
._7a{margin-left:-129.305691pt;}
._52{margin-left:-126.937329pt;}
._36{margin-left:-123.465982pt;}
._69{margin-left:-121.649373pt;}
._30{margin-left:-120.221202pt;}
._4b{margin-left:-115.514218pt;}
._70{margin-left:-114.288285pt;}
._57{margin-left:-112.906939pt;}
._31{margin-left:-111.548021pt;}
._3e{margin-left:-104.533803pt;}
._3c{margin-left:-100.993603pt;}
._3d{margin-left:-96.719072pt;}
._7c{margin-left:-94.572301pt;}
._7b{margin-left:-90.106695pt;}
._40{margin-left:-87.435483pt;}
._76{margin-left:-85.242149pt;}
._59{margin-left:-78.177344pt;}
._71{margin-left:-77.159983pt;}
._77{margin-left:-74.748871pt;}
._53{margin-left:-64.848843pt;}
._4f{margin-left:-59.173433pt;}
._3b{margin-left:-53.831248pt;}
._51{margin-left:-52.663528pt;}
._62{margin-left:-49.675393pt;}
._54{margin-left:-47.124678pt;}
._55{margin-left:-44.741749pt;}
._65{margin-left:-43.508015pt;}
._58{margin-left:-42.256750pt;}
._41{margin-left:-38.951885pt;}
._79{margin-left:-32.538766pt;}
._50{margin-left:-28.095326pt;}
._2d{margin-left:-4.903893pt;}
._9{margin-left:-3.399680pt;}
._7{margin-left:-2.496640pt;}
._4{margin-left:-1.062400pt;}
._0{width:0.903040pt;}
._2{width:2.384853pt;}
._5{width:3.374293pt;}
._6{width:4.621440pt;}
._8{width:5.524480pt;}
._14{width:6.427520pt;}
._13{width:7.489920pt;}
._d{width:9.252907pt;}
._a{width:10.220587pt;}
._b{width:11.165227pt;}
._19{width:12.323840pt;}
._15{width:14.183040pt;}
._e{width:15.513387pt;}
._18{width:17.210880pt;}
._1d{width:18.167040pt;}
._1b{width:19.973120pt;}
._1a{width:21.088640pt;}
._11{width:22.894720pt;}
._1e{width:24.275840pt;}
._23{width:25.816320pt;}
._25{width:27.373440pt;}
._28{width:28.704640pt;}
._1f{width:29.640960pt;}
._f{width:30.915840pt;}
._10{width:31.872000pt;}
._17{width:33.559253pt;}
._16{width:35.178027pt;}
._29{width:36.865280pt;}
._2c{width:37.927680pt;}
._2b{width:38.883840pt;}
._32{width:39.946240pt;}
._24{width:41.274240pt;}
._2a{width:42.177280pt;}
._22{width:44.461440pt;}
._12{width:49.560960pt;}
._1c{width:50.517120pt;}
._5e{width:51.792000pt;}
._84{width:52.960640pt;}
._83{width:53.916800pt;}
._2e{width:58.803840pt;}
._c{width:61.034880pt;}
._27{width:65.762560pt;}
._26{width:68.007680pt;}
._80{width:75.961600pt;}
._81{width:76.864640pt;}
._3a{width:91.296640pt;}
._3{width:92.320000pt;}
._3f{width:127.102349pt;}
._33{width:136.151152pt;}
._87{width:139.546240pt;}
._7f{width:145.596160pt;}
._85{width:147.779840pt;}
._82{width:149.054720pt;}
._7e{width:176.387200pt;}
._86{width:244.830080pt;}
._20{width:754.858667pt;}
._21{width:1591.349333pt;}
._1{width:1617.589333pt;}
.fsd{font-size:29.249317pt;}
.fs9{font-size:31.156898pt;}
.fs3{font-size:34.560000pt;}
.fs14{font-size:36.863781pt;}
.fsf{font-size:39.064829pt;}
.fs2{font-size:42.880000pt;}
.fs10{font-size:42.896818pt;}
.fs16{font-size:44.870916pt;}
.fs17{font-size:48.000000pt;}
.fsa{font-size:48.868636pt;}
.fs5{font-size:48.942644pt;}
.fsc{font-size:51.989918pt;}
.fs0{font-size:53.120000pt;}
.fs8{font-size:55.380595pt;}
.fs4{font-size:58.093927pt;}
.fs13{font-size:60.912151pt;}
.fs11{font-size:64.806246pt;}
.fse{font-size:64.928189pt;}
.fs15{font-size:65.566325pt;}
.fsb{font-size:66.576294pt;}
.fs12{font-size:67.403985pt;}
.fs7{font-size:69.162673pt;}
.fs6{font-size:70.918264pt;}
.fs1{font-size:96.000000pt;}
.ye9{bottom:-15.066667pt;}
.ye2{bottom:-1.346667pt;}
.yde{bottom:-0.546667pt;}
.yec{bottom:-0.346667pt;}
.ye8{bottom:-0.026667pt;}
.y0{bottom:0.000000pt;}
.y140{bottom:1.539282pt;}
.y170{bottom:1.587415pt;}
.y174{bottom:1.743130pt;}
.y195{bottom:2.017173pt;}
.y151{bottom:2.308886pt;}
.y13b{bottom:2.428921pt;}
.y7a{bottom:2.880000pt;}
.y7f{bottom:3.200000pt;}
.y92{bottom:3.226667pt;}
.y10b{bottom:3.240000pt;}
.y19f{bottom:3.747048pt;}
.y149{bottom:3.823767pt;}
.y141{bottom:4.367183pt;}
.yf0{bottom:4.733333pt;}
.y177{bottom:5.055676pt;}
.y181{bottom:5.086608pt;}
.yee{bottom:5.213333pt;}
.ycf{bottom:5.440000pt;}
.y16b{bottom:5.551161pt;}
.yd1{bottom:5.600000pt;}
.y17a{bottom:5.628723pt;}
.y164{bottom:5.629592pt;}
.y13c{bottom:5.804626pt;}
.y14b{bottom:5.913196pt;}
.y148{bottom:5.996742pt;}
.ycb{bottom:6.080000pt;}
.y1a0{bottom:6.341126pt;}
.y166{bottom:6.375051pt;}
.yd5{bottom:6.400000pt;}
.y182{bottom:8.608062pt;}
.y16f{bottom:9.189316pt;}
.y17b{bottom:9.525483pt;}
.y196{bottom:9.917761pt;}
.y173{bottom:10.090724pt;}
.y105{bottom:10.720000pt;}
.y96{bottom:10.880000pt;}
.y10c{bottom:10.920000pt;}
.y16a{bottom:11.376951pt;}
.y14e{bottom:12.118933pt;}
.y168{bottom:12.220470pt;}
.y169{bottom:12.377007pt;}
.yd6{bottom:14.080000pt;}
.ydd{bottom:14.653333pt;}
.yeb{bottom:15.013333pt;}
.y171{bottom:15.320745pt;}
.ye7{bottom:15.333333pt;}
.y165{bottom:16.496458pt;}
.y175{bottom:16.823604pt;}
.y14d{bottom:17.572323pt;}
.ye5{bottom:17.853333pt;}
.y104{bottom:18.400000pt;}
.y91{bottom:18.426667pt;}
.y7e{bottom:18.560000pt;}
.y88{bottom:18.600000pt;}
.yd4{bottom:21.760000pt;}
.y1fb{bottom:21.826667pt;}
.y16d{bottom:23.028857pt;}
.y14a{bottom:24.530752pt;}
.y167{bottom:24.637219pt;}
.y16c{bottom:24.990037pt;}
.y163{bottom:25.068711pt;}
.y156{bottom:26.080000pt;}
.y8b{bottom:26.240000pt;}
.y14c{bottom:26.619836pt;}
.y147{bottom:26.703642pt;}
.ye0{bottom:29.373333pt;}
.ye4{bottom:33.093333pt;}
.y8c{bottom:33.760000pt;}
.y8e{bottom:33.786667pt;}
.y87{bottom:33.800000pt;}
.y7d{bottom:33.920000pt;}
.yf3{bottom:33.960000pt;}
.ycd{bottom:36.506667pt;}
.y95{bottom:41.600000pt;}
.yd9{bottom:43.333333pt;}
.y81{bottom:49.120000pt;}
.y90{bottom:49.146667pt;}
.y86{bottom:49.160000pt;}
.y7c{bottom:49.280000pt;}
.yf2{bottom:49.320000pt;}
.y1fa{bottom:58.373333pt;}
.y83{bottom:64.480000pt;}
.y8f{bottom:64.506667pt;}
.y85{bottom:64.520000pt;}
.y1f9{bottom:70.720000pt;}
.y145{bottom:79.200000pt;}
.y82{bottom:79.840000pt;}
.y1aa{bottom:84.800000pt;}
.yd7{bottom:85.600000pt;}
.y19e{bottom:88.546667pt;}
.yfd{bottom:89.440000pt;}
.y117{bottom:93.440000pt;}
.y144{bottom:94.560000pt;}
.yfa{bottom:95.200000pt;}
.y3d{bottom:96.960000pt;}
.y1f6{bottom:97.440000pt;}
.yd3{bottom:98.400000pt;}
.y1a9{bottom:100.160000pt;}
.yfc{bottom:102.240000pt;}
.y1f8{bottom:103.653333pt;}
.y116{bottom:106.240000pt;}
.y19d{bottom:107.360000pt;}
.y1d8{bottom:108.000000pt;}
.y11c{bottom:108.800000pt;}
.y143{bottom:109.920000pt;}
.yf9{bottom:110.560000pt;}
.y3c{bottom:112.320000pt;}
.y1f5{bottom:112.800000pt;}
.y1a8{bottom:115.520000pt;}
.y115{bottom:122.240000pt;}
.y19c{bottom:122.720000pt;}
.y1d7{bottom:123.360000pt;}
.y11b{bottom:124.160000pt;}
.y142{bottom:125.280000pt;}
.yf8{bottom:125.760000pt;}
.y3b{bottom:127.520000pt;}
.y1f4{bottom:128.160000pt;}
.y1a7{bottom:130.720000pt;}
.ycc{bottom:136.160000pt;}
.y19b{bottom:137.920000pt;}
.y13f{bottom:138.013333pt;}
.y1d6{bottom:138.720000pt;}
.y11a{bottom:139.520000pt;}
.y13e{bottom:140.640000pt;}
.yf7{bottom:141.120000pt;}
.y3a{bottom:142.586667pt;}
.ya5{bottom:143.546667pt;}
.y1a6{bottom:146.106667pt;}
.yfb{bottom:152.186667pt;}
.y19a{bottom:153.306667pt;}
.y114{bottom:153.626667pt;}
.y1d5{bottom:154.106667pt;}
.y119{bottom:154.906667pt;}
.y13a{bottom:155.946667pt;}
.yf6{bottom:156.480000pt;}
.yd2{bottom:156.826667pt;}
.y39{bottom:158.266667pt;}
.y1f3{bottom:158.746667pt;}
.ya4{bottom:158.906667pt;}
.y13d{bottom:159.866667pt;}
.y1a5{bottom:161.466667pt;}
.yf5{bottom:164.986667pt;}
.y199{bottom:168.666667pt;}
.y1d4{bottom:169.306667pt;}
.y113{bottom:169.626667pt;}
.y118{bottom:170.106667pt;}
.y38{bottom:173.626667pt;}
.ya3{bottom:174.106667pt;}
.y139{bottom:176.666667pt;}
.y1a4{bottom:176.826667pt;}
.yd0{bottom:177.466667pt;}
.y198{bottom:184.026667pt;}
.y1d3{bottom:184.666667pt;}
.y77{bottom:185.466667pt;}
.ya2{bottom:186.906667pt;}
.y37{bottom:188.986667pt;}
.y1f2{bottom:189.466667pt;}
.y138{bottom:192.026667pt;}
.y1a3{bottom:192.186667pt;}
.y194{bottom:196.213333pt;}
.yce{bottom:198.266667pt;}
.y1d2{bottom:200.026667pt;}
.y75{bottom:200.826667pt;}
.y112{bottom:200.986667pt;}
.y197{bottom:204.186667pt;}
.y36{bottom:204.346667pt;}
.y1f1{bottom:204.826667pt;}
.y137{bottom:207.386667pt;}
.y1a2{bottom:207.546667pt;}
.y1d1{bottom:215.386667pt;}
.y74{bottom:216.186667pt;}
.y111{bottom:216.986667pt;}
.ya1{bottom:218.266667pt;}
.yca{bottom:218.906667pt;}
.y35{bottom:219.546667pt;}
.y1f0{bottom:220.186667pt;}
.y136{bottom:222.746667pt;}
.y1d0{bottom:230.746667pt;}
.y73{bottom:231.546667pt;}
.y110{bottom:232.986667pt;}
.y34{bottom:234.906667pt;}
.y1ef{bottom:235.546667pt;}
.y135{bottom:237.946667pt;}
.y1a1{bottom:238.106667pt;}
.yc9{bottom:243.386667pt;}
.y1cf{bottom:246.106667pt;}
.y72{bottom:246.906667pt;}
.y10f{bottom:248.986667pt;}
.ya0{bottom:249.626667pt;}
.y33{bottom:250.266667pt;}
.y1ee{bottom:250.746667pt;}
.y134{bottom:253.306667pt;}
.y193{bottom:253.466667pt;}
.yc8{bottom:258.746667pt;}
.y1ce{bottom:261.306667pt;}
.y71{bottom:262.106667pt;}
.y32{bottom:265.626667pt;}
.y1ed{bottom:266.106667pt;}
.y192{bottom:266.266667pt;}
.y133{bottom:268.666667pt;}
.y1cd{bottom:276.666667pt;}
.y70{bottom:277.466667pt;}
.y31{bottom:280.986667pt;}
.y1ec{bottom:281.466667pt;}
.y191{bottom:282.266667pt;}
.y132{bottom:284.026667pt;}
.yc7{bottom:289.786667pt;}
.y1cc{bottom:292.026667pt;}
.y6f{bottom:292.826667pt;}
.y10e{bottom:295.546667pt;}
.y30{bottom:296.186667pt;}
.y1eb{bottom:296.826667pt;}
.y190{bottom:298.266667pt;}
.y131{bottom:299.386667pt;}
.yc6{bottom:305.146667pt;}
.y1cb{bottom:307.386667pt;}
.y1fe{bottom:307.866667pt;}
.y6e{bottom:308.186667pt;}
.y2f{bottom:311.546667pt;}
.y1ea{bottom:312.186667pt;}
.y9f{bottom:312.346667pt;}
.y18f{bottom:314.266667pt;}
.y130{bottom:314.746667pt;}
.yc5{bottom:320.346667pt;}
.y1ca{bottom:322.746667pt;}
.y6d{bottom:323.546667pt;}
.y2e{bottom:326.906667pt;}
.y10d{bottom:327.546667pt;}
.y9e{bottom:328.346667pt;}
.y12f{bottom:329.946667pt;}
.y18e{bottom:330.266667pt;}
.yc4{bottom:335.706667pt;}
.yf4{bottom:337.466667pt;}
.y1c9{bottom:337.946667pt;}
.y6c{bottom:338.746667pt;}
.y2d{bottom:342.266667pt;}
.y1e9{bottom:342.746667pt;}
.y12e{bottom:345.306667pt;}
.y18d{bottom:346.266667pt;}
.y9d{bottom:347.226667pt;}
.yf1{bottom:350.266667pt;}
.yc3{bottom:351.066667pt;}
.y6b{bottom:354.106667pt;}
.y1c8{bottom:354.266667pt;}
.y2c{bottom:357.626667pt;}
.y1e8{bottom:358.106667pt;}
.y10a{bottom:358.906667pt;}
.y12d{bottom:360.706667pt;}
.y18c{bottom:362.306667pt;}
.yc2{bottom:366.466667pt;}
.y6a{bottom:369.506667pt;}
.y1c7{bottom:369.666667pt;}
.y2b{bottom:373.026667pt;}
.y1e7{bottom:373.506667pt;}
.y12c{bottom:376.066667pt;}
.y9c{bottom:378.146667pt;}
.y18b{bottom:378.306667pt;}
.yc1{bottom:381.826667pt;}
.y69{bottom:384.866667pt;}
.y1c6{bottom:385.026667pt;}
.y2a{bottom:388.226667pt;}
.y1e6{bottom:388.866667pt;}
.y109{bottom:390.306667pt;}
.y12b{bottom:391.426667pt;}
.y9b{bottom:393.506667pt;}
.y18a{bottom:394.306667pt;}
.yc0{bottom:397.026667pt;}
.y68{bottom:400.226667pt;}
.y1c5{bottom:400.386667pt;}
.y29{bottom:403.586667pt;}
.y1e5{bottom:404.226667pt;}
.y12a{bottom:406.786667pt;}
.y9a{bottom:408.866667pt;}
.y189{bottom:410.306667pt;}
.ybf{bottom:412.386667pt;}
.y67{bottom:415.586667pt;}
.y1c4{bottom:415.746667pt;}
.y28{bottom:418.626667pt;}
.y1e4{bottom:419.586667pt;}
.y108{bottom:421.666667pt;}
.y129{bottom:421.986667pt;}
.y99{bottom:424.226667pt;}
.y188{bottom:426.306667pt;}
.ybe{bottom:427.746667pt;}
.y76{bottom:430.466667pt;}
.y66{bottom:430.786667pt;}
.y1c3{bottom:431.906667pt;}
.y27{bottom:434.306667pt;}
.y1e3{bottom:434.786667pt;}
.y128{bottom:437.346667pt;}
.y107{bottom:437.666667pt;}
.y98{bottom:439.586667pt;}
.y187{bottom:442.306667pt;}
.ybd{bottom:443.106667pt;}
.y65{bottom:446.146667pt;}
.y1c2{bottom:447.266667pt;}
.y26{bottom:449.666667pt;}
.y1e2{bottom:450.146667pt;}
.y127{bottom:452.706667pt;}
.y97{bottom:454.786667pt;}
.ybc{bottom:458.466667pt;}
.y64{bottom:461.506667pt;}
.y1c1{bottom:462.626667pt;}
.y25{bottom:465.026667pt;}
.y1e1{bottom:465.506667pt;}
.y94{bottom:467.586667pt;}
.y126{bottom:468.066667pt;}
.y106{bottom:469.026667pt;}
.ybb{bottom:473.826667pt;}
.y186{bottom:476.546667pt;}
.y63{bottom:476.866667pt;}
.y1c0{bottom:477.986667pt;}
.y24{bottom:480.226667pt;}
.y1e0{bottom:480.866667pt;}
.y125{bottom:483.426667pt;}
.yba{bottom:489.026667pt;}
.y62{bottom:492.226667pt;}
.y1bf{bottom:494.306667pt;}
.y23{bottom:495.586667pt;}
.y1df{bottom:496.226667pt;}
.y124{bottom:498.786667pt;}
.y103{bottom:500.386667pt;}
.yb9{bottom:504.386667pt;}
.y185{bottom:507.426667pt;}
.y61{bottom:507.586667pt;}
.y183{bottom:508.866667pt;}
.y1be{bottom:509.666667pt;}
.y22{bottom:510.946667pt;}
.y1de{bottom:511.426667pt;}
.y123{bottom:513.986667pt;}
.yb8{bottom:519.746667pt;}
.y180{bottom:520.880000pt;}
.y1fd{bottom:522.466667pt;}
.y60{bottom:522.786667pt;}
.y1bd{bottom:525.826667pt;}
.y21{bottom:526.306667pt;}
.y1dd{bottom:526.786667pt;}
.y122{bottom:529.346667pt;}
.y93{bottom:529.666667pt;}
.y102{bottom:531.586667pt;}
.yb7{bottom:535.106667pt;}
.y1fc{bottom:537.826667pt;}
.y5f{bottom:538.146667pt;}
.y1bc{bottom:541.186667pt;}
.y20{bottom:541.666667pt;}
.y1dc{bottom:542.146667pt;}
.y121{bottom:544.706667pt;}
.y17f{bottom:545.346667pt;}
.yb6{bottom:550.466667pt;}
.y5e{bottom:553.506667pt;}
.y1bb{bottom:556.546667pt;}
.y1f{bottom:557.026667pt;}
.y1db{bottom:557.506667pt;}
.y120{bottom:560.066667pt;}
.y17e{bottom:560.706667pt;}
.y101{bottom:562.946667pt;}
.yb5{bottom:565.826667pt;}
.y5d{bottom:568.866667pt;}
.y1ba{bottom:571.906667pt;}
.y1e{bottom:572.226667pt;}
.y1da{bottom:572.866667pt;}
.y11f{bottom:575.426667pt;}
.y17d{bottom:576.066667pt;}
.y8d{bottom:576.386667pt;}
.y100{bottom:578.973333pt;}
.yb4{bottom:581.053333pt;}
.y184{bottom:584.093333pt;}
.y5c{bottom:584.253333pt;}
.y1b9{bottom:587.293333pt;}
.y1d{bottom:587.613333pt;}
.y1d9{bottom:588.253333pt;}
.y11e{bottom:590.653333pt;}
.y17c{bottom:591.293333pt;}
.yff{bottom:594.973333pt;}
.yb3{bottom:596.413333pt;}
.y5b{bottom:599.453333pt;}
.y11d{bottom:602.813333pt;}
.y1c{bottom:602.973333pt;}
.y179{bottom:603.413333pt;}
.y1b8{bottom:603.453333pt;}
.y178{bottom:610.173333pt;}
.yfe{bottom:610.973333pt;}
.yb2{bottom:611.773333pt;}
.y5a{bottom:614.813333pt;}
.y1b{bottom:618.333333pt;}
.y1b7{bottom:618.813333pt;}
.yb1{bottom:627.133333pt;}
.y59{bottom:630.173333pt;}
.y1a{bottom:633.693333pt;}
.y1b6{bottom:634.173333pt;}
.yb0{bottom:642.493333pt;}
.y58{bottom:645.533333pt;}
.y19{bottom:648.893333pt;}
.y1b5{bottom:649.533333pt;}
.y8a{bottom:653.693333pt;}
.yaf{bottom:657.533333pt;}
.y57{bottom:660.893333pt;}
.y18{bottom:664.253333pt;}
.y1b4{bottom:664.893333pt;}
.yae{bottom:672.733333pt;}
.y16e{bottom:672.880000pt;}
.y56{bottom:676.253333pt;}
.y17{bottom:679.613333pt;}
.y1b3{bottom:680.253333pt;}
.yad{bottom:685.213333pt;}
.y176{bottom:686.146667pt;}
.ydc{bottom:689.920000pt;}
.y55{bottom:691.453333pt;}
.y172{bottom:692.893333pt;}
.y16{bottom:694.653333pt;}
.y1b2{bottom:695.453333pt;}
.yef{bottom:697.600000pt;}
.yed{bottom:697.760000pt;}
.y54{bottom:706.813333pt;}
.y162{bottom:707.746667pt;}
.y15{bottom:710.333333pt;}
.y1b1{bottom:710.813333pt;}
.y89{bottom:715.613333pt;}
.y53{bottom:722.173333pt;}
.y14{bottom:725.693333pt;}
.y1b0{bottom:726.173333pt;}
.ydf{bottom:726.720000pt;}
.y161{bottom:734.493333pt;}
.y52{bottom:737.533333pt;}
.ye1{bottom:740.733333pt;}
.y13{bottom:740.893333pt;}
.y1af{bottom:741.533333pt;}
.y160{bottom:747.453333pt;}
.y51{bottom:752.893333pt;}
.y12{bottom:756.253333pt;}
.y1ae{bottom:756.893333pt;}
.y15f{bottom:763.453333pt;}
.y50{bottom:768.253333pt;}
.y11{bottom:771.613333pt;}
.y1ad{bottom:772.093333pt;}
.y84{bottom:777.693333pt;}
.y15e{bottom:779.453333pt;}
.ye3{bottom:779.520000pt;}
.y4f{bottom:783.453333pt;}
.y10{bottom:786.973333pt;}
.y1ac{bottom:787.453333pt;}
.y15d{bottom:795.453333pt;}
.y4e{bottom:798.853333pt;}
.y1ab{bottom:799.653333pt;}
.y1f7{bottom:799.680000pt;}
.yf{bottom:802.373333pt;}
.y15c{bottom:811.493333pt;}
.y4d{bottom:814.213333pt;}
.ye{bottom:817.413333pt;}
.yd8{bottom:819.040000pt;}
.ye6{bottom:825.280000pt;}
.y15b{bottom:827.493333pt;}
.y4c{bottom:829.573333pt;}
.ydb{bottom:831.813333pt;}
.y15a{bottom:843.493333pt;}
.y4b{bottom:844.933333pt;}
.yda{bottom:847.013333pt;}
.yd{bottom:847.973333pt;}
.y80{bottom:855.013333pt;}
.yea{bottom:859.040000pt;}
.y159{bottom:859.493333pt;}
.y4a{bottom:860.293333pt;}
.yc{bottom:863.653333pt;}
.y49{bottom:875.493333pt;}
.yb{bottom:879.013333pt;}
.y48{bottom:890.853333pt;}
.y158{bottom:891.493333pt;}
.ya{bottom:894.373333pt;}
.yac{bottom:904.293333pt;}
.y47{bottom:906.213333pt;}
.y157{bottom:907.493333pt;}
.y9{bottom:909.733333pt;}
.yab{bottom:919.653333pt;}
.y46{bottom:921.573333pt;}
.y155{bottom:923.493333pt;}
.y8{bottom:924.933333pt;}
.yaa{bottom:935.013333pt;}
.y45{bottom:936.933333pt;}
.y7{bottom:940.293333pt;}
.y7b{bottom:947.653333pt;}
.ya9{bottom:950.373333pt;}
.y44{bottom:952.133333pt;}
.y6{bottom:955.333333pt;}
.ya8{bottom:965.573333pt;}
.y43{bottom:967.493333pt;}
.y154{bottom:972.933333pt;}
.ya7{bottom:981.893333pt;}
.y42{bottom:982.853333pt;}
.y5{bottom:986.053333pt;}
.y153{bottom:988.613333pt;}
.ya6{bottom:997.253333pt;}
.y41{bottom:998.213333pt;}
.y150{bottom:1000.746667pt;}
.y4{bottom:1001.573333pt;}
.y152{bottom:1004.773333pt;}
.y79{bottom:1009.733333pt;}
.y40{bottom:1013.573333pt;}
.y3{bottom:1016.640000pt;}
.y146{bottom:1017.213333pt;}
.y78{bottom:1028.640000pt;}
.y3f{bottom:1028.960000pt;}
.y2{bottom:1034.560000pt;}
.y14f{bottom:1044.000000pt;}
.y3e{bottom:1044.160000pt;}
.y1{bottom:1062.560000pt;}
.h29{height:14.533594pt;}
.hf{height:15.200000pt;}
.h8{height:15.232000pt;}
.h23{height:15.360000pt;}
.h24{height:15.392000pt;}
.h4b{height:15.665982pt;}
.h26{height:17.866674pt;}
.h1f{height:19.040000pt;}
.h15{height:20.000000pt;}
.h16{height:20.032000pt;}
.h13{height:20.960000pt;}
.h45{height:21.266529pt;}
.h40{height:21.266758pt;}
.h42{height:23.533052pt;}
.h48{height:23.533854pt;}
.h3c{height:24.466704pt;}
.h3e{height:26.866718pt;}
.h1a{height:27.200000pt;}
.h1e{height:27.520000pt;}
.h1d{height:27.840000pt;}
.h37{height:28.706605pt;}
.h10{height:30.560000pt;}
.h30{height:30.578791pt;}
.h11{height:30.720000pt;}
.h25{height:30.752000pt;}
.h4d{height:33.640129pt;}
.h2b{height:34.173819pt;}
.h4f{height:35.906250pt;}
.h34{height:36.798480pt;}
.h17{height:37.120000pt;}
.h3d{height:38.339993pt;}
.h39{height:38.510110pt;}
.h2c{height:39.198402pt;}
.h19{height:39.736250pt;}
.h28{height:40.563631pt;}
.h2f{height:41.021661pt;}
.h1b{height:41.920000pt;}
.h3f{height:42.100881pt;}
.h20{height:43.215000pt;}
.h4c{height:44.038350pt;}
.h1c{height:45.440000pt;}
.h7{height:45.520312pt;}
.h47{height:45.666387pt;}
.hd{height:45.920000pt;}
.h22{height:46.112000pt;}
.h44{height:47.064306pt;}
.h6{height:47.621250pt;}
.h32{height:47.938033pt;}
.h2a{height:48.010631pt;}
.h3a{height:48.093781pt;}
.h4a{height:49.140740pt;}
.h35{height:49.314569pt;}
.h3b{height:50.999876pt;}
.h36{height:51.025262pt;}
.h2e{height:51.230359pt;}
.he{height:52.108438pt;}
.h5{height:52.134375pt;}
.h33{height:52.478750pt;}
.h2d{height:52.530765pt;}
.h2{height:52.834688pt;}
.h4{height:53.535000pt;}
.h31{height:54.325984pt;}
.h12{height:54.598989pt;}
.h18{height:56.000000pt;}
.h27{height:56.987647pt;}
.h38{height:58.988136pt;}
.h46{height:59.781945pt;}
.h9{height:61.280000pt;}
.hc{height:61.440000pt;}
.h41{height:63.603787pt;}
.h43{height:66.153325pt;}
.h3{height:72.843750pt;}
.hb{height:76.672000pt;}
.h49{height:80.775104pt;}
.h14{height:82.112000pt;}
.ha{height:92.000000pt;}
.h4e{height:134.080000pt;}
.h21{height:168.640000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w17{width:14.599290pt;}
.wf{width:20.800000pt;}
.w10{width:38.880000pt;}
.w25{width:57.760000pt;}
.w1d{width:77.152000pt;}
.w1a{width:79.360000pt;}
.w5{width:80.480000pt;}
.w19{width:82.600069pt;}
.w1e{width:87.840000pt;}
.w16{width:96.001048pt;}
.wa{width:98.240000pt;}
.w21{width:99.331425pt;}
.w20{width:121.740730pt;}
.w26{width:137.306667pt;}
.w27{width:142.426667pt;}
.w3{width:156.640000pt;}
.w23{width:158.536552pt;}
.wb{width:164.320000pt;}
.w1c{width:168.666667pt;}
.wc{width:172.960000pt;}
.w1b{width:187.866667pt;}
.wd{width:201.600000pt;}
.w18{width:216.930225pt;}
.w14{width:235.706667pt;}
.we{width:236.000000pt;}
.w22{width:252.340731pt;}
.w7{width:255.866667pt;}
.w29{width:261.133766pt;}
.w28{width:264.026667pt;}
.w6{width:265.826667pt;}
.w8{width:292.026667pt;}
.w2a{width:299.071327pt;}
.w9{width:311.106667pt;}
.w24{width:328.333399pt;}
.w15{width:367.106667pt;}
.w4{width:446.173333pt;}
.w13{width:472.253333pt;}
.w12{width:472.573333pt;}
.w11{width:481.693333pt;}
.w1f{width:529.729941pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x55{left:1.644410pt;}
.x3e{left:5.533333pt;}
.x16{left:6.880000pt;}
.x21{left:8.800000pt;}
.x39{left:9.853333pt;}
.x26{left:10.880000pt;}
.x28{left:12.640000pt;}
.x23{left:17.120000pt;}
.x19{left:18.080000pt;}
.x59{left:22.240000pt;}
.x67{left:23.840000pt;}
.x65{left:25.120000pt;}
.x66{left:27.200000pt;}
.x61{left:28.800000pt;}
.x78{left:30.037905pt;}
.x82{left:31.520000pt;}
.x68{left:32.960000pt;}
.x3b{left:34.493333pt;}
.x63{left:36.960000pt;}
.x35{left:39.226667pt;}
.x5b{left:43.200000pt;}
.x75{left:44.708409pt;}
.x52{left:45.599699pt;}
.x72{left:49.451441pt;}
.x13{left:52.154667pt;}
.x29{left:58.400000pt;}
.x47{left:60.314667pt;}
.x27{left:61.280000pt;}
.x5c{left:62.240000pt;}
.x51{left:64.825256pt;}
.x34{left:66.426667pt;}
.x22{left:67.520000pt;}
.x1f{left:70.080000pt;}
.x64{left:74.266667pt;}
.x33{left:76.186667pt;}
.x32{left:78.394667pt;}
.x5f{left:80.186667pt;}
.x20{left:84.200000pt;}
.x2f{left:86.554667pt;}
.x5d{left:90.280000pt;}
.x31{left:92.666667pt;}
.x1{left:94.591988pt;}
.x24{left:96.360000pt;}
.x54{left:99.041384pt;}
.x1d{left:103.520000pt;}
.x1e{left:105.000000pt;}
.x1b{left:107.080000pt;}
.x25{left:110.240000pt;}
.x12{left:112.031988pt;}
.x36{left:113.280000pt;}
.x4a{left:114.394667pt;}
.x53{left:117.128715pt;}
.x49{left:118.586667pt;}
.x3{left:120.991988pt;}
.x37{left:122.911988pt;}
.x86{left:125.280000pt;}
.x71{left:127.021127pt;}
.x85{left:128.640000pt;}
.x50{left:131.798751pt;}
.x7d{left:139.849382pt;}
.x6a{left:142.943679pt;}
.x8c{left:152.186655pt;}
.x81{left:153.626667pt;}
.x43{left:156.026667pt;}
.x69{left:158.013333pt;}
.x8a{left:158.906655pt;}
.x44{left:160.666667pt;}
.x9{left:167.706655pt;}
.x80{left:169.306655pt;}
.x5a{left:175.226667pt;}
.x1a{left:176.346667pt;}
.x8d{left:178.719988pt;}
.x4b{left:180.186667pt;}
.x8f{left:181.466655pt;}
.x15{left:186.946667pt;}
.x2c{left:191.546655pt;}
.x6e{left:200.728511pt;}
.x7c{left:207.146667pt;}
.x73{left:208.484482pt;}
.x8e{left:214.653322pt;}
.x46{left:219.386655pt;}
.x18{left:229.466655pt;}
.x2d{left:237.466655pt;}
.x7a{left:241.143973pt;}
.x45{left:248.826655pt;}
.x14{left:252.506667pt;}
.x87{left:253.652291pt;}
.x2e{left:260.386655pt;}
.x2{left:268.866655pt;}
.x89{left:274.631152pt;}
.x76{left:289.826655pt;}
.x83{left:291.586667pt;}
.x77{left:293.546667pt;}
.x7f{left:306.600473pt;}
.x41{left:310.560000pt;}
.x17{left:317.666655pt;}
.x48{left:331.586667pt;}
.x6{left:348.706655pt;}
.x5e{left:363.746667pt;}
.x7e{left:365.666655pt;}
.x6f{left:368.765036pt;}
.xc{left:372.386655pt;}
.x88{left:382.146655pt;}
.x6b{left:385.132415pt;}
.x30{left:387.586667pt;}
.x79{left:392.866655pt;}
.x2a{left:396.866655pt;}
.xf{left:406.466655pt;}
.xb{left:408.066655pt;}
.x70{left:412.663260pt;}
.x6c{left:418.694097pt;}
.x40{left:428.480000pt;}
.x6d{left:431.996157pt;}
.x10{left:432.893322pt;}
.x84{left:434.653333pt;}
.x1c{left:442.813333pt;}
.x4e{left:450.613333pt;}
.xd{left:452.573322pt;}
.x42{left:457.920000pt;}
.x3f{left:462.880000pt;}
.x4f{left:465.213322pt;}
.xe{left:478.173322pt;}
.x7{left:482.653322pt;}
.x3d{left:491.680000pt;}
.x5{left:504.893322pt;}
.x57{left:509.013333pt;}
.x3a{left:516.160000pt;}
.x4c{left:519.613333pt;}
.x38{left:523.840000pt;}
.x60{left:533.053333pt;}
.xa{left:541.853322pt;}
.x3c{left:547.453322pt;}
.x58{left:591.653322pt;}
.x62{left:610.853333pt;}
.x4d{left:615.653322pt;}
.x4{left:636.293322pt;}
.x11{left:641.413322pt;}
.x7b{left:648.933322pt;}
.x56{left:649.893322pt;}
.x2b{left:680.613322pt;}
.x8b{left:684.933322pt;}
.x74{left:687.813322pt;}
.x8{left:699.333322pt;}
}




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