
    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_94254d1d05b3776676e21eb2.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_c8b89ed711ffb6a7525f464f.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_4c7a80116cbaedf7ca68c601.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.704000;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_edaf3eae082db3d75d2feb1c.woff2')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_c789299aa3fa209e17f9b124.woff2')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_91f6907abb45b7ee76c6137f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.710000;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_503f4b220ebbfb79d58c3216.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.887000;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_4518c5893fdd1e7672e55f50.woff2')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_ec09ba4184cef7d81adc75ff.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_ecd121add7029f303fae04d4.woff2')format("woff");}.ffa{font-family:ffa;line-height:2.399000;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_9c9e3996b34fe85a18339d2c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.909000;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_9c8f629403b4bbb1bfa2f217.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_071629007202249efbf37a8a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.904000;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_2dc3d2203619ec12ff834122.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.665000;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_1e7f28767bd1d0cb7c7adff2.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_195b49303c3792c409093574.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_39cfe2f693df65e773ca4a86.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.475000;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;}
.ff12{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff13;src:url('chunks/assets/font_c8aa3ad66ac0b0c5b278af0f.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.528000;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_cfe27d0affc11a155bf06471.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_9c079b6d18d571f36d95522b.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.685000;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_5e98b5396c33c1b8e45f755a.woff2')format("woff");}.ff16{font-family:ff16;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;}
.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);}
.v3{vertical-align:-148.446000px;}
.v1a{vertical-align:-92.286000px;}
.v12{vertical-align:-60.486000px;}
.v11{vertical-align:-50.352000px;}
.v9{vertical-align:-22.854000px;}
.v6{vertical-align:-10.128000px;}
.v1{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.ve{vertical-align:3.204000px;}
.v16{vertical-align:9.822000px;}
.vd{vertical-align:12.858000px;}
.v5{vertical-align:16.548000px;}
.v18{vertical-align:22.572000px;}
.v7{vertical-align:23.748000px;}
.v17{vertical-align:25.776000px;}
.v4{vertical-align:27.024000px;}
.vb{vertical-align:33.798000px;}
.v14{vertical-align:34.824000px;}
.v8{vertical-align:44.286000px;}
.v13{vertical-align:45.486000px;}
.vc{vertical-align:50.676000px;}
.va{vertical-align:52.728000px;}
.vf{vertical-align:68.676000px;}
.v1c{vertical-align:79.590000px;}
.v2{vertical-align:89.088000px;}
.v15{vertical-align:92.292000px;}
.v1b{vertical-align:106.614000px;}
.v10{vertical-align:137.190000px;}
.v1d{vertical-align:147.618000px;}
.v19{vertical-align:171.876000px;}
.lsb{letter-spacing:0.000000px;}
.ls57{letter-spacing:0.000502px;}
.ls80{letter-spacing:0.000692px;}
.ls5f{letter-spacing:0.000937px;}
.ls3e{letter-spacing:0.002682px;}
.ls70{letter-spacing:0.002690px;}
.ls8a{letter-spacing:0.002909px;}
.ls0{letter-spacing:0.002975px;}
.ls5c{letter-spacing:0.003239px;}
.ls74{letter-spacing:0.003242px;}
.ls83{letter-spacing:0.003578px;}
.ls4d{letter-spacing:0.004332px;}
.ls58{letter-spacing:0.004869px;}
.ls52{letter-spacing:0.005253px;}
.ls10{letter-spacing:0.007346px;}
.ls1f{letter-spacing:0.009737px;}
.ls9b{letter-spacing:0.010325px;}
.ls34{letter-spacing:0.010618px;}
.ls5d{letter-spacing:0.010813px;}
.ls99{letter-spacing:0.011455px;}
.ls61{letter-spacing:0.011629px;}
.ls20{letter-spacing:0.011847px;}
.ls56{letter-spacing:0.012552px;}
.lsb4{letter-spacing:0.013268px;}
.lsa0{letter-spacing:0.014791px;}
.lsc4{letter-spacing:0.015178px;}
.lsc7{letter-spacing:0.016364px;}
.ls16{letter-spacing:0.016876px;}
.ls92{letter-spacing:0.016909px;}
.ls7b{letter-spacing:0.020060px;}
.ls82{letter-spacing:0.022611px;}
.ls93{letter-spacing:0.024072px;}
.ls1d{letter-spacing:0.024510px;}
.ls4e{letter-spacing:0.024980px;}
.ls1b{letter-spacing:0.026545px;}
.lsa5{letter-spacing:0.026723px;}
.ls47{letter-spacing:0.026778px;}
.ls8c{letter-spacing:0.027680px;}
.ls6{letter-spacing:0.027886px;}
.ls68{letter-spacing:0.027906px;}
.lsad{letter-spacing:0.029366px;}
.lsa8{letter-spacing:0.031029px;}
.lsbb{letter-spacing:2.029093px;}
.lsc5{letter-spacing:2.343209px;}
.ls31{letter-spacing:2.356366px;}
.lsb8{letter-spacing:2.677954px;}
.ls11{letter-spacing:2.984915px;}
.ls29{letter-spacing:2.988532px;}
.ls49{letter-spacing:2.988960px;}
.lsc6{letter-spacing:3.008341px;}
.ls4f{letter-spacing:3.730912px;}
.ls2d{letter-spacing:4.123640px;}
.ls60{letter-spacing:5.105459px;}
.ls95{letter-spacing:5.170913px;}
.ls73{letter-spacing:5.301823px;}
.ls43{letter-spacing:5.311591px;}
.ls76{letter-spacing:5.547190px;}
.ls32{letter-spacing:5.983064px;}
.lsc2{letter-spacing:6.021823px;}
.ls8d{letter-spacing:6.676180px;}
.ls2f{letter-spacing:7.054177px;}
.ls7c{letter-spacing:7.163795px;}
.ls5b{letter-spacing:7.171062px;}
.lsb7{letter-spacing:7.171068px;}
.ls78{letter-spacing:7.396370px;}
.ls54{letter-spacing:7.431183px;}
.lsc1{letter-spacing:8.116370px;}
.lsc9{letter-spacing:8.312734px;}
.ls98{letter-spacing:9.098189px;}
.ls53{letter-spacing:10.865464px;}
.ls44{letter-spacing:10.906869px;}
.lsf{letter-spacing:10.930918px;}
.ls2e{letter-spacing:12.730338px;}
.ls5a{letter-spacing:14.521579px;}
.lse{letter-spacing:14.530921px;}
.lsb6{letter-spacing:14.567025px;}
.ls2c{letter-spacing:14.596376px;}
.lsb3{letter-spacing:16.101832px;}
.ls2b{letter-spacing:16.247117px;}
.ls9{letter-spacing:16.557841px;}
.lsb5{letter-spacing:16.560014px;}
.ls59{letter-spacing:16.625468px;}
.ls41{letter-spacing:17.534915px;}
.ls77{letter-spacing:17.947376px;}
.ls97{letter-spacing:18.000015px;}
.ls33{letter-spacing:18.130924px;}
.ls3f{letter-spacing:18.179412px;}
.ls36{letter-spacing:18.181331px;}
.ls1e{letter-spacing:18.196379px;}
.lsd{letter-spacing:18.205532px;}
.ls14{letter-spacing:18.261833px;}
.ls55{letter-spacing:18.392743px;}
.lsbc{letter-spacing:18.458197px;}
.ls86{letter-spacing:18.720016px;}
.lsc{letter-spacing:18.785470px;}
.lsc3{letter-spacing:19.895550px;}
.ls2a{letter-spacing:20.066803px;}
.ls2{letter-spacing:20.204153px;}
.ls64{letter-spacing:20.225471px;}
.lsc0{letter-spacing:20.290926px;}
.ls35{letter-spacing:20.552744px;}
.ls6a{letter-spacing:20.618199px;}
.ls3c{letter-spacing:20.749108px;}
.ls3b{letter-spacing:20.814563px;}
.lsa9{letter-spacing:20.880017px;}
.ls4b{letter-spacing:21.168960px;}
.ls8f{letter-spacing:21.207290px;}
.lsac{letter-spacing:21.272745px;}
.ls63{letter-spacing:21.600018px;}
.ls42{letter-spacing:21.719412px;}
.ls7e{letter-spacing:21.730927px;}
.ls94{letter-spacing:21.796382px;}
.ls51{letter-spacing:21.861836px;}
.ls79{letter-spacing:21.992746px;}
.lsb0{letter-spacing:22.058200px;}
.ls9d{letter-spacing:22.254564px;}
.ls66{letter-spacing:22.320019px;}
.ls6d{letter-spacing:22.450928px;}
.lscb{letter-spacing:22.581837px;}
.ls21{letter-spacing:22.647292px;}
.ls89{letter-spacing:22.712746px;}
.ls37{letter-spacing:22.792338px;}
.ls22{letter-spacing:22.843655px;}
.ls25{letter-spacing:22.974565px;}
.ls3d{letter-spacing:23.367292px;}
.ls48{letter-spacing:23.432747px;}
.ls38{letter-spacing:23.498201px;}
.ls5{letter-spacing:23.551586px;}
.ls13{letter-spacing:23.563656px;}
.lsb1{letter-spacing:23.890929px;}
.ls88{letter-spacing:24.545475px;}
.ls90{letter-spacing:24.706180px;}
.ls69{letter-spacing:24.850180px;}
.ls71{letter-spacing:24.856180px;}
.ls1{letter-spacing:24.986201px;}
.ls96{letter-spacing:25.069112px;}
.lsa3{letter-spacing:25.134566px;}
.ls45{letter-spacing:25.265476px;}
.ls91{letter-spacing:25.330930px;}
.ls72{letter-spacing:25.349412px;}
.lsae{letter-spacing:25.396180px;}
.lsb2{letter-spacing:25.461839px;}
.ls6f{letter-spacing:25.789112px;}
.ls3a{letter-spacing:25.985476px;}
.lsc8{letter-spacing:26.116385px;}
.ls8{letter-spacing:26.361040px;}
.ls4a{letter-spacing:26.406960px;}
.lsab{letter-spacing:26.640022px;}
.lsbf{letter-spacing:26.705477px;}
.ls62{letter-spacing:26.967295px;}
.ls26{letter-spacing:27.163659px;}
.ls75{letter-spacing:27.229114px;}
.ls46{letter-spacing:27.294568px;}
.ls1a{letter-spacing:27.621841px;}
.ls8e{letter-spacing:27.892180px;}
.ls3{letter-spacing:27.974981px;}
.ls19{letter-spacing:28.080023px;}
.lsa4{letter-spacing:28.276387px;}
.ls9c{letter-spacing:28.734569px;}
.ls6b{letter-spacing:28.800024px;}
.ls65{letter-spacing:28.865479px;}
.ls39{letter-spacing:29.061842px;}
.ls15{letter-spacing:29.127297px;}
.ls1c{letter-spacing:29.650934px;}
.lsa7{letter-spacing:29.716388px;}
.ls17{letter-spacing:29.912752px;}
.lsbd{letter-spacing:30.109116px;}
.lsca{letter-spacing:30.567298px;}
.ls28{letter-spacing:30.829117px;}
.ls4{letter-spacing:30.844210px;}
.ls67{letter-spacing:32.460613px;}
.lsa{letter-spacing:32.727300px;}
.lsaa{letter-spacing:32.792755px;}
.lsaf{letter-spacing:33.006613px;}
.ls9f{letter-spacing:33.381846px;}
.ls9e{letter-spacing:33.447301px;}
.ls27{letter-spacing:33.970937px;}
.ls6e{letter-spacing:35.018211px;}
.ls87{letter-spacing:35.738212px;}
.ls9a{letter-spacing:36.096613px;}
.lsa6{letter-spacing:36.364180px;}
.lsa2{letter-spacing:36.392758px;}
.ls6c{letter-spacing:36.785485px;}
.ls8b{letter-spacing:36.960613px;}
.ls23{letter-spacing:37.499354px;}
.lsa1{letter-spacing:37.612180px;}
.ls18{letter-spacing:37.963668px;}
.lsbe{letter-spacing:39.338215px;}
.ls7{letter-spacing:39.668847px;}
.ls40{letter-spacing:39.995424px;}
.ls7a{letter-spacing:57.305412px;}
.ls30{letter-spacing:63.758915px;}
.lsb9{letter-spacing:64.844915px;}
.lsba{letter-spacing:68.474915px;}
.ls84{letter-spacing:71.738242px;}
.ls4c{letter-spacing:96.221412px;}
.ls81{letter-spacing:125.476468px;}
.ls5e{letter-spacing:206.192700px;}
.ls85{letter-spacing:214.363815px;}
.ls7f{letter-spacing:227.323826px;}
.ls7d{letter-spacing:506.332869px;}
.ls12{letter-spacing:949.288064px;}
.ls50{letter-spacing:1015.062372px;}
.ls24{letter-spacing:1175.369408px;}
.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;}
}
.ws3b{word-spacing:-65.454600px;}
.wse{word-spacing:-59.775600px;}
.ws39{word-spacing:-51.820407px;}
.ws142{word-spacing:-44.888765px;}
.ws13f{word-spacing:-44.666219px;}
.ws47{word-spacing:-43.592764px;}
.ws3c{word-spacing:-42.637126px;}
.ws1c{word-spacing:-40.176033px;}
.ws21{word-spacing:-38.146941px;}
.wsc6{word-spacing:-36.379667px;}
.ws98{word-spacing:-36.071827px;}
.ws25{word-spacing:-33.957846px;}
.ws2c{word-spacing:-33.630573px;}
.ws84{word-spacing:-33.211407px;}
.ws2{word-spacing:-32.278875px;}
.ws24{word-spacing:-31.994208px;}
.wscb{word-spacing:-31.771663px;}
.wsaa{word-spacing:-31.706208px;}
.wsa4{word-spacing:-29.349843px;}
.ws27{word-spacing:-29.310570px;}
.ws9c{word-spacing:-28.106205px;}
.ws1a{word-spacing:-26.899125px;}
.wsd5{word-spacing:-26.037693px;}
.ws3a{word-spacing:-25.749840px;}
.ws28{word-spacing:-25.514203px;}
.ws9e{word-spacing:-24.506202px;}
.wsa0{word-spacing:-24.440748px;}
.ws2a{word-spacing:-22.961474px;}
.ws20{word-spacing:-22.896019px;}
.ws29{word-spacing:-21.456018px;}
.ws26{word-spacing:-21.390563px;}
.ws5a{word-spacing:-20.906199px;}
.wsf8{word-spacing:-19.008016px;}
.ws9d{word-spacing:-18.183288px;}
.wsdc{word-spacing:-16.848014px;}
.ws1d{word-spacing:-16.743287px;}
.wsd6{word-spacing:-16.730196px;}
.wsb5{word-spacing:-15.676654px;}
.wsc2{word-spacing:-14.111859px;}
.ws9a{word-spacing:-14.028087px;}
.wsab{word-spacing:-12.570469px;}
.ws75{word-spacing:-11.891696px;}
.ws13c{word-spacing:-9.684469px;}
.ws83{word-spacing:-9.678469px;}
.wsb7{word-spacing:-8.404654px;}
.ws87{word-spacing:-6.813678px;}
.ws77{word-spacing:-6.809696px;}
.ws7f{word-spacing:-6.628630px;}
.wsb6{word-spacing:-6.336005px;}
.wsc0{word-spacing:-6.048469px;}
.wsbe{word-spacing:-6.042469px;}
.wsbf{word-spacing:-5.004469px;}
.wsc7{word-spacing:-4.656265px;}
.ws86{word-spacing:-4.470469px;}
.ws7a{word-spacing:-4.048630px;}
.ws9b{word-spacing:-3.652367px;}
.wsf5{word-spacing:-2.971639px;}
.ws126{word-spacing:-2.448002px;}
.ws127{word-spacing:-2.146911px;}
.ws52{word-spacing:-2.081456px;}
.ws58{word-spacing:-1.623274px;}
.ws9{word-spacing:-1.601986px;}
.ws56{word-spacing:-1.557819px;}
.ws8d{word-spacing:-1.531638px;}
.ws162{word-spacing:-1.426910px;}
.ws4b{word-spacing:-0.968728px;}
.ws143{word-spacing:-0.746182px;}
.ws115{word-spacing:-0.641455px;}
.ws6f{word-spacing:-0.576000px;}
.ws69{word-spacing:-0.549819px;}
.ws6a{word-spacing:-0.510546px;}
.ws61{word-spacing:-0.379637px;}
.ws15b{word-spacing:-0.314182px;}
.wsf6{word-spacing:-0.183273px;}
.ws30{word-spacing:-0.117818px;}
.wse3{word-spacing:-0.052364px;}
.wsc{word-spacing:-0.041843px;}
.wsa9{word-spacing:-0.026182px;}
.ws23{word-spacing:0.000000px;}
.ws59{word-spacing:0.013091px;}
.ws8c{word-spacing:0.078546px;}
.ws10d{word-spacing:0.104727px;}
.ws74{word-spacing:0.144000px;}
.ws114{word-spacing:0.209455px;}
.ws146{word-spacing:0.235637px;}
.ws45{word-spacing:0.274909px;}
.ws15e{word-spacing:0.340364px;}
.ws137{word-spacing:0.405819px;}
.wsb1{word-spacing:0.471273px;}
.ws120{word-spacing:0.536728px;}
.wsb0{word-spacing:0.562910px;}
.ws4d{word-spacing:0.667637px;}
.ws49{word-spacing:0.733092px;}
.ws134{word-spacing:0.798546px;}
.ws8{word-spacing:0.848814px;}
.ws7d{word-spacing:0.864001px;}
.wsb9{word-spacing:0.890183px;}
.ws33{word-spacing:0.929455px;}
.ws7c{word-spacing:0.955637px;}
.ws165{word-spacing:0.994910px;}
.ws10f{word-spacing:1.060365px;}
.ws10c{word-spacing:1.125819px;}
.wsfa{word-spacing:1.191274px;}
.ws128{word-spacing:1.217456px;}
.ws41{word-spacing:1.256728px;}
.ws130{word-spacing:1.322183px;}
.ws10b{word-spacing:1.348365px;}
.ws64{word-spacing:1.387638px;}
.ws6b{word-spacing:1.453092px;}
.ws12f{word-spacing:1.479274px;}
.ws8a{word-spacing:1.518547px;}
.ws90{word-spacing:1.544729px;}
.ws95{word-spacing:1.584001px;}
.ws8f{word-spacing:1.610183px;}
.wsb4{word-spacing:1.714911px;}
.ws12b{word-spacing:1.780365px;}
.ws119{word-spacing:1.806547px;}
.ws136{word-spacing:1.976729px;}
.ws2b{word-spacing:2.002911px;}
.ws117{word-spacing:2.042184px;}
.ws113{word-spacing:2.107638px;}
.ws121{word-spacing:2.304002px;}
.ws138{word-spacing:2.330184px;}
.wsd3{word-spacing:2.369457px;}
.wsc9{word-spacing:2.434911px;}
.ws5d{word-spacing:2.500366px;}
.ws88{word-spacing:2.565820px;}
.ws72{word-spacing:2.631275px;}
.wsd2{word-spacing:2.657457px;}
.wsa8{word-spacing:2.696730px;}
.ws44{word-spacing:2.762184px;}
.wsc8{word-spacing:2.788366px;}
.ws147{word-spacing:2.958548px;}
.ws62{word-spacing:2.971639px;}
.ws124{word-spacing:3.024003px;}
.ws15a{word-spacing:3.039610px;}
.ws14a{word-spacing:3.050184px;}
.ws19{word-spacing:3.060511px;}
.ws92{word-spacing:3.089457px;}
.ws99{word-spacing:3.093408px;}
.ws161{word-spacing:3.168003px;}
.ws5{word-spacing:3.299613px;}
.wsc1{word-spacing:3.439522px;}
.wse0{word-spacing:3.482185px;}
.ws7{word-spacing:3.538716px;}
.ws0{word-spacing:3.613094px;}
.ws97{word-spacing:3.631392px;}
.ws22{word-spacing:3.678549px;}
.ws100{word-spacing:3.744003px;}
.ws81{word-spacing:3.770185px;}
.ws71{word-spacing:3.809458px;}
.wsb2{word-spacing:3.822549px;}
.wscd{word-spacing:3.888003px;}
.wsd{word-spacing:3.921279px;}
.wse5{word-spacing:3.940367px;}
.wscc{word-spacing:3.946912px;}
.wse7{word-spacing:4.005822px;}
.ws79{word-spacing:4.012367px;}
.wsfe{word-spacing:4.071276px;}
.ws7e{word-spacing:4.084367px;}
.ws140{word-spacing:4.097458px;}
.ws17{word-spacing:4.136472px;}
.ws129{word-spacing:4.136731px;}
.ws1e{word-spacing:4.162913px;}
.ws3f{word-spacing:4.202185px;}
.wsff{word-spacing:4.228367px;}
.wsa{word-spacing:4.256023px;}
.ws12e{word-spacing:4.267640px;}
.ws8e{word-spacing:4.333095px;}
.ws14f{word-spacing:4.359276px;}
.ws166{word-spacing:4.398549px;}
.wsec{word-spacing:4.464004px;}
.ws37{word-spacing:4.483200px;}
.ws103{word-spacing:4.490186px;}
.wsbb{word-spacing:4.594913px;}
.ws73{word-spacing:4.660368px;}
.ws11c{word-spacing:4.673458px;}
.ws135{word-spacing:4.725822px;}
.ws105{word-spacing:4.856731px;}
.ws57{word-spacing:4.869822px;}
.ws104{word-spacing:4.882913px;}
.ws4{word-spacing:4.904745px;}
.ws132{word-spacing:5.118550px;}
.ws53{word-spacing:5.184004px;}
.ws89{word-spacing:5.249459px;}
.ws31{word-spacing:5.314914px;}
.wsad{word-spacing:5.328004px;}
.ws4c{word-spacing:5.379825px;}
.wsbc{word-spacing:5.380368px;}
.wsf0{word-spacing:5.445823px;}
.wsb{word-spacing:5.451535px;}
.wsd4{word-spacing:5.458914px;}
.ws11d{word-spacing:5.511277px;}
.wsca{word-spacing:5.589823px;}
.ws6{word-spacing:5.632692px;}
.ws3e{word-spacing:5.707641px;}
.wsd7{word-spacing:5.720732px;}
.wsdf{word-spacing:5.773096px;}
.ws131{word-spacing:5.864732px;}
.ws13a{word-spacing:5.904005px;}
.ws4a{word-spacing:5.930187px;}
.ws12a{word-spacing:5.969460px;}
.ws153{word-spacing:6.034914px;}
.ws67{word-spacing:6.100369px;}
.ws68{word-spacing:6.165823px;}
.wsef{word-spacing:6.257460px;}
.wsed{word-spacing:6.296733px;}
.ws11f{word-spacing:6.322914px;}
.wseb{word-spacing:6.362187px;}
.ws82{word-spacing:6.375278px;}
.ws145{word-spacing:6.427642px;}
.ws1{word-spacing:6.455775px;}
.wse8{word-spacing:6.493096px;}
.wsa7{word-spacing:6.558551px;}
.ws78{word-spacing:6.637096px;}
.ws76{word-spacing:6.702551px;}
.ws48{word-spacing:6.781097px;}
.ws12d{word-spacing:6.820369px;}
.ws139{word-spacing:6.846551px;}
.wsf4{word-spacing:6.885824px;}
.ws151{word-spacing:6.912006px;}
.wsee{word-spacing:6.951279px;}
.ws40{word-spacing:7.016733px;}
.wsae{word-spacing:7.147642px;}
.wsde{word-spacing:7.344006px;}
.ws144{word-spacing:7.435643px;}
.ws14{word-spacing:7.483905px;}
.wsd1{word-spacing:7.605825px;}
.wsb3{word-spacing:7.671279px;}
.ws7b{word-spacing:7.677825px;}
.ws160{word-spacing:7.684370px;}
.ws43{word-spacing:7.762916px;}
.ws15f{word-spacing:7.802188px;}
.ws12c{word-spacing:7.828370px;}
.wsaf{word-spacing:7.867643px;}
.wsa5{word-spacing:7.933098px;}
.ws155{word-spacing:7.959279px;}
.ws51{word-spacing:7.998552px;}
.ws18{word-spacing:8.021886px;}
.ws101{word-spacing:8.064007px;}
.ws14d{word-spacing:8.129461px;}
.wsf7{word-spacing:8.155643px;}
.wsda{word-spacing:8.194916px;}
.wsf9{word-spacing:8.221098px;}
.wsdd{word-spacing:8.260371px;}
.ws46{word-spacing:8.286552px;}
.ws163{word-spacing:8.338916px;}
.ws11e{word-spacing:8.404371px;}
.ws150{word-spacing:8.482916px;}
.ws63{word-spacing:8.522189px;}
.ws5c{word-spacing:8.587644px;}
.ws13b{word-spacing:8.718553px;}
.ws3d{word-spacing:8.784007px;}
.ws154{word-spacing:8.797098px;}
.ws108{word-spacing:8.849462px;}
.wsf3{word-spacing:9.045826px;}
.ws4e{word-spacing:9.111280px;}
.wsa6{word-spacing:9.137462px;}
.ws15{word-spacing:9.157622px;}
.ws65{word-spacing:9.176735px;}
.ws16{word-spacing:9.217398px;}
.ws5f{word-spacing:9.242190px;}
.ws106{word-spacing:9.255280px;}
.ws148{word-spacing:9.268371px;}
.wsdb{word-spacing:9.373099px;}
.ws6e{word-spacing:9.438553px;}
.ws15d{word-spacing:9.464735px;}
.ws5e{word-spacing:9.569463px;}
.ws85{word-spacing:9.634917px;}
.ws2f{word-spacing:9.765826px;}
.ws11a{word-spacing:9.778917px;}
.ws5b{word-spacing:9.831281px;}
.ws123{word-spacing:10.027645px;}
.ws10e{word-spacing:10.040736px;}
.ws141{word-spacing:10.053827px;}
.ws8b{word-spacing:10.093099px;}
.ws34{word-spacing:10.158554px;}
.ws80{word-spacing:10.171645px;}
.ws125{word-spacing:10.224009px;}
.ws116{word-spacing:10.354918px;}
.wse6{word-spacing:10.368009px;}
.ws60{word-spacing:10.420372px;}
.ws11b{word-spacing:10.485827px;}
.wsfd{word-spacing:10.551282px;}
.wse4{word-spacing:10.616736px;}
.ws14c{word-spacing:10.629827px;}
.ws70{word-spacing:10.682191px;}
.wsc5{word-spacing:10.713540px;}
.ws133{word-spacing:10.813100px;}
.ws13e{word-spacing:10.813392px;}
.ws14e{word-spacing:10.826191px;}
.ws6d{word-spacing:10.839282px;}
.wsfb{word-spacing:10.878555px;}
.wsb8{word-spacing:10.944009px;}
.ws93{word-spacing:11.009464px;}
.ws94{word-spacing:11.074918px;}
.wsd8{word-spacing:11.467646px;}
.wsd9{word-spacing:11.533101px;}
.ws38{word-spacing:11.664010px;}
.ws6c{word-spacing:11.690192px;}
.wsc4{word-spacing:11.713522px;}
.ws10{word-spacing:11.751883px;}
.ws66{word-spacing:12.056737px;}
.ws110{word-spacing:12.187647px;}
.ws122{word-spacing:12.266192px;}
.ws118{word-spacing:12.318556px;}
.ws11{word-spacing:12.445280px;}
.ws13{word-spacing:12.505056px;}
.ws15c{word-spacing:12.672011px;}
.ws10a{word-spacing:12.711283px;}
.ws102{word-spacing:12.737465px;}
.ws4f{word-spacing:12.776738px;}
.wsba{word-spacing:12.802920px;}
.wscf{word-spacing:12.842193px;}
.ws152{word-spacing:12.933829px;}
.ws164{word-spacing:13.038556px;}
.wsfc{word-spacing:13.051647px;}
.wsd0{word-spacing:13.234920px;}
.ws54{word-spacing:13.431284px;}
.ws91{word-spacing:13.562193px;}
.ws50{word-spacing:13.693102px;}
.wse1{word-spacing:13.889466px;}
.ws96{word-spacing:14.014483px;}
.wsea{word-spacing:14.151285px;}
.wsf{word-spacing:14.238548px;}
.ws36{word-spacing:14.347648px;}
.ws12{word-spacing:14.382009px;}
.ws32{word-spacing:14.413103px;}
.ws1f{word-spacing:14.544012px;}
.ws109{word-spacing:14.701103px;}
.ws156{word-spacing:14.766558px;}
.ws13d{word-spacing:15.997104px;}
.wse9{word-spacing:16.272014px;}
.wsf1{word-spacing:16.376741px;}
.ws35{word-spacing:16.520741px;}
.ws14b{word-spacing:16.795650px;}
.ws55{word-spacing:19.793471px;}
.ws111{word-spacing:20.382562px;}
.ws149{word-spacing:22.343895px;}
.ws3{word-spacing:23.312640px;}
.wsce{word-spacing:26.613840px;}
.ws9f{word-spacing:33.748392px;}
.ws1b{word-spacing:39.639306px;}
.wse2{word-spacing:50.832042px;}
.ws158{word-spacing:54.029733px;}
.ws159{word-spacing:56.353824px;}
.ws42{word-spacing:58.281600px;}
.ws107{word-spacing:67.457511px;}
.ws112{word-spacing:67.522965px;}
.ws2e{word-spacing:69.937725px;}
.wsa3{word-spacing:118.881303px;}
.wsa1{word-spacing:260.734512px;}
.wsa2{word-spacing:262.174514px;}
.wsc3{word-spacing:461.293524px;}
.wsf2{word-spacing:539.908814px;}
.ws157{word-spacing:567.700837px;}
.wsac{word-spacing:794.069025px;}
.wsbd{word-spacing:861.534468px;}
.ws2d{word-spacing:2258.051688px;}
._a0{margin-left:-41.402455px;}
._1e{margin-left:-38.225486px;}
._2a{margin-left:-36.327303px;}
._16{margin-left:-34.625483px;}
._13{margin-left:-32.727300px;}
._31{margin-left:-30.829117px;}
._88{margin-left:-26.640022px;}
._23{margin-left:-15.709104px;}
._29{margin-left:-14.203648px;}
._15{margin-left:-10.865464px;}
._6{margin-left:-9.709486px;}
._42{margin-left:-7.557586px;}
._5{margin-left:-6.507421px;}
._0{margin-left:-5.432732px;}
._a{margin-left:-4.305012px;}
._4{margin-left:-3.202064px;}
._3{margin-left:-1.832729px;}
._1{width:1.767274px;}
._7{width:3.305357px;}
._45{width:4.546132px;}
._2b{width:6.087278px;}
._63{width:7.134551px;}
._24{width:8.312734px;}
._62{width:10.014554px;}
._39{width:12.518772px;}
._c{width:14.710342px;}
._9{width:16.622127px;}
._4b{width:18.392743px;}
._26{width:20.406844px;}
._1b{width:21.861836px;}
._10{width:23.592163px;}
._8{width:24.926425px;}
._43{width:26.181840px;}
._f{width:27.223892px;}
._44{width:28.407296px;}
._b{width:29.529146px;}
._41{width:30.536674px;}
._2f{width:31.727237px;}
._3c{width:33.081989px;}
._14{width:34.167301px;}
._d{width:35.845045px;}
._25{width:37.243667px;}
._37{width:38.794375px;}
._11{width:40.587632px;}
._3d{width:42.218217px;}
._3a{width:43.532531px;}
._78{width:44.785369px;}
._40{width:45.883675px;}
._3f{width:47.454585px;}
._36{width:48.567313px;}
._81{width:49.912095px;}
._2e{width:51.105710px;}
._1c{width:52.821862px;}
._e{width:54.727287px;}
._1f{width:56.683684px;}
._3e{width:59.281665px;}
._18{width:60.545505px;}
._17{width:62.116415px;}
._2d{width:63.122310px;}
._1a{width:66.894601px;}
._54{width:71.738242px;}
._4a{width:75.665908px;}
._56{width:78.872793px;}
._38{width:80.697600px;}
._97{width:83.871706px;}
._47{width:87.110551px;}
._92{width:92.394284px;}
._1d{width:94.909170px;}
._3b{width:96.836850px;}
._48{width:101.365652px;}
._65{width:103.287359px;}
._74{width:105.840088px;}
._6d{width:110.552819px;}
._93{width:121.623075px;}
._49{width:124.484217px;}
._99{width:125.834458px;}
._7a{width:133.854657px;}
._4e{width:141.774664px;}
._5a{width:144.302619px;}
._9e{width:149.021568px;}
._61{width:153.032855px;}
._67{width:159.774679px;}
._6c{width:161.411044px;}
._6b{width:165.076501px;}
._66{width:167.432867px;}
._70{width:172.407416px;}
._55{width:173.520145px;}
._9d{width:176.082163px;}
._84{width:177.905603px;}
._94{width:187.917811px;}
._5c{width:194.866826px;}
._4c{width:197.803801px;}
._4d{width:204.241907px;}
._9b{width:206.693453px;}
._7e{width:211.156540px;}
._4f{width:212.661995px;}
._9c{width:215.007230px;}
._98{width:218.561508px;}
._75{width:220.516547px;}
._51{width:222.676549px;}
._58{width:224.299482px;}
._85{width:226.080188px;}
._52{width:227.323826px;}
._77{width:237.071350px;}
._68{width:251.672937px;}
._95{width:256.295578px;}
._96{width:262.858982px;}
._9a{width:263.889664px;}
._76{width:277.723868px;}
._6e{width:286.102057px;}
._7f{width:290.618424px;}
._6f{width:293.891154px;}
._53{width:301.156615px;}
._87{width:306.327528px;}
._86{width:317.585719px;}
._80{width:326.094817px;}
._83{width:339.774829px;}
._7b{width:342.262103px;}
._7d{width:355.942115px;}
._5b{width:376.756678px;}
._71{width:378.458497px;}
._9f{width:381.997464px;}
._8f{width:388.603960px;}
._6a{width:394.363965px;}
._64{width:395.673057px;}
._82{width:401.367607px;}
._73{width:404.640337px;}
._60{width:409.811251px;}
._5e{width:428.596721px;}
._91{width:433.403494px;}
._69{width:454.124015px;}
._59{width:455.564016px;}
._7c{width:466.756753px;}
._72{width:468.654936px;}
._8e{width:487.309497px;}
._8d{width:512.836791px;}
._90{width:516.829522px;}
._50{width:523.881957px;}
._5d{width:531.164079px;}
._89{width:540.262268px;}
._8b{width:585.949579px;}
._79{width:622.211428px;}
._57{width:637.555220px;}
._5f{width:673.462379px;}
._46{width:677.146040px;}
._8c{width:742.255164px;}
._8a{width:802.015214px;}
._19{width:1035.949954px;}
._2{width:1316.815643px;}
._35{width:1380.988567px;}
._20{width:1411.266631px;}
._21{width:1572.470687px;}
._27{width:1598.657939px;}
._34{width:1621.206949px;}
._22{width:1769.723436px;}
._28{width:1953.361628px;}
._12{width:2156.906300px;}
._30{width:2161.807244px;}
._33{width:2174.145436px;}
._32{width:2190.862541px;}
._2c{width:2291.865534px;}
.fc5{color:rgb(255,128,0);}
.fc4{color:rgb(180,0,0);}
.fc3{color:rgb(0,80,160);}
.fc2{color:rgb(0,120,80);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:35.865600px;}
.fs5{font-size:41.842800px;}
.fs7{font-size:47.820600px;}
.fs4{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fs0{font-size:65.454600px;}
.fs2{font-size:71.731200px;}
.fs6{font-size:86.077200px;}
.fs1{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y2b{bottom:63.168000px;}
.y10c{bottom:108.000000px;}
.y2a{bottom:110.293500px;}
.y74{bottom:112.126500px;}
.yc1{bottom:121.431000px;}
.y10b{bottom:128.323500px;}
.y29{bottom:130.617000px;}
.y73{bottom:132.450000px;}
.y9d{bottom:137.775000px;}
.yc0{bottom:137.869500px;}
.y177{bottom:145.978500px;}
.y155{bottom:147.489000px;}
.y271{bottom:147.765000px;}
.y10a{bottom:148.647000px;}
.y28{bottom:150.942000px;}
.y72{bottom:152.773500px;}
.y9c{bottom:158.098500px;}
.ybf{bottom:160.021500px;}
.y222{bottom:164.706000px;}
.y154{bottom:167.812500px;}
.y270{bottom:168.090000px;}
.y109{bottom:168.972000px;}
.y27{bottom:171.265500px;}
.y249{bottom:171.564000px;}
.y12f{bottom:178.123500px;}
.y9b{bottom:178.422000px;}
.y71{bottom:183.666000px;}
.ybe{bottom:183.940500px;}
.y176{bottom:185.374500px;}
.y153{bottom:188.136000px;}
.y26f{bottom:188.413500px;}
.y108{bottom:189.295500px;}
.ye7{bottom:191.665500px;}
.y248{bottom:191.887500px;}
.y221{bottom:195.597000px;}
.y9a{bottom:198.745500px;}
.ybd{bottom:204.264000px;}
.y175{bottom:205.698000px;}
.y26{bottom:207.952500px;}
.y26e{bottom:208.737000px;}
.y12e{bottom:209.016000px;}
.y107{bottom:209.619000px;}
.ye6{bottom:211.989000px;}
.y247{bottom:212.211000px;}
.y152{bottom:219.028500px;}
.ybc{bottom:224.587500px;}
.y1d8{bottom:225.933000px;}
.y174{bottom:226.021500px;}
.y70{bottom:227.484000px;}
.y25{bottom:228.276000px;}
.y99{bottom:229.638000px;}
.y106{bottom:229.942500px;}
.y246{bottom:232.534500px;}
.y220{bottom:239.122500px;}
.y26d{bottom:239.629500px;}
.ybb{bottom:244.911000px;}
.ye5{bottom:245.763000px;}
.y173{bottom:246.345000px;}
.y6f{bottom:247.809000px;}
.y24{bottom:248.601000px;}
.y105{bottom:250.266000px;}
.y12d{bottom:252.835500px;}
.y245{bottom:252.858000px;}
.y200{bottom:257.377500px;}
.y21f{bottom:259.446000px;}
.y151{bottom:263.979000px;}
.yba{bottom:265.234500px;}
.y172{bottom:266.668500px;}
.y23{bottom:268.924500px;}
.y1d7{bottom:270.286500px;}
.y12c{bottom:273.159000px;}
.y244{bottom:273.183000px;}
.y98{bottom:273.457500px;}
.y104{bottom:275.629500px;}
.y1ff{bottom:277.701000px;}
.y21e{bottom:279.769500px;}
.y1b5{bottom:282.933000px;}
.y26c{bottom:283.447500px;}
.y6e{bottom:284.337000px;}
.yb9{bottom:285.559500px;}
.y103{bottom:286.854000px;}
.y171{bottom:286.993500px;}
.y22{bottom:289.248000px;}
.ye3{bottom:290.277000px;}
.y1d6{bottom:290.610000px;}
.ye4{bottom:290.769000px;}
.y12b{bottom:293.482500px;}
.y243{bottom:293.506500px;}
.y97{bottom:293.781000px;}
.y2b1{bottom:297.501000px;}
.y1fe{bottom:298.024500px;}
.y21d{bottom:300.093000px;}
.y4e{bottom:300.114000px;}
.y1b4{bottom:303.256500px;}
.y150{bottom:303.375000px;}
.y26b{bottom:303.772500px;}
.yb8{bottom:305.883000px;}
.y1d5{bottom:310.933500px;}
.y242{bottom:313.830000px;}
.y170{bottom:315.532500px;}
.y2b0{bottom:317.824500px;}
.y1fd{bottom:318.348000px;}
.y129{bottom:319.845000px;}
.y21c{bottom:320.418000px;}
.y1b3{bottom:323.580000px;}
.y14f{bottom:323.698500px;}
.y26a{bottom:324.096000px;}
.y21{bottom:325.935000px;}
.yb7{bottom:326.206500px;}
.y96{bottom:327.555000px;}
.y12a{bottom:328.516500px;}
.y102{bottom:332.400000px;}
.ye2{bottom:333.007500px;}
.y241{bottom:334.153500px;}
.y6d{bottom:335.895000px;}
.y4d{bottom:336.802500px;}
.y1fc{bottom:338.673000px;}
.y126{bottom:339.742500px;}
.y21b{bottom:340.741500px;}
.y1b2{bottom:343.903500px;}
.y14e{bottom:344.022000px;}
.y269{bottom:344.419500px;}
.y20{bottom:346.258500px;}
.yb6{bottom:346.530000px;}
.y194{bottom:346.854000px;}
.y95{bottom:347.878500px;}
.y1d4{bottom:349.276500px;}
.y2af{bottom:351.597000px;}
.ye1{bottom:353.331000px;}
.y240{bottom:354.477000px;}
.y128{bottom:355.287000px;}
.y6c{bottom:356.218500px;}
.y1fb{bottom:358.996500px;}
.y127{bottom:360.196500px;}
.y21a{bottom:361.065000px;}
.y101{bottom:363.291000px;}
.y1b1{bottom:364.227000px;}
.y14d{bottom:364.345500px;}
.y268{bottom:364.743000px;}
.y193{bottom:367.177500px;}
.y1d3{bottom:369.600000px;}
.y16f{bottom:371.919000px;}
.y2ae{bottom:371.920500px;}
.y4c{bottom:373.489500px;}
.y23f{bottom:374.802000px;}
.yb5{bottom:375.091500px;}
.y1fa{bottom:379.320000px;}
.y219{bottom:381.388500px;}
.y94{bottom:381.651000px;}
.y1f{bottom:382.947000px;}
.y1b0{bottom:384.552000px;}
.y14c{bottom:384.669000px;}
.y267{bottom:385.066500px;}
.yb4{bottom:386.316000px;}
.ye0{bottom:387.105000px;}
.y1d2{bottom:389.923500px;}
.y6b{bottom:389.992500px;}
.y125{bottom:391.005000px;}
.y2ad{bottom:392.245500px;}
.y23e{bottom:395.125500px;}
.y1f9{bottom:399.643500px;}
.y218{bottom:401.712000px;}
.y93{bottom:401.974500px;}
.y1e{bottom:403.270500px;}
.y192{bottom:404.611500px;}
.y1af{bottom:404.875500px;}
.y14b{bottom:404.994000px;}
.y266{bottom:405.391500px;}
.y100{bottom:406.629000px;}
.ydf{bottom:407.428500px;}
.y4b{bottom:410.176500px;}
.y1d1{bottom:410.247000px;}
.y6a{bottom:410.316000px;}
.y23d{bottom:415.449000px;}
.y1f8{bottom:419.967000px;}
.y16e{bottom:421.836000px;}
.y124{bottom:421.896000px;}
.y92{bottom:422.299500px;}
.y1d{bottom:423.594000px;}
.y1ae{bottom:425.199000px;}
.y265{bottom:425.715000px;}
.y2ac{bottom:426.018000px;}
.yff{bottom:426.954000px;}
.y1d0{bottom:430.572000px;}
.yb3{bottom:431.331000px;}
.y217{bottom:432.604500px;}
.y191{bottom:433.117500px;}
.y14a{bottom:433.533000px;}
.y1f7{bottom:440.292000px;}
.yde{bottom:441.202500px;}
.y16d{bottom:442.159500px;}
.y1c{bottom:443.917500px;}
.y69{bottom:444.088500px;}
.y1ad{bottom:445.522500px;}
.y264{bottom:446.038500px;}
.y2ab{bottom:446.341500px;}
.y4a{bottom:446.865000px;}
.yfe{bottom:447.277500px;}
.y1cf{bottom:450.895500px;}
.y190{bottom:453.441000px;}
.y91{bottom:460.555500px;}
.ydd{bottom:461.526000px;}
.yb2{bottom:462.223500px;}
.y23c{bottom:463.320000px;}
.y1b{bottom:464.241000px;}
.y68{bottom:464.413500px;}
.y123{bottom:465.715500px;}
.y1ac{bottom:465.846000px;}
.y263{bottom:466.362000px;}
.y49{bottom:467.188500px;}
.yfd{bottom:467.601000px;}
.y1f6{bottom:471.183000px;}
.y1ce{bottom:471.219000px;}
.y216{bottom:473.017500px;}
.y18f{bottom:473.764500px;}
.y2aa{bottom:480.115500px;}
.y16c{bottom:480.502500px;}
.y90{bottom:480.879000px;}
.y23b{bottom:483.643500px;}
.y122{bottom:486.039000px;}
.y1ab{bottom:486.169500px;}
.y262{bottom:486.685500px;}
.y48{bottom:487.512000px;}
.yfc{bottom:487.924500px;}
.y149{bottom:489.919500px;}
.y1cd{bottom:491.542500px;}
.y18e{bottom:494.088000px;}
.ydc{bottom:496.051500px;}
.y67{bottom:498.186000px;}
.y2a9{bottom:500.439000px;}
.y16b{bottom:500.826000px;}
.y1a{bottom:500.929500px;}
.y8f{bottom:501.202500px;}
.y23a{bottom:503.967000px;}
.yb1{bottom:506.043000px;}
.yda{bottom:507.277500px;}
.y47{bottom:507.835500px;}
.y1cc{bottom:511.866000px;}
.ydb{bottom:513.658500px;}
.yfb{bottom:513.957000px;}
.y18d{bottom:514.411500px;}
.y1f5{bottom:515.002500px;}
.y261{bottom:517.578000px;}
.y121{bottom:517.869000px;}
.yfa{bottom:518.094000px;}
.y66{bottom:518.509500px;}
.y16a{bottom:521.149500px;}
.y19{bottom:521.253000px;}
.y8e{bottom:521.527500px;}
.y27c{bottom:521.611500px;}
.y215{bottom:524.281500px;}
.y239{bottom:524.290500px;}
.yf9{bottom:525.583500px;}
.yb0{bottom:526.366500px;}
.y120{bottom:529.093500px;}
.y1aa{bottom:530.524500px;}
.y1cb{bottom:532.191000px;}
.y148{bottom:533.739000px;}
.y2a8{bottom:534.213000px;}
.y18c{bottom:534.736500px;}
.y1f4{bottom:535.326000px;}
.y65{bottom:538.834500px;}
.y18{bottom:541.576500px;}
.y8d{bottom:541.851000px;}
.y27b{bottom:541.935000px;}
.y46{bottom:544.522500px;}
.y214{bottom:544.605000px;}
.y238{bottom:544.615500px;}
.yaf{bottom:546.690000px;}
.y169{bottom:549.655500px;}
.y1a9{bottom:550.848000px;}
.y1ca{bottom:552.514500px;}
.y147{bottom:554.062500px;}
.yd9{bottom:554.173500px;}
.y2a7{bottom:554.536500px;}
.y18b{bottom:555.060000px;}
.y1f3{bottom:555.649500px;}
.y11f{bottom:560.946000px;}
.y260{bottom:561.397500px;}
.y8c{bottom:562.174500px;}
.y27a{bottom:562.258500px;}
.y45{bottom:564.847500px;}
.y213{bottom:564.930000px;}
.y237{bottom:564.939000px;}
.y168{bottom:569.979000px;}
.yf8{bottom:570.745500px;}
.y11e{bottom:572.172000px;}
.y1c9{bottom:572.838000px;}
.y146{bottom:574.387500px;}
.y1f2{bottom:575.974500px;}
.y64{bottom:577.090500px;}
.y25f{bottom:581.721000px;}
.y279{bottom:582.583500px;}
.yae{bottom:583.218000px;}
.y18a{bottom:583.564500px;}
.y44{bottom:585.171000px;}
.y212{bottom:585.253500px;}
.y236{bottom:585.262500px;}
.yd8{bottom:587.947500px;}
.y2a6{bottom:588.310500px;}
.y1a8{bottom:590.242500px;}
.y167{bottom:590.302500px;}
.y8b{bottom:593.067000px;}
.y17{bottom:594.468000px;}
.y145{bottom:594.711000px;}
.y1f1{bottom:596.298000px;}
.y1c8{bottom:598.071000px;}
.yf7{bottom:601.636500px;}
.y278{bottom:602.907000px;}
.y189{bottom:603.889500px;}
.y43{bottom:605.494500px;}
.y235{bottom:605.586000px;}
.y63{bottom:607.983000px;}
.yd7{bottom:608.271000px;}
.y2a5{bottom:608.634000px;}
.y1a7{bottom:610.566000px;}
.y166{bottom:610.626000px;}
.y25e{bottom:612.613500px;}
.y144{bottom:615.034500px;}
.y211{bottom:616.144500px;}
.y1f0{bottom:616.621500px;}
.y11d{bottom:616.629000px;}
.y1c7{bottom:618.394500px;}
.y293{bottom:622.839000px;}
.y42{bottom:625.818000px;}
.y234{bottom:625.909500px;}
.yd6{bottom:628.594500px;}
.y165{bottom:630.951000px;}
.y188{bottom:632.394000px;}
.yad{bottom:634.776000px;}
.y8a{bottom:636.885000px;}
.y1ef{bottom:636.945000px;}
.y1a6{bottom:639.106500px;}
.y2a4{bottom:642.406500px;}
.y292{bottom:643.162500px;}
.y1c6{bottom:643.627500px;}
.y143{bottom:645.927000px;}
.y16{bottom:646.027500px;}
.y233{bottom:646.234500px;}
.y277{bottom:647.260500px;}
.y11c{bottom:647.520000px;}
.yf6{bottom:649.365000px;}
.y62{bottom:651.801000px;}
.yac{bottom:655.101000px;}
.y25d{bottom:656.431500px;}
.y89{bottom:657.210000px;}
.y1ee{bottom:657.268500px;}
.y164{bottom:659.455500px;}
.yd5{bottom:659.487000px;}
.y210{bottom:659.670000px;}
.y41{bottom:662.506500px;}
.y2a3{bottom:662.730000px;}
.y291{bottom:663.487500px;}
.y1c5{bottom:663.951000px;}
.y15{bottom:663.960000px;}
.y232{bottom:666.558000px;}
.y61{bottom:672.126000px;}
.yab{bottom:675.424500px;}
.y25c{bottom:676.756500px;}
.y88{bottom:677.533500px;}
.y1ed{bottom:677.593500px;}
.y163{bottom:679.780500px;}
.y20f{bottom:679.993500px;}
.y1a5{bottom:681.829500px;}
.y14{bottom:681.892500px;}
.y40{bottom:682.830000px;}
.y290{bottom:683.811000px;}
.y1c4{bottom:684.274500px;}
.y187{bottom:685.111500px;}
.y142{bottom:686.340000px;}
.y276{bottom:686.655000px;}
.y11b{bottom:687.934500px;}
.yf5{bottom:690.012000px;}
.y60{bottom:692.449500px;}
.y2a2{bottom:696.504000px;}
.y25b{bottom:697.080000px;}
.y87{bottom:697.857000px;}
.y1ec{bottom:697.917000px;}
.y13{bottom:699.825000px;}
.y1a4{bottom:702.154500px;}
.y231{bottom:703.086000px;}
.y3f{bottom:703.153500px;}
.yd4{bottom:703.306500px;}
.y28f{bottom:704.134500px;}
.y1c3{bottom:704.599500px;}
.y275{bottom:706.980000px;}
.y162{bottom:708.285000px;}
.yaa{bottom:709.197000px;}
.yf4{bottom:710.337000px;}
.y20e{bottom:710.886000px;}
.y5f{bottom:712.773000px;}
.y2a1{bottom:716.827500px;}
.y12{bottom:717.757500px;}
.y86{bottom:718.180500px;}
.y1eb{bottom:718.240500px;}
.y3e{bottom:723.477000px;}
.yd3{bottom:723.630000px;}
.y28e{bottom:724.458000px;}
.y274{bottom:727.303500px;}
.y25a{bottom:727.971000px;}
.y186{bottom:728.929500px;}
.ya9{bottom:729.520500px;}
.y1a3{bottom:733.045500px;}
.y5e{bottom:733.096500px;}
.y1c2{bottom:733.104000px;}
.y11{bottom:735.690000px;}
.y141{bottom:737.898000px;}
.y85{bottom:738.504000px;}
.y1ea{bottom:738.564000px;}
.y11a{bottom:739.492500px;}
.yf3{bottom:741.228000px;}
.y3d{bottom:743.800500px;}
.yd2{bottom:743.953500px;}
.y28d{bottom:744.781500px;}
.y161{bottom:747.339000px;}
.y273{bottom:747.627000px;}
.y185{bottom:749.254500px;}
.y2a0{bottom:750.601500px;}
.y5d{bottom:753.420000px;}
.y10{bottom:753.624000px;}
.y20d{bottom:754.410000px;}
.y230{bottom:754.644000px;}
.y140{bottom:758.221500px;}
.y84{bottom:758.829000px;}
.y1e9{bottom:758.887500px;}
.y119{bottom:759.816000px;}
.ya8{bottom:763.294500px;}
.y3c{bottom:764.124000px;}
.y184{bottom:769.578000px;}
.y29f{bottom:770.925000px;}
.yf{bottom:771.556500px;}
.y259{bottom:771.790500px;}
.y1c1{bottom:773.067000px;}
.y20c{bottom:774.733500px;}
.y22f{bottom:774.967500px;}
.y272{bottom:776.166000px;}
.y1a2{bottom:777.997500px;}
.y160{bottom:778.231500px;}
.y13f{bottom:778.546500px;}
.y83{bottom:779.152500px;}
.y1e8{bottom:779.212500px;}
.y118{bottom:780.139500px;}
.yd1{bottom:781.440000px;}
.yf2{bottom:781.642500px;}
.ya7{bottom:783.618000px;}
.y3b{bottom:784.449000px;}
.y28c{bottom:789.136500px;}
.ye{bottom:789.489000px;}
.y183{bottom:789.901500px;}
.y258{bottom:792.114000px;}
.y20b{bottom:795.057000px;}
.y1a1{bottom:798.321000px;}
.y5c{bottom:798.465000px;}
.y13e{bottom:798.870000px;}
.y82{bottom:799.476000px;}
.y117{bottom:800.464500px;}
.yd0{bottom:801.763500px;}
.ya6{bottom:803.941500px;}
.y1c0{bottom:803.959500px;}
.y29e{bottom:804.699000px;}
.y3a{bottom:804.772500px;}
.yd{bottom:807.421500px;}
.y22e{bottom:808.741500px;}
.y28b{bottom:809.460000px;}
.y182{bottom:810.225000px;}
.y257{bottom:812.439000px;}
.y20a{bottom:815.382000px;}
.y15f{bottom:818.644500px;}
.y13d{bottom:819.193500px;}
.y81{bottom:819.799500px;}
.ycf{bottom:822.087000px;}
.y1e7{bottom:823.566000px;}
.y39{bottom:825.096000px;}
.yc{bottom:825.354000px;}
.y22d{bottom:829.065000px;}
.y28a{bottom:829.783500px;}
.y181{bottom:830.548500px;}
.yf1{bottom:832.719000px;}
.y256{bottom:832.762500px;}
.y116{bottom:834.237000px;}
.y209{bottom:835.705500px;}
.y1a0{bottom:836.664000px;}
.ya5{bottom:837.715500px;}
.y29d{bottom:838.471500px;}
.y13c{bottom:839.517000px;}
.y80{bottom:840.123000px;}
.y5b{bottom:841.852500px;}
.yce{bottom:842.410500px;}
.yb{bottom:843.286500px;}
.y1e6{bottom:843.889500px;}
.y38{bottom:845.419500px;}
.y1bf{bottom:847.779000px;}
.y115{bottom:848.917500px;}
.y180{bottom:850.873500px;}
.yf0{bottom:853.044000px;}
.y255{bottom:853.086000px;}
.y114{bottom:854.560500px;}
.y19f{bottom:856.987500px;}
.ya4{bottom:858.039000px;}
.y13b{bottom:859.840500px;}
.ya{bottom:861.220500px;}
.y5a{bottom:862.176000px;}
.ycd{bottom:862.734000px;}
.y22c{bottom:862.839000px;}
.y208{bottom:866.596500px;}
.y289{bottom:868.012500px;}
.y1be{bottom:868.102500px;}
.y15e{bottom:870.202500px;}
.y7f{bottom:871.015500px;}
.y17f{bottom:871.197000px;}
.y29c{bottom:872.245500px;}
.yef{bottom:873.367500px;}
.y254{bottom:873.409500px;}
.y1e5{bottom:878.140500px;}
.ya3{bottom:880.140000px;}
.y13a{bottom:880.164000px;}
.y37{bottom:882.108000px;}
.y22b{bottom:883.162500px;}
.y288{bottom:884.451000px;}
.ycc{bottom:885.256500px;}
.y19e{bottom:885.493500px;}
.y113{bottom:887.646000px;}
.y9{bottom:888.493500px;}
.y15d{bottom:890.526000px;}
.y17e{bottom:891.520500px;}
.y29b{bottom:892.569000px;}
.y59{bottom:893.067000px;}
.yee{bottom:893.691000px;}
.y1e4{bottom:898.465500px;}
.ya2{bottom:900.463500px;}
.y139{bottom:900.489000px;}
.y287{bottom:900.889500px;}
.y36{bottom:902.431500px;}
.y22a{bottom:903.486000px;}
.y253{bottom:904.302000px;}
.y19d{bottom:905.817000px;}
.y15c{bottom:910.851000px;}
.y207{bottom:910.923000px;}
.y1bd{bottom:912.456000px;}
.y7e{bottom:914.835000px;}
.y286{bottom:917.328000px;}
.y1e3{bottom:918.789000px;}
.y138{bottom:920.812500px;}
.y35{bottom:922.755000px;}
.y8{bottom:924.358500px;}
.ycb{bottom:924.499500px;}
.y19c{bottom:926.140500px;}
.y29a{bottom:926.341500px;}
.yed{bottom:928.887000px;}
.y15b{bottom:931.174500px;}
.y112{bottom:931.464000px;}
.y285{bottom:933.766500px;}
.ya1{bottom:934.237500px;}
.y229{bottom:934.378500px;}
.y7d{bottom:935.158500px;}
.y17d{bottom:935.874000px;}
.y58{bottom:936.886500px;}
.y1e2{bottom:939.112500px;}
.y34{bottom:943.078500px;}
.yca{bottom:944.823000px;}
.y19b{bottom:946.464000px;}
.y299{bottom:946.666500px;}
.y252{bottom:948.121500px;}
.y284{bottom:950.205000px;}
.y206{bottom:950.319000px;}
.y15a{bottom:951.498000px;}
.y111{bottom:951.789000px;}
.y1bc{bottom:951.850500px;}
.ya0{bottom:954.561000px;}
.y7c{bottom:955.482000px;}
.y17c{bottom:956.197500px;}
.y57{bottom:957.210000px;}
.yc9{bottom:959.398500px;}
.y1e1{bottom:959.436000px;}
.yec{bottom:961.641000px;}
.y251{bottom:962.802000px;}
.y33{bottom:963.402000px;}
.yc8{bottom:965.146500px;}
.y137{bottom:965.166000px;}
.y283{bottom:966.643500px;}
.y19a{bottom:966.789000px;}
.y250{bottom:968.445000px;}
.y205{bottom:970.642500px;}
.y159{bottom:971.821500px;}
.y110{bottom:972.112500px;}
.y1bb{bottom:972.174000px;}
.y7b{bottom:975.805500px;}
.y17b{bottom:976.522500px;}
.y7{bottom:977.409000px;}
.y56{bottom:977.535000px;}
.y228{bottom:978.196500px;}
.y1e0{bottom:979.759500px;}
.y298{bottom:980.439000px;}
.y282{bottom:983.080500px;}
.y32{bottom:983.727000px;}
.y9f{bottom:985.453500px;}
.y136{bottom:985.489500px;}
.y199{bottom:987.112500px;}
.yc7{bottom:987.573000px;}
.y24f{bottom:988.768500px;}
.y204{bottom:990.966000px;}
.y158{bottom:992.145000px;}
.y10f{bottom:992.436000px;}
.y1ba{bottom:992.499000px;}
.yeb{bottom:994.393500px;}
.y7a{bottom:996.130500px;}
.y55{bottom:997.858500px;}
.y227{bottom:998.521500px;}
.y281{bottom:999.519000px;}
.y1df{bottom:1000.083000px;}
.y297{bottom:1000.762500px;}
.y24e{bottom:1003.449000px;}
.y6{bottom:1005.915000px;}
.y198{bottom:1007.436000px;}
.yc6{bottom:1007.896500px;}
.y24d{bottom:1009.092000px;}
.y203{bottom:1011.289500px;}
.y157{bottom:1012.470000px;}
.y1b9{bottom:1012.822500px;}
.y17a{bottom:1015.917000px;}
.y280{bottom:1015.957500px;}
.y79{bottom:1016.454000px;}
.y54{bottom:1018.182000px;}
.y226{bottom:1018.845000px;}
.y1de{bottom:1020.408000px;}
.y31{bottom:1020.414000px;}
.y135{bottom:1024.885500px;}
.y24c{bottom:1025.283000px;}
.y9e{bottom:1025.866500px;}
.y10e{bottom:1026.208500px;}
.yea{bottom:1029.591000px;}
.y24b{bottom:1030.926000px;}
.yc5{bottom:1031.376000px;}
.y27f{bottom:1032.396000px;}
.y1b8{bottom:1033.146000px;}
.y5{bottom:1034.421000px;}
.y296{bottom:1034.536500px;}
.y197{bottom:1035.942000px;}
.y179{bottom:1036.240500px;}
.y78{bottom:1036.777500px;}
.y53{bottom:1038.505500px;}
.y225{bottom:1039.168500px;}
.y202{bottom:1039.830000px;}
.y1dd{bottom:1040.731500px;}
.y30{bottom:1040.737500px;}
.y156{bottom:1043.361000px;}
.y134{bottom:1045.209000px;}
.y10d{bottom:1046.533500px;}
.y1b7{bottom:1053.469500px;}
.yc4{bottom:1053.672000px;}
.y295{bottom:1054.860000px;}
.ye9{bottom:1055.632500px;}
.y196{bottom:1056.265500px;}
.y27e{bottom:1057.050000px;}
.y77{bottom:1057.101000px;}
.y52{bottom:1058.829000px;}
.y224{bottom:1059.492000px;}
.y1dc{bottom:1061.055000px;}
.y2f{bottom:1061.061000px;}
.y24a{bottom:1064.700000px;}
.y178{bottom:1064.779500px;}
.y133{bottom:1065.532500px;}
.ye8{bottom:1066.857000px;}
.y76{bottom:1077.424500px;}
.y51{bottom:1079.154000px;}
.y4{bottom:1079.290500px;}
.y223{bottom:1079.815500px;}
.y2e{bottom:1081.384500px;}
.y1b6{bottom:1082.010000px;}
.y195{bottom:1084.771500px;}
.y132{bottom:1085.856000px;}
.yc3{bottom:1087.180500px;}
.y1db{bottom:1089.561000px;}
.y294{bottom:1092.901500px;}
.y201{bottom:1095.591000px;}
.y75{bottom:1097.748000px;}
.y27d{bottom:1097.964000px;}
.y50{bottom:1099.477500px;}
.y3{bottom:1103.739000px;}
.y131{bottom:1106.179500px;}
.yc2{bottom:1107.504000px;}
.y1da{bottom:1109.884500px;}
.y2d{bottom:1118.073000px;}
.y130{bottom:1134.720000px;}
.y4f{bottom:1136.005500px;}
.y2{bottom:1136.902500px;}
.y1d9{bottom:1138.390500px;}
.y2c{bottom:1138.396500px;}
.y1{bottom:1195.900500px;}
.h1e{height:2.618184px;}
.hf{height:23.850624px;}
.h15{height:34.143908px;}
.h6{height:40.348800px;}
.h5{height:44.831700px;}
.h23{height:45.425492px;}
.h4{height:48.992410px;}
.h2{height:49.090950px;}
.h8{height:53.798400px;}
.h13{height:55.346184px;}
.hc{height:57.413702px;}
.h1b{height:57.891908px;}
.h22{height:57.897908px;}
.h20{height:59.913908px;}
.h1c{height:59.919908px;}
.ha{height:60.689702px;}
.h19{height:62.181870px;}
.h7{height:64.557900px;}
.hb{height:65.638950px;}
.h11{height:67.941908px;}
.h1d{height:71.662950px;}
.h12{height:72.082950px;}
.h3{height:77.469300px;}
.h21{height:78.212184px;}
.h9{height:91.706184px;}
.h17{height:93.370950px;}
.hd{height:93.376950px;}
.he{height:93.988950px;}
.h10{height:93.994950px;}
.h18{height:94.576950px;}
.h1a{height:94.910184px;}
.h14{height:102.341702px;}
.h16{height:139.808184px;}
.h1f{height:181.283702px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:108.000000px;}
.x2{left:123.349500px;}
.x45{left:124.363500px;}
.x32{left:125.511000px;}
.x15{left:126.655500px;}
.x10{left:127.999500px;}
.xc{left:132.546000px;}
.x34{left:141.847500px;}
.x3f{left:147.510000px;}
.xb{left:148.909500px;}
.x38{left:152.581500px;}
.x40{left:158.457000px;}
.x3e{left:161.889000px;}
.x44{left:164.622000px;}
.x35{left:166.440000px;}
.xa{left:171.325500px;}
.x3c{left:173.535000px;}
.x43{left:179.797500px;}
.x36{left:182.757832px;}
.x42{left:184.756500px;}
.x3{left:193.209000px;}
.x3d{left:217.278000px;}
.x19{left:219.424500px;}
.x3b{left:238.071000px;}
.x11{left:244.681500px;}
.x29{left:257.187000px;}
.x41{left:260.005500px;}
.x2f{left:263.674500px;}
.x18{left:271.728000px;}
.x37{left:285.267000px;}
.x12{left:295.830000px;}
.x16{left:300.015000px;}
.x17{left:301.744500px;}
.x33{left:310.434000px;}
.x8{left:324.235500px;}
.x1b{left:338.089500px;}
.x4{left:341.452500px;}
.x24{left:342.501000px;}
.x23{left:348.838500px;}
.x6{left:351.964500px;}
.x30{left:358.459500px;}
.xe{left:366.232500px;}
.x21{left:380.877000px;}
.x2b{left:384.352500px;}
.x2e{left:385.488000px;}
.x5{left:386.493000px;}
.x7{left:396.726000px;}
.x1e{left:405.246000px;}
.x3a{left:410.820000px;}
.x9{left:413.578500px;}
.x22{left:414.715500px;}
.x25{left:417.303000px;}
.x13{left:419.787000px;}
.xf{left:423.132000px;}
.x1f{left:442.260000px;}
.x14{left:456.264000px;}
.x2c{left:458.275500px;}
.x26{left:468.786000px;}
.x1d{left:491.826000px;}
.x28{left:497.572500px;}
.x27{left:501.357000px;}
.x1c{left:503.400000px;}
.x2a{left:552.192000px;}
.x31{left:553.843500px;}
.x1a{left:602.583000px;}
.x39{left:728.776500px;}
.xd{left:736.959000px;}
.x2d{left:755.823000px;}
.x20{left:764.004000px;}
@media print{
.v3{vertical-align:-131.952000pt;}
.v1a{vertical-align:-82.032000pt;}
.v12{vertical-align:-53.765333pt;}
.v11{vertical-align:-44.757333pt;}
.v9{vertical-align:-20.314667pt;}
.v6{vertical-align:-9.002667pt;}
.v1{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.ve{vertical-align:2.848000pt;}
.v16{vertical-align:8.730667pt;}
.vd{vertical-align:11.429333pt;}
.v5{vertical-align:14.709333pt;}
.v18{vertical-align:20.064000pt;}
.v7{vertical-align:21.109333pt;}
.v17{vertical-align:22.912000pt;}
.v4{vertical-align:24.021333pt;}
.vb{vertical-align:30.042667pt;}
.v14{vertical-align:30.954667pt;}
.v8{vertical-align:39.365333pt;}
.v13{vertical-align:40.432000pt;}
.vc{vertical-align:45.045333pt;}
.va{vertical-align:46.869333pt;}
.vf{vertical-align:61.045333pt;}
.v1c{vertical-align:70.746667pt;}
.v2{vertical-align:79.189333pt;}
.v15{vertical-align:82.037333pt;}
.v1b{vertical-align:94.768000pt;}
.v10{vertical-align:121.946667pt;}
.v1d{vertical-align:131.216000pt;}
.v19{vertical-align:152.778667pt;}
.lsb{letter-spacing:0.000000pt;}
.ls57{letter-spacing:0.000446pt;}
.ls80{letter-spacing:0.000615pt;}
.ls5f{letter-spacing:0.000833pt;}
.ls3e{letter-spacing:0.002384pt;}
.ls70{letter-spacing:0.002391pt;}
.ls8a{letter-spacing:0.002585pt;}
.ls0{letter-spacing:0.002644pt;}
.ls5c{letter-spacing:0.002879pt;}
.ls74{letter-spacing:0.002881pt;}
.ls83{letter-spacing:0.003180pt;}
.ls4d{letter-spacing:0.003851pt;}
.ls58{letter-spacing:0.004328pt;}
.ls52{letter-spacing:0.004670pt;}
.ls10{letter-spacing:0.006530pt;}
.ls1f{letter-spacing:0.008655pt;}
.ls9b{letter-spacing:0.009177pt;}
.ls34{letter-spacing:0.009438pt;}
.ls5d{letter-spacing:0.009612pt;}
.ls99{letter-spacing:0.010182pt;}
.ls61{letter-spacing:0.010336pt;}
.ls20{letter-spacing:0.010531pt;}
.ls56{letter-spacing:0.011157pt;}
.lsb4{letter-spacing:0.011794pt;}
.lsa0{letter-spacing:0.013148pt;}
.lsc4{letter-spacing:0.013492pt;}
.lsc7{letter-spacing:0.014545pt;}
.ls16{letter-spacing:0.015001pt;}
.ls92{letter-spacing:0.015030pt;}
.ls7b{letter-spacing:0.017831pt;}
.ls82{letter-spacing:0.020099pt;}
.ls93{letter-spacing:0.021397pt;}
.ls1d{letter-spacing:0.021786pt;}
.ls4e{letter-spacing:0.022204pt;}
.ls1b{letter-spacing:0.023596pt;}
.lsa5{letter-spacing:0.023754pt;}
.ls47{letter-spacing:0.023803pt;}
.ls8c{letter-spacing:0.024604pt;}
.ls6{letter-spacing:0.024787pt;}
.ls68{letter-spacing:0.024805pt;}
.lsad{letter-spacing:0.026103pt;}
.lsa8{letter-spacing:0.027581pt;}
.lsbb{letter-spacing:1.803638pt;}
.lsc5{letter-spacing:2.082853pt;}
.ls31{letter-spacing:2.094547pt;}
.lsb8{letter-spacing:2.380403pt;}
.ls11{letter-spacing:2.653258pt;}
.ls29{letter-spacing:2.656473pt;}
.ls49{letter-spacing:2.656853pt;}
.lsc6{letter-spacing:2.674081pt;}
.ls4f{letter-spacing:3.316366pt;}
.ls2d{letter-spacing:3.665458pt;}
.ls60{letter-spacing:4.538186pt;}
.ls95{letter-spacing:4.596367pt;}
.ls73{letter-spacing:4.712731pt;}
.ls43{letter-spacing:4.721414pt;}
.ls76{letter-spacing:4.930835pt;}
.ls32{letter-spacing:5.318279pt;}
.lsc2{letter-spacing:5.352732pt;}
.ls8d{letter-spacing:5.934383pt;}
.ls2f{letter-spacing:6.270379pt;}
.ls7c{letter-spacing:6.367818pt;}
.ls5b{letter-spacing:6.374277pt;}
.lsb7{letter-spacing:6.374283pt;}
.ls78{letter-spacing:6.574551pt;}
.ls54{letter-spacing:6.605496pt;}
.lsc1{letter-spacing:7.214551pt;}
.lsc9{letter-spacing:7.389097pt;}
.ls98{letter-spacing:8.087279pt;}
.ls53{letter-spacing:9.658190pt;}
.ls44{letter-spacing:9.694995pt;}
.lsf{letter-spacing:9.716372pt;}
.ls2e{letter-spacing:11.315856pt;}
.ls5a{letter-spacing:12.908070pt;}
.lse{letter-spacing:12.916374pt;}
.lsb6{letter-spacing:12.948466pt;}
.ls2c{letter-spacing:12.974556pt;}
.lsb3{letter-spacing:14.312739pt;}
.ls2b{letter-spacing:14.441882pt;}
.ls9{letter-spacing:14.718081pt;}
.lsb5{letter-spacing:14.720012pt;}
.ls59{letter-spacing:14.778194pt;}
.ls41{letter-spacing:15.586591pt;}
.ls77{letter-spacing:15.953223pt;}
.ls97{letter-spacing:16.000013pt;}
.ls33{letter-spacing:16.116377pt;}
.ls3f{letter-spacing:16.159477pt;}
.ls36{letter-spacing:16.161183pt;}
.ls1e{letter-spacing:16.174559pt;}
.lsd{letter-spacing:16.182695pt;}
.ls14{letter-spacing:16.232741pt;}
.ls55{letter-spacing:16.349105pt;}
.lsbc{letter-spacing:16.407286pt;}
.ls86{letter-spacing:16.640014pt;}
.lsc{letter-spacing:16.698196pt;}
.lsc3{letter-spacing:17.684933pt;}
.ls2a{letter-spacing:17.837158pt;}
.ls2{letter-spacing:17.959247pt;}
.ls64{letter-spacing:17.978197pt;}
.lsc0{letter-spacing:18.036379pt;}
.ls35{letter-spacing:18.269106pt;}
.ls6a{letter-spacing:18.327288pt;}
.ls3c{letter-spacing:18.443652pt;}
.ls3b{letter-spacing:18.501834pt;}
.lsa9{letter-spacing:18.560015pt;}
.ls4b{letter-spacing:18.816853pt;}
.ls8f{letter-spacing:18.850925pt;}
.lsac{letter-spacing:18.909107pt;}
.ls63{letter-spacing:19.200016pt;}
.ls42{letter-spacing:19.306144pt;}
.ls7e{letter-spacing:19.316380pt;}
.ls94{letter-spacing:19.374562pt;}
.ls51{letter-spacing:19.432743pt;}
.ls79{letter-spacing:19.549107pt;}
.lsb0{letter-spacing:19.607289pt;}
.ls9d{letter-spacing:19.781835pt;}
.ls66{letter-spacing:19.840017pt;}
.ls6d{letter-spacing:19.956380pt;}
.lscb{letter-spacing:20.072744pt;}
.ls21{letter-spacing:20.130926pt;}
.ls89{letter-spacing:20.189108pt;}
.ls37{letter-spacing:20.259856pt;}
.ls22{letter-spacing:20.305471pt;}
.ls25{letter-spacing:20.421835pt;}
.ls3d{letter-spacing:20.770926pt;}
.ls48{letter-spacing:20.829108pt;}
.ls38{letter-spacing:20.887290pt;}
.ls5{letter-spacing:20.934743pt;}
.ls13{letter-spacing:20.945472pt;}
.lsb1{letter-spacing:21.236381pt;}
.ls88{letter-spacing:21.818200pt;}
.ls90{letter-spacing:21.961049pt;}
.ls69{letter-spacing:22.089049pt;}
.ls71{letter-spacing:22.094383pt;}
.ls1{letter-spacing:22.209956pt;}
.ls96{letter-spacing:22.283655pt;}
.lsa3{letter-spacing:22.341837pt;}
.ls45{letter-spacing:22.458201pt;}
.ls91{letter-spacing:22.516382pt;}
.ls72{letter-spacing:22.532811pt;}
.lsae{letter-spacing:22.574383pt;}
.lsb2{letter-spacing:22.632746pt;}
.ls6f{letter-spacing:22.923655pt;}
.ls3a{letter-spacing:23.098201pt;}
.lsc8{letter-spacing:23.214565pt;}
.ls8{letter-spacing:23.432035pt;}
.ls4a{letter-spacing:23.472853pt;}
.lsab{letter-spacing:23.680020pt;}
.lsbf{letter-spacing:23.738202pt;}
.ls62{letter-spacing:23.970929pt;}
.ls26{letter-spacing:24.145475pt;}
.ls75{letter-spacing:24.203657pt;}
.ls46{letter-spacing:24.261838pt;}
.ls1a{letter-spacing:24.552748pt;}
.ls8e{letter-spacing:24.793049pt;}
.ls3{letter-spacing:24.866650pt;}
.ls19{letter-spacing:24.960021pt;}
.lsa4{letter-spacing:25.134566pt;}
.ls9c{letter-spacing:25.541839pt;}
.ls6b{letter-spacing:25.600021pt;}
.ls65{letter-spacing:25.658203pt;}
.ls39{letter-spacing:25.832749pt;}
.ls15{letter-spacing:25.890931pt;}
.ls1c{letter-spacing:26.356386pt;}
.lsa7{letter-spacing:26.414567pt;}
.ls17{letter-spacing:26.589113pt;}
.lsbd{letter-spacing:26.763659pt;}
.lsca{letter-spacing:27.170932pt;}
.ls28{letter-spacing:27.403659pt;}
.ls4{letter-spacing:27.417075pt;}
.ls67{letter-spacing:28.853878pt;}
.lsa{letter-spacing:29.090933pt;}
.lsaa{letter-spacing:29.149115pt;}
.lsaf{letter-spacing:29.339211pt;}
.ls9f{letter-spacing:29.672752pt;}
.ls9e{letter-spacing:29.730934pt;}
.ls27{letter-spacing:30.196389pt;}
.ls6e{letter-spacing:31.127299pt;}
.ls87{letter-spacing:31.767299pt;}
.ls9a{letter-spacing:32.085878pt;}
.lsa6{letter-spacing:32.323716pt;}
.lsa2{letter-spacing:32.349118pt;}
.ls6c{letter-spacing:32.698209pt;}
.ls8b{letter-spacing:32.853878pt;}
.ls23{letter-spacing:33.332759pt;}
.lsa1{letter-spacing:33.433049pt;}
.ls18{letter-spacing:33.745483pt;}
.lsbe{letter-spacing:34.967302pt;}
.ls7{letter-spacing:35.261197pt;}
.ls40{letter-spacing:35.551488pt;}
.ls7a{letter-spacing:50.938144pt;}
.ls30{letter-spacing:56.674591pt;}
.lsb9{letter-spacing:57.639925pt;}
.lsba{letter-spacing:60.866591pt;}
.ls84{letter-spacing:63.767326pt;}
.ls4c{letter-spacing:85.530144pt;}
.ls81{letter-spacing:111.534638pt;}
.ls5e{letter-spacing:183.282400pt;}
.ls85{letter-spacing:190.545613pt;}
.ls7f{letter-spacing:202.065623pt;}
.ls7d{letter-spacing:450.073661pt;}
.ls12{letter-spacing:843.811612pt;}
.ls50{letter-spacing:902.277664pt;}
.ls24{letter-spacing:1044.772807pt;}
.ws3b{word-spacing:-58.181867pt;}
.wse{word-spacing:-53.133867pt;}
.ws39{word-spacing:-46.062584pt;}
.ws142{word-spacing:-39.901124pt;}
.ws13f{word-spacing:-39.703306pt;}
.ws47{word-spacing:-38.749123pt;}
.ws3c{word-spacing:-37.899668pt;}
.ws1c{word-spacing:-35.712030pt;}
.ws21{word-spacing:-33.908392pt;}
.wsc6{word-spacing:-32.337481pt;}
.ws98{word-spacing:-32.063846pt;}
.ws25{word-spacing:-30.184752pt;}
.ws2c{word-spacing:-29.893843pt;}
.ws84{word-spacing:-29.521250pt;}
.ws2{word-spacing:-28.692333pt;}
.ws24{word-spacing:-28.439296pt;}
.wscb{word-spacing:-28.241478pt;}
.wsaa{word-spacing:-28.183296pt;}
.wsa4{word-spacing:-26.088749pt;}
.ws27{word-spacing:-26.053840pt;}
.ws9c{word-spacing:-24.983294pt;}
.ws1a{word-spacing:-23.910333pt;}
.wsd5{word-spacing:-23.144616pt;}
.ws3a{word-spacing:-22.888746pt;}
.ws28{word-spacing:-22.679292pt;}
.ws9e{word-spacing:-21.783291pt;}
.wsa0{word-spacing:-21.725109pt;}
.ws2a{word-spacing:-20.410199pt;}
.ws20{word-spacing:-20.352017pt;}
.ws29{word-spacing:-19.072016pt;}
.ws26{word-spacing:-19.013834pt;}
.ws5a{word-spacing:-18.583288pt;}
.wsf8{word-spacing:-16.896014pt;}
.ws9d{word-spacing:-16.162923pt;}
.wsdc{word-spacing:-14.976012pt;}
.ws1d{word-spacing:-14.882921pt;}
.wsd6{word-spacing:-14.871285pt;}
.wsb5{word-spacing:-13.934804pt;}
.wsc2{word-spacing:-12.543875pt;}
.ws9a{word-spacing:-12.469411pt;}
.wsab{word-spacing:-11.173750pt;}
.ws75{word-spacing:-10.570396pt;}
.ws13c{word-spacing:-8.608417pt;}
.ws83{word-spacing:-8.603084pt;}
.wsb7{word-spacing:-7.470804pt;}
.ws87{word-spacing:-6.056603pt;}
.ws77{word-spacing:-6.053063pt;}
.ws7f{word-spacing:-5.892115pt;}
.wsb6{word-spacing:-5.632005pt;}
.wsc0{word-spacing:-5.376417pt;}
.wsbe{word-spacing:-5.371084pt;}
.wsbf{word-spacing:-4.448417pt;}
.wsc7{word-spacing:-4.138902pt;}
.ws86{word-spacing:-3.973750pt;}
.ws7a{word-spacing:-3.598782pt;}
.ws9b{word-spacing:-3.246548pt;}
.wsf5{word-spacing:-2.641457pt;}
.ws126{word-spacing:-2.176002pt;}
.ws127{word-spacing:-1.908365pt;}
.ws52{word-spacing:-1.850183pt;}
.ws58{word-spacing:-1.442910pt;}
.ws9{word-spacing:-1.423988pt;}
.ws56{word-spacing:-1.384728pt;}
.ws8d{word-spacing:-1.361456pt;}
.ws162{word-spacing:-1.268365pt;}
.ws4b{word-spacing:-0.861092pt;}
.ws143{word-spacing:-0.663273pt;}
.ws115{word-spacing:-0.570182pt;}
.ws6f{word-spacing:-0.512000pt;}
.ws69{word-spacing:-0.488728pt;}
.ws6a{word-spacing:-0.453819pt;}
.ws61{word-spacing:-0.337455pt;}
.ws15b{word-spacing:-0.279273pt;}
.wsf6{word-spacing:-0.162909pt;}
.ws30{word-spacing:-0.104727pt;}
.wse3{word-spacing:-0.046545pt;}
.wsc{word-spacing:-0.037194pt;}
.wsa9{word-spacing:-0.023273pt;}
.ws23{word-spacing:0.000000pt;}
.ws59{word-spacing:0.011636pt;}
.ws8c{word-spacing:0.069818pt;}
.ws10d{word-spacing:0.093091pt;}
.ws74{word-spacing:0.128000pt;}
.ws114{word-spacing:0.186182pt;}
.ws146{word-spacing:0.209455pt;}
.ws45{word-spacing:0.244364pt;}
.ws15e{word-spacing:0.302546pt;}
.ws137{word-spacing:0.360728pt;}
.wsb1{word-spacing:0.418909pt;}
.ws120{word-spacing:0.477091pt;}
.wsb0{word-spacing:0.500364pt;}
.ws4d{word-spacing:0.593455pt;}
.ws49{word-spacing:0.651637pt;}
.ws134{word-spacing:0.709819pt;}
.ws8{word-spacing:0.754501pt;}
.ws7d{word-spacing:0.768001pt;}
.wsb9{word-spacing:0.791273pt;}
.ws33{word-spacing:0.826183pt;}
.ws7c{word-spacing:0.849455pt;}
.ws165{word-spacing:0.884364pt;}
.ws10f{word-spacing:0.942546pt;}
.ws10c{word-spacing:1.000728pt;}
.wsfa{word-spacing:1.058910pt;}
.ws128{word-spacing:1.082183pt;}
.ws41{word-spacing:1.117092pt;}
.ws130{word-spacing:1.175274pt;}
.ws10b{word-spacing:1.198546pt;}
.ws64{word-spacing:1.233456pt;}
.ws6b{word-spacing:1.291637pt;}
.ws12f{word-spacing:1.314910pt;}
.ws8a{word-spacing:1.349819pt;}
.ws90{word-spacing:1.373092pt;}
.ws95{word-spacing:1.408001pt;}
.ws8f{word-spacing:1.431274pt;}
.wsb4{word-spacing:1.524365pt;}
.ws12b{word-spacing:1.582547pt;}
.ws119{word-spacing:1.605820pt;}
.ws136{word-spacing:1.757092pt;}
.ws2b{word-spacing:1.780365pt;}
.ws117{word-spacing:1.815274pt;}
.ws113{word-spacing:1.873456pt;}
.ws121{word-spacing:2.048002pt;}
.ws138{word-spacing:2.071274pt;}
.wsd3{word-spacing:2.106184pt;}
.wsc9{word-spacing:2.164365pt;}
.ws5d{word-spacing:2.222547pt;}
.ws88{word-spacing:2.280729pt;}
.ws72{word-spacing:2.338911pt;}
.wsd2{word-spacing:2.362184pt;}
.wsa8{word-spacing:2.397093pt;}
.ws44{word-spacing:2.455275pt;}
.wsc8{word-spacing:2.478548pt;}
.ws147{word-spacing:2.629820pt;}
.ws62{word-spacing:2.641457pt;}
.ws124{word-spacing:2.688002pt;}
.ws15a{word-spacing:2.701875pt;}
.ws14a{word-spacing:2.711275pt;}
.ws19{word-spacing:2.720454pt;}
.ws92{word-spacing:2.746184pt;}
.ws99{word-spacing:2.749696pt;}
.ws161{word-spacing:2.816002pt;}
.ws5{word-spacing:2.932989pt;}
.wsc1{word-spacing:3.057353pt;}
.wse0{word-spacing:3.095275pt;}
.ws7{word-spacing:3.145525pt;}
.ws0{word-spacing:3.211639pt;}
.ws97{word-spacing:3.227904pt;}
.ws22{word-spacing:3.269821pt;}
.ws100{word-spacing:3.328003pt;}
.ws81{word-spacing:3.351276pt;}
.ws71{word-spacing:3.386185pt;}
.wsb2{word-spacing:3.397821pt;}
.wscd{word-spacing:3.456003pt;}
.wsd{word-spacing:3.485582pt;}
.wse5{word-spacing:3.502548pt;}
.wscc{word-spacing:3.508367pt;}
.wse7{word-spacing:3.560730pt;}
.ws79{word-spacing:3.566548pt;}
.wsfe{word-spacing:3.618912pt;}
.ws7e{word-spacing:3.630548pt;}
.ws140{word-spacing:3.642185pt;}
.ws17{word-spacing:3.676864pt;}
.ws129{word-spacing:3.677094pt;}
.ws1e{word-spacing:3.700367pt;}
.ws3f{word-spacing:3.735276pt;}
.wsff{word-spacing:3.758549pt;}
.wsa{word-spacing:3.783131pt;}
.ws12e{word-spacing:3.793458pt;}
.ws8e{word-spacing:3.851640pt;}
.ws14f{word-spacing:3.874912pt;}
.ws166{word-spacing:3.909821pt;}
.wsec{word-spacing:3.968003pt;}
.ws37{word-spacing:3.985067pt;}
.ws103{word-spacing:3.991276pt;}
.wsbb{word-spacing:4.084367pt;}
.ws73{word-spacing:4.142549pt;}
.ws11c{word-spacing:4.154185pt;}
.ws135{word-spacing:4.200731pt;}
.ws105{word-spacing:4.317095pt;}
.ws57{word-spacing:4.328731pt;}
.ws104{word-spacing:4.340367pt;}
.ws4{word-spacing:4.359773pt;}
.ws132{word-spacing:4.549822pt;}
.ws53{word-spacing:4.608004pt;}
.ws89{word-spacing:4.666186pt;}
.ws31{word-spacing:4.724368pt;}
.wsad{word-spacing:4.736004pt;}
.ws4c{word-spacing:4.782067pt;}
.wsbc{word-spacing:4.782549pt;}
.wsf0{word-spacing:4.840731pt;}
.wsb{word-spacing:4.845809pt;}
.wsd4{word-spacing:4.852368pt;}
.ws11d{word-spacing:4.898913pt;}
.wsca{word-spacing:4.968731pt;}
.ws6{word-spacing:5.006838pt;}
.ws3e{word-spacing:5.073459pt;}
.wsd7{word-spacing:5.085095pt;}
.wsdf{word-spacing:5.131641pt;}
.ws131{word-spacing:5.213095pt;}
.ws13a{word-spacing:5.248004pt;}
.ws4a{word-spacing:5.271277pt;}
.ws12a{word-spacing:5.306186pt;}
.ws153{word-spacing:5.364368pt;}
.ws67{word-spacing:5.422550pt;}
.ws68{word-spacing:5.480732pt;}
.wsef{word-spacing:5.562186pt;}
.wsed{word-spacing:5.597096pt;}
.ws11f{word-spacing:5.620368pt;}
.wseb{word-spacing:5.655277pt;}
.ws82{word-spacing:5.666914pt;}
.ws145{word-spacing:5.713459pt;}
.ws1{word-spacing:5.738467pt;}
.wse8{word-spacing:5.771641pt;}
.wsa7{word-spacing:5.829823pt;}
.ws78{word-spacing:5.899641pt;}
.ws76{word-spacing:5.957823pt;}
.ws48{word-spacing:6.027641pt;}
.ws12d{word-spacing:6.062551pt;}
.ws139{word-spacing:6.085823pt;}
.wsf4{word-spacing:6.120732pt;}
.ws151{word-spacing:6.144005pt;}
.wsee{word-spacing:6.178914pt;}
.ws40{word-spacing:6.237096pt;}
.wsae{word-spacing:6.353460pt;}
.wsde{word-spacing:6.528005pt;}
.ws144{word-spacing:6.609460pt;}
.ws14{word-spacing:6.652360pt;}
.wsd1{word-spacing:6.760733pt;}
.wsb3{word-spacing:6.818915pt;}
.ws7b{word-spacing:6.824733pt;}
.ws160{word-spacing:6.830551pt;}
.ws43{word-spacing:6.900369pt;}
.ws15f{word-spacing:6.935279pt;}
.ws12c{word-spacing:6.958551pt;}
.wsaf{word-spacing:6.993460pt;}
.wsa5{word-spacing:7.051642pt;}
.ws155{word-spacing:7.074915pt;}
.ws51{word-spacing:7.109824pt;}
.ws18{word-spacing:7.130565pt;}
.ws101{word-spacing:7.168006pt;}
.ws14d{word-spacing:7.226188pt;}
.wsf7{word-spacing:7.249461pt;}
.wsda{word-spacing:7.284370pt;}
.wsf9{word-spacing:7.307642pt;}
.wsdd{word-spacing:7.342552pt;}
.ws46{word-spacing:7.365824pt;}
.ws163{word-spacing:7.412370pt;}
.ws11e{word-spacing:7.470552pt;}
.ws150{word-spacing:7.540370pt;}
.ws63{word-spacing:7.575279pt;}
.ws5c{word-spacing:7.633461pt;}
.ws13b{word-spacing:7.749825pt;}
.ws3d{word-spacing:7.808007pt;}
.ws154{word-spacing:7.819643pt;}
.ws108{word-spacing:7.866188pt;}
.wsf3{word-spacing:8.040734pt;}
.ws4e{word-spacing:8.098916pt;}
.wsa6{word-spacing:8.122189pt;}
.ws15{word-spacing:8.140108pt;}
.ws65{word-spacing:8.157098pt;}
.ws16{word-spacing:8.193242pt;}
.ws5f{word-spacing:8.215280pt;}
.ws106{word-spacing:8.226916pt;}
.ws148{word-spacing:8.238552pt;}
.wsdb{word-spacing:8.331643pt;}
.ws6e{word-spacing:8.389825pt;}
.ws15d{word-spacing:8.413098pt;}
.ws5e{word-spacing:8.506189pt;}
.ws85{word-spacing:8.564371pt;}
.ws2f{word-spacing:8.680735pt;}
.ws11a{word-spacing:8.692371pt;}
.ws5b{word-spacing:8.738916pt;}
.ws123{word-spacing:8.913462pt;}
.ws10e{word-spacing:8.925098pt;}
.ws141{word-spacing:8.936735pt;}
.ws8b{word-spacing:8.971644pt;}
.ws34{word-spacing:9.029826pt;}
.ws80{word-spacing:9.041462pt;}
.ws125{word-spacing:9.088008pt;}
.ws116{word-spacing:9.204371pt;}
.wse6{word-spacing:9.216008pt;}
.ws60{word-spacing:9.262553pt;}
.ws11b{word-spacing:9.320735pt;}
.wsfd{word-spacing:9.378917pt;}
.wse4{word-spacing:9.437099pt;}
.ws14c{word-spacing:9.448735pt;}
.ws70{word-spacing:9.495281pt;}
.wsc5{word-spacing:9.523147pt;}
.ws133{word-spacing:9.611644pt;}
.ws13e{word-spacing:9.611904pt;}
.ws14e{word-spacing:9.623281pt;}
.ws6d{word-spacing:9.634917pt;}
.wsfb{word-spacing:9.669826pt;}
.wsb8{word-spacing:9.728008pt;}
.ws93{word-spacing:9.786190pt;}
.ws94{word-spacing:9.844372pt;}
.wsd8{word-spacing:10.193463pt;}
.wsd9{word-spacing:10.251645pt;}
.ws38{word-spacing:10.368009pt;}
.ws6c{word-spacing:10.391281pt;}
.wsc4{word-spacing:10.412020pt;}
.ws10{word-spacing:10.446118pt;}
.ws66{word-spacing:10.717100pt;}
.ws110{word-spacing:10.833464pt;}
.ws122{word-spacing:10.903282pt;}
.ws118{word-spacing:10.949827pt;}
.ws11{word-spacing:11.062471pt;}
.ws13{word-spacing:11.115605pt;}
.ws15c{word-spacing:11.264009pt;}
.ws10a{word-spacing:11.298919pt;}
.ws102{word-spacing:11.322191pt;}
.ws4f{word-spacing:11.357100pt;}
.wsba{word-spacing:11.380373pt;}
.wscf{word-spacing:11.415282pt;}
.ws152{word-spacing:11.496737pt;}
.ws164{word-spacing:11.589828pt;}
.wsfc{word-spacing:11.601464pt;}
.wsd0{word-spacing:11.764373pt;}
.ws54{word-spacing:11.938919pt;}
.ws91{word-spacing:12.055283pt;}
.ws50{word-spacing:12.171647pt;}
.wse1{word-spacing:12.346192pt;}
.ws96{word-spacing:12.457318pt;}
.wsea{word-spacing:12.578920pt;}
.wsf{word-spacing:12.656487pt;}
.ws36{word-spacing:12.753465pt;}
.ws12{word-spacing:12.784008pt;}
.ws32{word-spacing:12.811647pt;}
.ws1f{word-spacing:12.928011pt;}
.ws109{word-spacing:13.067647pt;}
.ws156{word-spacing:13.125829pt;}
.ws13d{word-spacing:14.219648pt;}
.wse9{word-spacing:14.464012pt;}
.wsf1{word-spacing:14.557103pt;}
.ws35{word-spacing:14.685103pt;}
.ws14b{word-spacing:14.929467pt;}
.ws55{word-spacing:17.594196pt;}
.ws111{word-spacing:18.117833pt;}
.ws149{word-spacing:19.861240pt;}
.ws3{word-spacing:20.722347pt;}
.wsce{word-spacing:23.656747pt;}
.ws9f{word-spacing:29.998570pt;}
.ws1b{word-spacing:35.234938pt;}
.wse2{word-spacing:45.184038pt;}
.ws158{word-spacing:48.026429pt;}
.ws159{word-spacing:50.092288pt;}
.ws42{word-spacing:51.805867pt;}
.ws107{word-spacing:59.962232pt;}
.ws112{word-spacing:60.020414pt;}
.ws2e{word-spacing:62.166867pt;}
.wsa3{word-spacing:105.672270pt;}
.wsa1{word-spacing:231.764011pt;}
.wsa2{word-spacing:233.044012pt;}
.wsc3{word-spacing:410.038688pt;}
.wsf2{word-spacing:479.918945pt;}
.ws157{word-spacing:504.622966pt;}
.wsac{word-spacing:705.839134pt;}
.wsbd{word-spacing:765.808416pt;}
.ws2d{word-spacing:2007.157056pt;}
._a0{margin-left:-36.802182pt;}
._1e{margin-left:-33.978210pt;}
._2a{margin-left:-32.290936pt;}
._16{margin-left:-30.778207pt;}
._13{margin-left:-29.090933pt;}
._31{margin-left:-27.403659pt;}
._88{margin-left:-23.680020pt;}
._23{margin-left:-13.963648pt;}
._29{margin-left:-12.625465pt;}
._15{margin-left:-9.658190pt;}
._6{margin-left:-8.630654pt;}
._42{margin-left:-6.717854pt;}
._5{margin-left:-5.784374pt;}
._0{margin-left:-4.829095pt;}
._a{margin-left:-3.826677pt;}
._4{margin-left:-2.846279pt;}
._3{margin-left:-1.629092pt;}
._1{width:1.570910pt;}
._7{width:2.938095pt;}
._45{width:4.041006pt;}
._2b{width:5.410914pt;}
._63{width:6.341823pt;}
._24{width:7.389097pt;}
._62{width:8.901826pt;}
._39{width:11.127797pt;}
._c{width:13.075859pt;}
._9{width:14.775224pt;}
._4b{width:16.349105pt;}
._26{width:18.139417pt;}
._1b{width:19.432743pt;}
._10{width:20.970812pt;}
._8{width:22.156822pt;}
._43{width:23.272747pt;}
._f{width:24.199015pt;}
._44{width:25.250930pt;}
._b{width:26.248130pt;}
._41{width:27.143710pt;}
._2f{width:28.201989pt;}
._3c{width:29.406212pt;}
._14{width:30.370934pt;}
._d{width:31.862262pt;}
._25{width:33.105482pt;}
._37{width:34.483889pt;}
._11{width:36.077895pt;}
._3d{width:37.527304pt;}
._3a{width:38.695583pt;}
._78{width:39.809217pt;}
._40{width:40.785489pt;}
._3f{width:42.181853pt;}
._36{width:43.170945pt;}
._81{width:44.366307pt;}
._2e{width:45.427298pt;}
._1c{width:46.952766pt;}
._e{width:48.646477pt;}
._1f{width:50.385497pt;}
._3e{width:52.694813pt;}
._18{width:53.818227pt;}
._17{width:55.214591pt;}
._2d{width:56.108720pt;}
._1a{width:59.461868pt;}
._54{width:63.767326pt;}
._4a{width:67.258585pt;}
._56{width:70.109149pt;}
._38{width:71.731200pt;}
._97{width:74.552627pt;}
._47{width:77.431601pt;}
._92{width:82.128253pt;}
._1d{width:84.363707pt;}
._3b{width:86.077200pt;}
._48{width:90.102802pt;}
._65{width:91.810986pt;}
._74{width:94.080078pt;}
._6d{width:98.269173pt;}
._93{width:108.109400pt;}
._49{width:110.652637pt;}
._99{width:111.852851pt;}
._7a{width:118.981917pt;}
._4e{width:126.021923pt;}
._5a{width:128.268995pt;}
._9e{width:132.463616pt;}
._61{width:136.029204pt;}
._67{width:142.021937pt;}
._6c{width:143.476483pt;}
._6b{width:146.734668pt;}
._66{width:148.829215pt;}
._70{width:153.251037pt;}
._55{width:154.240129pt;}
._9d{width:156.517478pt;}
._84{width:158.138314pt;}
._94{width:167.038054pt;}
._5c{width:173.214957pt;}
._4c{width:175.825601pt;}
._4d{width:181.548362pt;}
._9b{width:183.727514pt;}
._7e{width:187.694702pt;}
._4f{width:189.032885pt;}
._9c{width:191.117538pt;}
._98{width:194.276896pt;}
._75{width:196.014709pt;}
._51{width:197.934710pt;}
._58{width:199.377317pt;}
._85{width:200.960167pt;}
._52{width:202.065623pt;}
._77{width:210.730089pt;}
._68{width:223.709277pt;}
._95{width:227.818291pt;}
._96{width:233.652429pt;}
._9a{width:234.568590pt;}
._76{width:246.865660pt;}
._6e{width:254.312939pt;}
._7f{width:258.327488pt;}
._6f{width:261.236581pt;}
._53{width:267.694769pt;}
._87{width:272.291136pt;}
._86{width:282.298417pt;}
._80{width:289.862060pt;}
._83{width:302.022070pt;}
._7b{width:304.232981pt;}
._7d{width:316.392991pt;}
._5b{width:334.894825pt;}
._71{width:336.407553pt;}
._9f{width:339.553301pt;}
._8f{width:345.425742pt;}
._6a{width:350.545747pt;}
._64{width:351.709384pt;}
._82{width:356.771206pt;}
._73{width:359.680300pt;}
._60{width:364.276667pt;}
._5e{width:380.974863pt;}
._91{width:385.247550pt;}
._69{width:403.665791pt;}
._59{width:404.945792pt;}
._7c{width:414.894891pt;}
._72{width:416.582165pt;}
._8e{width:433.163997pt;}
._8d{width:455.854925pt;}
._90{width:459.404019pt;}
._50{width:465.672851pt;}
._5d{width:472.145848pt;}
._89{width:480.233127pt;}
._8b{width:520.844070pt;}
._79{width:553.076825pt;}
._57{width:566.715751pt;}
._5f{width:598.633226pt;}
._46{width:601.907591pt;}
._8c{width:659.782368pt;}
._8a{width:712.902412pt;}
._19{width:920.844404pt;}
._2{width:1170.502794pt;}
._35{width:1227.545393pt;}
._20{width:1254.459227pt;}
._21{width:1397.751722pt;}
._27{width:1421.029279pt;}
._34{width:1441.072843pt;}
._22{width:1573.087499pt;}
._28{width:1736.321447pt;}
._12{width:1917.250044pt;}
._30{width:1921.606439pt;}
._33{width:1932.573721pt;}
._32{width:1947.433370pt;}
._2c{width:2037.213808pt;}
.fs8{font-size:31.880533pt;}
.fs5{font-size:37.193600pt;}
.fs7{font-size:42.507200pt;}
.fs4{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fs0{font-size:58.181867pt;}
.fs2{font-size:63.761067pt;}
.fs6{font-size:76.513067pt;}
.fs1{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y2b{bottom:56.149333pt;}
.y10c{bottom:96.000000pt;}
.y2a{bottom:98.038667pt;}
.y74{bottom:99.668000pt;}
.yc1{bottom:107.938667pt;}
.y10b{bottom:114.065333pt;}
.y29{bottom:116.104000pt;}
.y73{bottom:117.733333pt;}
.y9d{bottom:122.466667pt;}
.yc0{bottom:122.550667pt;}
.y177{bottom:129.758667pt;}
.y155{bottom:131.101333pt;}
.y271{bottom:131.346667pt;}
.y10a{bottom:132.130667pt;}
.y28{bottom:134.170667pt;}
.y72{bottom:135.798667pt;}
.y9c{bottom:140.532000pt;}
.ybf{bottom:142.241333pt;}
.y222{bottom:146.405333pt;}
.y154{bottom:149.166667pt;}
.y270{bottom:149.413333pt;}
.y109{bottom:150.197333pt;}
.y27{bottom:152.236000pt;}
.y249{bottom:152.501333pt;}
.y12f{bottom:158.332000pt;}
.y9b{bottom:158.597333pt;}
.y71{bottom:163.258667pt;}
.ybe{bottom:163.502667pt;}
.y176{bottom:164.777333pt;}
.y153{bottom:167.232000pt;}
.y26f{bottom:167.478667pt;}
.y108{bottom:168.262667pt;}
.ye7{bottom:170.369333pt;}
.y248{bottom:170.566667pt;}
.y221{bottom:173.864000pt;}
.y9a{bottom:176.662667pt;}
.ybd{bottom:181.568000pt;}
.y175{bottom:182.842667pt;}
.y26{bottom:184.846667pt;}
.y26e{bottom:185.544000pt;}
.y12e{bottom:185.792000pt;}
.y107{bottom:186.328000pt;}
.ye6{bottom:188.434667pt;}
.y247{bottom:188.632000pt;}
.y152{bottom:194.692000pt;}
.ybc{bottom:199.633333pt;}
.y1d8{bottom:200.829333pt;}
.y174{bottom:200.908000pt;}
.y70{bottom:202.208000pt;}
.y25{bottom:202.912000pt;}
.y99{bottom:204.122667pt;}
.y106{bottom:204.393333pt;}
.y246{bottom:206.697333pt;}
.y220{bottom:212.553333pt;}
.y26d{bottom:213.004000pt;}
.ybb{bottom:217.698667pt;}
.ye5{bottom:218.456000pt;}
.y173{bottom:218.973333pt;}
.y6f{bottom:220.274667pt;}
.y24{bottom:220.978667pt;}
.y105{bottom:222.458667pt;}
.y12d{bottom:224.742667pt;}
.y245{bottom:224.762667pt;}
.y200{bottom:228.780000pt;}
.y21f{bottom:230.618667pt;}
.y151{bottom:234.648000pt;}
.yba{bottom:235.764000pt;}
.y172{bottom:237.038667pt;}
.y23{bottom:239.044000pt;}
.y1d7{bottom:240.254667pt;}
.y12c{bottom:242.808000pt;}
.y244{bottom:242.829333pt;}
.y98{bottom:243.073333pt;}
.y104{bottom:245.004000pt;}
.y1ff{bottom:246.845333pt;}
.y21e{bottom:248.684000pt;}
.y1b5{bottom:251.496000pt;}
.y26c{bottom:251.953333pt;}
.y6e{bottom:252.744000pt;}
.yb9{bottom:253.830667pt;}
.y103{bottom:254.981333pt;}
.y171{bottom:255.105333pt;}
.y22{bottom:257.109333pt;}
.ye3{bottom:258.024000pt;}
.y1d6{bottom:258.320000pt;}
.ye4{bottom:258.461333pt;}
.y12b{bottom:260.873333pt;}
.y243{bottom:260.894667pt;}
.y97{bottom:261.138667pt;}
.y2b1{bottom:264.445333pt;}
.y1fe{bottom:264.910667pt;}
.y21d{bottom:266.749333pt;}
.y4e{bottom:266.768000pt;}
.y1b4{bottom:269.561333pt;}
.y150{bottom:269.666667pt;}
.y26b{bottom:270.020000pt;}
.yb8{bottom:271.896000pt;}
.y1d5{bottom:276.385333pt;}
.y242{bottom:278.960000pt;}
.y170{bottom:280.473333pt;}
.y2b0{bottom:282.510667pt;}
.y1fd{bottom:282.976000pt;}
.y129{bottom:284.306667pt;}
.y21c{bottom:284.816000pt;}
.y1b3{bottom:287.626667pt;}
.y14f{bottom:287.732000pt;}
.y26a{bottom:288.085333pt;}
.y21{bottom:289.720000pt;}
.yb7{bottom:289.961333pt;}
.y96{bottom:291.160000pt;}
.y12a{bottom:292.014667pt;}
.y102{bottom:295.466667pt;}
.ye2{bottom:296.006667pt;}
.y241{bottom:297.025333pt;}
.y6d{bottom:298.573333pt;}
.y4d{bottom:299.380000pt;}
.y1fc{bottom:301.042667pt;}
.y126{bottom:301.993333pt;}
.y21b{bottom:302.881333pt;}
.y1b2{bottom:305.692000pt;}
.y14e{bottom:305.797333pt;}
.y269{bottom:306.150667pt;}
.y20{bottom:307.785333pt;}
.yb6{bottom:308.026667pt;}
.y194{bottom:308.314667pt;}
.y95{bottom:309.225333pt;}
.y1d4{bottom:310.468000pt;}
.y2af{bottom:312.530667pt;}
.ye1{bottom:314.072000pt;}
.y240{bottom:315.090667pt;}
.y128{bottom:315.810667pt;}
.y6c{bottom:316.638667pt;}
.y1fb{bottom:319.108000pt;}
.y127{bottom:320.174667pt;}
.y21a{bottom:320.946667pt;}
.y101{bottom:322.925333pt;}
.y1b1{bottom:323.757333pt;}
.y14d{bottom:323.862667pt;}
.y268{bottom:324.216000pt;}
.y193{bottom:326.380000pt;}
.y1d3{bottom:328.533333pt;}
.y16f{bottom:330.594667pt;}
.y2ae{bottom:330.596000pt;}
.y4c{bottom:331.990667pt;}
.y23f{bottom:333.157333pt;}
.yb5{bottom:333.414667pt;}
.y1fa{bottom:337.173333pt;}
.y219{bottom:339.012000pt;}
.y94{bottom:339.245333pt;}
.y1f{bottom:340.397333pt;}
.y1b0{bottom:341.824000pt;}
.y14c{bottom:341.928000pt;}
.y267{bottom:342.281333pt;}
.yb4{bottom:343.392000pt;}
.ye0{bottom:344.093333pt;}
.y1d2{bottom:346.598667pt;}
.y6b{bottom:346.660000pt;}
.y125{bottom:347.560000pt;}
.y2ad{bottom:348.662667pt;}
.y23e{bottom:351.222667pt;}
.y1f9{bottom:355.238667pt;}
.y218{bottom:357.077333pt;}
.y93{bottom:357.310667pt;}
.y1e{bottom:358.462667pt;}
.y192{bottom:359.654667pt;}
.y1af{bottom:359.889333pt;}
.y14b{bottom:359.994667pt;}
.y266{bottom:360.348000pt;}
.y100{bottom:361.448000pt;}
.ydf{bottom:362.158667pt;}
.y4b{bottom:364.601333pt;}
.y1d1{bottom:364.664000pt;}
.y6a{bottom:364.725333pt;}
.y23d{bottom:369.288000pt;}
.y1f8{bottom:373.304000pt;}
.y16e{bottom:374.965333pt;}
.y124{bottom:375.018667pt;}
.y92{bottom:375.377333pt;}
.y1d{bottom:376.528000pt;}
.y1ae{bottom:377.954667pt;}
.y265{bottom:378.413333pt;}
.y2ac{bottom:378.682667pt;}
.yff{bottom:379.514667pt;}
.y1d0{bottom:382.730667pt;}
.yb3{bottom:383.405333pt;}
.y217{bottom:384.537333pt;}
.y191{bottom:384.993333pt;}
.y14a{bottom:385.362667pt;}
.y1f7{bottom:391.370667pt;}
.yde{bottom:392.180000pt;}
.y16d{bottom:393.030667pt;}
.y1c{bottom:394.593333pt;}
.y69{bottom:394.745333pt;}
.y1ad{bottom:396.020000pt;}
.y264{bottom:396.478667pt;}
.y2ab{bottom:396.748000pt;}
.y4a{bottom:397.213333pt;}
.yfe{bottom:397.580000pt;}
.y1cf{bottom:400.796000pt;}
.y190{bottom:403.058667pt;}
.y91{bottom:409.382667pt;}
.ydd{bottom:410.245333pt;}
.yb2{bottom:410.865333pt;}
.y23c{bottom:411.840000pt;}
.y1b{bottom:412.658667pt;}
.y68{bottom:412.812000pt;}
.y123{bottom:413.969333pt;}
.y1ac{bottom:414.085333pt;}
.y263{bottom:414.544000pt;}
.y49{bottom:415.278667pt;}
.yfd{bottom:415.645333pt;}
.y1f6{bottom:418.829333pt;}
.y1ce{bottom:418.861333pt;}
.y216{bottom:420.460000pt;}
.y18f{bottom:421.124000pt;}
.y2aa{bottom:426.769333pt;}
.y16c{bottom:427.113333pt;}
.y90{bottom:427.448000pt;}
.y23b{bottom:429.905333pt;}
.y122{bottom:432.034667pt;}
.y1ab{bottom:432.150667pt;}
.y262{bottom:432.609333pt;}
.y48{bottom:433.344000pt;}
.yfc{bottom:433.710667pt;}
.y149{bottom:435.484000pt;}
.y1cd{bottom:436.926667pt;}
.y18e{bottom:439.189333pt;}
.ydc{bottom:440.934667pt;}
.y67{bottom:442.832000pt;}
.y2a9{bottom:444.834667pt;}
.y16b{bottom:445.178667pt;}
.y1a{bottom:445.270667pt;}
.y8f{bottom:445.513333pt;}
.y23a{bottom:447.970667pt;}
.yb1{bottom:449.816000pt;}
.yda{bottom:450.913333pt;}
.y47{bottom:451.409333pt;}
.y1cc{bottom:454.992000pt;}
.ydb{bottom:456.585333pt;}
.yfb{bottom:456.850667pt;}
.y18d{bottom:457.254667pt;}
.y1f5{bottom:457.780000pt;}
.y261{bottom:460.069333pt;}
.y121{bottom:460.328000pt;}
.yfa{bottom:460.528000pt;}
.y66{bottom:460.897333pt;}
.y16a{bottom:463.244000pt;}
.y19{bottom:463.336000pt;}
.y8e{bottom:463.580000pt;}
.y27c{bottom:463.654667pt;}
.y215{bottom:466.028000pt;}
.y239{bottom:466.036000pt;}
.yf9{bottom:467.185333pt;}
.yb0{bottom:467.881333pt;}
.y120{bottom:470.305333pt;}
.y1aa{bottom:471.577333pt;}
.y1cb{bottom:473.058667pt;}
.y148{bottom:474.434667pt;}
.y2a8{bottom:474.856000pt;}
.y18c{bottom:475.321333pt;}
.y1f4{bottom:475.845333pt;}
.y65{bottom:478.964000pt;}
.y18{bottom:481.401333pt;}
.y8d{bottom:481.645333pt;}
.y27b{bottom:481.720000pt;}
.y46{bottom:484.020000pt;}
.y214{bottom:484.093333pt;}
.y238{bottom:484.102667pt;}
.yaf{bottom:485.946667pt;}
.y169{bottom:488.582667pt;}
.y1a9{bottom:489.642667pt;}
.y1ca{bottom:491.124000pt;}
.y147{bottom:492.500000pt;}
.yd9{bottom:492.598667pt;}
.y2a7{bottom:492.921333pt;}
.y18b{bottom:493.386667pt;}
.y1f3{bottom:493.910667pt;}
.y11f{bottom:498.618667pt;}
.y260{bottom:499.020000pt;}
.y8c{bottom:499.710667pt;}
.y27a{bottom:499.785333pt;}
.y45{bottom:502.086667pt;}
.y213{bottom:502.160000pt;}
.y237{bottom:502.168000pt;}
.y168{bottom:506.648000pt;}
.yf8{bottom:507.329333pt;}
.y11e{bottom:508.597333pt;}
.y1c9{bottom:509.189333pt;}
.y146{bottom:510.566667pt;}
.y1f2{bottom:511.977333pt;}
.y64{bottom:512.969333pt;}
.y25f{bottom:517.085333pt;}
.y279{bottom:517.852000pt;}
.yae{bottom:518.416000pt;}
.y18a{bottom:518.724000pt;}
.y44{bottom:520.152000pt;}
.y212{bottom:520.225333pt;}
.y236{bottom:520.233333pt;}
.yd8{bottom:522.620000pt;}
.y2a6{bottom:522.942667pt;}
.y1a8{bottom:524.660000pt;}
.y167{bottom:524.713333pt;}
.y8b{bottom:527.170667pt;}
.y17{bottom:528.416000pt;}
.y145{bottom:528.632000pt;}
.y1f1{bottom:530.042667pt;}
.y1c8{bottom:531.618667pt;}
.yf7{bottom:534.788000pt;}
.y278{bottom:535.917333pt;}
.y189{bottom:536.790667pt;}
.y43{bottom:538.217333pt;}
.y235{bottom:538.298667pt;}
.y63{bottom:540.429333pt;}
.yd7{bottom:540.685333pt;}
.y2a5{bottom:541.008000pt;}
.y1a7{bottom:542.725333pt;}
.y166{bottom:542.778667pt;}
.y25e{bottom:544.545333pt;}
.y144{bottom:546.697333pt;}
.y211{bottom:547.684000pt;}
.y1f0{bottom:548.108000pt;}
.y11d{bottom:548.114667pt;}
.y1c7{bottom:549.684000pt;}
.y293{bottom:553.634667pt;}
.y42{bottom:556.282667pt;}
.y234{bottom:556.364000pt;}
.yd6{bottom:558.750667pt;}
.y165{bottom:560.845333pt;}
.y188{bottom:562.128000pt;}
.yad{bottom:564.245333pt;}
.y8a{bottom:566.120000pt;}
.y1ef{bottom:566.173333pt;}
.y1a6{bottom:568.094667pt;}
.y2a4{bottom:571.028000pt;}
.y292{bottom:571.700000pt;}
.y1c6{bottom:572.113333pt;}
.y143{bottom:574.157333pt;}
.y16{bottom:574.246667pt;}
.y233{bottom:574.430667pt;}
.y277{bottom:575.342667pt;}
.y11c{bottom:575.573333pt;}
.yf6{bottom:577.213333pt;}
.y62{bottom:579.378667pt;}
.yac{bottom:582.312000pt;}
.y25d{bottom:583.494667pt;}
.y89{bottom:584.186667pt;}
.y1ee{bottom:584.238667pt;}
.y164{bottom:586.182667pt;}
.yd5{bottom:586.210667pt;}
.y210{bottom:586.373333pt;}
.y41{bottom:588.894667pt;}
.y2a3{bottom:589.093333pt;}
.y291{bottom:589.766667pt;}
.y1c5{bottom:590.178667pt;}
.y15{bottom:590.186667pt;}
.y232{bottom:592.496000pt;}
.y61{bottom:597.445333pt;}
.yab{bottom:600.377333pt;}
.y25c{bottom:601.561333pt;}
.y88{bottom:602.252000pt;}
.y1ed{bottom:602.305333pt;}
.y163{bottom:604.249333pt;}
.y20f{bottom:604.438667pt;}
.y1a5{bottom:606.070667pt;}
.y14{bottom:606.126667pt;}
.y40{bottom:606.960000pt;}
.y290{bottom:607.832000pt;}
.y1c4{bottom:608.244000pt;}
.y187{bottom:608.988000pt;}
.y142{bottom:610.080000pt;}
.y276{bottom:610.360000pt;}
.y11b{bottom:611.497333pt;}
.yf5{bottom:613.344000pt;}
.y60{bottom:615.510667pt;}
.y2a2{bottom:619.114667pt;}
.y25b{bottom:619.626667pt;}
.y87{bottom:620.317333pt;}
.y1ec{bottom:620.370667pt;}
.y13{bottom:622.066667pt;}
.y1a4{bottom:624.137333pt;}
.y231{bottom:624.965333pt;}
.y3f{bottom:625.025333pt;}
.yd4{bottom:625.161333pt;}
.y28f{bottom:625.897333pt;}
.y1c3{bottom:626.310667pt;}
.y275{bottom:628.426667pt;}
.y162{bottom:629.586667pt;}
.yaa{bottom:630.397333pt;}
.yf4{bottom:631.410667pt;}
.y20e{bottom:631.898667pt;}
.y5f{bottom:633.576000pt;}
.y2a1{bottom:637.180000pt;}
.y12{bottom:638.006667pt;}
.y86{bottom:638.382667pt;}
.y1eb{bottom:638.436000pt;}
.y3e{bottom:643.090667pt;}
.yd3{bottom:643.226667pt;}
.y28e{bottom:643.962667pt;}
.y274{bottom:646.492000pt;}
.y25a{bottom:647.085333pt;}
.y186{bottom:647.937333pt;}
.ya9{bottom:648.462667pt;}
.y1a3{bottom:651.596000pt;}
.y5e{bottom:651.641333pt;}
.y1c2{bottom:651.648000pt;}
.y11{bottom:653.946667pt;}
.y141{bottom:655.909333pt;}
.y85{bottom:656.448000pt;}
.y1ea{bottom:656.501333pt;}
.y11a{bottom:657.326667pt;}
.yf3{bottom:658.869333pt;}
.y3d{bottom:661.156000pt;}
.yd2{bottom:661.292000pt;}
.y28d{bottom:662.028000pt;}
.y161{bottom:664.301333pt;}
.y273{bottom:664.557333pt;}
.y185{bottom:666.004000pt;}
.y2a0{bottom:667.201333pt;}
.y5d{bottom:669.706667pt;}
.y10{bottom:669.888000pt;}
.y20d{bottom:670.586667pt;}
.y230{bottom:670.794667pt;}
.y140{bottom:673.974667pt;}
.y84{bottom:674.514667pt;}
.y1e9{bottom:674.566667pt;}
.y119{bottom:675.392000pt;}
.ya8{bottom:678.484000pt;}
.y3c{bottom:679.221333pt;}
.y184{bottom:684.069333pt;}
.y29f{bottom:685.266667pt;}
.yf{bottom:685.828000pt;}
.y259{bottom:686.036000pt;}
.y1c1{bottom:687.170667pt;}
.y20c{bottom:688.652000pt;}
.y22f{bottom:688.860000pt;}
.y272{bottom:689.925333pt;}
.y1a2{bottom:691.553333pt;}
.y160{bottom:691.761333pt;}
.y13f{bottom:692.041333pt;}
.y83{bottom:692.580000pt;}
.y1e8{bottom:692.633333pt;}
.y118{bottom:693.457333pt;}
.yd1{bottom:694.613333pt;}
.yf2{bottom:694.793333pt;}
.ya7{bottom:696.549333pt;}
.y3b{bottom:697.288000pt;}
.y28c{bottom:701.454667pt;}
.ye{bottom:701.768000pt;}
.y183{bottom:702.134667pt;}
.y258{bottom:704.101333pt;}
.y20b{bottom:706.717333pt;}
.y1a1{bottom:709.618667pt;}
.y5c{bottom:709.746667pt;}
.y13e{bottom:710.106667pt;}
.y82{bottom:710.645333pt;}
.y117{bottom:711.524000pt;}
.yd0{bottom:712.678667pt;}
.ya6{bottom:714.614667pt;}
.y1c0{bottom:714.630667pt;}
.y29e{bottom:715.288000pt;}
.y3a{bottom:715.353333pt;}
.yd{bottom:717.708000pt;}
.y22e{bottom:718.881333pt;}
.y28b{bottom:719.520000pt;}
.y182{bottom:720.200000pt;}
.y257{bottom:722.168000pt;}
.y20a{bottom:724.784000pt;}
.y15f{bottom:727.684000pt;}
.y13d{bottom:728.172000pt;}
.y81{bottom:728.710667pt;}
.ycf{bottom:730.744000pt;}
.y1e7{bottom:732.058667pt;}
.y39{bottom:733.418667pt;}
.yc{bottom:733.648000pt;}
.y22d{bottom:736.946667pt;}
.y28a{bottom:737.585333pt;}
.y181{bottom:738.265333pt;}
.yf1{bottom:740.194667pt;}
.y256{bottom:740.233333pt;}
.y116{bottom:741.544000pt;}
.y209{bottom:742.849333pt;}
.y1a0{bottom:743.701333pt;}
.ya5{bottom:744.636000pt;}
.y29d{bottom:745.308000pt;}
.y13c{bottom:746.237333pt;}
.y80{bottom:746.776000pt;}
.y5b{bottom:748.313333pt;}
.yce{bottom:748.809333pt;}
.yb{bottom:749.588000pt;}
.y1e6{bottom:750.124000pt;}
.y38{bottom:751.484000pt;}
.y1bf{bottom:753.581333pt;}
.y115{bottom:754.593333pt;}
.y180{bottom:756.332000pt;}
.yf0{bottom:758.261333pt;}
.y255{bottom:758.298667pt;}
.y114{bottom:759.609333pt;}
.y19f{bottom:761.766667pt;}
.ya4{bottom:762.701333pt;}
.y13b{bottom:764.302667pt;}
.ya{bottom:765.529333pt;}
.y5a{bottom:766.378667pt;}
.ycd{bottom:766.874667pt;}
.y22c{bottom:766.968000pt;}
.y208{bottom:770.308000pt;}
.y289{bottom:771.566667pt;}
.y1be{bottom:771.646667pt;}
.y15e{bottom:773.513333pt;}
.y7f{bottom:774.236000pt;}
.y17f{bottom:774.397333pt;}
.y29c{bottom:775.329333pt;}
.yef{bottom:776.326667pt;}
.y254{bottom:776.364000pt;}
.y1e5{bottom:780.569333pt;}
.ya3{bottom:782.346667pt;}
.y13a{bottom:782.368000pt;}
.y37{bottom:784.096000pt;}
.y22b{bottom:785.033333pt;}
.y288{bottom:786.178667pt;}
.ycc{bottom:786.894667pt;}
.y19e{bottom:787.105333pt;}
.y113{bottom:789.018667pt;}
.y9{bottom:789.772000pt;}
.y15d{bottom:791.578667pt;}
.y17e{bottom:792.462667pt;}
.y29b{bottom:793.394667pt;}
.y59{bottom:793.837333pt;}
.yee{bottom:794.392000pt;}
.y1e4{bottom:798.636000pt;}
.ya2{bottom:800.412000pt;}
.y139{bottom:800.434667pt;}
.y287{bottom:800.790667pt;}
.y36{bottom:802.161333pt;}
.y22a{bottom:803.098667pt;}
.y253{bottom:803.824000pt;}
.y19d{bottom:805.170667pt;}
.y15c{bottom:809.645333pt;}
.y207{bottom:809.709333pt;}
.y1bd{bottom:811.072000pt;}
.y7e{bottom:813.186667pt;}
.y286{bottom:815.402667pt;}
.y1e3{bottom:816.701333pt;}
.y138{bottom:818.500000pt;}
.y35{bottom:820.226667pt;}
.y8{bottom:821.652000pt;}
.ycb{bottom:821.777333pt;}
.y19c{bottom:823.236000pt;}
.y29a{bottom:823.414667pt;}
.yed{bottom:825.677333pt;}
.y15b{bottom:827.710667pt;}
.y112{bottom:827.968000pt;}
.y285{bottom:830.014667pt;}
.ya1{bottom:830.433333pt;}
.y229{bottom:830.558667pt;}
.y7d{bottom:831.252000pt;}
.y17d{bottom:831.888000pt;}
.y58{bottom:832.788000pt;}
.y1e2{bottom:834.766667pt;}
.y34{bottom:838.292000pt;}
.yca{bottom:839.842667pt;}
.y19b{bottom:841.301333pt;}
.y299{bottom:841.481333pt;}
.y252{bottom:842.774667pt;}
.y284{bottom:844.626667pt;}
.y206{bottom:844.728000pt;}
.y15a{bottom:845.776000pt;}
.y111{bottom:846.034667pt;}
.y1bc{bottom:846.089333pt;}
.ya0{bottom:848.498667pt;}
.y7c{bottom:849.317333pt;}
.y17c{bottom:849.953333pt;}
.y57{bottom:850.853333pt;}
.yc9{bottom:852.798667pt;}
.y1e1{bottom:852.832000pt;}
.yec{bottom:854.792000pt;}
.y251{bottom:855.824000pt;}
.y33{bottom:856.357333pt;}
.yc8{bottom:857.908000pt;}
.y137{bottom:857.925333pt;}
.y283{bottom:859.238667pt;}
.y19a{bottom:859.368000pt;}
.y250{bottom:860.840000pt;}
.y205{bottom:862.793333pt;}
.y159{bottom:863.841333pt;}
.y110{bottom:864.100000pt;}
.y1bb{bottom:864.154667pt;}
.y7b{bottom:867.382667pt;}
.y17b{bottom:868.020000pt;}
.y7{bottom:868.808000pt;}
.y56{bottom:868.920000pt;}
.y228{bottom:869.508000pt;}
.y1e0{bottom:870.897333pt;}
.y298{bottom:871.501333pt;}
.y282{bottom:873.849333pt;}
.y32{bottom:874.424000pt;}
.y9f{bottom:875.958667pt;}
.y136{bottom:875.990667pt;}
.y199{bottom:877.433333pt;}
.yc7{bottom:877.842667pt;}
.y24f{bottom:878.905333pt;}
.y204{bottom:880.858667pt;}
.y158{bottom:881.906667pt;}
.y10f{bottom:882.165333pt;}
.y1ba{bottom:882.221333pt;}
.yeb{bottom:883.905333pt;}
.y7a{bottom:885.449333pt;}
.y55{bottom:886.985333pt;}
.y227{bottom:887.574667pt;}
.y281{bottom:888.461333pt;}
.y1df{bottom:888.962667pt;}
.y297{bottom:889.566667pt;}
.y24e{bottom:891.954667pt;}
.y6{bottom:894.146667pt;}
.y198{bottom:895.498667pt;}
.yc6{bottom:895.908000pt;}
.y24d{bottom:896.970667pt;}
.y203{bottom:898.924000pt;}
.y157{bottom:899.973333pt;}
.y1b9{bottom:900.286667pt;}
.y17a{bottom:903.037333pt;}
.y280{bottom:903.073333pt;}
.y79{bottom:903.514667pt;}
.y54{bottom:905.050667pt;}
.y226{bottom:905.640000pt;}
.y1de{bottom:907.029333pt;}
.y31{bottom:907.034667pt;}
.y135{bottom:911.009333pt;}
.y24c{bottom:911.362667pt;}
.y9e{bottom:911.881333pt;}
.y10e{bottom:912.185333pt;}
.yea{bottom:915.192000pt;}
.y24b{bottom:916.378667pt;}
.yc5{bottom:916.778667pt;}
.y27f{bottom:917.685333pt;}
.y1b8{bottom:918.352000pt;}
.y5{bottom:919.485333pt;}
.y296{bottom:919.588000pt;}
.y197{bottom:920.837333pt;}
.y179{bottom:921.102667pt;}
.y78{bottom:921.580000pt;}
.y53{bottom:923.116000pt;}
.y225{bottom:923.705333pt;}
.y202{bottom:924.293333pt;}
.y1dd{bottom:925.094667pt;}
.y30{bottom:925.100000pt;}
.y156{bottom:927.432000pt;}
.y134{bottom:929.074667pt;}
.y10d{bottom:930.252000pt;}
.y1b7{bottom:936.417333pt;}
.yc4{bottom:936.597333pt;}
.y295{bottom:937.653333pt;}
.ye9{bottom:938.340000pt;}
.y196{bottom:938.902667pt;}
.y27e{bottom:939.600000pt;}
.y77{bottom:939.645333pt;}
.y52{bottom:941.181333pt;}
.y224{bottom:941.770667pt;}
.y1dc{bottom:943.160000pt;}
.y2f{bottom:943.165333pt;}
.y24a{bottom:946.400000pt;}
.y178{bottom:946.470667pt;}
.y133{bottom:947.140000pt;}
.ye8{bottom:948.317333pt;}
.y76{bottom:957.710667pt;}
.y51{bottom:959.248000pt;}
.y4{bottom:959.369333pt;}
.y223{bottom:959.836000pt;}
.y2e{bottom:961.230667pt;}
.y1b6{bottom:961.786667pt;}
.y195{bottom:964.241333pt;}
.y132{bottom:965.205333pt;}
.yc3{bottom:966.382667pt;}
.y1db{bottom:968.498667pt;}
.y294{bottom:971.468000pt;}
.y201{bottom:973.858667pt;}
.y75{bottom:975.776000pt;}
.y27d{bottom:975.968000pt;}
.y50{bottom:977.313333pt;}
.y3{bottom:981.101333pt;}
.y131{bottom:983.270667pt;}
.yc2{bottom:984.448000pt;}
.y1da{bottom:986.564000pt;}
.y2d{bottom:993.842667pt;}
.y130{bottom:1008.640000pt;}
.y4f{bottom:1009.782667pt;}
.y2{bottom:1010.580000pt;}
.y1d9{bottom:1011.902667pt;}
.y2c{bottom:1011.908000pt;}
.y1{bottom:1063.022667pt;}
.h1e{height:2.327275pt;}
.hf{height:21.200555pt;}
.h15{height:30.350141pt;}
.h6{height:35.865600pt;}
.h5{height:39.850400pt;}
.h23{height:40.378215pt;}
.h4{height:43.548809pt;}
.h2{height:43.636400pt;}
.h8{height:47.820800pt;}
.h13{height:49.196608pt;}
.hc{height:51.034402pt;}
.h1b{height:51.459474pt;}
.h22{height:51.464807pt;}
.h20{height:53.256807pt;}
.h1c{height:53.262141pt;}
.ha{height:53.946402pt;}
.h19{height:55.272773pt;}
.h7{height:57.384800pt;}
.hb{height:58.345733pt;}
.h11{height:60.392807pt;}
.h1d{height:63.700400pt;}
.h12{height:64.073733pt;}
.h3{height:68.861600pt;}
.h21{height:69.521941pt;}
.h9{height:81.516608pt;}
.h17{height:82.996400pt;}
.hd{height:83.001733pt;}
.he{height:83.545733pt;}
.h10{height:83.551067pt;}
.h18{height:84.068400pt;}
.h1a{height:84.364608pt;}
.h14{height:90.970402pt;}
.h16{height:124.273941pt;}
.h1f{height:161.141069pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.000000pt;}
.x2{left:109.644000pt;}
.x45{left:110.545333pt;}
.x32{left:111.565333pt;}
.x15{left:112.582667pt;}
.x10{left:113.777333pt;}
.xc{left:117.818667pt;}
.x34{left:126.086667pt;}
.x3f{left:131.120000pt;}
.xb{left:132.364000pt;}
.x38{left:135.628000pt;}
.x40{left:140.850667pt;}
.x3e{left:143.901333pt;}
.x44{left:146.330667pt;}
.x35{left:147.946667pt;}
.xa{left:152.289333pt;}
.x3c{left:154.253333pt;}
.x43{left:159.820000pt;}
.x36{left:162.451406pt;}
.x42{left:164.228000pt;}
.x3{left:171.741333pt;}
.x3d{left:193.136000pt;}
.x19{left:195.044000pt;}
.x3b{left:211.618667pt;}
.x11{left:217.494667pt;}
.x29{left:228.610667pt;}
.x41{left:231.116000pt;}
.x2f{left:234.377333pt;}
.x18{left:241.536000pt;}
.x37{left:253.570667pt;}
.x12{left:262.960000pt;}
.x16{left:266.680000pt;}
.x17{left:268.217333pt;}
.x33{left:275.941333pt;}
.x8{left:288.209333pt;}
.x1b{left:300.524000pt;}
.x4{left:303.513333pt;}
.x24{left:304.445333pt;}
.x23{left:310.078667pt;}
.x6{left:312.857333pt;}
.x30{left:318.630667pt;}
.xe{left:325.540000pt;}
.x21{left:338.557333pt;}
.x2b{left:341.646667pt;}
.x2e{left:342.656000pt;}
.x5{left:343.549333pt;}
.x7{left:352.645333pt;}
.x1e{left:360.218667pt;}
.x3a{left:365.173333pt;}
.x9{left:367.625333pt;}
.x22{left:368.636000pt;}
.x25{left:370.936000pt;}
.x13{left:373.144000pt;}
.xf{left:376.117333pt;}
.x1f{left:393.120000pt;}
.x14{left:405.568000pt;}
.x2c{left:407.356000pt;}
.x26{left:416.698667pt;}
.x1d{left:437.178667pt;}
.x28{left:442.286667pt;}
.x27{left:445.650667pt;}
.x1c{left:447.466667pt;}
.x2a{left:490.837333pt;}
.x31{left:492.305333pt;}
.x1a{left:535.629333pt;}
.x39{left:647.801333pt;}
.xd{left:655.074667pt;}
.x2d{left:671.842667pt;}
.x20{left:679.114667pt;}
}




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