
    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_aa91568d6f1fba8616c56bad.woff')format("woff");}.ff1{font-family:ff1;line-height:1.001000;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_de47674cfaa61fe58f84e861.woff')format("woff");}.ff2{font-family:ff2;line-height:0.901000;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_865544a432c11e734fe1fa55.woff')format("woff");}.ff3{font-family:ff3;line-height:0.910000;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_77dc54d957092dabddd145c2.woff')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_192b8132837da670dd60e4a8.woff')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_290bfc7c5c7240c9ff2919a9.woff')format("woff");}.ff6{font-family:ff6;line-height:0.922000;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_7270b59f620fb3f9e94df8e3.woff')format("woff");}.ff7{font-family:ff7;line-height:1.001000;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_8945f159127b569c52012e32.woff')format("woff");}.ff8{font-family:ff8;line-height:1.000000;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_378fc418ff78fcc428507e28.woff')format("woff");}.ff9{font-family:ff9;line-height:0.803000;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_0401d7eb795db341d46b600d.woff')format("woff");}.ffa{font-family:ffa;line-height:0.714046;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_79741881b37fe841007bc93c.woff')format("woff");}.ffb{font-family:ffb;line-height:1.001000;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_3ce887ad47d11b6f41f47c30.woff')format("woff");}.ffc{font-family:ffc;line-height:1.001000;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_e9676cfb3fe2ee1fe0b6dc9e.woff')format("woff");}.ffd{font-family:ffd;line-height:1.000000;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_269a0cd81cc2198b0ac7df5b.woff')format("woff");}.ffe{font-family:ffe;line-height:0.908000;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_6729e9ab87444e18b4c5a446.woff')format("woff");}.fff{font-family:fff;line-height:0.714232;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_a118b605013d85ea6aa27d28.woff')format("woff");}.ff10{font-family:ff10;line-height:0.918000;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_4199affc4935dcf175501459.woff')format("woff");}.ff11{font-family:ff11;line-height:1.000000;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_70d08b0e5cb75a42962439c9.woff')format("woff");}.ff12{font-family:ff12;line-height:1.000000;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_11e9aa5e241205b8399695df.woff')format("woff");}.ff13{font-family:ff13;line-height:0.708000;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_fbb5cdd7879e242937528f19.woff')format("woff");}.ff14{font-family:ff14;line-height:1.000000;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_c943f5236e8b050a786ebce9.woff')format("woff");}.ff15{font-family:ff15;line-height:0.923000;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_1f872dc554d433a71cd63a4f.woff')format("woff");}.ff16{font-family:ff16;line-height:2.999000;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_0770e4518e38063e09c7d2a4.woff')format("woff");}.ff17{font-family:ff17;line-height:0.908000;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_6320d3993e91c1b676c4fd9a.woff')format("woff");}.ff18{font-family:ff18;line-height:0.684000;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:ff19;src:url('chunks/assets/font_5977493332848679d74fefb8.woff')format("woff");}.ff19{font-family:ff19;line-height:0.908000;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:ff1a;src:url('chunks/assets/font_25f6b232f651a9929c963503.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.888000;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:ff1b;src:url('chunks/assets/font_5be711b627d5a9aad2a6e081.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.701000;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);}
.v4{vertical-align:-13.320000px;}
.v1{vertical-align:-10.386000px;}
.va{vertical-align:-8.436000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:10.386000px;}
.vf{vertical-align:21.690000px;}
.v2{vertical-align:23.754000px;}
.v6{vertical-align:34.146000px;}
.vd{vertical-align:35.814000px;}
.v5{vertical-align:44.280000px;}
.vc{vertical-align:45.630000px;}
.ve{vertical-align:51.924000px;}
.v7{vertical-align:92.292000px;}
.vb{vertical-align:111.930000px;}
.v9{vertical-align:120.876000px;}
.v8{vertical-align:137.190000px;}
.ls1{letter-spacing:0.000000px;}
.ls95{letter-spacing:0.000065px;}
.ls5f{letter-spacing:0.000462px;}
.ls34{letter-spacing:0.001044px;}
.ls5c{letter-spacing:0.001050px;}
.ls2b{letter-spacing:0.001593px;}
.ls45{letter-spacing:0.001620px;}
.ls85{letter-spacing:0.001728px;}
.ls4{letter-spacing:0.001932px;}
.ls71{letter-spacing:0.003902px;}
.ls26{letter-spacing:0.004275px;}
.ls6f{letter-spacing:0.004300px;}
.ls80{letter-spacing:0.004332px;}
.lsc{letter-spacing:0.004344px;}
.ls8f{letter-spacing:0.004395px;}
.ls64{letter-spacing:0.005204px;}
.lse{letter-spacing:0.005445px;}
.ls8b{letter-spacing:0.005699px;}
.ls3e{letter-spacing:0.007432px;}
.ls75{letter-spacing:0.007532px;}
.ls29{letter-spacing:0.007593px;}
.ls1d{letter-spacing:0.007787px;}
.ls2f{letter-spacing:0.009267px;}
.ls16{letter-spacing:0.009796px;}
.ls22{letter-spacing:0.010275px;}
.lsd{letter-spacing:0.010835px;}
.ls51{letter-spacing:0.011023px;}
.ls7c{letter-spacing:0.011779px;}
.ls4d{letter-spacing:0.011808px;}
.ls55{letter-spacing:0.012497px;}
.ls9{letter-spacing:0.013745px;}
.ls24{letter-spacing:0.014084px;}
.ls3b{letter-spacing:0.014290px;}
.ls35{letter-spacing:0.016042px;}
.ls13{letter-spacing:0.016407px;}
.ls31{letter-spacing:0.016790px;}
.lsb{letter-spacing:0.016835px;}
.ls82{letter-spacing:0.017002px;}
.lsf{letter-spacing:0.017261px;}
.ls11{letter-spacing:0.018896px;}
.ls1a{letter-spacing:0.019854px;}
.ls32{letter-spacing:0.020084px;}
.ls62{letter-spacing:0.020547px;}
.ls12{letter-spacing:0.020841px;}
.ls5{letter-spacing:0.021162px;}
.ls4a{letter-spacing:0.021505px;}
.ls94{letter-spacing:0.021702px;}
.ls6a{letter-spacing:0.022260px;}
.ls92{letter-spacing:0.022428px;}
.ls4c{letter-spacing:0.022648px;}
.ls40{letter-spacing:0.022692px;}
.ls9f{letter-spacing:0.023165px;}
.ls5a{letter-spacing:0.023659px;}
.ls3f{letter-spacing:0.023867px;}
.ls69{letter-spacing:0.023949px;}
.ls89{letter-spacing:0.024787px;}
.ls7a{letter-spacing:0.024872px;}
.ls5b{letter-spacing:0.026207px;}
.ls2c{letter-spacing:0.026679px;}
.ls7d{letter-spacing:0.028030px;}
.ls20{letter-spacing:0.028133px;}
.ls72{letter-spacing:0.030084px;}
.ls9e{letter-spacing:0.030548px;}
.ls91{letter-spacing:0.031498px;}
.ls99{letter-spacing:0.032145px;}
.ls6c{letter-spacing:0.033220px;}
.ls2d{letter-spacing:0.033690px;}
.ls52{letter-spacing:0.036409px;}
.ls79{letter-spacing:0.065455px;}
.ls8{letter-spacing:2.981971px;}
.ls97{letter-spacing:2.984525px;}
.ls4b{letter-spacing:2.984915px;}
.ls1f{letter-spacing:2.986059px;}
.ls33{letter-spacing:2.986613px;}
.ls65{letter-spacing:2.987971px;}
.ls4f{letter-spacing:2.989289px;}
.ls53{letter-spacing:2.990915px;}
.ls5e{letter-spacing:2.991056px;}
.ls6b{letter-spacing:2.992478px;}
.ls49{letter-spacing:2.995289px;}
.lsa0{letter-spacing:4.705905px;}
.ls18{letter-spacing:5.170913px;}
.ls59{letter-spacing:5.743488px;}
.ls54{letter-spacing:7.069097px;}
.ls46{letter-spacing:7.099534px;}
.ls44{letter-spacing:7.174869px;}
.ls50{letter-spacing:8.262366px;}
.ls58{letter-spacing:10.930918px;}
.ls60{letter-spacing:13.893056px;}
.ls5d{letter-spacing:13.899056px;}
.lsa{letter-spacing:14.530921px;}
.ls43{letter-spacing:14.540712px;}
.ls3d{letter-spacing:15.643649px;}
.ls8e{letter-spacing:17.280014px;}
.ls14{letter-spacing:17.476378px;}
.ls73{letter-spacing:17.528915px;}
.ls70{letter-spacing:17.533289px;}
.ls38{letter-spacing:17.534915px;}
.ls30{letter-spacing:17.536612px;}
.ls15{letter-spacing:17.541833px;}
.ls10{letter-spacing:18.130924px;}
.ls66{letter-spacing:18.179412px;}
.ls7{letter-spacing:18.196379px;}
.ls2e{letter-spacing:20.421835px;}
.ls17{letter-spacing:21.164915px;}
.ls90{letter-spacing:21.168960px;}
.ls42{letter-spacing:21.169289px;}
.ls86{letter-spacing:21.169641px;}
.ls84{letter-spacing:21.170915px;}
.ls63{letter-spacing:21.171056px;}
.ls7f{letter-spacing:21.172059px;}
.ls6{letter-spacing:21.172478px;}
.ls27{letter-spacing:21.175641px;}
.ls3{letter-spacing:21.665473px;}
.ls2{letter-spacing:21.730927px;}
.ls76{letter-spacing:21.927291px;}
.ls7e{letter-spacing:22.546478px;}
.ls2a{letter-spacing:22.624888px;}
.ls23{letter-spacing:22.630888px;}
.ls47{letter-spacing:22.806366px;}
.ls8d{letter-spacing:22.894055px;}
.ls67{letter-spacing:23.638338px;}
.ls7b{letter-spacing:24.164915px;}
.ls1b{letter-spacing:24.686915px;}
.ls21{letter-spacing:24.688059px;}
.ls83{letter-spacing:24.689971px;}
.ls4e{letter-spacing:24.691289px;}
.ls3c{letter-spacing:24.692915px;}
.ls36{letter-spacing:24.694059px;}
.ls77{letter-spacing:24.924960px;}
.ls56{letter-spacing:25.265476px;}
.ls1c{letter-spacing:25.330930px;}
.ls93{letter-spacing:25.334064px;}
.ls28{letter-spacing:25.349412px;}
.ls88{letter-spacing:25.349583px;}
.ls87{letter-spacing:25.355412px;}
.ls3a{letter-spacing:25.592749px;}
.ls8a{letter-spacing:25.892525px;}
.ls96{letter-spacing:25.894087px;}
.ls41{letter-spacing:26.448366px;}
.ls68{letter-spacing:26.836386px;}
.ls1e{letter-spacing:27.229114px;}
.ls37{letter-spacing:28.865479px;}
.ls78{letter-spacing:28.930933px;}
.ls9a{letter-spacing:30.043661px;}
.ls8c{letter-spacing:30.587376px;}
.ls57{letter-spacing:32.334572px;}
.ls0{letter-spacing:32.727300px;}
.ls19{letter-spacing:34.625483px;}
.ls81{letter-spacing:62.639412px;}
.ls74{letter-spacing:71.738242px;}
.ls98{letter-spacing:256.018895px;}
.ls6e{letter-spacing:354.541641px;}
.ls9d{letter-spacing:386.443958px;}
.ls9c{letter-spacing:393.971237px;}
.ls9b{letter-spacing:451.505831px;}
.ls48{letter-spacing:484.560404px;}
.ls6d{letter-spacing:612.397289px;}
.ls61{letter-spacing:686.135214px;}
.ls25{letter-spacing:1126.616915px;}
.ls39{letter-spacing:1136.299860px;}
.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;}
}
.ws64{word-spacing:-60.833505px;}
.ws6b{word-spacing:-51.820407px;}
.ws16{word-spacing:-51.198588px;}
.wsa{word-spacing:-47.333852px;}
.ws10{word-spacing:-46.878585px;}
.ws13{word-spacing:-45.045856px;}
.ws2b{word-spacing:-42.637126px;}
.wsd2{word-spacing:-38.937826px;}
.ws28{word-spacing:-37.387668px;}
.wse{word-spacing:-37.060395px;}
.wsd8{word-spacing:-36.157121px;}
.ws21{word-spacing:-32.544027px;}
.ws6d{word-spacing:-31.706208px;}
.wsf{word-spacing:-31.496754px;}
.ws81{word-spacing:-26.600749px;}
.wsd9{word-spacing:-24.506202px;}
.ws6c{word-spacing:-24.440748px;}
.wsa3{word-spacing:-22.594928px;}
.wsb3{word-spacing:-20.762199px;}
.wsdb{word-spacing:-20.251653px;}
.wsb0{word-spacing:-19.976744px;}
.ws47{word-spacing:-19.387653px;}
.ws1{word-spacing:-18.540986px;}
.wsad{word-spacing:-18.405834px;}
.ws2a{word-spacing:-18.183288px;}
.wsb4{word-spacing:-18.078561px;}
.ws9e{word-spacing:-18.013106px;}
.wsa4{word-spacing:-17.751288px;}
.wsb1{word-spacing:-17.424015px;}
.ws49{word-spacing:-17.293105px;}
.ws14{word-spacing:-17.096742px;}
.ws18{word-spacing:-17.031287px;}
.ws63{word-spacing:-16.900378px;}
.ws66{word-spacing:-16.834923px;}
.ws2e{word-spacing:-16.638559px;}
.ws5{word-spacing:-16.611639px;}
.wsae{word-spacing:-16.049468px;}
.ws27{word-spacing:-15.829597px;}
.ws1c{word-spacing:-15.743520px;}
.ws1e{word-spacing:-15.722195px;}
.ws44{word-spacing:-15.656740px;}
.ws5b{word-spacing:-15.525831px;}
.ws89{word-spacing:-15.460377px;}
.wsa6{word-spacing:-15.264013px;}
.ws4a{word-spacing:-15.002194px;}
.wsa9{word-spacing:-14.936740px;}
.ws15{word-spacing:-14.544012px;}
.ws94{word-spacing:-14.478558px;}
.ws4d{word-spacing:-14.347648px;}
.wsa1{word-spacing:-14.085830px;}
.ws56{word-spacing:-13.889466px;}
.ws43{word-spacing:-13.514158px;}
.ws1d{word-spacing:-13.442427px;}
.ws9c{word-spacing:-13.104011px;}
.wsaa{word-spacing:-13.038556px;}
.ws23{word-spacing:-12.973102px;}
.wsa8{word-spacing:-12.776738px;}
.ws98{word-spacing:-12.711283px;}
.ws17{word-spacing:-12.514920px;}
.wsc{word-spacing:-12.449465px;}
.ws8b{word-spacing:-12.397101px;}
.ws48{word-spacing:-12.384010px;}
.ws5d{word-spacing:-12.122192px;}
.wsdc{word-spacing:-12.056737px;}
.wse8{word-spacing:-11.860374px;}
.wse0{word-spacing:-11.729464px;}
.ws78{word-spacing:-11.598555px;}
.ws1b{word-spacing:-11.467646px;}
.ws9d{word-spacing:-11.402191px;}
.wsbe{word-spacing:-11.336737px;}
.ws24{word-spacing:-11.271282px;}
.ws7a{word-spacing:-11.140373px;}
.ws32{word-spacing:-11.009464px;}
.ws11{word-spacing:-10.878555px;}
.wse7{word-spacing:-10.872009px;}
.ws0{word-spacing:-10.813100px;}
.wsb8{word-spacing:-10.747645px;}
.wscf{word-spacing:-10.682191px;}
.ws8a{word-spacing:-10.616736px;}
.ws77{word-spacing:-10.610191px;}
.wsa7{word-spacing:-10.420372px;}
.wsb7{word-spacing:-10.354918px;}
.wsa5{word-spacing:-10.289463px;}
.ws4c{word-spacing:-10.224009px;}
.ws79{word-spacing:-10.217463px;}
.ws52{word-spacing:-10.158554px;}
.ws1a{word-spacing:-10.027645px;}
.ws4{word-spacing:-9.976548px;}
.ws7{word-spacing:-9.856996px;}
.wsdf{word-spacing:-9.634917px;}
.ws97{word-spacing:-9.438553px;}
.ws20{word-spacing:-9.307644px;}
.ws95{word-spacing:-9.242190px;}
.wsb6{word-spacing:-9.176735px;}
.ws53{word-spacing:-8.849462px;}
.ws96{word-spacing:-8.784007px;}
.ws75{word-spacing:-8.653098px;}
.ws40{word-spacing:-8.456734px;}
.ws6f{word-spacing:-8.391280px;}
.ws31{word-spacing:-8.325825px;}
.ws3e{word-spacing:-8.064007px;}
.wsc3{word-spacing:-7.736734px;}
.ws76{word-spacing:-7.540370px;}
.wse4{word-spacing:-7.409461px;}
.ws3d{word-spacing:-7.402915px;}
.wsdd{word-spacing:-7.344006px;}
.ws70{word-spacing:-7.278552px;}
.wsbb{word-spacing:-6.879278px;}
.wse5{word-spacing:-6.427642px;}
.ws2d{word-spacing:-6.401460px;}
.ws58{word-spacing:-6.336005px;}
.wsbc{word-spacing:-6.231278px;}
.ws72{word-spacing:-6.165823px;}
.ws8{word-spacing:-6.150909px;}
.wsb9{word-spacing:-6.034914px;}
.wsde{word-spacing:-5.969460px;}
.wsb5{word-spacing:-5.904005px;}
.wsa0{word-spacing:-5.773096px;}
.wsba{word-spacing:-5.570186px;}
.ws1f{word-spacing:-5.445823px;}
.ws9b{word-spacing:-5.380368px;}
.ws45{word-spacing:-5.249459px;}
.ws91{word-spacing:-5.118550px;}
.wsaf{word-spacing:-4.660368px;}
.ws8e{word-spacing:-4.398549px;}
.ws3{word-spacing:-4.297866px;}
.wse6{word-spacing:-4.261094px;}
.ws8f{word-spacing:-3.809458px;}
.ws8c{word-spacing:-3.678549px;}
.ws5f{word-spacing:-3.652367px;}
.ws30{word-spacing:-3.613094px;}
.wse3{word-spacing:-3.024003px;}
.ws4e{word-spacing:-2.893093px;}
.ws9{word-spacing:-2.683924px;}
.ws9f{word-spacing:-2.631275px;}
.wsc2{word-spacing:-2.238547px;}
.ws99{word-spacing:-2.173093px;}
.wsab{word-spacing:-1.976729px;}
.ws9a{word-spacing:-1.911274px;}
.wsac{word-spacing:-1.714911px;}
.wsb2{word-spacing:-1.649456px;}
.ws92{word-spacing:-1.584001px;}
.wse1{word-spacing:-1.453092px;}
.ws93{word-spacing:-1.387638px;}
.ws51{word-spacing:-1.060365px;}
.ws50{word-spacing:-0.994910px;}
.wsbd{word-spacing:-0.857455px;}
.ws26{word-spacing:-0.595637px;}
.ws46{word-spacing:-0.340364px;}
.wsbf{word-spacing:-0.065455px;}
.ws6{word-spacing:-0.059776px;}
.ws5e{word-spacing:-0.052364px;}
.ws22{word-spacing:-0.047821px;}
.ws7e{word-spacing:-0.009541px;}
.ws12{word-spacing:0.000000px;}
.ws57{word-spacing:0.013091px;}
.wsd{word-spacing:0.183273px;}
.ws71{word-spacing:0.903273px;}
.ws90{word-spacing:2.997821px;}
.ws55{word-spacing:3.351276px;}
.ws4b{word-spacing:3.482185px;}
.ws73{word-spacing:3.547639px;}
.ws2f{word-spacing:4.464004px;}
.wsca{word-spacing:7.172112px;}
.wse2{word-spacing:7.252370px;}
.ws4f{word-spacing:11.179646px;}
.ws6a{word-spacing:15.057461px;}
.wsa2{word-spacing:16.880672px;}
.ws36{word-spacing:17.479899px;}
.ws60{word-spacing:17.483635px;}
.ws7c{word-spacing:17.487410px;}
.ws34{word-spacing:17.487512px;}
.ws69{word-spacing:17.493461px;}
.ws3c{word-spacing:17.493512px;}
.ws35{word-spacing:17.510148px;}
.ws8d{word-spacing:17.986924px;}
.ws65{word-spacing:18.616738px;}
.ws80{word-spacing:21.102291px;}
.ws39{word-spacing:21.104327px;}
.wsc7{word-spacing:21.116925px;}
.ws74{word-spacing:21.119304px;}
.ws68{word-spacing:21.120943px;}
.ws3a{word-spacing:21.121899px;}
.ws7b{word-spacing:21.122135px;}
.ws67{word-spacing:21.123461px;}
.ws38{word-spacing:21.123512px;}
.wsc5{word-spacing:21.123889px;}
.ws3b{word-spacing:21.124927px;}
.ws33{word-spacing:21.127679px;}
.ws6e{word-spacing:21.129512px;}
.ws59{word-spacing:21.142461px;}
.ws61{word-spacing:21.146338px;}
.wsb{word-spacing:22.830564px;}
.wscb{word-spacing:22.834279px;}
.ws2{word-spacing:23.312640px;}
.ws54{word-spacing:24.465889px;}
.ws41{word-spacing:24.620327px;}
.ws2c{word-spacing:24.624204px;}
.ws88{word-spacing:24.636943px;}
.wsda{word-spacing:24.638835px;}
.ws5c{word-spacing:24.641635px;}
.ws29{word-spacing:24.645033px;}
.ws3f{word-spacing:24.645889px;}
.wsd1{word-spacing:25.857587px;}
.wsd7{word-spacing:27.868078px;}
.wsc1{word-spacing:33.709119px;}
.ws42{word-spacing:33.774574px;}
.ws7f{word-spacing:46.878585px;}
.ws19{word-spacing:47.351068px;}
.wsc0{word-spacing:67.614602px;}
.wscc{word-spacing:71.670944px;}
.wsc9{word-spacing:76.262112px;}
.wsd4{word-spacing:150.341612px;}
.wsd0{word-spacing:160.617037px;}
.wsd6{word-spacing:163.462356px;}
.wsce{word-spacing:183.696396px;}
.wsd3{word-spacing:185.707890px;}
.wscd{word-spacing:195.472190px;}
.ws84{word-spacing:203.118715px;}
.wsd5{word-spacing:237.135783px;}
.ws82{word-spacing:246.685296px;}
.ws86{word-spacing:339.303555px;}
.ws83{word-spacing:354.279568px;}
.ws87{word-spacing:401.969790px;}
.ws85{word-spacing:527.355461px;}
.wsc4{word-spacing:625.536521px;}
.ws5a{word-spacing:858.384715px;}
.ws62{word-spacing:889.606560px;}
.ws37{word-spacing:924.406927px;}
.wsc8{word-spacing:1004.911383px;}
.ws7d{word-spacing:1015.775583px;}
.wsc6{word-spacing:1329.238926px;}
.ws25{word-spacing:1719.151978px;}
._16{margin-left:-37.898213px;}
._19{margin-left:-34.494574px;}
._11{margin-left:-32.858209px;}
._24{margin-left:-31.810936px;}
._17{margin-left:-30.632753px;}
._57{margin-left:-18.675558px;}
._1a{margin-left:-12.960011px;}
._18{margin-left:-10.669100px;}
._34{margin-left:-7.237358px;}
._0{margin-left:-5.432732px;}
._4{margin-left:-4.414165px;}
._2{margin-left:-3.098772px;}
._3{margin-left:-1.467794px;}
._5{width:1.673717px;}
._1{width:3.098772px;}
._55{width:4.123640px;}
._25{width:5.236368px;}
._59{width:7.346392px;}
._22{width:17.111443px;}
._32{width:18.130924px;}
._31{width:19.135149px;}
._60{width:20.537488px;}
._d{width:21.665473px;}
._1f{width:22.697490px;}
._3a{width:24.938203px;}
._6{width:26.659918px;}
._38{width:27.672040px;}
._8{width:28.845019px;}
._4c{width:29.897496px;}
._5d{width:31.156390px;}
._47{width:32.727300px;}
._1b{width:34.429120px;}
._2d{width:36.503024px;}
._7{width:37.930910px;}
._62{width:39.126595px;}
._20{width:40.320034px;}
._1c{width:41.815930px;}
._2e{width:43.549715px;}
._37{width:44.849248px;}
._21{width:46.447951px;}
._54{width:47.940560px;}
._2f{width:49.053598px;}
._e{width:51.054588px;}
._10{width:52.404009px;}
._5f{width:55.969070px;}
._14{width:57.912065px;}
._a{width:60.218232px;}
._33{width:64.298823px;}
._c{width:66.501874px;}
._5c{width:67.745511px;}
._3e{width:71.504216px;}
._3d{width:72.704804px;}
._58{width:75.992791px;}
._45{width:78.405052px;}
._2a{width:80.181885px;}
._12{width:81.229159px;}
._44{width:86.710453px;}
._39{width:94.684920px;}
._41{width:98.930003px;}
._61{width:102.370994px;}
._f{width:113.432822px;}
._77{width:116.443733px;}
._3f{width:117.453345px;}
._4f{width:134.378294px;}
._52{width:143.411029px;}
._40{width:145.009732px;}
._78{width:148.974670px;}
._5b{width:149.984281px;}
._4d{width:169.134686px;}
._75{width:187.429685px;}
._6c{width:204.372776px;}
._6f{width:211.665400px;}
._71{width:223.919398px;}
._68{width:225.354012px;}
._6d{width:228.096842px;}
._42{width:229.352918px;}
._74{width:256.801852px;}
._3b{width:267.437936px;}
._72{width:319.739684px;}
._43{width:323.569880px;}
._73{width:324.880386px;}
._76{width:328.048493px;}
._6a{width:329.483107px;}
._67{width:336.118199px;}
._69{width:344.427007px;}
._6e{width:353.931328px;}
._6b{width:357.750118px;}
._66{width:359.370907px;}
._70{width:368.038369px;}
._65{width:476.378579px;}
._5a{width:521.149525px;}
._48{width:558.748258px;}
._4b{width:685.833299px;}
._4e{width:687.572780px;}
._53{width:705.011497px;}
._4a{width:710.472021px;}
._50{width:719.476963px;}
._51{width:737.542433px;}
._46{width:746.995998px;}
._49{width:828.369952px;}
._64{width:829.833419px;}
._3c{width:853.780553px;}
._56{width:860.254552px;}
._63{width:958.152227px;}
._36{width:1049.701427px;}
._5e{width:1124.603275px;}
._26{width:1157.134211px;}
._30{width:1227.775291px;}
._2c{width:1277.838501px;}
._35{width:1334.793252px;}
._1d{width:1386.487130px;}
._1e{width:1388.254714px;}
._29{width:1468.358298px;}
._23{width:1589.527299px;}
._27{width:1652.260909px;}
._15{width:1661.330995px;}
._b{width:1762.000170px;}
._28{width:1878.035920px;}
._13{width:1954.212538px;}
._9{width:2174.370380px;}
._2b{width:2191.164711px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:35.865600px;}
.fs7{font-size:41.842800px;}
.fs5{font-size:47.820600px;}
.fs3{font-size:59.775600px;}
.fs0{font-size:65.454600px;}
.fs2{font-size:71.731200px;}
.fs4{font-size:86.077200px;}
.fs1{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y28{bottom:12.151500px;}
.y46{bottom:12.153000px;}
.y1be{bottom:56.985000px;}
.y27{bottom:57.552000px;}
.y221{bottom:62.355000px;}
.y108{bottom:62.848500px;}
.y1dc{bottom:63.240000px;}
.y8e{bottom:63.771000px;}
.y200{bottom:74.160000px;}
.y175{bottom:74.238000px;}
.y1bd{bottom:77.308500px;}
.y26{bottom:77.875500px;}
.y234{bottom:80.755500px;}
.y220{bottom:82.678500px;}
.y107{bottom:83.172000px;}
.y196{bottom:83.956500px;}
.y8d{bottom:84.094500px;}
.y1ff{bottom:94.483500px;}
.y174{bottom:94.561500px;}
.y1bc{bottom:97.632000px;}
.y25{bottom:98.199000px;}
.y21f{bottom:103.002000px;}
.y106{bottom:103.495500px;}
.y1db{bottom:103.887000px;}
.y195{bottom:104.280000px;}
.y8c{bottom:104.418000px;}
.ydb{bottom:108.412500px;}
.y1bb{bottom:117.955500px;}
.y24{bottom:118.524000px;}
.y21e{bottom:123.325500px;}
.y105{bottom:123.819000px;}
.y1da{bottom:124.212000px;}
.y194{bottom:124.603500px;}
.yb2{bottom:124.827000px;}
.y154{bottom:125.092500px;}
.y173{bottom:125.451000px;}
.yda{bottom:133.219500px;}
.y8b{bottom:135.307500px;}
.y12c{bottom:136.033500px;}
.y1fe{bottom:136.830000px;}
.y1ba{bottom:138.279000px;}
.y21d{bottom:143.649000px;}
.y104{bottom:144.142500px;}
.y193{bottom:144.927000px;}
.y153{bottom:145.416000px;}
.y23{bottom:155.118000px;}
.y12b{bottom:156.357000px;}
.y1b9{bottom:158.604000px;}
.yb1{bottom:162.174000px;}
.y21c{bottom:163.974000px;}
.y103{bottom:164.467500px;}
.y1d9{bottom:164.859000px;}
.y192{bottom:165.250500px;}
.y152{bottom:165.741000px;}
.y172{bottom:169.264500px;}
.yd9{bottom:169.981500px;}
.y1fd{bottom:175.045500px;}
.y22{bottom:175.441500px;}
.y12a{bottom:176.680500px;}
.y1b8{bottom:178.927500px;}
.y8a{bottom:179.121000px;}
.y21b{bottom:184.297500px;}
.y102{bottom:184.791000px;}
.y1d8{bottom:185.182500px;}
.y191{bottom:185.575500px;}
.y151{bottom:186.064500px;}
.y171{bottom:189.588000px;}
.yd8{bottom:190.305000px;}
.y1fc{bottom:192.978000px;}
.y21{bottom:195.765000px;}
.y129{bottom:197.004000px;}
.y1b7{bottom:199.251000px;}
.yb0{bottom:200.106000px;}
.y89{bottom:203.928000px;}
.y21a{bottom:204.621000px;}
.y101{bottom:205.114500px;}
.y233{bottom:205.507500px;}
.y190{bottom:205.899000px;}
.y150{bottom:206.388000px;}
.y170{bottom:209.911500px;}
.yd7{bottom:210.628500px;}
.y1fb{bottom:210.910500px;}
.y20{bottom:216.090000px;}
.y128{bottom:217.327500px;}
.y1b6{bottom:219.574500px;}
.yaf{bottom:220.431000px;}
.y219{bottom:224.944500px;}
.y100{bottom:225.438000px;}
.y1d7{bottom:225.831000px;}
.y18f{bottom:226.222500px;}
.y14f{bottom:226.711500px;}
.y88{bottom:228.735000px;}
.y1fa{bottom:228.843000px;}
.y16f{bottom:230.236500px;}
.yd6{bottom:230.953500px;}
.y1f{bottom:236.413500px;}
.y127{bottom:237.652500px;}
.yae{bottom:240.754500px;}
.y218{bottom:245.268000px;}
.yff{bottom:245.761500px;}
.y1d6{bottom:246.154500px;}
.y18e{bottom:246.546000px;}
.y1f9{bottom:246.777000px;}
.y14e{bottom:247.035000px;}
.y6a{bottom:250.278000px;}
.y1b5{bottom:250.464000px;}
.y16e{bottom:250.560000px;}
.yd5{bottom:251.277000px;}
.y87{bottom:253.542000px;}
.y1e{bottom:256.737000px;}
.y126{bottom:257.976000px;}
.yad{bottom:261.078000px;}
.y1f8{bottom:264.709500px;}
.y217{bottom:265.593000px;}
.yfe{bottom:266.086500px;}
.y232{bottom:266.478000px;}
.y18d{bottom:266.869500px;}
.y14d{bottom:267.360000px;}
.y69{bottom:270.601500px;}
.y16d{bottom:270.883500px;}
.yd4{bottom:271.600500px;}
.y1d{bottom:277.060500px;}
.y125{bottom:278.299500px;}
.y86{bottom:278.349000px;}
.y1f7{bottom:282.642000px;}
.y216{bottom:285.916500px;}
.yfd{bottom:286.410000px;}
.y1d5{bottom:286.801500px;}
.y18c{bottom:287.194500px;}
.y14c{bottom:287.683500px;}
.yac{bottom:289.617000px;}
.y68{bottom:290.925000px;}
.y16c{bottom:291.207000px;}
.yd3{bottom:291.924000px;}
.y1b4{bottom:294.229500px;}
.y1c{bottom:297.384000px;}
.y124{bottom:298.623000px;}
.yfc{bottom:306.733500px;}
.y1d4{bottom:307.125000px;}
.y231{bottom:307.126500px;}
.y18b{bottom:307.518000px;}
.y14b{bottom:308.007000px;}
.y1f6{bottom:308.790000px;}
.y67{bottom:311.248500px;}
.yd2{bottom:312.247500px;}
.y1b3{bottom:314.553000px;}
.y215{bottom:316.806000px;}
.y16b{bottom:322.096500px;}
.yfb{bottom:327.057000px;}
.y230{bottom:327.450000px;}
.y18a{bottom:327.841500px;}
.y14a{bottom:328.330500px;}
.y123{bottom:329.512500px;}
.y66{bottom:331.572000px;}
.yab{bottom:331.755000px;}
.yd1{bottom:332.571000px;}
.y1b{bottom:333.979500px;}
.y1b2{bottom:334.876500px;}
.y85{bottom:335.434500px;}
.y1f5{bottom:345.165000px;}
.y1d3{bottom:347.773500px;}
.y149{bottom:348.654000px;}
.y65{bottom:351.897000px;}
.yd0{bottom:352.896000px;}
.y1b1{bottom:355.200000px;}
.y84{bottom:355.759500px;}
.yfa{bottom:357.946500px;}
.y189{bottom:358.731000px;}
.y16a{bottom:359.218500px;}
.y214{bottom:360.619500px;}
.y122{bottom:366.634500px;}
.y1d2{bottom:368.097000px;}
.yaa{bottom:368.280000px;}
.y148{bottom:368.979000px;}
.y1a{bottom:370.573500px;}
.y64{bottom:372.220500px;}
.ycf{bottom:373.219500px;}
.y1b0{bottom:375.525000px;}
.y1f4{bottom:376.054500px;}
.y83{bottom:376.083000px;}
.y1d1{bottom:388.420500px;}
.y147{bottom:389.302500px;}
.y19{bottom:390.897000px;}
.y45{bottom:391.549500px;}
.y63{bottom:392.544000px;}
.y1af{bottom:395.848500px;}
.y188{bottom:395.853000px;}
.y213{bottom:399.480000px;}
.yf9{bottom:401.760000px;}
.yce{bottom:404.109000px;}
.y82{bottom:406.972500px;}
.y22f{bottom:408.744000px;}
.y146{bottom:409.626000px;}
.y169{bottom:410.770500px;}
.y18{bottom:411.222000px;}
.y44{bottom:411.873000px;}
.y62{bottom:412.867500px;}
.y1f3{bottom:415.270500px;}
.y1ae{bottom:416.172000px;}
.y121{bottom:418.186500px;}
.y1d0{bottom:419.310000px;}
.ya9{bottom:419.832000px;}
.yf8{bottom:422.083500px;}
.y1f2{bottom:426.495000px;}
.y22e{bottom:429.069000px;}
.y168{bottom:431.094000px;}
.y17{bottom:431.545500px;}
.y43{bottom:432.196500px;}
.y61{bottom:433.191000px;}
.y1ad{bottom:436.495500px;}
.y212{bottom:438.412500px;}
.y120{bottom:438.510000px;}
.ya8{bottom:440.155500px;}
.y145{bottom:440.515500px;}
.yf7{bottom:442.407000px;}
.y81{bottom:444.094500px;}
.y187{bottom:447.405000px;}
.ycd{bottom:447.922500px;}
.y22d{bottom:449.392500px;}
.y167{bottom:451.417500px;}
.y16{bottom:451.869000px;}
.y60{bottom:453.516000px;}
.y1f1{bottom:454.725000px;}
.y1ac{bottom:456.819000px;}
.y211{bottom:458.736000px;}
.y11f{bottom:458.835000px;}
.ya7{bottom:460.479000px;}
.yf6{bottom:462.732000px;}
.y1cf{bottom:463.123500px;}
.y1f0{bottom:465.949500px;}
.y186{bottom:467.728500px;}
.y42{bottom:468.792000px;}
.y166{bottom:471.742500px;}
.y5f{bottom:473.839500px;}
.y1ab{bottom:477.144000px;}
.y210{bottom:479.059500px;}
.y11e{bottom:479.158500px;}
.ycc{bottom:479.602500px;}
.y22c{bottom:480.282000px;}
.ya6{bottom:480.804000px;}
.yf5{bottom:483.055500px;}
.y144{bottom:484.329000px;}
.y185{bottom:488.052000px;}
.y15{bottom:488.463000px;}
.y41{bottom:489.115500px;}
.ycb{bottom:490.827000px;}
.y165{bottom:492.066000px;}
.y5e{bottom:494.163000px;}
.y80{bottom:495.646500px;}
.y1aa{bottom:497.467500px;}
.y11d{bottom:499.482000px;}
.y1ef{bottom:499.639500px;}
.ya5{bottom:501.127500px;}
.yf4{bottom:503.379000px;}
.y1ce{bottom:503.772000px;}
.y143{bottom:504.652500px;}
.y20f{bottom:507.598500px;}
.y184{bottom:508.377000px;}
.y14{bottom:508.788000px;}
.y40{bottom:509.439000px;}
.y164{bottom:512.389500px;}
.y7f{bottom:515.970000px;}
.y1a9{bottom:517.791000px;}
.y11c{bottom:519.805500px;}
.ya4{bottom:521.451000px;}
.yf3{bottom:523.702500px;}
.y1cd{bottom:524.095500px;}
.y142{bottom:524.976000px;}
.y5d{bottom:525.052500px;}
.yca{bottom:525.153000px;}
.y183{bottom:528.700500px;}
.y3f{bottom:529.762500px;}
.y163{bottom:532.713000px;}
.y7e{bottom:536.293500px;}
.y1ee{bottom:536.401500px;}
.y1a8{bottom:538.114500px;}
.y11b{bottom:540.129000px;}
.ya3{bottom:541.774500px;}
.yf2{bottom:544.026000px;}
.y22b{bottom:544.419000px;}
.y141{bottom:545.299500px;}
.y13{bottom:545.382000px;}
.y182{bottom:549.024000px;}
.y7d{bottom:556.617000px;}
.y1ed{bottom:556.725000px;}
.y1a7{bottom:558.438000px;}
.y20e{bottom:559.699500px;}
.y11a{bottom:560.454000px;}
.yc9{bottom:561.915000px;}
.ya2{bottom:562.098000px;}
.yf1{bottom:564.351000px;}
.y1cc{bottom:564.742500px;}
.y140{bottom:565.624500px;}
.y12{bottom:565.705500px;}
.y3e{bottom:566.358000px;}
.y5c{bottom:568.866000px;}
.y181{bottom:569.347500px;}
.y162{bottom:573.361500px;}
.y7c{bottom:576.942000px;}
.y1ec{bottom:577.050000px;}
.y1a6{bottom:578.763000px;}
.y119{bottom:580.777500px;}
.yc8{bottom:582.240000px;}
.ya1{bottom:582.421500px;}
.yf0{bottom:584.674500px;}
.y1cb{bottom:585.066000px;}
.y13f{bottom:585.948000px;}
.y11{bottom:586.029000px;}
.y3d{bottom:586.681500px;}
.y5b{bottom:589.189500px;}
.y161{bottom:593.685000px;}
.y7b{bottom:597.265500px;}
.y1eb{bottom:597.373500px;}
.y244{bottom:598.330500px;}
.y1a5{bottom:599.086500px;}
.y118{bottom:601.101000px;}
.yc7{bottom:602.563500px;}
.yef{bottom:604.998000px;}
.y22a{bottom:605.391000px;}
.y180{bottom:605.872500px;}
.y10{bottom:606.354000px;}
.y3c{bottom:607.005000px;}
.y5a{bottom:609.513000px;}
.ya0{bottom:613.311000px;}
.y160{bottom:614.008500px;}
.y13e{bottom:616.837500px;}
.y7a{bottom:617.589000px;}
.y243{bottom:618.654000px;}
.y1a4{bottom:619.410000px;}
.y20d{bottom:621.139500px;}
.y117{bottom:621.424500px;}
.yc6{bottom:622.887000px;}
.yee{bottom:625.321500px;}
.y1ca{bottom:625.714500px;}
.y3b{bottom:627.328500px;}
.y1ea{bottom:628.263000px;}
.y59{bottom:629.838000px;}
.y79{bottom:637.912500px;}
.y1a3{bottom:639.733500px;}
.y116{bottom:641.748000px;}
.yf{bottom:642.948000px;}
.yc5{bottom:643.210500px;}
.y1c9{bottom:646.038000px;}
.y3a{bottom:647.652000px;}
.y58{bottom:650.161500px;}
.y13d{bottom:653.959500px;}
.y15f{bottom:654.655500px;}
.y9f{bottom:657.124500px;}
.y17f{bottom:657.424500px;}
.y78{bottom:658.236000px;}
.y20c{bottom:658.356000px;}
.yed{bottom:658.939500px;}
.y1a2{bottom:660.057000px;}
.y242{bottom:660.238500px;}
.y115{bottom:662.073000px;}
.yc4{bottom:663.534000px;}
.y1c8{bottom:666.361500px;}
.yec{bottom:670.164000px;}
.y57{bottom:670.485000px;}
.y1e9{bottom:672.076500px;}
.y15e{bottom:674.980500px;}
.y20b{bottom:676.288500px;}
.y9e{bottom:677.449500px;}
.y17e{bottom:677.748000px;}
.y77{bottom:678.559500px;}
.ye{bottom:679.542000px;}
.y1a1{bottom:680.382000px;}
.y241{bottom:680.562000px;}
.y114{bottom:682.396500px;}
.yc3{bottom:683.859000px;}
.y39{bottom:684.247500px;}
.y229{bottom:686.685000px;}
.y56{bottom:690.808500px;}
.y1e8{bottom:692.400000px;}
.y20a{bottom:694.221000px;}
.y15d{bottom:695.304000px;}
.y9d{bottom:697.773000px;}
.y76{bottom:698.884500px;}
.y1a0{bottom:700.705500px;}
.y240{bottom:700.885500px;}
.y113{bottom:702.720000px;}
.yc2{bottom:704.182500px;}
.y38{bottom:704.571000px;}
.y13c{bottom:705.511500px;}
.y1c7{bottom:707.008500px;}
.y55{bottom:711.132000px;}
.y17d{bottom:711.520500px;}
.y209{bottom:712.153500px;}
.y1e7{bottom:712.723500px;}
.y15c{bottom:715.627500px;}
.y9c{bottom:718.096500px;}
.yeb{bottom:721.048500px;}
.y112{bottom:723.043500px;}
.yc1{bottom:724.506000px;}
.y37{bottom:724.894500px;}
.y13b{bottom:725.835000px;}
.y1c6{bottom:727.333500px;}
.y75{bottom:729.774000px;}
.y208{bottom:730.086000px;}
.yd{bottom:731.094000px;}
.y54{bottom:731.455500px;}
.y19f{bottom:731.595000px;}
.y17c{bottom:731.845500px;}
.y1e6{bottom:733.047000px;}
.y15b{bottom:735.951000px;}
.y9b{bottom:738.420000px;}
.yea{bottom:741.372000px;}
.y23f{bottom:742.470000px;}
.y111{bottom:743.367000px;}
.yc0{bottom:744.829500px;}
.y13a{bottom:746.158500px;}
.y228{bottom:747.657000px;}
.y207{bottom:748.018500px;}
.yc{bottom:749.028000px;}
.y53{bottom:751.780500px;}
.y9a{bottom:758.743500px;}
.y36{bottom:761.490000px;}
.ye9{bottom:761.695500px;}
.y23e{bottom:762.793500px;}
.y1e5{bottom:764.869500px;}
.y17b{bottom:765.618000px;}
.y139{bottom:766.482000px;}
.y74{bottom:766.896000px;}
.yb{bottom:766.960500px;}
.y1c5{bottom:767.980500px;}
.y52{bottom:772.104000px;}
.y206{bottom:774.168000px;}
.y110{bottom:774.256500px;}
.y19e{bottom:775.359000px;}
.ybf{bottom:775.719000px;}
.y1e4{bottom:776.095500px;}
.y15a{bottom:776.599500px;}
.y35{bottom:781.813500px;}
.ye8{bottom:782.020500px;}
.ya{bottom:784.893000px;}
.y138{bottom:786.807000px;}
.y1c4{bottom:788.304000px;}
.y51{bottom:792.427500px;}
.y99{bottom:792.517500px;}
.y19d{bottom:795.684000px;}
.y159{bottom:796.923000px;}
.y17a{bottom:799.392000px;}
.y34{bottom:802.137000px;}
.y9{bottom:802.825500px;}
.y23d{bottom:803.440500px;}
.y137{bottom:807.130500px;}
.y227{bottom:808.627500px;}
.y1e3{bottom:810.421500px;}
.y98{bottom:812.841000px;}
.ye7{bottom:812.910000px;}
.y19c{bottom:816.007500px;}
.y158{bottom:817.246500px;}
.y10f{bottom:818.070000px;}
.y73{bottom:818.448000px;}
.ybe{bottom:819.532500px;}
.y179{bottom:819.715500px;}
.y8{bottom:820.758000px;}
.y33{bottom:822.460500px;}
.y50{bottom:823.317000px;}
.y23c{bottom:823.764000px;}
.y205{bottom:824.593500px;}
.y136{bottom:827.454000px;}
.y1c3{bottom:828.952500px;}
.y97{bottom:833.164500px;}
.y1e2{bottom:835.228500px;}
.y19b{bottom:836.331000px;}
.y157{bottom:837.570000px;}
.y7{bottom:838.690500px;}
.ybd{bottom:839.856000px;}
.y32{bottom:842.784000px;}
.y1c2{bottom:849.276000px;}
.y96{bottom:853.489500px;}
.y10e{bottom:855.747000px;}
.y19a{bottom:856.654500px;}
.ye6{bottom:856.723500px;}
.y135{bottom:858.343500px;}
.y72{bottom:859.885500px;}
.ybc{bottom:860.181000px;}
.y4f{bottom:860.439000px;}
.y204{bottom:861.715500px;}
.y23b{bottom:864.412500px;}
.y6{bottom:865.966500px;}
.y10d{bottom:868.728000px;}
.y1c1{bottom:869.599500px;}
.y156{bottom:871.344000px;}
.y1e1{bottom:871.990500px;}
.y95{bottom:873.813000px;}
.y199{bottom:876.978000px;}
.ye5{bottom:877.047000px;}
.y31{bottom:879.379500px;}
.ybb{bottom:880.504500px;}
.y23a{bottom:884.736000px;}
.y134{bottom:889.830000px;}
.y226{bottom:889.923000px;}
.y155{bottom:891.667500px;}
.y94{bottom:894.136500px;}
.y198{bottom:897.303000px;}
.y71{bottom:897.817500px;}
.y1c0{bottom:900.489000px;}
.yba{bottom:900.828000px;}
.y1e0{bottom:902.880000px;}
.ye4{bottom:902.979000px;}
.y178{bottom:904.702500px;}
.y225{bottom:910.246500px;}
.y4e{bottom:911.991000px;}
.y203{bottom:913.267500px;}
.ye3{bottom:914.203500px;}
.y93{bottom:914.460000px;}
.y30{bottom:915.973500px;}
.y197{bottom:917.626500px;}
.y10c{bottom:918.478500px;}
.yb9{bottom:921.151500px;}
.y5{bottom:926.238000px;}
.y239{bottom:926.319000px;}
.y70{bottom:926.358000px;}
.y224{bottom:930.571500px;}
.y4d{bottom:932.314500px;}
.y92{bottom:934.783500px;}
.y2f{bottom:936.297000px;}
.y1bf{bottom:937.611000px;}
.ye2{bottom:937.950000px;}
.y10b{bottom:938.802000px;}
.y133{bottom:939.337500px;}
.y1df{bottom:940.002000px;}
.y202{bottom:940.446000px;}
.yb8{bottom:941.475000px;}
.y238{bottom:946.644000px;}
.y6f{bottom:946.681500px;}
.y177{bottom:948.516000px;}
.y201{bottom:951.670500px;}
.y4c{bottom:952.638000px;}
.y2e{bottom:956.622000px;}
.ye1{bottom:958.273500px;}
.y10a{bottom:959.125500px;}
.y223{bottom:961.461000px;}
.yb7{bottom:961.798500px;}
.y91{bottom:965.673000px;}
.y6e{bottom:967.005000px;}
.y176{bottom:968.839500px;}
.y4{bottom:971.565000px;}
.y4b{bottom:972.963000px;}
.y2d{bottom:976.945500px;}
.y132{bottom:977.271000px;}
.ye0{bottom:978.597000px;}
.yb6{bottom:982.123500px;}
.y6d{bottom:987.328500px;}
.y237{bottom:988.227000px;}
.y109{bottom:989.163000px;}
.y1de{bottom:991.554000px;}
.y3{bottom:992.487000px;}
.y4a{bottom:993.286500px;}
.y131{bottom:997.594500px;}
.y222{bottom:998.583000px;}
.ydf{bottom:998.922000px;}
.yb5{bottom:1002.447000px;}
.y6c{bottom:1007.652000px;}
.y236{bottom:1008.550500px;}
.y90{bottom:1009.486500px;}
.y1dd{bottom:1011.877500px;}
.y2c{bottom:1013.539500px;}
.y49{bottom:1013.610000px;}
.y130{bottom:1017.918000px;}
.yde{bottom:1019.245500px;}
.yb4{bottom:1022.770500px;}
.y2{bottom:1025.364000px;}
.y235{bottom:1028.874000px;}
.y8f{bottom:1029.810000px;}
.y48{bottom:1033.933500px;}
.y6b{bottom:1036.192500px;}
.y12f{bottom:1038.241500px;}
.ydd{bottom:1039.569000px;}
.y2b{bottom:1050.135000px;}
.yb3{bottom:1053.660000px;}
.y47{bottom:1054.257000px;}
.y12e{bottom:1058.565000px;}
.ydc{bottom:1059.892500px;}
.y2a{bottom:1070.458500px;}
.y12d{bottom:1087.105500px;}
.y29{bottom:1090.782000px;}
.y1{bottom:1149.619500px;}
.h5{height:44.891476px;}
.h9{height:45.490947px;}
.hb{height:49.090950px;}
.h2{height:49.156405px;}
.h13{height:49.473619px;}
.h4{height:50.642227px;}
.h7{height:53.870131px;}
.h10{height:55.346184px;}
.h11{height:59.613450px;}
.h8{height:59.619450px;}
.h6{height:64.643977px;}
.h3{height:72.511265px;}
.ha{height:93.370950px;}
.h12{height:94.054405px;}
.hc{height:94.910184px;}
.hf{height:101.080405px;}
.he{height:114.548184px;}
.hd{height:156.741450px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:106.299000px;}
.xd{left:126.369000px;}
.xa{left:130.705500px;}
.x11{left:140.122500px;}
.x8{left:147.208500px;}
.x25{left:157.035000px;}
.x16{left:166.891500px;}
.xb{left:168.003000px;}
.x7{left:169.618500px;}
.x12{left:178.539000px;}
.x3a{left:183.606000px;}
.xc{left:187.299000px;}
.x3{left:189.453000px;}
.x1{left:191.338500px;}
.x13{left:194.196000px;}
.x14{left:196.456500px;}
.x3d{left:202.794000px;}
.x28{left:207.769500px;}
.x37{left:212.200500px;}
.x22{left:213.808500px;}
.x3b{left:227.491500px;}
.x2{left:234.883500px;}
.x3c{left:246.730500px;}
.x30{left:254.302500px;}
.x26{left:258.504000px;}
.xe{left:266.911500px;}
.x10{left:276.148500px;}
.xf{left:277.560000px;}
.x20{left:297.276000px;}
.x2a{left:299.745000px;}
.x23{left:304.969500px;}
.x27{left:309.240000px;}
.x2b{left:312.715500px;}
.x29{left:318.388500px;}
.x4{left:319.804500px;}
.x15{left:320.941500px;}
.x36{left:323.241000px;}
.x2e{left:324.258000px;}
.x35{left:326.976000px;}
.x34{left:330.711000px;}
.x2d{left:335.590500px;}
.x1b{left:341.910000px;}
.x17{left:346.231500px;}
.x2c{left:357.648000px;}
.x18{left:360.327000px;}
.x1d{left:362.167500px;}
.x5{left:373.389000px;}
.x1c{left:385.893000px;}
.x31{left:386.938500px;}
.x21{left:388.998000px;}
.x24{left:398.745000px;}
.x2f{left:403.885500px;}
.x6{left:413.587500px;}
.x32{left:429.297000px;}
.x19{left:444.258000px;}
.x33{left:448.362000px;}
.x1e{left:450.807000px;}
.x38{left:454.950000px;}
.x1f{left:476.200500px;}
.x1a{left:492.136500px;}
.x39{left:757.686000px;}
@media print{
.v4{vertical-align:-11.840000pt;}
.v1{vertical-align:-9.232000pt;}
.va{vertical-align:-7.498667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:9.232000pt;}
.vf{vertical-align:19.280000pt;}
.v2{vertical-align:21.114667pt;}
.v6{vertical-align:30.352000pt;}
.vd{vertical-align:31.834667pt;}
.v5{vertical-align:39.360000pt;}
.vc{vertical-align:40.560000pt;}
.ve{vertical-align:46.154667pt;}
.v7{vertical-align:82.037333pt;}
.vb{vertical-align:99.493333pt;}
.v9{vertical-align:107.445333pt;}
.v8{vertical-align:121.946667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls95{letter-spacing:0.000058pt;}
.ls5f{letter-spacing:0.000411pt;}
.ls34{letter-spacing:0.000928pt;}
.ls5c{letter-spacing:0.000933pt;}
.ls2b{letter-spacing:0.001416pt;}
.ls45{letter-spacing:0.001440pt;}
.ls85{letter-spacing:0.001536pt;}
.ls4{letter-spacing:0.001717pt;}
.ls71{letter-spacing:0.003468pt;}
.ls26{letter-spacing:0.003800pt;}
.ls6f{letter-spacing:0.003822pt;}
.ls80{letter-spacing:0.003851pt;}
.lsc{letter-spacing:0.003861pt;}
.ls8f{letter-spacing:0.003907pt;}
.ls64{letter-spacing:0.004625pt;}
.lse{letter-spacing:0.004840pt;}
.ls8b{letter-spacing:0.005065pt;}
.ls3e{letter-spacing:0.006606pt;}
.ls75{letter-spacing:0.006695pt;}
.ls29{letter-spacing:0.006750pt;}
.ls1d{letter-spacing:0.006922pt;}
.ls2f{letter-spacing:0.008237pt;}
.ls16{letter-spacing:0.008708pt;}
.ls22{letter-spacing:0.009134pt;}
.lsd{letter-spacing:0.009631pt;}
.ls51{letter-spacing:0.009798pt;}
.ls7c{letter-spacing:0.010470pt;}
.ls4d{letter-spacing:0.010496pt;}
.ls55{letter-spacing:0.011109pt;}
.ls9{letter-spacing:0.012218pt;}
.ls24{letter-spacing:0.012519pt;}
.ls3b{letter-spacing:0.012703pt;}
.ls35{letter-spacing:0.014259pt;}
.ls13{letter-spacing:0.014584pt;}
.ls31{letter-spacing:0.014925pt;}
.lsb{letter-spacing:0.014964pt;}
.ls82{letter-spacing:0.015113pt;}
.lsf{letter-spacing:0.015343pt;}
.ls11{letter-spacing:0.016797pt;}
.ls1a{letter-spacing:0.017648pt;}
.ls32{letter-spacing:0.017853pt;}
.ls62{letter-spacing:0.018264pt;}
.ls12{letter-spacing:0.018526pt;}
.ls5{letter-spacing:0.018811pt;}
.ls4a{letter-spacing:0.019116pt;}
.ls94{letter-spacing:0.019291pt;}
.ls6a{letter-spacing:0.019787pt;}
.ls92{letter-spacing:0.019936pt;}
.ls4c{letter-spacing:0.020132pt;}
.ls40{letter-spacing:0.020170pt;}
.ls9f{letter-spacing:0.020591pt;}
.ls5a{letter-spacing:0.021030pt;}
.ls3f{letter-spacing:0.021215pt;}
.ls69{letter-spacing:0.021288pt;}
.ls89{letter-spacing:0.022033pt;}
.ls7a{letter-spacing:0.022108pt;}
.ls5b{letter-spacing:0.023295pt;}
.ls2c{letter-spacing:0.023715pt;}
.ls7d{letter-spacing:0.024915pt;}
.ls20{letter-spacing:0.025007pt;}
.ls72{letter-spacing:0.026741pt;}
.ls9e{letter-spacing:0.027154pt;}
.ls91{letter-spacing:0.027998pt;}
.ls99{letter-spacing:0.028574pt;}
.ls6c{letter-spacing:0.029529pt;}
.ls2d{letter-spacing:0.029946pt;}
.ls52{letter-spacing:0.032363pt;}
.ls79{letter-spacing:0.058182pt;}
.ls8{letter-spacing:2.650641pt;}
.ls97{letter-spacing:2.652911pt;}
.ls4b{letter-spacing:2.653258pt;}
.ls1f{letter-spacing:2.654275pt;}
.ls33{letter-spacing:2.654767pt;}
.ls65{letter-spacing:2.655975pt;}
.ls4f{letter-spacing:2.657146pt;}
.ls53{letter-spacing:2.658591pt;}
.ls5e{letter-spacing:2.658717pt;}
.ls6b{letter-spacing:2.659980pt;}
.ls49{letter-spacing:2.662479pt;}
.lsa0{letter-spacing:4.183026pt;}
.ls18{letter-spacing:4.596367pt;}
.ls59{letter-spacing:5.105323pt;}
.ls54{letter-spacing:6.283642pt;}
.ls46{letter-spacing:6.310697pt;}
.ls44{letter-spacing:6.377661pt;}
.ls50{letter-spacing:7.344325pt;}
.ls58{letter-spacing:9.716372pt;}
.ls60{letter-spacing:12.349383pt;}
.ls5d{letter-spacing:12.354717pt;}
.lsa{letter-spacing:12.916374pt;}
.ls43{letter-spacing:12.925077pt;}
.ls3d{letter-spacing:13.905466pt;}
.ls8e{letter-spacing:15.360013pt;}
.ls14{letter-spacing:15.534558pt;}
.ls73{letter-spacing:15.581258pt;}
.ls70{letter-spacing:15.585146pt;}
.ls38{letter-spacing:15.586591pt;}
.ls30{letter-spacing:15.588100pt;}
.ls15{letter-spacing:15.592740pt;}
.ls10{letter-spacing:16.116377pt;}
.ls66{letter-spacing:16.159477pt;}
.ls7{letter-spacing:16.174559pt;}
.ls2e{letter-spacing:18.152742pt;}
.ls17{letter-spacing:18.813258pt;}
.ls90{letter-spacing:18.816853pt;}
.ls42{letter-spacing:18.817146pt;}
.ls86{letter-spacing:18.817458pt;}
.ls84{letter-spacing:18.818591pt;}
.ls63{letter-spacing:18.818717pt;}
.ls7f{letter-spacing:18.819608pt;}
.ls6{letter-spacing:18.819980pt;}
.ls27{letter-spacing:18.822792pt;}
.ls3{letter-spacing:19.258198pt;}
.ls2{letter-spacing:19.316380pt;}
.ls76{letter-spacing:19.490925pt;}
.ls7e{letter-spacing:20.041314pt;}
.ls2a{letter-spacing:20.111012pt;}
.ls23{letter-spacing:20.116345pt;}
.ls47{letter-spacing:20.272325pt;}
.ls8d{letter-spacing:20.350271pt;}
.ls67{letter-spacing:21.011856pt;}
.ls7b{letter-spacing:21.479925pt;}
.ls1b{letter-spacing:21.943925pt;}
.ls21{letter-spacing:21.944941pt;}
.ls83{letter-spacing:21.946641pt;}
.ls4e{letter-spacing:21.947812pt;}
.ls3c{letter-spacing:21.949258pt;}
.ls36{letter-spacing:21.950275pt;}
.ls77{letter-spacing:22.155520pt;}
.ls56{letter-spacing:22.458201pt;}
.ls1c{letter-spacing:22.516382pt;}
.ls93{letter-spacing:22.519168pt;}
.ls28{letter-spacing:22.532811pt;}
.ls88{letter-spacing:22.532963pt;}
.ls87{letter-spacing:22.538144pt;}
.ls3a{letter-spacing:22.749110pt;}
.ls8a{letter-spacing:23.015578pt;}
.ls96{letter-spacing:23.016966pt;}
.ls41{letter-spacing:23.509658pt;}
.ls68{letter-spacing:23.854565pt;}
.ls1e{letter-spacing:24.203657pt;}
.ls37{letter-spacing:25.658203pt;}
.ls78{letter-spacing:25.716385pt;}
.ls9a{letter-spacing:26.705477pt;}
.ls8c{letter-spacing:27.188779pt;}
.ls57{letter-spacing:28.741842pt;}
.ls0{letter-spacing:29.090933pt;}
.ls19{letter-spacing:30.778207pt;}
.ls81{letter-spacing:55.679477pt;}
.ls74{letter-spacing:63.767326pt;}
.ls98{letter-spacing:227.572351pt;}
.ls6e{letter-spacing:315.148125pt;}
.ls9d{letter-spacing:343.505741pt;}
.ls9c{letter-spacing:350.196655pt;}
.ls9b{letter-spacing:401.338516pt;}
.ls48{letter-spacing:430.720359pt;}
.ls6d{letter-spacing:544.353146pt;}
.ls61{letter-spacing:609.897968pt;}
.ls25{letter-spacing:1001.437258pt;}
.ls39{letter-spacing:1010.044320pt;}
.ws64{word-spacing:-54.074227pt;}
.ws6b{word-spacing:-46.062584pt;}
.ws16{word-spacing:-45.509856pt;}
.wsa{word-spacing:-42.074535pt;}
.ws10{word-spacing:-41.669853pt;}
.ws13{word-spacing:-40.040761pt;}
.ws2b{word-spacing:-37.899668pt;}
.wsd2{word-spacing:-34.611401pt;}
.ws28{word-spacing:-33.233482pt;}
.wse{word-spacing:-32.942573pt;}
.wsd8{word-spacing:-32.139663pt;}
.ws21{word-spacing:-28.928024pt;}
.ws6d{word-spacing:-28.183296pt;}
.wsf{word-spacing:-27.997114pt;}
.ws81{word-spacing:-23.645111pt;}
.wsd9{word-spacing:-21.783291pt;}
.ws6c{word-spacing:-21.725109pt;}
.wsa3{word-spacing:-20.084380pt;}
.wsb3{word-spacing:-18.455288pt;}
.wsdb{word-spacing:-18.001470pt;}
.wsb0{word-spacing:-17.757106pt;}
.ws47{word-spacing:-17.233469pt;}
.ws1{word-spacing:-16.480876pt;}
.wsad{word-spacing:-16.360741pt;}
.ws2a{word-spacing:-16.162923pt;}
.wsb4{word-spacing:-16.069832pt;}
.ws9e{word-spacing:-16.011650pt;}
.wsa4{word-spacing:-15.778922pt;}
.wsb1{word-spacing:-15.488013pt;}
.ws49{word-spacing:-15.371649pt;}
.ws14{word-spacing:-15.197104pt;}
.ws18{word-spacing:-15.138922pt;}
.ws63{word-spacing:-15.022558pt;}
.ws66{word-spacing:-14.964376pt;}
.ws2e{word-spacing:-14.789831pt;}
.ws5{word-spacing:-14.765902pt;}
.wsae{word-spacing:-14.266194pt;}
.ws27{word-spacing:-14.070753pt;}
.ws1c{word-spacing:-13.994240pt;}
.ws1e{word-spacing:-13.975284pt;}
.ws44{word-spacing:-13.917103pt;}
.ws5b{word-spacing:-13.800739pt;}
.ws89{word-spacing:-13.742557pt;}
.wsa6{word-spacing:-13.568011pt;}
.ws4a{word-spacing:-13.335284pt;}
.wsa9{word-spacing:-13.277102pt;}
.ws15{word-spacing:-12.928011pt;}
.ws94{word-spacing:-12.869829pt;}
.ws4d{word-spacing:-12.753465pt;}
.wsa1{word-spacing:-12.520738pt;}
.ws56{word-spacing:-12.346192pt;}
.ws43{word-spacing:-12.012585pt;}
.ws1d{word-spacing:-11.948824pt;}
.ws9c{word-spacing:-11.648010pt;}
.wsaa{word-spacing:-11.589828pt;}
.ws23{word-spacing:-11.531646pt;}
.wsa8{word-spacing:-11.357100pt;}
.ws98{word-spacing:-11.298919pt;}
.ws17{word-spacing:-11.124373pt;}
.wsc{word-spacing:-11.066191pt;}
.ws8b{word-spacing:-11.019646pt;}
.ws48{word-spacing:-11.008009pt;}
.ws5d{word-spacing:-10.775282pt;}
.wsdc{word-spacing:-10.717100pt;}
.wse8{word-spacing:-10.542554pt;}
.wse0{word-spacing:-10.426191pt;}
.ws78{word-spacing:-10.309827pt;}
.ws1b{word-spacing:-10.193463pt;}
.ws9d{word-spacing:-10.135281pt;}
.wsbe{word-spacing:-10.077099pt;}
.ws24{word-spacing:-10.018917pt;}
.ws7a{word-spacing:-9.902554pt;}
.ws32{word-spacing:-9.786190pt;}
.ws11{word-spacing:-9.669826pt;}
.wse7{word-spacing:-9.664008pt;}
.ws0{word-spacing:-9.611644pt;}
.wsb8{word-spacing:-9.553463pt;}
.wscf{word-spacing:-9.495281pt;}
.ws8a{word-spacing:-9.437099pt;}
.ws77{word-spacing:-9.431281pt;}
.wsa7{word-spacing:-9.262553pt;}
.wsb7{word-spacing:-9.204371pt;}
.wsa5{word-spacing:-9.146189pt;}
.ws4c{word-spacing:-9.088008pt;}
.ws79{word-spacing:-9.082189pt;}
.ws52{word-spacing:-9.029826pt;}
.ws1a{word-spacing:-8.913462pt;}
.ws4{word-spacing:-8.868042pt;}
.ws7{word-spacing:-8.761775pt;}
.wsdf{word-spacing:-8.564371pt;}
.ws97{word-spacing:-8.389825pt;}
.ws20{word-spacing:-8.273461pt;}
.ws95{word-spacing:-8.215280pt;}
.wsb6{word-spacing:-8.157098pt;}
.ws53{word-spacing:-7.866188pt;}
.ws96{word-spacing:-7.808007pt;}
.ws75{word-spacing:-7.691643pt;}
.ws40{word-spacing:-7.517097pt;}
.ws6f{word-spacing:-7.458915pt;}
.ws31{word-spacing:-7.400733pt;}
.ws3e{word-spacing:-7.168006pt;}
.wsc3{word-spacing:-6.877097pt;}
.ws76{word-spacing:-6.702551pt;}
.wse4{word-spacing:-6.586187pt;}
.ws3d{word-spacing:-6.580369pt;}
.wsdd{word-spacing:-6.528005pt;}
.ws70{word-spacing:-6.469824pt;}
.wsbb{word-spacing:-6.114914pt;}
.wse5{word-spacing:-5.713459pt;}
.ws2d{word-spacing:-5.690187pt;}
.ws58{word-spacing:-5.632005pt;}
.wsbc{word-spacing:-5.538914pt;}
.ws72{word-spacing:-5.480732pt;}
.ws8{word-spacing:-5.467475pt;}
.wsb9{word-spacing:-5.364368pt;}
.wsde{word-spacing:-5.306186pt;}
.wsb5{word-spacing:-5.248004pt;}
.wsa0{word-spacing:-5.131641pt;}
.wsba{word-spacing:-4.951277pt;}
.ws1f{word-spacing:-4.840731pt;}
.ws9b{word-spacing:-4.782549pt;}
.ws45{word-spacing:-4.666186pt;}
.ws91{word-spacing:-4.549822pt;}
.wsaf{word-spacing:-4.142549pt;}
.ws8e{word-spacing:-3.909821pt;}
.ws3{word-spacing:-3.820325pt;}
.wse6{word-spacing:-3.787640pt;}
.ws8f{word-spacing:-3.386185pt;}
.ws8c{word-spacing:-3.269821pt;}
.ws5f{word-spacing:-3.246548pt;}
.ws30{word-spacing:-3.211639pt;}
.wse3{word-spacing:-2.688002pt;}
.ws4e{word-spacing:-2.571639pt;}
.ws9{word-spacing:-2.385711pt;}
.ws9f{word-spacing:-2.338911pt;}
.wsc2{word-spacing:-1.989820pt;}
.ws99{word-spacing:-1.931638pt;}
.wsab{word-spacing:-1.757092pt;}
.ws9a{word-spacing:-1.698911pt;}
.wsac{word-spacing:-1.524365pt;}
.wsb2{word-spacing:-1.466183pt;}
.ws92{word-spacing:-1.408001pt;}
.wse1{word-spacing:-1.291637pt;}
.ws93{word-spacing:-1.233456pt;}
.ws51{word-spacing:-0.942546pt;}
.ws50{word-spacing:-0.884364pt;}
.wsbd{word-spacing:-0.762182pt;}
.ws26{word-spacing:-0.529455pt;}
.ws46{word-spacing:-0.302546pt;}
.wsbf{word-spacing:-0.058182pt;}
.ws6{word-spacing:-0.053134pt;}
.ws5e{word-spacing:-0.046545pt;}
.ws22{word-spacing:-0.042507pt;}
.ws7e{word-spacing:-0.008481pt;}
.ws12{word-spacing:0.000000pt;}
.ws57{word-spacing:0.011636pt;}
.wsd{word-spacing:0.162909pt;}
.ws71{word-spacing:0.802910pt;}
.ws90{word-spacing:2.664729pt;}
.ws55{word-spacing:2.978912pt;}
.ws4b{word-spacing:3.095275pt;}
.ws73{word-spacing:3.153457pt;}
.ws2f{word-spacing:3.968003pt;}
.wsca{word-spacing:6.375211pt;}
.wse2{word-spacing:6.446551pt;}
.ws4f{word-spacing:9.937463pt;}
.ws6a{word-spacing:13.384410pt;}
.wsa2{word-spacing:15.005042pt;}
.ws36{word-spacing:15.537688pt;}
.ws60{word-spacing:15.541009pt;}
.ws7c{word-spacing:15.544364pt;}
.ws34{word-spacing:15.544455pt;}
.ws69{word-spacing:15.549743pt;}
.ws3c{word-spacing:15.549788pt;}
.ws35{word-spacing:15.564576pt;}
.ws8d{word-spacing:15.988377pt;}
.ws65{word-spacing:16.548211pt;}
.ws80{word-spacing:18.757592pt;}
.ws39{word-spacing:18.759402pt;}
.wsc7{word-spacing:18.770600pt;}
.ws74{word-spacing:18.772715pt;}
.ws68{word-spacing:18.774171pt;}
.ws3a{word-spacing:18.775021pt;}
.ws7b{word-spacing:18.775231pt;}
.ws67{word-spacing:18.776410pt;}
.ws38{word-spacing:18.776455pt;}
.wsc5{word-spacing:18.776790pt;}
.ws3b{word-spacing:18.777713pt;}
.ws33{word-spacing:18.780159pt;}
.ws6e{word-spacing:18.781788pt;}
.ws59{word-spacing:18.793299pt;}
.ws61{word-spacing:18.796745pt;}
.wsb{word-spacing:20.293835pt;}
.wscb{word-spacing:20.297137pt;}
.ws2{word-spacing:20.722347pt;}
.ws54{word-spacing:21.747457pt;}
.ws41{word-spacing:21.884735pt;}
.ws2c{word-spacing:21.888182pt;}
.ws88{word-spacing:21.899505pt;}
.wsda{word-spacing:21.901187pt;}
.ws5c{word-spacing:21.903676pt;}
.ws29{word-spacing:21.906696pt;}
.ws3f{word-spacing:21.907457pt;}
.wsd1{word-spacing:22.984522pt;}
.wsd7{word-spacing:24.771625pt;}
.wsc1{word-spacing:29.963661pt;}
.ws42{word-spacing:30.021843pt;}
.ws7f{word-spacing:41.669853pt;}
.ws19{word-spacing:42.089838pt;}
.wsc0{word-spacing:60.101868pt;}
.wscc{word-spacing:63.707506pt;}
.wsc9{word-spacing:67.788544pt;}
.wsd4{word-spacing:133.636988pt;}
.wsd0{word-spacing:142.770700pt;}
.wsd6{word-spacing:145.299872pt;}
.wsce{word-spacing:163.285686pt;}
.wsd3{word-spacing:165.073680pt;}
.wscd{word-spacing:173.753057pt;}
.ws84{word-spacing:180.549969pt;}
.wsd5{word-spacing:210.787362pt;}
.ws82{word-spacing:219.275819pt;}
.ws86{word-spacing:301.603160pt;}
.ws83{word-spacing:314.915172pt;}
.ws87{word-spacing:357.306480pt;}
.ws85{word-spacing:468.760410pt;}
.wsc4{word-spacing:556.032463pt;}
.ws5a{word-spacing:763.008636pt;}
.ws62{word-spacing:790.761386pt;}
.ws37{word-spacing:821.695046pt;}
.wsc8{word-spacing:893.254563pt;}
.ws7d{word-spacing:902.911630pt;}
.wsc6{word-spacing:1181.545712pt;}
.ws25{word-spacing:1528.135092pt;}
._16{margin-left:-33.687301pt;}
._19{margin-left:-30.661844pt;}
._11{margin-left:-29.207297pt;}
._24{margin-left:-28.276387pt;}
._17{margin-left:-27.229114pt;}
._57{margin-left:-16.600496pt;}
._1a{margin-left:-11.520010pt;}
._18{margin-left:-9.483644pt;}
._34{margin-left:-6.433207pt;}
._0{margin-left:-4.829095pt;}
._4{margin-left:-3.923702pt;}
._2{margin-left:-2.754464pt;}
._3{margin-left:-1.304706pt;}
._5{width:1.487748pt;}
._1{width:2.754464pt;}
._55{width:3.665458pt;}
._25{width:4.654549pt;}
._59{width:6.530126pt;}
._22{width:15.210172pt;}
._32{width:16.116377pt;}
._31{width:17.009021pt;}
._60{width:18.255545pt;}
._d{width:19.258198pt;}
._1f{width:20.175547pt;}
._3a{width:22.167291pt;}
._6{width:23.697705pt;}
._38{width:24.597369pt;}
._8{width:25.640017pt;}
._4c{width:26.575552pt;}
._5d{width:27.694569pt;}
._47{width:29.090933pt;}
._1b{width:30.603662pt;}
._2d{width:32.447132pt;}
._7{width:33.716364pt;}
._62{width:34.779195pt;}
._20{width:35.840030pt;}
._1c{width:37.169716pt;}
._2e{width:38.710858pt;}
._37{width:39.865998pt;}
._21{width:41.287067pt;}
._54{width:42.613831pt;}
._2f{width:43.603198pt;}
._e{width:45.381856pt;}
._10{width:46.581341pt;}
._5f{width:49.750284pt;}
._14{width:51.477391pt;}
._a{width:53.527317pt;}
._33{width:57.154509pt;}
._c{width:59.112777pt;}
._5c{width:60.218232pt;}
._3e{width:63.559303pt;}
._3d{width:64.626493pt;}
._58{width:67.549147pt;}
._45{width:69.693379pt;}
._2a{width:71.272787pt;}
._12{width:72.203697pt;}
._44{width:77.075958pt;}
._39{width:84.164373pt;}
._41{width:87.937781pt;}
._61{width:90.996439pt;}
._f{width:100.829175pt;}
._77{width:103.505541pt;}
._3f{width:104.402973pt;}
._4f{width:119.447372pt;}
._52{width:127.476470pt;}
._40{width:128.897539pt;}
._78{width:132.421929pt;}
._5b{width:133.319361pt;}
._4d{width:150.341943pt;}
._75{width:166.604165pt;}
._6c{width:181.664690pt;}
._6f{width:188.147022pt;}
._71{width:199.039465pt;}
._68{width:200.314677pt;}
._6d{width:202.752748pt;}
._42{width:203.869261pt;}
._74{width:228.268313pt;}
._3b{width:237.722610pt;}
._72{width:284.213053pt;}
._43{width:287.617671pt;}
._73{width:288.782565pt;}
._76{width:291.598660pt;}
._6a{width:292.873873pt;}
._67{width:298.771732pt;}
._69{width:306.157340pt;}
._6e{width:314.605625pt;}
._6b{width:318.000105pt;}
._66{width:319.440806pt;}
._70{width:327.145217pt;}
._65{width:423.447626pt;}
._5a{width:463.244022pt;}
._48{width:496.665118pt;}
._4b{width:609.629599pt;}
._4e{width:611.175805pt;}
._53{width:626.676886pt;}
._4a{width:631.530685pt;}
._50{width:639.535078pt;}
._51{width:655.593274pt;}
._46{width:663.996443pt;}
._49{width:736.328846pt;}
._64{width:737.629706pt;}
._3c{width:758.916047pt;}
._56{width:764.670713pt;}
._63{width:851.690869pt;}
._36{width:933.067935pt;}
._5e{width:999.647356pt;}
._26{width:1028.563743pt;}
._30{width:1091.355814pt;}
._2c{width:1135.856445pt;}
._35{width:1186.482891pt;}
._1d{width:1232.433004pt;}
._1e{width:1234.004190pt;}
._29{width:1305.207376pt;}
._23{width:1412.913155pt;}
._27{width:1468.676363pt;}
._15{width:1476.738662pt;}
._b{width:1566.222373pt;}
._28{width:1669.365262pt;}
._13{width:1737.077811pt;}
._9{width:1932.773671pt;}
._2b{width:1947.701966pt;}
.fs6{font-size:31.880533pt;}
.fs7{font-size:37.193600pt;}
.fs5{font-size:42.507200pt;}
.fs3{font-size:53.133867pt;}
.fs0{font-size:58.181867pt;}
.fs2{font-size:63.761067pt;}
.fs4{font-size:76.513067pt;}
.fs1{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y28{bottom:10.801333pt;}
.y46{bottom:10.802667pt;}
.y1be{bottom:50.653333pt;}
.y27{bottom:51.157333pt;}
.y221{bottom:55.426667pt;}
.y108{bottom:55.865333pt;}
.y1dc{bottom:56.213333pt;}
.y8e{bottom:56.685333pt;}
.y200{bottom:65.920000pt;}
.y175{bottom:65.989333pt;}
.y1bd{bottom:68.718667pt;}
.y26{bottom:69.222667pt;}
.y234{bottom:71.782667pt;}
.y220{bottom:73.492000pt;}
.y107{bottom:73.930667pt;}
.y196{bottom:74.628000pt;}
.y8d{bottom:74.750667pt;}
.y1ff{bottom:83.985333pt;}
.y174{bottom:84.054667pt;}
.y1bc{bottom:86.784000pt;}
.y25{bottom:87.288000pt;}
.y21f{bottom:91.557333pt;}
.y106{bottom:91.996000pt;}
.y1db{bottom:92.344000pt;}
.y195{bottom:92.693333pt;}
.y8c{bottom:92.816000pt;}
.ydb{bottom:96.366667pt;}
.y1bb{bottom:104.849333pt;}
.y24{bottom:105.354667pt;}
.y21e{bottom:109.622667pt;}
.y105{bottom:110.061333pt;}
.y1da{bottom:110.410667pt;}
.y194{bottom:110.758667pt;}
.yb2{bottom:110.957333pt;}
.y154{bottom:111.193333pt;}
.y173{bottom:111.512000pt;}
.yda{bottom:118.417333pt;}
.y8b{bottom:120.273333pt;}
.y12c{bottom:120.918667pt;}
.y1fe{bottom:121.626667pt;}
.y1ba{bottom:122.914667pt;}
.y21d{bottom:127.688000pt;}
.y104{bottom:128.126667pt;}
.y193{bottom:128.824000pt;}
.y153{bottom:129.258667pt;}
.y23{bottom:137.882667pt;}
.y12b{bottom:138.984000pt;}
.y1b9{bottom:140.981333pt;}
.yb1{bottom:144.154667pt;}
.y21c{bottom:145.754667pt;}
.y103{bottom:146.193333pt;}
.y1d9{bottom:146.541333pt;}
.y192{bottom:146.889333pt;}
.y152{bottom:147.325333pt;}
.y172{bottom:150.457333pt;}
.yd9{bottom:151.094667pt;}
.y1fd{bottom:155.596000pt;}
.y22{bottom:155.948000pt;}
.y12a{bottom:157.049333pt;}
.y1b8{bottom:159.046667pt;}
.y8a{bottom:159.218667pt;}
.y21b{bottom:163.820000pt;}
.y102{bottom:164.258667pt;}
.y1d8{bottom:164.606667pt;}
.y191{bottom:164.956000pt;}
.y151{bottom:165.390667pt;}
.y171{bottom:168.522667pt;}
.yd8{bottom:169.160000pt;}
.y1fc{bottom:171.536000pt;}
.y21{bottom:174.013333pt;}
.y129{bottom:175.114667pt;}
.y1b7{bottom:177.112000pt;}
.yb0{bottom:177.872000pt;}
.y89{bottom:181.269333pt;}
.y21a{bottom:181.885333pt;}
.y101{bottom:182.324000pt;}
.y233{bottom:182.673333pt;}
.y190{bottom:183.021333pt;}
.y150{bottom:183.456000pt;}
.y170{bottom:186.588000pt;}
.yd7{bottom:187.225333pt;}
.y1fb{bottom:187.476000pt;}
.y20{bottom:192.080000pt;}
.y128{bottom:193.180000pt;}
.y1b6{bottom:195.177333pt;}
.yaf{bottom:195.938667pt;}
.y219{bottom:199.950667pt;}
.y100{bottom:200.389333pt;}
.y1d7{bottom:200.738667pt;}
.y18f{bottom:201.086667pt;}
.y14f{bottom:201.521333pt;}
.y88{bottom:203.320000pt;}
.y1fa{bottom:203.416000pt;}
.y16f{bottom:204.654667pt;}
.yd6{bottom:205.292000pt;}
.y1f{bottom:210.145333pt;}
.y127{bottom:211.246667pt;}
.yae{bottom:214.004000pt;}
.y218{bottom:218.016000pt;}
.yff{bottom:218.454667pt;}
.y1d6{bottom:218.804000pt;}
.y18e{bottom:219.152000pt;}
.y1f9{bottom:219.357333pt;}
.y14e{bottom:219.586667pt;}
.y6a{bottom:222.469333pt;}
.y1b5{bottom:222.634667pt;}
.y16e{bottom:222.720000pt;}
.yd5{bottom:223.357333pt;}
.y87{bottom:225.370667pt;}
.y1e{bottom:228.210667pt;}
.y126{bottom:229.312000pt;}
.yad{bottom:232.069333pt;}
.y1f8{bottom:235.297333pt;}
.y217{bottom:236.082667pt;}
.yfe{bottom:236.521333pt;}
.y232{bottom:236.869333pt;}
.y18d{bottom:237.217333pt;}
.y14d{bottom:237.653333pt;}
.y69{bottom:240.534667pt;}
.y16d{bottom:240.785333pt;}
.yd4{bottom:241.422667pt;}
.y1d{bottom:246.276000pt;}
.y125{bottom:247.377333pt;}
.y86{bottom:247.421333pt;}
.y1f7{bottom:251.237333pt;}
.y216{bottom:254.148000pt;}
.yfd{bottom:254.586667pt;}
.y1d5{bottom:254.934667pt;}
.y18c{bottom:255.284000pt;}
.y14c{bottom:255.718667pt;}
.yac{bottom:257.437333pt;}
.y68{bottom:258.600000pt;}
.y16c{bottom:258.850667pt;}
.yd3{bottom:259.488000pt;}
.y1b4{bottom:261.537333pt;}
.y1c{bottom:264.341333pt;}
.y124{bottom:265.442667pt;}
.yfc{bottom:272.652000pt;}
.y1d4{bottom:273.000000pt;}
.y231{bottom:273.001333pt;}
.y18b{bottom:273.349333pt;}
.y14b{bottom:273.784000pt;}
.y1f6{bottom:274.480000pt;}
.y67{bottom:276.665333pt;}
.yd2{bottom:277.553333pt;}
.y1b3{bottom:279.602667pt;}
.y215{bottom:281.605333pt;}
.y16b{bottom:286.308000pt;}
.yfb{bottom:290.717333pt;}
.y230{bottom:291.066667pt;}
.y18a{bottom:291.414667pt;}
.y14a{bottom:291.849333pt;}
.y123{bottom:292.900000pt;}
.y66{bottom:294.730667pt;}
.yab{bottom:294.893333pt;}
.yd1{bottom:295.618667pt;}
.y1b{bottom:296.870667pt;}
.y1b2{bottom:297.668000pt;}
.y85{bottom:298.164000pt;}
.y1f5{bottom:306.813333pt;}
.y1d3{bottom:309.132000pt;}
.y149{bottom:309.914667pt;}
.y65{bottom:312.797333pt;}
.yd0{bottom:313.685333pt;}
.y1b1{bottom:315.733333pt;}
.y84{bottom:316.230667pt;}
.yfa{bottom:318.174667pt;}
.y189{bottom:318.872000pt;}
.y16a{bottom:319.305333pt;}
.y214{bottom:320.550667pt;}
.y122{bottom:325.897333pt;}
.y1d2{bottom:327.197333pt;}
.yaa{bottom:327.360000pt;}
.y148{bottom:327.981333pt;}
.y1a{bottom:329.398667pt;}
.y64{bottom:330.862667pt;}
.ycf{bottom:331.750667pt;}
.y1b0{bottom:333.800000pt;}
.y1f4{bottom:334.270667pt;}
.y83{bottom:334.296000pt;}
.y1d1{bottom:345.262667pt;}
.y147{bottom:346.046667pt;}
.y19{bottom:347.464000pt;}
.y45{bottom:348.044000pt;}
.y63{bottom:348.928000pt;}
.y1af{bottom:351.865333pt;}
.y188{bottom:351.869333pt;}
.y213{bottom:355.093333pt;}
.yf9{bottom:357.120000pt;}
.yce{bottom:359.208000pt;}
.y82{bottom:361.753333pt;}
.y22f{bottom:363.328000pt;}
.y146{bottom:364.112000pt;}
.y169{bottom:365.129333pt;}
.y18{bottom:365.530667pt;}
.y44{bottom:366.109333pt;}
.y62{bottom:366.993333pt;}
.y1f3{bottom:369.129333pt;}
.y1ae{bottom:369.930667pt;}
.y121{bottom:371.721333pt;}
.y1d0{bottom:372.720000pt;}
.ya9{bottom:373.184000pt;}
.yf8{bottom:375.185333pt;}
.y1f2{bottom:379.106667pt;}
.y22e{bottom:381.394667pt;}
.y168{bottom:383.194667pt;}
.y17{bottom:383.596000pt;}
.y43{bottom:384.174667pt;}
.y61{bottom:385.058667pt;}
.y1ad{bottom:387.996000pt;}
.y212{bottom:389.700000pt;}
.y120{bottom:389.786667pt;}
.ya8{bottom:391.249333pt;}
.y145{bottom:391.569333pt;}
.yf7{bottom:393.250667pt;}
.y81{bottom:394.750667pt;}
.y187{bottom:397.693333pt;}
.ycd{bottom:398.153333pt;}
.y22d{bottom:399.460000pt;}
.y167{bottom:401.260000pt;}
.y16{bottom:401.661333pt;}
.y60{bottom:403.125333pt;}
.y1f1{bottom:404.200000pt;}
.y1ac{bottom:406.061333pt;}
.y211{bottom:407.765333pt;}
.y11f{bottom:407.853333pt;}
.ya7{bottom:409.314667pt;}
.yf6{bottom:411.317333pt;}
.y1cf{bottom:411.665333pt;}
.y1f0{bottom:414.177333pt;}
.y186{bottom:415.758667pt;}
.y42{bottom:416.704000pt;}
.y166{bottom:419.326667pt;}
.y5f{bottom:421.190667pt;}
.y1ab{bottom:424.128000pt;}
.y210{bottom:425.830667pt;}
.y11e{bottom:425.918667pt;}
.ycc{bottom:426.313333pt;}
.y22c{bottom:426.917333pt;}
.ya6{bottom:427.381333pt;}
.yf5{bottom:429.382667pt;}
.y144{bottom:430.514667pt;}
.y185{bottom:433.824000pt;}
.y15{bottom:434.189333pt;}
.y41{bottom:434.769333pt;}
.ycb{bottom:436.290667pt;}
.y165{bottom:437.392000pt;}
.y5e{bottom:439.256000pt;}
.y80{bottom:440.574667pt;}
.y1aa{bottom:442.193333pt;}
.y11d{bottom:443.984000pt;}
.y1ef{bottom:444.124000pt;}
.ya5{bottom:445.446667pt;}
.yf4{bottom:447.448000pt;}
.y1ce{bottom:447.797333pt;}
.y143{bottom:448.580000pt;}
.y20f{bottom:451.198667pt;}
.y184{bottom:451.890667pt;}
.y14{bottom:452.256000pt;}
.y40{bottom:452.834667pt;}
.y164{bottom:455.457333pt;}
.y7f{bottom:458.640000pt;}
.y1a9{bottom:460.258667pt;}
.y11c{bottom:462.049333pt;}
.ya4{bottom:463.512000pt;}
.yf3{bottom:465.513333pt;}
.y1cd{bottom:465.862667pt;}
.y142{bottom:466.645333pt;}
.y5d{bottom:466.713333pt;}
.yca{bottom:466.802667pt;}
.y183{bottom:469.956000pt;}
.y3f{bottom:470.900000pt;}
.y163{bottom:473.522667pt;}
.y7e{bottom:476.705333pt;}
.y1ee{bottom:476.801333pt;}
.y1a8{bottom:478.324000pt;}
.y11b{bottom:480.114667pt;}
.ya3{bottom:481.577333pt;}
.yf2{bottom:483.578667pt;}
.y22b{bottom:483.928000pt;}
.y141{bottom:484.710667pt;}
.y13{bottom:484.784000pt;}
.y182{bottom:488.021333pt;}
.y7d{bottom:494.770667pt;}
.y1ed{bottom:494.866667pt;}
.y1a7{bottom:496.389333pt;}
.y20e{bottom:497.510667pt;}
.y11a{bottom:498.181333pt;}
.yc9{bottom:499.480000pt;}
.ya2{bottom:499.642667pt;}
.yf1{bottom:501.645333pt;}
.y1cc{bottom:501.993333pt;}
.y140{bottom:502.777333pt;}
.y12{bottom:502.849333pt;}
.y3e{bottom:503.429333pt;}
.y5c{bottom:505.658667pt;}
.y181{bottom:506.086667pt;}
.y162{bottom:509.654667pt;}
.y7c{bottom:512.837333pt;}
.y1ec{bottom:512.933333pt;}
.y1a6{bottom:514.456000pt;}
.y119{bottom:516.246667pt;}
.yc8{bottom:517.546667pt;}
.ya1{bottom:517.708000pt;}
.yf0{bottom:519.710667pt;}
.y1cb{bottom:520.058667pt;}
.y13f{bottom:520.842667pt;}
.y11{bottom:520.914667pt;}
.y3d{bottom:521.494667pt;}
.y5b{bottom:523.724000pt;}
.y161{bottom:527.720000pt;}
.y7b{bottom:530.902667pt;}
.y1eb{bottom:530.998667pt;}
.y244{bottom:531.849333pt;}
.y1a5{bottom:532.521333pt;}
.y118{bottom:534.312000pt;}
.yc7{bottom:535.612000pt;}
.yef{bottom:537.776000pt;}
.y22a{bottom:538.125333pt;}
.y180{bottom:538.553333pt;}
.y10{bottom:538.981333pt;}
.y3c{bottom:539.560000pt;}
.y5a{bottom:541.789333pt;}
.ya0{bottom:545.165333pt;}
.y160{bottom:545.785333pt;}
.y13e{bottom:548.300000pt;}
.y7a{bottom:548.968000pt;}
.y243{bottom:549.914667pt;}
.y1a4{bottom:550.586667pt;}
.y20d{bottom:552.124000pt;}
.y117{bottom:552.377333pt;}
.yc6{bottom:553.677333pt;}
.yee{bottom:555.841333pt;}
.y1ca{bottom:556.190667pt;}
.y3b{bottom:557.625333pt;}
.y1ea{bottom:558.456000pt;}
.y59{bottom:559.856000pt;}
.y79{bottom:567.033333pt;}
.y1a3{bottom:568.652000pt;}
.y116{bottom:570.442667pt;}
.yf{bottom:571.509333pt;}
.yc5{bottom:571.742667pt;}
.y1c9{bottom:574.256000pt;}
.y3a{bottom:575.690667pt;}
.y58{bottom:577.921333pt;}
.y13d{bottom:581.297333pt;}
.y15f{bottom:581.916000pt;}
.y9f{bottom:584.110667pt;}
.y17f{bottom:584.377333pt;}
.y78{bottom:585.098667pt;}
.y20c{bottom:585.205333pt;}
.yed{bottom:585.724000pt;}
.y1a2{bottom:586.717333pt;}
.y242{bottom:586.878667pt;}
.y115{bottom:588.509333pt;}
.yc4{bottom:589.808000pt;}
.y1c8{bottom:592.321333pt;}
.yec{bottom:595.701333pt;}
.y57{bottom:595.986667pt;}
.y1e9{bottom:597.401333pt;}
.y15e{bottom:599.982667pt;}
.y20b{bottom:601.145333pt;}
.y9e{bottom:602.177333pt;}
.y17e{bottom:602.442667pt;}
.y77{bottom:603.164000pt;}
.ye{bottom:604.037333pt;}
.y1a1{bottom:604.784000pt;}
.y241{bottom:604.944000pt;}
.y114{bottom:606.574667pt;}
.yc3{bottom:607.874667pt;}
.y39{bottom:608.220000pt;}
.y229{bottom:610.386667pt;}
.y56{bottom:614.052000pt;}
.y1e8{bottom:615.466667pt;}
.y20a{bottom:617.085333pt;}
.y15d{bottom:618.048000pt;}
.y9d{bottom:620.242667pt;}
.y76{bottom:621.230667pt;}
.y1a0{bottom:622.849333pt;}
.y240{bottom:623.009333pt;}
.y113{bottom:624.640000pt;}
.yc2{bottom:625.940000pt;}
.y38{bottom:626.285333pt;}
.y13c{bottom:627.121333pt;}
.y1c7{bottom:628.452000pt;}
.y55{bottom:632.117333pt;}
.y17d{bottom:632.462667pt;}
.y209{bottom:633.025333pt;}
.y1e7{bottom:633.532000pt;}
.y15c{bottom:636.113333pt;}
.y9c{bottom:638.308000pt;}
.yeb{bottom:640.932000pt;}
.y112{bottom:642.705333pt;}
.yc1{bottom:644.005333pt;}
.y37{bottom:644.350667pt;}
.y13b{bottom:645.186667pt;}
.y1c6{bottom:646.518667pt;}
.y75{bottom:648.688000pt;}
.y208{bottom:648.965333pt;}
.yd{bottom:649.861333pt;}
.y54{bottom:650.182667pt;}
.y19f{bottom:650.306667pt;}
.y17c{bottom:650.529333pt;}
.y1e6{bottom:651.597333pt;}
.y15b{bottom:654.178667pt;}
.y9b{bottom:656.373333pt;}
.yea{bottom:658.997333pt;}
.y23f{bottom:659.973333pt;}
.y111{bottom:660.770667pt;}
.yc0{bottom:662.070667pt;}
.y13a{bottom:663.252000pt;}
.y228{bottom:664.584000pt;}
.y207{bottom:664.905333pt;}
.yc{bottom:665.802667pt;}
.y53{bottom:668.249333pt;}
.y9a{bottom:674.438667pt;}
.y36{bottom:676.880000pt;}
.ye9{bottom:677.062667pt;}
.y23e{bottom:678.038667pt;}
.y1e5{bottom:679.884000pt;}
.y17b{bottom:680.549333pt;}
.y139{bottom:681.317333pt;}
.y74{bottom:681.685333pt;}
.yb{bottom:681.742667pt;}
.y1c5{bottom:682.649333pt;}
.y52{bottom:686.314667pt;}
.y206{bottom:688.149333pt;}
.y110{bottom:688.228000pt;}
.y19e{bottom:689.208000pt;}
.ybf{bottom:689.528000pt;}
.y1e4{bottom:689.862667pt;}
.y15a{bottom:690.310667pt;}
.y35{bottom:694.945333pt;}
.ye8{bottom:695.129333pt;}
.ya{bottom:697.682667pt;}
.y138{bottom:699.384000pt;}
.y1c4{bottom:700.714667pt;}
.y51{bottom:704.380000pt;}
.y99{bottom:704.460000pt;}
.y19d{bottom:707.274667pt;}
.y159{bottom:708.376000pt;}
.y17a{bottom:710.570667pt;}
.y34{bottom:713.010667pt;}
.y9{bottom:713.622667pt;}
.y23d{bottom:714.169333pt;}
.y137{bottom:717.449333pt;}
.y227{bottom:718.780000pt;}
.y1e3{bottom:720.374667pt;}
.y98{bottom:722.525333pt;}
.ye7{bottom:722.586667pt;}
.y19c{bottom:725.340000pt;}
.y158{bottom:726.441333pt;}
.y10f{bottom:727.173333pt;}
.y73{bottom:727.509333pt;}
.ybe{bottom:728.473333pt;}
.y179{bottom:728.636000pt;}
.y8{bottom:729.562667pt;}
.y33{bottom:731.076000pt;}
.y50{bottom:731.837333pt;}
.y23c{bottom:732.234667pt;}
.y205{bottom:732.972000pt;}
.y136{bottom:735.514667pt;}
.y1c3{bottom:736.846667pt;}
.y97{bottom:740.590667pt;}
.y1e2{bottom:742.425333pt;}
.y19b{bottom:743.405333pt;}
.y157{bottom:744.506667pt;}
.y7{bottom:745.502667pt;}
.ybd{bottom:746.538667pt;}
.y32{bottom:749.141333pt;}
.y1c2{bottom:754.912000pt;}
.y96{bottom:758.657333pt;}
.y10e{bottom:760.664000pt;}
.y19a{bottom:761.470667pt;}
.ye6{bottom:761.532000pt;}
.y135{bottom:762.972000pt;}
.y72{bottom:764.342667pt;}
.ybc{bottom:764.605333pt;}
.y4f{bottom:764.834667pt;}
.y204{bottom:765.969333pt;}
.y23b{bottom:768.366667pt;}
.y6{bottom:769.748000pt;}
.y10d{bottom:772.202667pt;}
.y1c1{bottom:772.977333pt;}
.y156{bottom:774.528000pt;}
.y1e1{bottom:775.102667pt;}
.y95{bottom:776.722667pt;}
.y199{bottom:779.536000pt;}
.ye5{bottom:779.597333pt;}
.y31{bottom:781.670667pt;}
.ybb{bottom:782.670667pt;}
.y23a{bottom:786.432000pt;}
.y134{bottom:790.960000pt;}
.y226{bottom:791.042667pt;}
.y155{bottom:792.593333pt;}
.y94{bottom:794.788000pt;}
.y198{bottom:797.602667pt;}
.y71{bottom:798.060000pt;}
.y1c0{bottom:800.434667pt;}
.yba{bottom:800.736000pt;}
.y1e0{bottom:802.560000pt;}
.ye4{bottom:802.648000pt;}
.y178{bottom:804.180000pt;}
.y225{bottom:809.108000pt;}
.y4e{bottom:810.658667pt;}
.y203{bottom:811.793333pt;}
.ye3{bottom:812.625333pt;}
.y93{bottom:812.853333pt;}
.y30{bottom:814.198667pt;}
.y197{bottom:815.668000pt;}
.y10c{bottom:816.425333pt;}
.yb9{bottom:818.801333pt;}
.y5{bottom:823.322667pt;}
.y239{bottom:823.394667pt;}
.y70{bottom:823.429333pt;}
.y224{bottom:827.174667pt;}
.y4d{bottom:828.724000pt;}
.y92{bottom:830.918667pt;}
.y2f{bottom:832.264000pt;}
.y1bf{bottom:833.432000pt;}
.ye2{bottom:833.733333pt;}
.y10b{bottom:834.490667pt;}
.y133{bottom:834.966667pt;}
.y1df{bottom:835.557333pt;}
.y202{bottom:835.952000pt;}
.yb8{bottom:836.866667pt;}
.y238{bottom:841.461333pt;}
.y6f{bottom:841.494667pt;}
.y177{bottom:843.125333pt;}
.y201{bottom:845.929333pt;}
.y4c{bottom:846.789333pt;}
.y2e{bottom:850.330667pt;}
.ye1{bottom:851.798667pt;}
.y10a{bottom:852.556000pt;}
.y223{bottom:854.632000pt;}
.yb7{bottom:854.932000pt;}
.y91{bottom:858.376000pt;}
.y6e{bottom:859.560000pt;}
.y176{bottom:861.190667pt;}
.y4{bottom:863.613333pt;}
.y4b{bottom:864.856000pt;}
.y2d{bottom:868.396000pt;}
.y132{bottom:868.685333pt;}
.ye0{bottom:869.864000pt;}
.yb6{bottom:872.998667pt;}
.y6d{bottom:877.625333pt;}
.y237{bottom:878.424000pt;}
.y109{bottom:879.256000pt;}
.y1de{bottom:881.381333pt;}
.y3{bottom:882.210667pt;}
.y4a{bottom:882.921333pt;}
.y131{bottom:886.750667pt;}
.y222{bottom:887.629333pt;}
.ydf{bottom:887.930667pt;}
.yb5{bottom:891.064000pt;}
.y6c{bottom:895.690667pt;}
.y236{bottom:896.489333pt;}
.y90{bottom:897.321333pt;}
.y1dd{bottom:899.446667pt;}
.y2c{bottom:900.924000pt;}
.y49{bottom:900.986667pt;}
.y130{bottom:904.816000pt;}
.yde{bottom:905.996000pt;}
.yb4{bottom:909.129333pt;}
.y2{bottom:911.434667pt;}
.y235{bottom:914.554667pt;}
.y8f{bottom:915.386667pt;}
.y48{bottom:919.052000pt;}
.y6b{bottom:921.060000pt;}
.y12f{bottom:922.881333pt;}
.ydd{bottom:924.061333pt;}
.y2b{bottom:933.453333pt;}
.yb3{bottom:936.586667pt;}
.y47{bottom:937.117333pt;}
.y12e{bottom:940.946667pt;}
.ydc{bottom:942.126667pt;}
.y2a{bottom:951.518667pt;}
.y12d{bottom:966.316000pt;}
.y29{bottom:969.584000pt;}
.y1{bottom:1021.884000pt;}
.h5{height:39.903534pt;}
.h9{height:40.436397pt;}
.hb{height:43.636400pt;}
.h2{height:43.694582pt;}
.h13{height:43.976550pt;}
.h4{height:45.015313pt;}
.h7{height:47.884561pt;}
.h10{height:49.196608pt;}
.h11{height:52.989733pt;}
.h8{height:52.995067pt;}
.h6{height:57.461313pt;}
.h3{height:64.454458pt;}
.ha{height:82.996400pt;}
.h12{height:83.603915pt;}
.hc{height:84.364608pt;}
.hf{height:89.849249pt;}
.he{height:101.820608pt;}
.hd{height:139.325733pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:94.488000pt;}
.xd{left:112.328000pt;}
.xa{left:116.182667pt;}
.x11{left:124.553333pt;}
.x8{left:130.852000pt;}
.x25{left:139.586667pt;}
.x16{left:148.348000pt;}
.xb{left:149.336000pt;}
.x7{left:150.772000pt;}
.x12{left:158.701333pt;}
.x3a{left:163.205333pt;}
.xc{left:166.488000pt;}
.x3{left:168.402667pt;}
.x1{left:170.078667pt;}
.x13{left:172.618667pt;}
.x14{left:174.628000pt;}
.x3d{left:180.261333pt;}
.x28{left:184.684000pt;}
.x37{left:188.622667pt;}
.x22{left:190.052000pt;}
.x3b{left:202.214667pt;}
.x2{left:208.785333pt;}
.x3c{left:219.316000pt;}
.x30{left:226.046667pt;}
.x26{left:229.781333pt;}
.xe{left:237.254667pt;}
.x10{left:245.465333pt;}
.xf{left:246.720000pt;}
.x20{left:264.245333pt;}
.x2a{left:266.440000pt;}
.x23{left:271.084000pt;}
.x27{left:274.880000pt;}
.x2b{left:277.969333pt;}
.x29{left:283.012000pt;}
.x4{left:284.270667pt;}
.x15{left:285.281333pt;}
.x36{left:287.325333pt;}
.x2e{left:288.229333pt;}
.x35{left:290.645333pt;}
.x34{left:293.965333pt;}
.x2d{left:298.302667pt;}
.x1b{left:303.920000pt;}
.x17{left:307.761333pt;}
.x2c{left:317.909333pt;}
.x18{left:320.290667pt;}
.x1d{left:321.926667pt;}
.x5{left:331.901333pt;}
.x1c{left:343.016000pt;}
.x31{left:343.945333pt;}
.x21{left:345.776000pt;}
.x24{left:354.440000pt;}
.x2f{left:359.009333pt;}
.x6{left:367.633333pt;}
.x32{left:381.597333pt;}
.x19{left:394.896000pt;}
.x33{left:398.544000pt;}
.x1e{left:400.717333pt;}
.x38{left:404.400000pt;}
.x1f{left:423.289333pt;}
.x1a{left:437.454667pt;}
.x39{left:673.498667pt;}
}




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