
    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_a53da8817a0e71b1f92be66c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_ddc8f1f3699aeea95301a885.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893066;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_ee8b5644260246e0d5f5f738.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005859;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_7e54f634d8bd4ff20a9d2313.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_3fd30309d18cde4c768d27c5.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_494eefc97b93b8a2acbfeef7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.956055;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_0180692bab1c0ded32e44f7d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.052734;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_1e043183a428c53eb7502aa9.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.008789;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_af5a6178ecac019811265575.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.007812;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_96aaee9b172fb8ec3702281b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.006836;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_10ca9781171c0eade1ebc9e3.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.432129;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_3e6d53a10b90c34ca7b503b7.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.432129;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_f19ab40574b721a0a63b88aa.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.762207;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_a6620809b6a80a3da2738707.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.997070;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_8bbd95f28600c8b5d6bf9d93.woff2')format("woff");}.fff{font-family:fff;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_d2a5d738897fbb11650b5a4b.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.936035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_9c17e4347e414e3d0ce8010a.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.938477;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_ff3c12d8478fc6e1462859c6.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.739746;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;}
.m1{transform:matrix(0.000000,-0.249568,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249568,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249568,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.000000,-0.249935,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249935,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249935,0.250000,0.000000,0,0);}
.m8{transform:matrix(0.000000,-0.249951,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249951,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249951,0.250000,0.000000,0,0);}
.m6{transform:matrix(0.000000,-0.250100,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250100,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250100,0.250000,0.000000,0,0);}
.mc{transform:matrix(0.000000,-0.250280,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250280,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250280,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.237228,0.000000,-0.079068,0.237167,0,0);-ms-transform:matrix(0.237228,0.000000,-0.079068,0.237167,0,0);-webkit-transform:matrix(0.237228,0.000000,-0.079068,0.237167,0,0);}
.mb{transform:matrix(0.249721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249721,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m9{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);}
.m7{transform:matrix(0.250049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250049,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250065,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250114,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250433,0.000000,0.000000,0.250000,0,0);}
.v5{vertical-align:-57.600000px;}
.v6{vertical-align:-14.407805px;}
.v7{vertical-align:-10.889620px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:39.146719px;}
.v3{vertical-align:44.781644px;}
.v2{vertical-align:53.266168px;}
.v4{vertical-align:64.800000px;}
.v1{vertical-align:114.017540px;}
.ls59{letter-spacing:-4.764000px;}
.ls6c{letter-spacing:-4.608000px;}
.ls47{letter-spacing:-4.524000px;}
.ls68{letter-spacing:-4.284000px;}
.ls4e{letter-spacing:-4.044000px;}
.ls66{letter-spacing:-1.620000px;}
.ls44{letter-spacing:-1.560000px;}
.ls46{letter-spacing:-0.840000px;}
.ls2a{letter-spacing:-0.751501px;}
.ls2d{letter-spacing:-0.751010px;}
.ls28{letter-spacing:-0.600686px;}
.ls57{letter-spacing:-0.580800px;}
.ls5a{letter-spacing:-0.457800px;}
.ls51{letter-spacing:-0.442200px;}
.ls4b{letter-spacing:-0.309000px;}
.ls36{letter-spacing:-0.306000px;}
.ls55{letter-spacing:-0.303000px;}
.ls3a{letter-spacing:-0.288000px;}
.ls4a{letter-spacing:-0.270000px;}
.ls6a{letter-spacing:-0.244860px;}
.ls4f{letter-spacing:-0.237600px;}
.ls60{letter-spacing:-0.216000px;}
.ls3e{letter-spacing:-0.205800px;}
.ls45{letter-spacing:-0.186600px;}
.ls61{letter-spacing:-0.180000px;}
.ls5b{letter-spacing:-0.163200px;}
.ls2e{letter-spacing:-0.158400px;}
.ls6b{letter-spacing:-0.144000px;}
.ls5f{letter-spacing:-0.132600px;}
.ls3c{letter-spacing:-0.122400px;}
.ls2b{letter-spacing:-0.115338px;}
.ls2c{letter-spacing:-0.115240px;}
.ls3f{letter-spacing:-0.103200px;}
.ls34{letter-spacing:-0.090000px;}
.ls29{letter-spacing:-0.089833px;}
.ls54{letter-spacing:-0.065400px;}
.ls41{letter-spacing:-0.057600px;}
.ls67{letter-spacing:-0.054000px;}
.ls5d{letter-spacing:-0.048960px;}
.ls3b{letter-spacing:-0.036000px;}
.ls5c{letter-spacing:-0.025920px;}
.ls31{letter-spacing:-0.018000px;}
.ls26{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.005760px;}
.ls27{letter-spacing:0.009891px;}
.ls6d{letter-spacing:0.010080px;}
.ls62{letter-spacing:0.018000px;}
.ls3d{letter-spacing:0.025920px;}
.ls1f{letter-spacing:0.036000px;}
.ls69{letter-spacing:0.054000px;}
.ls17{letter-spacing:0.129600px;}
.ls25{letter-spacing:0.137520px;}
.ls4d{letter-spacing:0.139200px;}
.ls6{letter-spacing:0.144000px;}
.ls56{letter-spacing:0.155400px;}
.ls16{letter-spacing:0.169680px;}
.ls37{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.217386px;}
.ls1a{letter-spacing:0.234000px;}
.ls24{letter-spacing:0.237600px;}
.ls50{letter-spacing:0.245400px;}
.ls18{letter-spacing:0.256200px;}
.ls22{letter-spacing:0.260558px;}
.ls53{letter-spacing:0.277800px;}
.ls2{letter-spacing:0.284869px;}
.ls1d{letter-spacing:0.288000px;}
.ls32{letter-spacing:0.342000px;}
.ls5e{letter-spacing:0.371400px;}
.ls40{letter-spacing:0.411000px;}
.ls35{letter-spacing:0.414000px;}
.ls43{letter-spacing:0.450000px;}
.ls48{letter-spacing:0.514200px;}
.ls7{letter-spacing:0.530817px;}
.ls8{letter-spacing:0.533520px;}
.ls63{letter-spacing:0.540000px;}
.ls1c{letter-spacing:0.558000px;}
.ls30{letter-spacing:0.561600px;}
.lsd{letter-spacing:0.597600px;}
.ls9{letter-spacing:0.617040px;}
.ls42{letter-spacing:0.618000px;}
.ls21{letter-spacing:0.630000px;}
.ls65{letter-spacing:0.738000px;}
.lse{letter-spacing:0.800640px;}
.ls39{letter-spacing:0.936000px;}
.ls33{letter-spacing:1.062000px;}
.ls4{letter-spacing:1.440000px;}
.ls19{letter-spacing:2.070000px;}
.ls2f{letter-spacing:2.442000px;}
.ls58{letter-spacing:2.760000px;}
.ls10{letter-spacing:2.761200px;}
.ls14{letter-spacing:4.201200px;}
.ls13{letter-spacing:4.921200px;}
.lsf{letter-spacing:5.641200px;}
.ls20{letter-spacing:7.110000px;}
.ls1b{letter-spacing:11.430000px;}
.ls15{letter-spacing:12.121200px;}
.lsa{letter-spacing:15.058800px;}
.ls5{letter-spacing:17.010000px;}
.ls1e{letter-spacing:17.190000px;}
.ls11{letter-spacing:20.761200px;}
.ls49{letter-spacing:23.700000px;}
.lsc{letter-spacing:28.018800px;}
.lsb{letter-spacing:33.058800px;}
.ls64{letter-spacing:37.380000px;}
.ls38{letter-spacing:40.800000px;}
.ls52{letter-spacing:43.080000px;}
.ls4c{letter-spacing:69.000000px;}
.ls23{letter-spacing:114.444000px;}
.ls0{letter-spacing:562.510729px;}
.ls3{letter-spacing:565.076575px;}
.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;}
}
.ws26{word-spacing:-144.000000px;}
.wse{word-spacing:-123.840000px;}
.ws1e{word-spacing:-88.200000px;}
.ws24{word-spacing:-69.767954px;}
.ws6d{word-spacing:-58.741200px;}
.ws15{word-spacing:-49.572000px;}
.ws1c{word-spacing:-49.446000px;}
.ws17{word-spacing:-48.924000px;}
.ws13{word-spacing:-48.852000px;}
.ws1b{word-spacing:-48.690000px;}
.ws14{word-spacing:-48.654000px;}
.ws12{word-spacing:-48.492000px;}
.ws16{word-spacing:-48.420000px;}
.ws18{word-spacing:-48.204000px;}
.ws4f{word-spacing:-41.940000px;}
.ws31{word-spacing:-41.719200px;}
.ws3b{word-spacing:-41.698800px;}
.ws39{word-spacing:-41.615400px;}
.ws32{word-spacing:-41.551200px;}
.ws2f{word-spacing:-41.512200px;}
.ws2c{word-spacing:-41.127120px;}
.ws2b{word-spacing:-41.101200px;}
.ws30{word-spacing:-41.043600px;}
.ws2e{word-spacing:-40.998000px;}
.ws2a{word-spacing:-40.978800px;}
.ws35{word-spacing:-40.914600px;}
.ws2d{word-spacing:-40.895400px;}
.ws3a{word-spacing:-40.831200px;}
.ws3c{word-spacing:-40.792200px;}
.ws5d{word-spacing:-40.500000px;}
.ws61{word-spacing:-40.428000px;}
.ws37{word-spacing:-40.261200px;}
.ws5f{word-spacing:-40.230000px;}
.ws67{word-spacing:-40.140000px;}
.ws5e{word-spacing:-39.924000px;}
.ws69{word-spacing:-39.744000px;}
.ws65{word-spacing:-39.726000px;}
.ws5c{word-spacing:-39.708000px;}
.ws62{word-spacing:-39.690000px;}
.ws64{word-spacing:-39.636000px;}
.ws33{word-spacing:-39.541200px;}
.ws59{word-spacing:-39.510000px;}
.ws5b{word-spacing:-39.474000px;}
.ws60{word-spacing:-39.420000px;}
.ws5a{word-spacing:-39.384000px;}
.ws46{word-spacing:-38.556600px;}
.ws42{word-spacing:-38.524200px;}
.ws49{word-spacing:-38.434200px;}
.ws3f{word-spacing:-38.418000px;}
.ws4c{word-spacing:-38.278800px;}
.ws47{word-spacing:-38.213400px;}
.ws4e{word-spacing:-38.115600px;}
.ws63{word-spacing:-38.070000px;}
.ws43{word-spacing:-38.041200px;}
.ws3e{word-spacing:-38.008800px;}
.ws48{word-spacing:-37.975800px;}
.ws44{word-spacing:-37.836600px;}
.ws4d{word-spacing:-37.821000px;}
.ws4a{word-spacing:-37.698000px;}
.ws38{word-spacing:-36.577200px;}
.ws66{word-spacing:-35.406000px;}
.wsf{word-spacing:-35.280000px;}
.ws6b{word-spacing:-35.136000px;}
.ws27{word-spacing:-34.992000px;}
.ws40{word-spacing:-34.234800px;}
.ws4b{word-spacing:-33.514800px;}
.ws25{word-spacing:-32.527329px;}
.ws11{word-spacing:-31.960800px;}
.ws10{word-spacing:-31.240800px;}
.ws6c{word-spacing:-30.672000px;}
.ws6{word-spacing:-30.053578px;}
.wsa{word-spacing:-27.187859px;}
.wsc{word-spacing:-27.176963px;}
.wsd{word-spacing:-27.170068px;}
.ws1{word-spacing:-27.065214px;}
.ws5{word-spacing:-27.026599px;}
.ws3{word-spacing:-27.019608px;}
.ws28{word-spacing:-26.460000px;}
.ws29{word-spacing:-26.424000px;}
.ws0{word-spacing:-25.047531px;}
.ws7{word-spacing:-24.986339px;}
.ws1f{word-spacing:-23.159188px;}
.ws8{word-spacing:-22.469730px;}
.ws22{word-spacing:-18.976709px;}
.ws1a{word-spacing:-18.516000px;}
.ws19{word-spacing:-18.504000px;}
.ws20{word-spacing:-18.445892px;}
.ws1d{word-spacing:-18.324000px;}
.ws6a{word-spacing:-18.089228px;}
.ws3d{word-spacing:-15.842880px;}
.ws54{word-spacing:-15.341640px;}
.ws56{word-spacing:-15.226440px;}
.ws36{word-spacing:-15.122880px;}
.ws52{word-spacing:-15.099840px;}
.ws55{word-spacing:-14.970240px;}
.ws51{word-spacing:-14.944320px;}
.ws53{word-spacing:-14.921280px;}
.ws6f{word-spacing:-14.878800px;}
.ws57{word-spacing:-14.754240px;}
.ws6e{word-spacing:-14.651280px;}
.ws68{word-spacing:-14.616000px;}
.ws34{word-spacing:-14.402880px;}
.ws41{word-spacing:-14.109120px;}
.ws58{word-spacing:-13.896000px;}
.ws45{word-spacing:-13.389120px;}
.ws9{word-spacing:-0.089879px;}
.ws23{word-spacing:-0.083306px;}
.ws70{word-spacing:0.000000px;}
.ws50{word-spacing:41.973000px;}
.ws21{word-spacing:180.765016px;}
.ws2{word-spacing:373.316625px;}
.ws4{word-spacing:463.098814px;}
.wsb{word-spacing:465.080489px;}
._40{margin-left:-32.998108px;}
._2d{margin-left:-22.850160px;}
._16{margin-left:-19.117218px;}
._9{margin-left:-15.480000px;}
._45{margin-left:-13.978658px;}
._d{margin-left:-12.949182px;}
._15{margin-left:-11.889856px;}
._14{margin-left:-10.491326px;}
._a{margin-left:-9.000000px;}
._12{margin-left:-7.920000px;}
._10{margin-left:-6.567326px;}
._1a{margin-left:-5.547856px;}
._f{margin-left:-4.320000px;}
._5{margin-left:-2.432674px;}
._4{margin-left:-1.081188px;}
._0{width:1.729182px;}
._b{width:2.792674px;}
._e{width:4.500000px;}
._13{width:6.423326px;}
._6b{width:7.472674px;}
._11{width:8.941188px;}
._6f{width:9.990000px;}
._42{width:11.479668px;}
._3d{width:12.696498px;}
._2a{width:13.844674px;}
._37{width:15.769920px;}
._17{width:17.340000px;}
._1b{width:18.528000px;}
._c{width:19.800000px;}
._46{width:21.444464px;}
._3f{width:23.427360px;}
._3e{width:24.609360px;}
._22{width:25.812000px;}
._23{width:26.836818px;}
._21{width:27.888000px;}
._72{width:28.960818px;}
._20{width:30.255326px;}
._24{width:32.256000px;}
._33{width:33.820320px;}
._5e{width:35.370000px;}
._48{width:36.720000px;}
._49{width:37.959326px;}
._1c{width:40.238144px;}
._1d{width:42.120000px;}
._44{width:43.301760px;}
._2e{width:44.744230px;}
._2c{width:45.928268px;}
._2b{width:47.349892px;}
._36{width:49.442880px;}
._25{width:52.594818px;}
._41{width:53.712740px;}
._1e{width:58.722000px;}
._1f{width:59.912150px;}
._31{width:63.768926px;}
._32{width:65.083082px;}
._3b{width:68.329920px;}
._43{width:69.984498px;}
._4a{width:71.406000px;}
._55{width:72.538818px;}
._3a{width:78.168464px;}
._35{width:79.411668px;}
._34{width:80.569920px;}
._5b{width:82.024818px;}
._5a{width:83.250000px;}
._47{width:94.202674px;}
._19{width:99.206338px;}
._18{width:100.446000px;}
._70{width:106.974000px;}
._3c{width:110.543006px;}
._59{width:118.584000px;}
._78{width:126.288000px;}
._4f{width:139.807188px;}
._60{width:143.084674px;}
._27{width:144.756000px;}
._71{width:156.708000px;}
._29{width:164.052000px;}
._28{width:165.108000px;}
._68{width:166.536000px;}
._4d{width:169.378818px;}
._6e{width:170.876674px;}
._62{width:172.586674px;}
._65{width:180.054000px;}
._50{width:201.453326px;}
._74{width:214.208674px;}
._73{width:215.298000px;}
._75{width:222.099326px;}
._39{width:223.276322px;}
._38{width:224.640018px;}
._58{width:233.928000px;}
._54{width:242.352000px;}
._4e{width:243.414000px;}
._2f{width:247.082418px;}
._30{width:249.044898px;}
._6c{width:253.419326px;}
._53{width:257.616000px;}
._6d{width:272.466000px;}
._5f{width:282.940818px;}
._51{width:290.196000px;}
._63{width:331.316674px;}
._67{width:340.272000px;}
._4c{width:342.171856px;}
._52{width:412.454674px;}
._5c{width:474.716674px;}
._8{width:491.389434px;}
._76{width:493.126170px;}
._77{width:499.299255px;}
._6{width:513.239269px;}
._7{width:515.828727px;}
._4b{width:519.120000px;}
._5d{width:520.596000px;}
._57{width:567.846000px;}
._61{width:589.374000px;}
._69{width:620.564144px;}
._64{width:627.463492px;}
._26{width:633.044674px;}
._6a{width:641.720674px;}
._66{width:670.338000px;}
._1{width:686.541870px;}
._2{width:693.866148px;}
._3{width:696.454022px;}
._56{width:797.960674px;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs24{font-size:51.900785px;}
.fs8{font-size:58.196355px;}
.fs1c{font-size:59.760000px;}
.fs25{font-size:63.360000px;}
.fs22{font-size:65.069166px;}
.fs20{font-size:66.240000px;}
.fs19{font-size:66.352131px;}
.fs6{font-size:71.921919px;}
.fs23{font-size:78.092851px;}
.fs21{font-size:78.180165px;}
.fs18{font-size:83.306432px;}
.fs4{font-size:89.878919px;}
.fs1{font-size:90.099034px;}
.fsd{font-size:90.436718px;}
.fsa{font-size:90.513562px;}
.fs7{font-size:94.742203px;}
.fs17{font-size:108.000000px;}
.fs0{font-size:108.073881px;}
.fs3{font-size:108.078431px;}
.fs5{font-size:108.106394px;}
.fs2{font-size:108.260857px;}
.fsc{font-size:108.659109px;}
.fse{font-size:108.680271px;}
.fsb{font-size:108.707854px;}
.fs9{font-size:108.751437px;}
.fs1b{font-size:117.004781px;}
.fs14{font-size:128.160000px;}
.fs13{font-size:144.000000px;}
.fs1e{font-size:156.240000px;}
.fs1f{font-size:162.000000px;}
.fs1d{font-size:167.760000px;}
.fs15{font-size:192.240000px;}
.fs16{font-size:198.000000px;}
.fs12{font-size:216.000000px;}
.fs10{font-size:239.760000px;}
.fs11{font-size:239.904000px;}
.fs1a{font-size:250.963862px;}
.fsf{font-size:360.000000px;}
.y0{bottom:0.000000px;}
.y116{bottom:8.131540px;}
.y2f{bottom:8.781933px;}
.y3a{bottom:12.000759px;}
.y2{bottom:13.928933px;}
.y6c{bottom:25.653432px;}
.y6f{bottom:31.098242px;}
.y122{bottom:32.584786px;}
.y117{bottom:32.827702px;}
.y6b{bottom:49.799071px;}
.y3b{bottom:61.574846px;}
.y30{bottom:63.071148px;}
.y3{bottom:63.327841px;}
.y13e{bottom:64.224000px;}
.y13a{bottom:71.892000px;}
.yc6{bottom:75.312000px;}
.y121{bottom:84.164002px;}
.y13d{bottom:85.824000px;}
.y3d{bottom:93.479786px;}
.y32{bottom:95.059515px;}
.y5{bottom:95.080557px;}
.yc5{bottom:95.112000px;}
.y10{bottom:96.373146px;}
.y65{bottom:100.519571px;}
.y124{bottom:102.909039px;}
.y119{bottom:103.111470px;}
.y13c{bottom:106.524000px;}
.yc4{bottom:114.912000px;}
.y139{bottom:115.092000px;}
.y67{bottom:127.953037px;}
.yc3{bottom:134.712000px;}
.y2e{bottom:136.554000px;}
.y66{bottom:143.030973px;}
.y13b{bottom:143.496000px;}
.y68{bottom:146.695749px;}
.yc2{bottom:154.515000px;}
.y125{bottom:155.500407px;}
.y11a{bottom:155.743323px;}
.y3e{bottom:157.571014px;}
.y4{bottom:162.295156px;}
.y49{bottom:181.316842px;}
.y18{bottom:182.521170px;}
.y6e{bottom:185.605199px;}
.y118{bottom:190.770227px;}
.y33{bottom:191.418838px;}
.y11{bottom:192.137089px;}
.y123{bottom:192.632585px;}
.y71{bottom:194.400662px;}
.y69{bottom:197.688490px;}
.yc1{bottom:202.530000px;}
.y31{bottom:206.737211px;}
.y126{bottom:207.968697px;}
.y11b{bottom:208.211614px;}
.y6{bottom:209.952330px;}
.y3f{bottom:221.605973px;}
.y19{bottom:237.936207px;}
.y127{bottom:260.568162px;}
.y11c{bottom:260.811079px;}
.y73{bottom:261.350884px;}
.y1b{bottom:272.444151px;}
.y25{bottom:274.085246px;}
.yf{bottom:277.670476px;}
.y4a{bottom:278.895316px;}
.y3c{bottom:280.695947px;}
.y40{bottom:285.535144px;}
.y34{bottom:287.602451px;}
.y12{bottom:287.741426px;}
.y74{bottom:293.077374px;}
.y114{bottom:296.790000px;}
.yc0{bottom:306.975000px;}
.y128{bottom:313.070461px;}
.y11d{bottom:313.280988px;}
.y48{bottom:315.808262px;}
.y6d{bottom:323.861493px;}
.y7{bottom:324.833094px;}
.y113{bottom:346.110000px;}
.y41{bottom:349.615119px;}
.y6a{bottom:354.017364px;}
.y1c{bottom:354.566314px;}
.y26{bottom:356.184927px;}
.ybf{bottom:357.555000px;}
.y129{bottom:365.669926px;}
.y11e{bottom:365.912842px;}
.y70{bottom:372.445952px;}
.y4b{bottom:376.624592px;}
.y13{bottom:383.437929px;}
.y35{bottom:383.973039px;}
.y112{bottom:394.710000px;}
.ybe{bottom:407.235000px;}
.y72{bottom:409.889492px;}
.y42{bottom:413.717601px;}
.y12a{bottom:418.139835px;}
.y11f{bottom:418.382752px;}
.y1a{bottom:432.619461px;}
.y1d{bottom:436.508630px;}
.y27{bottom:438.127244px;}
.y8{bottom:439.525028px;}
.y24{bottom:442.173778px;}
.y111{bottom:443.310000px;}
.y12c{bottom:445.103539px;}
.ybd{bottom:458.355000px;}
.y12b{bottom:470.642134px;}
.y120{bottom:470.852661px;}
.y4c{bottom:474.196312px;}
.y43{bottom:477.640020px;}
.y14{bottom:479.044514px;}
.y36{bottom:480.163410px;}
.y110{bottom:491.940000px;}
.ybc{bottom:508.035000px;}
.y1e{bottom:518.450946px;}
.y28{bottom:520.069560px;}
.y10f{bottom:539.820000px;}
.y44{bottom:541.719995px;}
.y9{bottom:554.351840px;}
.y4d{bottom:571.948096px;}
.y15{bottom:574.808457px;}
.y37{bottom:576.511470px;}
.yba{bottom:584.640000px;}
.y10e{bottom:589.140000px;}
.y1f{bottom:600.393263px;}
.y29{bottom:602.011876px;}
.y45{bottom:605.754953px;}
.y47{bottom:629.343226px;}
.y4f{bottom:637.491084px;}
.y10d{bottom:637.740000px;}
.ya{bottom:669.043774px;}
.y4e{bottom:669.519817px;}
.y46{bottom:669.677373px;}
.y16{bottom:670.392562px;}
.y38{bottom:672.701841px;}
.y20{bottom:682.335579px;}
.y2a{bottom:683.954193px;}
.y10c{bottom:686.340000px;}
.ye{bottom:699.054305px;}
.yd{bottom:727.041655px;}
.y10b{bottom:734.220000px;}
.yb9{bottom:735.870000px;}
.y17{bottom:749.760000px;}
.y2d{bottom:751.508832px;}
.yc{bottom:755.096444px;}
.y21{bottom:764.277895px;}
.y2b{bottom:765.896509px;}
.yb{bottom:783.128753px;}
.yb8{bottom:783.390000px;}
.y10a{bottom:783.540000px;}
.y23{bottom:810.295981px;}
.y76{bottom:813.167519px;}
.yb7{bottom:830.730000px;}
.y109{bottom:832.140000px;}
.y138{bottom:844.020000px;}
.y22{bottom:846.265173px;}
.y2c{bottom:847.838825px;}
.y77{bottom:852.370152px;}
.yb6{bottom:877.530000px;}
.y108{bottom:880.020000px;}
.y137{bottom:887.220000px;}
.yb5{bottom:924.330000px;}
.y107{bottom:929.340000px;}
.yb4{bottom:971.130000px;}
.y106{bottom:977.940000px;}
.y78{bottom:996.971743px;}
.yb3{bottom:1017.930000px;}
.y105{bottom:1026.540000px;}
.yb2{bottom:1064.190000px;}
.y104{bottom:1075.140000px;}
.yb1{bottom:1111.530000px;}
.y103{bottom:1123.740000px;}
.yb0{bottom:1158.330000px;}
.y102{bottom:1172.340000px;}
.yaf{bottom:1205.130000px;}
.y101{bottom:1220.940000px;}
.yae{bottom:1251.930000px;}
.y100{bottom:1269.540000px;}
.yad{bottom:1298.730000px;}
.yff{bottom:1318.140000px;}
.yac{bottom:1345.575000px;}
.yfe{bottom:1366.740000px;}
.yab{bottom:1392.375000px;}
.yfd{bottom:1415.370000px;}
.yaa{bottom:1439.175000px;}
.yfc{bottom:1463.970000px;}
.ya9{bottom:1485.975000px;}
.yfb{bottom:1512.570000px;}
.ya8{bottom:1532.775000px;}
.yfa{bottom:1561.170000px;}
.yf9{bottom:1609.770000px;}
.ya7{bottom:1609.920000px;}
.y136{bottom:1633.650000px;}
.yf8{bottom:1658.370000px;}
.y135{bottom:1676.850000px;}
.yf7{bottom:1706.250000px;}
.y134{bottom:1720.050000px;}
.ya6{bottom:1720.185000px;}
.yf6{bottom:1755.570000px;}
.y133{bottom:1763.250000px;}
.ya5{bottom:1770.765000px;}
.yf5{bottom:1803.450000px;}
.y1{bottom:1810.800000px;}
.ya4{bottom:1821.165000px;}
.yf4{bottom:1852.770000px;}
.ya3{bottom:1871.565000px;}
.yf3{bottom:1901.370000px;}
.y75{bottom:1924.810098px;}
.yf2{bottom:1949.250000px;}
.y89{bottom:1969.095000px;}
.yf1{bottom:1998.570000px;}
.ya2{bottom:2033.895000px;}
.yf0{bottom:2047.170000px;}
.ya1{bottom:2083.935000px;}
.yef{bottom:2095.770000px;}
.ya0{bottom:2134.875000px;}
.yee{bottom:2144.370000px;}
.y9f{bottom:2185.305000px;}
.yed{bottom:2192.970000px;}
.y9e{bottom:2235.705000px;}
.yec{bottom:2240.850000px;}
.y85{bottom:2251.410000px;}
.y88{bottom:2255.430000px;}
.y9d{bottom:2286.105000px;}
.yeb{bottom:2290.170000px;}
.y9c{bottom:2336.505000px;}
.yea{bottom:2338.770000px;}
.y83{bottom:2355.870000px;}
.y9b{bottom:2386.905000px;}
.ye9{bottom:2387.415000px;}
.ye8{bottom:2436.015000px;}
.y9a{bottom:2437.305000px;}
.ye7{bottom:2484.615000px;}
.y99{bottom:2487.705000px;}
.ye6{bottom:2533.215000px;}
.y98{bottom:2538.105000px;}
.y84{bottom:2576.445000px;}
.ye5{bottom:2581.815000px;}
.y97{bottom:2588.505000px;}
.y132{bottom:2597.865000px;}
.ye4{bottom:2630.415000px;}
.y96{bottom:2638.905000px;}
.y131{bottom:2641.065000px;}
.ye3{bottom:2679.015000px;}
.y130{bottom:2684.265000px;}
.y95{bottom:2689.305000px;}
.y87{bottom:2690.025000px;}
.y39{bottom:2721.600000px;}
.ye2{bottom:2727.615000px;}
.y94{bottom:2739.705000px;}
.ye1{bottom:2776.215000px;}
.y93{bottom:2790.105000px;}
.y86{bottom:2804.145000px;}
.ye0{bottom:2824.095000px;}
.y92{bottom:2840.505000px;}
.ydf{bottom:2873.415000px;}
.y91{bottom:2890.905000px;}
.yde{bottom:2922.015000px;}
.y90{bottom:2941.305000px;}
.ydd{bottom:2969.895000px;}
.y8f{bottom:2991.705000px;}
.ydc{bottom:3019.215000px;}
.y64{bottom:3037.693471px;}
.y8e{bottom:3042.105000px;}
.y82{bottom:3050.025000px;}
.ydb{bottom:3067.815000px;}
.y8d{bottom:3092.505000px;}
.y81{bottom:3093.225000px;}
.yda{bottom:3116.415000px;}
.y80{bottom:3136.425000px;}
.y8c{bottom:3142.950000px;}
.yd9{bottom:3165.015000px;}
.y7f{bottom:3179.625000px;}
.y8b{bottom:3193.350000px;}
.yd8{bottom:3213.615000px;}
.y7e{bottom:3222.825000px;}
.y8a{bottom:3243.750000px;}
.yd7{bottom:3262.215000px;}
.y7d{bottom:3266.025000px;}
.y7c{bottom:3309.225000px;}
.yd6{bottom:3310.845000px;}
.y7b{bottom:3352.425000px;}
.yd5{bottom:3359.445000px;}
.y7a{bottom:3395.625000px;}
.yd4{bottom:3408.045000px;}
.y12f{bottom:3420.390000px;}
.y79{bottom:3438.825000px;}
.yd3{bottom:3456.645000px;}
.y12e{bottom:3463.590000px;}
.yd2{bottom:3505.245000px;}
.y12d{bottom:3506.835000px;}
.y115{bottom:3546.570000px;}
.y63{bottom:3552.045000px;}
.yd1{bottom:3553.845000px;}
.yd0{bottom:3602.445000px;}
.ycf{bottom:3651.045000px;}
.y5f{bottom:3684.990000px;}
.yce{bottom:3699.645000px;}
.y62{bottom:3730.065000px;}
.y5e{bottom:3744.390000px;}
.ycd{bottom:3748.245000px;}
.y61{bottom:3762.465000px;}
.ycc{bottom:3796.845000px;}
.y5d{bottom:3803.790000px;}
.ycb{bottom:3845.445000px;}
.y5c{bottom:3863.190000px;}
.yca{bottom:3894.045000px;}
.y5b{bottom:3922.590000px;}
.yc9{bottom:3942.645000px;}
.y5a{bottom:3981.990000px;}
.yc8{bottom:3991.245000px;}
.yc7{bottom:4039.845000px;}
.y59{bottom:4041.435000px;}
.ybb{bottom:4122.105000px;}
.y60{bottom:4127.550000px;}
.y58{bottom:4309.380000px;}
.y57{bottom:4362.480000px;}
.y56{bottom:4400.820000px;}
.y55{bottom:4431.060000px;}
.y54{bottom:4495.860000px;}
.y53{bottom:4561.230000px;}
.y52{bottom:4633.230000px;}
.y51{bottom:4712.610000px;}
.y50{bottom:4820.610000px;}
.h32{height:44.820000px;}
.h33{height:47.520000px;}
.h25{height:52.260820px;}
.h30{height:56.853731px;}
.h2a{height:57.927656px;}
.h2e{height:67.865106px;}
.h1f{height:69.203199px;}
.h8{height:71.534491px;}
.ha{height:75.405171px;}
.h2d{height:81.539469px;}
.h7{height:86.019454px;}
.hf{height:86.555099px;}
.h1e{height:86.886005px;}
.hb{height:91.100032px;}
.h2f{height:93.277616px;}
.hd{height:93.740903px;}
.h3{height:93.970477px;}
.h14{height:94.322671px;}
.h10{height:94.402817px;}
.h24{height:94.447266px;}
.h1a{height:96.120000px;}
.h23{height:108.000000px;}
.h9{height:110.508711px;}
.h1c{height:112.640625px;}
.h2{height:112.717681px;}
.hc{height:112.751591px;}
.h4{height:112.912690px;}
.h13{height:113.328056px;}
.h15{height:113.350126px;}
.h11{height:113.378895px;}
.h28{height:117.180000px;}
.h29{height:121.500000px;}
.h22{height:122.032330px;}
.h26{height:125.820000px;}
.h2b{height:141.670898px;}
.h27{height:146.708086px;}
.h1b{height:148.500000px;}
.h19{height:172.800000px;}
.h31{height:179.820000px;}
.h5{height:207.988017px;}
.h17{height:209.672930px;}
.h18{height:209.798859px;}
.h21{height:261.747466px;}
.h16{height:270.000000px;}
.h1d{height:434.014189px;}
.h2c{height:530.723419px;}
.h12{height:764.998304px;}
.he{height:765.017565px;}
.h1{height:825.727972px;}
.h6{height:942.775012px;}
.h20{height:1098.071605px;}
.h0{height:5103.000000px;}
.w6{width:619.420382px;}
.w8{width:722.904016px;}
.w4{width:944.517136px;}
.w7{width:1006.890720px;}
.w2{width:1018.790597px;}
.w5{width:1045.740314px;}
.w3{width:1052.461036px;}
.w1{width:3827.250000px;}
.w0{width:3827.340000px;}
.x0{left:0.000000px;}
.x53{left:22.150249px;}
.x17{left:30.270935px;}
.x7{left:33.537086px;}
.xd{left:36.635106px;}
.x55{left:41.068467px;}
.x54{left:50.041477px;}
.x19{left:56.662021px;}
.x9{left:59.870442px;}
.xe{left:64.167653px;}
.x18{left:69.209046px;}
.x8{left:72.417857px;}
.x50{left:83.993976px;}
.x1e{left:85.053636px;}
.x16{left:94.922340px;}
.x1d{left:97.543447px;}
.x40{left:100.725946px;}
.x3{left:120.585336px;}
.x37{left:126.115373px;}
.x29{left:129.888000px;}
.x2d{left:132.879000px;}
.x3e{left:135.601391px;}
.x1c{left:144.738186px;}
.xc{left:146.652858px;}
.x4c{left:156.885000px;}
.x32{left:164.227587px;}
.x47{left:178.410000px;}
.x2e{left:209.616131px;}
.x31{left:215.063427px;}
.x30{left:216.571909px;}
.x1f{left:219.330366px;}
.x4f{left:220.612790px;}
.xf{left:232.061317px;}
.x10{left:238.245122px;}
.x33{left:267.671733px;}
.x2f{left:279.446273px;}
.x2{left:307.109901px;}
.x1b{left:353.825465px;}
.x28{left:385.050000px;}
.x11{left:386.521510px;}
.x3c{left:389.544501px;}
.x26{left:395.490000px;}
.x15{left:410.030099px;}
.x34{left:420.384575px;}
.x3f{left:423.423747px;}
.x35{left:430.692535px;}
.xb{left:460.412352px;}
.x39{left:505.090024px;}
.x23{left:521.310000px;}
.x44{left:523.875000px;}
.x56{left:526.199842px;}
.x3b{left:530.482803px;}
.x41{left:539.283538px;}
.x3d{left:542.320196px;}
.x38{left:549.862605px;}
.x43{left:575.070000px;}
.x36{left:578.586615px;}
.x3a{left:579.801781px;}
.x2c{left:630.285000px;}
.x6{left:649.348960px;}
.x52{left:666.545682px;}
.x24{left:701.130000px;}
.x51{left:713.554097px;}
.x2a{left:742.500000px;}
.x42{left:777.450000px;}
.x49{left:778.650000px;}
.x4b{left:791.280000px;}
.x22{left:812.580656px;}
.x45{left:846.255000px;}
.x46{left:885.930000px;}
.x5{left:925.518181px;}
.x21{left:957.086966px;}
.x13{left:969.260757px;}
.x4{left:1007.891551px;}
.x20{left:1034.326590px;}
.x12{left:1038.766720px;}
.x48{left:1172.415000px;}
.x27{left:1250.355000px;}
.x2b{left:1451.625000px;}
.x25{left:1952.025000px;}
.x5a{left:2213.670000px;}
.x5b{left:2222.205000px;}
.x4d{left:2239.200000px;}
.x5c{left:2256.045000px;}
.xa{left:2709.705000px;}
.x1a{left:2713.080000px;}
.x4a{left:2722.755000px;}
.x1{left:2736.780000px;}
.x14{left:2771.895000px;}
.x57{left:2815.230000px;}
.x58{left:2821.935000px;}
.x4e{left:2840.655000px;}
.x59{left:2874.780000px;}
@media print{
.v5{vertical-align:-51.200000pt;}
.v6{vertical-align:-12.806938pt;}
.v7{vertical-align:-9.679662pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:34.797084pt;}
.v3{vertical-align:39.805906pt;}
.v2{vertical-align:47.347704pt;}
.v4{vertical-align:57.600000pt;}
.v1{vertical-align:101.348924pt;}
.ls59{letter-spacing:-4.234667pt;}
.ls6c{letter-spacing:-4.096000pt;}
.ls47{letter-spacing:-4.021333pt;}
.ls68{letter-spacing:-3.808000pt;}
.ls4e{letter-spacing:-3.594667pt;}
.ls66{letter-spacing:-1.440000pt;}
.ls44{letter-spacing:-1.386667pt;}
.ls46{letter-spacing:-0.746667pt;}
.ls2a{letter-spacing:-0.668001pt;}
.ls2d{letter-spacing:-0.667564pt;}
.ls28{letter-spacing:-0.533943pt;}
.ls57{letter-spacing:-0.516267pt;}
.ls5a{letter-spacing:-0.406933pt;}
.ls51{letter-spacing:-0.393067pt;}
.ls4b{letter-spacing:-0.274667pt;}
.ls36{letter-spacing:-0.272000pt;}
.ls55{letter-spacing:-0.269333pt;}
.ls3a{letter-spacing:-0.256000pt;}
.ls4a{letter-spacing:-0.240000pt;}
.ls6a{letter-spacing:-0.217653pt;}
.ls4f{letter-spacing:-0.211200pt;}
.ls60{letter-spacing:-0.192000pt;}
.ls3e{letter-spacing:-0.182933pt;}
.ls45{letter-spacing:-0.165867pt;}
.ls61{letter-spacing:-0.160000pt;}
.ls5b{letter-spacing:-0.145067pt;}
.ls2e{letter-spacing:-0.140800pt;}
.ls6b{letter-spacing:-0.128000pt;}
.ls5f{letter-spacing:-0.117867pt;}
.ls3c{letter-spacing:-0.108800pt;}
.ls2b{letter-spacing:-0.102523pt;}
.ls2c{letter-spacing:-0.102436pt;}
.ls3f{letter-spacing:-0.091733pt;}
.ls34{letter-spacing:-0.080000pt;}
.ls29{letter-spacing:-0.079852pt;}
.ls54{letter-spacing:-0.058133pt;}
.ls41{letter-spacing:-0.051200pt;}
.ls67{letter-spacing:-0.048000pt;}
.ls5d{letter-spacing:-0.043520pt;}
.ls3b{letter-spacing:-0.032000pt;}
.ls5c{letter-spacing:-0.023040pt;}
.ls31{letter-spacing:-0.016000pt;}
.ls26{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.005120pt;}
.ls27{letter-spacing:0.008792pt;}
.ls6d{letter-spacing:0.008960pt;}
.ls62{letter-spacing:0.016000pt;}
.ls3d{letter-spacing:0.023040pt;}
.ls1f{letter-spacing:0.032000pt;}
.ls69{letter-spacing:0.048000pt;}
.ls17{letter-spacing:0.115200pt;}
.ls25{letter-spacing:0.122240pt;}
.ls4d{letter-spacing:0.123733pt;}
.ls6{letter-spacing:0.128000pt;}
.ls56{letter-spacing:0.138133pt;}
.ls16{letter-spacing:0.150827pt;}
.ls37{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.193232pt;}
.ls1a{letter-spacing:0.208000pt;}
.ls24{letter-spacing:0.211200pt;}
.ls50{letter-spacing:0.218133pt;}
.ls18{letter-spacing:0.227733pt;}
.ls22{letter-spacing:0.231607pt;}
.ls53{letter-spacing:0.246933pt;}
.ls2{letter-spacing:0.253217pt;}
.ls1d{letter-spacing:0.256000pt;}
.ls32{letter-spacing:0.304000pt;}
.ls5e{letter-spacing:0.330133pt;}
.ls40{letter-spacing:0.365333pt;}
.ls35{letter-spacing:0.368000pt;}
.ls43{letter-spacing:0.400000pt;}
.ls48{letter-spacing:0.457067pt;}
.ls7{letter-spacing:0.471837pt;}
.ls8{letter-spacing:0.474240pt;}
.ls63{letter-spacing:0.480000pt;}
.ls1c{letter-spacing:0.496000pt;}
.ls30{letter-spacing:0.499200pt;}
.lsd{letter-spacing:0.531200pt;}
.ls9{letter-spacing:0.548480pt;}
.ls42{letter-spacing:0.549333pt;}
.ls21{letter-spacing:0.560000pt;}
.ls65{letter-spacing:0.656000pt;}
.lse{letter-spacing:0.711680pt;}
.ls39{letter-spacing:0.832000pt;}
.ls33{letter-spacing:0.944000pt;}
.ls4{letter-spacing:1.280000pt;}
.ls19{letter-spacing:1.840000pt;}
.ls2f{letter-spacing:2.170667pt;}
.ls58{letter-spacing:2.453333pt;}
.ls10{letter-spacing:2.454400pt;}
.ls14{letter-spacing:3.734400pt;}
.ls13{letter-spacing:4.374400pt;}
.lsf{letter-spacing:5.014400pt;}
.ls20{letter-spacing:6.320000pt;}
.ls1b{letter-spacing:10.160000pt;}
.ls15{letter-spacing:10.774400pt;}
.lsa{letter-spacing:13.385600pt;}
.ls5{letter-spacing:15.120000pt;}
.ls1e{letter-spacing:15.280000pt;}
.ls11{letter-spacing:18.454400pt;}
.ls49{letter-spacing:21.066667pt;}
.lsc{letter-spacing:24.905600pt;}
.lsb{letter-spacing:29.385600pt;}
.ls64{letter-spacing:33.226667pt;}
.ls38{letter-spacing:36.266667pt;}
.ls52{letter-spacing:38.293333pt;}
.ls4c{letter-spacing:61.333333pt;}
.ls23{letter-spacing:101.728000pt;}
.ls0{letter-spacing:500.009537pt;}
.ls3{letter-spacing:502.290289pt;}
.ws26{word-spacing:-128.000000pt;}
.wse{word-spacing:-110.080000pt;}
.ws1e{word-spacing:-78.400000pt;}
.ws24{word-spacing:-62.015959pt;}
.ws6d{word-spacing:-52.214400pt;}
.ws15{word-spacing:-44.064000pt;}
.ws1c{word-spacing:-43.952000pt;}
.ws17{word-spacing:-43.488000pt;}
.ws13{word-spacing:-43.424000pt;}
.ws1b{word-spacing:-43.280000pt;}
.ws14{word-spacing:-43.248000pt;}
.ws12{word-spacing:-43.104000pt;}
.ws16{word-spacing:-43.040000pt;}
.ws18{word-spacing:-42.848000pt;}
.ws4f{word-spacing:-37.280000pt;}
.ws31{word-spacing:-37.083733pt;}
.ws3b{word-spacing:-37.065600pt;}
.ws39{word-spacing:-36.991467pt;}
.ws32{word-spacing:-36.934400pt;}
.ws2f{word-spacing:-36.899733pt;}
.ws2c{word-spacing:-36.557440pt;}
.ws2b{word-spacing:-36.534400pt;}
.ws30{word-spacing:-36.483200pt;}
.ws2e{word-spacing:-36.442667pt;}
.ws2a{word-spacing:-36.425600pt;}
.ws35{word-spacing:-36.368533pt;}
.ws2d{word-spacing:-36.351467pt;}
.ws3a{word-spacing:-36.294400pt;}
.ws3c{word-spacing:-36.259733pt;}
.ws5d{word-spacing:-36.000000pt;}
.ws61{word-spacing:-35.936000pt;}
.ws37{word-spacing:-35.787733pt;}
.ws5f{word-spacing:-35.760000pt;}
.ws67{word-spacing:-35.680000pt;}
.ws5e{word-spacing:-35.488000pt;}
.ws69{word-spacing:-35.328000pt;}
.ws65{word-spacing:-35.312000pt;}
.ws5c{word-spacing:-35.296000pt;}
.ws62{word-spacing:-35.280000pt;}
.ws64{word-spacing:-35.232000pt;}
.ws33{word-spacing:-35.147733pt;}
.ws59{word-spacing:-35.120000pt;}
.ws5b{word-spacing:-35.088000pt;}
.ws60{word-spacing:-35.040000pt;}
.ws5a{word-spacing:-35.008000pt;}
.ws46{word-spacing:-34.272533pt;}
.ws42{word-spacing:-34.243733pt;}
.ws49{word-spacing:-34.163733pt;}
.ws3f{word-spacing:-34.149333pt;}
.ws4c{word-spacing:-34.025600pt;}
.ws47{word-spacing:-33.967467pt;}
.ws4e{word-spacing:-33.880533pt;}
.ws63{word-spacing:-33.840000pt;}
.ws43{word-spacing:-33.814400pt;}
.ws3e{word-spacing:-33.785600pt;}
.ws48{word-spacing:-33.756267pt;}
.ws44{word-spacing:-33.632533pt;}
.ws4d{word-spacing:-33.618667pt;}
.ws4a{word-spacing:-33.509333pt;}
.ws38{word-spacing:-32.513067pt;}
.ws66{word-spacing:-31.472000pt;}
.wsf{word-spacing:-31.360000pt;}
.ws6b{word-spacing:-31.232000pt;}
.ws27{word-spacing:-31.104000pt;}
.ws40{word-spacing:-30.430933pt;}
.ws4b{word-spacing:-29.790933pt;}
.ws25{word-spacing:-28.913181pt;}
.ws11{word-spacing:-28.409600pt;}
.ws10{word-spacing:-27.769600pt;}
.ws6c{word-spacing:-27.264000pt;}
.ws6{word-spacing:-26.714291pt;}
.wsa{word-spacing:-24.166986pt;}
.wsc{word-spacing:-24.157301pt;}
.wsd{word-spacing:-24.151171pt;}
.ws1{word-spacing:-24.057968pt;}
.ws5{word-spacing:-24.023643pt;}
.ws3{word-spacing:-24.017429pt;}
.ws28{word-spacing:-23.520000pt;}
.ws29{word-spacing:-23.488000pt;}
.ws0{word-spacing:-22.264472pt;}
.ws7{word-spacing:-22.210079pt;}
.ws1f{word-spacing:-20.585945pt;}
.ws8{word-spacing:-19.973093pt;}
.ws22{word-spacing:-16.868186pt;}
.ws1a{word-spacing:-16.458667pt;}
.ws19{word-spacing:-16.448000pt;}
.ws20{word-spacing:-16.396349pt;}
.ws1d{word-spacing:-16.288000pt;}
.ws6a{word-spacing:-16.079314pt;}
.ws3d{word-spacing:-14.082560pt;}
.ws54{word-spacing:-13.637013pt;}
.ws56{word-spacing:-13.534613pt;}
.ws36{word-spacing:-13.442560pt;}
.ws52{word-spacing:-13.422080pt;}
.ws55{word-spacing:-13.306880pt;}
.ws51{word-spacing:-13.283840pt;}
.ws53{word-spacing:-13.263360pt;}
.ws6f{word-spacing:-13.225600pt;}
.ws57{word-spacing:-13.114880pt;}
.ws6e{word-spacing:-13.023360pt;}
.ws68{word-spacing:-12.992000pt;}
.ws34{word-spacing:-12.802560pt;}
.ws41{word-spacing:-12.541440pt;}
.ws58{word-spacing:-12.352000pt;}
.ws45{word-spacing:-11.901440pt;}
.ws9{word-spacing:-0.079892pt;}
.ws23{word-spacing:-0.074050pt;}
.ws70{word-spacing:0.000000pt;}
.ws50{word-spacing:37.309333pt;}
.ws21{word-spacing:160.680014pt;}
.ws2{word-spacing:331.837000pt;}
.ws4{word-spacing:411.643390pt;}
.wsb{word-spacing:413.404879pt;}
._40{margin-left:-29.331651pt;}
._2d{margin-left:-20.311253pt;}
._16{margin-left:-16.993082pt;}
._9{margin-left:-13.760000pt;}
._45{margin-left:-12.425474pt;}
._d{margin-left:-11.510384pt;}
._15{margin-left:-10.568761pt;}
._14{margin-left:-9.325623pt;}
._a{margin-left:-8.000000pt;}
._12{margin-left:-7.040000pt;}
._10{margin-left:-5.837623pt;}
._1a{margin-left:-4.931428pt;}
._f{margin-left:-3.840000pt;}
._5{margin-left:-2.162377pt;}
._4{margin-left:-0.961056pt;}
._0{width:1.537051pt;}
._b{width:2.482377pt;}
._e{width:4.000000pt;}
._13{width:5.709623pt;}
._6b{width:6.642377pt;}
._11{width:7.947723pt;}
._6f{width:8.880000pt;}
._42{width:10.204150pt;}
._3d{width:11.285776pt;}
._2a{width:12.306377pt;}
._37{width:14.017707pt;}
._17{width:15.413333pt;}
._1b{width:16.469333pt;}
._c{width:17.600000pt;}
._46{width:19.061746pt;}
._3f{width:20.824320pt;}
._3e{width:21.874987pt;}
._22{width:22.944000pt;}
._23{width:23.854949pt;}
._21{width:24.789333pt;}
._72{width:25.742949pt;}
._20{width:26.893623pt;}
._24{width:28.672000pt;}
._33{width:30.062507pt;}
._5e{width:31.440000pt;}
._48{width:32.640000pt;}
._49{width:33.741623pt;}
._1c{width:35.767239pt;}
._1d{width:37.440000pt;}
._44{width:38.490453pt;}
._2e{width:39.772649pt;}
._2c{width:40.825127pt;}
._2b{width:42.088793pt;}
._36{width:43.949227pt;}
._25{width:46.750949pt;}
._41{width:47.744658pt;}
._1e{width:52.197333pt;}
._1f{width:53.255245pt;}
._31{width:56.683490pt;}
._32{width:57.851628pt;}
._3b{width:60.737707pt;}
._43{width:62.208443pt;}
._4a{width:63.472000pt;}
._55{width:64.478949pt;}
._3a{width:69.483079pt;}
._35{width:70.588150pt;}
._34{width:71.617707pt;}
._5b{width:72.910949pt;}
._5a{width:74.000000pt;}
._47{width:83.735710pt;}
._19{width:88.183411pt;}
._18{width:89.285333pt;}
._70{width:95.088000pt;}
._3c{width:98.260450pt;}
._59{width:105.408000pt;}
._78{width:112.256000pt;}
._4f{width:124.273056pt;}
._60{width:127.186377pt;}
._27{width:128.672000pt;}
._71{width:139.296000pt;}
._29{width:145.824000pt;}
._28{width:146.762667pt;}
._68{width:148.032000pt;}
._4d{width:150.558949pt;}
._6e{width:151.890377pt;}
._62{width:153.410377pt;}
._65{width:160.048000pt;}
._50{width:179.069623pt;}
._74{width:190.407710pt;}
._73{width:191.376000pt;}
._75{width:197.421623pt;}
._39{width:198.467842pt;}
._38{width:199.680016pt;}
._58{width:207.936000pt;}
._54{width:215.424000pt;}
._4e{width:216.368000pt;}
._2f{width:219.628816pt;}
._30{width:221.373243pt;}
._6c{width:225.261623pt;}
._53{width:228.992000pt;}
._6d{width:242.192000pt;}
._5f{width:251.502949pt;}
._51{width:257.952000pt;}
._63{width:294.503710pt;}
._67{width:302.464000pt;}
._4c{width:304.152761pt;}
._52{width:366.626377pt;}
._5c{width:421.970377pt;}
._8{width:436.790608pt;}
._76{width:438.334374pt;}
._77{width:443.821560pt;}
._6{width:456.212684pt;}
._7{width:458.514424pt;}
._4b{width:461.440000pt;}
._5d{width:462.752000pt;}
._57{width:504.752000pt;}
._61{width:523.888000pt;}
._69{width:551.612572pt;}
._64{width:557.745326pt;}
._26{width:562.706377pt;}
._6a{width:570.418377pt;}
._66{width:595.856000pt;}
._1{width:610.259440pt;}
._2{width:616.769909pt;}
._3{width:619.070242pt;}
._56{width:709.298377pt;}
.fs24{font-size:46.134031pt;}
.fs8{font-size:51.730093pt;}
.fs1c{font-size:53.120000pt;}
.fs25{font-size:56.320000pt;}
.fs22{font-size:57.839258pt;}
.fs20{font-size:58.880000pt;}
.fs19{font-size:58.979672pt;}
.fs6{font-size:63.930594pt;}
.fs23{font-size:69.415868pt;}
.fs21{font-size:69.493480pt;}
.fs18{font-size:74.050162pt;}
.fs4{font-size:79.892372pt;}
.fs1{font-size:80.088030pt;}
.fsd{font-size:80.388194pt;}
.fsa{font-size:80.456500pt;}
.fs7{font-size:84.215291pt;}
.fs17{font-size:96.000000pt;}
.fs0{font-size:96.065672pt;}
.fs3{font-size:96.069716pt;}
.fs5{font-size:96.094573pt;}
.fs2{font-size:96.231873pt;}
.fsc{font-size:96.585875pt;}
.fse{font-size:96.604685pt;}
.fsb{font-size:96.629203pt;}
.fs9{font-size:96.667944pt;}
.fs1b{font-size:104.004249pt;}
.fs14{font-size:113.920000pt;}
.fs13{font-size:128.000000pt;}
.fs1e{font-size:138.880000pt;}
.fs1f{font-size:144.000000pt;}
.fs1d{font-size:149.120000pt;}
.fs15{font-size:170.880000pt;}
.fs16{font-size:176.000000pt;}
.fs12{font-size:192.000000pt;}
.fs10{font-size:213.120000pt;}
.fs11{font-size:213.248000pt;}
.fs1a{font-size:223.078989pt;}
.fsf{font-size:320.000000pt;}
.y0{bottom:0.000000pt;}
.y116{bottom:7.228036pt;}
.y2f{bottom:7.806163pt;}
.y3a{bottom:10.667341pt;}
.y2{bottom:12.381274pt;}
.y6c{bottom:22.803051pt;}
.y6f{bottom:27.642882pt;}
.y122{bottom:28.964254pt;}
.y117{bottom:29.180179pt;}
.y6b{bottom:44.265841pt;}
.y3b{bottom:54.733196pt;}
.y30{bottom:56.063242pt;}
.y3{bottom:56.291415pt;}
.y13e{bottom:57.088000pt;}
.y13a{bottom:63.904000pt;}
.yc6{bottom:66.944000pt;}
.y121{bottom:74.812446pt;}
.y13d{bottom:76.288000pt;}
.y3d{bottom:83.093143pt;}
.y32{bottom:84.497346pt;}
.y5{bottom:84.516051pt;}
.yc5{bottom:84.544000pt;}
.y10{bottom:85.665018pt;}
.y65{bottom:89.350730pt;}
.y124{bottom:91.474702pt;}
.y119{bottom:91.654640pt;}
.y13c{bottom:94.688000pt;}
.yc4{bottom:102.144000pt;}
.y139{bottom:102.304000pt;}
.y67{bottom:113.736033pt;}
.yc3{bottom:119.744000pt;}
.y2e{bottom:121.381333pt;}
.y66{bottom:127.138643pt;}
.y13b{bottom:127.552000pt;}
.y68{bottom:130.396221pt;}
.yc2{bottom:137.346667pt;}
.y125{bottom:138.222584pt;}
.y11a{bottom:138.438510pt;}
.y3e{bottom:140.063124pt;}
.y4{bottom:144.262361pt;}
.y49{bottom:161.170527pt;}
.y18{bottom:162.241040pt;}
.y6e{bottom:164.982399pt;}
.y118{bottom:169.573535pt;}
.y33{bottom:170.150079pt;}
.y11{bottom:170.788523pt;}
.y123{bottom:171.228964pt;}
.y71{bottom:172.800588pt;}
.y69{bottom:175.723102pt;}
.yc1{bottom:180.026667pt;}
.y31{bottom:183.766410pt;}
.y126{bottom:184.861064pt;}
.y11b{bottom:185.076990pt;}
.y6{bottom:186.624293pt;}
.y3f{bottom:196.983087pt;}
.y19{bottom:211.498851pt;}
.y127{bottom:231.616144pt;}
.y11c{bottom:231.832070pt;}
.y73{bottom:232.311897pt;}
.y1b{bottom:242.172579pt;}
.y25{bottom:243.631330pt;}
.yf{bottom:246.818201pt;}
.y4a{bottom:247.906947pt;}
.y3c{bottom:249.507509pt;}
.y40{bottom:253.809017pt;}
.y34{bottom:255.646624pt;}
.y12{bottom:255.770156pt;}
.y74{bottom:260.513221pt;}
.y114{bottom:263.813333pt;}
.yc0{bottom:272.866667pt;}
.y128{bottom:278.284854pt;}
.y11d{bottom:278.471989pt;}
.y48{bottom:280.718455pt;}
.y6d{bottom:287.876882pt;}
.y7{bottom:288.740528pt;}
.y113{bottom:307.653333pt;}
.y41{bottom:310.768994pt;}
.y6a{bottom:314.682101pt;}
.y1c{bottom:315.170057pt;}
.y26{bottom:316.608824pt;}
.ybf{bottom:317.826667pt;}
.y129{bottom:325.039934pt;}
.y11e{bottom:325.255860pt;}
.y70{bottom:331.063068pt;}
.y4b{bottom:334.777415pt;}
.y13{bottom:340.833715pt;}
.y35{bottom:341.309368pt;}
.y112{bottom:350.853333pt;}
.ybe{bottom:361.986667pt;}
.y72{bottom:364.346215pt;}
.y42{bottom:367.748979pt;}
.y12a{bottom:371.679854pt;}
.y11f{bottom:371.895779pt;}
.y1a{bottom:384.550632pt;}
.y1d{bottom:388.007671pt;}
.y27{bottom:389.446439pt;}
.y8{bottom:390.688913pt;}
.y24{bottom:393.043358pt;}
.y111{bottom:394.053333pt;}
.y12c{bottom:395.647590pt;}
.ybd{bottom:407.426667pt;}
.y12b{bottom:418.348563pt;}
.y120{bottom:418.535699pt;}
.y4c{bottom:421.507833pt;}
.y43{bottom:424.568907pt;}
.y14{bottom:425.817346pt;}
.y36{bottom:426.811920pt;}
.y110{bottom:437.280000pt;}
.ybc{bottom:451.586667pt;}
.y1e{bottom:460.845286pt;}
.y28{bottom:462.284053pt;}
.y10f{bottom:479.840000pt;}
.y44{bottom:481.528884pt;}
.y9{bottom:492.757191pt;}
.y4d{bottom:508.398308pt;}
.y15{bottom:510.940851pt;}
.y37{bottom:512.454640pt;}
.yba{bottom:519.680000pt;}
.y10e{bottom:523.680000pt;}
.y1f{bottom:533.682900pt;}
.y29{bottom:535.121668pt;}
.y45{bottom:538.448847pt;}
.y47{bottom:559.416201pt;}
.y4f{bottom:566.658741pt;}
.y10d{bottom:566.880000pt;}
.ya{bottom:594.705577pt;}
.y4e{bottom:595.128726pt;}
.y46{bottom:595.268776pt;}
.y16{bottom:595.904499pt;}
.y38{bottom:597.957192pt;}
.y20{bottom:606.520515pt;}
.y2a{bottom:607.959282pt;}
.y10c{bottom:610.080000pt;}
.ye{bottom:621.381605pt;}
.yd{bottom:646.259249pt;}
.y10b{bottom:652.640000pt;}
.yb9{bottom:654.106667pt;}
.y17{bottom:666.453333pt;}
.y2d{bottom:668.007851pt;}
.yc{bottom:671.196839pt;}
.y21{bottom:679.358129pt;}
.y2b{bottom:680.796897pt;}
.yb{bottom:696.114447pt;}
.yb8{bottom:696.346667pt;}
.y10a{bottom:696.480000pt;}
.y23{bottom:720.263094pt;}
.y76{bottom:722.815572pt;}
.yb7{bottom:738.426667pt;}
.y109{bottom:739.680000pt;}
.y138{bottom:750.240000pt;}
.y22{bottom:752.235709pt;}
.y2c{bottom:753.634511pt;}
.y77{bottom:757.662357pt;}
.yb6{bottom:780.026667pt;}
.y108{bottom:782.240000pt;}
.y137{bottom:788.640000pt;}
.yb5{bottom:821.626667pt;}
.y107{bottom:826.080000pt;}
.yb4{bottom:863.226667pt;}
.y106{bottom:869.280000pt;}
.y78{bottom:886.197105pt;}
.yb3{bottom:904.826667pt;}
.y105{bottom:912.480000pt;}
.yb2{bottom:945.946667pt;}
.y104{bottom:955.680000pt;}
.yb1{bottom:988.026667pt;}
.y103{bottom:998.880000pt;}
.yb0{bottom:1029.626667pt;}
.y102{bottom:1042.080000pt;}
.yaf{bottom:1071.226667pt;}
.y101{bottom:1085.280000pt;}
.yae{bottom:1112.826667pt;}
.y100{bottom:1128.480000pt;}
.yad{bottom:1154.426667pt;}
.yff{bottom:1171.680000pt;}
.yac{bottom:1196.066667pt;}
.yfe{bottom:1214.880000pt;}
.yab{bottom:1237.666667pt;}
.yfd{bottom:1258.106667pt;}
.yaa{bottom:1279.266667pt;}
.yfc{bottom:1301.306667pt;}
.ya9{bottom:1320.866667pt;}
.yfb{bottom:1344.506667pt;}
.ya8{bottom:1362.466667pt;}
.yfa{bottom:1387.706667pt;}
.yf9{bottom:1430.906667pt;}
.ya7{bottom:1431.040000pt;}
.y136{bottom:1452.133333pt;}
.yf8{bottom:1474.106667pt;}
.y135{bottom:1490.533333pt;}
.yf7{bottom:1516.666667pt;}
.y134{bottom:1528.933333pt;}
.ya6{bottom:1529.053333pt;}
.yf6{bottom:1560.506667pt;}
.y133{bottom:1567.333333pt;}
.ya5{bottom:1574.013333pt;}
.yf5{bottom:1603.066667pt;}
.y1{bottom:1609.600000pt;}
.ya4{bottom:1618.813333pt;}
.yf4{bottom:1646.906667pt;}
.ya3{bottom:1663.613333pt;}
.yf3{bottom:1690.106667pt;}
.y75{bottom:1710.942310pt;}
.yf2{bottom:1732.666667pt;}
.y89{bottom:1750.306667pt;}
.yf1{bottom:1776.506667pt;}
.ya2{bottom:1807.906667pt;}
.yf0{bottom:1819.706667pt;}
.ya1{bottom:1852.386667pt;}
.yef{bottom:1862.906667pt;}
.ya0{bottom:1897.666667pt;}
.yee{bottom:1906.106667pt;}
.y9f{bottom:1942.493333pt;}
.yed{bottom:1949.306667pt;}
.y9e{bottom:1987.293333pt;}
.yec{bottom:1991.866667pt;}
.y85{bottom:2001.253333pt;}
.y88{bottom:2004.826667pt;}
.y9d{bottom:2032.093333pt;}
.yeb{bottom:2035.706667pt;}
.y9c{bottom:2076.893333pt;}
.yea{bottom:2078.906667pt;}
.y83{bottom:2094.106667pt;}
.y9b{bottom:2121.693333pt;}
.ye9{bottom:2122.146667pt;}
.ye8{bottom:2165.346667pt;}
.y9a{bottom:2166.493333pt;}
.ye7{bottom:2208.546667pt;}
.y99{bottom:2211.293333pt;}
.ye6{bottom:2251.746667pt;}
.y98{bottom:2256.093333pt;}
.y84{bottom:2290.173333pt;}
.ye5{bottom:2294.946667pt;}
.y97{bottom:2300.893333pt;}
.y132{bottom:2309.213333pt;}
.ye4{bottom:2338.146667pt;}
.y96{bottom:2345.693333pt;}
.y131{bottom:2347.613333pt;}
.ye3{bottom:2381.346667pt;}
.y130{bottom:2386.013333pt;}
.y95{bottom:2390.493333pt;}
.y87{bottom:2391.133333pt;}
.y39{bottom:2419.200000pt;}
.ye2{bottom:2424.546667pt;}
.y94{bottom:2435.293333pt;}
.ye1{bottom:2467.746667pt;}
.y93{bottom:2480.093333pt;}
.y86{bottom:2492.573333pt;}
.ye0{bottom:2510.306667pt;}
.y92{bottom:2524.893333pt;}
.ydf{bottom:2554.146667pt;}
.y91{bottom:2569.693333pt;}
.yde{bottom:2597.346667pt;}
.y90{bottom:2614.493333pt;}
.ydd{bottom:2639.906667pt;}
.y8f{bottom:2659.293333pt;}
.ydc{bottom:2683.746667pt;}
.y64{bottom:2700.171974pt;}
.y8e{bottom:2704.093333pt;}
.y82{bottom:2711.133333pt;}
.ydb{bottom:2726.946667pt;}
.y8d{bottom:2748.893333pt;}
.y81{bottom:2749.533333pt;}
.yda{bottom:2770.146667pt;}
.y80{bottom:2787.933333pt;}
.y8c{bottom:2793.733333pt;}
.yd9{bottom:2813.346667pt;}
.y7f{bottom:2826.333333pt;}
.y8b{bottom:2838.533333pt;}
.yd8{bottom:2856.546667pt;}
.y7e{bottom:2864.733333pt;}
.y8a{bottom:2883.333333pt;}
.yd7{bottom:2899.746667pt;}
.y7d{bottom:2903.133333pt;}
.y7c{bottom:2941.533333pt;}
.yd6{bottom:2942.973333pt;}
.y7b{bottom:2979.933333pt;}
.yd5{bottom:2986.173333pt;}
.y7a{bottom:3018.333333pt;}
.yd4{bottom:3029.373333pt;}
.y12f{bottom:3040.346667pt;}
.y79{bottom:3056.733333pt;}
.yd3{bottom:3072.573333pt;}
.y12e{bottom:3078.746667pt;}
.yd2{bottom:3115.773333pt;}
.y12d{bottom:3117.186667pt;}
.y115{bottom:3152.506667pt;}
.y63{bottom:3157.373333pt;}
.yd1{bottom:3158.973333pt;}
.yd0{bottom:3202.173333pt;}
.ycf{bottom:3245.373333pt;}
.y5f{bottom:3275.546667pt;}
.yce{bottom:3288.573333pt;}
.y62{bottom:3315.613333pt;}
.y5e{bottom:3328.346667pt;}
.ycd{bottom:3331.773333pt;}
.y61{bottom:3344.413333pt;}
.ycc{bottom:3374.973333pt;}
.y5d{bottom:3381.146667pt;}
.ycb{bottom:3418.173333pt;}
.y5c{bottom:3433.946667pt;}
.yca{bottom:3461.373333pt;}
.y5b{bottom:3486.746667pt;}
.yc9{bottom:3504.573333pt;}
.y5a{bottom:3539.546667pt;}
.yc8{bottom:3547.773333pt;}
.yc7{bottom:3590.973333pt;}
.y59{bottom:3592.386667pt;}
.ybb{bottom:3664.093333pt;}
.y60{bottom:3668.933333pt;}
.y58{bottom:3830.560000pt;}
.y57{bottom:3877.760000pt;}
.y56{bottom:3911.840000pt;}
.y55{bottom:3938.720000pt;}
.y54{bottom:3996.320000pt;}
.y53{bottom:4054.426667pt;}
.y52{bottom:4118.426667pt;}
.y51{bottom:4188.986667pt;}
.y50{bottom:4284.986667pt;}
.h32{height:39.840000pt;}
.h33{height:42.240000pt;}
.h25{height:46.454062pt;}
.h30{height:50.536650pt;}
.h2a{height:51.491250pt;}
.h2e{height:60.324539pt;}
.h1f{height:61.513955pt;}
.h8{height:63.586214pt;}
.ha{height:67.026819pt;}
.h2d{height:72.479528pt;}
.h7{height:76.461737pt;}
.hf{height:76.937865pt;}
.h1e{height:77.232005pt;}
.hb{height:80.977806pt;}
.h2f{height:82.913436pt;}
.hd{height:83.325247pt;}
.h3{height:83.529313pt;}
.h14{height:83.842374pt;}
.h10{height:83.913615pt;}
.h24{height:83.953125pt;}
.h1a{height:85.440000pt;}
.h23{height:96.000000pt;}
.h9{height:98.229965pt;}
.h1c{height:100.125000pt;}
.h2{height:100.193494pt;}
.hc{height:100.223636pt;}
.h4{height:100.366836pt;}
.h13{height:100.736049pt;}
.h15{height:100.755668pt;}
.h11{height:100.781240pt;}
.h28{height:104.160000pt;}
.h29{height:108.000000pt;}
.h22{height:108.473182pt;}
.h26{height:111.840000pt;}
.h2b{height:125.929688pt;}
.h27{height:130.407187pt;}
.h1b{height:132.000000pt;}
.h19{height:153.600000pt;}
.h31{height:159.840000pt;}
.h5{height:184.878237pt;}
.h17{height:186.375937pt;}
.h18{height:186.487875pt;}
.h21{height:232.664414pt;}
.h16{height:240.000000pt;}
.h1d{height:385.790390pt;}
.h2c{height:471.754150pt;}
.h12{height:679.998492pt;}
.he{height:680.015613pt;}
.h1{height:733.980420pt;}
.h6{height:838.022233pt;}
.h20{height:976.063649pt;}
.h0{height:4536.000000pt;}
.w6{width:550.595895pt;}
.w8{width:642.581348pt;}
.w4{width:839.570787pt;}
.w7{width:895.013973pt;}
.w2{width:905.591642pt;}
.w5{width:929.546946pt;}
.w3{width:935.520921pt;}
.w1{width:3402.000000pt;}
.w0{width:3402.080000pt;}
.x0{left:0.000000pt;}
.x53{left:19.689110pt;}
.x17{left:26.907498pt;}
.x7{left:29.810743pt;}
.xd{left:32.564539pt;}
.x55{left:36.505304pt;}
.x54{left:44.481313pt;}
.x19{left:50.366241pt;}
.x9{left:53.218171pt;}
.xe{left:57.037913pt;}
.x18{left:61.519152pt;}
.x8{left:64.371428pt;}
.x50{left:74.661312pt;}
.x1e{left:75.603232pt;}
.x16{left:84.375413pt;}
.x1d{left:86.705286pt;}
.x40{left:89.534174pt;}
.x3{left:107.186965pt;}
.x37{left:112.102553pt;}
.x29{left:115.456000pt;}
.x2d{left:118.114667pt;}
.x3e{left:120.534570pt;}
.x1c{left:128.656165pt;}
.xc{left:130.358096pt;}
.x4c{left:139.453333pt;}
.x32{left:145.980077pt;}
.x47{left:158.586667pt;}
.x2e{left:186.325450pt;}
.x31{left:191.167491pt;}
.x30{left:192.508364pt;}
.x1f{left:194.960325pt;}
.x4f{left:196.100258pt;}
.xf{left:206.276726pt;}
.x10{left:211.773441pt;}
.x33{left:237.930430pt;}
.x2f{left:248.396687pt;}
.x2{left:272.986579pt;}
.x1b{left:314.511525pt;}
.x28{left:342.266667pt;}
.x11{left:343.574675pt;}
.x3c{left:346.261778pt;}
.x26{left:351.546667pt;}
.x15{left:364.471200pt;}
.x34{left:373.675178pt;}
.x3f{left:376.376664pt;}
.x35{left:382.837809pt;}
.xb{left:409.255424pt;}
.x39{left:448.968910pt;}
.x23{left:463.386667pt;}
.x44{left:465.666667pt;}
.x56{left:467.733193pt;}
.x3b{left:471.540269pt;}
.x41{left:479.363145pt;}
.x3d{left:482.062396pt;}
.x38{left:488.766760pt;}
.x43{left:511.173333pt;}
.x36{left:514.299213pt;}
.x3a{left:515.379361pt;}
.x2c{left:560.253333pt;}
.x6{left:577.199076pt;}
.x52{left:592.485051pt;}
.x24{left:623.226667pt;}
.x51{left:634.270309pt;}
.x2a{left:660.000000pt;}
.x42{left:691.066667pt;}
.x49{left:692.133333pt;}
.x4b{left:703.360000pt;}
.x22{left:722.293917pt;}
.x45{left:752.226667pt;}
.x46{left:787.493333pt;}
.x5{left:822.682827pt;}
.x21{left:850.743969pt;}
.x13{left:861.565118pt;}
.x4{left:895.903600pt;}
.x20{left:919.401413pt;}
.x12{left:923.348195pt;}
.x48{left:1042.146667pt;}
.x27{left:1111.426667pt;}
.x2b{left:1290.333333pt;}
.x25{left:1735.133333pt;}
.x5a{left:1967.706667pt;}
.x5b{left:1975.293333pt;}
.x4d{left:1990.400000pt;}
.x5c{left:2005.373333pt;}
.xa{left:2408.626667pt;}
.x1a{left:2411.626667pt;}
.x4a{left:2420.226667pt;}
.x1{left:2432.693333pt;}
.x14{left:2463.906667pt;}
.x57{left:2502.426667pt;}
.x58{left:2508.386667pt;}
.x4e{left:2525.026667pt;}
.x59{left:2555.360000pt;}
}




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