
    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_7c92643d4866d0e6cc4266f8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.002930;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_9cc0f1bbe5be6e556c7721f5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.895996;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_811889dae8684792e3bb1a75.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.873535;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_a1193fbbdddd030e0dbfc97e.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_652ddb07765388da5cef7c1e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_67f9ef9ecd0c47efd3a2d960.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_1a9c8dc8e86b865141b63494.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.861328;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_551ec729dd093a5ef3468505.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.002930;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_9f0a53bd20eb4e5a622b3733.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_927c19ed02b106a161204ee1.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_784beaab7ede89960fd10ec8.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_e0644b8b0995cead2ac9e794.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.760742;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_35160f772063425a65cc15c6.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.895996;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_e32b7d2b3e85963d2f74383e.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_1a66737299f20c0d2d6afefc.woff2')format("woff");}.fff{font-family:fff;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8{transform:matrix(0.000000,-0.249997,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249997,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249997,0.250000,0.000000,0,0);}
.me{transform:matrix(0.000000,-0.320134,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.320134,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.320134,0.250000,0.000000,0,0);}
.m6{transform:matrix(0.000000,-0.111354,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.111354,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.111354,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.000000,-0.101140,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.101140,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.101140,0.250000,0.000000,0,0);}
.m2{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);}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m10{transform:matrix(0.000000,-0.215394,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.215394,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.215394,0.250000,0.000000,0,0);}
.ma{transform:matrix(0.000000,-0.244224,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.244224,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.244224,0.250000,0.000000,0,0);}
.mc{transform:matrix(0.000000,-0.250654,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250654,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250654,0.250000,0.000000,0,0);}
.md{transform:matrix(0.195231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195231,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249347,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);}
.m7{transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.255913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255913,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.290166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290166,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.561271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561271,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.617955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617955,0.000000,0.000000,0.250000,0,0);}
.ve{vertical-align:-71.400000px;}
.v9{vertical-align:-33.960000px;}
.v10{vertical-align:-29.520000px;}
.v1{vertical-align:-7.200000px;}
.v3{vertical-align:-3.312000px;}
.v8{vertical-align:-1.570665px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:3.168000px;}
.vc{vertical-align:13.680000px;}
.v5{vertical-align:18.744148px;}
.v7{vertical-align:21.596382px;}
.v4{vertical-align:30.024059px;}
.vd{vertical-align:34.020000px;}
.v6{vertical-align:35.732195px;}
.vb{vertical-align:40.036249px;}
.vf{vertical-align:47.640000px;}
.va{vertical-align:64.129386px;}
.ls32{letter-spacing:-1.776000px;}
.ls2d{letter-spacing:-1.332000px;}
.ls47{letter-spacing:-0.876000px;}
.ls6{letter-spacing:-0.864000px;}
.ls28{letter-spacing:-0.756000px;}
.ls49{letter-spacing:-0.504000px;}
.ls48{letter-spacing:-0.402000px;}
.ls36{letter-spacing:-0.393000px;}
.lse{letter-spacing:-0.383400px;}
.ls9{letter-spacing:-0.376200px;}
.ls38{letter-spacing:-0.360000px;}
.ls4d{letter-spacing:-0.324600px;}
.lsf{letter-spacing:-0.310200px;}
.ls8{letter-spacing:-0.280200px;}
.ls10{letter-spacing:-0.239400px;}
.ls19{letter-spacing:-0.217200px;}
.ls1b{letter-spacing:-0.216000px;}
.ls1c{letter-spacing:-0.180000px;}
.ls4a{letter-spacing:-0.176683px;}
.ls11{letter-spacing:-0.166200px;}
.ls7{letter-spacing:-0.109200px;}
.ls53{letter-spacing:-0.106800px;}
.ls4b{letter-spacing:-0.105296px;}
.ls2e{letter-spacing:-0.097184px;}
.ls3d{letter-spacing:-0.094130px;}
.ls3c{letter-spacing:-0.091955px;}
.ls3f{letter-spacing:-0.091154px;}
.ls40{letter-spacing:-0.090916px;}
.ls25{letter-spacing:-0.084565px;}
.ls22{letter-spacing:-0.082719px;}
.ls3e{letter-spacing:-0.064599px;}
.ls41{letter-spacing:-0.064036px;}
.ls2f{letter-spacing:-0.058245px;}
.ls26{letter-spacing:-0.050397px;}
.ls23{letter-spacing:-0.049297px;}
.ls5{letter-spacing:-0.036000px;}
.ls31{letter-spacing:-0.033840px;}
.ls52{letter-spacing:-0.013100px;}
.ls0{letter-spacing:0.000000px;}
.ls24{letter-spacing:0.017352px;}
.ls27{letter-spacing:0.017739px;}
.ls30{letter-spacing:0.020418px;}
.ls4c{letter-spacing:0.037062px;}
.ls33{letter-spacing:0.039456px;}
.ls44{letter-spacing:0.041760px;}
.ls14{letter-spacing:0.046368px;}
.ls1a{letter-spacing:0.046380px;}
.ls3{letter-spacing:0.072000px;}
.ls2a{letter-spacing:0.077879px;}
.ls17{letter-spacing:0.090000px;}
.ls45{letter-spacing:0.097930px;}
.ls29{letter-spacing:0.103617px;}
.ls34{letter-spacing:0.104400px;}
.ls13{letter-spacing:0.129600px;}
.ls20{letter-spacing:0.141145px;}
.ls1{letter-spacing:0.144000px;}
.ls1e{letter-spacing:0.152008px;}
.ls54{letter-spacing:0.172224px;}
.lsa{letter-spacing:0.173376px;}
.ls12{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.232200px;}
.ls37{letter-spacing:0.234000px;}
.ls43{letter-spacing:0.273600px;}
.ls1d{letter-spacing:0.286560px;}
.ls39{letter-spacing:0.292224px;}
.ls42{letter-spacing:0.324000px;}
.ls3a{letter-spacing:0.406560px;}
.ls15{letter-spacing:0.507456px;}
.ls16{letter-spacing:1.227456px;}
.ls18{letter-spacing:1.260000px;}
.ls3b{letter-spacing:1.398240px;}
.ls50{letter-spacing:33.599808px;}
.ls4f{letter-spacing:33.671520px;}
.ls4e{letter-spacing:47.664000px;}
.ls35{letter-spacing:68.439456px;}
.ls2c{letter-spacing:69.769101px;}
.ls1f{letter-spacing:393.638304px;}
.lsc{letter-spacing:399.525696px;}
.ls21{letter-spacing:402.422273px;}
.lsb{letter-spacing:450.378240px;}
.ls2b{letter-spacing:463.117748px;}
.lsd{letter-spacing:520.485696px;}
.ls46{letter-spacing:840.785154px;}
.ls55{letter-spacing:1024.332000px;}
.ls51{letter-spacing:1183.452000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(102,0,102),0 0.015em rgb(102,0,102),0.015em 0 rgb(102,0,102),0 -0.015em  rgb(102,0,102);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(102,0,102);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2b{word-spacing:-120.240000px;}
.ws2c{word-spacing:-108.000000px;}
.wsb{word-spacing:-90.000000px;}
.ws33{word-spacing:-84.240000px;}
.ws1e{word-spacing:-76.097646px;}
.ws20{word-spacing:-32.576544px;}
.ws21{word-spacing:-30.800544px;}
.ws25{word-spacing:-27.408240px;}
.ws27{word-spacing:-24.624000px;}
.ws22{word-spacing:-24.588000px;}
.ws3b{word-spacing:-24.552000px;}
.ws23{word-spacing:-24.544944px;}
.ws28{word-spacing:-24.440544px;}
.ws1{word-spacing:-24.408000px;}
.ws2{word-spacing:-24.372000px;}
.ws4{word-spacing:-24.331344px;}
.ws26{word-spacing:-24.048000px;}
.ws24{word-spacing:-24.047544px;}
.ws35{word-spacing:-23.976000px;}
.ws34{word-spacing:-23.940000px;}
.ws19{word-spacing:-23.652000px;}
.ws3{word-spacing:-23.544000px;}
.ws1a{word-spacing:-23.076000px;}
.ws10{word-spacing:-21.674304px;}
.wsf{word-spacing:-21.641760px;}
.ws1f{word-spacing:-21.607920px;}
.wsa{word-spacing:-21.475560px;}
.ws9{word-spacing:-21.434904px;}
.ws8{word-spacing:-21.331560px;}
.ws7{word-spacing:-21.290904px;}
.ws2e{word-spacing:-21.272304px;}
.ws2d{word-spacing:-20.798304px;}
.wse{word-spacing:-20.418924px;}
.wsd{word-spacing:-20.372544px;}
.wsc{word-spacing:-20.340000px;}
.ws3a{word-spacing:-20.056032px;}
.ws37{word-spacing:-20.016000px;}
.ws38{word-spacing:-17.614080px;}
.ws39{word-spacing:-16.613280px;}
.ws12{word-spacing:-13.307520px;}
.ws16{word-spacing:-12.356548px;}
.ws36{word-spacing:-12.311920px;}
.ws2f{word-spacing:-11.499206px;}
.ws31{word-spacing:-11.322523px;}
.ws30{word-spacing:-8.979990px;}
.ws29{word-spacing:-6.918533px;}
.ws2a{word-spacing:-6.858253px;}
.ws1c{word-spacing:-6.328622px;}
.ws1b{word-spacing:-6.328545px;}
.ws1d{word-spacing:-6.231361px;}
.ws15{word-spacing:-5.503827px;}
.ws17{word-spacing:-5.419262px;}
.ws11{word-spacing:-5.383691px;}
.ws13{word-spacing:-5.300972px;}
.ws0{word-spacing:0.000000px;}
.ws5{word-spacing:2.560680px;}
.ws6{word-spacing:2.656728px;}
.ws14{word-spacing:53.951482px;}
.ws18{word-spacing:55.183873px;}
.ws32{word-spacing:115.236766px;}
._2d{margin-left:-1079.913440px;}
._34{margin-left:-839.823842px;}
._2f{margin-left:-635.553843px;}
._31{margin-left:-626.224681px;}
._2a{margin-left:-598.953426px;}
._20{margin-left:-594.353116px;}
._18{margin-left:-516.877178px;}
._10{margin-left:-505.593246px;}
._22{margin-left:-349.774896px;}
._24{margin-left:-343.927008px;}
._1a{margin-left:-304.193076px;}
._1c{margin-left:-299.727890px;}
._12{margin-left:-297.553229px;}
._14{margin-left:-293.185507px;}
._29{margin-left:-17.826480px;}
._5{margin-left:-11.556000px;}
._8{margin-left:-10.476000px;}
._1d{margin-left:-9.108000px;}
._0{margin-left:-8.064000px;}
._d{margin-left:-6.488304px;}
._7{margin-left:-5.431032px;}
._9{margin-left:-4.302720px;}
._2{margin-left:-3.168000px;}
._1{margin-left:-2.016000px;}
._4{margin-left:-1.008000px;}
._3{width:1.152000px;}
._6{width:2.387280px;}
._b{width:3.480000px;}
._38{width:7.416000px;}
._28{width:14.016000px;}
._37{width:15.840000px;}
._35{width:30.026880px;}
._15{width:54.266176px;}
._27{width:56.568000px;}
._26{width:69.337872px;}
._32{width:115.908932px;}
._13{width:372.301372px;}
._1b{width:380.609211px;}
._33{width:421.742160px;}
._11{width:434.317138px;}
._23{width:437.240302px;}
._19{width:444.010556px;}
._e{width:504.124116px;}
._16{width:516.322984px;}
._21{width:523.108995px;}
._1e{width:616.499059px;}
._c{width:680.177760px;}
._a{width:686.544000px;}
._30{width:795.210891px;}
._f{width:864.010725px;}
._17{width:883.290971px;}
._2e{width:927.672429px;}
._25{width:999.096000px;}
._1f{width:1016.056686px;}
._36{width:1027.428000px;}
._2b{width:1077.823988px;}
._2c{width:1845.469261px;}
.fc6{color:rgb(255,0,0);}
.fc5{color:transparent;}
.fc4{color:rgb(102,0,102);}
.fc3{color:rgb(128,0,128);}
.fc2{color:rgb(137,137,137);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsf{font-size:2.671139px;}
.fs16{font-size:2.730745px;}
.fs1f{font-size:3.139918px;}
.fs31{font-size:5.705374px;}
.fs12{font-size:19.365796px;}
.fs19{font-size:19.797941px;}
.fs11{font-size:22.036768px;}
.fs18{font-size:22.528514px;}
.fs22{font-size:22.764550px;}
.fs23{font-size:22.764829px;}
.fs2f{font-size:24.669973px;}
.fs2c{font-size:24.886809px;}
.fs21{font-size:25.904206px;}
.fs14{font-size:27.712930px;}
.fs1b{font-size:28.331339px;}
.fs3a{font-size:29.457891px;}
.fs35{font-size:32.302122px;}
.fs24{font-size:32.576833px;}
.fs10{font-size:33.388536px;}
.fs30{font-size:33.922306px;}
.fs2e{font-size:34.011101px;}
.fs17{font-size:34.133595px;}
.fs2b{font-size:34.310040px;}
.fs2d{font-size:35.121544px;}
.fs20{font-size:39.249788px;}
.fs34{font-size:41.364049px;}
.fs38{font-size:44.287481px;}
.fs15{font-size:44.406641px;}
.fs1a{font-size:44.448016px;}
.fs1c{font-size:45.397567px;}
.fs39{font-size:47.011708px;}
.fs33{font-size:47.069066px;}
.fs13{font-size:47.868777px;}
.fs25{font-size:52.201073px;}
.fs36{font-size:59.192970px;}
.fs3d{font-size:59.760000px;}
.fs3c{font-size:63.360000px;}
.fs32{font-size:71.315684px;}
.fs3{font-size:72.000000px;}
.fs3b{font-size:72.144000px;}
.fs1d{font-size:84.240000px;}
.fs1e{font-size:84.384000px;}
.fsd{font-size:90.000000px;}
.fse{font-size:90.144000px;}
.fs37{font-size:94.849622px;}
.fs9{font-size:95.760000px;}
.fs8{font-size:95.904000px;}
.fs1{font-size:108.000000px;}
.fs2{font-size:108.144000px;}
.fs5{font-size:120.240000px;}
.fs6{font-size:120.384000px;}
.fs0{font-size:144.000000px;}
.fsa{font-size:144.144000px;}
.fsb{font-size:167.760000px;}
.fsc{font-size:167.904000px;}
.fs4{font-size:192.240000px;}
.fs28{font-size:216.000000px;}
.fs29{font-size:216.144000px;}
.fs7{font-size:264.240000px;}
.fs2a{font-size:264.384000px;}
.fs26{font-size:396.144000px;}
.fs27{font-size:432.144000px;}
.y18f{bottom:-547.419856px;}
.y18e{bottom:-520.694321px;}
.y18d{bottom:-493.968786px;}
.y190{bottom:-479.884715px;}
.y18c{bottom:-467.243251px;}
.y191{bottom:-443.150119px;}
.y18b{bottom:-440.473100px;}
.y18a{bottom:-413.747565px;}
.y189{bottom:-376.685781px;}
.y186{bottom:-376.685777px;}
.y183{bottom:-366.706459px;}
.y188{bottom:-317.702213px;}
.y185{bottom:-314.460046px;}
.ybd{bottom:-262.009790px;}
.y9f{bottom:-256.297671px;}
.ybc{bottom:-249.218234px;}
.y9e{bottom:-243.785326px;}
.ybb{bottom:-236.426677px;}
.y9d{bottom:-231.272980px;}
.ybe{bottom:-229.692784px;}
.ya0{bottom:-224.679113px;}
.yba{bottom:-223.635121px;}
.y9c{bottom:-218.760635px;}
.ybf{bottom:-212.103505px;}
.yb9{bottom:-210.822210px;}
.ya1{bottom:-207.480732px;}
.y187{bottom:-206.308637px;}
.y184{bottom:-206.308633px;}
.y9b{bottom:-206.227401px;}
.yf4{bottom:-198.604905px;}
.yb8{bottom:-198.030654px;}
.y9a{bottom:-193.715055px;}
.y182{bottom:-184.208389px;}
.y17f{bottom:-184.208385px;}
.yf3{bottom:-183.880099px;}
.yb7{bottom:-180.291894px;}
.yb4{bottom:-180.291891px;}
.y99{bottom:-176.363498px;}
.y96{bottom:-176.363489px;}
.yb1{bottom:-175.515522px;}
.y17c{bottom:-174.199323px;}
.y93{bottom:-171.691377px;}
.yf2{bottom:-169.155293px;}
.yf5{bottom:-161.375690px;}
.y181{bottom:-159.758317px;}
.yf1{bottom:-154.405946px;}
.yb6{bottom:-152.060781px;}
.yb3{bottom:-150.508991px;}
.y98{bottom:-148.748605px;}
.y95{bottom:-147.230682px;}
.yf6{bottom:-141.153625px;}
.yf0{bottom:-139.681140px;}
.y17e{bottom:-126.084437px;}
.yef{bottom:-124.956335px;}
.yee{bottom:-104.537941px;}
.yeb{bottom:-104.537937px;}
.ye8{bottom:-99.040676px;}
.yb5{bottom:-98.744834px;}
.yb2{bottom:-98.744830px;}
.y97{bottom:-96.596425px;}
.y94{bottom:-96.596416px;}
.yb0{bottom:-88.167064px;}
.yad{bottom:-88.167061px;}
.y92{bottom:-86.249545px;}
.y8f{bottom:-86.249536px;}
.yaa{bottom:-83.376455px;}
.y8c{bottom:-81.563499px;}
.yaf{bottom:-76.471724px;}
.y91{bottom:-74.802524px;}
.yed{bottom:-72.046839px;}
.yea{bottom:-70.279858px;}
.yac{bottom:-60.349519px;}
.y8e{bottom:-59.037796px;}
.y180{bottom:-13.791834px;}
.y17d{bottom:-13.791829px;}
.yec{bottom:-10.791647px;}
.ye9{bottom:-10.693477px;}
.yae{bottom:-6.603774px;}
.yab{bottom:-6.603770px;}
.y90{bottom:-6.465274px;}
.y8d{bottom:-6.465265px;}
.y4a{bottom:-1.512000px;}
.y0{bottom:0.000000px;}
.ye7{bottom:1.479107px;}
.ye4{bottom:1.479111px;}
.y8b{bottom:3.879109px;}
.ya9{bottom:3.971437px;}
.y1cb{bottom:5.353882px;}
.y209{bottom:5.940000px;}
.ye1{bottom:6.878206px;}
.y17b{bottom:8.303064px;}
.y88{bottom:8.467596px;}
.ya6{bottom:8.662244px;}
.yc8{bottom:10.080000px;}
.y278{bottom:10.188000px;}
.y121{bottom:11.314200px;}
.y14e{bottom:12.549149px;}
.y122{bottom:12.659449px;}
.y14d{bottom:12.895950px;}
.y14c{bottom:14.580000px;}
.ye6{bottom:14.927681px;}
.y251{bottom:14.970000px;}
.y2b{bottom:15.264000px;}
.y22f{bottom:16.665000px;}
.y178{bottom:18.102576px;}
.y26e{bottom:19.296000px;}
.y8a{bottom:19.645848px;}
.ya8{bottom:20.089936px;}
.y206{bottom:24.840000px;}
.y260{bottom:26.136000px;}
.y14f{bottom:27.145171px;}
.y123{bottom:27.383762px;}
.y214{bottom:28.728000px;}
.yd{bottom:30.636000px;}
.y208{bottom:30.780000px;}
.y49{bottom:30.888000px;}
.y226{bottom:31.104000px;}
.y7{bottom:31.392000px;}
.y62{bottom:31.788000px;}
.y1a6{bottom:32.904000px;}
.ye3{bottom:33.500573px;}
.y279{bottom:34.416000px;}
.y20{bottom:38.592000px;}
.y1ca{bottom:39.289500px;}
.y195{bottom:40.356000px;}
.yc7{bottom:40.896000px;}
.y17a{bottom:41.980064px;}
.y1d1{bottom:42.842284px;}
.y277{bottom:43.128000px;}
.y14b{bottom:46.080000px;}
.y250{bottom:47.910000px;}
.y204{bottom:49.680000px;}
.y158{bottom:51.623526px;}
.y23a{bottom:51.765000px;}
.y229{bottom:51.810000px;}
.y244{bottom:51.840000px;}
.y26d{bottom:52.236000px;}
.y156{bottom:52.518727px;}
.y12b{bottom:52.980337px;}
.y157{bottom:53.014184px;}
.y207{bottom:55.620000px;}
.y25f{bottom:59.076000px;}
.y1a5{bottom:59.184000px;}
.y1bd{bottom:59.580000px;}
.y61{bottom:60.264000px;}
.y48{bottom:62.064000px;}
.y16b{bottom:62.712000px;}
.yc{bottom:63.072000px;}
.y225{bottom:63.504000px;}
.y159{bottom:65.043372px;}
.y194{bottom:65.736000px;}
.yc6{bottom:66.096000px;}
.y1d2{bottom:66.576685px;}
.y167{bottom:68.724000px;}
.y1e7{bottom:70.485000px;}
.y258{bottom:71.250000px;}
.y173{bottom:73.440000px;}
.y203{bottom:74.520000px;}
.y1ae{bottom:74.850000px;}
.y14a{bottom:74.880000px;}
.y276{bottom:76.068000px;}
.y265{bottom:76.392000px;}
.y249{bottom:78.945000px;}
.y236{bottom:79.308000px;}
.y205{bottom:80.460000px;}
.y1fe{bottom:80.490000px;}
.y1f7{bottom:80.535000px;}
.y1f1{bottom:80.565000px;}
.y1ed{bottom:80.610000px;}
.y20b{bottom:80.640000px;}
.y89{bottom:83.561861px;}
.y243{bottom:84.780000px;}
.y26c{bottom:85.176000px;}
.ya7{bottom:85.433647px;}
.y292{bottom:86.724000px;}
.y60{bottom:87.264000px;}
.y47{bottom:89.064000px;}
.y193{bottom:90.972000px;}
.yc5{bottom:91.296000px;}
.y16a{bottom:91.512000px;}
.y259{bottom:92.736000px;}
.y1f{bottom:92.772000px;}
.y22a{bottom:94.575000px;}
.y86{bottom:94.994955px;}
.ye5{bottom:95.343118px;}
.ye2{bottom:95.343122px;}
.yb{bottom:95.472000px;}
.y87{bottom:95.830492px;}
.y224{bottom:95.940000px;}
.ya4{bottom:97.121869px;}
.y10c{bottom:97.200000px;}
.ya5{bottom:97.968939px;}
.y202{bottom:99.360000px;}
.y232{bottom:99.390000px;}
.y15b{bottom:99.552714px;}
.y12a{bottom:100.425255px;}
.y166{bottom:101.124000px;}
.y1a4{bottom:101.880000px;}
.y85{bottom:103.587183px;}
.yfe{bottom:103.680000px;}
.y172{bottom:105.840000px;}
.ya3{bottom:105.905831px;}
.y23b{bottom:106.845000px;}
.ye0{bottom:107.515628px;}
.y155{bottom:108.927003px;}
.y264{bottom:109.332000px;}
.y235{bottom:111.744000px;}
.y257{bottom:112.860000px;}
.ydd{bottom:112.914724px;}
.y5f{bottom:114.264000px;}
.y291{bottom:115.524000px;}
.y46{bottom:116.064000px;}
.y192{bottom:116.172000px;}
.yc4{bottom:116.496000px;}
.y275{bottom:117.108000px;}
.y242{bottom:117.720000px;}
.y266{bottom:118.836000px;}
.y7c{bottom:120.312000px;}
.y201{bottom:124.200000px;}
.y17{bottom:125.712000px;}
.ydf{bottom:126.068883px;}
.y25a{bottom:127.836000px;}
.ya{bottom:127.872000px;}
.y223{bottom:128.340000px;}
.y1ea{bottom:129.390000px;}
.y1d0{bottom:131.460913px;}
.y149{bottom:132.516000px;}
.y10b{bottom:133.236000px;}
.yfd{bottom:136.116000px;}
.y22b{bottom:137.340000px;}
.y1b8{bottom:137.700000px;}
.y171{bottom:138.060000px;}
.y24a{bottom:138.420000px;}
.y261{bottom:139.068000px;}
.y5e{bottom:141.264000px;}
.y231{bottom:141.555000px;}
.yc3{bottom:141.696000px;}
.y263{bottom:142.272000px;}
.y165{bottom:142.524000px;}
.y45{bottom:143.064000px;}
.y234{bottom:144.144000px;}
.y290{bottom:144.324000px;}
.y118{bottom:145.188000px;}
.y129{bottom:147.819911px;}
.y238{bottom:148.140000px;}
.y200{bottom:149.040000px;}
.y169{bottom:149.148000px;}
.y274{bottom:150.045000px;}
.y267{bottom:150.225000px;}
.y241{bottom:150.660000px;}
.y23{bottom:150.990000px;}
.y7b{bottom:151.815000px;}
.y256{bottom:154.515000px;}
.y9{bottom:160.275000px;}
.y27{bottom:160.635000px;}
.y222{bottom:160.740000px;}
.y148{bottom:161.310000px;}
.y23c{bottom:161.895000px;}
.y25b{bottom:162.930000px;}
.y154{bottom:165.342631px;}
.y213{bottom:166.830000px;}
.yc2{bottom:166.890000px;}
.y5d{bottom:168.270000px;}
.y44{bottom:170.070000px;}
.y170{bottom:170.460000px;}
.y1ac{bottom:170.895000px;}
.y28f{bottom:173.160000px;}
.y1ff{bottom:173.880000px;}
.y1e{bottom:176.430000px;}
.y233{bottom:176.550000px;}
.y168{bottom:177.945000px;}
.y179{bottom:178.512300px;}
.y22c{bottom:180.105000px;}
.yd8{bottom:180.255000px;}
.y7a{bottom:180.615000px;}
.y268{bottom:181.620000px;}
.y273{bottom:182.985000px;}
.y230{bottom:183.675000px;}
.yd0{bottom:188.250000px;}
.y150{bottom:189.192875px;}
.y147{bottom:190.110000px;}
.y124{bottom:190.855775px;}
.yc1{bottom:192.135000px;}
.y26{bottom:193.035000px;}
.y221{bottom:193.140000px;}
.y270{bottom:194.370000px;}
.y128{bottom:195.231046px;}
.y5c{bottom:195.300000px;}
.y255{bottom:196.170000px;}
.y1a3{bottom:196.740000px;}
.y43{bottom:197.100000px;}
.y24b{bottom:197.895000px;}
.y25c{bottom:198.030000px;}
.y1fd{bottom:198.720000px;}
.y212{bottom:199.230000px;}
.yde{bottom:201.263558px;}
.y28e{bottom:201.960000px;}
.y16f{bottom:202.860000px;}
.y176{bottom:202.917755px;}
.y177{bottom:204.702426px;}
.y114{bottom:205.230000px;}
.y164{bottom:207.360000px;}
.y1cc{bottom:208.555398px;}
.y79{bottom:209.415000px;}
.y271{bottom:210.855000px;}
.y13{bottom:211.470000px;}
.yd7{bottom:212.655000px;}
.y269{bottom:212.970000px;}
.ydb{bottom:214.736756px;}
.ydc{bottom:215.816569px;}
.y1b2{bottom:215.820000px;}
.y11f{bottom:216.180000px;}
.y23d{bottom:216.975000px;}
.yc0{bottom:217.335000px;}
.y146{bottom:218.910000px;}
.y1cf{bottom:220.116971px;}
.y175{bottom:221.270181px;}
.y1c1{bottom:221.400000px;}
.y153{bottom:221.725588px;}
.y5b{bottom:222.300000px;}
.y22d{bottom:222.915000px;}
.y1fc{bottom:223.560000px;}
.y42{bottom:224.100000px;}
.yda{bottom:224.945954px;}
.y220{bottom:225.540000px;}
.y26f{bottom:226.050000px;}
.ya2{bottom:226.394998px;}
.y1d{bottom:227.880000px;}
.y28d{bottom:230.760000px;}
.y211{bottom:231.630000px;}
.y228{bottom:232.275000px;}
.y10f{bottom:232.920000px;}
.y25d{bottom:233.100000px;}
.y254{bottom:237.810000px;}
.y78{bottom:238.215000px;}
.y1a2{bottom:239.610000px;}
.y127{bottom:242.625702px;}
.y1c0{bottom:244.260000px;}
.y26a{bottom:244.365000px;}
.y1c2{bottom:244.440000px;}
.y145{bottom:247.710000px;}
.y16d{bottom:247.830000px;}
.y1fb{bottom:248.400000px;}
.y15{bottom:249.045000px;}
.y262{bottom:249.195000px;}
.y5a{bottom:249.300000px;}
.y41{bottom:251.100000px;}
.ycf{bottom:256.290000px;}
.yd6{bottom:256.830000px;}
.y24c{bottom:257.370000px;}
.y21f{bottom:257.970000px;}
.y28c{bottom:260.460000px;}
.y1b9{bottom:262.830000px;}
.y1b3{bottom:262.875000px;}
.y210{bottom:264.030000px;}
.y10e{bottom:265.320000px;}
.y22e{bottom:265.680000px;}
.y77{bottom:267.045000px;}
.y25e{bottom:268.200000px;}
.y227{bottom:269.100000px;}
.y23e{bottom:272.010000px;}
.y1fa{bottom:273.240000px;}
.y113{bottom:273.315000px;}
.y163{bottom:273.960000px;}
.y26b{bottom:275.730000px;}
.y59{bottom:276.300000px;}
.y144{bottom:276.555000px;}
.y40{bottom:278.100000px;}
.y152{bottom:278.133047px;}
.y1c{bottom:278.640000px;}
.y253{bottom:279.435000px;}
.y16c{bottom:280.260000px;}
.y11e{bottom:280.980000px;}
.y12{bottom:283.470000px;}
.y15a{bottom:285.698966px;}
.yd5{bottom:289.230000px;}
.y272{bottom:289.905000px;}
.y126{bottom:290.045077px;}
.y240{bottom:290.235000px;}
.y21e{bottom:290.370000px;}
.y28b{bottom:291.960000px;}
.y1a1{bottom:292.710000px;}
.y248{bottom:295.095000px;}
.y76{bottom:295.845000px;}
.y82{bottom:296.250000px;}
.y20f{bottom:296.460000px;}
.y10d{bottom:297.720000px;}
.y1f9{bottom:298.080000px;}
.y1be{bottom:299.550000px;}
.y24{bottom:300.495000px;}
.y239{bottom:301.395000px;}
.y58{bottom:303.300000px;}
.y3f{bottom:305.100000px;}
.y143{bottom:306.255000px;}
.y246{bottom:307.005000px;}
.y1ce{bottom:308.741838px;}
.y24d{bottom:316.875000px;}
.y6{bottom:319.605000px;}
.y28a{bottom:320.790000px;}
.y252{bottom:321.090000px;}
.y1bc{bottom:322.410000px;}
.y1bf{bottom:322.590000px;}
.y21d{bottom:322.770000px;}
.y1f8{bottom:322.920000px;}
.y75{bottom:324.645000px;}
.y247{bottom:324.825000px;}
.y1a0{bottom:324.930000px;}
.y23f{bottom:327.090000px;}
.y81{bottom:328.650000px;}
.y20e{bottom:328.860000px;}
.y1b{bottom:330.090000px;}
.y57{bottom:330.300000px;}
.y3e{bottom:332.100000px;}
.yd1{bottom:332.850000px;}
.y1d3{bottom:334.115957px;}
.y151{bottom:334.548675px;}
.y125{bottom:337.489171px;}
.y289{bottom:337.890000px;}
.y142{bottom:338.655000px;}
.y16e{bottom:340.590000px;}
.yf9{bottom:341.355000px;}
.y11d{bottom:345.810000px;}
.y162{bottom:345.960000px;}
.y1d4{bottom:347.247492px;}
.y1f6{bottom:347.760000px;}
.y115{bottom:349.890000px;}
.y19f{bottom:351.390000px;}
.y5{bottom:352.005000px;}
.y74{bottom:353.445000px;}
.y1e3{bottom:353.880000px;}
.y1bb{bottom:354.450000px;}
.y21c{bottom:355.170000px;}
.y11{bottom:355.500000px;}
.y56{bottom:357.330000px;}
.y3d{bottom:359.130000px;}
.y103{bottom:360.510000px;}
.y80{bottom:361.050000px;}
.y20d{bottom:361.260000px;}
.y117{bottom:366.375000px;}
.y288{bottom:369.390000px;}
.y13f{bottom:372.240000px;}
.y1f5{bottom:372.600000px;}
.y137{bottom:374.940000px;}
.y24e{bottom:376.350000px;}
.y19e{bottom:377.670000px;}
.y1e2{bottom:378.720000px;}
.y245{bottom:379.620000px;}
.y1ab{bottom:380.340000px;}
.y24f{bottom:381.420000px;}
.y73{bottom:382.245000px;}
.y110{bottom:383.325000px;}
.y1a{bottom:384.150000px;}
.y55{bottom:384.330000px;}
.y4{bottom:384.405000px;}
.y3c{bottom:386.130000px;}
.y21b{bottom:387.615000px;}
.y84{bottom:387.989996px;}
.yf8{bottom:392.940000px;}
.y7f{bottom:393.480000px;}
.y1cd{bottom:397.325117px;}
.y1e1{bottom:397.440000px;}
.y287{bottom:398.235000px;}
.yce{bottom:399.810000px;}
.y293{bottom:400.320000px;}
.y1b7{bottom:400.530000px;}
.y1ba{bottom:400.710000px;}
.y13e{bottom:401.040000px;}
.y25{bottom:403.455000px;}
.y136{bottom:407.340000px;}
.y11c{bottom:410.610000px;}
.y72{bottom:411.090000px;}
.y54{bottom:411.330000px;}
.y3b{bottom:413.130000px;}
.y161{bottom:416.190000px;}
.y3{bottom:416.850000px;}
.y21a{bottom:420.015000px;}
.y19d{bottom:420.045000px;}
.y174{bottom:422.009996px;}
.y1f4{bottom:422.280000px;}
.y102{bottom:425.340000px;}
.y286{bottom:427.035000px;}
.y10{bottom:427.500000px;}
.yfc{bottom:428.040000px;}
.y13d{bottom:429.840000px;}
.y1b6{bottom:432.570000px;}
.y21{bottom:433.185000px;}
.yf7{bottom:433.830000px;}
.y10a{bottom:435.450000px;}
.y19{bottom:438.270000px;}
.y53{bottom:438.330000px;}
.y135{bottom:439.740000px;}
.y71{bottom:439.890000px;}
.y3a{bottom:440.130000px;}
.y1f3{bottom:447.120000px;}
.y219{bottom:452.415000px;}
.y1b4{bottom:455.835000px;}
.y13c{bottom:458.640000px;}
.y1db{bottom:459.510000px;}
.y52{bottom:465.330000px;}
.y19c{bottom:465.690000px;}
.y39{bottom:467.130000px;}
.y2{bottom:467.250000px;}
.y109{bottom:467.850000px;}
.y70{bottom:468.690000px;}
.y1f2{bottom:471.960000px;}
.y134{bottom:472.140000px;}
.y108{bottom:474.150000px;}
.y11b{bottom:475.455000px;}
.ycd{bottom:476.385000px;}
.y7e{bottom:477.540000px;}
.y1b1{bottom:478.695000px;}
.y1b5{bottom:478.875000px;}
.yfb{bottom:479.085000px;}
.y160{bottom:480.990000px;}
.y1ad{bottom:481.860000px;}
.y27d{bottom:482.580000px;}
.y285{bottom:484.635000px;}
.y218{bottom:484.815000px;}
.y13b{bottom:487.470000px;}
.y1da{bottom:491.910000px;}
.y18{bottom:492.375000px;}
.y83{bottom:493.200000px;}
.y112{bottom:493.380000px;}
.y38{bottom:494.175000px;}
.y1f0{bottom:496.800000px;}
.y6f{bottom:497.490000px;}
.y19b{bottom:497.955000px;}
.y12f{bottom:498.885000px;}
.yf{bottom:499.530000px;}
.y100{bottom:501.945000px;}
.y133{bottom:504.570000px;}
.y7d{bottom:509.940000px;}
.y1{bottom:510.450000px;}
.y1b0{bottom:510.735000px;}
.y284{bottom:513.435000px;}
.y1c9{bottom:514.800000px;}
.y27c{bottom:514.980000px;}
.y13a{bottom:516.270000px;}
.y217{bottom:517.215000px;}
.y51{bottom:519.375000px;}
.y37{bottom:521.175000px;}
.y1ef{bottom:521.640000px;}
.y1d9{bottom:524.310000px;}
.y6e{bottom:526.290000px;}
.y22{bottom:527.400000px;}
.y104{bottom:535.965000px;}
.y12e{bottom:536.145000px;}
.y132{bottom:536.970000px;}
.yfa{bottom:538.635000px;}
.y11a{bottom:540.255000px;}
.y19a{bottom:540.285000px;}
.y6c{bottom:540.645000px;}
.y283{bottom:542.265000px;}
.y139{bottom:545.070000px;}
.y15f{bottom:545.835000px;}
.y50{bottom:546.375000px;}
.y1ee{bottom:546.480000px;}
.y1c8{bottom:547.200000px;}
.y27b{bottom:547.410000px;}
.y36{bottom:548.175000px;}
.yd9{bottom:549.584996px;}
.y216{bottom:549.645000px;}
.y1a9{bottom:551.235000px;}
.y6d{bottom:555.120000px;}
.y16{bottom:555.630000px;}
.y1af{bottom:556.710000px;}
.ycc{bottom:561.450000px;}
.y131{bottom:569.370000px;}
.y282{bottom:571.065000px;}
.y1e9{bottom:571.320000px;}
.ye{bottom:571.530000px;}
.y6b{bottom:572.145000px;}
.y4f{bottom:573.375000px;}
.y138{bottom:573.870000px;}
.y2f{bottom:574.560000px;}
.y35{bottom:575.175000px;}
.y1c3{bottom:576.465000px;}
.y111{bottom:578.445000px;}
.y1c7{bottom:579.600000px;}
.y215{bottom:582.045000px;}
.y1a8{bottom:583.095000px;}
.y1aa{bottom:583.275000px;}
.y199{bottom:585.975000px;}
.y101{bottom:588.600000px;}
.y1d8{bottom:589.140000px;}
.y1e0{bottom:594.795000px;}
.y1ec{bottom:596.160000px;}
.y281{bottom:599.865000px;}
.y141{bottom:600.045000px;}
.y4e{bottom:600.375000px;}
.y6a{bottom:600.990000px;}
.y34{bottom:602.175000px;}
.y116{bottom:604.545000px;}
.y15e{bottom:610.635000px;}
.y1c6{bottom:612.000000px;}
.y237{bottom:612.825000px;}
.y12d{bottom:616.785000px;}
.y198{bottom:618.195000px;}
.y130{bottom:619.125000px;}
.y2a{bottom:621.000000px;}
.y1d7{bottom:621.540000px;}
.y1df{bottom:627.195000px;}
.y4d{bottom:627.375000px;}
.y280{bottom:628.665000px;}
.y33{bottom:629.175000px;}
.y69{bottom:629.790000px;}
.y1e6{bottom:630.360000px;}
.y107{bottom:639.615000px;}
.y140{bottom:643.245000px;}
.y1c5{bottom:644.430000px;}
.y20c{bottom:645.840000px;}
.yd4{bottom:648.150000px;}
.y4c{bottom:654.405000px;}
.y32{bottom:656.205000px;}
.y27f{bottom:657.465000px;}
.y68{bottom:659.490000px;}
.y1de{bottom:659.625000px;}
.y197{bottom:660.570000px;}
.y29{bottom:667.110000px;}
.y8{bottom:669.240000px;}
.y2e{bottom:669.750000px;}
.y20a{bottom:670.680000px;}
.y106{bottom:672.045000px;}
.y1eb{bottom:676.770000px;}
.y1c4{bottom:676.830000px;}
.y15d{bottom:677.265000px;}
.yd3{bottom:680.550000px;}
.y4b{bottom:681.405000px;}
.y31{bottom:683.205000px;}
.y27e{bottom:686.265000px;}
.y67{bottom:686.370000px;}
.ycb{bottom:686.775000px;}
.y1dd{bottom:692.025000px;}
.y1e5{bottom:701.610000px;}
.y2d{bottom:702.150000px;}
.y30{bottom:711.465000px;}
.y120{bottom:712.050000px;}
.yff{bottom:714.600000px;}
.y27a{bottom:715.350000px;}
.y28{bottom:717.555000px;}
.y66{bottom:718.815000px;}
.yca{bottom:719.175000px;}
.y1a7{bottom:720.330000px;}
.y1e8{bottom:721.410000px;}
.y1d6{bottom:721.590000px;}
.yd2{bottom:723.135000px;}
.y1dc{bottom:724.425000px;}
.y1e4{bottom:726.450000px;}
.y196{bottom:731.625000px;}
.y2c{bottom:734.550000px;}
.y14{bottom:737.565000px;}
.y105{bottom:740.130000px;}
.y12c{bottom:740.595000px;}
.y65{bottom:751.215000px;}
.yc9{bottom:751.575000px;}
.y1d5{bottom:753.990000px;}
.y119{bottom:755.355000px;}
.y15c{bottom:757.695000px;}
.y63{bottom:761.655000px;}
.y64{bottom:783.615000px;}
.h1d{height:2.785914px;}
.h26{height:2.848081px;}
.h32{height:3.274836px;}
.h4d{height:5.950527px;}
.h20{height:20.197920px;}
.h29{height:20.648633px;}
.h1f{height:22.983660px;}
.h28{height:23.496536px;}
.h35{height:23.742714px;}
.h36{height:23.743005px;}
.h49{height:25.730011px;}
.h44{height:25.956164px;}
.h34{height:27.017277px;}
.h23{height:28.903720px;}
.h2c{height:29.548702px;}
.h63{height:30.723660px;}
.h51{height:33.690104px;}
.h38{height:33.976619px;}
.h4a{height:35.379906px;}
.h48{height:35.472515px;}
.h43{height:35.784299px;}
.h45{height:36.630673px;}
.h22{height:38.942068px;}
.h2b{height:39.811054px;}
.h50{height:43.141410px;}
.h37{height:45.339096px;}
.h61{height:46.190458px;}
.h24{height:46.314739px;}
.h2a{height:46.357891px;}
.h2d{height:47.348244px;}
.h62{height:49.031743px;}
.h4f{height:49.091564px;}
.h21{height:49.925639px;}
.h4{height:51.679688px;}
.h1e{height:53.007719px;}
.h27{height:54.190577px;}
.h39{height:54.444088px;}
.h13{height:59.378906px;}
.h2e{height:60.465234px;}
.h53{height:61.736418px;}
.h6a{height:62.327813px;}
.h33{height:62.749472px;}
.h14{height:64.599609px;}
.h17{height:64.702969px;}
.h18{height:65.566406px;}
.h19{height:65.671312px;}
.h69{height:66.082500px;}
.h1a{height:66.665039px;}
.h46{height:68.733984px;}
.h1b{height:68.837344px;}
.h2f{height:69.473320px;}
.h30{height:69.592078px;}
.h15{height:74.223633px;}
.h16{height:74.342391px;}
.h8{height:75.093750px;}
.h67{height:75.243937px;}
.h2{height:77.519531px;}
.h3{height:77.622891px;}
.he{height:78.973945px;}
.hd{height:79.092703px;}
.h78{height:81.540000px;}
.h52{height:83.177660px;}
.h1c{height:85.051923px;}
.h3b{height:86.305078px;}
.h9{height:87.538008px;}
.ha{height:87.642844px;}
.h55{height:87.859687px;}
.h7{height:89.068359px;}
.h6{height:89.187117px;}
.h73{height:92.653945px;}
.h25{height:93.555607px;}
.h5c{height:93.983203px;}
.h5d{height:94.124531px;}
.h57{height:96.508125px;}
.h5a{height:96.653250px;}
.h54{height:98.925192px;}
.h10{height:99.162773px;}
.h56{height:99.281531px;}
.h6f{height:99.360000px;}
.h31{height:102.059269px;}
.hc{height:103.359375px;}
.hf{height:103.462734px;}
.h4e{height:113.220950px;}
.h1{height:118.757812px;}
.h3a{height:118.876570px;}
.h11{height:120.413672px;}
.h12{height:120.517031px;}
.h74{height:123.088359px;}
.h6e{height:124.200000px;}
.h7b{height:125.773945px;}
.h77{height:136.708359px;}
.h3e{height:137.984766px;}
.h70{height:139.320000px;}
.h6d{height:149.040000px;}
.h68{height:152.100000px;}
.h65{height:153.868359px;}
.h3f{height:155.039062px;}
.h40{height:155.142422px;}
.h5{height:158.541680px;}
.h59{height:161.280000px;}
.h71{height:164.160000px;}
.h6c{height:173.880000px;}
.h5f{height:178.136719px;}
.hb{height:189.664453px;}
.h41{height:189.767813px;}
.h4c{height:195.615452px;}
.h6b{height:238.680000px;}
.h3c{height:284.341641px;}
.h72{height:297.540000px;}
.h3d{height:310.181484px;}
.h4b{height:313.312157px;}
.h7a{height:340.200000px;}
.h79{height:342.180000px;}
.h75{height:358.920000px;}
.h47{height:362.491033px;}
.h42{height:365.677126px;}
.h58{height:385.560000px;}
.h64{height:393.914869px;}
.h76{height:408.240000px;}
.h66{height:412.560000px;}
.h60{height:425.230929px;}
.h5e{height:528.300000px;}
.h5b{height:546.840000px;}
.h0{height:810.000000px;}
.w11{width:93.600000px;}
.we{width:96.120000px;}
.w12{width:102.060000px;}
.w10{width:104.940000px;}
.wf{width:105.120000px;}
.w8{width:158.040000px;}
.w9{width:185.760000px;}
.wa{width:185.940000px;}
.wb{width:190.440000px;}
.w1{width:280.660762px;}
.w3{width:285.263893px;}
.w2{width:297.664655px;}
.w6{width:321.422815px;}
.w5{width:361.398021px;}
.w4{width:374.174337px;}
.w7{width:408.224734px;}
.wd{width:438.932179px;}
.w16{width:442.260000px;}
.w14{width:450.720000px;}
.wc{width:493.260188px;}
.w13{width:501.840000px;}
.w17{width:561.420000px;}
.w15{width:731.520000px;}
.w0{width:1080.000000px;}
.x4b{left:-262.282403px;}
.x44{left:-259.789354px;}
.x45{left:-256.145658px;}
.x47{left:-241.395065px;}
.x46{left:-235.258309px;}
.x42{left:-230.479953px;}
.x43{left:-228.753990px;}
.x4d{left:-223.384315px;}
.x5c{left:-2.982939px;}
.x59{left:-1.707363px;}
.x0{left:0.000000px;}
.x3d{left:1.898220px;}
.x96{left:3.090986px;}
.x36{left:4.580555px;}
.x97{left:5.736331px;}
.x37{left:8.500715px;}
.x7{left:10.800000px;}
.xd5{left:12.096000px;}
.x57{left:13.207485px;}
.x6{left:15.012000px;}
.x5e{left:16.936206px;}
.x76{left:18.653049px;}
.x77{left:21.909636px;}
.x39{left:24.388076px;}
.x95{left:25.646301px;}
.x9b{left:29.545175px;}
.x38{left:30.990238px;}
.x68{left:32.004000px;}
.x5{left:35.532000px;}
.x34{left:38.005463px;}
.xc6{left:39.270000px;}
.x55{left:40.500000px;}
.xa2{left:41.508000px;}
.x3f{left:43.783229px;}
.xc5{left:47.910000px;}
.x54{left:49.032000px;}
.x8{left:51.300000px;}
.x1{left:53.532000px;}
.xb7{left:55.656000px;}
.x1f{left:57.528000px;}
.xa0{left:60.516000px;}
.x78{left:62.784000px;}
.x9f{left:64.800000px;}
.x9{left:66.024000px;}
.xc7{left:68.220000px;}
.x8d{left:70.452000px;}
.xd3{left:73.515000px;}
.x1e{left:75.348000px;}
.xac{left:77.220000px;}
.x16{left:79.524000px;}
.xa1{left:80.856000px;}
.x2b{left:84.312000px;}
.xde{left:85.392000px;}
.xdd{left:88.812000px;}
.x8a{left:90.301440px;}
.x66{left:91.548000px;}
.x2{left:93.312000px;}
.xd6{left:94.644000px;}
.xab{left:95.940000px;}
.xcc{left:98.640000px;}
.x23{left:102.564000px;}
.xad{left:104.760000px;}
.xb9{left:108.288000px;}
.x3{left:117.072000px;}
.xd7{left:122.865000px;}
.xce{left:125.745000px;}
.xd9{left:126.870000px;}
.xb3{left:130.320000px;}
.x28{left:135.036000px;}
.xb4{left:137.124000px;}
.xd8{left:139.830000px;}
.x1c{left:141.804000px;}
.x29{left:147.816000px;}
.xda{left:149.145000px;}
.xb6{left:150.330000px;}
.x71{left:153.465000px;}
.x72{left:156.165000px;}
.x17{left:160.560000px;}
.x4e{left:168.664930px;}
.xaa{left:176.040000px;}
.xd0{left:177.480000px;}
.x89{left:184.780441px;}
.x70{left:185.865000px;}
.xba{left:189.645000px;}
.x74{left:191.312887px;}
.xb{left:193.650000px;}
.xdb{left:197.205000px;}
.xa{left:200.445000px;}
.xc{left:206.175000px;}
.xd{left:212.145000px;}
.x5f{left:217.733483px;}
.xcb{left:225.330000px;}
.x8b{left:235.628055px;}
.x53{left:237.090000px;}
.xdf{left:239.400000px;}
.xdc{left:240.765000px;}
.x2c{left:246.495000px;}
.x6e{left:261.690000px;}
.xe{left:264.600000px;}
.x75{left:273.364372px;}
.xb5{left:276.375000px;}
.x12{left:280.185000px;}
.x20{left:282.570000px;}
.x5a{left:285.558385px;}
.xcd{left:289.050000px;}
.x60{left:290.368566px;}
.xd1{left:292.170000px;}
.x1d{left:293.370000px;}
.x5d{left:294.687892px;}
.x5b{left:299.391698px;}
.x48{left:301.100600px;}
.xa3{left:309.165000px;}
.x4f{left:310.289763px;}
.x9c{left:314.475561px;}
.x4c{left:318.919575px;}
.xb8{left:320.949169px;}
.x49{left:328.108724px;}
.x4a{left:329.642914px;}
.x10{left:331.275000px;}
.x79{left:336.600000px;}
.x69{left:341.670000px;}
.x6a{left:343.260000px;}
.x63{left:344.595000px;}
.xd2{left:350.310000px;}
.x73{left:352.890000px;}
.x1b{left:361.875000px;}
.x2a{left:366.735000px;}
.x25{left:367.815000px;}
.x1a{left:371.235000px;}
.x8c{left:394.050000px;}
.x7c{left:399.090000px;}
.x98{left:410.710156px;}
.x9d{left:417.388285px;}
.x58{left:421.478178px;}
.x4{left:422.790000px;}
.x99{left:430.338023px;}
.x9a{left:431.452979px;}
.x7e{left:436.350000px;}
.x7f{left:438.870000px;}
.x9e{left:443.265000px;}
.x26{left:452.955000px;}
.x61{left:457.305000px;}
.x7d{left:460.290000px;}
.x80{left:461.370000px;}
.xbf{left:463.500000px;}
.x40{left:466.023891px;}
.xa6{left:469.440000px;}
.x11{left:482.835000px;}
.xf{left:485.745000px;}
.x50{left:491.325000px;}
.xc0{left:492.555000px;}
.x7b{left:497.550000px;}
.xa4{left:501.195000px;}
.xc4{left:505.470000px;}
.x52{left:531.615000px;}
.xaf{left:535.290000px;}
.xa7{left:545.115000px;}
.x27{left:548.565000px;}
.x86{left:550.875000px;}
.x6f{left:557.070000px;}
.xc1{left:559.620000px;}
.x24{left:561.345000px;}
.xae{left:562.470000px;}
.x33{left:565.514996px;}
.x13{left:572.220000px;}
.xcf{left:582.480000px;}
.x41{left:591.029996px;}
.x15{left:594.150000px;}
.x21{left:600.690000px;}
.x2e{left:603.795000px;}
.x30{left:607.245000px;}
.x3a{left:608.634725px;}
.xd4{left:612.210000px;}
.x2d{left:615.495000px;}
.xbb{left:616.890000px;}
.x22{left:618.510000px;}
.x31{left:619.665000px;}
.x3e{left:627.825065px;}
.x65{left:635.580000px;}
.x3b{left:637.721420px;}
.x3c{left:639.373682px;}
.x94{left:642.059996px;}
.xbc{left:647.715000px;}
.xa8{left:655.200000px;}
.xbd{left:657.795000px;}
.xc3{left:664.740000px;}
.x64{left:676.335000px;}
.x7a{left:686.730000px;}
.x14{left:696.345000px;}
.xc2{left:708.510000px;}
.x56{left:710.099992px;}
.x87{left:720.330000px;}
.x2f{left:727.170000px;}
.xa9{left:731.010000px;}
.x51{left:735.630000px;}
.x67{left:744.195000px;}
.xb0{left:748.365000px;}
.x62{left:780.555000px;}
.xc8{left:782.280000px;}
.x83{left:787.170000px;}
.x19{left:789.330000px;}
.x85{left:805.350000px;}
.x91{left:807.810000px;}
.x84{left:809.130000px;}
.xbe{left:820.695000px;}
.x8f{left:821.850000px;}
.x6b{left:824.940000px;}
.x82{left:826.590000px;}
.x6c{left:829.620000px;}
.x18{left:831.600000px;}
.x6d{left:838.155000px;}
.xa5{left:841.140000px;}
.x93{left:845.430000px;}
.x8e{left:849.210000px;}
.x90{left:860.475000px;}
.x81{left:863.355000px;}
.x92{left:870.630000px;}
.xc9{left:875.880000px;}
.x88{left:885.240000px;}
.xb2{left:893.235000px;}
.x35{left:894.235052px;}
.xb1{left:920.415000px;}
.xca{left:977.940000px;}
.x32{left:981.900000px;}
@media print{
.ve{vertical-align:-63.466667pt;}
.v9{vertical-align:-30.186667pt;}
.v10{vertical-align:-26.240000pt;}
.v1{vertical-align:-6.400000pt;}
.v3{vertical-align:-2.944000pt;}
.v8{vertical-align:-1.396147pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:2.816000pt;}
.vc{vertical-align:12.160000pt;}
.v5{vertical-align:16.661465pt;}
.v7{vertical-align:19.196784pt;}
.v4{vertical-align:26.688052pt;}
.vd{vertical-align:30.240000pt;}
.v6{vertical-align:31.761952pt;}
.vb{vertical-align:35.587777pt;}
.vf{vertical-align:42.346667pt;}
.va{vertical-align:57.003899pt;}
.ls32{letter-spacing:-1.578667pt;}
.ls2d{letter-spacing:-1.184000pt;}
.ls47{letter-spacing:-0.778667pt;}
.ls6{letter-spacing:-0.768000pt;}
.ls28{letter-spacing:-0.672000pt;}
.ls49{letter-spacing:-0.448000pt;}
.ls48{letter-spacing:-0.357333pt;}
.ls36{letter-spacing:-0.349333pt;}
.lse{letter-spacing:-0.340800pt;}
.ls9{letter-spacing:-0.334400pt;}
.ls38{letter-spacing:-0.320000pt;}
.ls4d{letter-spacing:-0.288533pt;}
.lsf{letter-spacing:-0.275733pt;}
.ls8{letter-spacing:-0.249067pt;}
.ls10{letter-spacing:-0.212800pt;}
.ls19{letter-spacing:-0.193067pt;}
.ls1b{letter-spacing:-0.192000pt;}
.ls1c{letter-spacing:-0.160000pt;}
.ls4a{letter-spacing:-0.157052pt;}
.ls11{letter-spacing:-0.147733pt;}
.ls7{letter-spacing:-0.097067pt;}
.ls53{letter-spacing:-0.094933pt;}
.ls4b{letter-spacing:-0.093596pt;}
.ls2e{letter-spacing:-0.086386pt;}
.ls3d{letter-spacing:-0.083671pt;}
.ls3c{letter-spacing:-0.081738pt;}
.ls3f{letter-spacing:-0.081025pt;}
.ls40{letter-spacing:-0.080814pt;}
.ls25{letter-spacing:-0.075169pt;}
.ls22{letter-spacing:-0.073528pt;}
.ls3e{letter-spacing:-0.057421pt;}
.ls41{letter-spacing:-0.056921pt;}
.ls2f{letter-spacing:-0.051773pt;}
.ls26{letter-spacing:-0.044798pt;}
.ls23{letter-spacing:-0.043820pt;}
.ls5{letter-spacing:-0.032000pt;}
.ls31{letter-spacing:-0.030080pt;}
.ls52{letter-spacing:-0.011645pt;}
.ls0{letter-spacing:0.000000pt;}
.ls24{letter-spacing:0.015424pt;}
.ls27{letter-spacing:0.015768pt;}
.ls30{letter-spacing:0.018150pt;}
.ls4c{letter-spacing:0.032944pt;}
.ls33{letter-spacing:0.035072pt;}
.ls44{letter-spacing:0.037120pt;}
.ls14{letter-spacing:0.041216pt;}
.ls1a{letter-spacing:0.041227pt;}
.ls3{letter-spacing:0.064000pt;}
.ls2a{letter-spacing:0.069226pt;}
.ls17{letter-spacing:0.080000pt;}
.ls45{letter-spacing:0.087049pt;}
.ls29{letter-spacing:0.092104pt;}
.ls34{letter-spacing:0.092800pt;}
.ls13{letter-spacing:0.115200pt;}
.ls20{letter-spacing:0.125463pt;}
.ls1{letter-spacing:0.128000pt;}
.ls1e{letter-spacing:0.135118pt;}
.ls54{letter-spacing:0.153088pt;}
.lsa{letter-spacing:0.154112pt;}
.ls12{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.206400pt;}
.ls37{letter-spacing:0.208000pt;}
.ls43{letter-spacing:0.243200pt;}
.ls1d{letter-spacing:0.254720pt;}
.ls39{letter-spacing:0.259755pt;}
.ls42{letter-spacing:0.288000pt;}
.ls3a{letter-spacing:0.361387pt;}
.ls15{letter-spacing:0.451072pt;}
.ls16{letter-spacing:1.091072pt;}
.ls18{letter-spacing:1.120000pt;}
.ls3b{letter-spacing:1.242880pt;}
.ls50{letter-spacing:29.866496pt;}
.ls4f{letter-spacing:29.930240pt;}
.ls4e{letter-spacing:42.368000pt;}
.ls35{letter-spacing:60.835072pt;}
.ls2c{letter-spacing:62.016979pt;}
.ls1f{letter-spacing:349.900715pt;}
.lsc{letter-spacing:355.133952pt;}
.ls21{letter-spacing:357.708687pt;}
.lsb{letter-spacing:400.336213pt;}
.ls2b{letter-spacing:411.660220pt;}
.lsd{letter-spacing:462.653952pt;}
.ls46{letter-spacing:747.364581pt;}
.ls55{letter-spacing:910.517333pt;}
.ls51{letter-spacing:1051.957333pt;}
.ws2b{word-spacing:-106.880000pt;}
.ws2c{word-spacing:-96.000000pt;}
.wsb{word-spacing:-80.000000pt;}
.ws33{word-spacing:-74.880000pt;}
.ws1e{word-spacing:-67.642352pt;}
.ws20{word-spacing:-28.956928pt;}
.ws21{word-spacing:-27.378261pt;}
.ws25{word-spacing:-24.362880pt;}
.ws27{word-spacing:-21.888000pt;}
.ws22{word-spacing:-21.856000pt;}
.ws3b{word-spacing:-21.824000pt;}
.ws23{word-spacing:-21.817728pt;}
.ws28{word-spacing:-21.724928pt;}
.ws1{word-spacing:-21.696000pt;}
.ws2{word-spacing:-21.664000pt;}
.ws4{word-spacing:-21.627861pt;}
.ws26{word-spacing:-21.376000pt;}
.ws24{word-spacing:-21.375595pt;}
.ws35{word-spacing:-21.312000pt;}
.ws34{word-spacing:-21.280000pt;}
.ws19{word-spacing:-21.024000pt;}
.ws3{word-spacing:-20.928000pt;}
.ws1a{word-spacing:-20.512000pt;}
.ws10{word-spacing:-19.266048pt;}
.wsf{word-spacing:-19.237120pt;}
.ws1f{word-spacing:-19.207040pt;}
.wsa{word-spacing:-19.089387pt;}
.ws9{word-spacing:-19.053248pt;}
.ws8{word-spacing:-18.961387pt;}
.ws7{word-spacing:-18.925248pt;}
.ws2e{word-spacing:-18.908715pt;}
.ws2d{word-spacing:-18.487381pt;}
.wse{word-spacing:-18.150155pt;}
.wsd{word-spacing:-18.108928pt;}
.wsc{word-spacing:-18.080000pt;}
.ws3a{word-spacing:-17.827584pt;}
.ws37{word-spacing:-17.792000pt;}
.ws38{word-spacing:-15.656960pt;}
.ws39{word-spacing:-14.767360pt;}
.ws12{word-spacing:-11.828907pt;}
.ws16{word-spacing:-10.983599pt;}
.ws36{word-spacing:-10.943929pt;}
.ws2f{word-spacing:-10.221516pt;}
.ws31{word-spacing:-10.064464pt;}
.ws30{word-spacing:-7.982213pt;}
.ws29{word-spacing:-6.149807pt;}
.ws2a{word-spacing:-6.096225pt;}
.ws1c{word-spacing:-5.625442pt;}
.ws1b{word-spacing:-5.625373pt;}
.ws1d{word-spacing:-5.538988pt;}
.ws15{word-spacing:-4.892291pt;}
.ws17{word-spacing:-4.817122pt;}
.ws11{word-spacing:-4.785503pt;}
.ws13{word-spacing:-4.711975pt;}
.ws0{word-spacing:0.000000pt;}
.ws5{word-spacing:2.276160pt;}
.ws6{word-spacing:2.361536pt;}
.ws14{word-spacing:47.956873pt;}
.ws18{word-spacing:49.052331pt;}
.ws32{word-spacing:102.432681pt;}
._2d{margin-left:-959.923058pt;}
._34{margin-left:-746.510082pt;}
._2f{margin-left:-564.936750pt;}
._31{margin-left:-556.644161pt;}
._2a{margin-left:-532.403046pt;}
._20{margin-left:-528.313881pt;}
._18{margin-left:-459.446381pt;}
._10{margin-left:-449.416219pt;}
._22{margin-left:-310.911019pt;}
._24{margin-left:-305.712896pt;}
._1a{margin-left:-270.393846pt;}
._1c{margin-left:-266.424791pt;}
._12{margin-left:-264.491759pt;}
._14{margin-left:-260.609339pt;}
._29{margin-left:-15.845760pt;}
._5{margin-left:-10.272000pt;}
._8{margin-left:-9.312000pt;}
._1d{margin-left:-8.096000pt;}
._0{margin-left:-7.168000pt;}
._d{margin-left:-5.767381pt;}
._7{margin-left:-4.827584pt;}
._9{margin-left:-3.824640pt;}
._2{margin-left:-2.816000pt;}
._1{margin-left:-1.792000pt;}
._4{margin-left:-0.896000pt;}
._3{width:1.024000pt;}
._6{width:2.122027pt;}
._b{width:3.093333pt;}
._38{width:6.592000pt;}
._28{width:12.458667pt;}
._37{width:14.080000pt;}
._35{width:26.690560pt;}
._15{width:48.236601pt;}
._27{width:50.282667pt;}
._26{width:61.633664pt;}
._32{width:103.030162pt;}
._13{width:330.934553pt;}
._1b{width:338.319299pt;}
._33{width:374.881920pt;}
._11{width:386.059678pt;}
._23{width:388.658046pt;}
._19{width:394.676050pt;}
._e{width:448.110325pt;}
._16{width:458.953764pt;}
._21{width:464.985774pt;}
._1e{width:547.999164pt;}
._c{width:604.602453pt;}
._a{width:610.261333pt;}
._30{width:706.854125pt;}
._f{width:768.009533pt;}
._17{width:785.147530pt;}
._2e{width:824.597714pt;}
._25{width:888.085333pt;}
._1f{width:903.161499pt;}
._36{width:913.269333pt;}
._2b{width:958.065767pt;}
._2c{width:1640.417121pt;}
.fsf{font-size:2.374345pt;}
.fs16{font-size:2.427328pt;}
.fs1f{font-size:2.791038pt;}
.fs31{font-size:5.071443pt;}
.fs12{font-size:17.214041pt;}
.fs19{font-size:17.598169pt;}
.fs11{font-size:19.588238pt;}
.fs18{font-size:20.025346pt;}
.fs22{font-size:20.235155pt;}
.fs23{font-size:20.235403pt;}
.fs2f{font-size:21.928865pt;}
.fs2c{font-size:22.121608pt;}
.fs21{font-size:23.025961pt;}
.fs14{font-size:24.633716pt;}
.fs1b{font-size:25.183413pt;}
.fs3a{font-size:26.184792pt;}
.fs35{font-size:28.712997pt;}
.fs24{font-size:28.957185pt;}
.fs10{font-size:29.678698pt;}
.fs30{font-size:30.153161pt;}
.fs2e{font-size:30.232090pt;}
.fs17{font-size:30.340973pt;}
.fs2b{font-size:30.497813pt;}
.fs2d{font-size:31.219150pt;}
.fs20{font-size:34.888700pt;}
.fs34{font-size:36.768043pt;}
.fs38{font-size:39.366649pt;}
.fs15{font-size:39.472570pt;}
.fs1a{font-size:39.509347pt;}
.fs1c{font-size:40.353393pt;}
.fs39{font-size:41.788185pt;}
.fs33{font-size:41.839169pt;}
.fs13{font-size:42.550024pt;}
.fs25{font-size:46.400954pt;}
.fs36{font-size:52.615973pt;}
.fs3d{font-size:53.120000pt;}
.fs3c{font-size:56.320000pt;}
.fs32{font-size:63.391719pt;}
.fs3{font-size:64.000000pt;}
.fs3b{font-size:64.128000pt;}
.fs1d{font-size:74.880000pt;}
.fs1e{font-size:75.008000pt;}
.fsd{font-size:80.000000pt;}
.fse{font-size:80.128000pt;}
.fs37{font-size:84.310775pt;}
.fs9{font-size:85.120000pt;}
.fs8{font-size:85.248000pt;}
.fs1{font-size:96.000000pt;}
.fs2{font-size:96.128000pt;}
.fs5{font-size:106.880000pt;}
.fs6{font-size:107.008000pt;}
.fs0{font-size:128.000000pt;}
.fsa{font-size:128.128000pt;}
.fsb{font-size:149.120000pt;}
.fsc{font-size:149.248000pt;}
.fs4{font-size:170.880000pt;}
.fs28{font-size:192.000000pt;}
.fs29{font-size:192.128000pt;}
.fs7{font-size:234.880000pt;}
.fs2a{font-size:235.008000pt;}
.fs26{font-size:352.128000pt;}
.fs27{font-size:384.128000pt;}
.y18f{bottom:-486.595428pt;}
.y18e{bottom:-462.839397pt;}
.y18d{bottom:-439.083366pt;}
.y190{bottom:-426.564191pt;}
.y18c{bottom:-415.327335pt;}
.y191{bottom:-393.911217pt;}
.y18b{bottom:-391.531644pt;}
.y18a{bottom:-367.775613pt;}
.y189{bottom:-334.831805pt;}
.y186{bottom:-334.831801pt;}
.y183{bottom:-325.961297pt;}
.y188{bottom:-282.401967pt;}
.y185{bottom:-279.520041pt;}
.ybd{bottom:-232.897591pt;}
.y9f{bottom:-227.820152pt;}
.ybc{bottom:-221.527319pt;}
.y9e{bottom:-216.698067pt;}
.ybb{bottom:-210.157047pt;}
.y9d{bottom:-205.575982pt;}
.ybe{bottom:-204.171363pt;}
.ya0{bottom:-199.714767pt;}
.yba{bottom:-198.786775pt;}
.y9c{bottom:-194.453898pt;}
.ybf{bottom:-188.536449pt;}
.yb9{bottom:-187.397520pt;}
.ya1{bottom:-184.427318pt;}
.y187{bottom:-183.385455pt;}
.y184{bottom:-183.385451pt;}
.y9b{bottom:-183.313245pt;}
.yf4{bottom:-176.537693pt;}
.yb8{bottom:-176.027248pt;}
.y9a{bottom:-172.191160pt;}
.y182{bottom:-163.740790pt;}
.y17f{bottom:-163.740787pt;}
.yf3{bottom:-163.448977pt;}
.yb7{bottom:-160.259462pt;}
.yb4{bottom:-160.259458pt;}
.y99{bottom:-156.767553pt;}
.y96{bottom:-156.767546pt;}
.yb1{bottom:-156.013797pt;}
.y17c{bottom:-154.843842pt;}
.y93{bottom:-152.614558pt;}
.yf2{bottom:-150.360261pt;}
.yf5{bottom:-143.445058pt;}
.y181{bottom:-142.007393pt;}
.yf1{bottom:-137.249730pt;}
.yb6{bottom:-135.165138pt;}
.yb3{bottom:-133.785770pt;}
.y98{bottom:-132.220982pt;}
.y95{bottom:-130.871718pt;}
.yf6{bottom:-125.469889pt;}
.yf0{bottom:-124.161014pt;}
.y17e{bottom:-112.075055pt;}
.yef{bottom:-111.072297pt;}
.yee{bottom:-92.922614pt;}
.yeb{bottom:-92.922611pt;}
.ye8{bottom:-88.036156pt;}
.yb5{bottom:-87.773186pt;}
.yb2{bottom:-87.773182pt;}
.y97{bottom:-85.863489pt;}
.y94{bottom:-85.863481pt;}
.yb0{bottom:-78.370724pt;}
.yad{bottom:-78.370720pt;}
.y92{bottom:-76.666262pt;}
.y8f{bottom:-76.666254pt;}
.yaa{bottom:-74.112405pt;}
.y8c{bottom:-72.500888pt;}
.yaf{bottom:-67.974866pt;}
.y91{bottom:-66.491132pt;}
.yed{bottom:-64.041635pt;}
.yea{bottom:-62.470985pt;}
.yac{bottom:-53.644017pt;}
.y8e{bottom:-52.478040pt;}
.y180{bottom:-12.259408pt;}
.y17d{bottom:-12.259404pt;}
.yec{bottom:-9.592575pt;}
.ye9{bottom:-9.505313pt;}
.yae{bottom:-5.870022pt;}
.yab{bottom:-5.870018pt;}
.y90{bottom:-5.746910pt;}
.y8d{bottom:-5.746902pt;}
.y4a{bottom:-1.344000pt;}
.y0{bottom:0.000000pt;}
.ye7{bottom:1.314761pt;}
.ye4{bottom:1.314765pt;}
.y8b{bottom:3.448097pt;}
.ya9{bottom:3.530166pt;}
.y1cb{bottom:4.759006pt;}
.y209{bottom:5.280000pt;}
.ye1{bottom:6.113961pt;}
.y17b{bottom:7.380501pt;}
.y88{bottom:7.526752pt;}
.ya6{bottom:7.699772pt;}
.yc8{bottom:8.960000pt;}
.y278{bottom:9.056000pt;}
.y121{bottom:10.057067pt;}
.y14e{bottom:11.154799pt;}
.y122{bottom:11.252843pt;}
.y14d{bottom:11.463067pt;}
.y14c{bottom:12.960000pt;}
.ye6{bottom:13.269050pt;}
.y251{bottom:13.306667pt;}
.y2b{bottom:13.568000pt;}
.y22f{bottom:14.813333pt;}
.y178{bottom:16.091178pt;}
.y26e{bottom:17.152000pt;}
.y8a{bottom:17.462976pt;}
.ya8{bottom:17.857721pt;}
.y206{bottom:22.080000pt;}
.y260{bottom:23.232000pt;}
.y14f{bottom:24.129041pt;}
.y123{bottom:24.341122pt;}
.y214{bottom:25.536000pt;}
.yd{bottom:27.232000pt;}
.y208{bottom:27.360000pt;}
.y49{bottom:27.456000pt;}
.y226{bottom:27.648000pt;}
.y7{bottom:27.904000pt;}
.y62{bottom:28.256000pt;}
.y1a6{bottom:29.248000pt;}
.ye3{bottom:29.778287pt;}
.y279{bottom:30.592000pt;}
.y20{bottom:34.304000pt;}
.y1ca{bottom:34.924000pt;}
.y195{bottom:35.872000pt;}
.yc7{bottom:36.352000pt;}
.y17a{bottom:37.315612pt;}
.y1d1{bottom:38.082030pt;}
.y277{bottom:38.336000pt;}
.y14b{bottom:40.960000pt;}
.y250{bottom:42.586667pt;}
.y204{bottom:44.160000pt;}
.y158{bottom:45.887578pt;}
.y23a{bottom:46.013333pt;}
.y229{bottom:46.053333pt;}
.y244{bottom:46.080000pt;}
.y26d{bottom:46.432000pt;}
.y156{bottom:46.683313pt;}
.y12b{bottom:47.093633pt;}
.y157{bottom:47.123719pt;}
.y207{bottom:49.440000pt;}
.y25f{bottom:52.512000pt;}
.y1a5{bottom:52.608000pt;}
.y1bd{bottom:52.960000pt;}
.y61{bottom:53.568000pt;}
.y48{bottom:55.168000pt;}
.y16b{bottom:55.744000pt;}
.yc{bottom:56.064000pt;}
.y225{bottom:56.448000pt;}
.y159{bottom:57.816331pt;}
.y194{bottom:58.432000pt;}
.yc6{bottom:58.752000pt;}
.y1d2{bottom:59.179275pt;}
.y167{bottom:61.088000pt;}
.y1e7{bottom:62.653333pt;}
.y258{bottom:63.333333pt;}
.y173{bottom:65.280000pt;}
.y203{bottom:66.240000pt;}
.y1ae{bottom:66.533333pt;}
.y14a{bottom:66.560000pt;}
.y276{bottom:67.616000pt;}
.y265{bottom:67.904000pt;}
.y249{bottom:70.173333pt;}
.y236{bottom:70.496000pt;}
.y205{bottom:71.520000pt;}
.y1fe{bottom:71.546667pt;}
.y1f7{bottom:71.586667pt;}
.y1f1{bottom:71.613333pt;}
.y1ed{bottom:71.653333pt;}
.y20b{bottom:71.680000pt;}
.y89{bottom:74.277210pt;}
.y243{bottom:75.360000pt;}
.y26c{bottom:75.712000pt;}
.ya7{bottom:75.941020pt;}
.y292{bottom:77.088000pt;}
.y60{bottom:77.568000pt;}
.y47{bottom:79.168000pt;}
.y193{bottom:80.864000pt;}
.yc5{bottom:81.152000pt;}
.y16a{bottom:81.344000pt;}
.y259{bottom:82.432000pt;}
.y1f{bottom:82.464000pt;}
.y22a{bottom:84.066667pt;}
.y86{bottom:84.439960pt;}
.ye5{bottom:84.749438pt;}
.ye2{bottom:84.749442pt;}
.yb{bottom:84.864000pt;}
.y87{bottom:85.182659pt;}
.y224{bottom:85.280000pt;}
.ya4{bottom:86.330550pt;}
.y10c{bottom:86.400000pt;}
.ya5{bottom:87.083502pt;}
.y202{bottom:88.320000pt;}
.y232{bottom:88.346667pt;}
.y15b{bottom:88.491301pt;}
.y12a{bottom:89.266893pt;}
.y166{bottom:89.888000pt;}
.y1a4{bottom:90.560000pt;}
.y85{bottom:92.077496pt;}
.yfe{bottom:92.160000pt;}
.y172{bottom:94.080000pt;}
.ya3{bottom:94.138517pt;}
.y23b{bottom:94.973333pt;}
.ye0{bottom:95.569447pt;}
.y155{bottom:96.824003pt;}
.y264{bottom:97.184000pt;}
.y235{bottom:99.328000pt;}
.y257{bottom:100.320000pt;}
.ydd{bottom:100.368643pt;}
.y5f{bottom:101.568000pt;}
.y291{bottom:102.688000pt;}
.y46{bottom:103.168000pt;}
.y192{bottom:103.264000pt;}
.yc4{bottom:103.552000pt;}
.y275{bottom:104.096000pt;}
.y242{bottom:104.640000pt;}
.y266{bottom:105.632000pt;}
.y7c{bottom:106.944000pt;}
.y201{bottom:110.400000pt;}
.y17{bottom:111.744000pt;}
.ydf{bottom:112.061230pt;}
.y25a{bottom:113.632000pt;}
.ya{bottom:113.664000pt;}
.y223{bottom:114.080000pt;}
.y1ea{bottom:115.013333pt;}
.y1d0{bottom:116.854145pt;}
.y149{bottom:117.792000pt;}
.y10b{bottom:118.432000pt;}
.yfd{bottom:120.992000pt;}
.y22b{bottom:122.080000pt;}
.y1b8{bottom:122.400000pt;}
.y171{bottom:122.720000pt;}
.y24a{bottom:123.040000pt;}
.y261{bottom:123.616000pt;}
.y5e{bottom:125.568000pt;}
.y231{bottom:125.826667pt;}
.yc3{bottom:125.952000pt;}
.y263{bottom:126.464000pt;}
.y165{bottom:126.688000pt;}
.y45{bottom:127.168000pt;}
.y234{bottom:128.128000pt;}
.y290{bottom:128.288000pt;}
.y118{bottom:129.056000pt;}
.y129{bottom:131.395476pt;}
.y238{bottom:131.680000pt;}
.y200{bottom:132.480000pt;}
.y169{bottom:132.576000pt;}
.y274{bottom:133.373333pt;}
.y267{bottom:133.533333pt;}
.y241{bottom:133.920000pt;}
.y23{bottom:134.213333pt;}
.y7b{bottom:134.946667pt;}
.y256{bottom:137.346667pt;}
.y9{bottom:142.466667pt;}
.y27{bottom:142.786667pt;}
.y222{bottom:142.880000pt;}
.y148{bottom:143.386667pt;}
.y23c{bottom:143.906667pt;}
.y25b{bottom:144.826667pt;}
.y154{bottom:146.971228pt;}
.y213{bottom:148.293333pt;}
.yc2{bottom:148.346667pt;}
.y5d{bottom:149.573333pt;}
.y44{bottom:151.173333pt;}
.y170{bottom:151.520000pt;}
.y1ac{bottom:151.906667pt;}
.y28f{bottom:153.920000pt;}
.y1ff{bottom:154.560000pt;}
.y1e{bottom:156.826667pt;}
.y233{bottom:156.933333pt;}
.y168{bottom:158.173333pt;}
.y179{bottom:158.677600pt;}
.y22c{bottom:160.093333pt;}
.yd8{bottom:160.226667pt;}
.y7a{bottom:160.546667pt;}
.y268{bottom:161.440000pt;}
.y273{bottom:162.653333pt;}
.y230{bottom:163.266667pt;}
.yd0{bottom:167.333333pt;}
.y150{bottom:168.171444pt;}
.y147{bottom:168.986667pt;}
.y124{bottom:169.649577pt;}
.yc1{bottom:170.786667pt;}
.y26{bottom:171.586667pt;}
.y221{bottom:171.680000pt;}
.y270{bottom:172.773333pt;}
.y128{bottom:173.538708pt;}
.y5c{bottom:173.600000pt;}
.y255{bottom:174.373333pt;}
.y1a3{bottom:174.880000pt;}
.y43{bottom:175.200000pt;}
.y24b{bottom:175.906667pt;}
.y25c{bottom:176.026667pt;}
.y1fd{bottom:176.640000pt;}
.y212{bottom:177.093333pt;}
.yde{bottom:178.900941pt;}
.y28e{bottom:179.520000pt;}
.y16f{bottom:180.320000pt;}
.y176{bottom:180.371337pt;}
.y177{bottom:181.957712pt;}
.y114{bottom:182.426667pt;}
.y164{bottom:184.320000pt;}
.y1cc{bottom:185.382576pt;}
.y79{bottom:186.146667pt;}
.y271{bottom:187.426667pt;}
.y13{bottom:187.973333pt;}
.yd7{bottom:189.026667pt;}
.y269{bottom:189.306667pt;}
.ydb{bottom:190.877116pt;}
.ydc{bottom:191.836950pt;}
.y1b2{bottom:191.840000pt;}
.y11f{bottom:192.160000pt;}
.y23d{bottom:192.866667pt;}
.yc0{bottom:193.186667pt;}
.y146{bottom:194.586667pt;}
.y1cf{bottom:195.659530pt;}
.y175{bottom:196.684605pt;}
.y1c1{bottom:196.800000pt;}
.y153{bottom:197.089411pt;}
.y5b{bottom:197.600000pt;}
.y22d{bottom:198.146667pt;}
.y1fc{bottom:198.720000pt;}
.y42{bottom:199.200000pt;}
.yda{bottom:199.951959pt;}
.y220{bottom:200.480000pt;}
.y26f{bottom:200.933333pt;}
.ya2{bottom:201.239998pt;}
.y1d{bottom:202.560000pt;}
.y28d{bottom:205.120000pt;}
.y211{bottom:205.893333pt;}
.y228{bottom:206.466667pt;}
.y10f{bottom:207.040000pt;}
.y25d{bottom:207.200000pt;}
.y254{bottom:211.386667pt;}
.y78{bottom:211.746667pt;}
.y1a2{bottom:212.986667pt;}
.y127{bottom:215.667291pt;}
.y1c0{bottom:217.120000pt;}
.y26a{bottom:217.213333pt;}
.y1c2{bottom:217.280000pt;}
.y145{bottom:220.186667pt;}
.y16d{bottom:220.293333pt;}
.y1fb{bottom:220.800000pt;}
.y15{bottom:221.373333pt;}
.y262{bottom:221.506667pt;}
.y5a{bottom:221.600000pt;}
.y41{bottom:223.200000pt;}
.ycf{bottom:227.813333pt;}
.yd6{bottom:228.293333pt;}
.y24c{bottom:228.773333pt;}
.y21f{bottom:229.306667pt;}
.y28c{bottom:231.520000pt;}
.y1b9{bottom:233.626667pt;}
.y1b3{bottom:233.666667pt;}
.y210{bottom:234.693333pt;}
.y10e{bottom:235.840000pt;}
.y22e{bottom:236.160000pt;}
.y77{bottom:237.373333pt;}
.y25e{bottom:238.400000pt;}
.y227{bottom:239.200000pt;}
.y23e{bottom:241.786667pt;}
.y1fa{bottom:242.880000pt;}
.y113{bottom:242.946667pt;}
.y163{bottom:243.520000pt;}
.y26b{bottom:245.093333pt;}
.y59{bottom:245.600000pt;}
.y144{bottom:245.826667pt;}
.y40{bottom:247.200000pt;}
.y152{bottom:247.229376pt;}
.y1c{bottom:247.680000pt;}
.y253{bottom:248.386667pt;}
.y16c{bottom:249.120000pt;}
.y11e{bottom:249.760000pt;}
.y12{bottom:251.973333pt;}
.y15a{bottom:253.954636pt;}
.yd5{bottom:257.093333pt;}
.y272{bottom:257.693333pt;}
.y126{bottom:257.817846pt;}
.y240{bottom:257.986667pt;}
.y21e{bottom:258.106667pt;}
.y28b{bottom:259.520000pt;}
.y1a1{bottom:260.186667pt;}
.y248{bottom:262.306667pt;}
.y76{bottom:262.973333pt;}
.y82{bottom:263.333333pt;}
.y20f{bottom:263.520000pt;}
.y10d{bottom:264.640000pt;}
.y1f9{bottom:264.960000pt;}
.y1be{bottom:266.266667pt;}
.y24{bottom:267.106667pt;}
.y239{bottom:267.906667pt;}
.y58{bottom:269.600000pt;}
.y3f{bottom:271.200000pt;}
.y143{bottom:272.226667pt;}
.y246{bottom:272.893333pt;}
.y1ce{bottom:274.437189pt;}
.y24d{bottom:281.666667pt;}
.y6{bottom:284.093333pt;}
.y28a{bottom:285.146667pt;}
.y252{bottom:285.413333pt;}
.y1bc{bottom:286.586667pt;}
.y1bf{bottom:286.746667pt;}
.y21d{bottom:286.906667pt;}
.y1f8{bottom:287.040000pt;}
.y75{bottom:288.573333pt;}
.y247{bottom:288.733333pt;}
.y1a0{bottom:288.826667pt;}
.y23f{bottom:290.746667pt;}
.y81{bottom:292.133333pt;}
.y20e{bottom:292.320000pt;}
.y1b{bottom:293.413333pt;}
.y57{bottom:293.600000pt;}
.y3e{bottom:295.200000pt;}
.yd1{bottom:295.866667pt;}
.y1d3{bottom:296.991962pt;}
.y151{bottom:297.376600pt;}
.y125{bottom:299.990374pt;}
.y289{bottom:300.346667pt;}
.y142{bottom:301.026667pt;}
.y16e{bottom:302.746667pt;}
.yf9{bottom:303.426667pt;}
.y11d{bottom:307.386667pt;}
.y162{bottom:307.520000pt;}
.y1d4{bottom:308.664438pt;}
.y1f6{bottom:309.120000pt;}
.y115{bottom:311.013333pt;}
.y19f{bottom:312.346667pt;}
.y5{bottom:312.893333pt;}
.y74{bottom:314.173333pt;}
.y1e3{bottom:314.560000pt;}
.y1bb{bottom:315.066667pt;}
.y21c{bottom:315.706667pt;}
.y11{bottom:316.000000pt;}
.y56{bottom:317.626667pt;}
.y3d{bottom:319.226667pt;}
.y103{bottom:320.453333pt;}
.y80{bottom:320.933333pt;}
.y20d{bottom:321.120000pt;}
.y117{bottom:325.666667pt;}
.y288{bottom:328.346667pt;}
.y13f{bottom:330.880000pt;}
.y1f5{bottom:331.200000pt;}
.y137{bottom:333.280000pt;}
.y24e{bottom:334.533333pt;}
.y19e{bottom:335.706667pt;}
.y1e2{bottom:336.640000pt;}
.y245{bottom:337.440000pt;}
.y1ab{bottom:338.080000pt;}
.y24f{bottom:339.040000pt;}
.y73{bottom:339.773333pt;}
.y110{bottom:340.733333pt;}
.y1a{bottom:341.466667pt;}
.y55{bottom:341.626667pt;}
.y4{bottom:341.693333pt;}
.y3c{bottom:343.226667pt;}
.y21b{bottom:344.546667pt;}
.y84{bottom:344.879996pt;}
.yf8{bottom:349.280000pt;}
.y7f{bottom:349.760000pt;}
.y1cd{bottom:353.177882pt;}
.y1e1{bottom:353.280000pt;}
.y287{bottom:353.986667pt;}
.yce{bottom:355.386667pt;}
.y293{bottom:355.840000pt;}
.y1b7{bottom:356.026667pt;}
.y1ba{bottom:356.186667pt;}
.y13e{bottom:356.480000pt;}
.y25{bottom:358.626667pt;}
.y136{bottom:362.080000pt;}
.y11c{bottom:364.986667pt;}
.y72{bottom:365.413333pt;}
.y54{bottom:365.626667pt;}
.y3b{bottom:367.226667pt;}
.y161{bottom:369.946667pt;}
.y3{bottom:370.533333pt;}
.y21a{bottom:373.346667pt;}
.y19d{bottom:373.373333pt;}
.y174{bottom:375.119996pt;}
.y1f4{bottom:375.360000pt;}
.y102{bottom:378.080000pt;}
.y286{bottom:379.586667pt;}
.y10{bottom:380.000000pt;}
.yfc{bottom:380.480000pt;}
.y13d{bottom:382.080000pt;}
.y1b6{bottom:384.506667pt;}
.y21{bottom:385.053333pt;}
.yf7{bottom:385.626667pt;}
.y10a{bottom:387.066667pt;}
.y19{bottom:389.573333pt;}
.y53{bottom:389.626667pt;}
.y135{bottom:390.880000pt;}
.y71{bottom:391.013333pt;}
.y3a{bottom:391.226667pt;}
.y1f3{bottom:397.440000pt;}
.y219{bottom:402.146667pt;}
.y1b4{bottom:405.186667pt;}
.y13c{bottom:407.680000pt;}
.y1db{bottom:408.453333pt;}
.y52{bottom:413.626667pt;}
.y19c{bottom:413.946667pt;}
.y39{bottom:415.226667pt;}
.y2{bottom:415.333333pt;}
.y109{bottom:415.866667pt;}
.y70{bottom:416.613333pt;}
.y1f2{bottom:419.520000pt;}
.y134{bottom:419.680000pt;}
.y108{bottom:421.466667pt;}
.y11b{bottom:422.626667pt;}
.ycd{bottom:423.453333pt;}
.y7e{bottom:424.480000pt;}
.y1b1{bottom:425.506667pt;}
.y1b5{bottom:425.666667pt;}
.yfb{bottom:425.853333pt;}
.y160{bottom:427.546667pt;}
.y1ad{bottom:428.320000pt;}
.y27d{bottom:428.960000pt;}
.y285{bottom:430.786667pt;}
.y218{bottom:430.946667pt;}
.y13b{bottom:433.306667pt;}
.y1da{bottom:437.253333pt;}
.y18{bottom:437.666667pt;}
.y83{bottom:438.400000pt;}
.y112{bottom:438.560000pt;}
.y38{bottom:439.266667pt;}
.y1f0{bottom:441.600000pt;}
.y6f{bottom:442.213333pt;}
.y19b{bottom:442.626667pt;}
.y12f{bottom:443.453333pt;}
.yf{bottom:444.026667pt;}
.y100{bottom:446.173333pt;}
.y133{bottom:448.506667pt;}
.y7d{bottom:453.280000pt;}
.y1{bottom:453.733333pt;}
.y1b0{bottom:453.986667pt;}
.y284{bottom:456.386667pt;}
.y1c9{bottom:457.600000pt;}
.y27c{bottom:457.760000pt;}
.y13a{bottom:458.906667pt;}
.y217{bottom:459.746667pt;}
.y51{bottom:461.666667pt;}
.y37{bottom:463.266667pt;}
.y1ef{bottom:463.680000pt;}
.y1d9{bottom:466.053333pt;}
.y6e{bottom:467.813333pt;}
.y22{bottom:468.800000pt;}
.y104{bottom:476.413333pt;}
.y12e{bottom:476.573333pt;}
.y132{bottom:477.306667pt;}
.yfa{bottom:478.786667pt;}
.y11a{bottom:480.226667pt;}
.y19a{bottom:480.253333pt;}
.y6c{bottom:480.573333pt;}
.y283{bottom:482.013333pt;}
.y139{bottom:484.506667pt;}
.y15f{bottom:485.186667pt;}
.y50{bottom:485.666667pt;}
.y1ee{bottom:485.760000pt;}
.y1c8{bottom:486.400000pt;}
.y27b{bottom:486.586667pt;}
.y36{bottom:487.266667pt;}
.yd9{bottom:488.519996pt;}
.y216{bottom:488.573333pt;}
.y1a9{bottom:489.986667pt;}
.y6d{bottom:493.440000pt;}
.y16{bottom:493.893333pt;}
.y1af{bottom:494.853333pt;}
.ycc{bottom:499.066667pt;}
.y131{bottom:506.106667pt;}
.y282{bottom:507.613333pt;}
.y1e9{bottom:507.840000pt;}
.ye{bottom:508.026667pt;}
.y6b{bottom:508.573333pt;}
.y4f{bottom:509.666667pt;}
.y138{bottom:510.106667pt;}
.y2f{bottom:510.720000pt;}
.y35{bottom:511.266667pt;}
.y1c3{bottom:512.413333pt;}
.y111{bottom:514.173333pt;}
.y1c7{bottom:515.200000pt;}
.y215{bottom:517.373333pt;}
.y1a8{bottom:518.306667pt;}
.y1aa{bottom:518.466667pt;}
.y199{bottom:520.866667pt;}
.y101{bottom:523.200000pt;}
.y1d8{bottom:523.680000pt;}
.y1e0{bottom:528.706667pt;}
.y1ec{bottom:529.920000pt;}
.y281{bottom:533.213333pt;}
.y141{bottom:533.373333pt;}
.y4e{bottom:533.666667pt;}
.y6a{bottom:534.213333pt;}
.y34{bottom:535.266667pt;}
.y116{bottom:537.373333pt;}
.y15e{bottom:542.786667pt;}
.y1c6{bottom:544.000000pt;}
.y237{bottom:544.733333pt;}
.y12d{bottom:548.253333pt;}
.y198{bottom:549.506667pt;}
.y130{bottom:550.333333pt;}
.y2a{bottom:552.000000pt;}
.y1d7{bottom:552.480000pt;}
.y1df{bottom:557.506667pt;}
.y4d{bottom:557.666667pt;}
.y280{bottom:558.813333pt;}
.y33{bottom:559.266667pt;}
.y69{bottom:559.813333pt;}
.y1e6{bottom:560.320000pt;}
.y107{bottom:568.546667pt;}
.y140{bottom:571.773333pt;}
.y1c5{bottom:572.826667pt;}
.y20c{bottom:574.080000pt;}
.yd4{bottom:576.133333pt;}
.y4c{bottom:581.693333pt;}
.y32{bottom:583.293333pt;}
.y27f{bottom:584.413333pt;}
.y68{bottom:586.213333pt;}
.y1de{bottom:586.333333pt;}
.y197{bottom:587.173333pt;}
.y29{bottom:592.986667pt;}
.y8{bottom:594.880000pt;}
.y2e{bottom:595.333333pt;}
.y20a{bottom:596.160000pt;}
.y106{bottom:597.373333pt;}
.y1eb{bottom:601.573333pt;}
.y1c4{bottom:601.626667pt;}
.y15d{bottom:602.013333pt;}
.yd3{bottom:604.933333pt;}
.y4b{bottom:605.693333pt;}
.y31{bottom:607.293333pt;}
.y27e{bottom:610.013333pt;}
.y67{bottom:610.106667pt;}
.ycb{bottom:610.466667pt;}
.y1dd{bottom:615.133333pt;}
.y1e5{bottom:623.653333pt;}
.y2d{bottom:624.133333pt;}
.y30{bottom:632.413333pt;}
.y120{bottom:632.933333pt;}
.yff{bottom:635.200000pt;}
.y27a{bottom:635.866667pt;}
.y28{bottom:637.826667pt;}
.y66{bottom:638.946667pt;}
.yca{bottom:639.266667pt;}
.y1a7{bottom:640.293333pt;}
.y1e8{bottom:641.253333pt;}
.y1d6{bottom:641.413333pt;}
.yd2{bottom:642.786667pt;}
.y1dc{bottom:643.933333pt;}
.y1e4{bottom:645.733333pt;}
.y196{bottom:650.333333pt;}
.y2c{bottom:652.933333pt;}
.y14{bottom:655.613333pt;}
.y105{bottom:657.893333pt;}
.y12c{bottom:658.306667pt;}
.y65{bottom:667.746667pt;}
.yc9{bottom:668.066667pt;}
.y1d5{bottom:670.213333pt;}
.y119{bottom:671.426667pt;}
.y15c{bottom:673.506667pt;}
.y63{bottom:677.026667pt;}
.y64{bottom:696.546667pt;}
.h1d{height:2.476368pt;}
.h26{height:2.531628pt;}
.h32{height:2.910965pt;}
.h4d{height:5.289357pt;}
.h20{height:17.953707pt;}
.h29{height:18.354341pt;}
.h1f{height:20.429920pt;}
.h28{height:20.885810pt;}
.h35{height:21.104635pt;}
.h36{height:21.104893pt;}
.h49{height:22.871121pt;}
.h44{height:23.072145pt;}
.h34{height:24.015357pt;}
.h23{height:25.692196pt;}
.h2c{height:26.265513pt;}
.h63{height:27.309920pt;}
.h51{height:29.946759pt;}
.h38{height:30.201439pt;}
.h4a{height:31.448805pt;}
.h48{height:31.531125pt;}
.h43{height:31.808266pt;}
.h45{height:32.560598pt;}
.h22{height:34.615172pt;}
.h2b{height:35.387603pt;}
.h50{height:38.347920pt;}
.h37{height:40.301419pt;}
.h61{height:41.058185pt;}
.h24{height:41.168657pt;}
.h2a{height:41.207015pt;}
.h2d{height:42.087328pt;}
.h62{height:43.583771pt;}
.h4f{height:43.636946pt;}
.h21{height:44.378346pt;}
.h4{height:45.937500pt;}
.h1e{height:47.117972pt;}
.h27{height:48.169401pt;}
.h39{height:48.394745pt;}
.h13{height:52.781250pt;}
.h2e{height:53.746875pt;}
.h53{height:54.876816pt;}
.h6a{height:55.402500pt;}
.h33{height:55.777309pt;}
.h14{height:57.421875pt;}
.h17{height:57.513750pt;}
.h18{height:58.281250pt;}
.h19{height:58.374500pt;}
.h69{height:58.740000pt;}
.h1a{height:59.257812pt;}
.h46{height:61.096875pt;}
.h1b{height:61.188750pt;}
.h2f{height:61.754062pt;}
.h30{height:61.859625pt;}
.h15{height:65.976562pt;}
.h16{height:66.082125pt;}
.h8{height:66.750000pt;}
.h67{height:66.883500pt;}
.h2{height:68.906250pt;}
.h3{height:68.998125pt;}
.he{height:70.199062pt;}
.hd{height:70.304625pt;}
.h78{height:72.480000pt;}
.h52{height:73.935697pt;}
.h1c{height:75.601710pt;}
.h3b{height:76.715625pt;}
.h9{height:77.811562pt;}
.ha{height:77.904750pt;}
.h55{height:78.097500pt;}
.h7{height:79.171875pt;}
.h6{height:79.277438pt;}
.h73{height:82.359062pt;}
.h25{height:83.160540pt;}
.h5c{height:83.540625pt;}
.h5d{height:83.666250pt;}
.h57{height:85.785000pt;}
.h5a{height:85.914000pt;}
.h54{height:87.933504pt;}
.h10{height:88.144687pt;}
.h56{height:88.250250pt;}
.h6f{height:88.320000pt;}
.h31{height:90.719351pt;}
.hc{height:91.875000pt;}
.hf{height:91.966875pt;}
.h4e{height:100.640845pt;}
.h1{height:105.562500pt;}
.h3a{height:105.668063pt;}
.h11{height:107.034375pt;}
.h12{height:107.126250pt;}
.h74{height:109.411875pt;}
.h6e{height:110.400000pt;}
.h7b{height:111.799063pt;}
.h77{height:121.518542pt;}
.h3e{height:122.653125pt;}
.h70{height:123.840000pt;}
.h6d{height:132.480000pt;}
.h68{height:135.200000pt;}
.h65{height:136.771875pt;}
.h3f{height:137.812500pt;}
.h40{height:137.904375pt;}
.h5{height:140.925938pt;}
.h59{height:143.360000pt;}
.h71{height:145.920000pt;}
.h6c{height:154.560000pt;}
.h5f{height:158.343750pt;}
.hb{height:168.590625pt;}
.h41{height:168.682500pt;}
.h4c{height:173.880402pt;}
.h6b{height:212.160000pt;}
.h3c{height:252.748125pt;}
.h72{height:264.480000pt;}
.h3d{height:275.716875pt;}
.h4b{height:278.499695pt;}
.h7a{height:302.400000pt;}
.h79{height:304.160000pt;}
.h75{height:319.040000pt;}
.h47{height:322.214251pt;}
.h42{height:325.046334pt;}
.h58{height:342.720000pt;}
.h64{height:350.146550pt;}
.h76{height:362.880000pt;}
.h66{height:366.720000pt;}
.h60{height:377.983048pt;}
.h5e{height:469.600000pt;}
.h5b{height:486.080000pt;}
.h0{height:720.000000pt;}
.w11{width:83.200000pt;}
.we{width:85.440000pt;}
.w12{width:90.720000pt;}
.w10{width:93.280000pt;}
.wf{width:93.440000pt;}
.w8{width:140.480000pt;}
.w9{width:165.120000pt;}
.wa{width:165.280000pt;}
.wb{width:169.280000pt;}
.w1{width:249.476233pt;}
.w3{width:253.567905pt;}
.w2{width:264.590805pt;}
.w6{width:285.709169pt;}
.w5{width:321.242685pt;}
.w4{width:332.599410pt;}
.w7{width:362.866430pt;}
.wd{width:390.161937pt;}
.w16{width:393.120000pt;}
.w14{width:400.640000pt;}
.wc{width:438.453501pt;}
.w13{width:446.080000pt;}
.w17{width:499.040000pt;}
.w15{width:650.240000pt;}
.w0{width:960.000000pt;}
.x4b{left:-233.139914pt;}
.x44{left:-230.923870pt;}
.x45{left:-227.685029pt;}
.x47{left:-214.573391pt;}
.x46{left:-209.118497pt;}
.x42{left:-204.871070pt;}
.x43{left:-203.336880pt;}
.x4d{left:-198.563836pt;}
.x5c{left:-2.651501pt;}
.x59{left:-1.517656pt;}
.x0{left:0.000000pt;}
.x3d{left:1.687307pt;}
.x96{left:2.747543pt;}
.x36{left:4.071605pt;}
.x97{left:5.098961pt;}
.x37{left:7.556191pt;}
.x7{left:9.600000pt;}
.xd5{left:10.752000pt;}
.x57{left:11.739986pt;}
.x6{left:13.344000pt;}
.x5e{left:15.054406pt;}
.x76{left:16.580488pt;}
.x77{left:19.475232pt;}
.x39{left:21.678290pt;}
.x95{left:22.796712pt;}
.x9b{left:26.262377pt;}
.x38{left:27.546878pt;}
.x68{left:28.448000pt;}
.x5{left:31.584000pt;}
.x34{left:33.782633pt;}
.xc6{left:34.906667pt;}
.x55{left:36.000000pt;}
.xa2{left:36.896000pt;}
.x3f{left:38.918426pt;}
.xc5{left:42.586667pt;}
.x54{left:43.584000pt;}
.x8{left:45.600000pt;}
.x1{left:47.584000pt;}
.xb7{left:49.472000pt;}
.x1f{left:51.136000pt;}
.xa0{left:53.792000pt;}
.x78{left:55.808000pt;}
.x9f{left:57.600000pt;}
.x9{left:58.688000pt;}
.xc7{left:60.640000pt;}
.x8d{left:62.624000pt;}
.xd3{left:65.346667pt;}
.x1e{left:66.976000pt;}
.xac{left:68.640000pt;}
.x16{left:70.688000pt;}
.xa1{left:71.872000pt;}
.x2b{left:74.944000pt;}
.xde{left:75.904000pt;}
.xdd{left:78.944000pt;}
.x8a{left:80.267947pt;}
.x66{left:81.376000pt;}
.x2{left:82.944000pt;}
.xd6{left:84.128000pt;}
.xab{left:85.280000pt;}
.xcc{left:87.680000pt;}
.x23{left:91.168000pt;}
.xad{left:93.120000pt;}
.xb9{left:96.256000pt;}
.x3{left:104.064000pt;}
.xd7{left:109.213333pt;}
.xce{left:111.773333pt;}
.xd9{left:112.773333pt;}
.xb3{left:115.840000pt;}
.x28{left:120.032000pt;}
.xb4{left:121.888000pt;}
.xd8{left:124.293333pt;}
.x1c{left:126.048000pt;}
.x29{left:131.392000pt;}
.xda{left:132.573333pt;}
.xb6{left:133.626667pt;}
.x71{left:136.413333pt;}
.x72{left:138.813333pt;}
.x17{left:142.720000pt;}
.x4e{left:149.924383pt;}
.xaa{left:156.480000pt;}
.xd0{left:157.760000pt;}
.x89{left:164.249281pt;}
.x70{left:165.213333pt;}
.xba{left:168.573333pt;}
.x74{left:170.055900pt;}
.xb{left:172.133333pt;}
.xdb{left:175.293333pt;}
.xa{left:178.173333pt;}
.xc{left:183.266667pt;}
.xd{left:188.573333pt;}
.x5f{left:193.540874pt;}
.xcb{left:200.293333pt;}
.x8b{left:209.447160pt;}
.x53{left:210.746667pt;}
.xdf{left:212.800000pt;}
.xdc{left:214.013333pt;}
.x2c{left:219.106667pt;}
.x6e{left:232.613333pt;}
.xe{left:235.200000pt;}
.x75{left:242.990553pt;}
.xb5{left:245.666667pt;}
.x12{left:249.053333pt;}
.x20{left:251.173333pt;}
.x5a{left:253.829676pt;}
.xcd{left:256.933333pt;}
.x60{left:258.105392pt;}
.xd1{left:259.706667pt;}
.x1d{left:260.773333pt;}
.x5d{left:261.944793pt;}
.x5b{left:266.125954pt;}
.x48{left:267.644978pt;}
.xa3{left:274.813333pt;}
.x4f{left:275.813122pt;}
.x9c{left:279.533832pt;}
.x4c{left:283.484067pt;}
.xb8{left:285.288150pt;}
.x49{left:291.652199pt;}
.x4a{left:293.015923pt;}
.x10{left:294.466667pt;}
.x79{left:299.200000pt;}
.x69{left:303.706667pt;}
.x6a{left:305.120000pt;}
.x63{left:306.306667pt;}
.xd2{left:311.386667pt;}
.x73{left:313.680000pt;}
.x1b{left:321.666667pt;}
.x2a{left:325.986667pt;}
.x25{left:326.946667pt;}
.x1a{left:329.986667pt;}
.x8c{left:350.266667pt;}
.x7c{left:354.746667pt;}
.x98{left:365.075694pt;}
.x9d{left:371.011808pt;}
.x58{left:374.647270pt;}
.x4{left:375.813333pt;}
.x99{left:382.522687pt;}
.x9a{left:383.513759pt;}
.x7e{left:387.866667pt;}
.x7f{left:390.106667pt;}
.x9e{left:394.013333pt;}
.x26{left:402.626667pt;}
.x61{left:406.493333pt;}
.x7d{left:409.146667pt;}
.x80{left:410.106667pt;}
.xbf{left:412.000000pt;}
.x40{left:414.243459pt;}
.xa6{left:417.280000pt;}
.x11{left:429.186667pt;}
.xf{left:431.773333pt;}
.x50{left:436.733333pt;}
.xc0{left:437.826667pt;}
.x7b{left:442.266667pt;}
.xa4{left:445.506667pt;}
.xc4{left:449.306667pt;}
.x52{left:472.546667pt;}
.xaf{left:475.813333pt;}
.xa7{left:484.546667pt;}
.x27{left:487.613333pt;}
.x86{left:489.666667pt;}
.x6f{left:495.173333pt;}
.xc1{left:497.440000pt;}
.x24{left:498.973333pt;}
.xae{left:499.973333pt;}
.x33{left:502.679996pt;}
.x13{left:508.640000pt;}
.xcf{left:517.760000pt;}
.x41{left:525.359996pt;}
.x15{left:528.133333pt;}
.x21{left:533.946667pt;}
.x2e{left:536.706667pt;}
.x30{left:539.773333pt;}
.x3a{left:541.008644pt;}
.xd4{left:544.186667pt;}
.x2d{left:547.106667pt;}
.xbb{left:548.346667pt;}
.x22{left:549.786667pt;}
.x31{left:550.813333pt;}
.x3e{left:558.066725pt;}
.x65{left:564.960000pt;}
.x3b{left:566.863484pt;}
.x3c{left:568.332162pt;}
.x94{left:570.719996pt;}
.xbc{left:575.746667pt;}
.xa8{left:582.400000pt;}
.xbd{left:584.706667pt;}
.xc3{left:590.880000pt;}
.x64{left:601.186667pt;}
.x7a{left:610.426667pt;}
.x14{left:618.973333pt;}
.xc2{left:629.786667pt;}
.x56{left:631.199993pt;}
.x87{left:640.293333pt;}
.x2f{left:646.373333pt;}
.xa9{left:649.786667pt;}
.x51{left:653.893333pt;}
.x67{left:661.506667pt;}
.xb0{left:665.213333pt;}
.x62{left:693.826667pt;}
.xc8{left:695.360000pt;}
.x83{left:699.706667pt;}
.x19{left:701.626667pt;}
.x85{left:715.866667pt;}
.x91{left:718.053333pt;}
.x84{left:719.226667pt;}
.xbe{left:729.506667pt;}
.x8f{left:730.533333pt;}
.x6b{left:733.280000pt;}
.x82{left:734.746667pt;}
.x6c{left:737.440000pt;}
.x18{left:739.200000pt;}
.x6d{left:745.026667pt;}
.xa5{left:747.680000pt;}
.x93{left:751.493333pt;}
.x8e{left:754.853333pt;}
.x90{left:764.866667pt;}
.x81{left:767.426667pt;}
.x92{left:773.893333pt;}
.xc9{left:778.560000pt;}
.x88{left:786.880000pt;}
.xb2{left:793.986667pt;}
.x35{left:794.875602pt;}
.xb1{left:818.146667pt;}
.xca{left:869.280000pt;}
.x32{left:872.800000pt;}
}




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