
    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_29769997065ddf8d2203b52c.woff')format("woff");}.ff1{font-family:ff1;line-height:1.140667;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_2a97dcf3d30a74bf4127e8f4.woff')format("woff");}.ff2{font-family:ff2;line-height:1.003000;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_fd54d22e209b956aa5df0bee.woff')format("woff");}.ff3{font-family:ff3;line-height:1.144000;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_c6b86dc54bceeb41c924f22e.woff')format("woff");}.ff4{font-family:ff4;line-height:1.140667;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_285c687dac43bdeea66ef985.woff')format("woff");}.ff5{font-family:ff5;line-height:0.960449;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_f4ad6e8ad5bea1e5913c5f58.woff')format("woff");}.ff6{font-family:ff6;line-height:1.172852;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_25798216b31ec04f89f9aa2a.woff')format("woff");}.ff7{font-family:ff7;line-height:1.143000;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_123d166822776f33010f4640.woff')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_5e4c322e0573e63e3f127f95.woff')format("woff");}.ff9{font-family:ff9;line-height:1.435059;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_6e8ea83f5cfea87b03c01248.woff')format("woff");}.ffa{font-family:ffa;line-height:1.172852;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_a500dd2dd7e26478a3f4efed.woff')format("woff");}.ffb{font-family:ffb;line-height:0.774902;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_a5e8f1be31803e4f76b181cb.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_1411348958bd3d00f284b7cc.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_2ed8d2f0c53a74bcc1bb908d.woff')format("woff");}.ffe{font-family:ffe;line-height:0.783691;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_e828cdc3969b360b6feb6a25.woff')format("woff");}.fff{font-family:fff;line-height:1.143000;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_838ba8f363ef6b2a666352b5.woff')format("woff");}.ff10{font-family:ff10;line-height:0.774902;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_aeb114dd73e149315fcc84ad.woff')format("woff");}.ff11{font-family:ff11;line-height:0.942383;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_ead0365dfd4a6112c40d240f.woff')format("woff");}.ff12{font-family:ff12;line-height:0.942383;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_336557a9b3d480da2668419c.woff')format("woff");}.ff13{font-family:ff13;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_5bf9e2f99d1749f6d0ba4f2b.woff')format("woff");}.ff14{font-family:ff14;line-height:1.144000;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_aa3515e2e245012d240365e0.woff')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_c9f1c8feabb5d54c0a042288.woff')format("woff");}.ff16{font-family:ff16;line-height:1.104492;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_75cf4ed253eee1c38f823b48.woff')format("woff");}.ff17{font-family:ff17;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_518dceeb0432b3e3169683c5.woff')format("woff");}.ff18{font-family:ff18;line-height:1.131000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-0.792000px;}
.ls34{letter-spacing:-0.648000px;}
.ls35{letter-spacing:-0.576000px;}
.ls40{letter-spacing:-0.573000px;}
.ls60{letter-spacing:-0.504000px;}
.ls2c{letter-spacing:-0.360000px;}
.ls1b{letter-spacing:-0.288000px;}
.ls3d{letter-spacing:-0.270600px;}
.ls61{letter-spacing:-0.242400px;}
.ls53{letter-spacing:-0.235200px;}
.ls58{letter-spacing:-0.231600px;}
.ls54{letter-spacing:-0.229200px;}
.ls1e{letter-spacing:-0.216000px;}
.ls4b{letter-spacing:-0.204000px;}
.ls55{letter-spacing:-0.175200px;}
.ls56{letter-spacing:-0.169200px;}
.ls3f{letter-spacing:-0.166800px;}
.ls3{letter-spacing:-0.144000px;}
.ls66{letter-spacing:-0.119400px;}
.ls41{letter-spacing:-0.086400px;}
.ls2{letter-spacing:-0.072000px;}
.ls4a{letter-spacing:-0.069600px;}
.ls1{letter-spacing:-0.061200px;}
.ls68{letter-spacing:-0.054000px;}
.ls42{letter-spacing:-0.020160px;}
.ls33{letter-spacing:-0.012240px;}
.ls47{letter-spacing:-0.008640px;}
.ls0{letter-spacing:0.000000px;}
.ls49{letter-spacing:0.008640px;}
.ls59{letter-spacing:0.048240px;}
.ls3e{letter-spacing:0.048960px;}
.ls5{letter-spacing:0.072000px;}
.ls52{letter-spacing:0.083400px;}
.ls1a{letter-spacing:0.144000px;}
.ls45{letter-spacing:0.181200px;}
.ls65{letter-spacing:0.185760px;}
.ls5e{letter-spacing:0.192000px;}
.ls4e{letter-spacing:0.193800px;}
.ls3b{letter-spacing:0.216000px;}
.ls44{letter-spacing:0.233400px;}
.ls24{letter-spacing:0.256800px;}
.ls46{letter-spacing:0.283800px;}
.ls1c{letter-spacing:0.288000px;}
.ls5d{letter-spacing:0.316800px;}
.ls57{letter-spacing:0.342600px;}
.ls1d{letter-spacing:0.360000px;}
.ls2b{letter-spacing:0.374400px;}
.ls4c{letter-spacing:2.898720px;}
.ls5a{letter-spacing:4.338720px;}
.ls43{letter-spacing:6.498720px;}
.ls2d{letter-spacing:7.938720px;}
.ls4f{letter-spacing:8.658720px;}
.ls1f{letter-spacing:15.858720px;}
.ls5f{letter-spacing:16.704000px;}
.ls67{letter-spacing:24.840000px;}
.ls25{letter-spacing:25.560000px;}
.ls31{letter-spacing:35.424000px;}
.ls30{letter-spacing:36.144000px;}
.ls2f{letter-spacing:36.864000px;}
.ls39{letter-spacing:41.880000px;}
.ls2e{letter-spacing:43.344000px;}
.ls64{letter-spacing:45.480000px;}
.ls38{letter-spacing:46.920000px;}
.ls63{letter-spacing:48.198720px;}
.ls62{letter-spacing:48.918720px;}
.ls51{letter-spacing:49.638720px;}
.ls5c{letter-spacing:50.358720px;}
.ls8{letter-spacing:51.269760px;}
.ls3a{letter-spacing:51.984000px;}
.ls3c{letter-spacing:53.238720px;}
.ls37{letter-spacing:53.958720px;}
.ls32{letter-spacing:54.864000px;}
.ls36{letter-spacing:55.398720px;}
.ls50{letter-spacing:56.838720px;}
.ls27{letter-spacing:57.000000px;}
.ls5b{letter-spacing:57.558720px;}
.ls2a{letter-spacing:59.345280px;}
.ls12{letter-spacing:72.149760px;}
.ls13{letter-spacing:72.869760px;}
.ls10{letter-spacing:75.749760px;}
.ls11{letter-spacing:76.469760px;}
.lsf{letter-spacing:77.189760px;}
.ls9{letter-spacing:77.909760px;}
.ls18{letter-spacing:82.205760px;}
.ls17{letter-spacing:82.925760px;}
.ls15{letter-spacing:83.645760px;}
.ls6{letter-spacing:84.389760px;}
.lse{letter-spacing:86.525760px;}
.lsb{letter-spacing:87.965760px;}
.ls7{letter-spacing:88.685760px;}
.ls14{letter-spacing:90.125760px;}
.ls16{letter-spacing:90.845760px;}
.lsa{letter-spacing:95.165760px;}
.lsd{letter-spacing:96.629760px;}
.ls19{letter-spacing:97.349760px;}
.lsc{letter-spacing:103.109760px;}
.ls21{letter-spacing:139.080000px;}
.ls23{letter-spacing:143.400000px;}
.ls22{letter-spacing:144.120000px;}
.ls4d{letter-spacing:145.776000px;}
.ls29{letter-spacing:148.176000px;}
.ls20{letter-spacing:151.320000px;}
.ls26{letter-spacing:159.960000px;}
.ls28{letter-spacing:172.416000px;}
.ls48{letter-spacing:173.232000px;}
.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;}
}
.ws13{word-spacing:-72.000000px;}
.ws10{word-spacing:-66.240000px;}
.ws1e{word-spacing:-59.760000px;}
.ws31{word-spacing:-27.054840px;}
.wsb{word-spacing:-23.909520px;}
.ws25{word-spacing:-23.846520px;}
.ws26{word-spacing:-23.736120px;}
.ws2d{word-spacing:-23.700960px;}
.ws1f{word-spacing:-23.644080px;}
.ws12{word-spacing:-23.640480px;}
.ws24{word-spacing:-23.448720px;}
.ws30{word-spacing:-23.410320px;}
.wsc{word-spacing:-19.828800px;}
.ws15{word-spacing:-19.558200px;}
.ws9{word-spacing:-18.720000px;}
.ws8{word-spacing:-18.648000px;}
.ws14{word-spacing:-18.576000px;}
.ws6{word-spacing:-18.504000px;}
.ws5{word-spacing:-18.432000px;}
.ws1{word-spacing:-18.360000px;}
.ws2{word-spacing:-18.288000px;}
.ws3{word-spacing:-18.216000px;}
.wsa{word-spacing:-18.144000px;}
.ws7{word-spacing:-18.072000px;}
.ws2f{word-spacing:-17.856000px;}
.ws4{word-spacing:-17.568000px;}
.wsf{word-spacing:-17.280000px;}
.wse{word-spacing:-17.208000px;}
.ws1c{word-spacing:-17.072400px;}
.wsd{word-spacing:-16.992000px;}
.ws16{word-spacing:-16.940160px;}
.ws11{word-spacing:-16.891200px;}
.ws1a{word-spacing:-16.871040px;}
.ws19{word-spacing:-16.804800px;}
.ws17{word-spacing:-16.724400px;}
.ws18{word-spacing:-16.318200px;}
.ws2b{word-spacing:-15.581400px;}
.ws21{word-spacing:-15.238800px;}
.ws2a{word-spacing:-15.069600px;}
.ws29{word-spacing:-15.063600px;}
.ws28{word-spacing:-15.009600px;}
.ws2c{word-spacing:-15.007200px;}
.ws27{word-spacing:-15.003600px;}
.ws22{word-spacing:-13.770000px;}
.ws32{word-spacing:-13.716000px;}
.ws2e{word-spacing:-13.698000px;}
.ws1d{word-spacing:-13.505760px;}
.ws20{word-spacing:-13.436160px;}
.ws1b{word-spacing:-12.534600px;}
.ws23{word-spacing:-12.204000px;}
.ws0{word-spacing:0.000000px;}
._40{margin-left:-96.192000px;}
._41{margin-left:-93.876000px;}
._15{margin-left:-16.332000px;}
._18{margin-left:-14.652000px;}
._16{margin-left:-12.300000px;}
._14{margin-left:-10.860000px;}
._13{margin-left:-9.420000px;}
._19{margin-left:-8.316000px;}
._17{margin-left:-6.834480px;}
._1a{margin-left:-5.622480px;}
._1d{margin-left:-4.505520px;}
._e{margin-left:-3.498480px;}
._d{margin-left:-2.448000px;}
._1{margin-left:-1.109520px;}
._5{width:1.056000px;}
._1b{width:2.170800px;}
._1c{width:3.253200px;}
._25{width:4.283040px;}
._3{width:5.400000px;}
._f{width:6.437520px;}
._4{width:7.560000px;}
._27{width:8.640000px;}
._11{width:9.893520px;}
._10{width:11.160000px;}
._20{width:12.744000px;}
._c{width:14.472000px;}
._b{width:15.840000px;}
._26{width:17.136000px;}
._29{width:19.600560px;}
._28{width:21.024000px;}
._2f{width:22.052160px;}
._2c{width:23.115120px;}
._2b{width:24.172560px;}
._2a{width:25.416000px;}
._8{width:26.856000px;}
._6{width:28.080000px;}
._7{width:29.825520px;}
._30{width:32.040000px;}
._42{width:33.192000px;}
._45{width:34.488000px;}
._47{width:38.412960px;}
._46{width:39.419040px;}
._a{width:40.464000px;}
._9{width:41.544000px;}
._21{width:42.768000px;}
._24{width:45.389520px;}
._22{width:46.872000px;}
._23{width:48.053520px;}
._3b{width:49.326480px;}
._1f{width:50.472000px;}
._1e{width:51.480000px;}
._43{width:56.232000px;}
._44{width:57.240000px;}
._2e{width:64.456320px;}
._3c{width:69.810240px;}
._33{width:87.264000px;}
._35{width:88.666800px;}
._3e{width:94.997520px;}
._3d{width:96.264000px;}
._3f{width:97.620000px;}
._3a{width:106.194240px;}
._32{width:112.212000px;}
._38{width:140.842560px;}
._37{width:144.362880px;}
._31{width:147.218880px;}
._39{width:167.232000px;}
._2d{width:172.344000px;}
._34{width:191.700000px;}
._36{width:203.698800px;}
._12{width:845.796000px;}
._2{width:850.386000px;}
._0{width:1341.454800px;}
.fc14{color:rgb(240,58,23);}
.fc11{color:rgb(204,204,204);}
.fc12{color:rgb(242,242,242);}
.fc10{color:rgb(11,119,124);}
.fc0{color:rgb(0,0,0);}
.fc1{color:rgb(64,64,64);}
.fc2{color:rgb(255,255,255);}
.fce{color:rgb(232,18,36);}
.fcc{color:rgb(118,113,113);}
.fc13{color:rgb(166,166,166);}
.fc4{color:rgb(47,84,150);}
.fc3{color:transparent;}
.fc5{color:rgb(0,32,96);}
.fcb{color:rgb(109,110,113);}
.fc6{color:rgb(5,99,193);}
.fc7{color:rgb(3,88,106);}
.fcf{color:rgb(255,200,61);}
.fc8{color:rgb(68,136,153);}
.fc9{color:rgb(31,56,100);}
.fcd{color:rgb(21,34,75);}
.fca{color:rgb(13,120,125);}
.fs4{font-size:45.360000px;}
.fs0{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs9{font-size:59.760000px;}
.fs7{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs8{font-size:77.760000px;}
.fs6{font-size:95.760000px;}
.fs3{font-size:108.000000px;}
.fsa{font-size:120.240000px;}
.fs2{font-size:216.000000px;}
.y8{bottom:-12.780000px;}
.y0{bottom:0.000000px;}
.y7{bottom:1.440000px;}
.y234{bottom:2.520000px;}
.y11{bottom:2.700000px;}
.y15{bottom:2.880000px;}
.y1e8{bottom:3.600000px;}
.ye1{bottom:3.780000px;}
.y17a{bottom:3.810000px;}
.y10a{bottom:3.825000px;}
.y1ce{bottom:3.960000px;}
.y3a{bottom:4.140000px;}
.y249{bottom:4.320000px;}
.y1a2{bottom:4.500000px;}
.y1d6{bottom:4.680000px;}
.y29d{bottom:4.860000px;}
.y29f{bottom:5.040000px;}
.y29b{bottom:5.220000px;}
.y21b{bottom:5.400000px;}
.y201{bottom:5.580000px;}
.y1f5{bottom:5.760000px;}
.y11a{bottom:5.940000px;}
.y1ed{bottom:6.120000px;}
.y1f8{bottom:6.300000px;}
.y217{bottom:6.480000px;}
.y21d{bottom:6.660000px;}
.y104{bottom:7.065000px;}
.y25e{bottom:7.200000px;}
.y24f{bottom:7.380000px;}
.y252{bottom:7.410000px;}
.ye9{bottom:8.100000px;}
.y27d{bottom:9.900000px;}
.y281{bottom:9.930000px;}
.y288{bottom:9.945000px;}
.y28{bottom:10.080000px;}
.y23b{bottom:11.340000px;}
.y1dc{bottom:12.240000px;}
.y1d3{bottom:12.420000px;}
.y299{bottom:12.465000px;}
.y1db{bottom:12.960000px;}
.y1cc{bottom:13.140000px;}
.y27b{bottom:14.400000px;}
.y24b{bottom:14.760000px;}
.y6{bottom:15.480000px;}
.y23a{bottom:15.840000px;}
.y233{bottom:17.460000px;}
.y297{bottom:19.125000px;}
.y239{bottom:19.440000px;}
.y238{bottom:19.980000px;}
.y23e{bottom:20.205000px;}
.y2b{bottom:20.520000px;}
.y29{bottom:20.700000px;}
.y30{bottom:20.745000px;}
.y1e7{bottom:21.240000px;}
.y298{bottom:21.285000px;}
.y1d8{bottom:21.600000px;}
.y1da{bottom:22.140000px;}
.y22c{bottom:22.170000px;}
.y1ca{bottom:22.320000px;}
.y1d2{bottom:22.680000px;}
.y22f{bottom:22.860000px;}
.y11e{bottom:23.040000px;}
.yfd{bottom:23.220000px;}
.y109{bottom:23.265000px;}
.y20e{bottom:23.400000px;}
.y200{bottom:23.760000px;}
.y1f4{bottom:23.940000px;}
.y22b{bottom:23.970000px;}
.y1a9{bottom:24.120000px;}
.yef{bottom:24.300000px;}
.y28a{bottom:24.480000px;}
.y4{bottom:25.020000px;}
.y20d{bottom:25.200000px;}
.y38{bottom:25.380000px;}
.y1e5{bottom:25.560000px;}
.y1f7{bottom:26.460000px;}
.y103{bottom:26.505000px;}
.ye8{bottom:27.360000px;}
.y5{bottom:29.520000px;}
.y223{bottom:31.140000px;}
.y36{bottom:31.170000px;}
.y27{bottom:31.320000px;}
.y2f{bottom:31.365000px;}
.y1c7{bottom:31.500000px;}
.y253{bottom:31.530000px;}
.y268{bottom:31.545000px;}
.y256{bottom:31.680000px;}
.y251{bottom:31.710000px;}
.y267{bottom:31.725000px;}
.y1ba{bottom:32.220000px;}
.y241{bottom:32.760000px;}
.y232{bottom:34.020000px;}
.y1e3{bottom:34.740000px;}
.y23f{bottom:36.045000px;}
.y23d{bottom:36.585000px;}
.y219{bottom:38.010000px;}
.y27f{bottom:38.880000px;}
.y218{bottom:38.910000px;}
.y216{bottom:39.450000px;}
.y213{bottom:40.314000px;}
.y220{bottom:40.320000px;}
.y1c9{bottom:40.680000px;}
.y225{bottom:41.940000px;}
.y222{bottom:41.985000px;}
.y212{bottom:42.114000px;}
.y1f3{bottom:42.120000px;}
.y22a{bottom:42.150000px;}
.y111{bottom:42.480000px;}
.yfc{bottom:43.560000px;}
.y108{bottom:43.605000px;}
.y11c{bottom:43.740000px;}
.y1e4{bottom:43.920000px;}
.y20c{bottom:44.100000px;}
.yee{bottom:44.640000px;}
.y119{bottom:44.820000px;}
.y102{bottom:45.765000px;}
.y39{bottom:46.440000px;}
.ye7{bottom:46.800000px;}
.y28c{bottom:47.160000px;}
.y235{bottom:48.960000px;}
.y209{bottom:49.545000px;}
.y1c6{bottom:49.860000px;}
.y231{bottom:50.400000px;}
.y1f0{bottom:51.885000px;}
.y14{bottom:52.020000px;}
.y261{bottom:52.056000px;}
.y1b9{bottom:52.740000px;}
.y13{bottom:55.620000px;}
.y260{bottom:55.656000px;}
.y3{bottom:55.800000px;}
.y240{bottom:55.836000px;}
.y259{bottom:55.980000px;}
.y284{bottom:56.520000px;}
.y1c8{bottom:59.040000px;}
.y116{bottom:59.760000px;}
.y211{bottom:60.294000px;}
.y1f2{bottom:60.300000px;}
.y208{bottom:60.345000px;}
.y1ee{bottom:61.065000px;}
.y110{bottom:61.920000px;}
.y11b{bottom:62.994000px;}
.y122{bottom:63.000000px;}
.y107{bottom:63.045000px;}
.y118{bottom:64.074000px;}
.yed{bottom:64.080000px;}
.y1a0{bottom:64.125000px;}
.y10{bottom:64.980000px;}
.y101{bottom:65.205000px;}
.ye6{bottom:66.240000px;}
.y1cb{bottom:68.040000px;}
.y2ba{bottom:69.516000px;}
.y2{bottom:69.876000px;}
.y1ef{bottom:70.245000px;}
.y1b8{bottom:73.125000px;}
.y283{bottom:74.160000px;}
.yad{bottom:75.456000px;}
.y202{bottom:76.860000px;}
.y1cd{bottom:77.220000px;}
.y210{bottom:78.474000px;}
.y1ff{bottom:78.480000px;}
.y207{bottom:78.525000px;}
.y115{bottom:79.200000px;}
.y2b9{bottom:79.596000px;}
.y25a{bottom:80.100000px;}
.y258{bottom:80.280000px;}
.y10f{bottom:81.360000px;}
.y1e0{bottom:81.936000px;}
.y1ec{bottom:81.945000px;}
.y121{bottom:82.440000px;}
.yfb{bottom:83.340000px;}
.y120{bottom:83.520000px;}
.y106{bottom:83.565000px;}
.y1{bottom:83.916000px;}
.yec{bottom:84.420000px;}
.y1a3{bottom:84.456000px;}
.y100{bottom:84.645000px;}
.y1a8{bottom:85.494000px;}
.ye5{bottom:85.500000px;}
.y178{bottom:87.336000px;}
.yf7{bottom:87.660000px;}
.yde{bottom:88.236000px;}
.y1b7{bottom:93.645000px;}
.y1fe{bottom:96.660000px;}
.yac{bottom:96.696000px;}
.y206{bottom:96.885000px;}
.y117{bottom:97.596000px;}
.y114{bottom:98.460000px;}
.y2f2{bottom:98.676000px;}
.y10e{bottom:100.620000px;}
.y2b8{bottom:100.656000px;}
.y1eb{bottom:100.845000px;}
.y214{bottom:102.096000px;}
.y14b{bottom:102.816000px;}
.y105{bottom:102.825000px;}
.y1df{bottom:102.996000px;}
.yeb{bottom:103.860000px;}
.yff{bottom:103.905000px;}
.ye4{bottom:104.940000px;}
.y19f{bottom:104.985000px;}
.y1a7{bottom:106.014000px;}
.yf6{bottom:107.100000px;}
.y2d5{bottom:107.496000px;}
.ydd{bottom:109.296000px;}
.y177{bottom:110.196000px;}
.y1b6{bottom:113.085000px;}
.y1fd{bottom:115.020000px;}
.yab{bottom:117.756000px;}
.y113{bottom:118.980000px;}
.y2f1{bottom:119.736000px;}
.y1ea{bottom:119.925000px;}
.y10d{bottom:120.060000px;}
.y302{bottom:120.456000px;}
.y2b7{bottom:121.896000px;}
.y20f{bottom:123.156000px;}
.yea{bottom:123.300000px;}
.y1de{bottom:124.056000px;}
.ye3{bottom:124.380000px;}
.y19e{bottom:124.425000px;}
.y14a{bottom:125.496000px;}
.y1a6{bottom:126.354000px;}
.yf5{bottom:126.540000px;}
.y25d{bottom:128.916000px;}
.y2d4{bottom:129.816000px;}
.y1b5{bottom:132.345000px;}
.y176{bottom:133.056000px;}
.y1fc{bottom:133.230000px;}
.yf{bottom:134.820000px;}
.y112{bottom:138.240000px;}
.yaa{bottom:138.996000px;}
.y10c{bottom:139.320000px;}
.ydc{bottom:139.356000px;}
.y2f0{bottom:140.976000px;}
.y301{bottom:141.696000px;}
.y2b6{bottom:142.956000px;}
.yfa{bottom:143.640000px;}
.y19d{bottom:144.945000px;}
.y1a5{bottom:145.794000px;}
.yf4{bottom:145.800000px;}
.y149{bottom:146.556000px;}
.y1fb{bottom:151.410000px;}
.y1b4{bottom:151.785000px;}
.y2d3{bottom:152.130000px;}
.y25c{bottom:153.930000px;}
.y175{bottom:155.910000px;}
.ya9{bottom:160.050000px;}
.y2ef{bottom:162.030000px;}
.y300{bottom:162.750000px;}
.yf9{bottom:163.110000px;}
.ydb{bottom:164.190000px;}
.y1a4{bottom:165.234000px;}
.yf3{bottom:165.270000px;}
.y19c{bottom:165.285000px;}
.y148{bottom:167.610000px;}
.y1b3{bottom:172.125000px;}
.y2d2{bottom:173.190000px;}
.y289{bottom:174.630000px;}
.y10b{bottom:178.050000px;}
.y174{bottom:178.950000px;}
.ya8{bottom:181.110000px;}
.y25{bottom:181.830000px;}
.y2ee{bottom:183.270000px;}
.yf8{bottom:183.630000px;}
.y2ff{bottom:183.990000px;}
.yf2{bottom:184.710000px;}
.yda{bottom:185.610000px;}
.y19b{bottom:185.805000px;}
.y147{bottom:188.850000px;}
.y1dd{bottom:191.370000px;}
.y1b2{bottom:192.645000px;}
.y2b5{bottom:194.610000px;}
.y2d1{bottom:195.510000px;}
.ya7{bottom:202.350000px;}
.y24{bottom:202.890000px;}
.yf1{bottom:203.970000px;}
.y2ed{bottom:204.330000px;}
.ye{bottom:204.480000px;}
.y19a{bottom:206.145000px;}
.yd9{bottom:206.670000px;}
.y1d9{bottom:209.190000px;}
.y146{bottom:209.910000px;}
.y173{bottom:210.810000px;}
.y1b1{bottom:213.165000px;}
.y20b{bottom:214.950000px;}
.y2fe{bottom:215.670000px;}
.y2d0{bottom:216.750000px;}
.ya6{bottom:223.410000px;}
.y23{bottom:224.130000px;}
.y2ec{bottom:225.390000px;}
.y199{bottom:225.585000px;}
.y2b4{bottom:226.110000px;}
.y25b{bottom:227.730000px;}
.yd8{bottom:228.090000px;}
.y287{bottom:228.270000px;}
.y145{bottom:231.150000px;}
.y1b0{bottom:233.505000px;}
.y172{bottom:242.670000px;}
.ya5{bottom:244.650000px;}
.y22{bottom:245.190000px;}
.y198{bottom:246.105000px;}
.y1d7{bottom:246.450000px;}
.y2cf{bottom:247.170000px;}
.y2b3{bottom:247.350000px;}
.yd7{bottom:249.150000px;}
.y144{bottom:252.210000px;}
.y257{bottom:252.795000px;}
.y286{bottom:252.975000px;}
.y1af{bottom:254.025000px;}
.y2eb{bottom:255.990000px;}
.y197{bottom:265.365000px;}
.y171{bottom:265.530000px;}
.ya4{bottom:265.710000px;}
.y1a1{bottom:265.890000px;}
.y21{bottom:266.430000px;}
.y2b2{bottom:268.410000px;}
.yd6{bottom:270.210000px;}
.y270{bottom:272.235000px;}
.y20a{bottom:272.730000px;}
.y143{bottom:273.270000px;}
.y1ae{bottom:274.365000px;}
.y316{bottom:277.050000px;}
.y2ce{bottom:278.670000px;}
.y196{bottom:285.885000px;}
.ya3{bottom:286.770000px;}
.y20{bottom:287.490000px;}
.y170{bottom:288.030000px;}
.y2ea{bottom:288.210000px;}
.y2b1{bottom:289.470000px;}
.y26f{bottom:289.875000px;}
.yd5{bottom:291.630000px;}
.y205{bottom:293.610000px;}
.y142{bottom:294.510000px;}
.y1ad{bottom:294.885000px;}
.y315{bottom:298.110000px;}
.y2cd{bottom:299.910000px;}
.y1d5{bottom:302.070000px;}
.y2e9{bottom:305.310000px;}
.y195{bottom:306.405000px;}
.y285{bottom:306.615000px;}
.ya2{bottom:308.010000px;}
.y1f{bottom:308.550000px;}
.y16f{bottom:309.450000px;}
.y2b0{bottom:310.710000px;}
.yd4{bottom:312.690000px;}
.y1ac{bottom:315.405000px;}
.y141{bottom:315.570000px;}
.y314{bottom:319.350000px;}
.y58{bottom:319.530000px;}
.y2cc{bottom:320.970000px;}
.y1d4{bottom:322.230000px;}
.y194{bottom:325.695000px;}
.ya1{bottom:329.070000px;}
.y1e{bottom:329.790000px;}
.y16e{bottom:330.690000px;}
.y282{bottom:331.275000px;}
.y2af{bottom:331.770000px;}
.y23c{bottom:332.490000px;}
.yfe{bottom:333.750000px;}
.yd3{bottom:334.110000px;}
.y1ab{bottom:335.745000px;}
.y140{bottom:336.855000px;}
.y26e{bottom:339.195000px;}
.y313{bottom:340.455000px;}
.y57{bottom:340.635000px;}
.y1d1{bottom:341.355000px;}
.y2cb{bottom:342.255000px;}
.y193{bottom:346.215000px;}
.ya0{bottom:350.355000px;}
.y255{bottom:350.715000px;}
.y1d{bottom:350.895000px;}
.y16d{bottom:352.155000px;}
.y2ae{bottom:353.055000px;}
.yd2{bottom:355.395000px;}
.y13f{bottom:357.915000px;}
.y7d{bottom:360.975000px;}
.y312{bottom:361.695000px;}
.y2ca{bottom:363.315000px;}
.y192{bottom:366.555000px;}
.y56{bottom:369.255000px;}
.y9f{bottom:371.415000px;}
.y1c{bottom:372.135000px;}
.y16c{bottom:373.575000px;}
.yd1{bottom:376.455000px;}
.yd{bottom:376.815000px;}
.y1d0{bottom:378.795000px;}
.y13e{bottom:378.975000px;}
.y7c{bottom:382.215000px;}
.y237{bottom:382.755000px;}
.y2ad{bottom:383.475000px;}
.y2c9{bottom:384.375000px;}
.y191{bottom:387.075000px;}
.y26d{bottom:388.515000px;}
.y9e{bottom:392.475000px;}
.y1b{bottom:393.195000px;}
.y16b{bottom:394.815000px;}
.y55{bottom:397.875000px;}
.y254{bottom:400.035000px;}
.y13d{bottom:400.215000px;}
.y2c8{bottom:401.295000px;}
.y7b{bottom:403.275000px;}
.y204{bottom:403.815000px;}
.y190{bottom:407.595000px;}
.y9d{bottom:413.715000px;}
.y1a{bottom:414.255000px;}
.y16a{bottom:416.235000px;}
.y236{bottom:416.415000px;}
.y1cf{bottom:417.855000px;}
.yd0{bottom:418.935000px;}
.y280{bottom:420.195000px;}
.y13c{bottom:421.275000px;}
.y7a{bottom:424.515000px;}
.y250{bottom:425.055000px;}
.y54{bottom:426.495000px;}
.y18f{bottom:426.855000px;}
.y9c{bottom:434.775000px;}
.y19{bottom:435.495000px;}
.y1c5{bottom:436.935000px;}
.y169{bottom:437.655000px;}
.y26c{bottom:437.865000px;}
.ycf{bottom:440.355000px;}
.y13b{bottom:442.515000px;}
.y2ac{bottom:444.495000px;}
.y27e{bottom:444.885000px;}
.y79{bottom:445.575000px;}
.y311{bottom:446.115000px;}
.y18e{bottom:447.375000px;}
.yf0{bottom:454.035000px;}
.y53{bottom:455.115000px;}
.y9b{bottom:456.015000px;}
.y18{bottom:457.995000px;}
.y168{bottom:458.715000px;}
.y203{bottom:459.255000px;}
.yce{bottom:461.415000px;}
.y26b{bottom:463.065000px;}
.y13a{bottom:463.575000px;}
.y78{bottom:466.635000px;}
.y310{bottom:467.355000px;}
.y18d{bottom:467.715000px;}
.y230{bottom:472.035000px;}
.y2ab{bottom:472.755000px;}
.y24e{bottom:474.585000px;}
.y17{bottom:476.175000px;}
.y9a{bottom:477.075000px;}
.y167{bottom:479.955000px;}
.ycd{bottom:482.835000px;}
.y52{bottom:483.915000px;}
.y1fa{bottom:484.095000px;}
.y139{bottom:484.635000px;}
.y77{bottom:487.875000px;}
.y18c{bottom:488.235000px;}
.y30f{bottom:488.415000px;}
.y16{bottom:494.535000px;}
.y99{bottom:498.135000px;}
.y27c{bottom:498.525000px;}
.y24d{bottom:499.605000px;}
.y166{bottom:501.375000px;}
.ycc{bottom:503.895000px;}
.y138{bottom:506.955000px;}
.y18b{bottom:508.755000px;}
.y76{bottom:508.935000px;}
.y37{bottom:509.295000px;}
.y30e{bottom:509.475000px;}
.y26a{bottom:512.385000px;}
.y51{bottom:512.535000px;}
.y2aa{bottom:518.835000px;}
.y98{bottom:519.375000px;}
.y27a{bottom:523.185000px;}
.ycb{bottom:524.955000px;}
.y137{bottom:528.195000px;}
.y18a{bottom:529.095000px;}
.y75{bottom:530.175000px;}
.y30d{bottom:530.715000px;}
.y165{bottom:532.875000px;}
.y22e{bottom:536.115000px;}
.y269{bottom:537.405000px;}
.y97{bottom:540.435000px;}
.y50{bottom:541.155000px;}
.y2a9{bottom:542.235000px;}
.y24c{bottom:542.625000px;}
.yca{bottom:546.195000px;}
.y1c4{bottom:548.715000px;}
.y136{bottom:549.255000px;}
.y189{bottom:549.615000px;}
.y74{bottom:551.235000px;}
.y30c{bottom:551.775000px;}
.y164{bottom:556.995000px;}
.y96{bottom:561.675000px;}
.y2a8{bottom:562.755000px;}
.y24a{bottom:564.585000px;}
.yc9{bottom:567.255000px;}
.y279{bottom:567.465000px;}
.y4f{bottom:569.775000px;}
.y188{bottom:569.955000px;}
.y135{bottom:570.495000px;}
.y73{bottom:572.295000px;}
.y30b{bottom:573.015000px;}
.y22d{bottom:573.375000px;}
.y35{bottom:574.995000px;}
.y163{bottom:578.235000px;}
.y95{bottom:582.735000px;}
.y2a7{bottom:583.275000px;}
.y1c3{bottom:586.515000px;}
.y266{bottom:586.725000px;}
.yc8{bottom:588.495000px;}
.y187{bottom:589.440000px;}
.y278{bottom:590.505000px;}
.y134{bottom:591.555000px;}
.y72{bottom:593.535000px;}
.y30a{bottom:594.075000px;}
.y229{bottom:594.255000px;}
.y4e{bottom:598.395000px;}
.y162{bottom:599.295000px;}
.y2a6{bottom:603.645000px;}
.y94{bottom:603.825000px;}
.y248{bottom:607.605000px;}
.y1c2{bottom:609.405000px;}
.yc7{bottom:609.585000px;}
.y186{bottom:609.960000px;}
.y277{bottom:613.005000px;}
.y71{bottom:614.625000px;}
.y309{bottom:615.165000px;}
.y2c7{bottom:619.665000px;}
.y161{bottom:620.385000px;}
.y133{bottom:623.265000px;}
.y2a5{bottom:624.885000px;}
.y93{bottom:625.065000px;}
.y4d{bottom:627.045000px;}
.y185{bottom:630.300000px;}
.y1c1{bottom:630.465000px;}
.yc6{bottom:630.645000px;}
.y34{bottom:631.185000px;}
.y247{bottom:634.110000px;}
.y70{bottom:635.865000px;}
.y265{bottom:636.090000px;}
.y308{bottom:636.405000px;}
.y160{bottom:641.985000px;}
.y2c6{bottom:642.345000px;}
.y92{bottom:646.125000px;}
.y2a4{bottom:646.845000px;}
.y4c{bottom:648.105000px;}
.y1f9{bottom:648.825000px;}
.y228{bottom:649.725000px;}
.y184{bottom:650.820000px;}
.y1c0{bottom:651.525000px;}
.yc5{bottom:651.885000px;}
.y132{bottom:654.765000px;}
.y276{bottom:655.350000px;}
.y6f{bottom:656.925000px;}
.y246{bottom:656.970000px;}
.y307{bottom:657.465000px;}
.y264{bottom:661.110000px;}
.y2c5{bottom:663.405000px;}
.y91{bottom:667.365000px;}
.y183{bottom:670.260000px;}
.y1bf{bottom:672.765000px;}
.yc4{bottom:672.945000px;}
.y15f{bottom:673.485000px;}
.ye2{bottom:674.385000px;}
.y131{bottom:675.825000px;}
.y275{bottom:676.410000px;}
.y4b{bottom:676.725000px;}
.y6e{bottom:677.985000px;}
.y306{bottom:678.705000px;}
.y245{bottom:679.650000px;}
.y2a3{bottom:682.845000px;}
.y2c4{bottom:684.465000px;}
.y227{bottom:686.985000px;}
.y33{bottom:687.525000px;}
.y90{bottom:688.425000px;}
.y182{bottom:690.600000px;}
.y1be{bottom:693.825000px;}
.yc3{bottom:694.185000px;}
.y130{bottom:697.065000px;}
.y15e{bottom:697.605000px;}
.y274{bottom:697.650000px;}
.y6d{bottom:699.225000px;}
.y305{bottom:699.765000px;}
.y244{bottom:700.710000px;}
.y2a2{bottom:703.185000px;}
.y1f6{bottom:704.265000px;}
.y2e8{bottom:704.625000px;}
.y4a{bottom:705.345000px;}
.y2c3{bottom:705.705000px;}
.y8f{bottom:709.485000px;}
.y181{bottom:710.040000px;}
.y263{bottom:710.610000px;}
.yc2{bottom:715.245000px;}
.y1bd{bottom:716.325000px;}
.y12f{bottom:718.125000px;}
.y273{bottom:718.710000px;}
.y15d{bottom:718.845000px;}
.y6c{bottom:720.285000px;}
.y304{bottom:720.825000px;}
.y243{bottom:721.770000px;}
.y2a1{bottom:725.325000px;}
.y2c2{bottom:726.765000px;}
.y2e7{bottom:727.125000px;}
.y180{bottom:729.300000px;}
.y8e{bottom:730.725000px;}
.y49{bottom:733.965000px;}
.yc1{bottom:736.305000px;}
.y12e{bottom:739.365000px;}
.y272{bottom:739.770000px;}
.y15c{bottom:739.905000px;}
.y6b{bottom:741.525000px;}
.y226{bottom:742.425000px;}
.y32{bottom:743.685000px;}
.y242{bottom:744.270000px;}
.y1f1{bottom:745.485000px;}
.y303{bottom:746.025000px;}
.y2c1{bottom:748.005000px;}
.y17f{bottom:749.820000px;}
.y8d{bottom:751.785000px;}
.yc0{bottom:757.545000px;}
.y262{bottom:759.930000px;}
.y12d{bottom:760.425000px;}
.y15b{bottom:760.965000px;}
.y1bc{bottom:761.145000px;}
.y2a0{bottom:761.325000px;}
.y271{bottom:762.270000px;}
.y6a{bottom:762.585000px;}
.y48{bottom:762.765000px;}
.y224{bottom:763.485000px;}
.y17e{bottom:770.340000px;}
.y8c{bottom:773.025000px;}
.y2c0{bottom:778.425000px;}
.ybf{bottom:778.605000px;}
.y12c{bottom:781.485000px;}
.y15a{bottom:782.205000px;}
.y1bb{bottom:782.565000px;}
.y69{bottom:783.645000px;}
.y2e6{bottom:789.225000px;}
.y17d{bottom:790.680000px;}
.y47{bottom:791.385000px;}
.y8b{bottom:794.085000px;}
.y29e{bottom:797.325000px;}
.ybe{bottom:799.845000px;}
.y31{bottom:800.025000px;}
.y1aa{bottom:801.645000px;}
.y12b{bottom:802.725000px;}
.y159{bottom:803.265000px;}
.y68{bottom:804.885000px;}
.y2bf{bottom:809.925000px;}
.y2e5{bottom:810.285000px;}
.y17c{bottom:811.200000px;}
.y2fd{bottom:813.345000px;}
.ye0{bottom:814.965000px;}
.y8a{bottom:815.145000px;}
.y29c{bottom:818.565000px;}
.y1e9{bottom:819.285000px;}
.y46{bottom:820.005000px;}
.ybd{bottom:820.905000px;}
.y12a{bottom:823.785000px;}
.y158{bottom:824.505000px;}
.y67{bottom:825.945000px;}
.y25f{bottom:828.540000px;}
.y17b{bottom:830.460000px;}
.y2be{bottom:831.165000px;}
.y2e4{bottom:831.345000px;}
.y89{bottom:836.385000px;}
.y221{bottom:837.105000px;}
.y29a{bottom:839.625000px;}
.ydf{bottom:840.345000px;}
.ybc{bottom:841.965000px;}
.y129{bottom:845.025000px;}
.y157{bottom:845.925000px;}
.y66{bottom:847.185000px;}
.y45{bottom:848.625000px;}
.y2bd{bottom:852.225000px;}
.y2e3{bottom:853.665000px;}
.y2fc{bottom:855.645000px;}
.y2e{bottom:856.185000px;}
.y88{bottom:857.445000px;}
.y296{bottom:859.605000px;}
.ybb{bottom:863.205000px;}
.y128{bottom:866.085000px;}
.y65{bottom:868.245000px;}
.y2bc{bottom:873.330000px;}
.y2e2{bottom:876.030000px;}
.y44{bottom:877.290000px;}
.y156{bottom:877.830000px;}
.y87{bottom:878.730000px;}
.yba{bottom:884.310000px;}
.y127{bottom:887.190000px;}
.y64{bottom:889.350000px;}
.y2bb{bottom:895.830000px;}
.y2e1{bottom:898.350000px;}
.y86{bottom:899.790000px;}
.y295{bottom:900.150000px;}
.yb9{bottom:905.550000px;}
.y43{bottom:905.910000px;}
.y2fb{bottom:907.350000px;}
.y126{bottom:908.430000px;}
.y155{bottom:909.690000px;}
.y63{bottom:910.590000px;}
.y21f{bottom:910.770000px;}
.y2d{bottom:912.570000px;}
.y2e0{bottom:920.670000px;}
.y85{bottom:920.850000px;}
.y294{bottom:922.650000px;}
.yb8{bottom:926.610000px;}
.y125{bottom:929.490000px;}
.y62{bottom:931.650000px;}
.y154{bottom:932.190000px;}
.y42{bottom:934.530000px;}
.y2fa{bottom:940.110000px;}
.y2df{bottom:941.910000px;}
.y84{bottom:942.090000px;}
.y293{bottom:943.890000px;}
.yb7{bottom:947.670000px;}
.y124{bottom:951.990000px;}
.y1e6{bottom:952.710000px;}
.y61{bottom:952.890000px;}
.y153{bottom:953.250000px;}
.y2f9{bottom:961.170000px;}
.y2de{bottom:962.970000px;}
.y41{bottom:963.150000px;}
.y292{bottom:964.950000px;}
.y2c{bottom:968.730000px;}
.yb6{bottom:968.910000px;}
.y60{bottom:973.950000px;}
.y152{bottom:975.750000px;}
.y2f8{bottom:982.410000px;}
.y83{bottom:984.390000px;}
.y2dd{bottom:985.290000px;}
.y291{bottom:986.010000px;}
.y1e2{bottom:988.710000px;}
.yb5{bottom:989.970000px;}
.y40{bottom:991.770000px;}
.y5f{bottom:995.010000px;}
.y123{bottom:996.810000px;}
.y21e{bottom:1002.570000px;}
.y2f7{bottom:1003.470000px;}
.y82{bottom:1005.450000px;}
.y2dc{bottom:1006.350000px;}
.y290{bottom:1007.250000px;}
.yb4{bottom:1011.210000px;}
.y11f{bottom:1014.450000px;}
.y5e{bottom:1016.250000px;}
.y151{bottom:1019.130000px;}
.y3f{bottom:1020.390000px;}
.y2f6{bottom:1024.710000px;}
.y2a{bottom:1025.070000px;}
.y81{bottom:1026.510000px;}
.y28f{bottom:1028.310000px;}
.y2db{bottom:1028.670000px;}
.yb3{bottom:1032.270000px;}
.y5d{bottom:1037.310000px;}
.y150{bottom:1040.370000px;}
.y2f5{bottom:1045.770000px;}
.y80{bottom:1047.750000px;}
.y3e{bottom:1049.010000px;}
.y28e{bottom:1049.550000px;}
.y2da{bottom:1049.730000px;}
.yb2{bottom:1053.330000px;}
.y5c{bottom:1058.550000px;}
.y21c{bottom:1060.170000px;}
.y14f{bottom:1061.430000px;}
.y7f{bottom:1068.810000px;}
.y28d{bottom:1072.050000px;}
.y2d9{bottom:1072.230000px;}
.y1e1{bottom:1074.390000px;}
.yb1{bottom:1074.570000px;}
.y2f4{bottom:1075.830000px;}
.y3d{bottom:1077.630000px;}
.y5b{bottom:1079.610000px;}
.y26{bottom:1081.230000px;}
.y21a{bottom:1082.130000px;}
.y14e{bottom:1083.750000px;}
.yc{bottom:1087.530000px;}
.y2d8{bottom:1093.290000px;}
.yb0{bottom:1095.630000px;}
.y7e{bottom:1099.230000px;}
.y5a{bottom:1100.670000px;}
.y215{bottom:1101.750000px;}
.y14d{bottom:1104.810000px;}
.yb{bottom:1105.710000px;}
.y3c{bottom:1106.250000px;}
.y2f3{bottom:1106.430000px;}
.y11d{bottom:1114.350000px;}
.y2d7{bottom:1115.610000px;}
.yaf{bottom:1116.870000px;}
.ya{bottom:1124.070000px;}
.y3b{bottom:1131.990000px;}
.y59{bottom:1132.170000px;}
.y179{bottom:1134.690000px;}
.y14c{bottom:1136.490000px;}
.y2d6{bottom:1136.670000px;}
.yae{bottom:1137.960000px;}
.y9{bottom:1142.280000px;}
.y28b{bottom:1192.860000px;}
.y12{bottom:1198.440000px;}
.h4e{height:14.040000px;}
.h9{height:14.220000px;}
.h2f{height:18.180000px;}
.h2c{height:18.360000px;}
.h31{height:18.396000px;}
.h44{height:18.900000px;}
.h2d{height:19.260000px;}
.h17{height:19.440000px;}
.h24{height:19.476000px;}
.h60{height:19.620000px;}
.h62{height:19.800000px;}
.h26{height:20.160000px;}
.h42{height:20.340000px;}
.h61{height:20.520000px;}
.h45{height:21.060000px;}
.h51{height:21.240000px;}
.h4f{height:21.276000px;}
.h5f{height:21.420000px;}
.h59{height:23.940000px;}
.h5b{height:23.976000px;}
.h3e{height:24.120000px;}
.h53{height:24.300000px;}
.h57{height:24.336000px;}
.h4a{height:32.940000px;}
.h36{height:35.100000px;}
.h5e{height:35.280000px;}
.h5d{height:35.316000px;}
.h48{height:36.360000px;}
.h33{height:36.540000px;}
.h30{height:36.720000px;}
.h58{height:39.060000px;}
.h21{height:39.816000px;}
.h3b{height:40.500000px;}
.h3{height:40.860000px;}
.h8{height:41.595120px;}
.h50{height:42.300000px;}
.h2{height:44.236080px;}
.h55{height:48.600000px;}
.h54{height:48.636000px;}
.h4{height:49.518000px;}
.h4b{height:49.536000px;}
.h49{height:49.583118px;}
.h43{height:52.416000px;}
.h5a{height:52.920000px;}
.h39{height:53.709961px;}
.hc{height:54.000000px;}
.hd{height:54.036000px;}
.h3c{height:54.720000px;}
.h47{height:54.756000px;}
.h37{height:54.799920px;}
.h32{height:54.900000px;}
.h63{height:54.984375px;}
.h40{height:56.880000px;}
.h2a{height:59.439023px;}
.h1a{height:60.609600px;}
.h1b{height:60.742080px;}
.h2e{height:61.423863px;}
.he{height:63.360000px;}
.ha{height:65.880000px;}
.h2b{height:65.884219px;}
.hb{height:66.024000px;}
.h34{height:66.168000px;}
.h18{height:67.824844px;}
.h1c{height:68.084282px;}
.h52{height:68.554688px;}
.h23{height:71.305920px;}
.h15{height:71.613281px;}
.h3a{height:72.900000px;}
.h46{height:72.936000px;}
.h13{height:74.004654px;}
.h14{height:74.953125px;}
.h16{height:77.342344px;}
.h20{height:79.740000px;}
.h12{height:79.925027px;}
.h35{height:80.100000px;}
.h10{height:87.716160px;}
.h5c{height:88.200000px;}
.h41{height:91.080000px;}
.hf{height:91.177734px;}
.h29{height:91.620000px;}
.h56{height:97.200000px;}
.h11{height:98.426190px;}
.h7{height:98.928000px;}
.h22{height:99.000000px;}
.h3f{height:109.476000px;}
.h1e{height:119.556000px;}
.h64{height:123.116836px;}
.h38{height:132.696000px;}
.h19{height:139.860000px;}
.h1f{height:154.980000px;}
.h3d{height:164.010000px;}
.h27{height:180.720000px;}
.h6{height:197.856000px;}
.h1d{height:219.630000px;}
.h5{height:255.270000px;}
.h28{height:352.515000px;}
.h25{height:847.185000px;}
.h4c{height:892.980000px;}
.h4d{height:893.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:5.256000px;}
.w8{width:6.336000px;}
.w9{width:6.516000px;}
.wd{width:7.056000px;}
.wa{width:7.236000px;}
.w17{width:10.296000px;}
.w26{width:11.376000px;}
.w32{width:11.700000px;}
.w45{width:12.420000px;}
.wf{width:12.456000px;}
.w41{width:17.820000px;}
.w40{width:18.360000px;}
.w3e{width:20.160000px;}
.w3d{width:20.340000px;}
.w3a{width:20.520000px;}
.w3b{width:20.556000px;}
.w3c{width:20.700000px;}
.w3f{width:20.736000px;}
.w39{width:21.060000px;}
.w2c{width:56.700000px;}
.w28{width:57.420000px;}
.w19{width:57.996000px;}
.w25{width:58.680000px;}
.w1b{width:59.076000px;}
.w1e{width:59.400000px;}
.w20{width:59.616000px;}
.w22{width:60.516000px;}
.w29{width:61.416000px;}
.w2d{width:61.776000px;}
.w4a{width:65.160000px;}
.w1f{width:69.660000px;}
.w1a{width:71.460000px;}
.w11{width:73.476000px;}
.w37{width:73.800000px;}
.w49{width:80.280000px;}
.w2e{width:81.540000px;}
.w2a{width:82.080000px;}
.w23{width:82.980000px;}
.w1d{width:83.736000px;}
.w21{width:83.880000px;}
.w1c{width:84.420000px;}
.w12{width:84.600000px;}
.w24{width:84.636000px;}
.w16{width:84.780000px;}
.w27{width:85.896000px;}
.w2b{width:86.616000px;}
.w14{width:88.956000px;}
.w13{width:94.680000px;}
.w48{width:109.296000px;}
.w10{width:112.320000px;}
.w18{width:126.900000px;}
.w15{width:145.116000px;}
.w47{width:148.716000px;}
.w6{width:231.690000px;}
.w42{width:243.570000px;}
.w36{width:254.370000px;}
.w35{width:254.550000px;}
.w34{width:255.270000px;}
.wb{width:264.810000px;}
.w38{width:275.070000px;}
.w33{width:275.970000px;}
.w46{width:313.995000px;}
.wc{width:410.115000px;}
.w7{width:466.995000px;}
.w4{width:513.285000px;}
.w3{width:662.910000px;}
.we{width:675.645000px;}
.w43{width:848.445000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w44{width:1092.750000px;}
.w31{width:1262.879981px;}
.w2f{width:1262.880000px;}
.w30{width:1263.000000px;}
.x0{left:0.000000px;}
.x5{left:5.400000px;}
.x9{left:6.840000px;}
.xb{left:8.100000px;}
.x3{left:10.800000px;}
.x1b{left:13.320000px;}
.x28{left:14.940000px;}
.x32{left:16.740000px;}
.x18{left:18.360000px;}
.x1d{left:19.440000px;}
.x20{left:20.700000px;}
.x19{left:23.040000px;}
.x3d{left:24.330000px;}
.x22{left:26.490000px;}
.x2c{left:28.800000px;}
.x3a{left:29.880000px;}
.x1f{left:31.680000px;}
.x23{left:32.790000px;}
.x12{left:34.740000px;}
.x3b{left:35.820000px;}
.x1c{left:37.080000px;}
.x2a{left:38.370000px;}
.x16{left:39.960000px;}
.x29{left:41.400000px;}
.x3e{left:42.660000px;}
.x2d{left:44.310000px;}
.x26{left:46.080000px;}
.x11{left:47.700000px;}
.x44{left:49.680000px;}
.x25{left:56.880000px;}
.x43{left:61.199981px;}
.x2b{left:66.600000px;}
.x2e{left:72.540000px;}
.xf{left:80.274000px;}
.x6e{left:86.400000px;}
.x15{left:97.776000px;}
.x1{left:108.035987px;}
.x8{left:110.376000px;}
.x30{left:119.016000px;}
.xc{left:126.035987px;}
.x13{left:135.035987px;}
.xd{left:144.035987px;}
.xe{left:162.029987px;}
.x2{left:190.470000px;}
.x17{left:210.810000px;}
.x31{left:246.630000px;}
.x14{left:263.379000px;}
.x1a{left:285.015000px;}
.x41{left:290.909981px;}
.x33{left:305.535000px;}
.x45{left:325.650000px;}
.x4{left:332.175000px;}
.xa{left:343.155000px;}
.x49{left:347.790000px;}
.x4a{left:369.030000px;}
.x1e{left:370.335000px;}
.x10{left:374.295000px;}
.x34{left:377.715000px;}
.x4b{left:390.270000px;}
.x6f{left:401.115000px;}
.x4c{left:411.555000px;}
.x6{left:433.154987px;}
.x2f{left:446.474987px;}
.x35{left:449.895000px;}
.x4d{left:454.215000px;}
.x21{left:465.915000px;}
.x4e{left:475.455000px;}
.x4f{left:496.695000px;}
.x36{left:509.685000px;}
.x3c{left:511.125000px;}
.x40{left:512.565000px;}
.x50{left:517.935000px;}
.x51{left:539.175000px;}
.x70{left:550.545000px;}
.x24{left:555.585000px;}
.x52{left:560.595000px;}
.x6d{left:570.885000px;}
.x46{left:581.655000px;}
.x37{left:595.005000px;}
.x53{left:603.435000px;}
.x54{left:624.315000px;}
.x55{left:645.555000px;}
.x71{left:660.570000px;}
.x56{left:667.005000px;}
.x38{left:679.650000px;}
.x3f{left:681.630000px;}
.x57{left:688.245000px;}
.x27{left:701.430000px;}
.x58{left:709.485000px;}
.x76{left:712.229987px;}
.x59{left:730.905000px;}
.x39{left:739.770000px;}
.x72{left:741.570000px;}
.x5a{left:752.145000px;}
.x77{left:769.829987px;}
.x73{left:772.169987px;}
.x5b{left:773.385000px;}
.x5c{left:794.805000px;}
.x74{left:806.009987px;}
.x75{left:812.309987px;}
.x5d{left:816.045000px;}
.x47{left:836.925000px;}
.x7{left:839.130000px;}
.x5e{left:858.705000px;}
.x5f{left:879.945000px;}
.x60{left:901.185000px;}
.x61{left:922.425000px;}
.x62{left:943.890000px;}
.x42{left:949.650000px;}
.x63{left:965.130000px;}
.x64{left:986.370000px;}
.x65{left:1007.610000px;}
.x66{left:1029.030000px;}
.x67{left:1050.270000px;}
.x68{left:1071.510000px;}
.x69{left:1090.590000px;}
.x48{left:1092.030000px;}
.x6a{left:1109.670000px;}
.x6b{left:1128.930000px;}
.x6c{left:1148.010000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.704000pt;}
.ls34{letter-spacing:-0.576000pt;}
.ls35{letter-spacing:-0.512000pt;}
.ls40{letter-spacing:-0.509333pt;}
.ls60{letter-spacing:-0.448000pt;}
.ls2c{letter-spacing:-0.320000pt;}
.ls1b{letter-spacing:-0.256000pt;}
.ls3d{letter-spacing:-0.240533pt;}
.ls61{letter-spacing:-0.215467pt;}
.ls53{letter-spacing:-0.209067pt;}
.ls58{letter-spacing:-0.205867pt;}
.ls54{letter-spacing:-0.203733pt;}
.ls1e{letter-spacing:-0.192000pt;}
.ls4b{letter-spacing:-0.181333pt;}
.ls55{letter-spacing:-0.155733pt;}
.ls56{letter-spacing:-0.150400pt;}
.ls3f{letter-spacing:-0.148267pt;}
.ls3{letter-spacing:-0.128000pt;}
.ls66{letter-spacing:-0.106133pt;}
.ls41{letter-spacing:-0.076800pt;}
.ls2{letter-spacing:-0.064000pt;}
.ls4a{letter-spacing:-0.061867pt;}
.ls1{letter-spacing:-0.054400pt;}
.ls68{letter-spacing:-0.048000pt;}
.ls42{letter-spacing:-0.017920pt;}
.ls33{letter-spacing:-0.010880pt;}
.ls47{letter-spacing:-0.007680pt;}
.ls0{letter-spacing:0.000000pt;}
.ls49{letter-spacing:0.007680pt;}
.ls59{letter-spacing:0.042880pt;}
.ls3e{letter-spacing:0.043520pt;}
.ls5{letter-spacing:0.064000pt;}
.ls52{letter-spacing:0.074133pt;}
.ls1a{letter-spacing:0.128000pt;}
.ls45{letter-spacing:0.161067pt;}
.ls65{letter-spacing:0.165120pt;}
.ls5e{letter-spacing:0.170667pt;}
.ls4e{letter-spacing:0.172267pt;}
.ls3b{letter-spacing:0.192000pt;}
.ls44{letter-spacing:0.207467pt;}
.ls24{letter-spacing:0.228267pt;}
.ls46{letter-spacing:0.252267pt;}
.ls1c{letter-spacing:0.256000pt;}
.ls5d{letter-spacing:0.281600pt;}
.ls57{letter-spacing:0.304533pt;}
.ls1d{letter-spacing:0.320000pt;}
.ls2b{letter-spacing:0.332800pt;}
.ls4c{letter-spacing:2.576640pt;}
.ls5a{letter-spacing:3.856640pt;}
.ls43{letter-spacing:5.776640pt;}
.ls2d{letter-spacing:7.056640pt;}
.ls4f{letter-spacing:7.696640pt;}
.ls1f{letter-spacing:14.096640pt;}
.ls5f{letter-spacing:14.848000pt;}
.ls67{letter-spacing:22.080000pt;}
.ls25{letter-spacing:22.720000pt;}
.ls31{letter-spacing:31.488000pt;}
.ls30{letter-spacing:32.128000pt;}
.ls2f{letter-spacing:32.768000pt;}
.ls39{letter-spacing:37.226667pt;}
.ls2e{letter-spacing:38.528000pt;}
.ls64{letter-spacing:40.426667pt;}
.ls38{letter-spacing:41.706667pt;}
.ls63{letter-spacing:42.843307pt;}
.ls62{letter-spacing:43.483307pt;}
.ls51{letter-spacing:44.123307pt;}
.ls5c{letter-spacing:44.763307pt;}
.ls8{letter-spacing:45.573120pt;}
.ls3a{letter-spacing:46.208000pt;}
.ls3c{letter-spacing:47.323307pt;}
.ls37{letter-spacing:47.963307pt;}
.ls32{letter-spacing:48.768000pt;}
.ls36{letter-spacing:49.243307pt;}
.ls50{letter-spacing:50.523307pt;}
.ls27{letter-spacing:50.666667pt;}
.ls5b{letter-spacing:51.163307pt;}
.ls2a{letter-spacing:52.751360pt;}
.ls12{letter-spacing:64.133120pt;}
.ls13{letter-spacing:64.773120pt;}
.ls10{letter-spacing:67.333120pt;}
.ls11{letter-spacing:67.973120pt;}
.lsf{letter-spacing:68.613120pt;}
.ls9{letter-spacing:69.253120pt;}
.ls18{letter-spacing:73.071787pt;}
.ls17{letter-spacing:73.711787pt;}
.ls15{letter-spacing:74.351787pt;}
.ls6{letter-spacing:75.013120pt;}
.lse{letter-spacing:76.911787pt;}
.lsb{letter-spacing:78.191787pt;}
.ls7{letter-spacing:78.831787pt;}
.ls14{letter-spacing:80.111787pt;}
.ls16{letter-spacing:80.751787pt;}
.lsa{letter-spacing:84.591787pt;}
.lsd{letter-spacing:85.893120pt;}
.ls19{letter-spacing:86.533120pt;}
.lsc{letter-spacing:91.653120pt;}
.ls21{letter-spacing:123.626667pt;}
.ls23{letter-spacing:127.466667pt;}
.ls22{letter-spacing:128.106667pt;}
.ls4d{letter-spacing:129.578667pt;}
.ls29{letter-spacing:131.712000pt;}
.ls20{letter-spacing:134.506667pt;}
.ls26{letter-spacing:142.186667pt;}
.ls28{letter-spacing:153.258667pt;}
.ls48{letter-spacing:153.984000pt;}
.ws13{word-spacing:-64.000000pt;}
.ws10{word-spacing:-58.880000pt;}
.ws1e{word-spacing:-53.120000pt;}
.ws31{word-spacing:-24.048747pt;}
.wsb{word-spacing:-21.252907pt;}
.ws25{word-spacing:-21.196907pt;}
.ws26{word-spacing:-21.098773pt;}
.ws2d{word-spacing:-21.067520pt;}
.ws1f{word-spacing:-21.016960pt;}
.ws12{word-spacing:-21.013760pt;}
.ws24{word-spacing:-20.843307pt;}
.ws30{word-spacing:-20.809173pt;}
.wsc{word-spacing:-17.625600pt;}
.ws15{word-spacing:-17.385067pt;}
.ws9{word-spacing:-16.640000pt;}
.ws8{word-spacing:-16.576000pt;}
.ws14{word-spacing:-16.512000pt;}
.ws6{word-spacing:-16.448000pt;}
.ws5{word-spacing:-16.384000pt;}
.ws1{word-spacing:-16.320000pt;}
.ws2{word-spacing:-16.256000pt;}
.ws3{word-spacing:-16.192000pt;}
.wsa{word-spacing:-16.128000pt;}
.ws7{word-spacing:-16.064000pt;}
.ws2f{word-spacing:-15.872000pt;}
.ws4{word-spacing:-15.616000pt;}
.wsf{word-spacing:-15.360000pt;}
.wse{word-spacing:-15.296000pt;}
.ws1c{word-spacing:-15.175467pt;}
.wsd{word-spacing:-15.104000pt;}
.ws16{word-spacing:-15.057920pt;}
.ws11{word-spacing:-15.014400pt;}
.ws1a{word-spacing:-14.996480pt;}
.ws19{word-spacing:-14.937600pt;}
.ws17{word-spacing:-14.866133pt;}
.ws18{word-spacing:-14.505067pt;}
.ws2b{word-spacing:-13.850133pt;}
.ws21{word-spacing:-13.545600pt;}
.ws2a{word-spacing:-13.395200pt;}
.ws29{word-spacing:-13.389867pt;}
.ws28{word-spacing:-13.341867pt;}
.ws2c{word-spacing:-13.339733pt;}
.ws27{word-spacing:-13.336533pt;}
.ws22{word-spacing:-12.240000pt;}
.ws32{word-spacing:-12.192000pt;}
.ws2e{word-spacing:-12.176000pt;}
.ws1d{word-spacing:-12.005120pt;}
.ws20{word-spacing:-11.943253pt;}
.ws1b{word-spacing:-11.141867pt;}
.ws23{word-spacing:-10.848000pt;}
.ws0{word-spacing:0.000000pt;}
._40{margin-left:-85.504000pt;}
._41{margin-left:-83.445333pt;}
._15{margin-left:-14.517333pt;}
._18{margin-left:-13.024000pt;}
._16{margin-left:-10.933333pt;}
._14{margin-left:-9.653333pt;}
._13{margin-left:-8.373333pt;}
._19{margin-left:-7.392000pt;}
._17{margin-left:-6.075093pt;}
._1a{margin-left:-4.997760pt;}
._1d{margin-left:-4.004907pt;}
._e{margin-left:-3.109760pt;}
._d{margin-left:-2.176000pt;}
._1{margin-left:-0.986240pt;}
._5{width:0.938667pt;}
._1b{width:1.929600pt;}
._1c{width:2.891733pt;}
._25{width:3.807147pt;}
._3{width:4.800000pt;}
._f{width:5.722240pt;}
._4{width:6.720000pt;}
._27{width:7.680000pt;}
._11{width:8.794240pt;}
._10{width:9.920000pt;}
._20{width:11.328000pt;}
._c{width:12.864000pt;}
._b{width:14.080000pt;}
._26{width:15.232000pt;}
._29{width:17.422720pt;}
._28{width:18.688000pt;}
._2f{width:19.601920pt;}
._2c{width:20.546773pt;}
._2b{width:21.486720pt;}
._2a{width:22.592000pt;}
._8{width:23.872000pt;}
._6{width:24.960000pt;}
._7{width:26.511573pt;}
._30{width:28.480000pt;}
._42{width:29.504000pt;}
._45{width:30.656000pt;}
._47{width:34.144853pt;}
._46{width:35.039147pt;}
._a{width:35.968000pt;}
._9{width:36.928000pt;}
._21{width:38.016000pt;}
._24{width:40.346240pt;}
._22{width:41.664000pt;}
._23{width:42.714240pt;}
._3b{width:43.845760pt;}
._1f{width:44.864000pt;}
._1e{width:45.760000pt;}
._43{width:49.984000pt;}
._44{width:50.880000pt;}
._2e{width:57.294507pt;}
._3c{width:62.053547pt;}
._33{width:77.568000pt;}
._35{width:78.814933pt;}
._3e{width:84.442240pt;}
._3d{width:85.568000pt;}
._3f{width:86.773333pt;}
._3a{width:94.394880pt;}
._32{width:99.744000pt;}
._38{width:125.193387pt;}
._37{width:128.322560pt;}
._31{width:130.861227pt;}
._39{width:148.650667pt;}
._2d{width:153.194667pt;}
._34{width:170.400000pt;}
._36{width:181.065600pt;}
._12{width:751.818667pt;}
._2{width:755.898667pt;}
._0{width:1192.404267pt;}
.fs4{font-size:40.320000pt;}
.fs0{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs9{font-size:53.120000pt;}
.fs7{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs8{font-size:69.120000pt;}
.fs6{font-size:85.120000pt;}
.fs3{font-size:96.000000pt;}
.fsa{font-size:106.880000pt;}
.fs2{font-size:192.000000pt;}
.y8{bottom:-11.360000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:1.280000pt;}
.y234{bottom:2.240000pt;}
.y11{bottom:2.400000pt;}
.y15{bottom:2.560000pt;}
.y1e8{bottom:3.200000pt;}
.ye1{bottom:3.360000pt;}
.y17a{bottom:3.386667pt;}
.y10a{bottom:3.400000pt;}
.y1ce{bottom:3.520000pt;}
.y3a{bottom:3.680000pt;}
.y249{bottom:3.840000pt;}
.y1a2{bottom:4.000000pt;}
.y1d6{bottom:4.160000pt;}
.y29d{bottom:4.320000pt;}
.y29f{bottom:4.480000pt;}
.y29b{bottom:4.640000pt;}
.y21b{bottom:4.800000pt;}
.y201{bottom:4.960000pt;}
.y1f5{bottom:5.120000pt;}
.y11a{bottom:5.280000pt;}
.y1ed{bottom:5.440000pt;}
.y1f8{bottom:5.600000pt;}
.y217{bottom:5.760000pt;}
.y21d{bottom:5.920000pt;}
.y104{bottom:6.280000pt;}
.y25e{bottom:6.400000pt;}
.y24f{bottom:6.560000pt;}
.y252{bottom:6.586667pt;}
.ye9{bottom:7.200000pt;}
.y27d{bottom:8.800000pt;}
.y281{bottom:8.826667pt;}
.y288{bottom:8.840000pt;}
.y28{bottom:8.960000pt;}
.y23b{bottom:10.080000pt;}
.y1dc{bottom:10.880000pt;}
.y1d3{bottom:11.040000pt;}
.y299{bottom:11.080000pt;}
.y1db{bottom:11.520000pt;}
.y1cc{bottom:11.680000pt;}
.y27b{bottom:12.800000pt;}
.y24b{bottom:13.120000pt;}
.y6{bottom:13.760000pt;}
.y23a{bottom:14.080000pt;}
.y233{bottom:15.520000pt;}
.y297{bottom:17.000000pt;}
.y239{bottom:17.280000pt;}
.y238{bottom:17.760000pt;}
.y23e{bottom:17.960000pt;}
.y2b{bottom:18.240000pt;}
.y29{bottom:18.400000pt;}
.y30{bottom:18.440000pt;}
.y1e7{bottom:18.880000pt;}
.y298{bottom:18.920000pt;}
.y1d8{bottom:19.200000pt;}
.y1da{bottom:19.680000pt;}
.y22c{bottom:19.706667pt;}
.y1ca{bottom:19.840000pt;}
.y1d2{bottom:20.160000pt;}
.y22f{bottom:20.320000pt;}
.y11e{bottom:20.480000pt;}
.yfd{bottom:20.640000pt;}
.y109{bottom:20.680000pt;}
.y20e{bottom:20.800000pt;}
.y200{bottom:21.120000pt;}
.y1f4{bottom:21.280000pt;}
.y22b{bottom:21.306667pt;}
.y1a9{bottom:21.440000pt;}
.yef{bottom:21.600000pt;}
.y28a{bottom:21.760000pt;}
.y4{bottom:22.240000pt;}
.y20d{bottom:22.400000pt;}
.y38{bottom:22.560000pt;}
.y1e5{bottom:22.720000pt;}
.y1f7{bottom:23.520000pt;}
.y103{bottom:23.560000pt;}
.ye8{bottom:24.320000pt;}
.y5{bottom:26.240000pt;}
.y223{bottom:27.680000pt;}
.y36{bottom:27.706667pt;}
.y27{bottom:27.840000pt;}
.y2f{bottom:27.880000pt;}
.y1c7{bottom:28.000000pt;}
.y253{bottom:28.026667pt;}
.y268{bottom:28.040000pt;}
.y256{bottom:28.160000pt;}
.y251{bottom:28.186667pt;}
.y267{bottom:28.200000pt;}
.y1ba{bottom:28.640000pt;}
.y241{bottom:29.120000pt;}
.y232{bottom:30.240000pt;}
.y1e3{bottom:30.880000pt;}
.y23f{bottom:32.040000pt;}
.y23d{bottom:32.520000pt;}
.y219{bottom:33.786667pt;}
.y27f{bottom:34.560000pt;}
.y218{bottom:34.586667pt;}
.y216{bottom:35.066667pt;}
.y213{bottom:35.834667pt;}
.y220{bottom:35.840000pt;}
.y1c9{bottom:36.160000pt;}
.y225{bottom:37.280000pt;}
.y222{bottom:37.320000pt;}
.y212{bottom:37.434667pt;}
.y1f3{bottom:37.440000pt;}
.y22a{bottom:37.466667pt;}
.y111{bottom:37.760000pt;}
.yfc{bottom:38.720000pt;}
.y108{bottom:38.760000pt;}
.y11c{bottom:38.880000pt;}
.y1e4{bottom:39.040000pt;}
.y20c{bottom:39.200000pt;}
.yee{bottom:39.680000pt;}
.y119{bottom:39.840000pt;}
.y102{bottom:40.680000pt;}
.y39{bottom:41.280000pt;}
.ye7{bottom:41.600000pt;}
.y28c{bottom:41.920000pt;}
.y235{bottom:43.520000pt;}
.y209{bottom:44.040000pt;}
.y1c6{bottom:44.320000pt;}
.y231{bottom:44.800000pt;}
.y1f0{bottom:46.120000pt;}
.y14{bottom:46.240000pt;}
.y261{bottom:46.272000pt;}
.y1b9{bottom:46.880000pt;}
.y13{bottom:49.440000pt;}
.y260{bottom:49.472000pt;}
.y3{bottom:49.600000pt;}
.y240{bottom:49.632000pt;}
.y259{bottom:49.760000pt;}
.y284{bottom:50.240000pt;}
.y1c8{bottom:52.480000pt;}
.y116{bottom:53.120000pt;}
.y211{bottom:53.594667pt;}
.y1f2{bottom:53.600000pt;}
.y208{bottom:53.640000pt;}
.y1ee{bottom:54.280000pt;}
.y110{bottom:55.040000pt;}
.y11b{bottom:55.994667pt;}
.y122{bottom:56.000000pt;}
.y107{bottom:56.040000pt;}
.y118{bottom:56.954667pt;}
.yed{bottom:56.960000pt;}
.y1a0{bottom:57.000000pt;}
.y10{bottom:57.760000pt;}
.y101{bottom:57.960000pt;}
.ye6{bottom:58.880000pt;}
.y1cb{bottom:60.480000pt;}
.y2ba{bottom:61.792000pt;}
.y2{bottom:62.112000pt;}
.y1ef{bottom:62.440000pt;}
.y1b8{bottom:65.000000pt;}
.y283{bottom:65.920000pt;}
.yad{bottom:67.072000pt;}
.y202{bottom:68.320000pt;}
.y1cd{bottom:68.640000pt;}
.y210{bottom:69.754667pt;}
.y1ff{bottom:69.760000pt;}
.y207{bottom:69.800000pt;}
.y115{bottom:70.400000pt;}
.y2b9{bottom:70.752000pt;}
.y25a{bottom:71.200000pt;}
.y258{bottom:71.360000pt;}
.y10f{bottom:72.320000pt;}
.y1e0{bottom:72.832000pt;}
.y1ec{bottom:72.840000pt;}
.y121{bottom:73.280000pt;}
.yfb{bottom:74.080000pt;}
.y120{bottom:74.240000pt;}
.y106{bottom:74.280000pt;}
.y1{bottom:74.592000pt;}
.yec{bottom:75.040000pt;}
.y1a3{bottom:75.072000pt;}
.y100{bottom:75.240000pt;}
.y1a8{bottom:75.994667pt;}
.ye5{bottom:76.000000pt;}
.y178{bottom:77.632000pt;}
.yf7{bottom:77.920000pt;}
.yde{bottom:78.432000pt;}
.y1b7{bottom:83.240000pt;}
.y1fe{bottom:85.920000pt;}
.yac{bottom:85.952000pt;}
.y206{bottom:86.120000pt;}
.y117{bottom:86.752000pt;}
.y114{bottom:87.520000pt;}
.y2f2{bottom:87.712000pt;}
.y10e{bottom:89.440000pt;}
.y2b8{bottom:89.472000pt;}
.y1eb{bottom:89.640000pt;}
.y214{bottom:90.752000pt;}
.y14b{bottom:91.392000pt;}
.y105{bottom:91.400000pt;}
.y1df{bottom:91.552000pt;}
.yeb{bottom:92.320000pt;}
.yff{bottom:92.360000pt;}
.ye4{bottom:93.280000pt;}
.y19f{bottom:93.320000pt;}
.y1a7{bottom:94.234667pt;}
.yf6{bottom:95.200000pt;}
.y2d5{bottom:95.552000pt;}
.ydd{bottom:97.152000pt;}
.y177{bottom:97.952000pt;}
.y1b6{bottom:100.520000pt;}
.y1fd{bottom:102.240000pt;}
.yab{bottom:104.672000pt;}
.y113{bottom:105.760000pt;}
.y2f1{bottom:106.432000pt;}
.y1ea{bottom:106.600000pt;}
.y10d{bottom:106.720000pt;}
.y302{bottom:107.072000pt;}
.y2b7{bottom:108.352000pt;}
.y20f{bottom:109.472000pt;}
.yea{bottom:109.600000pt;}
.y1de{bottom:110.272000pt;}
.ye3{bottom:110.560000pt;}
.y19e{bottom:110.600000pt;}
.y14a{bottom:111.552000pt;}
.y1a6{bottom:112.314667pt;}
.yf5{bottom:112.480000pt;}
.y25d{bottom:114.592000pt;}
.y2d4{bottom:115.392000pt;}
.y1b5{bottom:117.640000pt;}
.y176{bottom:118.272000pt;}
.y1fc{bottom:118.426667pt;}
.yf{bottom:119.840000pt;}
.y112{bottom:122.880000pt;}
.yaa{bottom:123.552000pt;}
.y10c{bottom:123.840000pt;}
.ydc{bottom:123.872000pt;}
.y2f0{bottom:125.312000pt;}
.y301{bottom:125.952000pt;}
.y2b6{bottom:127.072000pt;}
.yfa{bottom:127.680000pt;}
.y19d{bottom:128.840000pt;}
.y1a5{bottom:129.594667pt;}
.yf4{bottom:129.600000pt;}
.y149{bottom:130.272000pt;}
.y1fb{bottom:134.586667pt;}
.y1b4{bottom:134.920000pt;}
.y2d3{bottom:135.226667pt;}
.y25c{bottom:136.826667pt;}
.y175{bottom:138.586667pt;}
.ya9{bottom:142.266667pt;}
.y2ef{bottom:144.026667pt;}
.y300{bottom:144.666667pt;}
.yf9{bottom:144.986667pt;}
.ydb{bottom:145.946667pt;}
.y1a4{bottom:146.874667pt;}
.yf3{bottom:146.906667pt;}
.y19c{bottom:146.920000pt;}
.y148{bottom:148.986667pt;}
.y1b3{bottom:153.000000pt;}
.y2d2{bottom:153.946667pt;}
.y289{bottom:155.226667pt;}
.y10b{bottom:158.266667pt;}
.y174{bottom:159.066667pt;}
.ya8{bottom:160.986667pt;}
.y25{bottom:161.626667pt;}
.y2ee{bottom:162.906667pt;}
.yf8{bottom:163.226667pt;}
.y2ff{bottom:163.546667pt;}
.yf2{bottom:164.186667pt;}
.yda{bottom:164.986667pt;}
.y19b{bottom:165.160000pt;}
.y147{bottom:167.866667pt;}
.y1dd{bottom:170.106667pt;}
.y1b2{bottom:171.240000pt;}
.y2b5{bottom:172.986667pt;}
.y2d1{bottom:173.786667pt;}
.ya7{bottom:179.866667pt;}
.y24{bottom:180.346667pt;}
.yf1{bottom:181.306667pt;}
.y2ed{bottom:181.626667pt;}
.ye{bottom:181.760000pt;}
.y19a{bottom:183.240000pt;}
.yd9{bottom:183.706667pt;}
.y1d9{bottom:185.946667pt;}
.y146{bottom:186.586667pt;}
.y173{bottom:187.386667pt;}
.y1b1{bottom:189.480000pt;}
.y20b{bottom:191.066667pt;}
.y2fe{bottom:191.706667pt;}
.y2d0{bottom:192.666667pt;}
.ya6{bottom:198.586667pt;}
.y23{bottom:199.226667pt;}
.y2ec{bottom:200.346667pt;}
.y199{bottom:200.520000pt;}
.y2b4{bottom:200.986667pt;}
.y25b{bottom:202.426667pt;}
.yd8{bottom:202.746667pt;}
.y287{bottom:202.906667pt;}
.y145{bottom:205.466667pt;}
.y1b0{bottom:207.560000pt;}
.y172{bottom:215.706667pt;}
.ya5{bottom:217.466667pt;}
.y22{bottom:217.946667pt;}
.y198{bottom:218.760000pt;}
.y1d7{bottom:219.066667pt;}
.y2cf{bottom:219.706667pt;}
.y2b3{bottom:219.866667pt;}
.yd7{bottom:221.466667pt;}
.y144{bottom:224.186667pt;}
.y257{bottom:224.706667pt;}
.y286{bottom:224.866667pt;}
.y1af{bottom:225.800000pt;}
.y2eb{bottom:227.546667pt;}
.y197{bottom:235.880000pt;}
.y171{bottom:236.026667pt;}
.ya4{bottom:236.186667pt;}
.y1a1{bottom:236.346667pt;}
.y21{bottom:236.826667pt;}
.y2b2{bottom:238.586667pt;}
.yd6{bottom:240.186667pt;}
.y270{bottom:241.986667pt;}
.y20a{bottom:242.426667pt;}
.y143{bottom:242.906667pt;}
.y1ae{bottom:243.880000pt;}
.y316{bottom:246.266667pt;}
.y2ce{bottom:247.706667pt;}
.y196{bottom:254.120000pt;}
.ya3{bottom:254.906667pt;}
.y20{bottom:255.546667pt;}
.y170{bottom:256.026667pt;}
.y2ea{bottom:256.186667pt;}
.y2b1{bottom:257.306667pt;}
.y26f{bottom:257.666667pt;}
.yd5{bottom:259.226667pt;}
.y205{bottom:260.986667pt;}
.y142{bottom:261.786667pt;}
.y1ad{bottom:262.120000pt;}
.y315{bottom:264.986667pt;}
.y2cd{bottom:266.586667pt;}
.y1d5{bottom:268.506667pt;}
.y2e9{bottom:271.386667pt;}
.y195{bottom:272.360000pt;}
.y285{bottom:272.546667pt;}
.ya2{bottom:273.786667pt;}
.y1f{bottom:274.266667pt;}
.y16f{bottom:275.066667pt;}
.y2b0{bottom:276.186667pt;}
.yd4{bottom:277.946667pt;}
.y1ac{bottom:280.360000pt;}
.y141{bottom:280.506667pt;}
.y314{bottom:283.866667pt;}
.y58{bottom:284.026667pt;}
.y2cc{bottom:285.306667pt;}
.y1d4{bottom:286.426667pt;}
.y194{bottom:289.506667pt;}
.ya1{bottom:292.506667pt;}
.y1e{bottom:293.146667pt;}
.y16e{bottom:293.946667pt;}
.y282{bottom:294.466667pt;}
.y2af{bottom:294.906667pt;}
.y23c{bottom:295.546667pt;}
.yfe{bottom:296.666667pt;}
.yd3{bottom:296.986667pt;}
.y1ab{bottom:298.440000pt;}
.y140{bottom:299.426667pt;}
.y26e{bottom:301.506667pt;}
.y313{bottom:302.626667pt;}
.y57{bottom:302.786667pt;}
.y1d1{bottom:303.426667pt;}
.y2cb{bottom:304.226667pt;}
.y193{bottom:307.746667pt;}
.ya0{bottom:311.426667pt;}
.y255{bottom:311.746667pt;}
.y1d{bottom:311.906667pt;}
.y16d{bottom:313.026667pt;}
.y2ae{bottom:313.826667pt;}
.yd2{bottom:315.906667pt;}
.y13f{bottom:318.146667pt;}
.y7d{bottom:320.866667pt;}
.y312{bottom:321.506667pt;}
.y2ca{bottom:322.946667pt;}
.y192{bottom:325.826667pt;}
.y56{bottom:328.226667pt;}
.y9f{bottom:330.146667pt;}
.y1c{bottom:330.786667pt;}
.y16c{bottom:332.066667pt;}
.yd1{bottom:334.626667pt;}
.yd{bottom:334.946667pt;}
.y1d0{bottom:336.706667pt;}
.y13e{bottom:336.866667pt;}
.y7c{bottom:339.746667pt;}
.y237{bottom:340.226667pt;}
.y2ad{bottom:340.866667pt;}
.y2c9{bottom:341.666667pt;}
.y191{bottom:344.066667pt;}
.y26d{bottom:345.346667pt;}
.y9e{bottom:348.866667pt;}
.y1b{bottom:349.506667pt;}
.y16b{bottom:350.946667pt;}
.y55{bottom:353.666667pt;}
.y254{bottom:355.586667pt;}
.y13d{bottom:355.746667pt;}
.y2c8{bottom:356.706667pt;}
.y7b{bottom:358.466667pt;}
.y204{bottom:358.946667pt;}
.y190{bottom:362.306667pt;}
.y9d{bottom:367.746667pt;}
.y1a{bottom:368.226667pt;}
.y16a{bottom:369.986667pt;}
.y236{bottom:370.146667pt;}
.y1cf{bottom:371.426667pt;}
.yd0{bottom:372.386667pt;}
.y280{bottom:373.506667pt;}
.y13c{bottom:374.466667pt;}
.y7a{bottom:377.346667pt;}
.y250{bottom:377.826667pt;}
.y54{bottom:379.106667pt;}
.y18f{bottom:379.426667pt;}
.y9c{bottom:386.466667pt;}
.y19{bottom:387.106667pt;}
.y1c5{bottom:388.386667pt;}
.y169{bottom:389.026667pt;}
.y26c{bottom:389.213333pt;}
.ycf{bottom:391.426667pt;}
.y13b{bottom:393.346667pt;}
.y2ac{bottom:395.106667pt;}
.y27e{bottom:395.453333pt;}
.y79{bottom:396.066667pt;}
.y311{bottom:396.546667pt;}
.y18e{bottom:397.666667pt;}
.yf0{bottom:403.586667pt;}
.y53{bottom:404.546667pt;}
.y9b{bottom:405.346667pt;}
.y18{bottom:407.106667pt;}
.y168{bottom:407.746667pt;}
.y203{bottom:408.226667pt;}
.yce{bottom:410.146667pt;}
.y26b{bottom:411.613333pt;}
.y13a{bottom:412.066667pt;}
.y78{bottom:414.786667pt;}
.y310{bottom:415.426667pt;}
.y18d{bottom:415.746667pt;}
.y230{bottom:419.586667pt;}
.y2ab{bottom:420.226667pt;}
.y24e{bottom:421.853333pt;}
.y17{bottom:423.266667pt;}
.y9a{bottom:424.066667pt;}
.y167{bottom:426.626667pt;}
.ycd{bottom:429.186667pt;}
.y52{bottom:430.146667pt;}
.y1fa{bottom:430.306667pt;}
.y139{bottom:430.786667pt;}
.y77{bottom:433.666667pt;}
.y18c{bottom:433.986667pt;}
.y30f{bottom:434.146667pt;}
.y16{bottom:439.586667pt;}
.y99{bottom:442.786667pt;}
.y27c{bottom:443.133333pt;}
.y24d{bottom:444.093333pt;}
.y166{bottom:445.666667pt;}
.ycc{bottom:447.906667pt;}
.y138{bottom:450.626667pt;}
.y18b{bottom:452.226667pt;}
.y76{bottom:452.386667pt;}
.y37{bottom:452.706667pt;}
.y30e{bottom:452.866667pt;}
.y26a{bottom:455.453333pt;}
.y51{bottom:455.586667pt;}
.y2aa{bottom:461.186667pt;}
.y98{bottom:461.666667pt;}
.y27a{bottom:465.053333pt;}
.ycb{bottom:466.626667pt;}
.y137{bottom:469.506667pt;}
.y18a{bottom:470.306667pt;}
.y75{bottom:471.266667pt;}
.y30d{bottom:471.746667pt;}
.y165{bottom:473.666667pt;}
.y22e{bottom:476.546667pt;}
.y269{bottom:477.693333pt;}
.y97{bottom:480.386667pt;}
.y50{bottom:481.026667pt;}
.y2a9{bottom:481.986667pt;}
.y24c{bottom:482.333333pt;}
.yca{bottom:485.506667pt;}
.y1c4{bottom:487.746667pt;}
.y136{bottom:488.226667pt;}
.y189{bottom:488.546667pt;}
.y74{bottom:489.986667pt;}
.y30c{bottom:490.466667pt;}
.y164{bottom:495.106667pt;}
.y96{bottom:499.266667pt;}
.y2a8{bottom:500.226667pt;}
.y24a{bottom:501.853333pt;}
.yc9{bottom:504.226667pt;}
.y279{bottom:504.413333pt;}
.y4f{bottom:506.466667pt;}
.y188{bottom:506.626667pt;}
.y135{bottom:507.106667pt;}
.y73{bottom:508.706667pt;}
.y30b{bottom:509.346667pt;}
.y22d{bottom:509.666667pt;}
.y35{bottom:511.106667pt;}
.y163{bottom:513.986667pt;}
.y95{bottom:517.986667pt;}
.y2a7{bottom:518.466667pt;}
.y1c3{bottom:521.346667pt;}
.y266{bottom:521.533333pt;}
.yc8{bottom:523.106667pt;}
.y187{bottom:523.946667pt;}
.y278{bottom:524.893333pt;}
.y134{bottom:525.826667pt;}
.y72{bottom:527.586667pt;}
.y30a{bottom:528.066667pt;}
.y229{bottom:528.226667pt;}
.y4e{bottom:531.906667pt;}
.y162{bottom:532.706667pt;}
.y2a6{bottom:536.573333pt;}
.y94{bottom:536.733333pt;}
.y248{bottom:540.093333pt;}
.y1c2{bottom:541.693333pt;}
.yc7{bottom:541.853333pt;}
.y186{bottom:542.186667pt;}
.y277{bottom:544.893333pt;}
.y71{bottom:546.333333pt;}
.y309{bottom:546.813333pt;}
.y2c7{bottom:550.813333pt;}
.y161{bottom:551.453333pt;}
.y133{bottom:554.013333pt;}
.y2a5{bottom:555.453333pt;}
.y93{bottom:555.613333pt;}
.y4d{bottom:557.373333pt;}
.y185{bottom:560.266667pt;}
.y1c1{bottom:560.413333pt;}
.yc6{bottom:560.573333pt;}
.y34{bottom:561.053333pt;}
.y247{bottom:563.653333pt;}
.y70{bottom:565.213333pt;}
.y265{bottom:565.413333pt;}
.y308{bottom:565.693333pt;}
.y160{bottom:570.653333pt;}
.y2c6{bottom:570.973333pt;}
.y92{bottom:574.333333pt;}
.y2a4{bottom:574.973333pt;}
.y4c{bottom:576.093333pt;}
.y1f9{bottom:576.733333pt;}
.y228{bottom:577.533333pt;}
.y184{bottom:578.506667pt;}
.y1c0{bottom:579.133333pt;}
.yc5{bottom:579.453333pt;}
.y132{bottom:582.013333pt;}
.y276{bottom:582.533333pt;}
.y6f{bottom:583.933333pt;}
.y246{bottom:583.973333pt;}
.y307{bottom:584.413333pt;}
.y264{bottom:587.653333pt;}
.y2c5{bottom:589.693333pt;}
.y91{bottom:593.213333pt;}
.y183{bottom:595.786667pt;}
.y1bf{bottom:598.013333pt;}
.yc4{bottom:598.173333pt;}
.y15f{bottom:598.653333pt;}
.ye2{bottom:599.453333pt;}
.y131{bottom:600.733333pt;}
.y275{bottom:601.253333pt;}
.y4b{bottom:601.533333pt;}
.y6e{bottom:602.653333pt;}
.y306{bottom:603.293333pt;}
.y245{bottom:604.133333pt;}
.y2a3{bottom:606.973333pt;}
.y2c4{bottom:608.413333pt;}
.y227{bottom:610.653333pt;}
.y33{bottom:611.133333pt;}
.y90{bottom:611.933333pt;}
.y182{bottom:613.866667pt;}
.y1be{bottom:616.733333pt;}
.yc3{bottom:617.053333pt;}
.y130{bottom:619.613333pt;}
.y15e{bottom:620.093333pt;}
.y274{bottom:620.133333pt;}
.y6d{bottom:621.533333pt;}
.y305{bottom:622.013333pt;}
.y244{bottom:622.853333pt;}
.y2a2{bottom:625.053333pt;}
.y1f6{bottom:626.013333pt;}
.y2e8{bottom:626.333333pt;}
.y4a{bottom:626.973333pt;}
.y2c3{bottom:627.293333pt;}
.y8f{bottom:630.653333pt;}
.y181{bottom:631.146667pt;}
.y263{bottom:631.653333pt;}
.yc2{bottom:635.773333pt;}
.y1bd{bottom:636.733333pt;}
.y12f{bottom:638.333333pt;}
.y273{bottom:638.853333pt;}
.y15d{bottom:638.973333pt;}
.y6c{bottom:640.253333pt;}
.y304{bottom:640.733333pt;}
.y243{bottom:641.573333pt;}
.y2a1{bottom:644.733333pt;}
.y2c2{bottom:646.013333pt;}
.y2e7{bottom:646.333333pt;}
.y180{bottom:648.266667pt;}
.y8e{bottom:649.533333pt;}
.y49{bottom:652.413333pt;}
.yc1{bottom:654.493333pt;}
.y12e{bottom:657.213333pt;}
.y272{bottom:657.573333pt;}
.y15c{bottom:657.693333pt;}
.y6b{bottom:659.133333pt;}
.y226{bottom:659.933333pt;}
.y32{bottom:661.053333pt;}
.y242{bottom:661.573333pt;}
.y1f1{bottom:662.653333pt;}
.y303{bottom:663.133333pt;}
.y2c1{bottom:664.893333pt;}
.y17f{bottom:666.506667pt;}
.y8d{bottom:668.253333pt;}
.yc0{bottom:673.373333pt;}
.y262{bottom:675.493333pt;}
.y12d{bottom:675.933333pt;}
.y15b{bottom:676.413333pt;}
.y1bc{bottom:676.573333pt;}
.y2a0{bottom:676.733333pt;}
.y271{bottom:677.573333pt;}
.y6a{bottom:677.853333pt;}
.y48{bottom:678.013333pt;}
.y224{bottom:678.653333pt;}
.y17e{bottom:684.746667pt;}
.y8c{bottom:687.133333pt;}
.y2c0{bottom:691.933333pt;}
.ybf{bottom:692.093333pt;}
.y12c{bottom:694.653333pt;}
.y15a{bottom:695.293333pt;}
.y1bb{bottom:695.613333pt;}
.y69{bottom:696.573333pt;}
.y2e6{bottom:701.533333pt;}
.y17d{bottom:702.826667pt;}
.y47{bottom:703.453333pt;}
.y8b{bottom:705.853333pt;}
.y29e{bottom:708.733333pt;}
.ybe{bottom:710.973333pt;}
.y31{bottom:711.133333pt;}
.y1aa{bottom:712.573333pt;}
.y12b{bottom:713.533333pt;}
.y159{bottom:714.013333pt;}
.y68{bottom:715.453333pt;}
.y2bf{bottom:719.933333pt;}
.y2e5{bottom:720.253333pt;}
.y17c{bottom:721.066667pt;}
.y2fd{bottom:722.973333pt;}
.ye0{bottom:724.413333pt;}
.y8a{bottom:724.573333pt;}
.y29c{bottom:727.613333pt;}
.y1e9{bottom:728.253333pt;}
.y46{bottom:728.893333pt;}
.ybd{bottom:729.693333pt;}
.y12a{bottom:732.253333pt;}
.y158{bottom:732.893333pt;}
.y67{bottom:734.173333pt;}
.y25f{bottom:736.480000pt;}
.y17b{bottom:738.186667pt;}
.y2be{bottom:738.813333pt;}
.y2e4{bottom:738.973333pt;}
.y89{bottom:743.453333pt;}
.y221{bottom:744.093333pt;}
.y29a{bottom:746.333333pt;}
.ydf{bottom:746.973333pt;}
.ybc{bottom:748.413333pt;}
.y129{bottom:751.133333pt;}
.y157{bottom:751.933333pt;}
.y66{bottom:753.053333pt;}
.y45{bottom:754.333333pt;}
.y2bd{bottom:757.533333pt;}
.y2e3{bottom:758.813333pt;}
.y2fc{bottom:760.573333pt;}
.y2e{bottom:761.053333pt;}
.y88{bottom:762.173333pt;}
.y296{bottom:764.093333pt;}
.ybb{bottom:767.293333pt;}
.y128{bottom:769.853333pt;}
.y65{bottom:771.773333pt;}
.y2bc{bottom:776.293333pt;}
.y2e2{bottom:778.693333pt;}
.y44{bottom:779.813333pt;}
.y156{bottom:780.293333pt;}
.y87{bottom:781.093333pt;}
.yba{bottom:786.053333pt;}
.y127{bottom:788.613333pt;}
.y64{bottom:790.533333pt;}
.y2bb{bottom:796.293333pt;}
.y2e1{bottom:798.533333pt;}
.y86{bottom:799.813333pt;}
.y295{bottom:800.133333pt;}
.yb9{bottom:804.933333pt;}
.y43{bottom:805.253333pt;}
.y2fb{bottom:806.533333pt;}
.y126{bottom:807.493333pt;}
.y155{bottom:808.613333pt;}
.y63{bottom:809.413333pt;}
.y21f{bottom:809.573333pt;}
.y2d{bottom:811.173333pt;}
.y2e0{bottom:818.373333pt;}
.y85{bottom:818.533333pt;}
.y294{bottom:820.133333pt;}
.yb8{bottom:823.653333pt;}
.y125{bottom:826.213333pt;}
.y62{bottom:828.133333pt;}
.y154{bottom:828.613333pt;}
.y42{bottom:830.693333pt;}
.y2fa{bottom:835.653333pt;}
.y2df{bottom:837.253333pt;}
.y84{bottom:837.413333pt;}
.y293{bottom:839.013333pt;}
.yb7{bottom:842.373333pt;}
.y124{bottom:846.213333pt;}
.y1e6{bottom:846.853333pt;}
.y61{bottom:847.013333pt;}
.y153{bottom:847.333333pt;}
.y2f9{bottom:854.373333pt;}
.y2de{bottom:855.973333pt;}
.y41{bottom:856.133333pt;}
.y292{bottom:857.733333pt;}
.y2c{bottom:861.093333pt;}
.yb6{bottom:861.253333pt;}
.y60{bottom:865.733333pt;}
.y152{bottom:867.333333pt;}
.y2f8{bottom:873.253333pt;}
.y83{bottom:875.013333pt;}
.y2dd{bottom:875.813333pt;}
.y291{bottom:876.453333pt;}
.y1e2{bottom:878.853333pt;}
.yb5{bottom:879.973333pt;}
.y40{bottom:881.573333pt;}
.y5f{bottom:884.453333pt;}
.y123{bottom:886.053333pt;}
.y21e{bottom:891.173333pt;}
.y2f7{bottom:891.973333pt;}
.y82{bottom:893.733333pt;}
.y2dc{bottom:894.533333pt;}
.y290{bottom:895.333333pt;}
.yb4{bottom:898.853333pt;}
.y11f{bottom:901.733333pt;}
.y5e{bottom:903.333333pt;}
.y151{bottom:905.893333pt;}
.y3f{bottom:907.013333pt;}
.y2f6{bottom:910.853333pt;}
.y2a{bottom:911.173333pt;}
.y81{bottom:912.453333pt;}
.y28f{bottom:914.053333pt;}
.y2db{bottom:914.373333pt;}
.yb3{bottom:917.573333pt;}
.y5d{bottom:922.053333pt;}
.y150{bottom:924.773333pt;}
.y2f5{bottom:929.573333pt;}
.y80{bottom:931.333333pt;}
.y3e{bottom:932.453333pt;}
.y28e{bottom:932.933333pt;}
.y2da{bottom:933.093333pt;}
.yb2{bottom:936.293333pt;}
.y5c{bottom:940.933333pt;}
.y21c{bottom:942.373333pt;}
.y14f{bottom:943.493333pt;}
.y7f{bottom:950.053333pt;}
.y28d{bottom:952.933333pt;}
.y2d9{bottom:953.093333pt;}
.y1e1{bottom:955.013333pt;}
.yb1{bottom:955.173333pt;}
.y2f4{bottom:956.293333pt;}
.y3d{bottom:957.893333pt;}
.y5b{bottom:959.653333pt;}
.y26{bottom:961.093333pt;}
.y21a{bottom:961.893333pt;}
.y14e{bottom:963.333333pt;}
.yc{bottom:966.693333pt;}
.y2d8{bottom:971.813333pt;}
.yb0{bottom:973.893333pt;}
.y7e{bottom:977.093333pt;}
.y5a{bottom:978.373333pt;}
.y215{bottom:979.333333pt;}
.y14d{bottom:982.053333pt;}
.yb{bottom:982.853333pt;}
.y3c{bottom:983.333333pt;}
.y2f3{bottom:983.493333pt;}
.y11d{bottom:990.533333pt;}
.y2d7{bottom:991.653333pt;}
.yaf{bottom:992.773333pt;}
.ya{bottom:999.173333pt;}
.y3b{bottom:1006.213333pt;}
.y59{bottom:1006.373333pt;}
.y179{bottom:1008.613333pt;}
.y14c{bottom:1010.213333pt;}
.y2d6{bottom:1010.373333pt;}
.yae{bottom:1011.520000pt;}
.y9{bottom:1015.360000pt;}
.y28b{bottom:1060.320000pt;}
.y12{bottom:1065.280000pt;}
.h4e{height:12.480000pt;}
.h9{height:12.640000pt;}
.h2f{height:16.160000pt;}
.h2c{height:16.320000pt;}
.h31{height:16.352000pt;}
.h44{height:16.800000pt;}
.h2d{height:17.120000pt;}
.h17{height:17.280000pt;}
.h24{height:17.312000pt;}
.h60{height:17.440000pt;}
.h62{height:17.600000pt;}
.h26{height:17.920000pt;}
.h42{height:18.080000pt;}
.h61{height:18.240000pt;}
.h45{height:18.720000pt;}
.h51{height:18.880000pt;}
.h4f{height:18.912000pt;}
.h5f{height:19.040000pt;}
.h59{height:21.280000pt;}
.h5b{height:21.312000pt;}
.h3e{height:21.440000pt;}
.h53{height:21.600000pt;}
.h57{height:21.632000pt;}
.h4a{height:29.280000pt;}
.h36{height:31.200000pt;}
.h5e{height:31.360000pt;}
.h5d{height:31.392000pt;}
.h48{height:32.320000pt;}
.h33{height:32.480000pt;}
.h30{height:32.640000pt;}
.h58{height:34.720000pt;}
.h21{height:35.392000pt;}
.h3b{height:36.000000pt;}
.h3{height:36.320000pt;}
.h8{height:36.973440pt;}
.h50{height:37.600000pt;}
.h2{height:39.320960pt;}
.h55{height:43.200000pt;}
.h54{height:43.232000pt;}
.h4{height:44.016000pt;}
.h4b{height:44.032000pt;}
.h49{height:44.073883pt;}
.h43{height:46.592000pt;}
.h5a{height:47.040000pt;}
.h39{height:47.742188pt;}
.hc{height:48.000000pt;}
.hd{height:48.032000pt;}
.h3c{height:48.640000pt;}
.h47{height:48.672000pt;}
.h37{height:48.711040pt;}
.h32{height:48.800000pt;}
.h63{height:48.875000pt;}
.h40{height:50.560000pt;}
.h2a{height:52.834688pt;}
.h1a{height:53.875200pt;}
.h1b{height:53.992960pt;}
.h2e{height:54.598989pt;}
.he{height:56.320000pt;}
.ha{height:58.560000pt;}
.h2b{height:58.563750pt;}
.hb{height:58.688000pt;}
.h34{height:58.816000pt;}
.h18{height:60.288750pt;}
.h1c{height:60.519362pt;}
.h52{height:60.937500pt;}
.h23{height:63.383040pt;}
.h15{height:63.656250pt;}
.h3a{height:64.800000pt;}
.h46{height:64.832000pt;}
.h13{height:65.781915pt;}
.h14{height:66.625000pt;}
.h16{height:68.748750pt;}
.h20{height:70.880000pt;}
.h12{height:71.044468pt;}
.h35{height:71.200000pt;}
.h10{height:77.969920pt;}
.h5c{height:78.400000pt;}
.h41{height:80.960000pt;}
.hf{height:81.046875pt;}
.h29{height:81.440000pt;}
.h56{height:86.400000pt;}
.h11{height:87.489947pt;}
.h7{height:87.936000pt;}
.h22{height:88.000000pt;}
.h3f{height:97.312000pt;}
.h1e{height:106.272000pt;}
.h64{height:109.437187pt;}
.h38{height:117.952000pt;}
.h19{height:124.320000pt;}
.h1f{height:137.760000pt;}
.h3d{height:145.786667pt;}
.h27{height:160.640000pt;}
.h6{height:175.872000pt;}
.h1d{height:195.226667pt;}
.h5{height:226.906667pt;}
.h28{height:313.346667pt;}
.h25{height:753.053333pt;}
.h4c{height:793.760000pt;}
.h4d{height:794.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:4.672000pt;}
.w8{width:5.632000pt;}
.w9{width:5.792000pt;}
.wd{width:6.272000pt;}
.wa{width:6.432000pt;}
.w17{width:9.152000pt;}
.w26{width:10.112000pt;}
.w32{width:10.400000pt;}
.w45{width:11.040000pt;}
.wf{width:11.072000pt;}
.w41{width:15.840000pt;}
.w40{width:16.320000pt;}
.w3e{width:17.920000pt;}
.w3d{width:18.080000pt;}
.w3a{width:18.240000pt;}
.w3b{width:18.272000pt;}
.w3c{width:18.400000pt;}
.w3f{width:18.432000pt;}
.w39{width:18.720000pt;}
.w2c{width:50.400000pt;}
.w28{width:51.040000pt;}
.w19{width:51.552000pt;}
.w25{width:52.160000pt;}
.w1b{width:52.512000pt;}
.w1e{width:52.800000pt;}
.w20{width:52.992000pt;}
.w22{width:53.792000pt;}
.w29{width:54.592000pt;}
.w2d{width:54.912000pt;}
.w4a{width:57.920000pt;}
.w1f{width:61.920000pt;}
.w1a{width:63.520000pt;}
.w11{width:65.312000pt;}
.w37{width:65.600000pt;}
.w49{width:71.360000pt;}
.w2e{width:72.480000pt;}
.w2a{width:72.960000pt;}
.w23{width:73.760000pt;}
.w1d{width:74.432000pt;}
.w21{width:74.560000pt;}
.w1c{width:75.040000pt;}
.w12{width:75.200000pt;}
.w24{width:75.232000pt;}
.w16{width:75.360000pt;}
.w27{width:76.352000pt;}
.w2b{width:76.992000pt;}
.w14{width:79.072000pt;}
.w13{width:84.160000pt;}
.w48{width:97.152000pt;}
.w10{width:99.840000pt;}
.w18{width:112.800000pt;}
.w15{width:128.992000pt;}
.w47{width:132.192000pt;}
.w6{width:205.946667pt;}
.w42{width:216.506667pt;}
.w36{width:226.106667pt;}
.w35{width:226.266667pt;}
.w34{width:226.906667pt;}
.wb{width:235.386667pt;}
.w38{width:244.506667pt;}
.w33{width:245.306667pt;}
.w46{width:279.106667pt;}
.wc{width:364.546667pt;}
.w7{width:415.106667pt;}
.w4{width:456.253333pt;}
.w3{width:589.253333pt;}
.we{width:600.573333pt;}
.w43{width:754.173333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w44{width:971.333333pt;}
.w31{width:1122.559983pt;}
.w2f{width:1122.560000pt;}
.w30{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x5{left:4.800000pt;}
.x9{left:6.080000pt;}
.xb{left:7.200000pt;}
.x3{left:9.600000pt;}
.x1b{left:11.840000pt;}
.x28{left:13.280000pt;}
.x32{left:14.880000pt;}
.x18{left:16.320000pt;}
.x1d{left:17.280000pt;}
.x20{left:18.400000pt;}
.x19{left:20.480000pt;}
.x3d{left:21.626667pt;}
.x22{left:23.546667pt;}
.x2c{left:25.600000pt;}
.x3a{left:26.560000pt;}
.x1f{left:28.160000pt;}
.x23{left:29.146667pt;}
.x12{left:30.880000pt;}
.x3b{left:31.840000pt;}
.x1c{left:32.960000pt;}
.x2a{left:34.106667pt;}
.x16{left:35.520000pt;}
.x29{left:36.800000pt;}
.x3e{left:37.920000pt;}
.x2d{left:39.386667pt;}
.x26{left:40.960000pt;}
.x11{left:42.400000pt;}
.x44{left:44.160000pt;}
.x25{left:50.560000pt;}
.x43{left:54.399983pt;}
.x2b{left:59.200000pt;}
.x2e{left:64.480000pt;}
.xf{left:71.354667pt;}
.x6e{left:76.800000pt;}
.x15{left:86.912000pt;}
.x1{left:96.031988pt;}
.x8{left:98.112000pt;}
.x30{left:105.792000pt;}
.xc{left:112.031988pt;}
.x13{left:120.031988pt;}
.xd{left:128.031988pt;}
.xe{left:144.026655pt;}
.x2{left:169.306667pt;}
.x17{left:187.386667pt;}
.x31{left:219.226667pt;}
.x14{left:234.114667pt;}
.x1a{left:253.346667pt;}
.x41{left:258.586650pt;}
.x33{left:271.586667pt;}
.x45{left:289.466667pt;}
.x4{left:295.266667pt;}
.xa{left:305.026667pt;}
.x49{left:309.146667pt;}
.x4a{left:328.026667pt;}
.x1e{left:329.186667pt;}
.x10{left:332.706667pt;}
.x34{left:335.746667pt;}
.x4b{left:346.906667pt;}
.x6f{left:356.546667pt;}
.x4c{left:365.826667pt;}
.x6{left:385.026655pt;}
.x2f{left:396.866655pt;}
.x35{left:399.906667pt;}
.x4d{left:403.746667pt;}
.x21{left:414.146667pt;}
.x4e{left:422.626667pt;}
.x4f{left:441.506667pt;}
.x36{left:453.053333pt;}
.x3c{left:454.333333pt;}
.x40{left:455.613333pt;}
.x50{left:460.386667pt;}
.x51{left:479.266667pt;}
.x70{left:489.373333pt;}
.x24{left:493.853333pt;}
.x52{left:498.306667pt;}
.x6d{left:507.453333pt;}
.x46{left:517.026667pt;}
.x37{left:528.893333pt;}
.x53{left:536.386667pt;}
.x54{left:554.946667pt;}
.x55{left:573.826667pt;}
.x71{left:587.173333pt;}
.x56{left:592.893333pt;}
.x38{left:604.133333pt;}
.x3f{left:605.893333pt;}
.x57{left:611.773333pt;}
.x27{left:623.493333pt;}
.x58{left:630.653333pt;}
.x76{left:633.093322pt;}
.x59{left:649.693333pt;}
.x39{left:657.573333pt;}
.x72{left:659.173333pt;}
.x5a{left:668.573333pt;}
.x77{left:684.293322pt;}
.x73{left:686.373322pt;}
.x5b{left:687.453333pt;}
.x5c{left:706.493333pt;}
.x74{left:716.453322pt;}
.x75{left:722.053322pt;}
.x5d{left:725.373333pt;}
.x47{left:743.933333pt;}
.x7{left:745.893333pt;}
.x5e{left:763.293333pt;}
.x5f{left:782.173333pt;}
.x60{left:801.053333pt;}
.x61{left:819.933333pt;}
.x62{left:839.013333pt;}
.x42{left:844.133333pt;}
.x63{left:857.893333pt;}
.x64{left:876.773333pt;}
.x65{left:895.653333pt;}
.x66{left:914.693333pt;}
.x67{left:933.573333pt;}
.x68{left:952.453333pt;}
.x69{left:969.413333pt;}
.x48{left:970.693333pt;}
.x6a{left:986.373333pt;}
.x6b{left:1003.493333pt;}
.x6c{left:1020.453333pt;}
}




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