
    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_61d1a9122f478da98fc5518e.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_2d167354f22ceaf95bba711b.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_446e67f140559b6da69b8868.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.913574;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_19b7559b7b8d99355cfb1451.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.939453;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_ab0a3ab4f225eeb3904dd534.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_69f2e9509750ea37249b440f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_336a691d56d7262396268a7f.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_67959db4dae5ce0e52127b13.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_45a908e6c4858eec0213700a.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_bff357c653a2141bb4b1cde3.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.893555;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_0530b0f635f03ed79081bd75.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_490625630cbc93f79e0b2f56.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_18056e8c12c98db081f4e026.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_fd0bb471b718cab7acc6afaf.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.938965;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_87591064d49e569f4de8befd.woff2')format("woff");}.fff{font-family:fff;line-height:0.939453;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_78ae80af8d85d7b253402fec.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.908203;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_564152cf18e66646e4740d84.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_6781a4ba90dd064228125c69.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_ddab76f9c85658902989bb24.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_3870206f903e5c8c4876e913.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_a36b921398ab9db91abd77fc.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_239df850ab7458c2a8e0f466.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_a15dfe83e1800601b8d8098f.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.867676;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;}
.m4{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);}
.m3{transform:matrix(0.246238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246238,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249034,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.701400px;}
.v5{vertical-align:-18.108600px;}
.v8{vertical-align:-11.706000px;}
.v6{vertical-align:-10.575600px;}
.v7{vertical-align:-9.381600px;}
.v9{vertical-align:-6.360000px;}
.v0{vertical-align:0.000000px;}
.ve{vertical-align:1.620000px;}
.v4{vertical-align:5.761200px;}
.vc{vertical-align:11.684160px;}
.vd{vertical-align:22.610400px;}
.v3{vertical-align:28.230000px;}
.v1{vertical-align:30.381600px;}
.vb{vertical-align:37.247400px;}
.va{vertical-align:39.720600px;}
.ls12{letter-spacing:-0.780000px;}
.ls5f{letter-spacing:-0.420000px;}
.ls36{letter-spacing:-0.300000px;}
.ls5e{letter-spacing:-0.240000px;}
.ls97{letter-spacing:-0.192000px;}
.ls66{letter-spacing:-0.151695px;}
.ls13{letter-spacing:-0.126600px;}
.ls37{letter-spacing:-0.120000px;}
.ls9a{letter-spacing:-0.096000px;}
.ls14{letter-spacing:-0.060000px;}
.ls98{letter-spacing:-0.048000px;}
.ls11{letter-spacing:0.000000px;}
.ls43{letter-spacing:0.002400px;}
.ls2{letter-spacing:0.003540px;}
.ls53{letter-spacing:0.005580px;}
.ls1{letter-spacing:0.005676px;}
.ls41{letter-spacing:0.007800px;}
.ls48{letter-spacing:0.008400px;}
.ls3f{letter-spacing:0.009600px;}
.ls46{letter-spacing:0.010800px;}
.ls44{letter-spacing:0.010860px;}
.ls50{letter-spacing:0.013200px;}
.ls42{letter-spacing:0.014400px;}
.ls47{letter-spacing:0.017400px;}
.ls4f{letter-spacing:0.021600px;}
.ls45{letter-spacing:0.034200px;}
.ls51{letter-spacing:0.039000px;}
.ls83{letter-spacing:0.048000px;}
.ls4e{letter-spacing:0.049200px;}
.ls29{letter-spacing:0.060000px;}
.ls67{letter-spacing:0.086436px;}
.ls65{letter-spacing:0.086888px;}
.ls3e{letter-spacing:0.096000px;}
.ls25{letter-spacing:0.120000px;}
.ls64{letter-spacing:0.129913px;}
.ls63{letter-spacing:0.151695px;}
.ls1c{letter-spacing:0.180000px;}
.ls68{letter-spacing:0.192000px;}
.ls18{letter-spacing:0.240000px;}
.ls8e{letter-spacing:0.288000px;}
.ls7{letter-spacing:0.300000px;}
.ls8b{letter-spacing:0.336000px;}
.ls19{letter-spacing:0.360000px;}
.ls40{letter-spacing:0.384000px;}
.ls4d{letter-spacing:0.384960px;}
.ls4a{letter-spacing:0.410160px;}
.ls4c{letter-spacing:0.419760px;}
.ls2f{letter-spacing:0.420000px;}
.ls8f{letter-spacing:0.432000px;}
.ls6b{letter-spacing:0.454740px;}
.ls2a{letter-spacing:0.480000px;}
.ls9f{letter-spacing:0.528000px;}
.ls59{letter-spacing:0.540000px;}
.ls81{letter-spacing:0.576000px;}
.ls38{letter-spacing:0.600000px;}
.ls85{letter-spacing:0.624000px;}
.lsc{letter-spacing:0.660000px;}
.ls86{letter-spacing:0.672000px;}
.ls49{letter-spacing:0.708000px;}
.ls4b{letter-spacing:0.709800px;}
.ls2e{letter-spacing:0.720000px;}
.ls57{letter-spacing:0.776580px;}
.ls33{letter-spacing:0.780000px;}
.ls89{letter-spacing:0.816000px;}
.ls1d{letter-spacing:0.840000px;}
.ls7c{letter-spacing:0.864000px;}
.ls27{letter-spacing:0.900000px;}
.ls1a{letter-spacing:0.960000px;}
.ls55{letter-spacing:1.015980px;}
.lse{letter-spacing:1.020000px;}
.ls7e{letter-spacing:1.056000px;}
.ls2c{letter-spacing:1.080000px;}
.ls88{letter-spacing:1.104000px;}
.ls6{letter-spacing:1.140000px;}
.ls3a{letter-spacing:1.146600px;}
.ls99{letter-spacing:1.152000px;}
.ls1e{letter-spacing:1.200000px;}
.ls7f{letter-spacing:1.248000px;}
.ls4{letter-spacing:1.260000px;}
.ls56{letter-spacing:1.312200px;}
.ls32{letter-spacing:1.320000px;}
.ls8c{letter-spacing:1.344000px;}
.ls15{letter-spacing:1.380000px;}
.ls17{letter-spacing:1.440000px;}
.ls28{letter-spacing:1.500000px;}
.ls9c{letter-spacing:1.536000px;}
.ls35{letter-spacing:1.560000px;}
.ls9e{letter-spacing:1.584000px;}
.ls61{letter-spacing:1.620000px;}
.ls91{letter-spacing:1.632000px;}
.ls30{letter-spacing:1.680000px;}
.ls54{letter-spacing:1.722000px;}
.ls26{letter-spacing:1.740000px;}
.ls90{letter-spacing:1.776000px;}
.ls1b{letter-spacing:1.800000px;}
.ls62{letter-spacing:1.824000px;}
.ls16{letter-spacing:1.860000px;}
.ls87{letter-spacing:1.872000px;}
.ls31{letter-spacing:1.920000px;}
.ls9d{letter-spacing:1.968000px;}
.ls20{letter-spacing:1.980000px;}
.ls93{letter-spacing:2.016000px;}
.ls3{letter-spacing:2.040000px;}
.ls82{letter-spacing:2.064000px;}
.ls71{letter-spacing:2.100000px;}
.ls84{letter-spacing:2.112000px;}
.ls10{letter-spacing:2.160000px;}
.ls8d{letter-spacing:2.208000px;}
.ls75{letter-spacing:2.220000px;}
.ls9b{letter-spacing:2.256000px;}
.ls5d{letter-spacing:2.280000px;}
.lsd{letter-spacing:2.340000px;}
.ls34{letter-spacing:2.400000px;}
.ls6f{letter-spacing:2.460000px;}
.ls80{letter-spacing:2.496000px;}
.ls3c{letter-spacing:2.520000px;}
.lsf{letter-spacing:2.580000px;}
.ls9{letter-spacing:2.640000px;}
.ls79{letter-spacing:2.700000px;}
.ls22{letter-spacing:2.760000px;}
.ls96{letter-spacing:2.784000px;}
.ls1f{letter-spacing:2.820000px;}
.ls72{letter-spacing:2.880000px;}
.ls70{letter-spacing:2.940000px;}
.ls95{letter-spacing:2.976000px;}
.ls6e{letter-spacing:3.000000px;}
.ls7b{letter-spacing:3.024000px;}
.ls23{letter-spacing:3.060000px;}
.ls24{letter-spacing:3.120000px;}
.ls21{letter-spacing:3.180000px;}
.ls92{letter-spacing:3.216000px;}
.ls5{letter-spacing:3.240000px;}
.lsa0{letter-spacing:3.264000px;}
.ls2d{letter-spacing:3.300000px;}
.ls6c{letter-spacing:3.420000px;}
.ls3d{letter-spacing:3.480000px;}
.ls94{letter-spacing:3.504000px;}
.lsa{letter-spacing:3.600000px;}
.lsa2{letter-spacing:3.720000px;}
.ls8a{letter-spacing:3.744000px;}
.ls8{letter-spacing:3.900000px;}
.ls5a{letter-spacing:4.020000px;}
.ls2b{letter-spacing:4.200000px;}
.ls5c{letter-spacing:4.320000px;}
.lsa1{letter-spacing:4.800000px;}
.ls7d{letter-spacing:4.848000px;}
.lsb{letter-spacing:4.980000px;}
.ls74{letter-spacing:5.100000px;}
.ls78{letter-spacing:5.160000px;}
.ls5b{letter-spacing:5.280000px;}
.ls77{letter-spacing:5.340000px;}
.ls39{letter-spacing:5.580000px;}
.ls58{letter-spacing:5.700000px;}
.ls73{letter-spacing:6.420000px;}
.ls76{letter-spacing:6.480000px;}
.ls6d{letter-spacing:7.080000px;}
.ls7a{letter-spacing:7.620000px;}
.ls60{letter-spacing:8.347800px;}
.ls3b{letter-spacing:25.138800px;}
.ls52{letter-spacing:29.467200px;}
.ls0{letter-spacing:59.532876px;}
.ls69{letter-spacing:250.704000px;}
.ls6a{letter-spacing:268.111224px;}
.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;}
}
.ws50{word-spacing:-62.400000px;}
.ws4f{word-spacing:-19.020000px;}
.ws8b{word-spacing:-17.580000px;}
.ws88{word-spacing:-17.160000px;}
.ws52{word-spacing:-16.680000px;}
.ws8a{word-spacing:-16.500000px;}
.ws89{word-spacing:-16.020000px;}
.ws51{word-spacing:-15.780000px;}
.ws4e{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.120000px;}
.ws4d{word-spacing:-15.060000px;}
.ws4b{word-spacing:-15.000000px;}
.wsa3{word-spacing:-14.976000px;}
.wsc9{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.700000px;}
.ws77{word-spacing:-14.516771px;}
.ws9c{word-spacing:-14.496000px;}
.ws78{word-spacing:-14.492084px;}
.wsa1{word-spacing:-14.160000px;}
.wsa4{word-spacing:-14.064000px;}
.ws9e{word-spacing:-13.872000px;}
.wsc8{word-spacing:-13.632000px;}
.ws4{word-spacing:-13.344000px;}
.wsa0{word-spacing:-13.152000px;}
.ws9f{word-spacing:-13.104000px;}
.ws9d{word-spacing:-12.624000px;}
.ws3{word-spacing:-12.510000px;}
.wsc7{word-spacing:-12.480000px;}
.wsa2{word-spacing:-12.432000px;}
.ws9b{word-spacing:-12.384000px;}
.ws65{word-spacing:-12.077488px;}
.ws6a{word-spacing:-12.014604px;}
.ws3e{word-spacing:-12.000000px;}
.wsc6{word-spacing:-11.904000px;}
.ws2{word-spacing:-10.210662px;}
.ws76{word-spacing:-9.199740px;}
.wsd{word-spacing:-8.745000px;}
.ws3f{word-spacing:-6.996000px;}
.ws98{word-spacing:-6.540000px;}
.ws4c{word-spacing:-5.247000px;}
.wsd5{word-spacing:-4.800000px;}
.ws20{word-spacing:-4.200000px;}
.wsb9{word-spacing:-3.744000px;}
.ws40{word-spacing:-3.480000px;}
.ws92{word-spacing:-3.300000px;}
.ws1c{word-spacing:-3.240000px;}
.ws62{word-spacing:-3.120000px;}
.wsa9{word-spacing:-3.024000px;}
.ws99{word-spacing:-3.000000px;}
.wsc4{word-spacing:-2.976000px;}
.ws6{word-spacing:-2.886000px;}
.wsc5{word-spacing:-2.784000px;}
.ws14{word-spacing:-2.760000px;}
.wsa8{word-spacing:-2.700000px;}
.ws13{word-spacing:-2.640000px;}
.wsaf{word-spacing:-2.496000px;}
.ws96{word-spacing:-2.460000px;}
.ws35{word-spacing:-2.400000px;}
.ws1a{word-spacing:-2.340000px;}
.wsbd{word-spacing:-2.256000px;}
.ws1b{word-spacing:-2.220000px;}
.ws8d{word-spacing:-2.160000px;}
.wsb4{word-spacing:-2.112000px;}
.wsb1{word-spacing:-2.064000px;}
.wsc3{word-spacing:-2.016000px;}
.ws26{word-spacing:-1.920000px;}
.wsd3{word-spacing:-1.872000px;}
.ws61{word-spacing:-1.800000px;}
.wsbf{word-spacing:-1.776000px;}
.ws16{word-spacing:-1.740000px;}
.ws41{word-spacing:-1.680000px;}
.wscc{word-spacing:-1.632000px;}
.ws9a{word-spacing:-1.620000px;}
.wsd0{word-spacing:-1.584000px;}
.ws3a{word-spacing:-1.560000px;}
.wscf{word-spacing:-1.536000px;}
.ws83{word-spacing:-1.500000px;}
.ws39{word-spacing:-1.440000px;}
.wsbb{word-spacing:-1.344000px;}
.ws5b{word-spacing:-1.320000px;}
.ws11{word-spacing:-1.260000px;}
.wsae{word-spacing:-1.248000px;}
.ws12{word-spacing:-1.200000px;}
.ws60{word-spacing:-1.140000px;}
.wsb7{word-spacing:-1.104000px;}
.wsab{word-spacing:-1.056000px;}
.ws21{word-spacing:-1.020000px;}
.ws93{word-spacing:-0.960000px;}
.ws25{word-spacing:-0.900000px;}
.wsaa{word-spacing:-0.864000px;}
.ws29{word-spacing:-0.840000px;}
.wsb8{word-spacing:-0.816000px;}
.ws6b{word-spacing:-0.780000px;}
.wsca{word-spacing:-0.768000px;}
.ws22{word-spacing:-0.720000px;}
.wsb6{word-spacing:-0.672000px;}
.ws85{word-spacing:-0.660000px;}
.wsb3{word-spacing:-0.624000px;}
.ws33{word-spacing:-0.600000px;}
.wsb0{word-spacing:-0.576000px;}
.ws63{word-spacing:-0.540000px;}
.wsd1{word-spacing:-0.528000px;}
.ws1e{word-spacing:-0.480000px;}
.wsbe{word-spacing:-0.432000px;}
.ws24{word-spacing:-0.420000px;}
.ws57{word-spacing:-0.419760px;}
.ws4a{word-spacing:-0.384000px;}
.ws10{word-spacing:-0.360000px;}
.wsba{word-spacing:-0.336000px;}
.ws38{word-spacing:-0.300000px;}
.wsd4{word-spacing:-0.288000px;}
.ws17{word-spacing:-0.240000px;}
.ws86{word-spacing:-0.192000px;}
.ws37{word-spacing:-0.180000px;}
.ws74{word-spacing:-0.129913px;}
.ws31{word-spacing:-0.120000px;}
.ws47{word-spacing:-0.096000px;}
.ws70{word-spacing:-0.086888px;}
.ws75{word-spacing:-0.086436px;}
.ws79{word-spacing:-0.074407px;}
.ws2c{word-spacing:-0.065994px;}
.ws44{word-spacing:-0.060000px;}
.wsb2{word-spacing:-0.048000px;}
.ws3c{word-spacing:-0.045312px;}
.ws67{word-spacing:-0.043444px;}
.ws5{word-spacing:0.000000px;}
.wsad{word-spacing:0.048000px;}
.ws7{word-spacing:0.060000px;}
.wscb{word-spacing:0.096000px;}
.wsf{word-spacing:0.120000px;}
.ws73{word-spacing:0.151695px;}
.wsd6{word-spacing:0.192000px;}
.ws5d{word-spacing:0.240000px;}
.ws1f{word-spacing:0.300000px;}
.ws7f{word-spacing:0.360000px;}
.ws64{word-spacing:0.420000px;}
.wsd7{word-spacing:0.480000px;}
.ws90{word-spacing:0.540000px;}
.ws8e{word-spacing:0.600000px;}
.ws6e{word-spacing:0.768000px;}
.ws28{word-spacing:0.780000px;}
.wsc0{word-spacing:0.816000px;}
.ws55{word-spacing:0.900000px;}
.wsce{word-spacing:0.912000px;}
.ws49{word-spacing:0.960000px;}
.ws18{word-spacing:1.020000px;}
.ws72{word-spacing:1.104000px;}
.ws1d{word-spacing:1.140000px;}
.wsc2{word-spacing:1.152000px;}
.ws82{word-spacing:1.320000px;}
.ws6f{word-spacing:1.392000px;}
.ws94{word-spacing:1.500000px;}
.ws45{word-spacing:1.560000px;}
.ws23{word-spacing:1.800000px;}
.ws97{word-spacing:1.980000px;}
.ws42{word-spacing:2.040000px;}
.wscd{word-spacing:2.064000px;}
.wsc1{word-spacing:2.112000px;}
.ws27{word-spacing:2.220000px;}
.ws32{word-spacing:2.280000px;}
.ws5c{word-spacing:2.340000px;}
.ws19{word-spacing:2.400000px;}
.wsbc{word-spacing:2.544000px;}
.ws5e{word-spacing:2.580000px;}
.ws48{word-spacing:2.640000px;}
.wsd2{word-spacing:2.784000px;}
.ws43{word-spacing:2.820000px;}
.ws54{word-spacing:2.880000px;}
.wsb5{word-spacing:2.928000px;}
.ws91{word-spacing:2.940000px;}
.ws6d{word-spacing:3.168000px;}
.ws59{word-spacing:3.180000px;}
.ws8c{word-spacing:3.240000px;}
.ws2a{word-spacing:3.300000px;}
.ws80{word-spacing:3.420000px;}
.ws87{word-spacing:3.480000px;}
.ws6c{word-spacing:3.600000px;}
.ws84{word-spacing:3.660000px;}
.ws9{word-spacing:3.720000px;}
.wse{word-spacing:3.840000px;}
.ws81{word-spacing:3.900000px;}
.ws71{word-spacing:3.936000px;}
.ws15{word-spacing:3.960000px;}
.ws46{word-spacing:3.984000px;}
.ws3b{word-spacing:4.080000px;}
.ws95{word-spacing:4.140000px;}
.ws36{word-spacing:4.260000px;}
.wsac{word-spacing:4.368000px;}
.ws8f{word-spacing:4.560000px;}
.wsd9{word-spacing:4.620000px;}
.ws58{word-spacing:4.680000px;}
.wsa7{word-spacing:4.740000px;}
.ws30{word-spacing:4.800000px;}
.ws34{word-spacing:4.860000px;}
.ws8{word-spacing:4.920000px;}
.wsa{word-spacing:4.980000px;}
.wsa6{word-spacing:5.460000px;}
.wsa5{word-spacing:5.520000px;}
.wsd8{word-spacing:8.700000px;}
.ws2f{word-spacing:13.692672px;}
.ws2d{word-spacing:18.082356px;}
.ws2e{word-spacing:19.243008px;}
.ws2b{word-spacing:20.416968px;}
.ws0{word-spacing:49.320642px;}
.ws1{word-spacing:49.322028px;}
.ws7a{word-spacing:73.242369px;}
.ws68{word-spacing:155.001384px;}
.ws66{word-spacing:155.964678px;}
.ws7b{word-spacing:195.888000px;}
.ws69{word-spacing:227.744760px;}
.ws7d{word-spacing:237.168000px;}
.ws7e{word-spacing:271.152000px;}
.ws7c{word-spacing:317.040000px;}
.ws56{word-spacing:482.580000px;}
.ws53{word-spacing:644.520000px;}
.ws3d{word-spacing:683.900732px;}
.ws5a{word-spacing:724.200000px;}
.ws5f{word-spacing:1018.800000px;}
._d{margin-left:-2898.096000px;}
._e{margin-left:-2874.288000px;}
._f{margin-left:-501.875712px;}
._26{margin-left:-92.686784px;}
._1e{margin-left:-89.904570px;}
._13{margin-left:-82.653530px;}
._2c{margin-left:-74.820856px;}
._22{margin-left:-73.066425px;}
._27{margin-left:-69.932937px;}
._18{margin-left:-67.033966px;}
._25{margin-left:-63.859005px;}
._1d{margin-left:-61.942125px;}
._21{margin-left:-59.161050px;}
._28{margin-left:-57.968338px;}
._12{margin-left:-56.667409px;}
._24{margin-left:-54.316564px;}
._1a{margin-left:-52.344137px;}
._1b{margin-left:-50.438178px;}
._2b{margin-left:-49.262661px;}
._20{margin-left:-47.528906px;}
._23{margin-left:-45.664583px;}
._16{margin-left:-43.790566px;}
._17{margin-left:-41.326765px;}
._19{margin-left:-39.048912px;}
._2a{margin-left:-34.166840px;}
._15{margin-left:-31.099669px;}
._1f{margin-left:-29.985045px;}
._14{margin-left:-27.520186px;}
._3{margin-left:-9.368400px;}
._4{margin-left:-7.008000px;}
._1{margin-left:-5.376000px;}
._5{margin-left:-3.450000px;}
._0{margin-left:-2.310000px;}
._2{margin-left:-1.012800px;}
._6{width:1.050600px;}
._9{width:2.880000px;}
._7{width:4.320000px;}
._8{width:5.760000px;}
._a{width:6.840000px;}
._b{width:8.280000px;}
._c{width:10.080000px;}
._3b{width:11.520000px;}
._29{width:73.607278px;}
._38{width:115.002000px;}
._10{width:142.246800px;}
._11{width:155.047792px;}
._2f{width:167.520000px;}
._2e{width:186.716808px;}
._2d{width:190.547208px;}
._3a{width:199.968000px;}
._1c{width:227.947020px;}
._39{width:232.608000px;}
._33{width:241.152000px;}
._32{width:249.168000px;}
._34{width:258.000000px;}
._37{width:283.152000px;}
._35{width:291.168000px;}
._31{width:295.152000px;}
._36{width:333.168000px;}
._30{width:348.624000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs16{font-size:20.988000px;}
.fs5{font-size:26.235000px;}
.fs15{font-size:27.984000px;}
.fs13{font-size:31.700400px;}
.fsa{font-size:34.980000px;}
.fs4{font-size:36.729000px;}
.fs7{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs1b{font-size:43.218000px;}
.fs1c{font-size:43.304400px;}
.fs17{font-size:43.444200px;}
.fs6{font-size:45.000000px;}
.fs12{font-size:45.312000px;}
.fs18{font-size:46.407600px;}
.fs19{font-size:46.486800px;}
.fs10{font-size:46.530600px;}
.fs9{font-size:48.000000px;}
.fsf{font-size:48.384000px;}
.fs1a{font-size:50.565000px;}
.fs1d{font-size:52.129800px;}
.fs1e{font-size:52.218600px;}
.fs8{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fsc{font-size:65.994000px;}
.fsd{font-size:66.816000px;}
.fs14{font-size:67.968000px;}
.fs11{font-size:69.795600px;}
.fs1f{font-size:74.407200px;}
.fsb{font-size:77.337000px;}
.fs1{font-size:78.000000px;}
.fse{font-size:86.400000px;}
.fs2{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y2f{bottom:47.777250px;}
.y176{bottom:77.121900px;}
.y1b7{bottom:80.263500px;}
.yc4{bottom:81.904200px;}
.y86{bottom:82.940550px;}
.yfc{bottom:83.566650px;}
.y147{bottom:83.635350px;}
.y65{bottom:83.770350px;}
.ya6{bottom:83.832600px;}
.y84{bottom:83.912100px;}
.y21{bottom:88.029450px;}
.y175{bottom:92.121900px;}
.y12f{bottom:93.119250px;}
.y1b6{bottom:95.263500px;}
.yfb{bottom:99.310650px;}
.ya5{bottom:99.576600px;}
.yc3{bottom:99.904200px;}
.y146{bottom:101.635350px;}
.y64{bottom:101.770350px;}
.y83{bottom:101.912100px;}
.y20{bottom:103.023000px;}
.y174{bottom:107.121900px;}
.y12e{bottom:109.367250px;}
.y1b5{bottom:110.263500px;}
.ya4{bottom:115.320600px;}
.yc2{bottom:117.904200px;}
.y145{bottom:119.635350px;}
.y63{bottom:119.770350px;}
.y82{bottom:119.912100px;}
.y173{bottom:122.121900px;}
.y100{bottom:122.775000px;}
.y1b4{bottom:125.263500px;}
.y12d{bottom:125.615250px;}
.yed{bottom:125.796450px;}
.y104{bottom:127.534950px;}
.ya3{bottom:131.064600px;}
.yc1{bottom:135.904200px;}
.y172{bottom:137.121900px;}
.y144{bottom:137.635350px;}
.y62{bottom:137.770350px;}
.y81{bottom:137.912100px;}
.y1b3{bottom:140.263500px;}
.y12c{bottom:141.863250px;}
.y102{bottom:144.358200px;}
.ya2{bottom:146.814600px;}
.y171{bottom:152.121900px;}
.yc0{bottom:153.904200px;}
.y1b2{bottom:155.263500px;}
.y143{bottom:155.635350px;}
.y61{bottom:155.770350px;}
.y80{bottom:155.912100px;}
.yfd{bottom:159.363450px;}
.ya1{bottom:162.558600px;}
.y2a{bottom:163.567800px;}
.y170{bottom:167.121900px;}
.y1b1{bottom:170.263500px;}
.ybf{bottom:171.904200px;}
.y12b{bottom:173.375250px;}
.y142{bottom:173.635350px;}
.y60{bottom:173.770350px;}
.y7f{bottom:173.912100px;}
.y29{bottom:181.567800px;}
.y16f{bottom:182.121900px;}
.y1b0{bottom:185.263500px;}
.ybe{bottom:189.904200px;}
.y141{bottom:191.635350px;}
.y5f{bottom:191.770350px;}
.y7e{bottom:191.912100px;}
.y91{bottom:196.678800px;}
.y16e{bottom:197.121900px;}
.y28{bottom:199.567800px;}
.y1af{bottom:200.263500px;}
.yf9{bottom:204.751650px;}
.ybd{bottom:207.904200px;}
.y12a{bottom:208.270350px;}
.y140{bottom:209.635350px;}
.y5e{bottom:209.770350px;}
.y7d{bottom:209.912100px;}
.y16d{bottom:212.121900px;}
.y1ae{bottom:215.263500px;}
.y27{bottom:217.567800px;}
.y127{bottom:220.296750px;}
.y103{bottom:223.273950px;}
.ybc{bottom:225.904200px;}
.y16c{bottom:227.121900px;}
.y9b{bottom:227.190000px;}
.y13f{bottom:227.635350px;}
.y5d{bottom:227.770350px;}
.y7c{bottom:227.912100px;}
.y1ad{bottom:230.263500px;}
.yfe{bottom:232.884960px;}
.y26{bottom:235.567800px;}
.y16b{bottom:242.121900px;}
.ybb{bottom:243.904200px;}
.y1ac{bottom:245.263500px;}
.y13e{bottom:245.635350px;}
.y5c{bottom:245.770350px;}
.y7b{bottom:245.912100px;}
.y25{bottom:253.567800px;}
.y16a{bottom:257.121900px;}
.y101{bottom:257.153850px;}
.y105{bottom:258.126150px;}
.y1ab{bottom:260.263500px;}
.yba{bottom:261.904200px;}
.y13d{bottom:263.635350px;}
.y5b{bottom:263.770350px;}
.y7a{bottom:263.912100px;}
.yeb{bottom:263.993850px;}
.y9a{bottom:265.704000px;}
.y8c{bottom:269.012700px;}
.y24{bottom:271.567800px;}
.y169{bottom:272.121900px;}
.y1aa{bottom:275.263500px;}
.y10a{bottom:276.257250px;}
.y115{bottom:278.239950px;}
.yb9{bottom:279.904200px;}
.yf7{bottom:281.152050px;}
.y112{bottom:281.635350px;}
.y5a{bottom:281.770350px;}
.y79{bottom:281.912100px;}
.y168{bottom:287.121900px;}
.y23{bottom:289.567800px;}
.y1a9{bottom:290.263500px;}
.y114{bottom:293.983950px;}
.y109{bottom:297.299250px;}
.yb8{bottom:297.904200px;}
.y13c{bottom:299.230350px;}
.y111{bottom:299.635350px;}
.y59{bottom:299.770350px;}
.y78{bottom:299.912100px;}
.y167{bottom:302.121900px;}
.y1a8{bottom:305.263500px;}
.yff{bottom:306.406470px;}
.y2c{bottom:307.567800px;}
.y89{bottom:307.895725px;}
.y113{bottom:309.727950px;}
.yb7{bottom:315.904200px;}
.y166{bottom:317.121900px;}
.y110{bottom:317.635350px;}
.y58{bottom:317.770350px;}
.y77{bottom:317.920350px;}
.y108{bottom:318.343050px;}
.y1a7{bottom:320.263500px;}
.y22{bottom:325.162800px;}
.y2b{bottom:325.567800px;}
.y88{bottom:326.324550px;}
.y165{bottom:332.121900px;}
.y11b{bottom:332.769000px;}
.yb6{bottom:333.904200px;}
.y8b{bottom:334.389300px;}
.y1a6{bottom:335.263500px;}
.y10f{bottom:335.635350px;}
.y57{bottom:335.770350px;}
.y76{bottom:335.920350px;}
.y128{bottom:337.673250px;}
.y107{bottom:338.826600px;}
.y164{bottom:347.121900px;}
.y1a5{bottom:350.263500px;}
.yb5{bottom:351.904200px;}
.y94{bottom:352.294438px;}
.y126{bottom:353.096717px;}
.y10e{bottom:353.635350px;}
.y56{bottom:353.770350px;}
.y75{bottom:353.920350px;}
.y106{bottom:359.850450px;}
.y163{bottom:362.121900px;}
.y1a4{bottom:365.263500px;}
.y121{bottom:368.592300px;}
.yb4{bottom:369.904200px;}
.y10d{bottom:371.635350px;}
.y55{bottom:371.770350px;}
.y74{bottom:371.920350px;}
.y162{bottom:377.121900px;}
.y1a3{bottom:380.263500px;}
.yb3{bottom:387.904200px;}
.ycf{bottom:389.365350px;}
.y10c{bottom:389.635350px;}
.y54{bottom:389.770350px;}
.y73{bottom:389.920350px;}
.y161{bottom:392.121900px;}
.y90{bottom:393.942600px;}
.y1a2{bottom:395.263500px;}
.y1f{bottom:401.014200px;}
.yb2{bottom:405.904200px;}
.y160{bottom:407.121900px;}
.yce{bottom:407.365350px;}
.y13b{bottom:407.635350px;}
.y53{bottom:407.770350px;}
.y72{bottom:407.920350px;}
.y1a1{bottom:410.263500px;}
.y15f{bottom:422.121900px;}
.yb1{bottom:423.904200px;}
.ye4{bottom:424.220400px;}
.y10b{bottom:425.230350px;}
.y1a0{bottom:425.263500px;}
.y13a{bottom:425.635350px;}
.y52{bottom:425.770350px;}
.y71{bottom:425.920350px;}
.y1e{bottom:428.359200px;}
.y122{bottom:431.030768px;}
.y15e{bottom:437.121900px;}
.ye3{bottom:439.964400px;}
.y19f{bottom:440.263500px;}
.yb0{bottom:441.904200px;}
.ycd{bottom:443.230350px;}
.y139{bottom:443.635350px;}
.y51{bottom:443.770350px;}
.y70{bottom:443.920350px;}
.y1d{bottom:446.359200px;}
.y9e{bottom:449.098350px;}
.ya0{bottom:449.105268px;}
.y15d{bottom:452.121900px;}
.y19e{bottom:455.263500px;}
.ye2{bottom:455.708400px;}
.y138{bottom:461.635350px;}
.y50{bottom:461.770350px;}
.y6f{bottom:461.920350px;}
.y1c{bottom:464.359200px;}
.y15c{bottom:467.121900px;}
.y19d{bottom:470.263500px;}
.ye1{bottom:471.452400px;}
.y8a{bottom:478.101150px;}
.yaf{bottom:478.525500px;}
.y11d{bottom:478.694550px;}
.y137{bottom:479.635350px;}
.y4f{bottom:479.770350px;}
.y6e{bottom:479.920350px;}
.y15b{bottom:482.121900px;}
.y1b{bottom:482.359200px;}
.y19c{bottom:485.263500px;}
.ye0{bottom:487.196400px;}
.yae{bottom:487.840350px;}
.y123{bottom:493.495301px;}
.y136{bottom:497.635350px;}
.y4e{bottom:497.770350px;}
.y6d{bottom:497.920350px;}
.y19b{bottom:500.263500px;}
.y1a{bottom:500.359200px;}
.yea{bottom:509.901000px;}
.yf6{bottom:510.373500px;}
.yee{bottom:513.989550px;}
.yfa{bottom:514.740900px;}
.y15a{bottom:515.232600px;}
.y19a{bottom:515.263500px;}
.y135{bottom:515.635350px;}
.y4d{bottom:515.770350px;}
.y6c{bottom:515.920350px;}
.y19{bottom:518.359200px;}
.y9d{bottom:520.110750px;}
.yec{bottom:530.172600px;}
.y199{bottom:530.263500px;}
.yf8{bottom:530.806950px;}
.y134{bottom:533.635350px;}
.y9c{bottom:533.704350px;}
.y4c{bottom:533.770350px;}
.y6b{bottom:533.920350px;}
.y18{bottom:536.359200px;}
.y97{bottom:537.197250px;}
.ye5{bottom:543.097200px;}
.yf1{bottom:544.613400px;}
.y198{bottom:545.263500px;}
.y93{bottom:547.547629px;}
.y133{bottom:551.635350px;}
.y4b{bottom:551.770350px;}
.y6a{bottom:551.920350px;}
.y11c{bottom:552.488400px;}
.y17{bottom:554.359200px;}
.y124{bottom:555.959834px;}
.y197{bottom:560.263500px;}
.y132{bottom:569.635350px;}
.y4a{bottom:569.770350px;}
.y159{bottom:569.772600px;}
.y69{bottom:569.920350px;}
.y16{bottom:572.359200px;}
.y196{bottom:575.263500px;}
.y158{bottom:587.367600px;}
.y49{bottom:587.770350px;}
.ye6{bottom:589.256663px;}
.y195{bottom:590.263500px;}
.y15{bottom:590.359200px;}
.y8f{bottom:591.936300px;}
.yf2{bottom:594.014290px;}
.y129{bottom:597.477000px;}
.y95{bottom:600.256350px;}
.y131{bottom:605.230350px;}
.y194{bottom:605.263500px;}
.y68{bottom:605.515350px;}
.y48{bottom:605.770350px;}
.y14{bottom:608.359200px;}
.y125{bottom:618.424366px;}
.y193{bottom:620.263500px;}
.y87{bottom:621.236850px;}
.y47{bottom:623.770350px;}
.y157{bottom:623.772600px;}
.y13{bottom:626.359200px;}
.y192{bottom:635.263500px;}
.y116{bottom:635.302650px;}
.ye7{bottom:635.416125px;}
.y156{bottom:641.367600px;}
.y46{bottom:641.770350px;}
.yf3{bottom:643.391977px;}
.y12{bottom:644.359200px;}
.y191{bottom:650.263500px;}
.y99{bottom:657.275100px;}
.y45{bottom:659.770350px;}
.y11{bottom:662.359200px;}
.y190{bottom:665.263500px;}
.y44{bottom:677.770350px;}
.y155{bottom:677.772600px;}
.y18f{bottom:680.263500px;}
.ye8{bottom:681.575587px;}
.y117{bottom:685.282096px;}
.y96{bottom:688.236300px;}
.yf4{bottom:692.769663px;}
.y1d0{bottom:695.263500px;}
.y18e{bottom:695.265900px;}
.y43{bottom:695.770350px;}
.y154{bottom:695.772600px;}
.y8d{bottom:703.082400px;}
.y10{bottom:707.517300px;}
.y1cf{bottom:710.263500px;}
.y18d{bottom:710.265900px;}
.y153{bottom:713.367600px;}
.y42{bottom:713.770350px;}
.yf{bottom:719.968050px;}
.y1ce{bottom:725.263500px;}
.y18c{bottom:725.265900px;}
.yf0{bottom:726.576900px;}
.ye9{bottom:727.735050px;}
.y98{bottom:731.237550px;}
.y41{bottom:731.770350px;}
.y152{bottom:731.772600px;}
.y118{bottom:735.274574px;}
.y1cd{bottom:740.263500px;}
.y18b{bottom:740.265900px;}
.yf5{bottom:742.147349px;}
.y9f{bottom:745.547700px;}
.y92{bottom:749.466300px;}
.y40{bottom:749.770350px;}
.y151{bottom:749.772600px;}
.yef{bottom:753.277050px;}
.y1cc{bottom:755.263500px;}
.y18a{bottom:755.265900px;}
.ye{bottom:757.108950px;}
.y11f{bottom:757.355850px;}
.y3f{bottom:767.770350px;}
.y150{bottom:767.772600px;}
.y1cb{bottom:770.263500px;}
.y189{bottom:770.265900px;}
.yd{bottom:770.608950px;}
.y11e{bottom:778.593900px;}
.yc{bottom:784.108950px;}
.y1ca{bottom:785.263500px;}
.y188{bottom:785.265900px;}
.y119{bottom:785.267052px;}
.y3e{bottom:785.770350px;}
.y14f{bottom:785.772600px;}
.yb{bottom:797.608950px;}
.y1c9{bottom:800.263500px;}
.y187{bottom:800.265900px;}
.y3d{bottom:803.770350px;}
.y14e{bottom:803.772600px;}
.ya{bottom:805.683600px;}
.y1c8{bottom:815.263500px;}
.y186{bottom:815.265900px;}
.y9{bottom:819.183600px;}
.y14d{bottom:821.367600px;}
.y3c{bottom:821.770350px;}
.yd3{bottom:821.914350px;}
.y1c7{bottom:830.263500px;}
.y185{bottom:830.265900px;}
.y11a{bottom:835.246498px;}
.y8{bottom:838.108950px;}
.y3b{bottom:839.770350px;}
.ydf{bottom:839.779350px;}
.yd2{bottom:839.914350px;}
.y1c6{bottom:845.263500px;}
.y184{bottom:845.265900px;}
.y3a{bottom:857.770350px;}
.y14c{bottom:857.772600px;}
.yde{bottom:857.779350px;}
.y1c5{bottom:860.263500px;}
.y183{bottom:860.265900px;}
.y120{bottom:864.028500px;}
.y7{bottom:866.836200px;}
.y1c4{bottom:875.263500px;}
.y182{bottom:875.265900px;}
.yd1{bottom:875.509350px;}
.y39{bottom:875.770350px;}
.y14b{bottom:875.772600px;}
.ydd{bottom:875.779350px;}
.y6{bottom:887.830950px;}
.y1c3{bottom:890.263500px;}
.y181{bottom:890.265900px;}
.y38{bottom:893.770350px;}
.y14a{bottom:893.772600px;}
.ydc{bottom:893.779350px;}
.y1c2{bottom:905.263500px;}
.y180{bottom:905.265900px;}
.ycc{bottom:908.849310px;}
.ycb{bottom:911.764200px;}
.y37{bottom:911.770350px;}
.yad{bottom:911.772600px;}
.ydb{bottom:911.779350px;}
.y1c1{bottom:920.263500px;}
.y17f{bottom:920.265900px;}
.y36{bottom:929.770350px;}
.y149{bottom:929.772600px;}
.yda{bottom:929.779350px;}
.y5{bottom:934.036050px;}
.y1c0{bottom:935.263500px;}
.y17e{bottom:935.265900px;}
.y67{bottom:947.365350px;}
.yca{bottom:947.764200px;}
.y35{bottom:947.770350px;}
.yac{bottom:947.772600px;}
.yd9{bottom:947.779350px;}
.y1bf{bottom:950.263500px;}
.y17d{bottom:950.265900px;}
.y1be{bottom:965.263500px;}
.y17c{bottom:965.265900px;}
.yc9{bottom:965.764200px;}
.y34{bottom:965.770350px;}
.yab{bottom:965.772600px;}
.yd8{bottom:965.779350px;}
.y4{bottom:970.496850px;}
.y1bd{bottom:980.263500px;}
.y17b{bottom:980.265900px;}
.y66{bottom:983.230350px;}
.yc8{bottom:983.764200px;}
.y33{bottom:983.770350px;}
.yaa{bottom:983.772600px;}
.yd7{bottom:983.779350px;}
.y1bc{bottom:995.263500px;}
.y17a{bottom:995.265900px;}
.yc7{bottom:1001.764200px;}
.y32{bottom:1001.770350px;}
.ya9{bottom:1001.772600px;}
.yd6{bottom:1001.779350px;}
.y3{bottom:1006.926000px;}
.y1bb{bottom:1010.263500px;}
.y179{bottom:1010.265900px;}
.yd0{bottom:1019.367600px;}
.yc6{bottom:1019.764200px;}
.y31{bottom:1019.770350px;}
.y148{bottom:1019.772600px;}
.yd5{bottom:1019.779350px;}
.y1ba{bottom:1025.263500px;}
.y178{bottom:1025.265900px;}
.ya8{bottom:1037.367600px;}
.yc5{bottom:1037.764200px;}
.y30{bottom:1037.770350px;}
.yd4{bottom:1037.779350px;}
.y1b9{bottom:1040.263500px;}
.y177{bottom:1040.265900px;}
.y2{bottom:1069.300350px;}
.y8e{bottom:1132.418400px;}
.y85{bottom:1132.418700px;}
.y1b8{bottom:1132.423500px;}
.y130{bottom:1132.427250px;}
.ya7{bottom:1132.440600px;}
.y2e{bottom:1136.092500px;}
.y2d{bottom:1150.492500px;}
.h7{height:19.125417px;}
.h9{height:28.393066px;}
.h2{height:30.577148px;}
.h29{height:31.463886px;}
.h2a{height:31.526787px;}
.h22{height:31.628566px;}
.h8{height:32.805176px;}
.hd{height:32.815976px;}
.h1a{height:32.988375px;}
.h1b{height:33.032625px;}
.h13{height:33.351562px;}
.h24{height:33.786002px;}
.h26{height:33.843662px;}
.h18{height:33.875549px;}
.h10{height:34.968750px;}
.hf{height:34.992188px;}
.h27{height:36.812703px;}
.h2b{height:37.951920px;}
.h2d{height:38.016569px;}
.he{height:41.689453px;}
.h2f{height:42.054361px;}
.hc{height:43.681641px;}
.ha{height:43.710938px;}
.hb{height:43.740234px;}
.h15{height:48.045437px;}
.h16{height:48.643875px;}
.h1c{height:49.482562px;}
.h19{height:50.813105px;}
.h2e{height:51.736256px;}
.h11{height:52.534951px;}
.h1d{height:52.558951px;}
.h12{height:52.567951px;}
.h20{height:52.575471px;}
.h21{height:53.373613px;}
.h14{height:56.303451px;}
.h3{height:56.786133px;}
.h6{height:57.100316px;}
.h5{height:57.121316px;}
.h17{height:62.901563px;}
.h1f{height:78.936853px;}
.h1e{height:81.380756px;}
.h4{height:92.168262px;}
.h28{height:267.981000px;}
.h23{height:273.312000px;}
.h25{height:291.121500px;}
.h2c{height:563.688000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w3{width:338.031000px;}
.w2{width:338.032500px;}
.w4{width:388.588500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2c{left:9.317250px;}
.x35{left:10.844850px;}
.x2b{left:12.754950px;}
.x3b{left:15.815700px;}
.x31{left:18.180150px;}
.xb{left:76.535400px;}
.x23{left:88.526850px;}
.x27{left:90.253950px;}
.x9{left:96.094500px;}
.x1{left:97.795200px;}
.x3e{left:99.916050px;}
.x43{left:102.047400px;}
.x4{left:106.299150px;}
.xc{left:110.570400px;}
.x41{left:123.307350px;}
.x3{left:125.427900px;}
.x21{left:129.446250px;}
.x6{left:131.816400px;}
.x28{left:140.668500px;}
.x20{left:193.645350px;}
.x5{left:212.876400px;}
.x40{left:215.545350px;}
.x2d{left:218.077950px;}
.x39{left:220.134600px;}
.x33{left:241.533000px;}
.x15{left:259.230450px;}
.x24{left:263.216700px;}
.x34{left:274.505100px;}
.x37{left:302.482350px;}
.x2e{left:315.700200px;}
.x36{left:373.259250px;}
.x16{left:379.902450px;}
.x22{left:388.494750px;}
.x26{left:436.229400px;}
.x1f{left:439.902300px;}
.x25{left:443.062812px;}
.xa{left:455.041500px;}
.xd{left:457.160400px;}
.x30{left:475.267547px;}
.x12{left:478.345350px;}
.x7{left:480.476400px;}
.x2f{left:481.695000px;}
.xf{left:491.180400px;}
.x32{left:494.863200px;}
.x3a{left:501.422250px;}
.x42{left:503.887350px;}
.x13{left:512.371500px;}
.x8{left:514.496400px;}
.xe{left:525.350400px;}
.x14{left:526.494750px;}
.x29{left:532.074210px;}
.x1e{left:538.549200px;}
.x38{left:544.015350px;}
.x18{left:550.975200px;}
.x3f{left:570.725400px;}
.x1c{left:582.129750px;}
.x17{left:597.342750px;}
.x2a{left:612.926400px;}
.x3d{left:639.765450px;}
.x1b{left:641.199000px;}
.x1d{left:658.650900px;}
.x11{left:663.492300px;}
.x19{left:684.364350px;}
.x2{left:693.365400px;}
.x3c{left:720.457050px;}
.x44{left:721.717650px;}
.x10{left:728.391600px;}
.x1a{left:749.656350px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.v5{vertical-align:-16.096533pt;}
.v8{vertical-align:-10.405333pt;}
.v6{vertical-align:-9.400533pt;}
.v7{vertical-align:-8.339200pt;}
.v9{vertical-align:-5.653333pt;}
.v0{vertical-align:0.000000pt;}
.ve{vertical-align:1.440000pt;}
.v4{vertical-align:5.121067pt;}
.vc{vertical-align:10.385920pt;}
.vd{vertical-align:20.098133pt;}
.v3{vertical-align:25.093333pt;}
.v1{vertical-align:27.005867pt;}
.vb{vertical-align:33.108800pt;}
.va{vertical-align:35.307200pt;}
.ls12{letter-spacing:-0.693333pt;}
.ls5f{letter-spacing:-0.373333pt;}
.ls36{letter-spacing:-0.266667pt;}
.ls5e{letter-spacing:-0.213333pt;}
.ls97{letter-spacing:-0.170667pt;}
.ls66{letter-spacing:-0.134840pt;}
.ls13{letter-spacing:-0.112533pt;}
.ls37{letter-spacing:-0.106667pt;}
.ls9a{letter-spacing:-0.085333pt;}
.ls14{letter-spacing:-0.053333pt;}
.ls98{letter-spacing:-0.042667pt;}
.ls11{letter-spacing:0.000000pt;}
.ls43{letter-spacing:0.002133pt;}
.ls2{letter-spacing:0.003147pt;}
.ls53{letter-spacing:0.004960pt;}
.ls1{letter-spacing:0.005045pt;}
.ls41{letter-spacing:0.006933pt;}
.ls48{letter-spacing:0.007467pt;}
.ls3f{letter-spacing:0.008533pt;}
.ls46{letter-spacing:0.009600pt;}
.ls44{letter-spacing:0.009653pt;}
.ls50{letter-spacing:0.011733pt;}
.ls42{letter-spacing:0.012800pt;}
.ls47{letter-spacing:0.015467pt;}
.ls4f{letter-spacing:0.019200pt;}
.ls45{letter-spacing:0.030400pt;}
.ls51{letter-spacing:0.034667pt;}
.ls83{letter-spacing:0.042667pt;}
.ls4e{letter-spacing:0.043733pt;}
.ls29{letter-spacing:0.053333pt;}
.ls67{letter-spacing:0.076832pt;}
.ls65{letter-spacing:0.077234pt;}
.ls3e{letter-spacing:0.085333pt;}
.ls25{letter-spacing:0.106667pt;}
.ls64{letter-spacing:0.115478pt;}
.ls63{letter-spacing:0.134840pt;}
.ls1c{letter-spacing:0.160000pt;}
.ls68{letter-spacing:0.170667pt;}
.ls18{letter-spacing:0.213333pt;}
.ls8e{letter-spacing:0.256000pt;}
.ls7{letter-spacing:0.266667pt;}
.ls8b{letter-spacing:0.298667pt;}
.ls19{letter-spacing:0.320000pt;}
.ls40{letter-spacing:0.341333pt;}
.ls4d{letter-spacing:0.342187pt;}
.ls4a{letter-spacing:0.364587pt;}
.ls4c{letter-spacing:0.373120pt;}
.ls2f{letter-spacing:0.373333pt;}
.ls8f{letter-spacing:0.384000pt;}
.ls6b{letter-spacing:0.404213pt;}
.ls2a{letter-spacing:0.426667pt;}
.ls9f{letter-spacing:0.469333pt;}
.ls59{letter-spacing:0.480000pt;}
.ls81{letter-spacing:0.512000pt;}
.ls38{letter-spacing:0.533333pt;}
.ls85{letter-spacing:0.554667pt;}
.lsc{letter-spacing:0.586667pt;}
.ls86{letter-spacing:0.597333pt;}
.ls49{letter-spacing:0.629333pt;}
.ls4b{letter-spacing:0.630933pt;}
.ls2e{letter-spacing:0.640000pt;}
.ls57{letter-spacing:0.690293pt;}
.ls33{letter-spacing:0.693333pt;}
.ls89{letter-spacing:0.725333pt;}
.ls1d{letter-spacing:0.746667pt;}
.ls7c{letter-spacing:0.768000pt;}
.ls27{letter-spacing:0.800000pt;}
.ls1a{letter-spacing:0.853333pt;}
.ls55{letter-spacing:0.903093pt;}
.lse{letter-spacing:0.906667pt;}
.ls7e{letter-spacing:0.938667pt;}
.ls2c{letter-spacing:0.960000pt;}
.ls88{letter-spacing:0.981333pt;}
.ls6{letter-spacing:1.013333pt;}
.ls3a{letter-spacing:1.019200pt;}
.ls99{letter-spacing:1.024000pt;}
.ls1e{letter-spacing:1.066667pt;}
.ls7f{letter-spacing:1.109333pt;}
.ls4{letter-spacing:1.120000pt;}
.ls56{letter-spacing:1.166400pt;}
.ls32{letter-spacing:1.173333pt;}
.ls8c{letter-spacing:1.194667pt;}
.ls15{letter-spacing:1.226667pt;}
.ls17{letter-spacing:1.280000pt;}
.ls28{letter-spacing:1.333333pt;}
.ls9c{letter-spacing:1.365333pt;}
.ls35{letter-spacing:1.386667pt;}
.ls9e{letter-spacing:1.408000pt;}
.ls61{letter-spacing:1.440000pt;}
.ls91{letter-spacing:1.450667pt;}
.ls30{letter-spacing:1.493333pt;}
.ls54{letter-spacing:1.530667pt;}
.ls26{letter-spacing:1.546667pt;}
.ls90{letter-spacing:1.578667pt;}
.ls1b{letter-spacing:1.600000pt;}
.ls62{letter-spacing:1.621333pt;}
.ls16{letter-spacing:1.653333pt;}
.ls87{letter-spacing:1.664000pt;}
.ls31{letter-spacing:1.706667pt;}
.ls9d{letter-spacing:1.749333pt;}
.ls20{letter-spacing:1.760000pt;}
.ls93{letter-spacing:1.792000pt;}
.ls3{letter-spacing:1.813333pt;}
.ls82{letter-spacing:1.834667pt;}
.ls71{letter-spacing:1.866667pt;}
.ls84{letter-spacing:1.877333pt;}
.ls10{letter-spacing:1.920000pt;}
.ls8d{letter-spacing:1.962667pt;}
.ls75{letter-spacing:1.973333pt;}
.ls9b{letter-spacing:2.005333pt;}
.ls5d{letter-spacing:2.026667pt;}
.lsd{letter-spacing:2.080000pt;}
.ls34{letter-spacing:2.133333pt;}
.ls6f{letter-spacing:2.186667pt;}
.ls80{letter-spacing:2.218667pt;}
.ls3c{letter-spacing:2.240000pt;}
.lsf{letter-spacing:2.293333pt;}
.ls9{letter-spacing:2.346667pt;}
.ls79{letter-spacing:2.400000pt;}
.ls22{letter-spacing:2.453333pt;}
.ls96{letter-spacing:2.474667pt;}
.ls1f{letter-spacing:2.506667pt;}
.ls72{letter-spacing:2.560000pt;}
.ls70{letter-spacing:2.613333pt;}
.ls95{letter-spacing:2.645333pt;}
.ls6e{letter-spacing:2.666667pt;}
.ls7b{letter-spacing:2.688000pt;}
.ls23{letter-spacing:2.720000pt;}
.ls24{letter-spacing:2.773333pt;}
.ls21{letter-spacing:2.826667pt;}
.ls92{letter-spacing:2.858667pt;}
.ls5{letter-spacing:2.880000pt;}
.lsa0{letter-spacing:2.901333pt;}
.ls2d{letter-spacing:2.933333pt;}
.ls6c{letter-spacing:3.040000pt;}
.ls3d{letter-spacing:3.093333pt;}
.ls94{letter-spacing:3.114667pt;}
.lsa{letter-spacing:3.200000pt;}
.lsa2{letter-spacing:3.306667pt;}
.ls8a{letter-spacing:3.328000pt;}
.ls8{letter-spacing:3.466667pt;}
.ls5a{letter-spacing:3.573333pt;}
.ls2b{letter-spacing:3.733333pt;}
.ls5c{letter-spacing:3.840000pt;}
.lsa1{letter-spacing:4.266667pt;}
.ls7d{letter-spacing:4.309333pt;}
.lsb{letter-spacing:4.426667pt;}
.ls74{letter-spacing:4.533333pt;}
.ls78{letter-spacing:4.586667pt;}
.ls5b{letter-spacing:4.693333pt;}
.ls77{letter-spacing:4.746667pt;}
.ls39{letter-spacing:4.960000pt;}
.ls58{letter-spacing:5.066667pt;}
.ls73{letter-spacing:5.706667pt;}
.ls76{letter-spacing:5.760000pt;}
.ls6d{letter-spacing:6.293333pt;}
.ls7a{letter-spacing:6.773333pt;}
.ls60{letter-spacing:7.420267pt;}
.ls3b{letter-spacing:22.345600pt;}
.ls52{letter-spacing:26.193067pt;}
.ls0{letter-spacing:52.918112pt;}
.ls69{letter-spacing:222.848000pt;}
.ls6a{letter-spacing:238.321088pt;}
.ws50{word-spacing:-55.466667pt;}
.ws4f{word-spacing:-16.906667pt;}
.ws8b{word-spacing:-15.626667pt;}
.ws88{word-spacing:-15.253333pt;}
.ws52{word-spacing:-14.826667pt;}
.ws8a{word-spacing:-14.666667pt;}
.ws89{word-spacing:-14.240000pt;}
.ws51{word-spacing:-14.026667pt;}
.ws4e{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.440000pt;}
.ws4d{word-spacing:-13.386667pt;}
.ws4b{word-spacing:-13.333333pt;}
.wsa3{word-spacing:-13.312000pt;}
.wsc9{word-spacing:-13.280000pt;}
.wsb{word-spacing:-13.066667pt;}
.ws77{word-spacing:-12.903796pt;}
.ws9c{word-spacing:-12.885333pt;}
.ws78{word-spacing:-12.881853pt;}
.wsa1{word-spacing:-12.586667pt;}
.wsa4{word-spacing:-12.501333pt;}
.ws9e{word-spacing:-12.330667pt;}
.wsc8{word-spacing:-12.117333pt;}
.ws4{word-spacing:-11.861333pt;}
.wsa0{word-spacing:-11.690667pt;}
.ws9f{word-spacing:-11.648000pt;}
.ws9d{word-spacing:-11.221333pt;}
.ws3{word-spacing:-11.120000pt;}
.wsc7{word-spacing:-11.093333pt;}
.wsa2{word-spacing:-11.050667pt;}
.ws9b{word-spacing:-11.008000pt;}
.ws65{word-spacing:-10.735545pt;}
.ws6a{word-spacing:-10.679648pt;}
.ws3e{word-spacing:-10.666667pt;}
.wsc6{word-spacing:-10.581333pt;}
.ws2{word-spacing:-9.076144pt;}
.ws76{word-spacing:-8.177547pt;}
.wsd{word-spacing:-7.773333pt;}
.ws3f{word-spacing:-6.218667pt;}
.ws98{word-spacing:-5.813333pt;}
.ws4c{word-spacing:-4.664000pt;}
.wsd5{word-spacing:-4.266667pt;}
.ws20{word-spacing:-3.733333pt;}
.wsb9{word-spacing:-3.328000pt;}
.ws40{word-spacing:-3.093333pt;}
.ws92{word-spacing:-2.933333pt;}
.ws1c{word-spacing:-2.880000pt;}
.ws62{word-spacing:-2.773333pt;}
.wsa9{word-spacing:-2.688000pt;}
.ws99{word-spacing:-2.666667pt;}
.wsc4{word-spacing:-2.645333pt;}
.ws6{word-spacing:-2.565333pt;}
.wsc5{word-spacing:-2.474667pt;}
.ws14{word-spacing:-2.453333pt;}
.wsa8{word-spacing:-2.400000pt;}
.ws13{word-spacing:-2.346667pt;}
.wsaf{word-spacing:-2.218667pt;}
.ws96{word-spacing:-2.186667pt;}
.ws35{word-spacing:-2.133333pt;}
.ws1a{word-spacing:-2.080000pt;}
.wsbd{word-spacing:-2.005333pt;}
.ws1b{word-spacing:-1.973333pt;}
.ws8d{word-spacing:-1.920000pt;}
.wsb4{word-spacing:-1.877333pt;}
.wsb1{word-spacing:-1.834667pt;}
.wsc3{word-spacing:-1.792000pt;}
.ws26{word-spacing:-1.706667pt;}
.wsd3{word-spacing:-1.664000pt;}
.ws61{word-spacing:-1.600000pt;}
.wsbf{word-spacing:-1.578667pt;}
.ws16{word-spacing:-1.546667pt;}
.ws41{word-spacing:-1.493333pt;}
.wscc{word-spacing:-1.450667pt;}
.ws9a{word-spacing:-1.440000pt;}
.wsd0{word-spacing:-1.408000pt;}
.ws3a{word-spacing:-1.386667pt;}
.wscf{word-spacing:-1.365333pt;}
.ws83{word-spacing:-1.333333pt;}
.ws39{word-spacing:-1.280000pt;}
.wsbb{word-spacing:-1.194667pt;}
.ws5b{word-spacing:-1.173333pt;}
.ws11{word-spacing:-1.120000pt;}
.wsae{word-spacing:-1.109333pt;}
.ws12{word-spacing:-1.066667pt;}
.ws60{word-spacing:-1.013333pt;}
.wsb7{word-spacing:-0.981333pt;}
.wsab{word-spacing:-0.938667pt;}
.ws21{word-spacing:-0.906667pt;}
.ws93{word-spacing:-0.853333pt;}
.ws25{word-spacing:-0.800000pt;}
.wsaa{word-spacing:-0.768000pt;}
.ws29{word-spacing:-0.746667pt;}
.wsb8{word-spacing:-0.725333pt;}
.ws6b{word-spacing:-0.693333pt;}
.wsca{word-spacing:-0.682667pt;}
.ws22{word-spacing:-0.640000pt;}
.wsb6{word-spacing:-0.597333pt;}
.ws85{word-spacing:-0.586667pt;}
.wsb3{word-spacing:-0.554667pt;}
.ws33{word-spacing:-0.533333pt;}
.wsb0{word-spacing:-0.512000pt;}
.ws63{word-spacing:-0.480000pt;}
.wsd1{word-spacing:-0.469333pt;}
.ws1e{word-spacing:-0.426667pt;}
.wsbe{word-spacing:-0.384000pt;}
.ws24{word-spacing:-0.373333pt;}
.ws57{word-spacing:-0.373120pt;}
.ws4a{word-spacing:-0.341333pt;}
.ws10{word-spacing:-0.320000pt;}
.wsba{word-spacing:-0.298667pt;}
.ws38{word-spacing:-0.266667pt;}
.wsd4{word-spacing:-0.256000pt;}
.ws17{word-spacing:-0.213333pt;}
.ws86{word-spacing:-0.170667pt;}
.ws37{word-spacing:-0.160000pt;}
.ws74{word-spacing:-0.115478pt;}
.ws31{word-spacing:-0.106667pt;}
.ws47{word-spacing:-0.085333pt;}
.ws70{word-spacing:-0.077234pt;}
.ws75{word-spacing:-0.076832pt;}
.ws79{word-spacing:-0.066140pt;}
.ws2c{word-spacing:-0.058661pt;}
.ws44{word-spacing:-0.053333pt;}
.wsb2{word-spacing:-0.042667pt;}
.ws3c{word-spacing:-0.040277pt;}
.ws67{word-spacing:-0.038617pt;}
.ws5{word-spacing:0.000000pt;}
.wsad{word-spacing:0.042667pt;}
.ws7{word-spacing:0.053333pt;}
.wscb{word-spacing:0.085333pt;}
.wsf{word-spacing:0.106667pt;}
.ws73{word-spacing:0.134840pt;}
.wsd6{word-spacing:0.170667pt;}
.ws5d{word-spacing:0.213333pt;}
.ws1f{word-spacing:0.266667pt;}
.ws7f{word-spacing:0.320000pt;}
.ws64{word-spacing:0.373333pt;}
.wsd7{word-spacing:0.426667pt;}
.ws90{word-spacing:0.480000pt;}
.ws8e{word-spacing:0.533333pt;}
.ws6e{word-spacing:0.682667pt;}
.ws28{word-spacing:0.693333pt;}
.wsc0{word-spacing:0.725333pt;}
.ws55{word-spacing:0.800000pt;}
.wsce{word-spacing:0.810667pt;}
.ws49{word-spacing:0.853333pt;}
.ws18{word-spacing:0.906667pt;}
.ws72{word-spacing:0.981333pt;}
.ws1d{word-spacing:1.013333pt;}
.wsc2{word-spacing:1.024000pt;}
.ws82{word-spacing:1.173333pt;}
.ws6f{word-spacing:1.237333pt;}
.ws94{word-spacing:1.333333pt;}
.ws45{word-spacing:1.386667pt;}
.ws23{word-spacing:1.600000pt;}
.ws97{word-spacing:1.760000pt;}
.ws42{word-spacing:1.813333pt;}
.wscd{word-spacing:1.834667pt;}
.wsc1{word-spacing:1.877333pt;}
.ws27{word-spacing:1.973333pt;}
.ws32{word-spacing:2.026667pt;}
.ws5c{word-spacing:2.080000pt;}
.ws19{word-spacing:2.133333pt;}
.wsbc{word-spacing:2.261333pt;}
.ws5e{word-spacing:2.293333pt;}
.ws48{word-spacing:2.346667pt;}
.wsd2{word-spacing:2.474667pt;}
.ws43{word-spacing:2.506667pt;}
.ws54{word-spacing:2.560000pt;}
.wsb5{word-spacing:2.602667pt;}
.ws91{word-spacing:2.613333pt;}
.ws6d{word-spacing:2.816000pt;}
.ws59{word-spacing:2.826667pt;}
.ws8c{word-spacing:2.880000pt;}
.ws2a{word-spacing:2.933333pt;}
.ws80{word-spacing:3.040000pt;}
.ws87{word-spacing:3.093333pt;}
.ws6c{word-spacing:3.200000pt;}
.ws84{word-spacing:3.253333pt;}
.ws9{word-spacing:3.306667pt;}
.wse{word-spacing:3.413333pt;}
.ws81{word-spacing:3.466667pt;}
.ws71{word-spacing:3.498667pt;}
.ws15{word-spacing:3.520000pt;}
.ws46{word-spacing:3.541333pt;}
.ws3b{word-spacing:3.626667pt;}
.ws95{word-spacing:3.680000pt;}
.ws36{word-spacing:3.786667pt;}
.wsac{word-spacing:3.882667pt;}
.ws8f{word-spacing:4.053333pt;}
.wsd9{word-spacing:4.106667pt;}
.ws58{word-spacing:4.160000pt;}
.wsa7{word-spacing:4.213333pt;}
.ws30{word-spacing:4.266667pt;}
.ws34{word-spacing:4.320000pt;}
.ws8{word-spacing:4.373333pt;}
.wsa{word-spacing:4.426667pt;}
.wsa6{word-spacing:4.853333pt;}
.wsa5{word-spacing:4.906667pt;}
.wsd8{word-spacing:7.733333pt;}
.ws2f{word-spacing:12.171264pt;}
.ws2d{word-spacing:16.073205pt;}
.ws2e{word-spacing:17.104896pt;}
.ws2b{word-spacing:18.148416pt;}
.ws0{word-spacing:43.840571pt;}
.ws1{word-spacing:43.841803pt;}
.ws7a{word-spacing:65.104328pt;}
.ws68{word-spacing:137.779008pt;}
.ws66{word-spacing:138.635269pt;}
.ws7b{word-spacing:174.122667pt;}
.ws69{word-spacing:202.439787pt;}
.ws7d{word-spacing:210.816000pt;}
.ws7e{word-spacing:241.024000pt;}
.ws7c{word-spacing:281.813333pt;}
.ws56{word-spacing:428.960000pt;}
.ws53{word-spacing:572.906667pt;}
.ws3d{word-spacing:607.911762pt;}
.ws5a{word-spacing:643.733333pt;}
.ws5f{word-spacing:905.600000pt;}
._d{margin-left:-2576.085333pt;}
._e{margin-left:-2554.922667pt;}
._f{margin-left:-446.111744pt;}
._26{margin-left:-82.388253pt;}
._1e{margin-left:-79.915173pt;}
._13{margin-left:-73.469805pt;}
._2c{margin-left:-66.507428pt;}
._22{margin-left:-64.947933pt;}
._27{margin-left:-62.162611pt;}
._18{margin-left:-59.585747pt;}
._25{margin-left:-56.763560pt;}
._1d{margin-left:-55.059667pt;}
._21{margin-left:-52.587600pt;}
._28{margin-left:-51.527411pt;}
._12{margin-left:-50.371030pt;}
._24{margin-left:-48.281390pt;}
._1a{margin-left:-46.528122pt;}
._1b{margin-left:-44.833936pt;}
._2b{margin-left:-43.789032pt;}
._20{margin-left:-42.247916pt;}
._23{margin-left:-40.590741pt;}
._16{margin-left:-38.924947pt;}
._17{margin-left:-36.734902pt;}
._19{margin-left:-34.710144pt;}
._2a{margin-left:-30.370525pt;}
._15{margin-left:-27.644150pt;}
._1f{margin-left:-26.653373pt;}
._14{margin-left:-24.462387pt;}
._3{margin-left:-8.327467pt;}
._4{margin-left:-6.229333pt;}
._1{margin-left:-4.778667pt;}
._5{margin-left:-3.066667pt;}
._0{margin-left:-2.053333pt;}
._2{margin-left:-0.900267pt;}
._6{width:0.933867pt;}
._9{width:2.560000pt;}
._7{width:3.840000pt;}
._8{width:5.120000pt;}
._a{width:6.080000pt;}
._b{width:7.360000pt;}
._c{width:8.960000pt;}
._3b{width:10.240000pt;}
._29{width:65.428691pt;}
._38{width:102.224000pt;}
._10{width:126.441600pt;}
._11{width:137.820259pt;}
._2f{width:148.906667pt;}
._2e{width:165.970496pt;}
._2d{width:169.375296pt;}
._3a{width:177.749333pt;}
._1c{width:202.619573pt;}
._39{width:206.762667pt;}
._33{width:214.357333pt;}
._32{width:221.482667pt;}
._34{width:229.333333pt;}
._37{width:251.690667pt;}
._35{width:258.816000pt;}
._31{width:262.357333pt;}
._36{width:296.149333pt;}
._30{width:309.888000pt;}
.fs16{font-size:18.656000pt;}
.fs5{font-size:23.320000pt;}
.fs15{font-size:24.874667pt;}
.fs13{font-size:28.178133pt;}
.fsa{font-size:31.093333pt;}
.fs4{font-size:32.648000pt;}
.fs7{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs1b{font-size:38.416000pt;}
.fs1c{font-size:38.492800pt;}
.fs17{font-size:38.617067pt;}
.fs6{font-size:40.000000pt;}
.fs12{font-size:40.277333pt;}
.fs18{font-size:41.251200pt;}
.fs19{font-size:41.321600pt;}
.fs10{font-size:41.360533pt;}
.fs9{font-size:42.666667pt;}
.fsf{font-size:43.008000pt;}
.fs1a{font-size:44.946667pt;}
.fs1d{font-size:46.337600pt;}
.fs1e{font-size:46.416533pt;}
.fs8{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fsc{font-size:58.661333pt;}
.fsd{font-size:59.392000pt;}
.fs14{font-size:60.416000pt;}
.fs11{font-size:62.040533pt;}
.fs1f{font-size:66.139733pt;}
.fsb{font-size:68.744000pt;}
.fs1{font-size:69.333333pt;}
.fse{font-size:76.800000pt;}
.fs2{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y2f{bottom:42.468667pt;}
.y176{bottom:68.552800pt;}
.y1b7{bottom:71.345333pt;}
.yc4{bottom:72.803733pt;}
.y86{bottom:73.724933pt;}
.yfc{bottom:74.281467pt;}
.y147{bottom:74.342533pt;}
.y65{bottom:74.462533pt;}
.ya6{bottom:74.517867pt;}
.y84{bottom:74.588533pt;}
.y21{bottom:78.248400pt;}
.y175{bottom:81.886133pt;}
.y12f{bottom:82.772667pt;}
.y1b6{bottom:84.678667pt;}
.yfb{bottom:88.276133pt;}
.ya5{bottom:88.512533pt;}
.yc3{bottom:88.803733pt;}
.y146{bottom:90.342533pt;}
.y64{bottom:90.462533pt;}
.y83{bottom:90.588533pt;}
.y20{bottom:91.576000pt;}
.y174{bottom:95.219467pt;}
.y12e{bottom:97.215333pt;}
.y1b5{bottom:98.012000pt;}
.ya4{bottom:102.507200pt;}
.yc2{bottom:104.803733pt;}
.y145{bottom:106.342533pt;}
.y63{bottom:106.462533pt;}
.y82{bottom:106.588533pt;}
.y173{bottom:108.552800pt;}
.y100{bottom:109.133333pt;}
.y1b4{bottom:111.345333pt;}
.y12d{bottom:111.658000pt;}
.yed{bottom:111.819067pt;}
.y104{bottom:113.364400pt;}
.ya3{bottom:116.501867pt;}
.yc1{bottom:120.803733pt;}
.y172{bottom:121.886133pt;}
.y144{bottom:122.342533pt;}
.y62{bottom:122.462533pt;}
.y81{bottom:122.588533pt;}
.y1b3{bottom:124.678667pt;}
.y12c{bottom:126.100667pt;}
.y102{bottom:128.318400pt;}
.ya2{bottom:130.501867pt;}
.y171{bottom:135.219467pt;}
.yc0{bottom:136.803733pt;}
.y1b2{bottom:138.012000pt;}
.y143{bottom:138.342533pt;}
.y61{bottom:138.462533pt;}
.y80{bottom:138.588533pt;}
.yfd{bottom:141.656400pt;}
.ya1{bottom:144.496533pt;}
.y2a{bottom:145.393600pt;}
.y170{bottom:148.552800pt;}
.y1b1{bottom:151.345333pt;}
.ybf{bottom:152.803733pt;}
.y12b{bottom:154.111333pt;}
.y142{bottom:154.342533pt;}
.y60{bottom:154.462533pt;}
.y7f{bottom:154.588533pt;}
.y29{bottom:161.393600pt;}
.y16f{bottom:161.886133pt;}
.y1b0{bottom:164.678667pt;}
.ybe{bottom:168.803733pt;}
.y141{bottom:170.342533pt;}
.y5f{bottom:170.462533pt;}
.y7e{bottom:170.588533pt;}
.y91{bottom:174.825600pt;}
.y16e{bottom:175.219467pt;}
.y28{bottom:177.393600pt;}
.y1af{bottom:178.012000pt;}
.yf9{bottom:182.001467pt;}
.ybd{bottom:184.803733pt;}
.y12a{bottom:185.129200pt;}
.y140{bottom:186.342533pt;}
.y5e{bottom:186.462533pt;}
.y7d{bottom:186.588533pt;}
.y16d{bottom:188.552800pt;}
.y1ae{bottom:191.345333pt;}
.y27{bottom:193.393600pt;}
.y127{bottom:195.819333pt;}
.y103{bottom:198.465733pt;}
.ybc{bottom:200.803733pt;}
.y16c{bottom:201.886133pt;}
.y9b{bottom:201.946667pt;}
.y13f{bottom:202.342533pt;}
.y5d{bottom:202.462533pt;}
.y7c{bottom:202.588533pt;}
.y1ad{bottom:204.678667pt;}
.yfe{bottom:207.008853pt;}
.y26{bottom:209.393600pt;}
.y16b{bottom:215.219467pt;}
.ybb{bottom:216.803733pt;}
.y1ac{bottom:218.012000pt;}
.y13e{bottom:218.342533pt;}
.y5c{bottom:218.462533pt;}
.y7b{bottom:218.588533pt;}
.y25{bottom:225.393600pt;}
.y16a{bottom:228.552800pt;}
.y101{bottom:228.581200pt;}
.y105{bottom:229.445467pt;}
.y1ab{bottom:231.345333pt;}
.yba{bottom:232.803733pt;}
.y13d{bottom:234.342533pt;}
.y5b{bottom:234.462533pt;}
.y7a{bottom:234.588533pt;}
.yeb{bottom:234.661200pt;}
.y9a{bottom:236.181333pt;}
.y8c{bottom:239.122400pt;}
.y24{bottom:241.393600pt;}
.y169{bottom:241.886133pt;}
.y1aa{bottom:244.678667pt;}
.y10a{bottom:245.562000pt;}
.y115{bottom:247.324400pt;}
.yb9{bottom:248.803733pt;}
.yf7{bottom:249.912933pt;}
.y112{bottom:250.342533pt;}
.y5a{bottom:250.462533pt;}
.y79{bottom:250.588533pt;}
.y168{bottom:255.219467pt;}
.y23{bottom:257.393600pt;}
.y1a9{bottom:258.012000pt;}
.y114{bottom:261.319067pt;}
.y109{bottom:264.266000pt;}
.yb8{bottom:264.803733pt;}
.y13c{bottom:265.982533pt;}
.y111{bottom:266.342533pt;}
.y59{bottom:266.462533pt;}
.y78{bottom:266.588533pt;}
.y167{bottom:268.552800pt;}
.y1a8{bottom:271.345333pt;}
.yff{bottom:272.361307pt;}
.y2c{bottom:273.393600pt;}
.y89{bottom:273.685089pt;}
.y113{bottom:275.313733pt;}
.yb7{bottom:280.803733pt;}
.y166{bottom:281.886133pt;}
.y110{bottom:282.342533pt;}
.y58{bottom:282.462533pt;}
.y77{bottom:282.595867pt;}
.y108{bottom:282.971600pt;}
.y1a7{bottom:284.678667pt;}
.y22{bottom:289.033600pt;}
.y2b{bottom:289.393600pt;}
.y88{bottom:290.066267pt;}
.y165{bottom:295.219467pt;}
.y11b{bottom:295.794667pt;}
.yb6{bottom:296.803733pt;}
.y8b{bottom:297.234933pt;}
.y1a6{bottom:298.012000pt;}
.y10f{bottom:298.342533pt;}
.y57{bottom:298.462533pt;}
.y76{bottom:298.595867pt;}
.y128{bottom:300.154000pt;}
.y107{bottom:301.179200pt;}
.y164{bottom:308.552800pt;}
.y1a5{bottom:311.345333pt;}
.yb5{bottom:312.803733pt;}
.y94{bottom:313.150612pt;}
.y126{bottom:313.863748pt;}
.y10e{bottom:314.342533pt;}
.y56{bottom:314.462533pt;}
.y75{bottom:314.595867pt;}
.y106{bottom:319.867067pt;}
.y163{bottom:321.886133pt;}
.y1a4{bottom:324.678667pt;}
.y121{bottom:327.637600pt;}
.yb4{bottom:328.803733pt;}
.y10d{bottom:330.342533pt;}
.y55{bottom:330.462533pt;}
.y74{bottom:330.595867pt;}
.y162{bottom:335.219467pt;}
.y1a3{bottom:338.012000pt;}
.yb3{bottom:344.803733pt;}
.ycf{bottom:346.102533pt;}
.y10c{bottom:346.342533pt;}
.y54{bottom:346.462533pt;}
.y73{bottom:346.595867pt;}
.y161{bottom:348.552800pt;}
.y90{bottom:350.171200pt;}
.y1a2{bottom:351.345333pt;}
.y1f{bottom:356.457067pt;}
.yb2{bottom:360.803733pt;}
.y160{bottom:361.886133pt;}
.yce{bottom:362.102533pt;}
.y13b{bottom:362.342533pt;}
.y53{bottom:362.462533pt;}
.y72{bottom:362.595867pt;}
.y1a1{bottom:364.678667pt;}
.y15f{bottom:375.219467pt;}
.yb1{bottom:376.803733pt;}
.ye4{bottom:377.084800pt;}
.y10b{bottom:377.982533pt;}
.y1a0{bottom:378.012000pt;}
.y13a{bottom:378.342533pt;}
.y52{bottom:378.462533pt;}
.y71{bottom:378.595867pt;}
.y1e{bottom:380.763733pt;}
.y122{bottom:383.138460pt;}
.y15e{bottom:388.552800pt;}
.ye3{bottom:391.079467pt;}
.y19f{bottom:391.345333pt;}
.yb0{bottom:392.803733pt;}
.ycd{bottom:393.982533pt;}
.y139{bottom:394.342533pt;}
.y51{bottom:394.462533pt;}
.y70{bottom:394.595867pt;}
.y1d{bottom:396.763733pt;}
.y9e{bottom:399.198533pt;}
.ya0{bottom:399.204683pt;}
.y15d{bottom:401.886133pt;}
.y19e{bottom:404.678667pt;}
.ye2{bottom:405.074133pt;}
.y138{bottom:410.342533pt;}
.y50{bottom:410.462533pt;}
.y6f{bottom:410.595867pt;}
.y1c{bottom:412.763733pt;}
.y15c{bottom:415.219467pt;}
.y19d{bottom:418.012000pt;}
.ye1{bottom:419.068800pt;}
.y8a{bottom:424.978800pt;}
.yaf{bottom:425.356000pt;}
.y11d{bottom:425.506267pt;}
.y137{bottom:426.342533pt;}
.y4f{bottom:426.462533pt;}
.y6e{bottom:426.595867pt;}
.y15b{bottom:428.552800pt;}
.y1b{bottom:428.763733pt;}
.y19c{bottom:431.345333pt;}
.ye0{bottom:433.063467pt;}
.yae{bottom:433.635867pt;}
.y123{bottom:438.662490pt;}
.y136{bottom:442.342533pt;}
.y4e{bottom:442.462533pt;}
.y6d{bottom:442.595867pt;}
.y19b{bottom:444.678667pt;}
.y1a{bottom:444.763733pt;}
.yea{bottom:453.245333pt;}
.yf6{bottom:453.665333pt;}
.yee{bottom:456.879600pt;}
.yfa{bottom:457.547467pt;}
.y15a{bottom:457.984533pt;}
.y19a{bottom:458.012000pt;}
.y135{bottom:458.342533pt;}
.y4d{bottom:458.462533pt;}
.y6c{bottom:458.595867pt;}
.y19{bottom:460.763733pt;}
.y9d{bottom:462.320667pt;}
.yec{bottom:471.264533pt;}
.y199{bottom:471.345333pt;}
.yf8{bottom:471.828400pt;}
.y134{bottom:474.342533pt;}
.y9c{bottom:474.403867pt;}
.y4c{bottom:474.462533pt;}
.y6b{bottom:474.595867pt;}
.y18{bottom:476.763733pt;}
.y97{bottom:477.508667pt;}
.ye5{bottom:482.753067pt;}
.yf1{bottom:484.100800pt;}
.y198{bottom:484.678667pt;}
.y93{bottom:486.709004pt;}
.y133{bottom:490.342533pt;}
.y4b{bottom:490.462533pt;}
.y6a{bottom:490.595867pt;}
.y11c{bottom:491.100800pt;}
.y17{bottom:492.763733pt;}
.y124{bottom:494.186519pt;}
.y197{bottom:498.012000pt;}
.y132{bottom:506.342533pt;}
.y4a{bottom:506.462533pt;}
.y159{bottom:506.464533pt;}
.y69{bottom:506.595867pt;}
.y16{bottom:508.763733pt;}
.y196{bottom:511.345333pt;}
.y158{bottom:522.104533pt;}
.y49{bottom:522.462533pt;}
.ye6{bottom:523.783700pt;}
.y195{bottom:524.678667pt;}
.y15{bottom:524.763733pt;}
.y8f{bottom:526.165600pt;}
.yf2{bottom:528.012702pt;}
.y129{bottom:531.090667pt;}
.y95{bottom:533.561200pt;}
.y131{bottom:537.982533pt;}
.y194{bottom:538.012000pt;}
.y68{bottom:538.235867pt;}
.y48{bottom:538.462533pt;}
.y14{bottom:540.763733pt;}
.y125{bottom:549.710548pt;}
.y193{bottom:551.345333pt;}
.y87{bottom:552.210533pt;}
.y47{bottom:554.462533pt;}
.y157{bottom:554.464533pt;}
.y13{bottom:556.763733pt;}
.y192{bottom:564.678667pt;}
.y116{bottom:564.713467pt;}
.ye7{bottom:564.814333pt;}
.y156{bottom:570.104533pt;}
.y46{bottom:570.462533pt;}
.yf3{bottom:571.903979pt;}
.y12{bottom:572.763733pt;}
.y191{bottom:578.012000pt;}
.y99{bottom:584.244533pt;}
.y45{bottom:586.462533pt;}
.y11{bottom:588.763733pt;}
.y190{bottom:591.345333pt;}
.y44{bottom:602.462533pt;}
.y155{bottom:602.464533pt;}
.y18f{bottom:604.678667pt;}
.ye8{bottom:605.844967pt;}
.y117{bottom:609.139641pt;}
.y96{bottom:611.765600pt;}
.yf4{bottom:615.795256pt;}
.y1d0{bottom:618.012000pt;}
.y18e{bottom:618.014133pt;}
.y43{bottom:618.462533pt;}
.y154{bottom:618.464533pt;}
.y8d{bottom:624.962133pt;}
.y10{bottom:628.904267pt;}
.y1cf{bottom:631.345333pt;}
.y18d{bottom:631.347467pt;}
.y153{bottom:634.104533pt;}
.y42{bottom:634.462533pt;}
.yf{bottom:639.971600pt;}
.y1ce{bottom:644.678667pt;}
.y18c{bottom:644.680800pt;}
.yf0{bottom:645.846133pt;}
.ye9{bottom:646.875600pt;}
.y98{bottom:649.988933pt;}
.y41{bottom:650.462533pt;}
.y152{bottom:650.464533pt;}
.y118{bottom:653.577399pt;}
.y1cd{bottom:658.012000pt;}
.y18b{bottom:658.014133pt;}
.yf5{bottom:659.686533pt;}
.y9f{bottom:662.709067pt;}
.y92{bottom:666.192267pt;}
.y40{bottom:666.462533pt;}
.y151{bottom:666.464533pt;}
.yef{bottom:669.579600pt;}
.y1cc{bottom:671.345333pt;}
.y18a{bottom:671.347467pt;}
.ye{bottom:672.985733pt;}
.y11f{bottom:673.205200pt;}
.y3f{bottom:682.462533pt;}
.y150{bottom:682.464533pt;}
.y1cb{bottom:684.678667pt;}
.y189{bottom:684.680800pt;}
.yd{bottom:684.985733pt;}
.y11e{bottom:692.083467pt;}
.yc{bottom:696.985733pt;}
.y1ca{bottom:698.012000pt;}
.y188{bottom:698.014133pt;}
.y119{bottom:698.015157pt;}
.y3e{bottom:698.462533pt;}
.y14f{bottom:698.464533pt;}
.yb{bottom:708.985733pt;}
.y1c9{bottom:711.345333pt;}
.y187{bottom:711.347467pt;}
.y3d{bottom:714.462533pt;}
.y14e{bottom:714.464533pt;}
.ya{bottom:716.163200pt;}
.y1c8{bottom:724.678667pt;}
.y186{bottom:724.680800pt;}
.y9{bottom:728.163200pt;}
.y14d{bottom:730.104533pt;}
.y3c{bottom:730.462533pt;}
.yd3{bottom:730.590533pt;}
.y1c7{bottom:738.012000pt;}
.y185{bottom:738.014133pt;}
.y11a{bottom:742.441331pt;}
.y8{bottom:744.985733pt;}
.y3b{bottom:746.462533pt;}
.ydf{bottom:746.470533pt;}
.yd2{bottom:746.590533pt;}
.y1c6{bottom:751.345333pt;}
.y184{bottom:751.347467pt;}
.y3a{bottom:762.462533pt;}
.y14c{bottom:762.464533pt;}
.yde{bottom:762.470533pt;}
.y1c5{bottom:764.678667pt;}
.y183{bottom:764.680800pt;}
.y120{bottom:768.025333pt;}
.y7{bottom:770.521067pt;}
.y1c4{bottom:778.012000pt;}
.y182{bottom:778.014133pt;}
.yd1{bottom:778.230533pt;}
.y39{bottom:778.462533pt;}
.y14b{bottom:778.464533pt;}
.ydd{bottom:778.470533pt;}
.y6{bottom:789.183067pt;}
.y1c3{bottom:791.345333pt;}
.y181{bottom:791.347467pt;}
.y38{bottom:794.462533pt;}
.y14a{bottom:794.464533pt;}
.ydc{bottom:794.470533pt;}
.y1c2{bottom:804.678667pt;}
.y180{bottom:804.680800pt;}
.ycc{bottom:807.866053pt;}
.ycb{bottom:810.457067pt;}
.y37{bottom:810.462533pt;}
.yad{bottom:810.464533pt;}
.ydb{bottom:810.470533pt;}
.y1c1{bottom:818.012000pt;}
.y17f{bottom:818.014133pt;}
.y36{bottom:826.462533pt;}
.y149{bottom:826.464533pt;}
.yda{bottom:826.470533pt;}
.y5{bottom:830.254267pt;}
.y1c0{bottom:831.345333pt;}
.y17e{bottom:831.347467pt;}
.y67{bottom:842.102533pt;}
.yca{bottom:842.457067pt;}
.y35{bottom:842.462533pt;}
.yac{bottom:842.464533pt;}
.yd9{bottom:842.470533pt;}
.y1bf{bottom:844.678667pt;}
.y17d{bottom:844.680800pt;}
.y1be{bottom:858.012000pt;}
.y17c{bottom:858.014133pt;}
.yc9{bottom:858.457067pt;}
.y34{bottom:858.462533pt;}
.yab{bottom:858.464533pt;}
.yd8{bottom:858.470533pt;}
.y4{bottom:862.663867pt;}
.y1bd{bottom:871.345333pt;}
.y17b{bottom:871.347467pt;}
.y66{bottom:873.982533pt;}
.yc8{bottom:874.457067pt;}
.y33{bottom:874.462533pt;}
.yaa{bottom:874.464533pt;}
.yd7{bottom:874.470533pt;}
.y1bc{bottom:884.678667pt;}
.y17a{bottom:884.680800pt;}
.yc7{bottom:890.457067pt;}
.y32{bottom:890.462533pt;}
.ya9{bottom:890.464533pt;}
.yd6{bottom:890.470533pt;}
.y3{bottom:895.045333pt;}
.y1bb{bottom:898.012000pt;}
.y179{bottom:898.014133pt;}
.yd0{bottom:906.104533pt;}
.yc6{bottom:906.457067pt;}
.y31{bottom:906.462533pt;}
.y148{bottom:906.464533pt;}
.yd5{bottom:906.470533pt;}
.y1ba{bottom:911.345333pt;}
.y178{bottom:911.347467pt;}
.ya8{bottom:922.104533pt;}
.yc5{bottom:922.457067pt;}
.y30{bottom:922.462533pt;}
.yd4{bottom:922.470533pt;}
.y1b9{bottom:924.678667pt;}
.y177{bottom:924.680800pt;}
.y2{bottom:950.489200pt;}
.y8e{bottom:1006.594133pt;}
.y85{bottom:1006.594400pt;}
.y1b8{bottom:1006.598667pt;}
.y130{bottom:1006.602000pt;}
.ya7{bottom:1006.613867pt;}
.y2e{bottom:1009.860000pt;}
.y2d{bottom:1022.660000pt;}
.h7{height:17.000371pt;}
.h9{height:25.238281pt;}
.h2{height:27.179688pt;}
.h29{height:27.967898pt;}
.h2a{height:28.023811pt;}
.h22{height:28.114280pt;}
.h8{height:29.160156pt;}
.hd{height:29.169756pt;}
.h1a{height:29.323000pt;}
.h1b{height:29.362333pt;}
.h13{height:29.645833pt;}
.h24{height:30.032002pt;}
.h26{height:30.083255pt;}
.h18{height:30.111599pt;}
.h10{height:31.083333pt;}
.hf{height:31.104167pt;}
.h27{height:32.722402pt;}
.h2b{height:33.735040pt;}
.h2d{height:33.792505pt;}
.he{height:37.057292pt;}
.h2f{height:37.381654pt;}
.hc{height:38.828125pt;}
.ha{height:38.854167pt;}
.hb{height:38.880208pt;}
.h15{height:42.707055pt;}
.h16{height:43.239000pt;}
.h1c{height:43.984500pt;}
.h19{height:45.167205pt;}
.h2e{height:45.987783pt;}
.h11{height:46.697734pt;}
.h1d{height:46.719068pt;}
.h12{height:46.727068pt;}
.h20{height:46.733752pt;}
.h21{height:47.443212pt;}
.h14{height:50.047512pt;}
.h3{height:50.476562pt;}
.h6{height:50.755837pt;}
.h5{height:50.774503pt;}
.h17{height:55.912500pt;}
.h1f{height:70.166092pt;}
.h1e{height:72.338450pt;}
.h4{height:81.927344pt;}
.h28{height:238.205333pt;}
.h23{height:242.944000pt;}
.h25{height:258.774667pt;}
.h2c{height:501.056000pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w3{width:300.472000pt;}
.w2{width:300.473333pt;}
.w4{width:345.412000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2c{left:8.282000pt;}
.x35{left:9.639867pt;}
.x2b{left:11.337733pt;}
.x3b{left:14.058400pt;}
.x31{left:16.160133pt;}
.xb{left:68.031467pt;}
.x23{left:78.690533pt;}
.x27{left:80.225733pt;}
.x9{left:85.417333pt;}
.x1{left:86.929067pt;}
.x3e{left:88.814267pt;}
.x43{left:90.708800pt;}
.x4{left:94.488133pt;}
.xc{left:98.284800pt;}
.x41{left:109.606533pt;}
.x3{left:111.491467pt;}
.x21{left:115.063333pt;}
.x6{left:117.170133pt;}
.x28{left:125.038667pt;}
.x20{left:172.129200pt;}
.x5{left:189.223467pt;}
.x40{left:191.595867pt;}
.x2d{left:193.847067pt;}
.x39{left:195.675200pt;}
.x33{left:214.696000pt;}
.x15{left:230.427067pt;}
.x24{left:233.970400pt;}
.x34{left:244.004533pt;}
.x37{left:268.873200pt;}
.x2e{left:280.622400pt;}
.x36{left:331.786000pt;}
.x16{left:337.691067pt;}
.x22{left:345.328667pt;}
.x26{left:387.759467pt;}
.x1f{left:391.024267pt;}
.x25{left:393.833611pt;}
.xa{left:404.481333pt;}
.xd{left:406.364800pt;}
.x30{left:422.460042pt;}
.x12{left:425.195867pt;}
.x7{left:427.090133pt;}
.x2f{left:428.173333pt;}
.xf{left:436.604800pt;}
.x32{left:439.878400pt;}
.x3a{left:445.708667pt;}
.x42{left:447.899867pt;}
.x13{left:455.441333pt;}
.x8{left:457.330133pt;}
.xe{left:466.978133pt;}
.x14{left:467.995333pt;}
.x29{left:472.954853pt;}
.x1e{left:478.710400pt;}
.x38{left:483.569200pt;}
.x18{left:489.755733pt;}
.x3f{left:507.311467pt;}
.x1c{left:517.448667pt;}
.x17{left:530.971333pt;}
.x2a{left:544.823467pt;}
.x3d{left:568.680400pt;}
.x1b{left:569.954667pt;}
.x1d{left:585.467467pt;}
.x11{left:589.770933pt;}
.x19{left:608.323867pt;}
.x2{left:616.324800pt;}
.x3c{left:640.406267pt;}
.x44{left:641.526800pt;}
.x10{left:647.459200pt;}
.x1a{left:666.361200pt;}
}




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