
    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_ffd0faff5559d76c95a40d36.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006348;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_2dc76099fbbf2fe40e54b83a.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_45872e1802c0d3e88c0f2481.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.833984;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_ce1eee1714f53419875ee363.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.005371;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_89bf35f9eae75345f39e1fc6.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_9802a0bf941a5d1bef26b4bc.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.202148;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_8c0348ab0f703d266d0d2496.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.943000;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_9054a1bcaa91180e54866516.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.929199;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_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_ff669b9eea3e066817dfa5ad.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_b7bbdba98d351e1ec89a8ebf.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.063477;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_00adb99462e9698463f65967.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_de2bba636f1392ca1837498e.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.005371;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_74da78c5c31f56635631f007.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.130371;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_949975ef6a7f47540d996ca6.woff2')format("woff");}.fff{font-family:fff;line-height:1.047852;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_1e0b3f740d4867d356c42618.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.100586;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_fcf63c682bf30ff4e76a401a.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.005371;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_e38957fb385aedef63ca5c79.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_d5c41be750d9e3c2cdf45b8c.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_5edec773ec63bcd967e7c57c.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.929199;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.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v9{vertical-align:-37.860000px;}
.v3{vertical-align:-22.320000px;}
.ve{vertical-align:-3.300016px;}
.vb{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.vc{vertical-align:1.860000px;}
.vd{vertical-align:3.600000px;}
.v1{vertical-align:17.424000px;}
.v4{vertical-align:22.320000px;}
.v10{vertical-align:23.760000px;}
.vf{vertical-align:28.800000px;}
.v8{vertical-align:47.340000px;}
.v2{vertical-align:49.968000px;}
.va{vertical-align:69.864000px;}
.v7{vertical-align:72.000000px;}
.v5{vertical-align:82.080000px;}
.v6{vertical-align:121.680000px;}
.ls74{letter-spacing:-2.460000px;}
.ls1c{letter-spacing:-1.614000px;}
.ls6f{letter-spacing:-0.798000px;}
.ls78{letter-spacing:-0.654000px;}
.ls76{letter-spacing:-0.517200px;}
.ls73{letter-spacing:-0.490200px;}
.ls75{letter-spacing:-0.458400px;}
.ls3d{letter-spacing:-0.449400px;}
.ls5d{letter-spacing:-0.426000px;}
.ls53{letter-spacing:-0.417000px;}
.ls66{letter-spacing:-0.405600px;}
.ls68{letter-spacing:-0.366000px;}
.ls16{letter-spacing:-0.351600px;}
.ls77{letter-spacing:-0.345600px;}
.ls15{letter-spacing:-0.336000px;}
.ls4a{letter-spacing:-0.313800px;}
.ls47{letter-spacing:-0.310800px;}
.ls19{letter-spacing:-0.289200px;}
.ls35{letter-spacing:-0.285600px;}
.ls5c{letter-spacing:-0.283200px;}
.lsf{letter-spacing:-0.238800px;}
.ls3a{letter-spacing:-0.235200px;}
.ls5e{letter-spacing:-0.228000px;}
.ls52{letter-spacing:-0.227400px;}
.ls42{letter-spacing:-0.216000px;}
.ls5f{letter-spacing:-0.208800px;}
.ls3b{letter-spacing:-0.198600px;}
.ls28{letter-spacing:-0.187200px;}
.ls27{letter-spacing:-0.184800px;}
.ls45{letter-spacing:-0.181200px;}
.ls8{letter-spacing:-0.179400px;}
.ls49{letter-spacing:-0.175800px;}
.ls50{letter-spacing:-0.161400px;}
.ls33{letter-spacing:-0.151200px;}
.ls2{letter-spacing:-0.144000px;}
.ls32{letter-spacing:-0.108000px;}
.ls1{letter-spacing:-0.080400px;}
.ls70{letter-spacing:-0.075600px;}
.ls1a{letter-spacing:-0.073200px;}
.ls36{letter-spacing:-0.072000px;}
.ls3e{letter-spacing:-0.048960px;}
.ls3c{letter-spacing:-0.043200px;}
.ls62{letter-spacing:-0.040920px;}
.ls67{letter-spacing:-0.036720px;}
.ls4b{letter-spacing:-0.014400px;}
.ls1b{letter-spacing:-0.012240px;}
.ls0{letter-spacing:0.000000px;}
.ls4f{letter-spacing:0.005754px;}
.ls3f{letter-spacing:0.014400px;}
.ls48{letter-spacing:0.043200px;}
.ls71{letter-spacing:0.066000px;}
.ls3{letter-spacing:0.067200px;}
.ls61{letter-spacing:0.079800px;}
.ls4{letter-spacing:0.082200px;}
.ls1d{letter-spacing:0.097200px;}
.ls14{letter-spacing:0.119520px;}
.ls57{letter-spacing:0.130320px;}
.ls39{letter-spacing:0.144000px;}
.ls18{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.193200px;}
.ls6e{letter-spacing:0.202800px;}
.ls41{letter-spacing:0.216000px;}
.ls34{letter-spacing:0.225600px;}
.ls58{letter-spacing:0.236160px;}
.ls6d{letter-spacing:0.261600px;}
.ls38{letter-spacing:0.270600px;}
.ls6b{letter-spacing:0.273000px;}
.ls5{letter-spacing:0.277200px;}
.ls13{letter-spacing:0.278400px;}
.ls10{letter-spacing:0.288000px;}
.ls46{letter-spacing:0.296400px;}
.ls63{letter-spacing:0.299400px;}
.ls17{letter-spacing:0.322800px;}
.ls29{letter-spacing:0.324000px;}
.ls72{letter-spacing:0.353400px;}
.ls37{letter-spacing:0.360000px;}
.ls60{letter-spacing:0.372600px;}
.ls4d{letter-spacing:0.409200px;}
.ls6a{letter-spacing:0.417600px;}
.ls54{letter-spacing:0.473400px;}
.ls43{letter-spacing:0.492600px;}
.ls4c{letter-spacing:0.544200px;}
.ls64{letter-spacing:0.558600px;}
.ls65{letter-spacing:0.564600px;}
.ls4e{letter-spacing:0.708000px;}
.ls56{letter-spacing:0.762000px;}
.ls11{letter-spacing:2.462400px;}
.ls5b{letter-spacing:2.820000px;}
.ls55{letter-spacing:3.504000px;}
.ls51{letter-spacing:4.260000px;}
.ls5a{letter-spacing:7.860000px;}
.ls69{letter-spacing:8.337600px;}
.ls6c{letter-spacing:16.977600px;}
.ls59{letter-spacing:26.544960px;}
.lsd{letter-spacing:30.520800px;}
.ls44{letter-spacing:38.102400px;}
.ls7{letter-spacing:49.233600px;}
.ls6{letter-spacing:49.284000px;}
.lsc{letter-spacing:55.172448px;}
.lsb{letter-spacing:55.238400px;}
.ls22{letter-spacing:69.264000px;}
.ls2d{letter-spacing:69.408000px;}
.ls25{letter-spacing:69.701040px;}
.ls2b{letter-spacing:69.766560px;}
.ls30{letter-spacing:69.789600px;}
.ls1f{letter-spacing:69.910560px;}
.ls2a{letter-spacing:71.405424px;}
.ls2e{letter-spacing:71.868000px;}
.ls23{letter-spacing:72.000000px;}
.ls20{letter-spacing:72.713424px;}
.ls2f{letter-spacing:73.301040px;}
.ls24{letter-spacing:73.389600px;}
.ls26{letter-spacing:74.133600px;}
.ls31{letter-spacing:74.265600px;}
.ls1e{letter-spacing:75.238560px;}
.ls2c{letter-spacing:77.241600px;}
.ls21{letter-spacing:77.328000px;}
.ls40{letter-spacing:85.896000px;}
.lsa{letter-spacing:91.435968px;}
.lse{letter-spacing:91.501920px;}
.ls12{letter-spacing:102.384000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(64,64,64),0 0.015em rgb(64,64,64),0.015em 0 rgb(64,64,64),0 -0.015em  rgb(64,64,64);}
.sc1{text-shadow:-0.015em 0 rgb(38,38,38),0 0.015em rgb(38,38,38),0.015em 0 rgb(38,38,38),0 -0.015em  rgb(38,38,38);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(64,64,64);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(38,38,38);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws18{word-spacing:-89.820000px;}
.ws11{word-spacing:-84.276000px;}
.ws10{word-spacing:-83.736000px;}
.ws13{word-spacing:-83.592000px;}
.ws19{word-spacing:-60.948000px;}
.wsf{word-spacing:-59.436000px;}
.ws4f{word-spacing:-52.560000px;}
.ws5{word-spacing:-47.753280px;}
.ws8{word-spacing:-45.339840px;}
.ws7{word-spacing:-43.810800px;}
.ws2{word-spacing:-43.617600px;}
.ws6{word-spacing:-43.438200px;}
.ws3{word-spacing:-40.689600px;}
.ws0{word-spacing:-37.296000px;}
.ws49{word-spacing:-31.262400px;}
.ws12{word-spacing:-30.420000px;}
.ws8a{word-spacing:-28.404000px;}
.ws43{word-spacing:-28.344960px;}
.ws82{word-spacing:-28.260000px;}
.wsc{word-spacing:-28.080000px;}
.ws83{word-spacing:-27.972000px;}
.ws4{word-spacing:-26.664600px;}
.wsa{word-spacing:-24.935040px;}
.wsb{word-spacing:-24.897600px;}
.ws9e{word-spacing:-24.651840px;}
.wsb0{word-spacing:-22.255800px;}
.wsb2{word-spacing:-22.175400px;}
.wsab{word-spacing:-22.164000px;}
.wsac{word-spacing:-22.105200px;}
.wsb1{word-spacing:-21.982200px;}
.wsaf{word-spacing:-21.968400px;}
.ws20{word-spacing:-21.939840px;}
.wsd{word-spacing:-21.902400px;}
.wsae{word-spacing:-21.826800px;}
.ws3a{word-spacing:-21.641760px;}
.wsb3{word-spacing:-21.566400px;}
.wsb5{word-spacing:-21.444000px;}
.wsb4{word-spacing:-21.412200px;}
.wsb6{word-spacing:-21.385200px;}
.wsb7{word-spacing:-21.248400px;}
.wsad{word-spacing:-21.104400px;}
.ws9d{word-spacing:-20.979600px;}
.ws95{word-spacing:-20.925600px;}
.wsa6{word-spacing:-20.782200px;}
.wsa5{word-spacing:-20.776200px;}
.ws93{word-spacing:-20.761800px;}
.ws9c{word-spacing:-20.728440px;}
.ws8f{word-spacing:-20.710200px;}
.wsa1{word-spacing:-20.627640px;}
.ws94{word-spacing:-20.626800px;}
.wsa4{word-spacing:-20.517000px;}
.ws8b{word-spacing:-20.514000px;}
.wsa7{word-spacing:-20.471040px;}
.wsa2{word-spacing:-20.334840px;}
.ws8e{word-spacing:-20.260800px;}
.ws9b{word-spacing:-20.255040px;}
.ws96{word-spacing:-20.223354px;}
.wsa9{word-spacing:-20.218320px;}
.ws8c{word-spacing:-20.217600px;}
.wsa3{word-spacing:-20.214120px;}
.ws92{word-spacing:-20.203200px;}
.ws97{word-spacing:-20.056200px;}
.wsa0{word-spacing:-20.046240px;}
.ws90{word-spacing:-20.041800px;}
.ws9f{word-spacing:-20.027040px;}
.ws99{word-spacing:-19.990200px;}
.ws8d{word-spacing:-19.906800px;}
.ws91{word-spacing:-19.903800px;}
.wsaa{word-spacing:-19.851600px;}
.wsa8{word-spacing:-19.849440px;}
.ws9a{word-spacing:-19.838040px;}
.ws3f{word-spacing:-19.070784px;}
.ws3c{word-spacing:-19.038240px;}
.ws61{word-spacing:-18.757440px;}
.ws16{word-spacing:-18.720000px;}
.ws3b{word-spacing:-17.424240px;}
.ws7b{word-spacing:-17.259840px;}
.ws7c{word-spacing:-17.222400px;}
.ws7e{word-spacing:-17.173440px;}
.ws27{word-spacing:-16.473600px;}
.ws3d{word-spacing:-16.272000px;}
.ws28{word-spacing:-16.122000px;}
.ws45{word-spacing:-15.657120px;}
.ws98{word-spacing:-15.575040px;}
.ws2f{word-spacing:-15.537600px;}
.ws4d{word-spacing:-10.857600px;}
.ws53{word-spacing:-9.360000px;}
.ws4c{word-spacing:-6.177600px;}
.ws17{word-spacing:-2.119968px;}
.ws80{word-spacing:-1.872000px;}
.ws35{word-spacing:-1.085760px;}
.ws32{word-spacing:-1.060416px;}
.ws1b{word-spacing:-0.983520px;}
.ws65{word-spacing:-0.971520px;}
.ws84{word-spacing:-0.960000px;}
.ws31{word-spacing:-0.944544px;}
.ws4a{word-spacing:-0.938400px;}
.ws88{word-spacing:-0.828000px;}
.ws85{word-spacing:-0.792000px;}
.ws89{word-spacing:-0.648000px;}
.ws54{word-spacing:-0.638352px;}
.ws1f{word-spacing:-0.460800px;}
.ws5b{word-spacing:-0.432000px;}
.ws78{word-spacing:-0.360000px;}
.ws81{word-spacing:-0.288000px;}
.ws87{word-spacing:-0.204000px;}
.ws21{word-spacing:-0.152640px;}
.ws4b{word-spacing:-0.057120px;}
.ws52{word-spacing:-0.016128px;}
.ws1{word-spacing:0.000000px;}
.ws86{word-spacing:0.060000px;}
.ws51{word-spacing:0.224640px;}
.ws36{word-spacing:0.242640px;}
.ws33{word-spacing:0.246240px;}
.ws64{word-spacing:0.265440px;}
.ws7f{word-spacing:0.287040px;}
.ws30{word-spacing:0.288000px;}
.ws2e{word-spacing:0.393840px;}
.ws4e{word-spacing:0.819360px;}
.ws15{word-spacing:0.894240px;}
.ws62{word-spacing:0.971280px;}
.ws1a{word-spacing:0.984960px;}
.ws50{word-spacing:0.989280px;}
.ws63{word-spacing:1.002240px;}
.ws7d{word-spacing:1.160640px;}
.ws1e{word-spacing:1.176480px;}
.ws41{word-spacing:1.234080px;}
.ws44{word-spacing:1.433520px;}
.ws1c{word-spacing:1.690560px;}
.ws34{word-spacing:1.706640px;}
.ws42{word-spacing:1.742160px;}
.ws1d{word-spacing:2.306880px;}
.ws9{word-spacing:2.396352px;}
.ws37{word-spacing:2.793600px;}
.ws39{word-spacing:2.913600px;}
.ws14{word-spacing:3.154800px;}
.ws38{word-spacing:3.513600px;}
.ws46{word-spacing:3.905280px;}
.ws48{word-spacing:4.193280px;}
.ws29{word-spacing:77.979360px;}
.ws24{word-spacing:97.874400px;}
.ws66{word-spacing:106.644000px;}
.ws26{word-spacing:112.390560px;}
.ws2a{word-spacing:116.524320px;}
.ws2b{word-spacing:146.778960px;}
.ws2d{word-spacing:146.898960px;}
.ws75{word-spacing:172.056000px;}
.ws5f{word-spacing:183.804000px;}
.ws6a{word-spacing:185.736000px;}
.ws47{word-spacing:185.800800px;}
.ws23{word-spacing:188.368800px;}
.ws5e{word-spacing:200.004000px;}
.ws5d{word-spacing:204.833760px;}
.ws60{word-spacing:219.444000px;}
.ws25{word-spacing:222.444960px;}
.ws2c{word-spacing:237.864000px;}
.ws70{word-spacing:238.056000px;}
.ws7a{word-spacing:256.776000px;}
.ws67{word-spacing:262.128000px;}
.ws71{word-spacing:262.776000px;}
.ws6c{word-spacing:275.016000px;}
.ws69{word-spacing:278.448000px;}
.ws6d{word-spacing:287.892000px;}
.ws77{word-spacing:297.960000px;}
.ws72{word-spacing:318.912000px;}
.ws79{word-spacing:324.672000px;}
.ws74{word-spacing:327.552000px;}
.ws76{word-spacing:338.352000px;}
.ws6b{word-spacing:354.768000px;}
.ws73{word-spacing:375.120000px;}
.ws68{word-spacing:385.152000px;}
.ws59{word-spacing:417.432000px;}
.ws6f{word-spacing:423.552000px;}
.ws56{word-spacing:437.034144px;}
.ws6e{word-spacing:443.328000px;}
.ws5c{word-spacing:467.112000px;}
.ws5a{word-spacing:478.284000px;}
.ws57{word-spacing:478.458384px;}
.ws40{word-spacing:509.518320px;}
.ws58{word-spacing:553.272000px;}
.ws55{word-spacing:554.033328px;}
.ws22{word-spacing:1247.655840px;}
.ws3e{word-spacing:2717.293200px;}
.wse{word-spacing:4562.472480px;}
._7{margin-left:-3.885072px;}
._2{margin-left:-2.234928px;}
._1{margin-left:-1.080000px;}
._3{width:1.296000px;}
._d{width:2.520000px;}
._c{width:3.672000px;}
._63{width:5.492160px;}
._f{width:6.756000px;}
._5d{width:8.325168px;}
._5c{width:9.475200px;}
._5b{width:11.105136px;}
._22{width:12.507888px;}
._54{width:13.993440px;}
._38{width:15.610128px;}
._20{width:17.124960px;}
._39{width:18.455088px;}
._e{width:20.249856px;}
._61{width:21.916800px;}
._64{width:22.956480px;}
._62{width:24.894720px;}
._9{width:26.460000px;}
._55{width:27.854928px;}
._b{width:29.712000px;}
._60{width:31.409568px;}
._66{width:36.347760px;}
._59{width:37.452480px;}
._57{width:38.620800px;}
._58{width:39.959040px;}
._4{width:41.842080px;}
._65{width:43.284960px;}
._8{width:47.808000px;}
._6{width:53.976000px;}
._69{width:67.448736px;}
._a{width:69.888000px;}
._56{width:75.905280px;}
._5{width:77.580000px;}
._5a{width:81.648000px;}
._5f{width:86.332368px;}
._5e{width:87.747840px;}
._67{width:90.176208px;}
._68{width:91.355184px;}
._12{width:101.267040px;}
._11{width:106.761120px;}
._17{width:110.817120px;}
._27{width:114.911520px;}
._28{width:143.903760px;}
._14{width:147.229920px;}
._15{width:154.143888px;}
._18{width:157.933488px;}
._13{width:159.569280px;}
._3c{width:167.625216px;}
._2a{width:176.676240px;}
._29{width:178.656240px;}
._19{width:180.564000px;}
._16{width:182.097120px;}
._3b{width:184.308000px;}
._1b{width:187.920960px;}
._1a{width:193.980960px;}
._50{width:204.312000px;}
._24{width:208.022784px;}
._2e{width:210.984000px;}
._4f{width:213.144000px;}
._1f{width:214.284000px;}
._23{width:217.107744px;}
._1e{width:226.080960px;}
._25{width:241.738752px;}
._3a{width:268.584000px;}
._2b{width:270.952800px;}
._26{width:273.247104px;}
._1c{width:292.620960px;}
._3e{width:309.036000px;}
._48{width:324.384000px;}
._2d{width:332.088000px;}
._47{width:337.560000px;}
._3d{width:341.232000px;}
._3f{width:346.860000px;}
._52{width:364.680000px;}
._2f{width:367.381248px;}
._1d{width:371.997600px;}
._4e{width:385.848000px;}
._49{width:391.344000px;}
._2c{width:394.764000px;}
._4d{width:404.304000px;}
._0{width:411.192000px;}
._41{width:430.380000px;}
._53{width:450.120000px;}
._40{width:457.800000px;}
._36{width:471.516000px;}
._4a{width:491.460000px;}
._4b{width:501.096000px;}
._30{width:527.998560px;}
._42{width:529.080000px;}
._45{width:548.040000px;}
._33{width:557.484000px;}
._31{width:596.608656px;}
._32{width:599.639712px;}
._37{width:602.239632px;}
._51{width:604.272000px;}
._44{width:606.120000px;}
._43{width:615.000000px;}
._34{width:616.128000px;}
._35{width:639.888000px;}
._4c{width:661.375200px;}
._46{width:703.920000px;}
._10{width:1335.893280px;}
._21{width:2615.659680px;}
.fcb{color:rgb(5,99,193);}
.fc6{color:rgb(20,43,119);}
.fca{color:rgb(3,35,75);}
.fc9{color:rgb(227,45,145);}
.fc3{color:rgb(16,32,89);}
.fc2{color:transparent;}
.fc1{color:rgb(21,43,119);}
.fc8{color:rgb(51,51,51);}
.fc7{color:rgb(38,38,38);}
.fc5{color:rgb(64,64,64);}
.fc4{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs1c{font-size:23.760000px;}
.fs1b{font-size:36.000000px;}
.fs1d{font-size:41.760000px;}
.fs1e{font-size:41.904000px;}
.fs1{font-size:48.240000px;}
.fs26{font-size:51.840000px;}
.fs18{font-size:59.760000px;}
.fs23{font-size:59.904000px;}
.fs17{font-size:63.360000px;}
.fs25{font-size:64.080000px;}
.fs19{font-size:66.240000px;}
.fs1a{font-size:66.384000px;}
.fs0{font-size:72.000000px;}
.fs1f{font-size:72.144000px;}
.fs22{font-size:77.760000px;}
.fs24{font-size:77.904000px;}
.fs15{font-size:79.200000px;}
.fs13{font-size:84.240000px;}
.fs14{font-size:84.384000px;}
.fs11{font-size:95.760000px;}
.fsf{font-size:95.904000px;}
.fsb{font-size:102.240000px;}
.fsa{font-size:102.384000px;}
.fs5{font-size:108.000000px;}
.fs16{font-size:108.144000px;}
.fs10{font-size:115.200000px;}
.fs12{font-size:115.344000px;}
.fse{font-size:120.240000px;}
.fs4{font-size:144.000000px;}
.fs9{font-size:156.240000px;}
.fs8{font-size:167.760000px;}
.fsc{font-size:167.904000px;}
.fsd{font-size:174.384000px;}
.fs7{font-size:192.240000px;}
.fs6{font-size:192.384000px;}
.fs2{font-size:216.000000px;}
.fs3{font-size:216.144000px;}
.fs20{font-size:239.904000px;}
.fs21{font-size:888.060000px;}
.y0{bottom:0.000000px;}
.y1{bottom:7.848000px;}
.yb{bottom:11.844000px;}
.y16{bottom:12.204000px;}
.ybd{bottom:34.920000px;}
.y86{bottom:41.112000px;}
.yb6{bottom:47.880000px;}
.y157{bottom:50.868000px;}
.y85{bottom:59.112000px;}
.yb5{bottom:65.880000px;}
.y120{bottom:67.212000px;}
.ycd{bottom:68.652000px;}
.ydf{bottom:69.555000px;}
.yd7{bottom:69.585000px;}
.yd4{bottom:69.630000px;}
.y4c{bottom:72.180000px;}
.y89{bottom:73.296000px;}
.y50{bottom:74.592000px;}
.y156{bottom:76.068000px;}
.ya7{bottom:76.536000px;}
.ybb{bottom:78.840000px;}
.yab{bottom:79.020000px;}
.y13c{bottom:79.812000px;}
.y115{bottom:86.904000px;}
.ycc{bottom:88.452000px;}
.y11f{bottom:90.648000px;}
.y9b{bottom:92.415000px;}
.y99{bottom:92.445000px;}
.yac{bottom:92.490000px;}
.yb9{bottom:92.520000px;}
.ya9{bottom:92.550000px;}
.ybe{bottom:92.556000px;}
.y4f{bottom:92.592000px;}
.y68{bottom:93.888000px;}
.y21{bottom:99.828000px;}
.y155{bottom:101.268000px;}
.ya{bottom:102.204000px;}
.y84{bottom:102.672000px;}
.y13b{bottom:103.212000px;}
.y4b{bottom:107.316000px;}
.ya6{bottom:108.036000px;}
.y23{bottom:108.828000px;}
.y114{bottom:110.340000px;}
.y4e{bottom:110.592000px;}
.yf7{bottom:112.896000px;}
.y11e{bottom:114.048000px;}
.y4{bottom:114.120000px;}
.yb8{bottom:122.580000px;}
.ya8{bottom:122.760000px;}
.y9a{bottom:122.940000px;}
.y20{bottom:125.028000px;}
.y154{bottom:126.468000px;}
.y13a{bottom:126.612000px;}
.ybf{bottom:127.476000px;}
.y25{bottom:129.312000px;}
.ycb{bottom:129.636000px;}
.y83{bottom:131.472000px;}
.y4d{bottom:131.868000px;}
.yf6{bottom:132.696000px;}
.y8a{bottom:133.308000px;}
.y113{bottom:133.740000px;}
.y11d{bottom:137.448000px;}
.ya5{bottom:140.472000px;}
.y4a{bottom:142.488000px;}
.y71{bottom:144.504000px;}
.y139{bottom:150.015000px;}
.y1f{bottom:150.225000px;}
.y153{bottom:151.665000px;}
.y24{bottom:154.515000px;}
.y112{bottom:157.140000px;}
.y69{bottom:158.790000px;}
.y82{bottom:160.275000px;}
.y11c{bottom:160.845000px;}
.yca{bottom:165.600000px;}
.yb7{bottom:166.320000px;}
.y98{bottom:166.680000px;}
.y22{bottom:168.045000px;}
.ybc{bottom:171.285000px;}
.yad{bottom:171.510000px;}
.yf5{bottom:172.335000px;}
.y6a{bottom:173.340000px;}
.y138{bottom:173.445000px;}
.y152{bottom:176.865000px;}
.y1e{bottom:177.045000px;}
.y103{bottom:177.765000px;}
.y8d{bottom:186.120000px;}
.y81{bottom:189.105000px;}
.yf4{bottom:192.135000px;}
.y32{bottom:194.250000px;}
.yc9{bottom:201.600000px;}
.y49{bottom:203.325000px;}
.y12a{bottom:204.810000px;}
.y5b{bottom:209.265000px;}
.y102{bottom:209.490000px;}
.y151{bottom:214.635000px;}
.y74{bottom:214.920000px;}
.yba{bottom:215.100000px;}
.yaa{bottom:215.310000px;}
.y9c{bottom:215.355000px;}
.y147{bottom:217.365000px;}
.y80{bottom:217.905000px;}
.y10a{bottom:222.510000px;}
.y129{bottom:228.210000px;}
.y5a{bottom:229.065000px;}
.y8c{bottom:230.400000px;}
.yf3{bottom:231.735000px;}
.y88{bottom:232.635000px;}
.y48{bottom:233.025000px;}
.y31{bottom:237.450000px;}
.yc8{bottom:237.570000px;}
.y150{bottom:239.835000px;}
.y146{bottom:240.765000px;}
.y101{bottom:241.890000px;}
.y109{bottom:245.910000px;}
.y7f{bottom:246.165000px;}
.y6b{bottom:250.305000px;}
.yf2{bottom:251.535000px;}
.y128{bottom:251.610000px;}
.y47{bottom:251.925000px;}
.y67{bottom:254.700000px;}
.y73{bottom:259.200000px;}
.y70{bottom:260.670000px;}
.y145{bottom:264.210000px;}
.y14f{bottom:265.035000px;}
.y59{bottom:268.710000px;}
.y108{bottom:269.355000px;}
.y127{bottom:275.010000px;}
.y7e{bottom:275.505000px;}
.y30{bottom:280.650000px;}
.y104{bottom:283.530000px;}
.yd{bottom:285.405000px;}
.y137{bottom:286.485000px;}
.y46{bottom:287.070000px;}
.y144{bottom:287.610000px;}
.y58{bottom:288.510000px;}
.y14e{bottom:290.235000px;}
.yf1{bottom:291.135000px;}
.y107{bottom:292.755000px;}
.y15c{bottom:293.550000px;}
.y8b{bottom:293.790000px;}
.y126{bottom:298.410000px;}
.yd2{bottom:302.400000px;}
.y7d{bottom:304.305000px;}
.y111{bottom:305.385000px;}
.y100{bottom:306.720000px;}
.y15{bottom:310.650000px;}
.yf0{bottom:310.965000px;}
.y143{bottom:311.010000px;}
.y29{bottom:311.190000px;}
.yb4{bottom:312.225000px;}
.y14d{bottom:315.435000px;}
.yc{bottom:316.050000px;}
.y106{bottom:316.155000px;}
.ya1{bottom:319.575000px;}
.ya2{bottom:319.755000px;}
.y45{bottom:322.200000px;}
.y72{bottom:322.410000px;}
.y2f{bottom:323.895000px;}
.y136{bottom:324.285000px;}
.y64{bottom:330.405000px;}
.y15b{bottom:331.350000px;}
.yd1{bottom:334.800000px;}
.y7{bottom:334.830000px;}
.yc6{bottom:337.215000px;}
.y63{bottom:340.170000px;}
.ya0{bottom:341.670000px;}
.y28{bottom:342.690000px;}
.y110{bottom:343.185000px;}
.yc7{bottom:343.335000px;}
.y125{bottom:343.650000px;}
.yb3{bottom:344.595000px;}
.yb2{bottom:344.955000px;}
.y142{bottom:349.590000px;}
.y51{bottom:352.005000px;}
.y14c{bottom:353.190000px;}
.y57{bottom:357.450000px;}
.y6c{bottom:359.310000px;}
.y135{bottom:362.085000px;}
.y105{bottom:362.955000px;}
.yc0{bottom:364.710000px;}
.y11a{bottom:366.945000px;}
.y124{bottom:367.050000px;}
.yd0{bottom:367.200000px;}
.y6{bottom:367.230000px;}
.y15a{bottom:369.150000px;}
.y14{bottom:370.980000px;}
.yff{bottom:371.520000px;}
.y141{bottom:372.990000px;}
.y97{bottom:374.325000px;}
.y27{bottom:375.120000px;}
.y56{bottom:375.450000px;}
.y14b{bottom:378.390000px;}
.y10f{bottom:380.985000px;}
.yef{bottom:383.910000px;}
.y119{bottom:390.345000px;}
.y123{bottom:390.450000px;}
.y55{bottom:393.450000px;}
.y96{bottom:394.095000px;}
.y140{bottom:396.390000px;}
.ycf{bottom:399.600000px;}
.y5{bottom:399.630000px;}
.y134{bottom:399.885000px;}
.y9d{bottom:401.790000px;}
.yaf{bottom:402.405000px;}
.y14a{bottom:403.590000px;}
.yfe{bottom:403.920000px;}
.y159{bottom:406.950000px;}
.y26{bottom:407.520000px;}
.y54{bottom:411.450000px;}
.y6f{bottom:411.660000px;}
.y11b{bottom:412.020000px;}
.y118{bottom:413.745000px;}
.y122{bottom:413.850000px;}
.y10e{bottom:418.785000px;}
.yc5{bottom:419.760000px;}
.y13f{bottom:419.835000px;}
.yee{bottom:419.865000px;}
.y6e{bottom:424.260000px;}
.y62{bottom:425.880000px;}
.y66{bottom:428.760000px;}
.y149{bottom:428.790000px;}
.y53{bottom:429.450000px;}
.y2c{bottom:430.170000px;}
.y13{bottom:431.280000px;}
.yce{bottom:432.030000px;}
.y117{bottom:437.145000px;}
.y121{bottom:437.250000px;}
.ye{bottom:440.610000px;}
.y13e{bottom:443.235000px;}
.yde{bottom:444.240000px;}
.y158{bottom:444.780000px;}
.y52{bottom:449.100000px;}
.y65{bottom:450.360000px;}
.y61{bottom:451.800000px;}
.yed{bottom:452.310000px;}
.y148{bottom:453.990000px;}
.y9e{bottom:454.965000px;}
.y6d{bottom:455.250000px;}
.yb0{bottom:455.610000px;}
.y116{bottom:460.545000px;}
.y35{bottom:462.210000px;}
.y13d{bottom:466.635000px;}
.yfd{bottom:468.750000px;}
.y9f{bottom:469.590000px;}
.yb1{bottom:470.235000px;}
.yec{bottom:473.910000px;}
.ydd{bottom:476.640000px;}
.y1d{bottom:482.070000px;}
.y12f{bottom:484.350000px;}
.yc1{bottom:486.645000px;}
.yc2{bottom:486.720000px;}
.yc3{bottom:487.155000px;}
.y34{bottom:491.010000px;}
.yae{bottom:491.250000px;}
.yc4{bottom:491.430000px;}
.y161{bottom:491.760000px;}
.y12{bottom:491.790000px;}
.ye5{bottom:493.050000px;}
.yfc{bottom:501.150000px;}
.y133{bottom:503.970000px;}
.y12e{bottom:507.750000px;}
.y40{bottom:507.855000px;}
.y3b{bottom:508.470000px;}
.yda{bottom:509.040000px;}
.y10d{bottom:509.250000px;}
.yeb{bottom:509.865000px;}
.y2e{bottom:512.715000px;}
.ye0{bottom:513.795000px;}
.y160{bottom:516.960000px;}
.ye4{bottom:521.850000px;}
.y1c{bottom:525.270000px;}
.y91{bottom:525.960000px;}
.y8f{bottom:526.755000px;}
.y132{bottom:527.370000px;}
.y93{bottom:529.590000px;}
.y95{bottom:530.100000px;}
.y2d{bottom:530.715000px;}
.y12d{bottom:531.150000px;}
.y10c{bottom:532.650000px;}
.y3f{bottom:533.055000px;}
.yfb{bottom:533.550000px;}
.y3a{bottom:533.700000px;}
.y3{bottom:535.065000px;}
.y90{bottom:536.760000px;}
.y92{bottom:536.790000px;}
.y94{bottom:537.300000px;}
.y8e{bottom:537.555000px;}
.y33{bottom:541.440000px;}
.y15f{bottom:542.160000px;}
.yea{bottom:545.865000px;}
.ydc{bottom:546.225000px;}
.y7c{bottom:550.770000px;}
.y131{bottom:550.800000px;}
.y11{bottom:552.090000px;}
.y12c{bottom:554.580000px;}
.y10b{bottom:556.095000px;}
.y44{bottom:558.105000px;}
.y87{bottom:562.215000px;}
.y15e{bottom:567.360000px;}
.y1b{bottom:568.470000px;}
.yd6{bottom:573.840000px;}
.y130{bottom:574.200000px;}
.y12b{bottom:577.980000px;}
.ydb{bottom:578.625000px;}
.ye3{bottom:579.495000px;}
.y7b{bottom:579.570000px;}
.y78{bottom:579.960000px;}
.ye9{bottom:581.835000px;}
.y43{bottom:583.305000px;}
.y2b{bottom:590.400000px;}
.y15d{bottom:592.560000px;}
.y5e{bottom:593.925000px;}
.yfa{bottom:598.395000px;}
.y9{bottom:598.830000px;}
.y2{bottom:599.865000px;}
.yd3{bottom:606.240000px;}
.ye2{bottom:608.295000px;}
.y7a{bottom:608.370000px;}
.yd9{bottom:611.025000px;}
.y1a{bottom:611.670000px;}
.y10{bottom:612.390000px;}
.y2a{bottom:613.440000px;}
.ye8{bottom:614.235000px;}
.y76{bottom:615.960000px;}
.y5d{bottom:622.725000px;}
.yf9{bottom:630.795000px;}
.ya4{bottom:632.955000px;}
.ye7{bottom:635.865000px;}
.y79{bottom:637.170000px;}
.y39{bottom:639.180000px;}
.yd8{bottom:643.425000px;}
.y3d{bottom:646.590000px;}
.y8{bottom:650.700000px;}
.y3e{bottom:651.270000px;}
.y5c{bottom:651.525000px;}
.y42{bottom:651.600000px;}
.y75{bottom:651.990000px;}
.ye6{bottom:657.465000px;}
.ya3{bottom:661.755000px;}
.yf8{bottom:663.195000px;}
.y38{bottom:664.380000px;}
.ye1{bottom:665.895000px;}
.y19{bottom:671.070000px;}
.y3c{bottom:671.790000px;}
.yd5{bottom:675.870000px;}
.y41{bottom:676.800000px;}
.y77{bottom:683.670000px;}
.y18{bottom:719.820000px;}
.y37{bottom:720.720000px;}
.y60{bottom:721.440000px;}
.yf{bottom:738.285000px;}
.y5f{bottom:752.430000px;}
.y36{bottom:754.050000px;}
.y17{bottom:755.670000px;}
.h33{height:19.780664px;}
.h32{height:29.970703px;}
.h34{height:34.766016px;}
.h9{height:35.120039px;}
.h37{height:35.366016px;}
.hf{height:36.957305px;}
.h3b{height:38.246016px;}
.h38{height:38.485898px;}
.h39{height:38.606016px;}
.h3c{height:38.666016px;}
.h24{height:49.751367px;}
.h3e{height:50.682656px;}
.h40{height:50.792836px;}
.h22{height:52.748438px;}
.h25{height:55.146094px;}
.h1{height:55.160156px;}
.h26{height:55.265977px;}
.h46{height:55.270477px;}
.h44{height:59.497031px;}
.h47{height:59.607211px;}
.h1c{height:59.941406px;}
.h3d{height:60.061289px;}
.h2f{height:60.328125px;}
.h2b{height:63.070312px;}
.h49{height:63.424687px;}
.h21{height:64.455117px;}
.h20{height:64.565297px;}
.h2a{height:68.554688px;}
.h17{height:70.131445px;}
.h18{height:70.251328px;}
.h14{height:73.269492px;}
.h45{height:73.363008px;}
.ha{height:73.722656px;}
.h31{height:76.542539px;}
.h48{height:77.892539px;}
.hc{height:78.327422px;}
.hb{height:78.437742px;}
.h1b{height:79.722070px;}
.h12{height:79.841953px;}
.h28{height:80.208984px;}
.h2c{height:80.346094px;}
.h41{height:82.634766px;}
.h5{height:82.740234px;}
.h3a{height:83.369180px;}
.h36{height:83.494547px;}
.h13{height:85.331250px;}
.h15{height:85.437914px;}
.h16{height:89.912109px;}
.h23{height:90.031992px;}
.h1a{height:91.019531px;}
.h27{height:91.177734px;}
.h11{height:100.102148px;}
.h30{height:102.832031px;}
.h1d{height:110.731430px;}
.h29{height:115.894687px;}
.h4{height:119.882812px;}
.h19{height:120.099445px;}
.h8{height:128.359336px;}
.he{height:128.469516px;}
.h2e{height:130.192125px;}
.h2d{height:130.608984px;}
.h10{height:145.178086px;}
.h3f{height:151.380000px;}
.hd{height:156.184560px;}
.h7{height:160.043555px;}
.h6{height:160.163438px;}
.h1f{height:163.019531px;}
.h2{height:179.824219px;}
.h3{height:179.944102px;}
.h42{height:183.793641px;}
.h1e{height:188.427656px;}
.h35{height:201.780000px;}
.h43{height:680.354561px;}
.h0{height:810.000000px;}
.w6{width:173.340000px;}
.w2{width:223.380000px;}
.w4{width:271.260000px;}
.w5{width:624.420000px;}
.w3{width:624.600000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x72{left:10.980000px;}
.x5d{left:12.599979px;}
.x95{left:15.870000px;}
.xf{left:21.419979px;}
.x3d{left:28.943979px;}
.xd{left:32.651979px;}
.x61{left:43.235979px;}
.x5e{left:46.439979px;}
.x1d{left:47.771979px;}
.x47{left:52.523979px;}
.x23{left:55.259979px;}
.x49{left:56.843979px;}
.xa0{left:58.571979px;}
.x45{left:59.903979px;}
.xa1{left:62.891979px;}
.x1c{left:64.691979px;}
.x43{left:65.843979px;}
.x64{left:66.995979px;}
.x42{left:69.443979px;}
.x1e{left:71.351979px;}
.x1f{left:75.419979px;}
.x41{left:77.363979px;}
.x3e{left:78.803979px;}
.x90{left:80.310000px;}
.x24{left:82.259979px;}
.x6b{left:84.347979px;}
.x83{left:89.675979px;}
.x66{left:92.771979px;}
.x4e{left:93.887979px;}
.xa2{left:96.911979px;}
.x10{left:99.035979px;}
.x46{left:103.463979px;}
.x44{left:109.403979px;}
.x4a{left:112.211979px;}
.x84{left:114.587979px;}
.x7c{left:119.411979px;}
.x67{left:122.183979px;}
.x11{left:126.035979px;}
.xa3{left:130.751979px;}
.x6a{left:133.487979px;}
.x77{left:136.511979px;}
.x85{left:138.671979px;}
.x7f{left:141.191979px;}
.x65{left:147.671979px;}
.x48{left:152.099979px;}
.x94{left:156.270000px;}
.x69{left:158.009979px;}
.x86{left:164.054979px;}
.x88{left:170.564979px;}
.x25{left:179.999979px;}
.x68{left:182.669979px;}
.x7e{left:185.249979px;}
.x87{left:186.629979px;}
.xad{left:189.539979px;}
.x26{left:191.339979px;}
.x76{left:195.044979px;}
.xac{left:205.019979px;}
.x39{left:206.099979px;}
.xa9{left:207.179979px;}
.xa8{left:209.339979px;}
.xae{left:210.599979px;}
.xaf{left:211.679979px;}
.xab{left:214.379979px;}
.xa7{left:217.439979px;}
.x6c{left:223.229979px;}
.x33{left:230.219979px;}
.x6d{left:231.509979px;}
.x34{left:237.059979px;}
.x17{left:241.949979px;}
.x63{left:244.949979px;}
.x18{left:266.429979px;}
.x16{left:274.169979px;}
.x6e{left:275.579979px;}
.x19{left:280.649979px;}
.x6f{left:283.859979px;}
.x70{left:289.154979px;}
.x55{left:309.524979px;}
.x7d{left:314.744979px;}
.x50{left:320.909979px;}
.x51{left:323.999979px;}
.x4f{left:330.479979px;}
.x32{left:341.969979px;}
.x78{left:350.639979px;}
.xc{left:356.504979px;}
.x2b{left:367.049979px;}
.x8a{left:388.694979px;}
.x3{left:403.559979px;}
.x21{left:405.074979px;}
.x8c{left:429.689979px;}
.x98{left:436.754979px;}
.x71{left:438.660000px;}
.x52{left:450.569979px;}
.x2{left:452.519979px;}
.x8e{left:458.129979px;}
.xe{left:476.309979px;}
.x56{left:484.769979px;}
.x9{left:496.154979px;}
.x57{left:502.124979px;}
.x28{left:508.529979px;}
.x82{left:515.339979px;}
.x99{left:517.529979px;}
.x9a{left:519.509979px;}
.x8b{left:520.634979px;}
.x27{left:531.749979px;}
.xaa{left:535.139979px;}
.x89{left:539.714979px;}
.x74{left:541.619979px;}
.x20{left:549.899979px;}
.x8d{left:557.714979px;}
.x58{left:561.524979px;}
.x3f{left:575.669979px;}
.x3c{left:578.729979px;}
.x8{left:583.634979px;}
.x15{left:606.314979px;}
.x9b{left:608.039979px;}
.x53{left:609.689979px;}
.x13{left:614.234979px;}
.x80{left:618.914979px;}
.x14{left:622.154979px;}
.x54{left:623.264979px;}
.xb{left:644.684979px;}
.x12{left:655.094979px;}
.xb0{left:656.429979px;}
.xa6{left:658.769979px;}
.x73{left:661.860000px;}
.x22{left:674.024979px;}
.x29{left:679.574979px;}
.x2a{left:696.314979px;}
.xa5{left:705.314979px;}
.x79{left:709.740000px;}
.x4d{left:718.229979px;}
.x35{left:727.454979px;}
.x75{left:749.699979px;}
.x7a{left:797.504979px;}
.x7b{left:799.664979px;}
.x3b{left:806.864979px;}
.x4{left:811.904979px;}
.x2d{left:818.309979px;}
.x37{left:825.809979px;}
.x4c{left:828.929979px;}
.x36{left:830.129979px;}
.x2c{left:832.349979px;}
.x5a{left:835.229979px;}
.x3a{left:837.824979px;}
.x59{left:844.049979px;}
.x4b{left:849.089979px;}
.x81{left:887.864979px;}
.x5{left:912.344979px;}
.x38{left:922.169979px;}
.x6{left:929.624979px;}
.x40{left:933.404979px;}
.x2e{left:999.464979px;}
.x5f{left:1001.624979px;}
.x8f{left:1006.200000px;}
.x1b{left:1010.444979px;}
.x2f{left:1012.424979px;}
.xa4{left:1024.274979px;}
.x1a{left:1032.224979px;}
.x60{left:1035.464979px;}
.x97{left:1043.849979px;}
.x93{left:1076.069979px;}
.x7{left:1079.069979px;}
.x31{left:1104.329979px;}
.x30{left:1131.869979px;}
.x1{left:1146.419979px;}
.x5b{left:1185.374979px;}
.x9c{left:1188.824979px;}
.x91{left:1205.894979px;}
.x5c{left:1245.779979px;}
.x96{left:1265.294979px;}
.x92{left:1270.334979px;}
.x9e{left:1275.014979px;}
.x9f{left:1279.694979px;}
.x9d{left:1287.074979px;}
.x62{left:1398.959979px;}
.xa{left:1402.559979px;}
@media print{
.v9{vertical-align:-33.653333pt;}
.v3{vertical-align:-19.840000pt;}
.ve{vertical-align:-2.933348pt;}
.vb{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.vc{vertical-align:1.653333pt;}
.vd{vertical-align:3.200000pt;}
.v1{vertical-align:15.488000pt;}
.v4{vertical-align:19.840000pt;}
.v10{vertical-align:21.120000pt;}
.vf{vertical-align:25.600000pt;}
.v8{vertical-align:42.080000pt;}
.v2{vertical-align:44.416000pt;}
.va{vertical-align:62.101333pt;}
.v7{vertical-align:64.000000pt;}
.v5{vertical-align:72.960000pt;}
.v6{vertical-align:108.160000pt;}
.ls74{letter-spacing:-2.186667pt;}
.ls1c{letter-spacing:-1.434667pt;}
.ls6f{letter-spacing:-0.709333pt;}
.ls78{letter-spacing:-0.581333pt;}
.ls76{letter-spacing:-0.459733pt;}
.ls73{letter-spacing:-0.435733pt;}
.ls75{letter-spacing:-0.407467pt;}
.ls3d{letter-spacing:-0.399467pt;}
.ls5d{letter-spacing:-0.378667pt;}
.ls53{letter-spacing:-0.370667pt;}
.ls66{letter-spacing:-0.360533pt;}
.ls68{letter-spacing:-0.325333pt;}
.ls16{letter-spacing:-0.312533pt;}
.ls77{letter-spacing:-0.307200pt;}
.ls15{letter-spacing:-0.298667pt;}
.ls4a{letter-spacing:-0.278933pt;}
.ls47{letter-spacing:-0.276267pt;}
.ls19{letter-spacing:-0.257067pt;}
.ls35{letter-spacing:-0.253867pt;}
.ls5c{letter-spacing:-0.251733pt;}
.lsf{letter-spacing:-0.212267pt;}
.ls3a{letter-spacing:-0.209067pt;}
.ls5e{letter-spacing:-0.202667pt;}
.ls52{letter-spacing:-0.202133pt;}
.ls42{letter-spacing:-0.192000pt;}
.ls5f{letter-spacing:-0.185600pt;}
.ls3b{letter-spacing:-0.176533pt;}
.ls28{letter-spacing:-0.166400pt;}
.ls27{letter-spacing:-0.164267pt;}
.ls45{letter-spacing:-0.161067pt;}
.ls8{letter-spacing:-0.159467pt;}
.ls49{letter-spacing:-0.156267pt;}
.ls50{letter-spacing:-0.143467pt;}
.ls33{letter-spacing:-0.134400pt;}
.ls2{letter-spacing:-0.128000pt;}
.ls32{letter-spacing:-0.096000pt;}
.ls1{letter-spacing:-0.071467pt;}
.ls70{letter-spacing:-0.067200pt;}
.ls1a{letter-spacing:-0.065067pt;}
.ls36{letter-spacing:-0.064000pt;}
.ls3e{letter-spacing:-0.043520pt;}
.ls3c{letter-spacing:-0.038400pt;}
.ls62{letter-spacing:-0.036373pt;}
.ls67{letter-spacing:-0.032640pt;}
.ls4b{letter-spacing:-0.012800pt;}
.ls1b{letter-spacing:-0.010880pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4f{letter-spacing:0.005115pt;}
.ls3f{letter-spacing:0.012800pt;}
.ls48{letter-spacing:0.038400pt;}
.ls71{letter-spacing:0.058667pt;}
.ls3{letter-spacing:0.059733pt;}
.ls61{letter-spacing:0.070933pt;}
.ls4{letter-spacing:0.073067pt;}
.ls1d{letter-spacing:0.086400pt;}
.ls14{letter-spacing:0.106240pt;}
.ls57{letter-spacing:0.115840pt;}
.ls39{letter-spacing:0.128000pt;}
.ls18{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.171733pt;}
.ls6e{letter-spacing:0.180267pt;}
.ls41{letter-spacing:0.192000pt;}
.ls34{letter-spacing:0.200533pt;}
.ls58{letter-spacing:0.209920pt;}
.ls6d{letter-spacing:0.232533pt;}
.ls38{letter-spacing:0.240533pt;}
.ls6b{letter-spacing:0.242667pt;}
.ls5{letter-spacing:0.246400pt;}
.ls13{letter-spacing:0.247467pt;}
.ls10{letter-spacing:0.256000pt;}
.ls46{letter-spacing:0.263467pt;}
.ls63{letter-spacing:0.266133pt;}
.ls17{letter-spacing:0.286933pt;}
.ls29{letter-spacing:0.288000pt;}
.ls72{letter-spacing:0.314133pt;}
.ls37{letter-spacing:0.320000pt;}
.ls60{letter-spacing:0.331200pt;}
.ls4d{letter-spacing:0.363733pt;}
.ls6a{letter-spacing:0.371200pt;}
.ls54{letter-spacing:0.420800pt;}
.ls43{letter-spacing:0.437867pt;}
.ls4c{letter-spacing:0.483733pt;}
.ls64{letter-spacing:0.496533pt;}
.ls65{letter-spacing:0.501867pt;}
.ls4e{letter-spacing:0.629333pt;}
.ls56{letter-spacing:0.677333pt;}
.ls11{letter-spacing:2.188800pt;}
.ls5b{letter-spacing:2.506667pt;}
.ls55{letter-spacing:3.114667pt;}
.ls51{letter-spacing:3.786667pt;}
.ls5a{letter-spacing:6.986667pt;}
.ls69{letter-spacing:7.411200pt;}
.ls6c{letter-spacing:15.091200pt;}
.ls59{letter-spacing:23.595520pt;}
.lsd{letter-spacing:27.129600pt;}
.ls44{letter-spacing:33.868800pt;}
.ls7{letter-spacing:43.763200pt;}
.ls6{letter-spacing:43.808000pt;}
.lsc{letter-spacing:49.042176pt;}
.lsb{letter-spacing:49.100800pt;}
.ls22{letter-spacing:61.568000pt;}
.ls2d{letter-spacing:61.696000pt;}
.ls25{letter-spacing:61.956480pt;}
.ls2b{letter-spacing:62.014720pt;}
.ls30{letter-spacing:62.035200pt;}
.ls1f{letter-spacing:62.142720pt;}
.ls2a{letter-spacing:63.471488pt;}
.ls2e{letter-spacing:63.882667pt;}
.ls23{letter-spacing:64.000000pt;}
.ls20{letter-spacing:64.634155pt;}
.ls2f{letter-spacing:65.156480pt;}
.ls24{letter-spacing:65.235200pt;}
.ls26{letter-spacing:65.896533pt;}
.ls31{letter-spacing:66.013867pt;}
.ls1e{letter-spacing:66.878720pt;}
.ls2c{letter-spacing:68.659200pt;}
.ls21{letter-spacing:68.736000pt;}
.ls40{letter-spacing:76.352000pt;}
.lsa{letter-spacing:81.276416pt;}
.lse{letter-spacing:81.335040pt;}
.ls12{letter-spacing:91.008000pt;}
.ws18{word-spacing:-79.840000pt;}
.ws11{word-spacing:-74.912000pt;}
.ws10{word-spacing:-74.432000pt;}
.ws13{word-spacing:-74.304000pt;}
.ws19{word-spacing:-54.176000pt;}
.wsf{word-spacing:-52.832000pt;}
.ws4f{word-spacing:-46.720000pt;}
.ws5{word-spacing:-42.447360pt;}
.ws8{word-spacing:-40.302080pt;}
.ws7{word-spacing:-38.942933pt;}
.ws2{word-spacing:-38.771200pt;}
.ws6{word-spacing:-38.611733pt;}
.ws3{word-spacing:-36.168533pt;}
.ws0{word-spacing:-33.152000pt;}
.ws49{word-spacing:-27.788800pt;}
.ws12{word-spacing:-27.040000pt;}
.ws8a{word-spacing:-25.248000pt;}
.ws43{word-spacing:-25.195520pt;}
.ws82{word-spacing:-25.120000pt;}
.wsc{word-spacing:-24.960000pt;}
.ws83{word-spacing:-24.864000pt;}
.ws4{word-spacing:-23.701867pt;}
.wsa{word-spacing:-22.164480pt;}
.wsb{word-spacing:-22.131200pt;}
.ws9e{word-spacing:-21.912747pt;}
.wsb0{word-spacing:-19.782933pt;}
.wsb2{word-spacing:-19.711467pt;}
.wsab{word-spacing:-19.701333pt;}
.wsac{word-spacing:-19.649067pt;}
.wsb1{word-spacing:-19.539733pt;}
.wsaf{word-spacing:-19.527467pt;}
.ws20{word-spacing:-19.502080pt;}
.wsd{word-spacing:-19.468800pt;}
.wsae{word-spacing:-19.401600pt;}
.ws3a{word-spacing:-19.237120pt;}
.wsb3{word-spacing:-19.170133pt;}
.wsb5{word-spacing:-19.061333pt;}
.wsb4{word-spacing:-19.033067pt;}
.wsb6{word-spacing:-19.009067pt;}
.wsb7{word-spacing:-18.887467pt;}
.wsad{word-spacing:-18.759467pt;}
.ws9d{word-spacing:-18.648533pt;}
.ws95{word-spacing:-18.600533pt;}
.wsa6{word-spacing:-18.473067pt;}
.wsa5{word-spacing:-18.467733pt;}
.ws93{word-spacing:-18.454933pt;}
.ws9c{word-spacing:-18.425280pt;}
.ws8f{word-spacing:-18.409067pt;}
.wsa1{word-spacing:-18.335680pt;}
.ws94{word-spacing:-18.334933pt;}
.wsa4{word-spacing:-18.237333pt;}
.ws8b{word-spacing:-18.234667pt;}
.wsa7{word-spacing:-18.196480pt;}
.wsa2{word-spacing:-18.075413pt;}
.ws8e{word-spacing:-18.009600pt;}
.ws9b{word-spacing:-18.004480pt;}
.ws96{word-spacing:-17.976315pt;}
.wsa9{word-spacing:-17.971840pt;}
.ws8c{word-spacing:-17.971200pt;}
.wsa3{word-spacing:-17.968107pt;}
.ws92{word-spacing:-17.958400pt;}
.ws97{word-spacing:-17.827733pt;}
.wsa0{word-spacing:-17.818880pt;}
.ws90{word-spacing:-17.814933pt;}
.ws9f{word-spacing:-17.801813pt;}
.ws99{word-spacing:-17.769067pt;}
.ws8d{word-spacing:-17.694933pt;}
.ws91{word-spacing:-17.692267pt;}
.wsaa{word-spacing:-17.645867pt;}
.wsa8{word-spacing:-17.643947pt;}
.ws9a{word-spacing:-17.633813pt;}
.ws3f{word-spacing:-16.951808pt;}
.ws3c{word-spacing:-16.922880pt;}
.ws61{word-spacing:-16.673280pt;}
.ws16{word-spacing:-16.640000pt;}
.ws3b{word-spacing:-15.488213pt;}
.ws7b{word-spacing:-15.342080pt;}
.ws7c{word-spacing:-15.308800pt;}
.ws7e{word-spacing:-15.265280pt;}
.ws27{word-spacing:-14.643200pt;}
.ws3d{word-spacing:-14.464000pt;}
.ws28{word-spacing:-14.330667pt;}
.ws45{word-spacing:-13.917440pt;}
.ws98{word-spacing:-13.844480pt;}
.ws2f{word-spacing:-13.811200pt;}
.ws4d{word-spacing:-9.651200pt;}
.ws53{word-spacing:-8.320000pt;}
.ws4c{word-spacing:-5.491200pt;}
.ws17{word-spacing:-1.884416pt;}
.ws80{word-spacing:-1.664000pt;}
.ws35{word-spacing:-0.965120pt;}
.ws32{word-spacing:-0.942592pt;}
.ws1b{word-spacing:-0.874240pt;}
.ws65{word-spacing:-0.863573pt;}
.ws84{word-spacing:-0.853333pt;}
.ws31{word-spacing:-0.839595pt;}
.ws4a{word-spacing:-0.834133pt;}
.ws88{word-spacing:-0.736000pt;}
.ws85{word-spacing:-0.704000pt;}
.ws89{word-spacing:-0.576000pt;}
.ws54{word-spacing:-0.567424pt;}
.ws1f{word-spacing:-0.409600pt;}
.ws5b{word-spacing:-0.384000pt;}
.ws78{word-spacing:-0.320000pt;}
.ws81{word-spacing:-0.256000pt;}
.ws87{word-spacing:-0.181333pt;}
.ws21{word-spacing:-0.135680pt;}
.ws4b{word-spacing:-0.050773pt;}
.ws52{word-spacing:-0.014336pt;}
.ws1{word-spacing:0.000000pt;}
.ws86{word-spacing:0.053333pt;}
.ws51{word-spacing:0.199680pt;}
.ws36{word-spacing:0.215680pt;}
.ws33{word-spacing:0.218880pt;}
.ws64{word-spacing:0.235947pt;}
.ws7f{word-spacing:0.255147pt;}
.ws30{word-spacing:0.256000pt;}
.ws2e{word-spacing:0.350080pt;}
.ws4e{word-spacing:0.728320pt;}
.ws15{word-spacing:0.794880pt;}
.ws62{word-spacing:0.863360pt;}
.ws1a{word-spacing:0.875520pt;}
.ws50{word-spacing:0.879360pt;}
.ws63{word-spacing:0.890880pt;}
.ws7d{word-spacing:1.031680pt;}
.ws1e{word-spacing:1.045760pt;}
.ws41{word-spacing:1.096960pt;}
.ws44{word-spacing:1.274240pt;}
.ws1c{word-spacing:1.502720pt;}
.ws34{word-spacing:1.517013pt;}
.ws42{word-spacing:1.548587pt;}
.ws1d{word-spacing:2.050560pt;}
.ws9{word-spacing:2.130091pt;}
.ws37{word-spacing:2.483200pt;}
.ws39{word-spacing:2.589867pt;}
.ws14{word-spacing:2.804267pt;}
.ws38{word-spacing:3.123200pt;}
.ws46{word-spacing:3.471360pt;}
.ws48{word-spacing:3.727360pt;}
.ws29{word-spacing:69.314987pt;}
.ws24{word-spacing:86.999467pt;}
.ws66{word-spacing:94.794667pt;}
.ws26{word-spacing:99.902720pt;}
.ws2a{word-spacing:103.577173pt;}
.ws2b{word-spacing:130.470187pt;}
.ws2d{word-spacing:130.576853pt;}
.ws75{word-spacing:152.938667pt;}
.ws5f{word-spacing:163.381333pt;}
.ws6a{word-spacing:165.098667pt;}
.ws47{word-spacing:165.156267pt;}
.ws23{word-spacing:167.438933pt;}
.ws5e{word-spacing:177.781333pt;}
.ws5d{word-spacing:182.074453pt;}
.ws60{word-spacing:195.061333pt;}
.ws25{word-spacing:197.728853pt;}
.ws2c{word-spacing:211.434667pt;}
.ws70{word-spacing:211.605333pt;}
.ws7a{word-spacing:228.245333pt;}
.ws67{word-spacing:233.002667pt;}
.ws71{word-spacing:233.578667pt;}
.ws6c{word-spacing:244.458667pt;}
.ws69{word-spacing:247.509333pt;}
.ws6d{word-spacing:255.904000pt;}
.ws77{word-spacing:264.853333pt;}
.ws72{word-spacing:283.477333pt;}
.ws79{word-spacing:288.597333pt;}
.ws74{word-spacing:291.157333pt;}
.ws76{word-spacing:300.757333pt;}
.ws6b{word-spacing:315.349333pt;}
.ws73{word-spacing:333.440000pt;}
.ws68{word-spacing:342.357333pt;}
.ws59{word-spacing:371.050667pt;}
.ws6f{word-spacing:376.490667pt;}
.ws56{word-spacing:388.474795pt;}
.ws6e{word-spacing:394.069333pt;}
.ws5c{word-spacing:415.210667pt;}
.ws5a{word-spacing:425.141333pt;}
.ws57{word-spacing:425.296341pt;}
.ws40{word-spacing:452.905173pt;}
.ws58{word-spacing:491.797333pt;}
.ws55{word-spacing:492.474069pt;}
.ws22{word-spacing:1109.027413pt;}
.ws3e{word-spacing:2415.371733pt;}
.wse{word-spacing:4055.531093pt;}
._7{margin-left:-3.453397pt;}
._2{margin-left:-1.986603pt;}
._1{margin-left:-0.960000pt;}
._3{width:1.152000pt;}
._d{width:2.240000pt;}
._c{width:3.264000pt;}
._63{width:4.881920pt;}
._f{width:6.005333pt;}
._5d{width:7.400149pt;}
._5c{width:8.422400pt;}
._5b{width:9.871232pt;}
._22{width:11.118123pt;}
._54{width:12.438613pt;}
._38{width:13.875669pt;}
._20{width:15.222187pt;}
._39{width:16.404523pt;}
._e{width:17.999872pt;}
._61{width:19.481600pt;}
._64{width:20.405760pt;}
._62{width:22.128640pt;}
._9{width:23.520000pt;}
._55{width:24.759936pt;}
._b{width:26.410667pt;}
._60{width:27.919616pt;}
._66{width:32.309120pt;}
._59{width:33.291093pt;}
._57{width:34.329600pt;}
._58{width:35.519147pt;}
._4{width:37.192960pt;}
._65{width:38.475520pt;}
._8{width:42.496000pt;}
._6{width:47.978667pt;}
._69{width:59.954432pt;}
._a{width:62.122667pt;}
._56{width:67.471360pt;}
._5{width:68.960000pt;}
._5a{width:72.576000pt;}
._5f{width:76.739883pt;}
._5e{width:77.998080pt;}
._67{width:80.156629pt;}
._68{width:81.204608pt;}
._12{width:90.015147pt;}
._11{width:94.898773pt;}
._17{width:98.504107pt;}
._27{width:102.143573pt;}
._28{width:127.914453pt;}
._14{width:130.871040pt;}
._15{width:137.016789pt;}
._18{width:140.385323pt;}
._13{width:141.839360pt;}
._3c{width:149.000192pt;}
._2a{width:157.045547pt;}
._29{width:158.805547pt;}
._19{width:160.501333pt;}
._16{width:161.864107pt;}
._3b{width:163.829333pt;}
._1b{width:167.040853pt;}
._1a{width:172.427520pt;}
._50{width:181.610667pt;}
._24{width:184.909141pt;}
._2e{width:187.541333pt;}
._4f{width:189.461333pt;}
._1f{width:190.474667pt;}
._23{width:192.984661pt;}
._1e{width:200.960853pt;}
._25{width:214.878891pt;}
._3a{width:238.741333pt;}
._2b{width:240.846933pt;}
._26{width:242.886315pt;}
._1c{width:260.107520pt;}
._3e{width:274.698667pt;}
._48{width:288.341333pt;}
._2d{width:295.189333pt;}
._47{width:300.053333pt;}
._3d{width:303.317333pt;}
._3f{width:308.320000pt;}
._52{width:324.160000pt;}
._2f{width:326.561109pt;}
._1d{width:330.664533pt;}
._4e{width:342.976000pt;}
._49{width:347.861333pt;}
._2c{width:350.901333pt;}
._4d{width:359.381333pt;}
._0{width:365.504000pt;}
._41{width:382.560000pt;}
._53{width:400.106667pt;}
._40{width:406.933333pt;}
._36{width:419.125333pt;}
._4a{width:436.853333pt;}
._4b{width:445.418667pt;}
._30{width:469.332053pt;}
._42{width:470.293333pt;}
._45{width:487.146667pt;}
._33{width:495.541333pt;}
._31{width:530.318805pt;}
._32{width:533.013077pt;}
._37{width:535.324117pt;}
._51{width:537.130667pt;}
._44{width:538.773333pt;}
._43{width:546.666667pt;}
._34{width:547.669333pt;}
._35{width:568.789333pt;}
._4c{width:587.889067pt;}
._46{width:625.706667pt;}
._10{width:1187.460693pt;}
._21{width:2325.030827pt;}
.fs1c{font-size:21.120000pt;}
.fs1b{font-size:32.000000pt;}
.fs1d{font-size:37.120000pt;}
.fs1e{font-size:37.248000pt;}
.fs1{font-size:42.880000pt;}
.fs26{font-size:46.080000pt;}
.fs18{font-size:53.120000pt;}
.fs23{font-size:53.248000pt;}
.fs17{font-size:56.320000pt;}
.fs25{font-size:56.960000pt;}
.fs19{font-size:58.880000pt;}
.fs1a{font-size:59.008000pt;}
.fs0{font-size:64.000000pt;}
.fs1f{font-size:64.128000pt;}
.fs22{font-size:69.120000pt;}
.fs24{font-size:69.248000pt;}
.fs15{font-size:70.400000pt;}
.fs13{font-size:74.880000pt;}
.fs14{font-size:75.008000pt;}
.fs11{font-size:85.120000pt;}
.fsf{font-size:85.248000pt;}
.fsb{font-size:90.880000pt;}
.fsa{font-size:91.008000pt;}
.fs5{font-size:96.000000pt;}
.fs16{font-size:96.128000pt;}
.fs10{font-size:102.400000pt;}
.fs12{font-size:102.528000pt;}
.fse{font-size:106.880000pt;}
.fs4{font-size:128.000000pt;}
.fs9{font-size:138.880000pt;}
.fs8{font-size:149.120000pt;}
.fsc{font-size:149.248000pt;}
.fsd{font-size:155.008000pt;}
.fs7{font-size:170.880000pt;}
.fs6{font-size:171.008000pt;}
.fs2{font-size:192.000000pt;}
.fs3{font-size:192.128000pt;}
.fs20{font-size:213.248000pt;}
.fs21{font-size:789.386667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:6.976000pt;}
.yb{bottom:10.528000pt;}
.y16{bottom:10.848000pt;}
.ybd{bottom:31.040000pt;}
.y86{bottom:36.544000pt;}
.yb6{bottom:42.560000pt;}
.y157{bottom:45.216000pt;}
.y85{bottom:52.544000pt;}
.yb5{bottom:58.560000pt;}
.y120{bottom:59.744000pt;}
.ycd{bottom:61.024000pt;}
.ydf{bottom:61.826667pt;}
.yd7{bottom:61.853333pt;}
.yd4{bottom:61.893333pt;}
.y4c{bottom:64.160000pt;}
.y89{bottom:65.152000pt;}
.y50{bottom:66.304000pt;}
.y156{bottom:67.616000pt;}
.ya7{bottom:68.032000pt;}
.ybb{bottom:70.080000pt;}
.yab{bottom:70.240000pt;}
.y13c{bottom:70.944000pt;}
.y115{bottom:77.248000pt;}
.ycc{bottom:78.624000pt;}
.y11f{bottom:80.576000pt;}
.y9b{bottom:82.146667pt;}
.y99{bottom:82.173333pt;}
.yac{bottom:82.213333pt;}
.yb9{bottom:82.240000pt;}
.ya9{bottom:82.266667pt;}
.ybe{bottom:82.272000pt;}
.y4f{bottom:82.304000pt;}
.y68{bottom:83.456000pt;}
.y21{bottom:88.736000pt;}
.y155{bottom:90.016000pt;}
.ya{bottom:90.848000pt;}
.y84{bottom:91.264000pt;}
.y13b{bottom:91.744000pt;}
.y4b{bottom:95.392000pt;}
.ya6{bottom:96.032000pt;}
.y23{bottom:96.736000pt;}
.y114{bottom:98.080000pt;}
.y4e{bottom:98.304000pt;}
.yf7{bottom:100.352000pt;}
.y11e{bottom:101.376000pt;}
.y4{bottom:101.440000pt;}
.yb8{bottom:108.960000pt;}
.ya8{bottom:109.120000pt;}
.y9a{bottom:109.280000pt;}
.y20{bottom:111.136000pt;}
.y154{bottom:112.416000pt;}
.y13a{bottom:112.544000pt;}
.ybf{bottom:113.312000pt;}
.y25{bottom:114.944000pt;}
.ycb{bottom:115.232000pt;}
.y83{bottom:116.864000pt;}
.y4d{bottom:117.216000pt;}
.yf6{bottom:117.952000pt;}
.y8a{bottom:118.496000pt;}
.y113{bottom:118.880000pt;}
.y11d{bottom:122.176000pt;}
.ya5{bottom:124.864000pt;}
.y4a{bottom:126.656000pt;}
.y71{bottom:128.448000pt;}
.y139{bottom:133.346667pt;}
.y1f{bottom:133.533333pt;}
.y153{bottom:134.813333pt;}
.y24{bottom:137.346667pt;}
.y112{bottom:139.680000pt;}
.y69{bottom:141.146667pt;}
.y82{bottom:142.466667pt;}
.y11c{bottom:142.973333pt;}
.yca{bottom:147.200000pt;}
.yb7{bottom:147.840000pt;}
.y98{bottom:148.160000pt;}
.y22{bottom:149.373333pt;}
.ybc{bottom:152.253333pt;}
.yad{bottom:152.453333pt;}
.yf5{bottom:153.186667pt;}
.y6a{bottom:154.080000pt;}
.y138{bottom:154.173333pt;}
.y152{bottom:157.213333pt;}
.y1e{bottom:157.373333pt;}
.y103{bottom:158.013333pt;}
.y8d{bottom:165.440000pt;}
.y81{bottom:168.093333pt;}
.yf4{bottom:170.786667pt;}
.y32{bottom:172.666667pt;}
.yc9{bottom:179.200000pt;}
.y49{bottom:180.733333pt;}
.y12a{bottom:182.053333pt;}
.y5b{bottom:186.013333pt;}
.y102{bottom:186.213333pt;}
.y151{bottom:190.786667pt;}
.y74{bottom:191.040000pt;}
.yba{bottom:191.200000pt;}
.yaa{bottom:191.386667pt;}
.y9c{bottom:191.426667pt;}
.y147{bottom:193.213333pt;}
.y80{bottom:193.693333pt;}
.y10a{bottom:197.786667pt;}
.y129{bottom:202.853333pt;}
.y5a{bottom:203.613333pt;}
.y8c{bottom:204.800000pt;}
.yf3{bottom:205.986667pt;}
.y88{bottom:206.786667pt;}
.y48{bottom:207.133333pt;}
.y31{bottom:211.066667pt;}
.yc8{bottom:211.173333pt;}
.y150{bottom:213.186667pt;}
.y146{bottom:214.013333pt;}
.y101{bottom:215.013333pt;}
.y109{bottom:218.586667pt;}
.y7f{bottom:218.813333pt;}
.y6b{bottom:222.493333pt;}
.yf2{bottom:223.586667pt;}
.y128{bottom:223.653333pt;}
.y47{bottom:223.933333pt;}
.y67{bottom:226.400000pt;}
.y73{bottom:230.400000pt;}
.y70{bottom:231.706667pt;}
.y145{bottom:234.853333pt;}
.y14f{bottom:235.586667pt;}
.y59{bottom:238.853333pt;}
.y108{bottom:239.426667pt;}
.y127{bottom:244.453333pt;}
.y7e{bottom:244.893333pt;}
.y30{bottom:249.466667pt;}
.y104{bottom:252.026667pt;}
.yd{bottom:253.693333pt;}
.y137{bottom:254.653333pt;}
.y46{bottom:255.173333pt;}
.y144{bottom:255.653333pt;}
.y58{bottom:256.453333pt;}
.y14e{bottom:257.986667pt;}
.yf1{bottom:258.786667pt;}
.y107{bottom:260.226667pt;}
.y15c{bottom:260.933333pt;}
.y8b{bottom:261.146667pt;}
.y126{bottom:265.253333pt;}
.yd2{bottom:268.800000pt;}
.y7d{bottom:270.493333pt;}
.y111{bottom:271.453333pt;}
.y100{bottom:272.640000pt;}
.y15{bottom:276.133333pt;}
.yf0{bottom:276.413333pt;}
.y143{bottom:276.453333pt;}
.y29{bottom:276.613333pt;}
.yb4{bottom:277.533333pt;}
.y14d{bottom:280.386667pt;}
.yc{bottom:280.933333pt;}
.y106{bottom:281.026667pt;}
.ya1{bottom:284.066667pt;}
.ya2{bottom:284.226667pt;}
.y45{bottom:286.400000pt;}
.y72{bottom:286.586667pt;}
.y2f{bottom:287.906667pt;}
.y136{bottom:288.253333pt;}
.y64{bottom:293.693333pt;}
.y15b{bottom:294.533333pt;}
.yd1{bottom:297.600000pt;}
.y7{bottom:297.626667pt;}
.yc6{bottom:299.746667pt;}
.y63{bottom:302.373333pt;}
.ya0{bottom:303.706667pt;}
.y28{bottom:304.613333pt;}
.y110{bottom:305.053333pt;}
.yc7{bottom:305.186667pt;}
.y125{bottom:305.466667pt;}
.yb3{bottom:306.306667pt;}
.yb2{bottom:306.626667pt;}
.y142{bottom:310.746667pt;}
.y51{bottom:312.893333pt;}
.y14c{bottom:313.946667pt;}
.y57{bottom:317.733333pt;}
.y6c{bottom:319.386667pt;}
.y135{bottom:321.853333pt;}
.y105{bottom:322.626667pt;}
.yc0{bottom:324.186667pt;}
.y11a{bottom:326.173333pt;}
.y124{bottom:326.266667pt;}
.yd0{bottom:326.400000pt;}
.y6{bottom:326.426667pt;}
.y15a{bottom:328.133333pt;}
.y14{bottom:329.760000pt;}
.yff{bottom:330.240000pt;}
.y141{bottom:331.546667pt;}
.y97{bottom:332.733333pt;}
.y27{bottom:333.440000pt;}
.y56{bottom:333.733333pt;}
.y14b{bottom:336.346667pt;}
.y10f{bottom:338.653333pt;}
.yef{bottom:341.253333pt;}
.y119{bottom:346.973333pt;}
.y123{bottom:347.066667pt;}
.y55{bottom:349.733333pt;}
.y96{bottom:350.306667pt;}
.y140{bottom:352.346667pt;}
.ycf{bottom:355.200000pt;}
.y5{bottom:355.226667pt;}
.y134{bottom:355.453333pt;}
.y9d{bottom:357.146667pt;}
.yaf{bottom:357.693333pt;}
.y14a{bottom:358.746667pt;}
.yfe{bottom:359.040000pt;}
.y159{bottom:361.733333pt;}
.y26{bottom:362.240000pt;}
.y54{bottom:365.733333pt;}
.y6f{bottom:365.920000pt;}
.y11b{bottom:366.240000pt;}
.y118{bottom:367.773333pt;}
.y122{bottom:367.866667pt;}
.y10e{bottom:372.253333pt;}
.yc5{bottom:373.120000pt;}
.y13f{bottom:373.186667pt;}
.yee{bottom:373.213333pt;}
.y6e{bottom:377.120000pt;}
.y62{bottom:378.560000pt;}
.y66{bottom:381.120000pt;}
.y149{bottom:381.146667pt;}
.y53{bottom:381.733333pt;}
.y2c{bottom:382.373333pt;}
.y13{bottom:383.360000pt;}
.yce{bottom:384.026667pt;}
.y117{bottom:388.573333pt;}
.y121{bottom:388.666667pt;}
.ye{bottom:391.653333pt;}
.y13e{bottom:393.986667pt;}
.yde{bottom:394.880000pt;}
.y158{bottom:395.360000pt;}
.y52{bottom:399.200000pt;}
.y65{bottom:400.320000pt;}
.y61{bottom:401.600000pt;}
.yed{bottom:402.053333pt;}
.y148{bottom:403.546667pt;}
.y9e{bottom:404.413333pt;}
.y6d{bottom:404.666667pt;}
.yb0{bottom:404.986667pt;}
.y116{bottom:409.373333pt;}
.y35{bottom:410.853333pt;}
.y13d{bottom:414.786667pt;}
.yfd{bottom:416.666667pt;}
.y9f{bottom:417.413333pt;}
.yb1{bottom:417.986667pt;}
.yec{bottom:421.253333pt;}
.ydd{bottom:423.680000pt;}
.y1d{bottom:428.506667pt;}
.y12f{bottom:430.533333pt;}
.yc1{bottom:432.573333pt;}
.yc2{bottom:432.640000pt;}
.yc3{bottom:433.026667pt;}
.y34{bottom:436.453333pt;}
.yae{bottom:436.666667pt;}
.yc4{bottom:436.826667pt;}
.y161{bottom:437.120000pt;}
.y12{bottom:437.146667pt;}
.ye5{bottom:438.266667pt;}
.yfc{bottom:445.466667pt;}
.y133{bottom:447.973333pt;}
.y12e{bottom:451.333333pt;}
.y40{bottom:451.426667pt;}
.y3b{bottom:451.973333pt;}
.yda{bottom:452.480000pt;}
.y10d{bottom:452.666667pt;}
.yeb{bottom:453.213333pt;}
.y2e{bottom:455.746667pt;}
.ye0{bottom:456.706667pt;}
.y160{bottom:459.520000pt;}
.ye4{bottom:463.866667pt;}
.y1c{bottom:466.906667pt;}
.y91{bottom:467.520000pt;}
.y8f{bottom:468.226667pt;}
.y132{bottom:468.773333pt;}
.y93{bottom:470.746667pt;}
.y95{bottom:471.200000pt;}
.y2d{bottom:471.746667pt;}
.y12d{bottom:472.133333pt;}
.y10c{bottom:473.466667pt;}
.y3f{bottom:473.826667pt;}
.yfb{bottom:474.266667pt;}
.y3a{bottom:474.400000pt;}
.y3{bottom:475.613333pt;}
.y90{bottom:477.120000pt;}
.y92{bottom:477.146667pt;}
.y94{bottom:477.600000pt;}
.y8e{bottom:477.826667pt;}
.y33{bottom:481.280000pt;}
.y15f{bottom:481.920000pt;}
.yea{bottom:485.213333pt;}
.ydc{bottom:485.533333pt;}
.y7c{bottom:489.573333pt;}
.y131{bottom:489.600000pt;}
.y11{bottom:490.746667pt;}
.y12c{bottom:492.960000pt;}
.y10b{bottom:494.306667pt;}
.y44{bottom:496.093333pt;}
.y87{bottom:499.746667pt;}
.y15e{bottom:504.320000pt;}
.y1b{bottom:505.306667pt;}
.yd6{bottom:510.080000pt;}
.y130{bottom:510.400000pt;}
.y12b{bottom:513.760000pt;}
.ydb{bottom:514.333333pt;}
.ye3{bottom:515.106667pt;}
.y7b{bottom:515.173333pt;}
.y78{bottom:515.520000pt;}
.ye9{bottom:517.186667pt;}
.y43{bottom:518.493333pt;}
.y2b{bottom:524.800000pt;}
.y15d{bottom:526.720000pt;}
.y5e{bottom:527.933333pt;}
.yfa{bottom:531.906667pt;}
.y9{bottom:532.293333pt;}
.y2{bottom:533.213333pt;}
.yd3{bottom:538.880000pt;}
.ye2{bottom:540.706667pt;}
.y7a{bottom:540.773333pt;}
.yd9{bottom:543.133333pt;}
.y1a{bottom:543.706667pt;}
.y10{bottom:544.346667pt;}
.y2a{bottom:545.280000pt;}
.ye8{bottom:545.986667pt;}
.y76{bottom:547.520000pt;}
.y5d{bottom:553.533333pt;}
.yf9{bottom:560.706667pt;}
.ya4{bottom:562.626667pt;}
.ye7{bottom:565.213333pt;}
.y79{bottom:566.373333pt;}
.y39{bottom:568.160000pt;}
.yd8{bottom:571.933333pt;}
.y3d{bottom:574.746667pt;}
.y8{bottom:578.400000pt;}
.y3e{bottom:578.906667pt;}
.y5c{bottom:579.133333pt;}
.y42{bottom:579.200000pt;}
.y75{bottom:579.546667pt;}
.ye6{bottom:584.413333pt;}
.ya3{bottom:588.226667pt;}
.yf8{bottom:589.506667pt;}
.y38{bottom:590.560000pt;}
.ye1{bottom:591.906667pt;}
.y19{bottom:596.506667pt;}
.y3c{bottom:597.146667pt;}
.yd5{bottom:600.773333pt;}
.y41{bottom:601.600000pt;}
.y77{bottom:607.706667pt;}
.y18{bottom:639.840000pt;}
.y37{bottom:640.640000pt;}
.y60{bottom:641.280000pt;}
.yf{bottom:656.253333pt;}
.y5f{bottom:668.826667pt;}
.y36{bottom:670.266667pt;}
.y17{bottom:671.706667pt;}
.h33{height:17.582812pt;}
.h32{height:26.640625pt;}
.h34{height:30.903125pt;}
.h9{height:31.217812pt;}
.h37{height:31.436458pt;}
.hf{height:32.850938pt;}
.h3b{height:33.996458pt;}
.h38{height:34.209687pt;}
.h39{height:34.316458pt;}
.h3c{height:34.369792pt;}
.h24{height:44.223437pt;}
.h3e{height:45.051250pt;}
.h40{height:45.149187pt;}
.h22{height:46.887500pt;}
.h25{height:49.018750pt;}
.h1{height:49.031250pt;}
.h26{height:49.125312pt;}
.h46{height:49.129312pt;}
.h44{height:52.886250pt;}
.h47{height:52.984187pt;}
.h1c{height:53.281250pt;}
.h3d{height:53.387812pt;}
.h2f{height:53.625000pt;}
.h2b{height:56.062500pt;}
.h49{height:56.377500pt;}
.h21{height:57.293437pt;}
.h20{height:57.391375pt;}
.h2a{height:60.937500pt;}
.h17{height:62.339062pt;}
.h18{height:62.445625pt;}
.h14{height:65.128438pt;}
.h45{height:65.211562pt;}
.ha{height:65.531250pt;}
.h31{height:68.037813pt;}
.h48{height:69.237812pt;}
.hc{height:69.624375pt;}
.hb{height:69.722437pt;}
.h1b{height:70.864063pt;}
.h12{height:70.970625pt;}
.h28{height:71.296875pt;}
.h2c{height:71.418750pt;}
.h41{height:73.453125pt;}
.h5{height:73.546875pt;}
.h3a{height:74.105937pt;}
.h36{height:74.217375pt;}
.h13{height:75.850000pt;}
.h15{height:75.944812pt;}
.h16{height:79.921875pt;}
.h23{height:80.028438pt;}
.h1a{height:80.906250pt;}
.h27{height:81.046875pt;}
.h11{height:88.979687pt;}
.h30{height:91.406250pt;}
.h1d{height:98.427937pt;}
.h29{height:103.017500pt;}
.h4{height:106.562500pt;}
.h19{height:106.755062pt;}
.h8{height:114.097187pt;}
.he{height:114.195125pt;}
.h2e{height:115.726333pt;}
.h2d{height:116.096875pt;}
.h10{height:129.047188pt;}
.h3f{height:134.560000pt;}
.hd{height:138.830720pt;}
.h7{height:142.260937pt;}
.h6{height:142.367500pt;}
.h1f{height:144.906250pt;}
.h2{height:159.843750pt;}
.h3{height:159.950312pt;}
.h42{height:163.372125pt;}
.h1e{height:167.491250pt;}
.h35{height:179.360000pt;}
.h43{height:604.759609pt;}
.h0{height:720.000000pt;}
.w6{width:154.080000pt;}
.w2{width:198.560000pt;}
.w4{width:241.120000pt;}
.w5{width:555.040000pt;}
.w3{width:555.200000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x72{left:9.760000pt;}
.x5d{left:11.199981pt;}
.x95{left:14.106667pt;}
.xf{left:19.039981pt;}
.x3d{left:25.727981pt;}
.xd{left:29.023981pt;}
.x61{left:38.431981pt;}
.x5e{left:41.279981pt;}
.x1d{left:42.463981pt;}
.x47{left:46.687981pt;}
.x23{left:49.119981pt;}
.x49{left:50.527981pt;}
.xa0{left:52.063981pt;}
.x45{left:53.247981pt;}
.xa1{left:55.903981pt;}
.x1c{left:57.503981pt;}
.x43{left:58.527981pt;}
.x64{left:59.551981pt;}
.x42{left:61.727981pt;}
.x1e{left:63.423981pt;}
.x1f{left:67.039981pt;}
.x41{left:68.767981pt;}
.x3e{left:70.047981pt;}
.x90{left:71.386667pt;}
.x24{left:73.119981pt;}
.x6b{left:74.975981pt;}
.x83{left:79.711981pt;}
.x66{left:82.463981pt;}
.x4e{left:83.455981pt;}
.xa2{left:86.143981pt;}
.x10{left:88.031981pt;}
.x46{left:91.967981pt;}
.x44{left:97.247981pt;}
.x4a{left:99.743981pt;}
.x84{left:101.855981pt;}
.x7c{left:106.143981pt;}
.x67{left:108.607981pt;}
.x11{left:112.031981pt;}
.xa3{left:116.223981pt;}
.x6a{left:118.655981pt;}
.x77{left:121.343981pt;}
.x85{left:123.263981pt;}
.x7f{left:125.503981pt;}
.x65{left:131.263981pt;}
.x48{left:135.199981pt;}
.x94{left:138.906667pt;}
.x69{left:140.453314pt;}
.x86{left:145.826648pt;}
.x88{left:151.613314pt;}
.x25{left:159.999981pt;}
.x68{left:162.373314pt;}
.x7e{left:164.666648pt;}
.x87{left:165.893314pt;}
.xad{left:168.479981pt;}
.x26{left:170.079981pt;}
.x76{left:173.373314pt;}
.xac{left:182.239981pt;}
.x39{left:183.199981pt;}
.xa9{left:184.159981pt;}
.xa8{left:186.079981pt;}
.xae{left:187.199981pt;}
.xaf{left:188.159981pt;}
.xab{left:190.559981pt;}
.xa7{left:193.279981pt;}
.x6c{left:198.426648pt;}
.x33{left:204.639981pt;}
.x6d{left:205.786648pt;}
.x34{left:210.719981pt;}
.x17{left:215.066648pt;}
.x63{left:217.733314pt;}
.x18{left:236.826648pt;}
.x16{left:243.706648pt;}
.x6e{left:244.959981pt;}
.x19{left:249.466648pt;}
.x6f{left:252.319981pt;}
.x70{left:257.026648pt;}
.x55{left:275.133314pt;}
.x7d{left:279.773314pt;}
.x50{left:285.253314pt;}
.x51{left:287.999981pt;}
.x4f{left:293.759981pt;}
.x32{left:303.973314pt;}
.x78{left:311.679981pt;}
.xc{left:316.893314pt;}
.x2b{left:326.266648pt;}
.x8a{left:345.506648pt;}
.x3{left:358.719981pt;}
.x21{left:360.066648pt;}
.x8c{left:381.946648pt;}
.x98{left:388.226648pt;}
.x71{left:389.920000pt;}
.x52{left:400.506648pt;}
.x2{left:402.239981pt;}
.x8e{left:407.226648pt;}
.xe{left:423.386648pt;}
.x56{left:430.906648pt;}
.x9{left:441.026648pt;}
.x57{left:446.333314pt;}
.x28{left:452.026648pt;}
.x82{left:458.079981pt;}
.x99{left:460.026648pt;}
.x9a{left:461.786648pt;}
.x8b{left:462.786648pt;}
.x27{left:472.666648pt;}
.xaa{left:475.679981pt;}
.x89{left:479.746648pt;}
.x74{left:481.439981pt;}
.x20{left:488.799981pt;}
.x8d{left:495.746648pt;}
.x58{left:499.133314pt;}
.x3f{left:511.706648pt;}
.x3c{left:514.426648pt;}
.x8{left:518.786648pt;}
.x15{left:538.946648pt;}
.x9b{left:540.479981pt;}
.x53{left:541.946648pt;}
.x13{left:545.986648pt;}
.x80{left:550.146648pt;}
.x14{left:553.026648pt;}
.x54{left:554.013314pt;}
.xb{left:573.053314pt;}
.x12{left:582.306648pt;}
.xb0{left:583.493314pt;}
.xa6{left:585.573314pt;}
.x73{left:588.320000pt;}
.x22{left:599.133314pt;}
.x29{left:604.066648pt;}
.x2a{left:618.946648pt;}
.xa5{left:626.946648pt;}
.x79{left:630.880000pt;}
.x4d{left:638.426648pt;}
.x35{left:646.626648pt;}
.x75{left:666.399981pt;}
.x7a{left:708.893314pt;}
.x7b{left:710.813314pt;}
.x3b{left:717.213314pt;}
.x4{left:721.693314pt;}
.x2d{left:727.386648pt;}
.x37{left:734.053314pt;}
.x4c{left:736.826648pt;}
.x36{left:737.893314pt;}
.x2c{left:739.866648pt;}
.x5a{left:742.426648pt;}
.x3a{left:744.733314pt;}
.x59{left:750.266648pt;}
.x4b{left:754.746648pt;}
.x81{left:789.213314pt;}
.x5{left:810.973314pt;}
.x38{left:819.706648pt;}
.x6{left:826.333314pt;}
.x40{left:829.693314pt;}
.x2e{left:888.413314pt;}
.x5f{left:890.333314pt;}
.x8f{left:894.400000pt;}
.x1b{left:898.173314pt;}
.x2f{left:899.933314pt;}
.xa4{left:910.466648pt;}
.x1a{left:917.533314pt;}
.x60{left:920.413314pt;}
.x97{left:927.866648pt;}
.x93{left:956.506648pt;}
.x7{left:959.173314pt;}
.x31{left:981.626648pt;}
.x30{left:1006.106648pt;}
.x1{left:1019.039981pt;}
.x5b{left:1053.666648pt;}
.x9c{left:1056.733314pt;}
.x91{left:1071.906648pt;}
.x5c{left:1107.359981pt;}
.x96{left:1124.706648pt;}
.x92{left:1129.186648pt;}
.x9e{left:1133.346648pt;}
.x9f{left:1137.506648pt;}
.x9d{left:1144.066648pt;}
.x62{left:1243.519981pt;}
.xa{left:1246.719981pt;}
}




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