
    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_452463429b8db267f8443d84.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.942000;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_db6acec448f47046bc43c30c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.941000;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_741d1bfe9a49381e55d3219d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.942000;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_5784c728b4b9a454c4fc6905.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.941000;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_994352321a6e6dad260baad5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.969000;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_c53c71c51bc7da42d581c754.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.251000;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_5d4dc621241a4060a9b14249.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.721000;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_32dc521fdf86bd8c87833937.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.714000;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_dd6e110c65999d6448f8f593.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.685022;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_2b69e81f7a09916c33724e74.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.941000;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_49e4312ffbabb36b81894a17.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.264000;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_81a6a2436265016f8ba13ad3.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.222000;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_002dba5766882724979f08ed.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.244000;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_03b7697720ee21acffa5c09b.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.480000;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_45b553f760c8b98d2f69c7c1.woff2')format("woff");}.fff{font-family:fff;line-height:0.984000;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_9816093c2113f9a1b95f8a87.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.972000;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_d7732aa71d6d2134a0eea7a3.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5{transform:matrix(0.237489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237489,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.237494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237494,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.237499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237499,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.267207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267207,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.281287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281287,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lsa7{letter-spacing:-0.011716px;}
.ls51{letter-spacing:-0.005858px;}
.ls10{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.005858px;}
.ls3{letter-spacing:0.011716px;}
.ls5f{letter-spacing:0.017574px;}
.lsc6{letter-spacing:0.035148px;}
.lscb{letter-spacing:0.044831px;}
.lscf{letter-spacing:0.089662px;}
.lsb{letter-spacing:0.117161px;}
.lscc{letter-spacing:0.134492px;}
.lsd0{letter-spacing:0.179323px;}
.lsca{letter-spacing:0.224154px;}
.ls11{letter-spacing:0.414244px;}
.ls7f{letter-spacing:0.462785px;}
.ls88{letter-spacing:0.509649px;}
.ls83{letter-spacing:0.538940px;}
.ls84{letter-spacing:0.562372px;}
.ls8d{letter-spacing:0.568230px;}
.ls73{letter-spacing:0.574088px;}
.ls85{letter-spacing:0.591662px;}
.lsa8{letter-spacing:0.597520px;}
.ls56{letter-spacing:0.609236px;}
.lsa0{letter-spacing:0.615094px;}
.ls3b{letter-spacing:0.620952px;}
.ls1c{letter-spacing:0.626810px;}
.ls6a{letter-spacing:0.638526px;}
.ls91{letter-spacing:0.644384px;}
.ls1{letter-spacing:0.650242px;}
.ls62{letter-spacing:0.656100px;}
.ls67{letter-spacing:0.667817px;}
.ls4a{letter-spacing:0.673675px;}
.lsc7{letter-spacing:0.679533px;}
.ls39{letter-spacing:0.685391px;}
.lsb7{letter-spacing:0.691249px;}
.ls34{letter-spacing:0.697107px;}
.ls19{letter-spacing:0.702965px;}
.ls27{letter-spacing:0.708823px;}
.ls33{letter-spacing:0.714681px;}
.ls49{letter-spacing:0.720539px;}
.ls37{letter-spacing:0.743971px;}
.ls58{letter-spacing:0.749829px;}
.ls26{letter-spacing:0.761545px;}
.ls1b{letter-spacing:0.773261px;}
.ls50{letter-spacing:0.802551px;}
.ls59{letter-spacing:0.820126px;}
.ls9d{letter-spacing:0.825984px;}
.ls7e{letter-spacing:0.837700px;}
.ls6f{letter-spacing:0.849416px;}
.ls2b{letter-spacing:0.855274px;}
.ls8f{letter-spacing:0.878706px;}
.ls52{letter-spacing:0.896280px;}
.ls2e{letter-spacing:0.907996px;}
.lsa5{letter-spacing:0.919712px;}
.lsc0{letter-spacing:0.925570px;}
.lsa{letter-spacing:0.931428px;}
.ls48{letter-spacing:0.937286px;}
.ls70{letter-spacing:0.943144px;}
.ls9{letter-spacing:0.954861px;}
.ls8a{letter-spacing:0.966577px;}
.lsc3{letter-spacing:0.972435px;}
.ls17{letter-spacing:0.978293px;}
.ls8b{letter-spacing:0.984151px;}
.ls14{letter-spacing:0.990009px;}
.ls95{letter-spacing:1.001725px;}
.ls46{letter-spacing:1.013441px;}
.ls29{letter-spacing:1.019299px;}
.ls1e{letter-spacing:1.031015px;}
.lsa1{letter-spacing:1.054447px;}
.ls35{letter-spacing:1.060305px;}
.ls40{letter-spacing:1.066163px;}
.ls6c{letter-spacing:1.072021px;}
.ls75{letter-spacing:1.083737px;}
.ls72{letter-spacing:1.089595px;}
.ls38{letter-spacing:1.095453px;}
.ls8{letter-spacing:1.101312px;}
.ls92{letter-spacing:1.118886px;}
.ls9e{letter-spacing:1.154034px;}
.lsab{letter-spacing:1.171608px;}
.lsb5{letter-spacing:1.177466px;}
.ls4c{letter-spacing:1.206756px;}
.ls78{letter-spacing:1.212614px;}
.ls71{letter-spacing:1.230188px;}
.lsbe{letter-spacing:1.241904px;}
.ls42{letter-spacing:1.259479px;}
.lsc8{letter-spacing:1.265337px;}
.ls94{letter-spacing:1.271195px;}
.ls66{letter-spacing:1.277053px;}
.ls9b{letter-spacing:1.288769px;}
.ls96{letter-spacing:1.294627px;}
.ls1d{letter-spacing:1.300485px;}
.lsbf{letter-spacing:1.318059px;}
.ls4{letter-spacing:1.329775px;}
.lsaa{letter-spacing:1.341491px;}
.ls5{letter-spacing:1.353207px;}
.lsc1{letter-spacing:1.359065px;}
.ls2c{letter-spacing:1.364923px;}
.ls36{letter-spacing:1.370781px;}
.ls4b{letter-spacing:1.382497px;}
.ls32{letter-spacing:1.405930px;}
.ls3f{letter-spacing:1.435220px;}
.ls2f{letter-spacing:1.458652px;}
.ls69{letter-spacing:1.470368px;}
.ls7b{letter-spacing:1.482084px;}
.ls15{letter-spacing:1.534806px;}
.ls6e{letter-spacing:1.558239px;}
.ls6d{letter-spacing:1.575813px;}
.ls90{letter-spacing:1.581671px;}
.lsb4{letter-spacing:1.616819px;}
.ls57{letter-spacing:1.646109px;}
.lsc2{letter-spacing:1.651967px;}
.ls82{letter-spacing:1.663683px;}
.lsad{letter-spacing:1.681257px;}
.ls79{letter-spacing:1.716406px;}
.lsaf{letter-spacing:1.733980px;}
.ls20{letter-spacing:1.757412px;}
.lsb2{letter-spacing:1.769128px;}
.ls3a{letter-spacing:1.774986px;}
.ls25{letter-spacing:1.786702px;}
.ls7d{letter-spacing:1.804276px;}
.ls5a{letter-spacing:1.815992px;}
.ls80{letter-spacing:1.839425px;}
.ls41{letter-spacing:1.851141px;}
.ls5c{letter-spacing:1.862857px;}
.lsc5{letter-spacing:1.868715px;}
.ls5b{letter-spacing:1.886289px;}
.lsc4{letter-spacing:1.898005px;}
.lsbc{letter-spacing:1.903863px;}
.ls22{letter-spacing:1.915579px;}
.ls5e{letter-spacing:1.927295px;}
.ls53{letter-spacing:1.933153px;}
.ls23{letter-spacing:1.956585px;}
.lsa9{letter-spacing:1.962443px;}
.ls81{letter-spacing:1.974159px;}
.ls2d{letter-spacing:2.009308px;}
.ls3e{letter-spacing:2.015166px;}
.ls13{letter-spacing:2.021024px;}
.ls7{letter-spacing:2.038598px;}
.ls21{letter-spacing:2.044456px;}
.lsa3{letter-spacing:2.050314px;}
.ls9f{letter-spacing:2.056172px;}
.ls9a{letter-spacing:2.073746px;}
.ls99{letter-spacing:2.085462px;}
.ls18{letter-spacing:2.091320px;}
.ls68{letter-spacing:2.097178px;}
.ls89{letter-spacing:2.126469px;}
.ls7a{letter-spacing:2.149901px;}
.lsa4{letter-spacing:2.179191px;}
.ls76{letter-spacing:2.196765px;}
.ls98{letter-spacing:2.202623px;}
.lsb8{letter-spacing:2.237771px;}
.lsbd{letter-spacing:2.278778px;}
.ls2{letter-spacing:2.319784px;}
.ls61{letter-spacing:2.331500px;}
.ls3d{letter-spacing:2.354932px;}
.ls24{letter-spacing:2.390080px;}
.ls65{letter-spacing:2.395938px;}
.ls1f{letter-spacing:2.431087px;}
.lsb6{letter-spacing:2.436945px;}
.ls5d{letter-spacing:2.442803px;}
.ls74{letter-spacing:2.448661px;}
.lsba{letter-spacing:2.460377px;}
.lsac{letter-spacing:2.489667px;}
.ls9c{letter-spacing:2.495525px;}
.lse{letter-spacing:2.501383px;}
.ls60{letter-spacing:2.513099px;}
.lsc{letter-spacing:2.565822px;}
.ls16{letter-spacing:2.671266px;}
.ls63{letter-spacing:2.712273px;}
.ls28{letter-spacing:2.718131px;}
.ls45{letter-spacing:2.735705px;}
.ls3c{letter-spacing:2.764995px;}
.ls0{letter-spacing:2.852865px;}
.ls6b{letter-spacing:2.858724px;}
.ls8c{letter-spacing:2.876298px;}
.ls43{letter-spacing:2.882156px;}
.lsa2{letter-spacing:2.917304px;}
.ls2a{letter-spacing:2.929020px;}
.ls1a{letter-spacing:2.934878px;}
.ls8e{letter-spacing:2.946594px;}
.ls64{letter-spacing:2.952452px;}
.lsa6{letter-spacing:2.958310px;}
.ls7c{letter-spacing:2.964168px;}
.ls44{letter-spacing:2.970026px;}
.ls31{letter-spacing:2.981742px;}
.ls47{letter-spacing:2.987600px;}
.ls12{letter-spacing:2.993458px;}
.ls97{letter-spacing:2.999316px;}
.ls77{letter-spacing:3.005175px;}
.ls4d{letter-spacing:3.016891px;}
.ls30{letter-spacing:3.028607px;}
.ls86{letter-spacing:3.034465px;}
.ls93{letter-spacing:3.040323px;}
.lsae{letter-spacing:3.403521px;}
.lsb1{letter-spacing:4.100628px;}
.lsb0{letter-spacing:4.124060px;}
.lsb3{letter-spacing:4.135776px;}
.lscd{letter-spacing:14.794164px;}
.lsc9{letter-spacing:14.883826px;}
.lsd1{letter-spacing:15.107980px;}
.lsce{letter-spacing:15.152810px;}
.lsf{letter-spacing:15.733175px;}
.ls55{letter-spacing:21.223679px;}
.ls4e{letter-spacing:21.434568px;}
.ls87{letter-spacing:22.606176px;}
.ls4f{letter-spacing:22.764343px;}
.ls54{letter-spacing:22.793634px;}
.lsb9{letter-spacing:23.080678px;}
.lsd{letter-spacing:24.955250px;}
.lsbb{letter-spacing:26.296742px;}
.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;}
}
.wsb8{word-spacing:-26.355322px;}
.wsb3{word-spacing:-23.139258px;}
.ws6a{word-spacing:-22.852214px;}
.ws37{word-spacing:-22.822924px;}
.ws98{word-spacing:-22.664757px;}
.ws33{word-spacing:-21.493149px;}
.ws6b{word-spacing:-21.282259px;}
.wsea{word-spacing:-10.508400px;}
.ws22{word-spacing:-2.624402px;}
.ws76{word-spacing:-0.878706px;}
.ws6{word-spacing:-0.061568px;}
.ws21{word-spacing:-0.058580px;}
.ws29{word-spacing:-0.047821px;}
.wsd5{word-spacing:-0.044831px;}
.wse3{word-spacing:-0.043637px;}
.ws2d{word-spacing:0.000000px;}
.ws2a{word-spacing:10.757784px;}
.wsc6{word-spacing:13.766281px;}
.wsc8{word-spacing:13.849967px;}
.wsc3{word-spacing:13.891810px;}
.wsc5{word-spacing:13.975495px;}
.wse5{word-spacing:14.007413px;}
.wsc2{word-spacing:14.017338px;}
.wsaf{word-spacing:14.059181px;}
.wsc7{word-spacing:14.101024px;}
.ws2c{word-spacing:14.184709px;}
.wsce{word-spacing:14.226552px;}
.wse6{word-spacing:14.312870px;}
.wsc4{word-spacing:14.393923px;}
.wse4{word-spacing:14.400144px;}
.wsdc{word-spacing:14.480348px;}
.wse2{word-spacing:14.570010px;}
.ws2b{word-spacing:14.603137px;}
.wsdf{word-spacing:14.614841px;}
.wse8{word-spacing:14.618328px;}
.wse0{word-spacing:14.659672px;}
.wse9{word-spacing:14.661965px;}
.wsdd{word-spacing:14.704502px;}
.wse7{word-spacing:14.705602px;}
.wsda{word-spacing:14.749333px;}
.ws25{word-spacing:14.794164px;}
.ws24{word-spacing:14.838995px;}
.wsdb{word-spacing:14.883826px;}
.wsd6{word-spacing:14.928656px;}
.wsd2{word-spacing:14.973487px;}
.ws23{word-spacing:15.018318px;}
.wsd4{word-spacing:15.063149px;}
.wsd9{word-spacing:15.107980px;}
.wsd1{word-spacing:15.152810px;}
.wsd8{word-spacing:15.197641px;}
.wsd0{word-spacing:15.242472px;}
.wsd7{word-spacing:15.287303px;}
.wsc0{word-spacing:15.302784px;}
.wsde{word-spacing:15.332134px;}
.wsd3{word-spacing:15.376964px;}
.ws28{word-spacing:15.446248px;}
.wsaa{word-spacing:15.494069px;}
.wsae{word-spacing:15.541890px;}
.ws72{word-spacing:15.589711px;}
.wsc1{word-spacing:15.637532px;}
.ws26{word-spacing:15.685354px;}
.ws27{word-spacing:15.733175px;}
.ws80{word-spacing:15.758128px;}
.wscd{word-spacing:15.780996px;}
.wsad{word-spacing:15.828817px;}
.ws7e{word-spacing:16.267777px;}
.ws83{word-spacing:16.343932px;}
.ws81{word-spacing:16.408370px;}
.ws82{word-spacing:16.589969px;}
.ws7f{word-spacing:16.613401px;}
.wsa9{word-spacing:17.860870px;}
.wscc{word-spacing:17.914667px;}
.wsbf{word-spacing:17.968465px;}
.ws5e{word-spacing:18.147690px;}
.wsbe{word-spacing:18.183656px;}
.ws73{word-spacing:18.257676px;}
.ws4a{word-spacing:18.312669px;}
.ws6c{word-spacing:18.367662px;}
.ws5c{word-spacing:18.862889px;}
.wsb1{word-spacing:18.985908px;}
.wsca{word-spacing:19.050346px;}
.ws90{word-spacing:19.062062px;}
.ws59{word-spacing:19.079636px;}
.ws1a{word-spacing:19.097210px;}
.ws5a{word-spacing:19.155791px;}
.wsb4{word-spacing:19.208513px;}
.ws48{word-spacing:19.214371px;}
.wsb5{word-spacing:19.237803px;}
.wsba{word-spacing:19.267094px;}
.ws95{word-spacing:19.272952px;}
.ws7b{word-spacing:19.284668px;}
.ws61{word-spacing:19.290526px;}
.ws14{word-spacing:19.296384px;}
.wsb0{word-spacing:19.302242px;}
.ws63{word-spacing:19.313958px;}
.wsa2{word-spacing:19.325674px;}
.ws44{word-spacing:19.331532px;}
.ws68{word-spacing:19.349106px;}
.wscf{word-spacing:19.354964px;}
.ws64{word-spacing:19.360822px;}
.wsb2{word-spacing:19.366680px;}
.ws60{word-spacing:19.378396px;}
.ws86{word-spacing:19.384254px;}
.ws45{word-spacing:19.390112px;}
.ws87{word-spacing:19.401828px;}
.ws17{word-spacing:19.407687px;}
.ws32{word-spacing:19.413545px;}
.ws9d{word-spacing:19.419403px;}
.ws8c{word-spacing:19.425261px;}
.ws1e{word-spacing:19.431119px;}
.ws16{word-spacing:19.436977px;}
.ws47{word-spacing:19.442835px;}
.ws36{word-spacing:19.448693px;}
.ws8b{word-spacing:19.454551px;}
.ws7c{word-spacing:19.460409px;}
.ws3d{word-spacing:19.466267px;}
.ws3f{word-spacing:19.472125px;}
.ws49{word-spacing:19.477983px;}
.ws74{word-spacing:19.483841px;}
.ws69{word-spacing:19.489699px;}
.ws31{word-spacing:19.495557px;}
.ws96{word-spacing:19.501415px;}
.ws42{word-spacing:19.507273px;}
.ws1f{word-spacing:19.513131px;}
.ws1c{word-spacing:19.518989px;}
.ws34{word-spacing:19.524847px;}
.ws51{word-spacing:19.530705px;}
.ws41{word-spacing:19.536563px;}
.ws4f{word-spacing:19.542421px;}
.ws5f{word-spacing:19.548279px;}
.ws65{word-spacing:19.554138px;}
.ws39{word-spacing:19.559996px;}
.ws58{word-spacing:19.565854px;}
.ws30{word-spacing:19.571712px;}
.ws84{word-spacing:19.577570px;}
.wsf{word-spacing:19.583428px;}
.wsbc{word-spacing:19.589286px;}
.ws9c{word-spacing:19.595144px;}
.ws5b{word-spacing:19.601002px;}
.ws8{word-spacing:19.606397px;}
.ws4d{word-spacing:19.606860px;}
.ws3e{word-spacing:19.612718px;}
.ws4c{word-spacing:19.618576px;}
.ws4b{word-spacing:19.624434px;}
.ws55{word-spacing:19.630292px;}
.wsbd{word-spacing:19.636150px;}
.ws8a{word-spacing:19.642008px;}
.ws70{word-spacing:19.647866px;}
.ws79{word-spacing:19.653724px;}
.ws46{word-spacing:19.659582px;}
.ws52{word-spacing:19.665440px;}
.ws3b{word-spacing:19.671298px;}
.ws19{word-spacing:19.677156px;}
.ws92{word-spacing:19.683014px;}
.ws8f{word-spacing:19.694730px;}
.ws9a{word-spacing:19.700589px;}
.ws6f{word-spacing:19.706447px;}
.ws2f{word-spacing:19.712305px;}
.ws8e{word-spacing:19.718163px;}
.ws89{word-spacing:19.724021px;}
.wsbb{word-spacing:19.729879px;}
.ws11{word-spacing:19.735737px;}
.ws20{word-spacing:19.741595px;}
.ws85{word-spacing:19.747453px;}
.ws75{word-spacing:19.753311px;}
.ws40{word-spacing:19.759169px;}
.wsa5{word-spacing:19.765027px;}
.ws62{word-spacing:19.770885px;}
.ws8d{word-spacing:19.782601px;}
.ws1b{word-spacing:19.794317px;}
.ws10{word-spacing:19.800175px;}
.ws1d{word-spacing:19.811891px;}
.ws9b{word-spacing:19.817749px;}
.ws6d{word-spacing:19.829465px;}
.wsd{word-spacing:19.845499px;}
.ws78{word-spacing:19.847040px;}
.ws4e{word-spacing:19.858756px;}
.wsc9{word-spacing:19.864614px;}
.wsa7{word-spacing:19.870472px;}
.ws7{word-spacing:19.905275px;}
.ws5d{word-spacing:19.917336px;}
.ws7a{word-spacing:19.923194px;}
.wsb{word-spacing:19.965050px;}
.ws9e{word-spacing:19.975916px;}
.ws9{word-spacing:20.024826px;}
.wsa4{word-spacing:20.028639px;}
.ws38{word-spacing:20.034497px;}
.ws91{word-spacing:20.063787px;}
.wse{word-spacing:20.084602px;}
.ws3a{word-spacing:20.087219px;}
.ws43{word-spacing:20.093077px;}
.wsa3{word-spacing:20.139942px;}
.ws15{word-spacing:20.151658px;}
.wsc{word-spacing:20.204153px;}
.ws77{word-spacing:20.210238px;}
.ws35{word-spacing:20.268818px;}
.ws13{word-spacing:20.327399px;}
.wsa{word-spacing:20.383480px;}
.ws88{word-spacing:20.385979px;}
.ws54{word-spacing:20.444560px;}
.ws12{word-spacing:20.503140px;}
.ws3c{word-spacing:20.561720px;}
.ws18{word-spacing:20.620301px;}
.wsa1{word-spacing:20.649591px;}
.ws53{word-spacing:20.678881px;}
.ws50{word-spacing:20.854622px;}
.wsa6{word-spacing:21.018648px;}
.wsb6{word-spacing:21.124092px;}
.ws97{word-spacing:21.206105px;}
.ws4{word-spacing:21.567312px;}
.ws9f{word-spacing:21.598593px;}
.ws2e{word-spacing:21.668890px;}
.ws56{word-spacing:21.692322px;}
.ws3{word-spacing:21.961836px;}
.ws6e{word-spacing:22.026230px;}
.ws2{word-spacing:22.159098px;}
.ws5{word-spacing:22.553622px;}
.wsa8{word-spacing:23.461450px;}
.ws93{word-spacing:23.648907px;}
.ws94{word-spacing:24.029680px;}
.wsb7{word-spacing:24.545188px;}
.wsa0{word-spacing:24.961108px;}
.ws71{word-spacing:26.038988px;}
.wscb{word-spacing:26.226445px;}
.ws0{word-spacing:26.421060px;}
.wsb9{word-spacing:26.618934px;}
.ws67{word-spacing:27.491782px;}
.ws66{word-spacing:27.872554px;}
.ws57{word-spacing:30.877729px;}
.ws99{word-spacing:32.476974px;}
.ws7d{word-spacing:34.316398px;}
.wse1{word-spacing:44.261288px;}
.ws1{word-spacing:48.059502px;}
.wsac{word-spacing:175.695089px;}
.wsab{word-spacing:193.628039px;}
._2d{margin-left:-24.017964px;}
._2c{margin-left:-22.729195px;}
._d{margin-left:-21.557587px;}
._c{margin-left:-20.385979px;}
._f{margin-left:-19.331532px;}
._9{margin-left:-1.291172px;}
._3{width:1.183572px;}
._0{width:8.470281px;}
._a{width:12.235993px;}
._50{width:14.076871px;}
._b{width:15.272622px;}
._8{width:16.273580px;}
._10{width:17.808442px;}
._5{width:19.199908px;}
._4{width:20.742133px;}
._6{width:21.967650px;}
._7{width:23.244703px;}
._11{width:26.009698px;}
._2e{width:29.758843px;}
._e{width:32.863604px;}
._52{width:44.158338px;}
._2{width:47.198735px;}
._1f{width:50.594830px;}
._22{width:51.646896px;}
._1a{width:58.341864px;}
._4f{width:61.832812px;}
._41{width:63.123984px;}
._48{width:64.415156px;}
._51{width:65.632291px;}
._23{width:67.619177px;}
._4c{width:70.344985px;}
._2f{width:71.731800px;}
._14{width:73.644648px;}
._20{width:74.648893px;}
._4b{width:76.370456px;}
._1d{width:81.248219px;}
._4a{width:84.213133px;}
._39{width:85.647769px;}
._4e{width:92.534022px;}
._3b{width:94.303406px;}
._1b{width:97.220500px;}
._3c{width:99.563738px;}
._2b{width:103.198150px;}
._25{width:104.393680px;}
._45{width:106.354349px;}
._3d{width:108.267197px;}
._35{width:115.536019px;}
._26{width:120.365960px;}
._42{width:124.287299px;}
._4d{width:129.260704px;}
._30{width:133.468969px;}
._3e{width:138.442374px;}
._34{width:178.612182px;}
._29{width:183.776872px;}
._18{width:191.715191px;}
._44{width:193.245469px;}
._24{width:196.927702px;}
._16{width:209.648141px;}
._2a{width:216.630036px;}
._46{width:247.522531px;}
._13{width:249.196273px;}
._37{width:257.038950px;}
._36{width:262.490567px;}
._43{width:265.455481px;}
._33{width:266.459726px;}
._40{width:270.907098px;}
._32{width:274.971900px;}
._31{width:280.471338px;}
._3f{width:285.396922px;}
._21{width:316.671986px;}
._15{width:324.705948px;}
._28{width:342.591077px;}
._3a{width:419.678851px;}
._27{width:431.060297px;}
._49{width:434.264317px;}
._38{width:437.372695px;}
._47{width:452.005982px;}
._19{width:483.328868px;}
._1e{width:537.827377px;}
._12{width:564.768372px;}
._17{width:601.319558px;}
._1c{width:615.506665px;}
._1{width:1987.407675px;}
.fc2{color:rgb(85,123,178);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fsf{font-size:27.891000px;}
.fs8{font-size:29.883000px;}
.fse{font-size:31.876200px;}
.fs13{font-size:37.800000px;}
.fsc{font-size:39.048600px;}
.fs12{font-size:40.800000px;}
.fsa{font-size:41.842800px;}
.fs10{font-size:43.636800px;}
.fs3{font-size:43.831200px;}
.fs7{font-size:44.830800px;}
.fs9{font-size:47.821200px;}
.fs11{font-size:53.349000px;}
.fsd{font-size:53.797800px;}
.fsb{font-size:54.993000px;}
.fs6{font-size:58.580400px;}
.fs5{font-size:59.775600px;}
.fs4{font-size:61.568400px;}
.fs2{font-size:65.754000px;}
.fs14{font-size:72.000000px;}
.fs0{font-size:77.709000px;}
.fs1{font-size:143.461200px;}
.y0{bottom:0.000000px;}
.y28b{bottom:83.848800px;}
.y3c{bottom:92.101411px;}
.y28a{bottom:94.347750px;}
.yf4{bottom:95.936610px;}
.ya5{bottom:95.954693px;}
.y71{bottom:95.985136px;}
.y213{bottom:102.715973px;}
.y3b{bottom:104.005688px;}
.y25a{bottom:106.987431px;}
.y192{bottom:109.788802px;}
.y159{bottom:109.831224px;}
.y167{bottom:109.875159px;}
.y115{bottom:109.894862px;}
.y136{bottom:110.012023px;}
.yf3{bottom:113.876857px;}
.ya4{bottom:113.894941px;}
.y70{bottom:113.925384px;}
.y3a{bottom:115.993650px;}
.y212{bottom:116.154005px;}
.y1cf{bottom:118.349647px;}
.y259{bottom:120.425463px;}
.y289{bottom:126.881550px;}
.y191{bottom:127.729050px;}
.y158{bottom:127.771471px;}
.y166{bottom:127.815407px;}
.y114{bottom:127.835110px;}
.y135{bottom:127.952271px;}
.y211{bottom:129.592038px;}
.y1ce{bottom:131.787679px;}
.yf2{bottom:131.817105px;}
.ya3{bottom:131.835188px;}
.y6f{bottom:131.865631px;}
.y258{bottom:133.941949px;}
.y37{bottom:141.933631px;}
.y210{bottom:143.030070px;}
.y1cd{bottom:145.225711px;}
.y288{bottom:145.496550px;}
.y190{bottom:145.672350px;}
.y157{bottom:145.711719px;}
.y165{bottom:145.755654px;}
.y113{bottom:145.775357px;}
.y134{bottom:145.892518px;}
.y257{bottom:147.379982px;}
.yf1{bottom:149.757352px;}
.ya2{bottom:149.775436px;}
.y6e{bottom:149.805879px;}
.y32{bottom:155.007438px;}
.y36{bottom:155.450118px;}
.y20f{bottom:156.468102px;}
.y1cc{bottom:158.742198px;}
.y256{bottom:160.818014px;}
.y156{bottom:163.651966px;}
.y164{bottom:163.695902px;}
.y112{bottom:163.715605px;}
.y133{bottom:163.832766px;}
.y287{bottom:164.111550px;}
.yf0{bottom:167.697600px;}
.ya1{bottom:167.715683px;}
.y6d{bottom:167.746126px;}
.y35{bottom:168.888150px;}
.y20e{bottom:169.984588px;}
.y1cb{bottom:172.180230px;}
.y31{bottom:172.947686px;}
.y34{bottom:173.820450px;}
.y255{bottom:174.256046px;}
.y155{bottom:181.504343px;}
.y163{bottom:181.548278px;}
.y111{bottom:181.567982px;}
.y132{bottom:181.685143px;}
.y33{bottom:182.324400px;}
.y286{bottom:182.726550px;}
.y20d{bottom:183.422621px;}
.y1ca{bottom:185.618262px;}
.yef{bottom:185.640900px;}
.ya0{bottom:185.655931px;}
.y6c{bottom:185.686374px;}
.y254{bottom:187.694078px;}
.y30{bottom:190.887933px;}
.y20c{bottom:196.860653px;}
.y1c9{bottom:199.056295px;}
.y154{bottom:199.444591px;}
.y162{bottom:199.488526px;}
.y110{bottom:199.508229px;}
.y131{bottom:199.625390px;}
.y253{bottom:201.132111px;}
.y285{bottom:201.341550px;}
.y9f{bottom:203.596178px;}
.y6b{bottom:203.626621px;}
.y2f{bottom:208.828181px;}
.y20b{bottom:210.298685px;}
.y1c8{bottom:212.494327px;}
.y252{bottom:214.648597px;}
.y153{bottom:217.384838px;}
.y161{bottom:217.428773px;}
.y10f{bottom:217.448477px;}
.y130{bottom:217.565638px;}
.y284{bottom:219.956550px;}
.y9e{bottom:221.536426px;}
.y6a{bottom:221.566869px;}
.yee{bottom:221.672779px;}
.y20a{bottom:223.678772px;}
.y1c7{bottom:225.932359px;}
.y2e{bottom:226.680558px;}
.y251{bottom:228.086629px;}
.y152{bottom:235.325086px;}
.y160{bottom:235.369021px;}
.y10e{bottom:235.388724px;}
.y12f{bottom:235.505885px;}
.y209{bottom:237.139219px;}
.y1c6{bottom:239.370391px;}
.y9d{bottom:239.388803px;}
.y69{bottom:239.419246px;}
.yed{bottom:239.525155px;}
.y250{bottom:241.524662px;}
.y25{bottom:244.591515px;}
.y2d{bottom:244.620805px;}
.y208{bottom:250.655705px;}
.y283{bottom:251.346450px;}
.y1c5{bottom:252.886878px;}
.y151{bottom:253.265333px;}
.y15f{bottom:253.309268px;}
.y10d{bottom:253.328972px;}
.y12e{bottom:253.446133px;}
.y24f{bottom:254.962694px;}
.y9c{bottom:257.329050px;}
.y68{bottom:257.359493px;}
.yec{bottom:257.465403px;}
.y24{bottom:262.531763px;}
.y2c{bottom:262.561053px;}
.yc0{bottom:263.877150px;}
.y207{bottom:264.093738px;}
.y1c4{bottom:266.324910px;}
.y282{bottom:267.351150px;}
.y24e{bottom:268.400726px;}
.y150{bottom:271.205581px;}
.y15e{bottom:271.249516px;}
.y10c{bottom:271.269219px;}
.y12d{bottom:271.386380px;}
.y9b{bottom:275.272350px;}
.y67{bottom:275.299741px;}
.yeb{bottom:275.405650px;}
.y206{bottom:277.531770px;}
.y1c3{bottom:279.762942px;}
.y23{bottom:280.472010px;}
.y2b{bottom:280.501300px;}
.y24d{bottom:281.838758px;}
.y14f{bottom:289.145828px;}
.y15d{bottom:289.189763px;}
.y10b{bottom:289.209467px;}
.y12c{bottom:289.326628px;}
.y205{bottom:290.969802px;}
.y1c2{bottom:293.200975px;}
.y66{bottom:293.239988px;}
.yea{bottom:293.345898px;}
.y24c{bottom:295.276791px;}
.y22{bottom:298.412258px;}
.y2a{bottom:298.441548px;}
.y204{bottom:304.407835px;}
.y1c1{bottom:306.639007px;}
.y14e{bottom:307.086076px;}
.y15c{bottom:307.130011px;}
.y10a{bottom:307.149714px;}
.y12b{bottom:307.266875px;}
.y24b{bottom:308.793277px;}
.y65{bottom:311.180236px;}
.y9a{bottom:311.234717px;}
.ye9{bottom:311.286145px;}
.y21{bottom:316.352505px;}
.y29{bottom:316.381795px;}
.y203{bottom:317.845867px;}
.y1c0{bottom:320.077039px;}
.y24a{bottom:322.231309px;}
.y14d{bottom:324.938453px;}
.y15b{bottom:324.982388px;}
.y109{bottom:325.002091px;}
.y12a{bottom:325.119252px;}
.y64{bottom:329.120483px;}
.y99{bottom:329.174964px;}
.ye8{bottom:329.226393px;}
.y202{bottom:331.362353px;}
.y1bf{bottom:333.593525px;}
.y20{bottom:334.292753px;}
.y28{bottom:334.322043px;}
.y249{bottom:335.669342px;}
.y14c{bottom:342.878700px;}
.y15a{bottom:342.922635px;}
.y108{bottom:342.942339px;}
.y129{bottom:343.059499px;}
.y201{bottom:344.800385px;}
.y1be{bottom:347.031558px;}
.y63{bottom:347.060731px;}
.y98{bottom:347.115212px;}
.ye7{bottom:347.166640px;}
.y248{bottom:349.107374px;}
.y1f{bottom:352.233000px;}
.y27{bottom:352.262290px;}
.y200{bottom:358.238418px;}
.y1bd{bottom:360.469590px;}
.y107{bottom:360.882586px;}
.y128{bottom:360.999747px;}
.y247{bottom:362.545406px;}
.y62{bottom:365.000978px;}
.y97{bottom:365.055459px;}
.ye6{bottom:365.106888px;}
.y1e{bottom:370.091250px;}
.y26{bottom:370.114667px;}
.y1ff{bottom:371.676450px;}
.y246{bottom:375.983438px;}
.y106{bottom:378.822834px;}
.y127{bottom:378.939994px;}
.y18f{bottom:379.443288px;}
.y61{bottom:382.853355px;}
.y96{bottom:382.907836px;}
.ye5{bottom:382.959265px;}
.y1fe{bottom:385.114482px;}
.y1bc{bottom:387.345655px;}
.y245{bottom:389.499925px;}
.y18c{bottom:394.402469px;}
.y18e{bottom:394.412550px;}
.y105{bottom:396.763081px;}
.y126{bottom:396.880242px;}
.y1fd{bottom:398.552515px;}
.y18d{bottom:399.089700px;}
.y1bb{bottom:400.783687px;}
.y60{bottom:400.793603px;}
.y95{bottom:400.848084px;}
.ye4{bottom:400.899512px;}
.y244{bottom:402.937957px;}
.y18b{bottom:407.070377px;}
.y1fc{bottom:411.990547px;}
.y1ba{bottom:414.221719px;}
.y104{bottom:414.703329px;}
.y125{bottom:414.820489px;}
.y243{bottom:416.375989px;}
.y5f{bottom:418.733850px;}
.y94{bottom:418.788331px;}
.ye3{bottom:418.839760px;}
.y1d{bottom:420.130477px;}
.y18a{bottom:422.039639px;}
.y1fb{bottom:425.507033px;}
.y1b9{bottom:427.738205px;}
.y242{bottom:429.814022px;}
.y103{bottom:432.643576px;}
.y124{bottom:432.760737px;}
.y5e{bottom:436.677000px;}
.y93{bottom:436.728579px;}
.ye2{bottom:436.780007px;}
.y189{bottom:437.008900px;}
.y1fa{bottom:438.945065px;}
.y1b8{bottom:441.176238px;}
.y241{bottom:443.252054px;}
.y1c{bottom:445.550050px;}
.y102{bottom:450.583824px;}
.y123{bottom:450.700984px;}
.y188{bottom:451.978162px;}
.y1f9{bottom:452.383098px;}
.y1b7{bottom:454.614270px;}
.y5d{bottom:454.620450px;}
.y92{bottom:454.668826px;}
.ye1{bottom:454.720255px;}
.y240{bottom:456.690086px;}
.y1b{bottom:463.497674px;}
.y1f8{bottom:465.821130px;}
.y187{bottom:466.863738px;}
.y1b6{bottom:468.052302px;}
.y101{bottom:468.436201px;}
.y122{bottom:468.553361px;}
.y23f{bottom:470.150534px;}
.y91{bottom:472.609074px;}
.ybf{bottom:472.645472px;}
.ye0{bottom:472.660502px;}
.y1f7{bottom:479.259162px;}
.y1a{bottom:481.445298px;}
.y1b5{bottom:481.490335px;}
.y186{bottom:481.833000px;}
.y23e{bottom:483.667020px;}
.y100{bottom:486.376448px;}
.y121{bottom:486.493609px;}
.y90{bottom:490.549321px;}
.ybe{bottom:490.585719px;}
.ydf{bottom:490.600750px;}
.y5c{bottom:490.612960px;}
.y1f6{bottom:492.697195px;}
.y1b4{bottom:494.928367px;}
.y23d{bottom:497.105052px;}
.y185{bottom:502.379770px;}
.y19{bottom:503.816317px;}
.yff{bottom:504.316696px;}
.y120{bottom:504.433856px;}
.y1f5{bottom:506.213681px;}
.y1b3{bottom:508.444853px;}
.y8f{bottom:508.489569px;}
.ybd{bottom:508.525967px;}
.yde{bottom:508.540997px;}
.y5b{bottom:508.553207px;}
.y23c{bottom:510.543085px;}
.y1f4{bottom:519.651713px;}
.y184{bottom:520.324675px;}
.y18{bottom:521.763940px;}
.yfe{bottom:522.256943px;}
.y11f{bottom:522.374104px;}
.y23b{bottom:523.981117px;}
.y8e{bottom:526.341946px;}
.ybc{bottom:526.378344px;}
.ydd{bottom:526.393374px;}
.y5a{bottom:526.405584px;}
.y281{bottom:527.762514px;}
.y1f3{bottom:533.089745px;}
.y1b2{bottom:535.320918px;}
.y23a{bottom:537.419149px;}
.y183{bottom:538.185893px;}
.y17{bottom:539.711564px;}
.yfd{bottom:540.197191px;}
.y11e{bottom:540.314351px;}
.y280{bottom:540.428095px;}
.y8d{bottom:544.282193px;}
.ybb{bottom:544.318591px;}
.ydc{bottom:544.333622px;}
.y59{bottom:544.345832px;}
.y1f2{bottom:546.527778px;}
.y1af{bottom:548.757168px;}
.y1b1{bottom:548.758950px;}
.y239{bottom:550.857181px;}
.y27f{bottom:553.180950px;}
.y1b0{bottom:553.776300px;}
.y182{bottom:556.130798px;}
.y16{bottom:557.659188px;}
.yfc{bottom:558.137438px;}
.y11d{bottom:558.254599px;}
.y1f1{bottom:559.965810px;}
.y1ae{bottom:562.195200px;}
.y8c{bottom:562.222441px;}
.yba{bottom:562.258839px;}
.ydb{bottom:562.273869px;}
.y58{bottom:562.286079px;}
.y238{bottom:564.373668px;}
.y1ad{bottom:567.212400px;}
.y1f0{bottom:573.403842px;}
.y181{bottom:574.075704px;}
.y15{bottom:575.606812px;}
.y1ac{bottom:575.614842px;}
.yfb{bottom:576.077686px;}
.y11c{bottom:576.194846px;}
.y27e{bottom:577.722038px;}
.y237{bottom:577.811700px;}
.y8b{bottom:580.162688px;}
.yb9{bottom:580.199086px;}
.yda{bottom:580.214117px;}
.y57{bottom:580.226327px;}
.y1ef{bottom:586.841875px;}
.y27d{bottom:591.160071px;}
.y236{bottom:591.249732px;}
.y180{bottom:592.020609px;}
.y14{bottom:593.554436px;}
.yfa{bottom:594.017933px;}
.y11b{bottom:594.135094px;}
.y8a{bottom:598.102936px;}
.yb8{bottom:598.139334px;}
.yd9{bottom:598.154364px;}
.y56{bottom:598.166574px;}
.y1ee{bottom:600.358361px;}
.y1ab{bottom:602.569361px;}
.y27c{bottom:604.598103px;}
.y235{bottom:604.687765px;}
.y17f{bottom:609.965514px;}
.y13{bottom:611.412397px;}
.yf9{bottom:611.870310px;}
.y11a{bottom:611.987471px;}
.y1ed{bottom:613.796393px;}
.y1aa{bottom:616.007393px;}
.y89{bottom:616.043183px;}
.yb7{bottom:616.079581px;}
.yd8{bottom:616.094612px;}
.y55{bottom:616.106822px;}
.y27b{bottom:618.036135px;}
.y234{bottom:618.125797px;}
.y1ec{bottom:627.234425px;}
.y17e{bottom:627.910420px;}
.y12{bottom:629.360021px;}
.y1a9{bottom:629.445425px;}
.yf8{bottom:629.810558px;}
.y119{bottom:629.927718px;}
.y27a{bottom:631.474168px;}
.y233{bottom:631.563829px;}
.y88{bottom:633.983431px;}
.yb6{bottom:634.019829px;}
.yd7{bottom:634.034859px;}
.y54{bottom:634.047069px;}
.y1eb{bottom:640.672458px;}
.y1a8{bottom:642.883458px;}
.y279{bottom:644.912200px;}
.y232{bottom:645.001861px;}
.y17d{bottom:645.855325px;}
.y11{bottom:647.307644px;}
.yf7{bottom:647.750805px;}
.y118{bottom:647.867966px;}
.y87{bottom:651.923678px;}
.yb5{bottom:651.960076px;}
.yd6{bottom:651.975107px;}
.y53{bottom:651.987317px;}
.y1ea{bottom:654.110490px;}
.y1a7{bottom:656.321490px;}
.y278{bottom:658.428686px;}
.y231{bottom:658.518348px;}
.y17c{bottom:663.800230px;}
.yf6{bottom:665.691053px;}
.y117{bottom:665.808213px;}
.y1e9{bottom:667.548522px;}
.y10{bottom:669.753382px;}
.y1a6{bottom:669.759522px;}
.y86{bottom:669.776055px;}
.yb4{bottom:669.812453px;}
.yd5{bottom:669.827484px;}
.y52{bottom:669.839694px;}
.y277{bottom:671.866718px;}
.y230{bottom:671.956380px;}
.y1e8{bottom:681.065009px;}
.y17b{bottom:681.661448px;}
.y1a5{bottom:683.276009px;}
.yf5{bottom:683.631300px;}
.y116{bottom:683.748461px;}
.y276{bottom:685.304751px;}
.y22f{bottom:685.394412px;}
.yf{bottom:687.701006px;}
.y85{bottom:687.716302px;}
.yb3{bottom:687.752701px;}
.yd4{bottom:687.767731px;}
.y51{bottom:687.779941px;}
.y1e7{bottom:694.503041px;}
.y1a4{bottom:696.714041px;}
.y275{bottom:698.742783px;}
.y22e{bottom:698.832445px;}
.y17a{bottom:699.606354px;}
.ye{bottom:705.648630px;}
.y84{bottom:705.656550px;}
.yb2{bottom:705.692948px;}
.yd3{bottom:705.707979px;}
.y50{bottom:705.720189px;}
.y1e6{bottom:707.941073px;}
.y1a3{bottom:710.152073px;}
.y274{bottom:712.180815px;}
.y22d{bottom:712.270477px;}
.y179{bottom:717.551259px;}
.y14b{bottom:720.195888px;}
.y1e5{bottom:721.379105px;}
.yd{bottom:723.506591px;}
.y1a2{bottom:723.590105px;}
.y83{bottom:723.599850px;}
.yb1{bottom:723.633196px;}
.yd2{bottom:723.648226px;}
.y4f{bottom:723.660436px;}
.y273{bottom:725.618848px;}
.y22c{bottom:725.708509px;}
.y1e4{bottom:734.817138px;}
.y14a{bottom:735.165150px;}
.y1a1{bottom:737.028138px;}
.y178{bottom:737.361191px;}
.y272{bottom:739.135334px;}
.y22b{bottom:739.224995px;}
.yc{bottom:741.454214px;}
.yb0{bottom:741.573443px;}
.yd1{bottom:741.588474px;}
.y4e{bottom:741.600684px;}
.y1e3{bottom:748.255170px;}
.y1a0{bottom:750.466170px;}
.y271{bottom:752.573366px;}
.y22a{bottom:752.663028px;}
.y149{bottom:755.640779px;}
.y177{bottom:757.171123px;}
.yb{bottom:759.401838px;}
.yaf{bottom:759.513691px;}
.yd0{bottom:759.528721px;}
.y4d{bottom:759.540931px;}
.y82{bottom:759.598552px;}
.y1e2{bottom:761.693202px;}
.y19f{bottom:763.982656px;}
.y270{bottom:766.011398px;}
.y229{bottom:766.101060px;}
.y148{bottom:773.585684px;}
.y176{bottom:775.116029px;}
.y1e1{bottom:775.209689px;}
.y19e{bottom:777.420689px;}
.yae{bottom:777.453938px;}
.ycf{bottom:777.468969px;}
.y4c{bottom:777.481179px;}
.y81{bottom:777.538800px;}
.y26f{bottom:779.449431px;}
.y228{bottom:779.539092px;}
.ya{bottom:781.847576px;}
.y1e0{bottom:788.647721px;}
.y147{bottom:791.530589px;}
.y26e{bottom:792.887463px;}
.y227{bottom:792.977125px;}
.y175{bottom:793.060934px;}
.yad{bottom:795.394186px;}
.yce{bottom:795.409216px;}
.y4b{bottom:795.421426px;}
.y80{bottom:795.479047px;}
.y9{bottom:799.795200px;}
.y1df{bottom:802.085753px;}
.y19d{bottom:804.296753px;}
.y26d{bottom:806.325495px;}
.y226{bottom:806.415157px;}
.y146{bottom:809.475495px;}
.y174{bottom:810.922152px;}
.yac{bottom:813.246562px;}
.ycd{bottom:813.261593px;}
.y4a{bottom:813.273803px;}
.y7f{bottom:813.331424px;}
.y1de{bottom:815.523785px;}
.y19c{bottom:817.734785px;}
.y26c{bottom:819.763528px;}
.y225{bottom:819.853189px;}
.y8{bottom:826.667550px;}
.y145{bottom:827.420400px;}
.y173{bottom:828.867057px;}
.y1dd{bottom:828.961818px;}
.y19b{bottom:831.172818px;}
.yab{bottom:831.186810px;}
.ycc{bottom:831.201841px;}
.y49{bottom:831.214051px;}
.y7e{bottom:831.271672px;}
.y26b{bottom:833.280014px;}
.y224{bottom:833.369675px;}
.y1dc{bottom:842.399850px;}
.y199{bottom:844.610850px;}
.y144{bottom:845.365305px;}
.y26a{bottom:846.718046px;}
.y223{bottom:846.807708px;}
.y172{bottom:846.811963px;}
.yaa{bottom:849.127057px;}
.ycb{bottom:849.142088px;}
.y48{bottom:849.154298px;}
.y7d{bottom:849.211919px;}
.y19a{bottom:849.628200px;}
.y1db{bottom:855.872345px;}
.y197{bottom:858.124871px;}
.y269{bottom:860.156078px;}
.y222{bottom:860.245740px;}
.y198{bottom:863.064300px;}
.y143{bottom:863.310211px;}
.y171{bottom:864.756868px;}
.ya9{bottom:867.067305px;}
.yca{bottom:867.082336px;}
.y47{bottom:867.094546px;}
.y7c{bottom:867.152167px;}
.y196{bottom:871.562903px;}
.y268{bottom:873.594111px;}
.y221{bottom:873.683772px;}
.y142{bottom:881.171429px;}
.y170{bottom:882.701773px;}
.y6{bottom:884.232589px;}
.y195{bottom:885.000935px;}
.ya8{bottom:885.007552px;}
.yc9{bottom:885.022583px;}
.y46{bottom:885.034793px;}
.y7b{bottom:885.092414px;}
.y267{bottom:887.032143px;}
.y220{bottom:887.121805px;}
.y1da{bottom:887.253905px;}
.y7{bottom:891.467400px;}
.y194{bottom:898.438968px;}
.y141{bottom:899.116334px;}
.y266{bottom:900.470175px;}
.y21f{bottom:900.559837px;}
.y16f{bottom:900.646679px;}
.y1d9{bottom:900.691938px;}
.ya7{bottom:902.947800px;}
.yc8{bottom:902.962831px;}
.y45{bottom:902.975041px;}
.y7a{bottom:903.032662px;}
.y4{bottom:905.158800px;}
.y193{bottom:911.877000px;}
.y5{bottom:912.387150px;}
.y265{bottom:913.986662px;}
.y21e{bottom:914.076323px;}
.y140{bottom:917.061239px;}
.y16e{bottom:918.591584px;}
.ya6{bottom:920.891100px;}
.yc7{bottom:920.903078px;}
.y44{bottom:920.915288px;}
.y79{bottom:920.972909px;}
.y264{bottom:927.424694px;}
.y21d{bottom:927.514355px;}
.y1d8{bottom:927.568002px;}
.y13f{bottom:935.006145px;}
.y16d{bottom:936.536489px;}
.yc6{bottom:938.843326px;}
.y43{bottom:938.855536px;}
.y78{bottom:938.913157px;}
.y263{bottom:940.873934px;}
.y3{bottom:940.945415px;}
.y21c{bottom:940.952388px;}
.y1d7{bottom:941.006035px;}
.y13c{bottom:952.949039px;}
.y13e{bottom:952.951050px;}
.y262{bottom:954.311966px;}
.y21b{bottom:954.390420px;}
.y16c{bottom:954.397707px;}
.yc5{bottom:956.695703px;}
.y42{bottom:956.707912px;}
.y77{bottom:956.765534px;}
.y13d{bottom:958.223400px;}
.y261{bottom:967.749998px;}
.y21a{bottom:967.828452px;}
.y1d6{bottom:967.960553px;}
.y13b{bottom:970.893944px;}
.y16b{bottom:972.342613px;}
.yc4{bottom:974.635950px;}
.y41{bottom:974.648160px;}
.y76{bottom:974.705781px;}
.y2{bottom:979.823400px;}
.y260{bottom:981.188031px;}
.y219{bottom:981.266485px;}
.y1d5{bottom:981.398585px;}
.y13a{bottom:988.838850px;}
.y16a{bottom:992.152545px;}
.yc3{bottom:992.579250px;}
.y40{bottom:992.588407px;}
.y75{bottom:992.646029px;}
.y25f{bottom:994.704517px;}
.y218{bottom:994.782971px;}
.y1d4{bottom:994.836618px;}
.y25e{bottom:1008.142549px;}
.y217{bottom:1008.221003px;}
.y1d3{bottom:1008.274650px;}
.y139{bottom:1008.565095px;}
.y169{bottom:1010.097450px;}
.y3f{bottom:1010.528655px;}
.y74{bottom:1010.586276px;}
.y25d{bottom:1021.580582px;}
.y216{bottom:1021.659035px;}
.y1d2{bottom:1021.712682px;}
.y138{bottom:1026.510000px;}
.y3e{bottom:1028.468903px;}
.yc2{bottom:1028.496081px;}
.y73{bottom:1028.526524px;}
.y168{bottom:1029.915771px;}
.y25c{bottom:1035.018614px;}
.y215{bottom:1035.097068px;}
.y1d1{bottom:1035.150715px;}
.y1{bottom:1036.629600px;}
.y137{bottom:1046.324100px;}
.y3d{bottom:1046.409150px;}
.yc1{bottom:1046.436328px;}
.y72{bottom:1046.466771px;}
.y25b{bottom:1048.456646px;}
.y214{bottom:1048.535100px;}
.y1d0{bottom:1048.588747px;}
.y28e{bottom:1053.000000px;}
.y28d{bottom:1080.000000px;}
.y28c{bottom:1107.000000px;}
.y39{bottom:1115.203651px;}
.y38{bottom:1130.088000px;}
.h11{height:20.109411px;}
.ha{height:21.545643px;}
.h10{height:22.982740px;}
.he{height:28.271186px;}
.h16{height:28.350000px;}
.hc{height:30.168659px;}
.h15{height:31.089600px;}
.h13{height:31.462133px;}
.h5{height:31.602295px;}
.h9{height:32.323007px;}
.h12{height:32.554792px;}
.hb{height:34.479085px;}
.hf{height:38.788214px;}
.hd{height:39.649953px;}
.h14{height:40.651938px;}
.h8{height:42.412210px;}
.h7{height:43.098208px;}
.h6{height:44.390816px;}
.h4{height:47.408634px;}
.h2{height:56.028189px;}
.h18{height:70.664062px;}
.h3{height:103.435525px;}
.h17{height:1188.000000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w2{width:918.000000px;}
.x0{left:0.000000px;}
.x25{left:54.000000px;}
.x2{left:85.039350px;}
.x11{left:89.036250px;}
.x1{left:90.396900px;}
.xe{left:94.733850px;}
.x13{left:97.033687px;}
.x1a{left:107.493402px;}
.x21{left:115.228350px;}
.x22{left:119.225250px;}
.x18{left:134.957400px;}
.x19{left:139.294500px;}
.x1f{left:148.138500px;}
.x20{left:157.492950px;}
.x3{left:175.436250px;}
.x4{left:181.048800px;}
.xd{left:256.818900px;}
.x12{left:267.873900px;}
.x17{left:296.265590px;}
.x5{left:302.144850px;}
.x1c{left:304.440900px;}
.x6{left:307.757400px;}
.x1b{left:344.834550px;}
.x1d{left:348.491250px;}
.x1e{left:416.437800px;}
.x15{left:422.220450px;}
.x16{left:427.833000px;}
.x7{left:433.190400px;}
.x8{left:438.803100px;}
.xf{left:457.083470px;}
.x24{left:465.335250px;}
.x10{left:469.077807px;}
.x23{left:479.530958px;}
.x9{left:566.277000px;}
.xa{left:571.889700px;}
.xb{left:734.825100px;}
.xc{left:745.710000px;}
.x14{left:749.192131px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa7{letter-spacing:-0.010414pt;}
.ls51{letter-spacing:-0.005207pt;}
.ls10{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.005207pt;}
.ls3{letter-spacing:0.010414pt;}
.ls5f{letter-spacing:0.015621pt;}
.lsc6{letter-spacing:0.031243pt;}
.lscb{letter-spacing:0.039850pt;}
.lscf{letter-spacing:0.079699pt;}
.lsb{letter-spacing:0.104143pt;}
.lscc{letter-spacing:0.119549pt;}
.lsd0{letter-spacing:0.159398pt;}
.lsca{letter-spacing:0.199248pt;}
.ls11{letter-spacing:0.368217pt;}
.ls7f{letter-spacing:0.411365pt;}
.ls88{letter-spacing:0.453022pt;}
.ls83{letter-spacing:0.479057pt;}
.ls84{letter-spacing:0.499886pt;}
.ls8d{letter-spacing:0.505093pt;}
.ls73{letter-spacing:0.510300pt;}
.ls85{letter-spacing:0.525922pt;}
.lsa8{letter-spacing:0.531129pt;}
.ls56{letter-spacing:0.541543pt;}
.lsa0{letter-spacing:0.546750pt;}
.ls3b{letter-spacing:0.551958pt;}
.ls1c{letter-spacing:0.557165pt;}
.ls6a{letter-spacing:0.567579pt;}
.ls91{letter-spacing:0.572786pt;}
.ls1{letter-spacing:0.577993pt;}
.ls62{letter-spacing:0.583200pt;}
.ls67{letter-spacing:0.593615pt;}
.ls4a{letter-spacing:0.598822pt;}
.lsc7{letter-spacing:0.604029pt;}
.ls39{letter-spacing:0.609236pt;}
.lsb7{letter-spacing:0.614443pt;}
.ls34{letter-spacing:0.619650pt;}
.ls19{letter-spacing:0.624858pt;}
.ls27{letter-spacing:0.630065pt;}
.ls33{letter-spacing:0.635272pt;}
.ls49{letter-spacing:0.640479pt;}
.ls37{letter-spacing:0.661308pt;}
.ls58{letter-spacing:0.666515pt;}
.ls26{letter-spacing:0.676929pt;}
.ls1b{letter-spacing:0.687343pt;}
.ls50{letter-spacing:0.713379pt;}
.ls59{letter-spacing:0.729001pt;}
.ls9d{letter-spacing:0.734208pt;}
.ls7e{letter-spacing:0.744622pt;}
.ls6f{letter-spacing:0.755036pt;}
.ls2b{letter-spacing:0.760243pt;}
.ls8f{letter-spacing:0.781072pt;}
.ls52{letter-spacing:0.796693pt;}
.ls2e{letter-spacing:0.807108pt;}
.lsa5{letter-spacing:0.817522pt;}
.lsc0{letter-spacing:0.822729pt;}
.lsa{letter-spacing:0.827936pt;}
.ls48{letter-spacing:0.833143pt;}
.ls70{letter-spacing:0.838351pt;}
.ls9{letter-spacing:0.848765pt;}
.ls8a{letter-spacing:0.859179pt;}
.lsc3{letter-spacing:0.864386pt;}
.ls17{letter-spacing:0.869593pt;}
.ls8b{letter-spacing:0.874801pt;}
.ls14{letter-spacing:0.880008pt;}
.ls95{letter-spacing:0.890422pt;}
.ls46{letter-spacing:0.900836pt;}
.ls29{letter-spacing:0.906044pt;}
.ls1e{letter-spacing:0.916458pt;}
.lsa1{letter-spacing:0.937286pt;}
.ls35{letter-spacing:0.942494pt;}
.ls40{letter-spacing:0.947701pt;}
.ls6c{letter-spacing:0.952908pt;}
.ls75{letter-spacing:0.963322pt;}
.ls72{letter-spacing:0.968529pt;}
.ls38{letter-spacing:0.973736pt;}
.ls8{letter-spacing:0.978944pt;}
.ls92{letter-spacing:0.994565pt;}
.ls9e{letter-spacing:1.025808pt;}
.lsab{letter-spacing:1.041429pt;}
.lsb5{letter-spacing:1.046636pt;}
.ls4c{letter-spacing:1.072672pt;}
.ls78{letter-spacing:1.077879pt;}
.ls71{letter-spacing:1.093501pt;}
.lsbe{letter-spacing:1.103915pt;}
.ls42{letter-spacing:1.119537pt;}
.lsc8{letter-spacing:1.124744pt;}
.ls94{letter-spacing:1.129951pt;}
.ls66{letter-spacing:1.135158pt;}
.ls9b{letter-spacing:1.145572pt;}
.ls96{letter-spacing:1.150779pt;}
.ls1d{letter-spacing:1.155987pt;}
.lsbf{letter-spacing:1.171608pt;}
.ls4{letter-spacing:1.182022pt;}
.lsaa{letter-spacing:1.192437pt;}
.ls5{letter-spacing:1.202851pt;}
.lsc1{letter-spacing:1.208058pt;}
.ls2c{letter-spacing:1.213265pt;}
.ls36{letter-spacing:1.218472pt;}
.ls4b{letter-spacing:1.228887pt;}
.ls32{letter-spacing:1.249715pt;}
.ls3f{letter-spacing:1.275751pt;}
.ls2f{letter-spacing:1.296580pt;}
.ls69{letter-spacing:1.306994pt;}
.ls7b{letter-spacing:1.317408pt;}
.ls15{letter-spacing:1.364272pt;}
.ls6e{letter-spacing:1.385101pt;}
.ls6d{letter-spacing:1.400722pt;}
.ls90{letter-spacing:1.405930pt;}
.lsb4{letter-spacing:1.437172pt;}
.ls57{letter-spacing:1.463208pt;}
.lsc2{letter-spacing:1.468415pt;}
.ls82{letter-spacing:1.478830pt;}
.lsad{letter-spacing:1.494451pt;}
.ls79{letter-spacing:1.525694pt;}
.lsaf{letter-spacing:1.541315pt;}
.ls20{letter-spacing:1.562144pt;}
.lsb2{letter-spacing:1.572558pt;}
.ls3a{letter-spacing:1.577765pt;}
.ls25{letter-spacing:1.588180pt;}
.ls7d{letter-spacing:1.603801pt;}
.ls5a{letter-spacing:1.614215pt;}
.ls80{letter-spacing:1.635044pt;}
.ls41{letter-spacing:1.645458pt;}
.ls5c{letter-spacing:1.655873pt;}
.lsc5{letter-spacing:1.661080pt;}
.ls5b{letter-spacing:1.676701pt;}
.lsc4{letter-spacing:1.687116pt;}
.lsbc{letter-spacing:1.692323pt;}
.ls22{letter-spacing:1.702737pt;}
.ls5e{letter-spacing:1.713151pt;}
.ls53{letter-spacing:1.718358pt;}
.ls23{letter-spacing:1.739187pt;}
.lsa9{letter-spacing:1.744394pt;}
.ls81{letter-spacing:1.754808pt;}
.ls2d{letter-spacing:1.786051pt;}
.ls3e{letter-spacing:1.791258pt;}
.ls13{letter-spacing:1.796466pt;}
.ls7{letter-spacing:1.812087pt;}
.ls21{letter-spacing:1.817294pt;}
.lsa3{letter-spacing:1.822501pt;}
.ls9f{letter-spacing:1.827708pt;}
.ls9a{letter-spacing:1.843330pt;}
.ls99{letter-spacing:1.853744pt;}
.ls18{letter-spacing:1.858951pt;}
.ls68{letter-spacing:1.864159pt;}
.ls89{letter-spacing:1.890194pt;}
.ls7a{letter-spacing:1.911023pt;}
.lsa4{letter-spacing:1.937059pt;}
.ls76{letter-spacing:1.952680pt;}
.ls98{letter-spacing:1.957887pt;}
.lsb8{letter-spacing:1.989130pt;}
.lsbd{letter-spacing:2.025580pt;}
.ls2{letter-spacing:2.062030pt;}
.ls61{letter-spacing:2.072444pt;}
.ls3d{letter-spacing:2.093273pt;}
.ls24{letter-spacing:2.124516pt;}
.ls65{letter-spacing:2.129723pt;}
.ls1f{letter-spacing:2.160966pt;}
.lsb6{letter-spacing:2.166173pt;}
.ls5d{letter-spacing:2.171380pt;}
.ls74{letter-spacing:2.176587pt;}
.lsba{letter-spacing:2.187002pt;}
.lsac{letter-spacing:2.213037pt;}
.ls9c{letter-spacing:2.218244pt;}
.lse{letter-spacing:2.223452pt;}
.ls60{letter-spacing:2.233866pt;}
.lsc{letter-spacing:2.280730pt;}
.ls16{letter-spacing:2.374459pt;}
.ls63{letter-spacing:2.410909pt;}
.ls28{letter-spacing:2.416116pt;}
.ls45{letter-spacing:2.431737pt;}
.ls3c{letter-spacing:2.457773pt;}
.ls0{letter-spacing:2.535880pt;}
.ls6b{letter-spacing:2.541088pt;}
.ls8c{letter-spacing:2.556709pt;}
.ls43{letter-spacing:2.561916pt;}
.lsa2{letter-spacing:2.593159pt;}
.ls2a{letter-spacing:2.603573pt;}
.ls1a{letter-spacing:2.608780pt;}
.ls8e{letter-spacing:2.619195pt;}
.ls64{letter-spacing:2.624402pt;}
.lsa6{letter-spacing:2.629609pt;}
.ls7c{letter-spacing:2.634816pt;}
.ls44{letter-spacing:2.640023pt;}
.ls31{letter-spacing:2.650438pt;}
.ls47{letter-spacing:2.655645pt;}
.ls12{letter-spacing:2.660852pt;}
.ls97{letter-spacing:2.666059pt;}
.ls77{letter-spacing:2.671266pt;}
.ls4d{letter-spacing:2.681681pt;}
.ls30{letter-spacing:2.692095pt;}
.ls86{letter-spacing:2.697302pt;}
.ls93{letter-spacing:2.702509pt;}
.lsae{letter-spacing:3.025352pt;}
.lsb1{letter-spacing:3.645003pt;}
.lsb0{letter-spacing:3.665831pt;}
.lsb3{letter-spacing:3.676246pt;}
.lscd{letter-spacing:13.150368pt;}
.lsc9{letter-spacing:13.230067pt;}
.lsd1{letter-spacing:13.429315pt;}
.lsce{letter-spacing:13.469165pt;}
.lsf{letter-spacing:13.985044pt;}
.ls55{letter-spacing:18.865492pt;}
.ls4e{letter-spacing:19.052950pt;}
.ls87{letter-spacing:20.094379pt;}
.ls4f{letter-spacing:20.234972pt;}
.ls54{letter-spacing:20.261008pt;}
.lsb9{letter-spacing:20.516158pt;}
.lsd{letter-spacing:22.182445pt;}
.lsbb{letter-spacing:23.374881pt;}
.wsb8{word-spacing:-23.426953pt;}
.wsb3{word-spacing:-20.568229pt;}
.ws6a{word-spacing:-20.313079pt;}
.ws37{word-spacing:-20.287043pt;}
.ws98{word-spacing:-20.146450pt;}
.ws33{word-spacing:-19.105021pt;}
.ws6b{word-spacing:-18.917564pt;}
.wsea{word-spacing:-9.340800pt;}
.ws22{word-spacing:-2.332802pt;}
.ws76{word-spacing:-0.781072pt;}
.ws6{word-spacing:-0.054727pt;}
.ws21{word-spacing:-0.052071pt;}
.ws29{word-spacing:-0.042508pt;}
.wsd5{word-spacing:-0.039850pt;}
.wse3{word-spacing:-0.038788pt;}
.ws2d{word-spacing:0.000000pt;}
.ws2a{word-spacing:9.562475pt;}
.wsc6{word-spacing:12.236694pt;}
.wsc8{word-spacing:12.311082pt;}
.wsc3{word-spacing:12.348275pt;}
.wsc5{word-spacing:12.422662pt;}
.wse5{word-spacing:12.451034pt;}
.wsc2{word-spacing:12.459856pt;}
.wsaf{word-spacing:12.497050pt;}
.wsc7{word-spacing:12.534243pt;}
.ws2c{word-spacing:12.608630pt;}
.wsce{word-spacing:12.645824pt;}
.wse6{word-spacing:12.722551pt;}
.wsc4{word-spacing:12.794598pt;}
.wse4{word-spacing:12.800128pt;}
.wsdc{word-spacing:12.871421pt;}
.wse2{word-spacing:12.951120pt;}
.ws2b{word-spacing:12.980566pt;}
.wsdf{word-spacing:12.990970pt;}
.wse8{word-spacing:12.994069pt;}
.wse0{word-spacing:13.030819pt;}
.wse9{word-spacing:13.032858pt;}
.wsdd{word-spacing:13.070669pt;}
.wse7{word-spacing:13.071646pt;}
.wsda{word-spacing:13.110518pt;}
.ws25{word-spacing:13.150368pt;}
.ws24{word-spacing:13.190218pt;}
.wsdb{word-spacing:13.230067pt;}
.wsd6{word-spacing:13.269917pt;}
.wsd2{word-spacing:13.309766pt;}
.ws23{word-spacing:13.349616pt;}
.wsd4{word-spacing:13.389466pt;}
.wsd9{word-spacing:13.429315pt;}
.wsd1{word-spacing:13.469165pt;}
.wsd8{word-spacing:13.509014pt;}
.wsd0{word-spacing:13.548864pt;}
.wsd7{word-spacing:13.588714pt;}
.wsc0{word-spacing:13.602475pt;}
.wsde{word-spacing:13.628563pt;}
.wsd3{word-spacing:13.668413pt;}
.ws28{word-spacing:13.729998pt;}
.wsaa{word-spacing:13.772506pt;}
.wsae{word-spacing:13.815013pt;}
.ws72{word-spacing:13.857521pt;}
.wsc1{word-spacing:13.900029pt;}
.ws26{word-spacing:13.942537pt;}
.ws27{word-spacing:13.985044pt;}
.ws80{word-spacing:14.007225pt;}
.wscd{word-spacing:14.027552pt;}
.wsad{word-spacing:14.070060pt;}
.ws7e{word-spacing:14.460246pt;}
.ws83{word-spacing:14.527939pt;}
.ws81{word-spacing:14.585218pt;}
.ws82{word-spacing:14.746639pt;}
.ws7f{word-spacing:14.767468pt;}
.wsa9{word-spacing:15.876329pt;}
.wscc{word-spacing:15.924149pt;}
.wsbf{word-spacing:15.971969pt;}
.ws5e{word-spacing:16.131280pt;}
.wsbe{word-spacing:16.163250pt;}
.ws73{word-spacing:16.229045pt;}
.ws4a{word-spacing:16.277928pt;}
.ws6c{word-spacing:16.326811pt;}
.ws5c{word-spacing:16.767012pt;}
.wsb1{word-spacing:16.876362pt;}
.wsca{word-spacing:16.933641pt;}
.ws90{word-spacing:16.944055pt;}
.ws59{word-spacing:16.959677pt;}
.ws1a{word-spacing:16.975298pt;}
.ws5a{word-spacing:17.027370pt;}
.wsb4{word-spacing:17.074234pt;}
.ws48{word-spacing:17.079441pt;}
.wsb5{word-spacing:17.100270pt;}
.wsba{word-spacing:17.126305pt;}
.ws95{word-spacing:17.131513pt;}
.ws7b{word-spacing:17.141927pt;}
.ws61{word-spacing:17.147134pt;}
.ws14{word-spacing:17.152341pt;}
.wsb0{word-spacing:17.157548pt;}
.ws63{word-spacing:17.167963pt;}
.wsa2{word-spacing:17.178377pt;}
.ws44{word-spacing:17.183584pt;}
.ws68{word-spacing:17.199205pt;}
.wscf{word-spacing:17.204413pt;}
.ws64{word-spacing:17.209620pt;}
.wsb2{word-spacing:17.214827pt;}
.ws60{word-spacing:17.225241pt;}
.ws86{word-spacing:17.230448pt;}
.ws45{word-spacing:17.235655pt;}
.ws87{word-spacing:17.246070pt;}
.ws17{word-spacing:17.251277pt;}
.ws32{word-spacing:17.256484pt;}
.ws9d{word-spacing:17.261691pt;}
.ws8c{word-spacing:17.266898pt;}
.ws1e{word-spacing:17.272105pt;}
.ws16{word-spacing:17.277313pt;}
.ws47{word-spacing:17.282520pt;}
.ws36{word-spacing:17.287727pt;}
.ws8b{word-spacing:17.292934pt;}
.ws7c{word-spacing:17.298141pt;}
.ws3d{word-spacing:17.303348pt;}
.ws3f{word-spacing:17.308556pt;}
.ws49{word-spacing:17.313763pt;}
.ws74{word-spacing:17.318970pt;}
.ws69{word-spacing:17.324177pt;}
.ws31{word-spacing:17.329384pt;}
.ws96{word-spacing:17.334591pt;}
.ws42{word-spacing:17.339798pt;}
.ws1f{word-spacing:17.345006pt;}
.ws1c{word-spacing:17.350213pt;}
.ws34{word-spacing:17.355420pt;}
.ws51{word-spacing:17.360627pt;}
.ws41{word-spacing:17.365834pt;}
.ws4f{word-spacing:17.371041pt;}
.ws5f{word-spacing:17.376248pt;}
.ws65{word-spacing:17.381456pt;}
.ws39{word-spacing:17.386663pt;}
.ws58{word-spacing:17.391870pt;}
.ws30{word-spacing:17.397077pt;}
.ws84{word-spacing:17.402284pt;}
.wsf{word-spacing:17.407491pt;}
.wsbc{word-spacing:17.412698pt;}
.ws9c{word-spacing:17.417906pt;}
.ws5b{word-spacing:17.423113pt;}
.ws8{word-spacing:17.427908pt;}
.ws4d{word-spacing:17.428320pt;}
.ws3e{word-spacing:17.433527pt;}
.ws4c{word-spacing:17.438734pt;}
.ws4b{word-spacing:17.443941pt;}
.ws55{word-spacing:17.449148pt;}
.wsbd{word-spacing:17.454356pt;}
.ws8a{word-spacing:17.459563pt;}
.ws70{word-spacing:17.464770pt;}
.ws79{word-spacing:17.469977pt;}
.ws46{word-spacing:17.475184pt;}
.ws52{word-spacing:17.480391pt;}
.ws3b{word-spacing:17.485599pt;}
.ws19{word-spacing:17.490806pt;}
.ws92{word-spacing:17.496013pt;}
.ws8f{word-spacing:17.506427pt;}
.ws9a{word-spacing:17.511634pt;}
.ws6f{word-spacing:17.516841pt;}
.ws2f{word-spacing:17.522049pt;}
.ws8e{word-spacing:17.527256pt;}
.ws89{word-spacing:17.532463pt;}
.wsbb{word-spacing:17.537670pt;}
.ws11{word-spacing:17.542877pt;}
.ws20{word-spacing:17.548084pt;}
.ws85{word-spacing:17.553291pt;}
.ws75{word-spacing:17.558499pt;}
.ws40{word-spacing:17.563706pt;}
.wsa5{word-spacing:17.568913pt;}
.ws62{word-spacing:17.574120pt;}
.ws8d{word-spacing:17.584534pt;}
.ws1b{word-spacing:17.594949pt;}
.ws10{word-spacing:17.600156pt;}
.ws1d{word-spacing:17.610570pt;}
.ws9b{word-spacing:17.615777pt;}
.ws6d{word-spacing:17.626191pt;}
.wsd{word-spacing:17.640444pt;}
.ws78{word-spacing:17.641813pt;}
.ws4e{word-spacing:17.652227pt;}
.wsc9{word-spacing:17.657434pt;}
.wsa7{word-spacing:17.662641pt;}
.ws7{word-spacing:17.693578pt;}
.ws5d{word-spacing:17.704299pt;}
.ws7a{word-spacing:17.709506pt;}
.wsb{word-spacing:17.746711pt;}
.ws9e{word-spacing:17.756370pt;}
.ws9{word-spacing:17.799845pt;}
.wsa4{word-spacing:17.803234pt;}
.ws38{word-spacing:17.808442pt;}
.ws91{word-spacing:17.834477pt;}
.wse{word-spacing:17.852979pt;}
.ws3a{word-spacing:17.855306pt;}
.ws43{word-spacing:17.860513pt;}
.wsa3{word-spacing:17.902170pt;}
.ws15{word-spacing:17.912585pt;}
.wsc{word-spacing:17.959247pt;}
.ws77{word-spacing:17.964656pt;}
.ws35{word-spacing:18.016727pt;}
.ws13{word-spacing:18.068799pt;}
.wsa{word-spacing:18.118649pt;}
.ws88{word-spacing:18.120870pt;}
.ws54{word-spacing:18.172942pt;}
.ws12{word-spacing:18.225013pt;}
.ws3c{word-spacing:18.277085pt;}
.ws18{word-spacing:18.329156pt;}
.wsa1{word-spacing:18.355192pt;}
.ws53{word-spacing:18.381228pt;}
.ws50{word-spacing:18.537442pt;}
.wsa6{word-spacing:18.683242pt;}
.wsb6{word-spacing:18.776971pt;}
.ws97{word-spacing:18.849871pt;}
.ws4{word-spacing:19.170944pt;}
.ws9f{word-spacing:19.198750pt;}
.ws2e{word-spacing:19.261236pt;}
.ws56{word-spacing:19.282064pt;}
.ws3{word-spacing:19.521632pt;}
.ws6e{word-spacing:19.578871pt;}
.ws2{word-spacing:19.696976pt;}
.ws5{word-spacing:20.047664pt;}
.wsa8{word-spacing:20.854622pt;}
.ws93{word-spacing:21.021251pt;}
.ws94{word-spacing:21.359716pt;}
.wsb7{word-spacing:21.817945pt;}
.wsa0{word-spacing:22.187652pt;}
.ws71{word-spacing:23.145767pt;}
.wscb{word-spacing:23.312396pt;}
.ws0{word-spacing:23.485387pt;}
.wsb9{word-spacing:23.661274pt;}
.ws67{word-spacing:24.437139pt;}
.ws66{word-spacing:24.775604pt;}
.ws57{word-spacing:27.446870pt;}
.ws99{word-spacing:28.868421pt;}
.ws7d{word-spacing:30.503465pt;}
.wse1{word-spacing:39.343367pt;}
.ws1{word-spacing:42.719557pt;}
.wsac{word-spacing:156.173412pt;}
.wsab{word-spacing:172.113812pt;}
._2d{margin-left:-21.349301pt;}
._2c{margin-left:-20.203729pt;}
._d{margin-left:-19.162300pt;}
._c{margin-left:-18.120870pt;}
._f{margin-left:-17.183584pt;}
._9{margin-left:-1.147709pt;}
._3{width:1.052064pt;}
._0{width:7.529139pt;}
._a{width:10.876438pt;}
._50{width:12.512774pt;}
._b{width:13.575664pt;}
._8{width:14.465405pt;}
._10{width:15.829726pt;}
._5{width:17.066585pt;}
._4{width:18.437452pt;}
._6{width:19.526800pt;}
._7{width:20.661958pt;}
._11{width:23.119731pt;}
._2e{width:26.452305pt;}
._e{width:29.212093pt;}
._52{width:39.251856pt;}
._2{width:41.954431pt;}
._1f{width:44.973182pt;}
._22{width:45.908352pt;}
._1a{width:51.859435pt;}
._4f{width:54.962499pt;}
._41{width:56.110208pt;}
._48{width:57.257917pt;}
._51{width:58.339814pt;}
._23{width:60.105935pt;}
._4c{width:62.528876pt;}
._2f{width:63.761600pt;}
._14{width:65.461909pt;}
._20{width:66.354572pt;}
._4b{width:67.884850pt;}
._1d{width:72.220639pt;}
._4a{width:74.856118pt;}
._39{width:76.131350pt;}
._4e{width:82.252464pt;}
._3b{width:83.825250pt;}
._1b{width:86.418222pt;}
._3c{width:88.501101pt;}
._2b{width:91.731689pt;}
._25{width:92.794382pt;}
._45{width:94.537199pt;}
._3d{width:96.237508pt;}
._35{width:102.698684pt;}
._26{width:106.991965pt;}
._42{width:110.477599pt;}
._4d{width:114.898403pt;}
._30{width:118.639084pt;}
._3e{width:123.059888pt;}
._34{width:158.766384pt;}
._29{width:163.357219pt;}
._18{width:170.413503pt;}
._44{width:171.773750pt;}
._24{width:175.046846pt;}
._16{width:186.353903pt;}
._2a{width:192.560032pt;}
._46{width:220.020028pt;}
._13{width:221.507798pt;}
._37{width:228.479067pt;}
._36{width:233.324948pt;}
._43{width:235.960428pt;}
._33{width:236.853090pt;}
._40{width:240.806309pt;}
._32{width:244.419467pt;}
._31{width:249.307856pt;}
._3f{width:253.686153pt;}
._21{width:281.486210pt;}
._15{width:288.627509pt;}
._28{width:304.525402pt;}
._3a{width:373.047868pt;}
._27{width:383.164708pt;}
._49{width:386.012726pt;}
._38{width:388.775729pt;}
._47{width:401.783095pt;}
._19{width:429.625661pt;}
._1e{width:478.068780pt;}
._12{width:502.016331pt;}
._17{width:534.506274pt;}
._1c{width:547.117036pt;}
._1{width:1766.584600pt;}
.fsf{font-size:24.792000pt;}
.fs8{font-size:26.562667pt;}
.fse{font-size:28.334400pt;}
.fs13{font-size:33.600000pt;}
.fsc{font-size:34.709867pt;}
.fs12{font-size:36.266667pt;}
.fsa{font-size:37.193600pt;}
.fs10{font-size:38.788267pt;}
.fs3{font-size:38.961067pt;}
.fs7{font-size:39.849600pt;}
.fs9{font-size:42.507733pt;}
.fs11{font-size:47.421333pt;}
.fsd{font-size:47.820267pt;}
.fsb{font-size:48.882667pt;}
.fs6{font-size:52.071467pt;}
.fs5{font-size:53.133867pt;}
.fs4{font-size:54.727467pt;}
.fs2{font-size:58.448000pt;}
.fs14{font-size:64.000000pt;}
.fs0{font-size:69.074667pt;}
.fs1{font-size:127.521067pt;}
.y0{bottom:0.000000pt;}
.y28b{bottom:74.532267pt;}
.y3c{bottom:81.867921pt;}
.y28a{bottom:83.864667pt;}
.yf4{bottom:85.276987pt;}
.ya5{bottom:85.293061pt;}
.y71{bottom:85.320121pt;}
.y213{bottom:91.303087pt;}
.y3b{bottom:92.449500pt;}
.y25a{bottom:95.099938pt;}
.y192{bottom:97.590047pt;}
.y159{bottom:97.627754pt;}
.y167{bottom:97.666808pt;}
.y115{bottom:97.684322pt;}
.y136{bottom:97.788465pt;}
.yf3{bottom:101.223873pt;}
.ya4{bottom:101.239947pt;}
.y70{bottom:101.267008pt;}
.y3a{bottom:103.105467pt;}
.y212{bottom:103.248005pt;}
.y1cf{bottom:105.199686pt;}
.y259{bottom:107.044856pt;}
.y289{bottom:112.783600pt;}
.y191{bottom:113.536933pt;}
.y158{bottom:113.574641pt;}
.y166{bottom:113.613695pt;}
.y114{bottom:113.631209pt;}
.y135{bottom:113.735352pt;}
.y211{bottom:115.192922pt;}
.y1ce{bottom:117.144604pt;}
.yf2{bottom:117.170760pt;}
.ya3{bottom:117.186834pt;}
.y6f{bottom:117.213894pt;}
.y258{bottom:119.059510pt;}
.y37{bottom:126.163228pt;}
.y210{bottom:127.137840pt;}
.y1cd{bottom:129.089521pt;}
.y288{bottom:129.330267pt;}
.y190{bottom:129.486533pt;}
.y157{bottom:129.521528pt;}
.y165{bottom:129.560581pt;}
.y113{bottom:129.578095pt;}
.y134{bottom:129.682238pt;}
.y257{bottom:131.004428pt;}
.yf1{bottom:133.117647pt;}
.ya2{bottom:133.133721pt;}
.y6e{bottom:133.160781pt;}
.y32{bottom:137.784390pt;}
.y36{bottom:138.177882pt;}
.y20f{bottom:139.082758pt;}
.y1cc{bottom:141.104176pt;}
.y256{bottom:142.949346pt;}
.y156{bottom:145.468414pt;}
.y164{bottom:145.507468pt;}
.y112{bottom:145.524982pt;}
.y133{bottom:145.629125pt;}
.y287{bottom:145.876933pt;}
.yf0{bottom:149.064533pt;}
.ya1{bottom:149.080607pt;}
.y6d{bottom:149.107668pt;}
.y35{bottom:150.122800pt;}
.y20e{bottom:151.097412pt;}
.y1cb{bottom:153.049093pt;}
.y31{bottom:153.731276pt;}
.y34{bottom:154.507067pt;}
.y255{bottom:154.894263pt;}
.y155{bottom:161.337194pt;}
.y163{bottom:161.376247pt;}
.y111{bottom:161.393762pt;}
.y132{bottom:161.497905pt;}
.y33{bottom:162.066133pt;}
.y286{bottom:162.423600pt;}
.y20d{bottom:163.042330pt;}
.y1ca{bottom:164.994011pt;}
.yef{bottom:165.014133pt;}
.ya0{bottom:165.027494pt;}
.y6c{bottom:165.054554pt;}
.y254{bottom:166.839181pt;}
.y30{bottom:169.678163pt;}
.y20c{bottom:174.987247pt;}
.y1c9{bottom:176.938929pt;}
.y154{bottom:177.284081pt;}
.y162{bottom:177.323134pt;}
.y110{bottom:177.340648pt;}
.y131{bottom:177.444791pt;}
.y253{bottom:178.784098pt;}
.y285{bottom:178.970267pt;}
.y9f{bottom:180.974381pt;}
.y6b{bottom:181.001441pt;}
.y2f{bottom:185.625050pt;}
.y20b{bottom:186.932165pt;}
.y1c8{bottom:188.883846pt;}
.y252{bottom:190.798753pt;}
.y153{bottom:193.230967pt;}
.y161{bottom:193.270021pt;}
.y10f{bottom:193.287535pt;}
.y130{bottom:193.391678pt;}
.y284{bottom:195.516933pt;}
.y9e{bottom:196.921267pt;}
.y6a{bottom:196.948328pt;}
.yee{bottom:197.042470pt;}
.y20a{bottom:198.825575pt;}
.y1c7{bottom:200.828764pt;}
.y2e{bottom:201.493829pt;}
.y251{bottom:202.743670pt;}
.y152{bottom:209.177854pt;}
.y160{bottom:209.216907pt;}
.y10e{bottom:209.234422pt;}
.y12f{bottom:209.338565pt;}
.y209{bottom:210.790417pt;}
.y1c6{bottom:212.773681pt;}
.y9d{bottom:212.790047pt;}
.y69{bottom:212.817107pt;}
.yed{bottom:212.911249pt;}
.y250{bottom:214.688588pt;}
.y25{bottom:217.414680pt;}
.y2d{bottom:217.440716pt;}
.y208{bottom:222.805071pt;}
.y283{bottom:223.419067pt;}
.y1c5{bottom:224.788336pt;}
.y151{bottom:225.124741pt;}
.y15f{bottom:225.163794pt;}
.y10d{bottom:225.181308pt;}
.y12e{bottom:225.285451pt;}
.y24f{bottom:226.633506pt;}
.y9c{bottom:228.736933pt;}
.y68{bottom:228.763994pt;}
.yec{bottom:228.858136pt;}
.y24{bottom:233.361567pt;}
.y2c{bottom:233.387602pt;}
.yc0{bottom:234.557467pt;}
.y207{bottom:234.749989pt;}
.y1c4{bottom:236.733253pt;}
.y282{bottom:237.645467pt;}
.y24e{bottom:238.578423pt;}
.y150{bottom:241.071627pt;}
.y15e{bottom:241.110681pt;}
.y10c{bottom:241.128195pt;}
.y12d{bottom:241.232338pt;}
.y9b{bottom:244.686533pt;}
.y67{bottom:244.710881pt;}
.yeb{bottom:244.805023pt;}
.y206{bottom:246.694907pt;}
.y1c3{bottom:248.678171pt;}
.y23{bottom:249.308453pt;}
.y2b{bottom:249.334489pt;}
.y24d{bottom:250.523341pt;}
.y14f{bottom:257.018514pt;}
.y15d{bottom:257.057567pt;}
.y10b{bottom:257.075082pt;}
.y12c{bottom:257.179225pt;}
.y205{bottom:258.639824pt;}
.y1c2{bottom:260.623089pt;}
.y66{bottom:260.657767pt;}
.yea{bottom:260.751909pt;}
.y24c{bottom:262.468258pt;}
.y22{bottom:265.255340pt;}
.y2a{bottom:265.281376pt;}
.y204{bottom:270.584742pt;}
.y1c1{bottom:272.568006pt;}
.y14e{bottom:272.965401pt;}
.y15c{bottom:273.004454pt;}
.y10a{bottom:273.021968pt;}
.y12b{bottom:273.126111pt;}
.y24b{bottom:274.482913pt;}
.y65{bottom:276.604654pt;}
.y9a{bottom:276.653082pt;}
.ye9{bottom:276.698796pt;}
.y21{bottom:281.202227pt;}
.y29{bottom:281.228262pt;}
.y203{bottom:282.529659pt;}
.y1c0{bottom:284.512924pt;}
.y24a{bottom:286.427830pt;}
.y14d{bottom:288.834180pt;}
.y15b{bottom:288.873234pt;}
.y109{bottom:288.890748pt;}
.y12a{bottom:288.994891pt;}
.y64{bottom:292.551541pt;}
.y99{bottom:292.599968pt;}
.ye8{bottom:292.645683pt;}
.y202{bottom:294.544314pt;}
.y1bf{bottom:296.527578pt;}
.y20{bottom:297.149113pt;}
.y28{bottom:297.175149pt;}
.y249{bottom:298.372748pt;}
.y14c{bottom:304.781067pt;}
.y15a{bottom:304.820120pt;}
.y108{bottom:304.837634pt;}
.y129{bottom:304.941777pt;}
.y201{bottom:306.489231pt;}
.y1be{bottom:308.472496pt;}
.y63{bottom:308.498427pt;}
.y98{bottom:308.546855pt;}
.ye7{bottom:308.592569pt;}
.y248{bottom:310.317666pt;}
.y1f{bottom:313.096000pt;}
.y27{bottom:313.122036pt;}
.y200{bottom:318.434149pt;}
.y1bd{bottom:320.417413pt;}
.y107{bottom:320.784521pt;}
.y128{bottom:320.888664pt;}
.y247{bottom:322.262583pt;}
.y62{bottom:324.445314pt;}
.y97{bottom:324.493742pt;}
.ye6{bottom:324.539456pt;}
.y1e{bottom:328.970000pt;}
.y26{bottom:328.990815pt;}
.y1ff{bottom:330.379067pt;}
.y246{bottom:334.207501pt;}
.y106{bottom:336.731408pt;}
.y127{bottom:336.835551pt;}
.y18f{bottom:337.282923pt;}
.y61{bottom:340.314093pt;}
.y96{bottom:340.362521pt;}
.ye5{bottom:340.408235pt;}
.y1fe{bottom:342.323984pt;}
.y1bc{bottom:344.307249pt;}
.y245{bottom:346.222155pt;}
.y18c{bottom:350.579973pt;}
.y18e{bottom:350.588933pt;}
.y105{bottom:352.678294pt;}
.y126{bottom:352.782437pt;}
.y1fd{bottom:354.268902pt;}
.y18d{bottom:354.746400pt;}
.y1bb{bottom:356.252166pt;}
.y60{bottom:356.260980pt;}
.y95{bottom:356.309408pt;}
.ye4{bottom:356.355122pt;}
.y244{bottom:358.167073pt;}
.y18b{bottom:361.840335pt;}
.y1fc{bottom:366.213819pt;}
.y1ba{bottom:368.197084pt;}
.y104{bottom:368.625181pt;}
.y125{bottom:368.729324pt;}
.y243{bottom:370.111990pt;}
.y5f{bottom:372.207867pt;}
.y94{bottom:372.256294pt;}
.ye3{bottom:372.302009pt;}
.y1d{bottom:373.449313pt;}
.y18a{bottom:375.146346pt;}
.y1fb{bottom:378.228474pt;}
.y1b9{bottom:380.211738pt;}
.y242{bottom:382.056908pt;}
.y103{bottom:384.572068pt;}
.y124{bottom:384.676211pt;}
.y5e{bottom:388.157333pt;}
.y93{bottom:388.203181pt;}
.ye2{bottom:388.248895pt;}
.y189{bottom:388.452356pt;}
.y1fa{bottom:390.173391pt;}
.y1b8{bottom:392.156656pt;}
.y241{bottom:394.001826pt;}
.y1c{bottom:396.044489pt;}
.y102{bottom:400.518954pt;}
.y123{bottom:400.623097pt;}
.y188{bottom:401.758366pt;}
.y1f9{bottom:402.118309pt;}
.y1b7{bottom:404.101573pt;}
.y5d{bottom:404.107067pt;}
.y92{bottom:404.150068pt;}
.ye1{bottom:404.195782pt;}
.y240{bottom:405.946743pt;}
.y1b{bottom:411.997933pt;}
.y1f8{bottom:414.063227pt;}
.y187{bottom:414.989990pt;}
.y1b6{bottom:416.046491pt;}
.y101{bottom:416.387734pt;}
.y122{bottom:416.491877pt;}
.y23f{bottom:417.911586pt;}
.y91{bottom:420.096954pt;}
.ybf{bottom:420.129308pt;}
.ye0{bottom:420.142669pt;}
.y1f7{bottom:426.008144pt;}
.y1a{bottom:427.951376pt;}
.y1b5{bottom:427.991409pt;}
.y186{bottom:428.296000pt;}
.y23e{bottom:429.926240pt;}
.y100{bottom:432.334621pt;}
.y121{bottom:432.438763pt;}
.y90{bottom:436.043841pt;}
.ybe{bottom:436.076195pt;}
.ydf{bottom:436.089555pt;}
.y5c{bottom:436.100409pt;}
.y1f6{bottom:437.953062pt;}
.y1b4{bottom:439.936326pt;}
.y23d{bottom:441.871158pt;}
.y185{bottom:446.559795pt;}
.y19{bottom:447.836726pt;}
.yff{bottom:448.281507pt;}
.y120{bottom:448.385650pt;}
.y1f5{bottom:449.967716pt;}
.y1b3{bottom:451.950981pt;}
.y8f{bottom:451.990728pt;}
.ybd{bottom:452.023082pt;}
.yde{bottom:452.036442pt;}
.y5b{bottom:452.047295pt;}
.y23c{bottom:453.816075pt;}
.y1f4{bottom:461.912634pt;}
.y184{bottom:462.510822pt;}
.y18{bottom:463.790169pt;}
.yfe{bottom:464.228394pt;}
.y11f{bottom:464.332537pt;}
.y23b{bottom:465.760993pt;}
.y8e{bottom:467.859507pt;}
.ybc{bottom:467.891861pt;}
.ydd{bottom:467.905222pt;}
.y5a{bottom:467.916075pt;}
.y281{bottom:469.122235pt;}
.y1f3{bottom:473.857551pt;}
.y1b2{bottom:475.840816pt;}
.y23a{bottom:477.705910pt;}
.y183{bottom:478.387461pt;}
.y17{bottom:479.743613pt;}
.yfd{bottom:480.175281pt;}
.y11e{bottom:480.279423pt;}
.y280{bottom:480.380529pt;}
.y8d{bottom:483.806394pt;}
.ybb{bottom:483.838748pt;}
.ydc{bottom:483.852108pt;}
.y59{bottom:483.862962pt;}
.y1f2{bottom:485.802469pt;}
.y1af{bottom:487.784149pt;}
.y1b1{bottom:487.785733pt;}
.y239{bottom:489.650828pt;}
.y27f{bottom:491.716400pt;}
.y1b0{bottom:492.245600pt;}
.y182{bottom:494.338487pt;}
.y16{bottom:495.697056pt;}
.yfc{bottom:496.122167pt;}
.y11d{bottom:496.226310pt;}
.y1f1{bottom:497.747387pt;}
.y1ae{bottom:499.729067pt;}
.y8c{bottom:499.753281pt;}
.yba{bottom:499.785634pt;}
.ydb{bottom:499.798995pt;}
.y58{bottom:499.809848pt;}
.y238{bottom:501.665482pt;}
.y1ad{bottom:504.188800pt;}
.y1f0{bottom:509.692304pt;}
.y181{bottom:510.289514pt;}
.y15{bottom:511.650500pt;}
.y1ac{bottom:511.657638pt;}
.yfb{bottom:512.069054pt;}
.y11c{bottom:512.173197pt;}
.y27e{bottom:513.530701pt;}
.y237{bottom:513.610400pt;}
.y8b{bottom:515.700167pt;}
.yb9{bottom:515.732521pt;}
.yda{bottom:515.745882pt;}
.y57{bottom:515.756735pt;}
.y1ef{bottom:521.637222pt;}
.y27d{bottom:525.475618pt;}
.y236{bottom:525.555318pt;}
.y180{bottom:526.240541pt;}
.y14{bottom:527.603943pt;}
.yfa{bottom:528.015941pt;}
.y11b{bottom:528.120083pt;}
.y8a{bottom:531.647054pt;}
.yb8{bottom:531.679408pt;}
.yd9{bottom:531.692768pt;}
.y56{bottom:531.703622pt;}
.y1ee{bottom:533.651876pt;}
.y1ab{bottom:535.617210pt;}
.y27c{bottom:537.420536pt;}
.y235{bottom:537.500235pt;}
.y17f{bottom:542.191568pt;}
.y13{bottom:543.477686pt;}
.yf9{bottom:543.884720pt;}
.y11a{bottom:543.988863pt;}
.y1ed{bottom:545.596794pt;}
.y1aa{bottom:547.562127pt;}
.y89{bottom:547.593941pt;}
.yb7{bottom:547.626294pt;}
.yd8{bottom:547.639655pt;}
.y55{bottom:547.650508pt;}
.y27b{bottom:549.365454pt;}
.y234{bottom:549.445153pt;}
.y1ec{bottom:557.541711pt;}
.y17e{bottom:558.142595pt;}
.y12{bottom:559.431129pt;}
.y1a9{bottom:559.507045pt;}
.yf8{bottom:559.831607pt;}
.y119{bottom:559.935750pt;}
.y27a{bottom:561.310371pt;}
.y233{bottom:561.390070pt;}
.y88{bottom:563.540827pt;}
.yb6{bottom:563.573181pt;}
.yd7{bottom:563.586542pt;}
.y54{bottom:563.597395pt;}
.y1eb{bottom:569.486629pt;}
.y1a8{bottom:571.451962pt;}
.y279{bottom:573.255289pt;}
.y232{bottom:573.334988pt;}
.y17d{bottom:574.093622pt;}
.y11{bottom:575.384573pt;}
.yf7{bottom:575.778493pt;}
.y118{bottom:575.882636pt;}
.y87{bottom:579.487714pt;}
.yb5{bottom:579.520068pt;}
.yd6{bottom:579.533428pt;}
.y53{bottom:579.544282pt;}
.y1ea{bottom:581.431547pt;}
.y1a7{bottom:583.396880pt;}
.y278{bottom:585.269943pt;}
.y231{bottom:585.349642pt;}
.y17c{bottom:590.044649pt;}
.yf6{bottom:591.725380pt;}
.y117{bottom:591.829523pt;}
.y1e9{bottom:593.376464pt;}
.y10{bottom:595.336340pt;}
.y1a6{bottom:595.341798pt;}
.y86{bottom:595.356493pt;}
.yb4{bottom:595.388847pt;}
.yd5{bottom:595.402208pt;}
.y52{bottom:595.413061pt;}
.y277{bottom:597.214861pt;}
.y230{bottom:597.294560pt;}
.y1e8{bottom:605.391119pt;}
.y17b{bottom:605.921287pt;}
.y1a5{bottom:607.356452pt;}
.yf5{bottom:607.672267pt;}
.y116{bottom:607.776410pt;}
.y276{bottom:609.159778pt;}
.y22f{bottom:609.239478pt;}
.yf{bottom:611.289783pt;}
.y85{bottom:611.303380pt;}
.yb3{bottom:611.335734pt;}
.yd4{bottom:611.349094pt;}
.y51{bottom:611.359948pt;}
.y1e7{bottom:617.336036pt;}
.y1a4{bottom:619.301370pt;}
.y275{bottom:621.104696pt;}
.y22e{bottom:621.184395pt;}
.y17a{bottom:621.872314pt;}
.ye{bottom:627.243227pt;}
.y84{bottom:627.250267pt;}
.yb2{bottom:627.282621pt;}
.yd3{bottom:627.295981pt;}
.y50{bottom:627.306834pt;}
.y1e6{bottom:629.280954pt;}
.y1a3{bottom:631.246287pt;}
.y274{bottom:633.049614pt;}
.y22d{bottom:633.129313pt;}
.y179{bottom:637.823341pt;}
.y14b{bottom:640.174123pt;}
.y1e5{bottom:641.225871pt;}
.yd{bottom:643.116969pt;}
.y1a2{bottom:643.191205pt;}
.y83{bottom:643.199867pt;}
.yb1{bottom:643.229507pt;}
.yd2{bottom:643.242868pt;}
.y4f{bottom:643.253721pt;}
.y273{bottom:644.994531pt;}
.y22c{bottom:645.074230pt;}
.y1e4{bottom:653.170789pt;}
.y14a{bottom:653.480133pt;}
.y1a1{bottom:655.136122pt;}
.y178{bottom:655.432170pt;}
.y272{bottom:657.009186pt;}
.y22b{bottom:657.088885pt;}
.yc{bottom:659.070413pt;}
.yb0{bottom:659.176394pt;}
.yd1{bottom:659.189754pt;}
.y4e{bottom:659.200608pt;}
.y1e3{bottom:665.115707pt;}
.y1a0{bottom:667.081040pt;}
.y271{bottom:668.954103pt;}
.y22a{bottom:669.033802pt;}
.y149{bottom:671.680692pt;}
.y177{bottom:673.040998pt;}
.yb{bottom:675.023856pt;}
.yaf{bottom:675.123281pt;}
.yd0{bottom:675.136641pt;}
.y4d{bottom:675.147494pt;}
.y82{bottom:675.198713pt;}
.y1e2{bottom:677.060624pt;}
.y19f{bottom:679.095694pt;}
.y270{bottom:680.899021pt;}
.y229{bottom:680.978720pt;}
.y148{bottom:687.631719pt;}
.y176{bottom:688.992025pt;}
.y1e1{bottom:689.075279pt;}
.y19e{bottom:691.040612pt;}
.yae{bottom:691.070167pt;}
.ycf{bottom:691.083528pt;}
.y4c{bottom:691.094381pt;}
.y81{bottom:691.145600pt;}
.y26f{bottom:692.843938pt;}
.y228{bottom:692.923638pt;}
.ya{bottom:694.975623pt;}
.y1e0{bottom:701.020196pt;}
.y147{bottom:703.582746pt;}
.y26e{bottom:704.788856pt;}
.y227{bottom:704.868555pt;}
.y175{bottom:704.943052pt;}
.yad{bottom:707.017054pt;}
.yce{bottom:707.030414pt;}
.y4b{bottom:707.041268pt;}
.y80{bottom:707.092487pt;}
.y9{bottom:710.929067pt;}
.y1df{bottom:712.965114pt;}
.y19d{bottom:714.930447pt;}
.y26d{bottom:716.733774pt;}
.y226{bottom:716.813473pt;}
.y146{bottom:719.533773pt;}
.y174{bottom:720.819691pt;}
.yac{bottom:722.885833pt;}
.ycd{bottom:722.899194pt;}
.y4a{bottom:722.910047pt;}
.y7f{bottom:722.961266pt;}
.y1de{bottom:724.910031pt;}
.y19c{bottom:726.875365pt;}
.y26c{bottom:728.678691pt;}
.y225{bottom:728.758390pt;}
.y8{bottom:734.815600pt;}
.y145{bottom:735.484800pt;}
.y173{bottom:736.770718pt;}
.y1dd{bottom:736.854949pt;}
.y19b{bottom:738.820282pt;}
.yab{bottom:738.832720pt;}
.ycc{bottom:738.846081pt;}
.y49{bottom:738.856934pt;}
.y7e{bottom:738.908153pt;}
.y26b{bottom:740.693346pt;}
.y224{bottom:740.773045pt;}
.y1dc{bottom:748.799867pt;}
.y199{bottom:750.765200pt;}
.y144{bottom:751.435827pt;}
.y26a{bottom:752.638263pt;}
.y223{bottom:752.717962pt;}
.y172{bottom:752.721745pt;}
.yaa{bottom:754.779607pt;}
.ycb{bottom:754.792967pt;}
.y48{bottom:754.803821pt;}
.y7d{bottom:754.855039pt;}
.y19a{bottom:755.225067pt;}
.y1db{bottom:760.775418pt;}
.y197{bottom:762.777663pt;}
.y269{bottom:764.583181pt;}
.y222{bottom:764.662880pt;}
.y198{bottom:767.168267pt;}
.y143{bottom:767.386854pt;}
.y171{bottom:768.672771pt;}
.ya9{bottom:770.726493pt;}
.yca{bottom:770.739854pt;}
.y47{bottom:770.750707pt;}
.y7c{bottom:770.801926pt;}
.y196{bottom:774.722581pt;}
.y268{bottom:776.528098pt;}
.y221{bottom:776.607798pt;}
.y142{bottom:783.263492pt;}
.y170{bottom:784.623798pt;}
.y6{bottom:785.984524pt;}
.y195{bottom:786.667498pt;}
.ya8{bottom:786.673380pt;}
.yc9{bottom:786.686741pt;}
.y46{bottom:786.697594pt;}
.y7b{bottom:786.748813pt;}
.y267{bottom:788.473016pt;}
.y220{bottom:788.552715pt;}
.y1da{bottom:788.670138pt;}
.y7{bottom:792.415467pt;}
.y194{bottom:798.612416pt;}
.y141{bottom:799.214519pt;}
.y266{bottom:800.417934pt;}
.y21f{bottom:800.497633pt;}
.y16f{bottom:800.574825pt;}
.y1d9{bottom:800.615056pt;}
.ya7{bottom:802.620267pt;}
.yc8{bottom:802.633627pt;}
.y45{bottom:802.644481pt;}
.y7a{bottom:802.695699pt;}
.y4{bottom:804.585600pt;}
.y193{bottom:810.557333pt;}
.y5{bottom:811.010800pt;}
.y265{bottom:812.432588pt;}
.y21e{bottom:812.512287pt;}
.y140{bottom:815.165546pt;}
.y16e{bottom:816.525852pt;}
.ya6{bottom:818.569867pt;}
.yc7{bottom:818.580514pt;}
.y44{bottom:818.591367pt;}
.y79{bottom:818.642586pt;}
.y264{bottom:824.377506pt;}
.y21d{bottom:824.457205pt;}
.y1d8{bottom:824.504891pt;}
.y13f{bottom:831.116573pt;}
.y16d{bottom:832.476879pt;}
.yc6{bottom:834.527401pt;}
.y43{bottom:834.538254pt;}
.y78{bottom:834.589473pt;}
.y263{bottom:836.332386pt;}
.y3{bottom:836.395924pt;}
.y21c{bottom:836.402122pt;}
.y1d7{bottom:836.449809pt;}
.y13c{bottom:847.065813pt;}
.y13e{bottom:847.067600pt;}
.y262{bottom:848.277303pt;}
.y21b{bottom:848.347040pt;}
.y16c{bottom:848.353518pt;}
.yc5{bottom:850.396180pt;}
.y42{bottom:850.407033pt;}
.y77{bottom:850.458252pt;}
.y13d{bottom:851.754133pt;}
.y261{bottom:860.222221pt;}
.y21a{bottom:860.291958pt;}
.y1d6{bottom:860.409381pt;}
.y13b{bottom:863.016839pt;}
.y16b{bottom:864.304545pt;}
.yc4{bottom:866.343067pt;}
.y41{bottom:866.353920pt;}
.y76{bottom:866.405139pt;}
.y2{bottom:870.954133pt;}
.y260{bottom:872.167138pt;}
.y219{bottom:872.236875pt;}
.y1d5{bottom:872.354298pt;}
.y13a{bottom:878.967866pt;}
.y16a{bottom:881.913373pt;}
.yc3{bottom:882.292667pt;}
.y40{bottom:882.300807pt;}
.y75{bottom:882.352026pt;}
.y25f{bottom:884.181793pt;}
.y218{bottom:884.251530pt;}
.y1d4{bottom:884.299216pt;}
.y25e{bottom:896.126710pt;}
.y217{bottom:896.196447pt;}
.y1d3{bottom:896.244133pt;}
.y139{bottom:896.502306pt;}
.y169{bottom:897.864400pt;}
.y3f{bottom:898.247693pt;}
.y74{bottom:898.298912pt;}
.y25d{bottom:908.071628pt;}
.y216{bottom:908.141365pt;}
.y1d2{bottom:908.189051pt;}
.y138{bottom:912.453333pt;}
.y3e{bottom:914.194580pt;}
.yc2{bottom:914.218738pt;}
.y73{bottom:914.245799pt;}
.y168{bottom:915.480685pt;}
.y25c{bottom:920.016546pt;}
.y215{bottom:920.086282pt;}
.y1d1{bottom:920.133969pt;}
.y1{bottom:921.448533pt;}
.y137{bottom:930.065867pt;}
.y3d{bottom:930.141467pt;}
.yc1{bottom:930.165625pt;}
.y72{bottom:930.192686pt;}
.y25b{bottom:931.961463pt;}
.y214{bottom:932.031200pt;}
.y1d0{bottom:932.078886pt;}
.y28e{bottom:936.000000pt;}
.y28d{bottom:960.000000pt;}
.y28c{bottom:984.000000pt;}
.y39{bottom:991.292135pt;}
.y38{bottom:1004.522667pt;}
.h11{height:17.875032pt;}
.ha{height:19.151683pt;}
.h10{height:20.429102pt;}
.he{height:25.129943pt;}
.h16{height:25.200000pt;}
.hc{height:26.816586pt;}
.h15{height:27.635200pt;}
.h13{height:27.966340pt;}
.h5{height:28.090929pt;}
.h9{height:28.731562pt;}
.h12{height:28.937593pt;}
.hb{height:30.648076pt;}
.hf{height:34.478412pt;}
.hd{height:35.244403pt;}
.h14{height:36.135056pt;}
.h8{height:37.699742pt;}
.h7{height:38.309518pt;}
.h6{height:39.458503pt;}
.h4{height:42.141008pt;}
.h2{height:49.802835pt;}
.h18{height:62.812500pt;}
.h3{height:91.942689pt;}
.h17{height:1056.000000pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w2{width:816.000000pt;}
.x0{left:0.000000pt;}
.x25{left:48.000000pt;}
.x2{left:75.590533pt;}
.x11{left:79.143333pt;}
.x1{left:80.352800pt;}
.xe{left:84.207867pt;}
.x13{left:86.252166pt;}
.x1a{left:95.549691pt;}
.x21{left:102.425200pt;}
.x22{left:105.978000pt;}
.x18{left:119.962133pt;}
.x19{left:123.817333pt;}
.x1f{left:131.678667pt;}
.x20{left:139.993733pt;}
.x3{left:155.943333pt;}
.x4{left:160.932267pt;}
.xd{left:228.283467pt;}
.x12{left:238.110133pt;}
.x17{left:263.347191pt;}
.x5{left:268.573200pt;}
.x1c{left:270.614133pt;}
.x6{left:273.562133pt;}
.x1b{left:306.519600pt;}
.x1d{left:309.770000pt;}
.x1e{left:370.166933pt;}
.x15{left:375.307067pt;}
.x16{left:380.296000pt;}
.x7{left:385.058133pt;}
.x8{left:390.047200pt;}
.xf{left:406.296418pt;}
.x24{left:413.631333pt;}
.x10{left:416.958051pt;}
.x23{left:426.249741pt;}
.x9{left:503.357333pt;}
.xa{left:508.346400pt;}
.xb{left:653.177867pt;}
.xc{left:662.853333pt;}
.x14{left:665.948561pt;}
}




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