
    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_8980162e86ebb7e076ccac88.woff')format("woff");}.ff1{font-family:ff1;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_72cf4299ef336b86b01d9e75.woff')format("woff");}.ff2{font-family:ff2;line-height:0.666504;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_5f8cbe7a758e34010114def7.woff')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_45f690ae69b136c57189e9c4.woff')format("woff");}.ff4{font-family:ff4;line-height:0.856445;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_188ddcb747baa11e84efba41.woff')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_41f6bad33aa563d2d4fd4f46.woff')format("woff");}.ff6{font-family:ff6;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_a11604f92fddbf4cd432d6d9.woff')format("woff");}.ff7{font-family:ff7;line-height:0.873535;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_c3687e8ba3ba70a2e669cc32.woff')format("woff");}.ff8{font-family:ff8;line-height:0.861816;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_45f1b42b677dcc4b074691f0.woff')format("woff");}.ff9{font-family:ff9;line-height:1.130371;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_4387e803270634dca07d1a55.woff')format("woff");}.ffa{font-family:ffa;line-height:0.858398;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_fcc7778aee235d7a75bbad3c.woff')format("woff");}.ffb{font-family:ffb;line-height:0.689453;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_4e7e2a4c2ae828a88793ba44.woff')format("woff");}.ffc{font-family:ffc;line-height:0.854980;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_c83da9c4426021391484e6ed.woff')format("woff");}.ffd{font-family:ffd;line-height:0.904297;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_7027c673803c63f487ad6512.woff')format("woff");}.ffe{font-family:ffe;line-height:0.689453;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_0d2448fce55f2fab81ed0851.woff')format("woff");}.fff{font-family:fff;line-height:0.669434;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_aa188e5fd08fba1fe114bdf2.woff')format("woff");}.ff10{font-family:ff10;line-height:0.891602;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_5f52bcbe0e7b5edecfe0e3ea.woff')format("woff");}.ff11{font-family:ff11;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_202a32139fef1c8bcfe7c038.woff')format("woff");}.ff12{font-family:ff12;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_aaecfc2cc981066862a14b7c.woff')format("woff");}.ff13{font-family:ff13;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_4c64c90353673d02ec6b4d43.woff')format("woff");}.ff14{font-family:ff14;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_6f5554c50907743affb72e75.woff')format("woff");}.ff15{font-family:ff15;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_bb911ec335fa1374fcd699d5.woff')format("woff");}.ff16{font-family:ff16;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_6de3fec45fbbb6e9526940b0.woff')format("woff");}.ff17{font-family:ff17;line-height:0.861816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_d388d2b3a1f0c2470976e0b5.woff')format("woff");}.ff18{font-family:ff18;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_68e255ab5f55994d10509126.woff')format("woff");}.ff19{font-family:ff19;line-height:0.688477;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;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.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);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.256602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256602,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-6.293100px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:24.480000px;}
.lsb{letter-spacing:-4.948736px;}
.lsc{letter-spacing:-3.299157px;}
.lsa{letter-spacing:-2.877598px;}
.ls4c{letter-spacing:-0.447552px;}
.ls11{letter-spacing:-0.434224px;}
.lse{letter-spacing:-0.426987px;}
.ls3b{letter-spacing:-0.417312px;}
.ls35{letter-spacing:-0.414864px;}
.ls54{letter-spacing:-0.411264px;}
.ls42{letter-spacing:-0.350784px;}
.ls4d{letter-spacing:-0.338688px;}
.ls3f{letter-spacing:-0.332640px;}
.ls4e{letter-spacing:-0.320544px;}
.ls2e{letter-spacing:-0.318384px;}
.ls41{letter-spacing:-0.308448px;}
.ls23{letter-spacing:-0.299088px;}
.ls38{letter-spacing:-0.296352px;}
.ls19{letter-spacing:-0.289440px;}
.ls3a{letter-spacing:-0.278208px;}
.ls46{letter-spacing:-0.272160px;}
.ls1f{letter-spacing:-0.270144px;}
.ls45{letter-spacing:-0.266112px;}
.ls2{letter-spacing:-0.264960px;}
.ls2c{letter-spacing:-0.260496px;}
.ls4b{letter-spacing:-0.260064px;}
.ls43{letter-spacing:-0.254016px;}
.ls39{letter-spacing:-0.247968px;}
.ls6e{letter-spacing:-0.245929px;}
.ls3d{letter-spacing:-0.241920px;}
.ls3e{letter-spacing:-0.235872px;}
.ls34{letter-spacing:-0.231552px;}
.ls9{letter-spacing:-0.229824px;}
.ls4{letter-spacing:-0.225216px;}
.ls6{letter-spacing:-0.217728px;}
.ls3{letter-spacing:-0.211968px;}
.ls44{letter-spacing:-0.211680px;}
.ls36{letter-spacing:-0.208094px;}
.ls56{letter-spacing:-0.205344px;}
.ls1a{letter-spacing:-0.202608px;}
.ls40{letter-spacing:-0.193536px;}
.ls55{letter-spacing:-0.189176px;}
.ls62{letter-spacing:-0.185472px;}
.ls4a{letter-spacing:-0.179718px;}
.ls52{letter-spacing:-0.175392px;}
.ls6a{letter-spacing:-0.170259px;}
.ls5f{letter-spacing:-0.165600px;}
.ls51{letter-spacing:-0.163296px;}
.ls2d{letter-spacing:-0.154368px;}
.ls59{letter-spacing:-0.152352px;}
.ls4f{letter-spacing:-0.151200px;}
.ls5b{letter-spacing:-0.145728px;}
.ls3c{letter-spacing:-0.145152px;}
.ls37{letter-spacing:-0.141882px;}
.ls8{letter-spacing:-0.133056px;}
.ls5a{letter-spacing:-0.132480px;}
.ls53{letter-spacing:-0.120960px;}
.ls6c{letter-spacing:-0.119232px;}
.ls5d{letter-spacing:-0.112608px;}
.ls5e{letter-spacing:-0.105984px;}
.ls5c{letter-spacing:-0.099360px;}
.ls60{letter-spacing:-0.086112px;}
.ls68{letter-spacing:-0.085129px;}
.ls57{letter-spacing:-0.079488px;}
.ls7{letter-spacing:-0.078624px;}
.ls61{letter-spacing:-0.072864px;}
.ls58{letter-spacing:-0.066240px;}
.ls63{letter-spacing:-0.059616px;}
.ls47{letter-spacing:-0.056753px;}
.ls1e{letter-spacing:-0.036000px;}
.ls5{letter-spacing:-0.028800px;}
.ls20{letter-spacing:-0.021600px;}
.ls1c{letter-spacing:-0.014400px;}
.ls24{letter-spacing:-0.007200px;}
.ls1{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.005328px;}
.ls1b{letter-spacing:0.007200px;}
.ls29{letter-spacing:0.009360px;}
.ls65{letter-spacing:0.011088px;}
.ls14{letter-spacing:0.011520px;}
.ls13{letter-spacing:0.014400px;}
.ls12{letter-spacing:0.015984px;}
.ls17{letter-spacing:0.021600px;}
.ls30{letter-spacing:0.023040px;}
.ls18{letter-spacing:0.028800px;}
.ls21{letter-spacing:0.031824px;}
.ls22{letter-spacing:0.036000px;}
.ls15{letter-spacing:0.043200px;}
.ls28{letter-spacing:0.048960px;}
.ls6d{letter-spacing:0.079344px;}
.ls25{letter-spacing:0.083520px;}
.ls27{letter-spacing:0.113760px;}
.ls6b{letter-spacing:0.152064px;}
.ls48{letter-spacing:0.156816px;}
.ls1d{letter-spacing:0.194832px;}
.ls0{letter-spacing:0.209875px;}
.lsd{letter-spacing:0.217112px;}
.ls26{letter-spacing:0.225504px;}
.ls69{letter-spacing:0.270864px;}
.ls10{letter-spacing:0.282246px;}
.ls2a{letter-spacing:0.338400px;}
.lsf{letter-spacing:0.412513px;}
.ls31{letter-spacing:0.536256px;}
.ls2b{letter-spacing:1.586880px;}
.ls2f{letter-spacing:3.159216px;}
.ls64{letter-spacing:4.273920px;}
.ls67{letter-spacing:6.111360px;}
.ls49{letter-spacing:9.470880px;}
.ls66{letter-spacing:34.630560px;}
.ls50{letter-spacing:46.880784px;}
.ls32{letter-spacing:53.967456px;}
.ls33{letter-spacing:54.866880px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-183.286524px;}
.ws6{word-spacing:-180.408925px;}
.ws8{word-spacing:-179.987366px;}
.ws7{word-spacing:-178.337787px;}
.ws4{word-spacing:-72.370644px;}
.ws0{word-spacing:-29.728512px;}
.ws1{word-spacing:-29.715264px;}
.ws10{word-spacing:-21.804480px;}
.ws1b{word-spacing:-21.650112px;}
.ws1e{word-spacing:-21.543984px;}
.ws20{word-spacing:-21.534336px;}
.ws19{word-spacing:-21.505392px;}
.ws22{word-spacing:-21.486096px;}
.ws35{word-spacing:-21.320187px;}
.ws23{word-spacing:-21.168846px;}
.ws1d{word-spacing:-19.101024px;}
.ws1c{word-spacing:-18.959040px;}
.wsa{word-spacing:-16.768278px;}
.wsb{word-spacing:-16.638011px;}
.ws9{word-spacing:-16.565641px;}
.wsc{word-spacing:-16.355766px;}
.ws18{word-spacing:-16.315200px;}
.ws1a{word-spacing:-16.308000px;}
.ws14{word-spacing:-16.300800px;}
.ws16{word-spacing:-16.293600px;}
.wsf{word-spacing:-16.286400px;}
.ws11{word-spacing:-16.279200px;}
.ws12{word-spacing:-16.272000px;}
.ws46{word-spacing:-16.264800px;}
.ws13{word-spacing:-16.257600px;}
.ws17{word-spacing:-16.250400px;}
.ws2{word-spacing:-16.243200px;}
.ws1f{word-spacing:-16.236000px;}
.wsd{word-spacing:-15.921542px;}
.ws3e{word-spacing:-14.970240px;}
.ws3d{word-spacing:-14.904000px;}
.ws3c{word-spacing:-14.890752px;}
.ws40{word-spacing:-14.870880px;}
.ws41{word-spacing:-14.864256px;}
.ws3f{word-spacing:-14.837760px;}
.ws43{word-spacing:-14.804640px;}
.ws42{word-spacing:-14.784768px;}
.ws3b{word-spacing:-14.764896px;}
.ws2d{word-spacing:-13.668480px;}
.ws3{word-spacing:-13.589856px;}
.ws39{word-spacing:-13.547520px;}
.ws38{word-spacing:-13.535424px;}
.ws27{word-spacing:-13.523328px;}
.ws33{word-spacing:-13.474944px;}
.ws2f{word-spacing:-13.456800px;}
.ws34{word-spacing:-13.450752px;}
.ws25{word-spacing:-13.438656px;}
.ws29{word-spacing:-13.432608px;}
.ws28{word-spacing:-13.426560px;}
.ws2a{word-spacing:-13.420512px;}
.ws30{word-spacing:-13.414464px;}
.ws31{word-spacing:-13.402368px;}
.ws32{word-spacing:-13.396320px;}
.ws26{word-spacing:-13.390272px;}
.ws24{word-spacing:-13.372128px;}
.ws2c{word-spacing:-13.360032px;}
.ws2b{word-spacing:-13.335840px;}
.ws37{word-spacing:-13.329792px;}
.ws2e{word-spacing:-13.317696px;}
.ws3a{word-spacing:-13.257216px;}
.ws44{word-spacing:-0.318384px;}
.ws15{word-spacing:-0.242352px;}
.ws36{word-spacing:-0.204336px;}
.ws45{word-spacing:-0.199584px;}
.ws47{word-spacing:-0.121104px;}
.ws21{word-spacing:-0.072000px;}
.wse{word-spacing:0.000000px;}
._5{margin-left:-32.320677px;}
._12{margin-left:-20.304864px;}
._15{margin-left:-18.547344px;}
._13{margin-left:-17.272355px;}
._16{margin-left:-13.745232px;}
._11{margin-left:-11.630304px;}
._14{margin-left:-9.223056px;}
._10{margin-left:-5.470390px;}
._4{margin-left:-3.485590px;}
._0{margin-left:-1.011888px;}
._3{width:1.015619px;}
._6{width:2.446372px;}
._1c{width:4.224454px;}
._2{width:5.714679px;}
._1{width:6.947582px;}
._1f{width:8.496000px;}
._1a{width:9.737136px;}
._19{width:10.800000px;}
._1d{width:12.808224px;}
._1e{width:14.805216px;}
._24{width:17.509104px;}
._20{width:18.828000px;}
._25{width:19.980000px;}
._23{width:20.995200px;}
._26{width:24.170400px;}
._21{width:25.488000px;}
._1b{width:27.352800px;}
._b{width:28.632030px;}
._18{width:29.923200px;}
._28{width:31.822416px;}
._27{width:34.870896px;}
._22{width:38.642400px;}
._29{width:44.960112px;}
._e{width:65.339280px;}
._7{width:218.187005px;}
._17{width:250.866864px;}
._a{width:383.217246px;}
._c{width:393.566249px;}
._9{width:395.737368px;}
._d{width:476.141154px;}
._f{width:842.195520px;}
._8{width:926.357360px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:transparent;}
.fc3{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs10{font-size:41.760000px;}
.fsb{font-size:47.520000px;}
.fs5{font-size:60.480000px;}
.fsf{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:72.370644px;}
.fse{font-size:76.235299px;}
.fs7{font-size:78.663744px;}
.fsc{font-size:83.520000px;}
.fsd{font-size:94.588229px;}
.fsa{font-size:96.480000px;}
.fs4{font-size:108.000000px;}
.fs3{font-size:132.480000px;}
.fs2{font-size:168.480000px;}
.fs8{font-size:183.286524px;}
.fs1{font-size:216.000000px;}
.fs9{font-size:261.950268px;}
.y26{bottom:-27.999316px;}
.y0{bottom:0.000000px;}
.y7{bottom:0.420000px;}
.y1e{bottom:1.320000px;}
.yf9{bottom:4.140000px;}
.y3f{bottom:4.260000px;}
.y18d{bottom:4.500000px;}
.y22{bottom:4.523171px;}
.y184{bottom:4.560000px;}
.y1f3{bottom:4.620000px;}
.y186{bottom:4.680000px;}
.y188{bottom:4.800000px;}
.y51{bottom:4.860000px;}
.ye{bottom:4.920000px;}
.y5e{bottom:4.980000px;}
.y4f{bottom:5.040000px;}
.y9f{bottom:5.100000px;}
.y80{bottom:5.160000px;}
.y4d{bottom:5.220000px;}
.y75{bottom:5.280000px;}
.y7e{bottom:5.340000px;}
.y4b{bottom:5.400000px;}
.y9c{bottom:5.460000px;}
.y5c{bottom:5.520000px;}
.y49{bottom:5.580000px;}
.y9a{bottom:5.640000px;}
.y5a{bottom:5.700000px;}
.y47{bottom:5.760000px;}
.y53{bottom:5.820000px;}
.y58{bottom:5.880000px;}
.y64{bottom:5.940000px;}
.y1aa{bottom:6.000000px;}
.y79{bottom:6.060000px;}
.y62{bottom:6.120000px;}
.y1a7{bottom:6.180000px;}
.y77{bottom:6.240000px;}
.y60{bottom:6.300000px;}
.y1c8{bottom:6.360000px;}
.y17a{bottom:6.420000px;}
.y1a4{bottom:6.660000px;}
.y19b{bottom:6.720000px;}
.y17f{bottom:6.840000px;}
.y17e{bottom:7.020000px;}
.y173{bottom:7.200000px;}
.y1ab{bottom:7.260000px;}
.y172{bottom:7.380000px;}
.y1a9{bottom:7.440000px;}
.y19f{bottom:7.500000px;}
.y170{bottom:7.560000px;}
.y1a6{bottom:7.620000px;}
.y19d{bottom:7.680000px;}
.y16e{bottom:7.740000px;}
.y3b{bottom:8.340000px;}
.yc{bottom:9.780000px;}
.y128{bottom:9.952200px;}
.y20{bottom:11.760000px;}
.ye5{bottom:11.890500px;}
.y106{bottom:11.950200px;}
.y12a{bottom:12.328800px;}
.y159{bottom:13.080000px;}
.y14d{bottom:14.081625px;}
.y12b{bottom:16.163250px;}
.y23f{bottom:16.200000px;}
.y147{bottom:16.505850px;}
.y249{bottom:16.740000px;}
.y14f{bottom:17.176665px;}
.y152{bottom:18.509700px;}
.yeb{bottom:18.892500px;}
.y143{bottom:20.369400px;}
.yf8{bottom:22.500000px;}
.y141{bottom:23.400000px;}
.yd9{bottom:23.580000px;}
.y11c{bottom:23.820000px;}
.y1f2{bottom:24.780000px;}
.y1e4{bottom:24.840000px;}
.y191{bottom:25.080000px;}
.y1ea{bottom:25.380000px;}
.y3e{bottom:25.500000px;}
.y18f{bottom:25.620000px;}
.y1bb{bottom:25.680000px;}
.y218{bottom:25.920000px;}
.y20c{bottom:25.980000px;}
.y18b{bottom:26.040000px;}
.y1bf{bottom:26.100000px;}
.y1d5{bottom:26.400000px;}
.y1ce{bottom:26.460000px;}
.y196{bottom:26.580000px;}
.y200{bottom:26.700000px;}
.y1b2{bottom:26.760000px;}
.y1b5{bottom:26.880000px;}
.y6e{bottom:26.940000px;}
.y1ae{bottom:27.000000px;}
.y1c6{bottom:27.060000px;}
.y176{bottom:27.120000px;}
.y1be{bottom:27.240000px;}
.y1de{bottom:27.300000px;}
.y1fb{bottom:27.360000px;}
.y199{bottom:27.420000px;}
.y1d3{bottom:27.480000px;}
.y211{bottom:27.540000px;}
.y1cc{bottom:27.600000px;}
.y46{bottom:27.720000px;}
.y1f5{bottom:27.840000px;}
.y168{bottom:27.900000px;}
.y1d8{bottom:28.020000px;}
.y1c3{bottom:28.080000px;}
.y1ef{bottom:28.140000px;}
.y1e1{bottom:28.200000px;}
.y182{bottom:28.260000px;}
.y3d{bottom:29.760000px;}
.ye8{bottom:30.003300px;}
.y1f{bottom:30.120000px;}
.y158{bottom:31.440000px;}
.ye6{bottom:31.490100px;}
.y107{bottom:31.549800px;}
.yde{bottom:32.511900px;}
.yfe{bottom:32.571600px;}
.y123{bottom:32.788320px;}
.ye9{bottom:32.848800px;}
.y109{bottom:33.864150px;}
.y14c{bottom:35.504880px;}
.y10a{bottom:36.649650px;}
.y248{bottom:38.700000px;}
.ydc{bottom:38.737500px;}
.yfc{bottom:38.797110px;}
.ye2{bottom:40.813800px;}
.y103{bottom:40.873650px;}
.y100{bottom:41.838900px;}
.ydf{bottom:41.839200px;}
.y101{bottom:42.399300px;}
.ye0{bottom:42.399600px;}
.y1f1{bottom:44.940000px;}
.y1e3{bottom:45.000000px;}
.y1ed{bottom:45.240000px;}
.y1e9{bottom:45.540000px;}
.y1ba{bottom:45.840000px;}
.y154{bottom:46.250250px;}
.y145{bottom:48.194100px;}
.y1b4{bottom:48.840000px;}
.y16a{bottom:48.900000px;}
.y1ad{bottom:48.960000px;}
.y216{bottom:49.020000px;}
.y175{bottom:49.080000px;}
.y1bd{bottom:49.200000px;}
.y1dd{bottom:49.260000px;}
.y198{bottom:49.380000px;}
.y1d2{bottom:49.440000px;}
.y210{bottom:49.500000px;}
.y1cb{bottom:49.560000px;}
.y1fa{bottom:49.680000px;}
.ydd{bottom:49.734750px;}
.yb{bottom:49.740000px;}
.yfd{bottom:49.794525px;}
.y1f4{bottom:49.800000px;}
.y1b0{bottom:49.860000px;}
.y1d7{bottom:49.980000px;}
.y1c2{bottom:50.040000px;}
.y1ee{bottom:50.100000px;}
.y1e0{bottom:50.160000px;}
.y181{bottom:50.220000px;}
.y10c{bottom:51.576600px;}
.y151{bottom:51.607230px;}
.y148{bottom:51.793905px;}
.y11e{bottom:53.066220px;}
.y156{bottom:53.618250px;}
.ydb{bottom:59.710350px;}
.yfb{bottom:59.770020px;}
.y121{bottom:60.434400px;}
.y242{bottom:60.540000px;}
.y146{bottom:60.714750px;}
.ye7{bottom:60.808950px;}
.y108{bottom:60.868800px;}
.y104{bottom:61.812150px;}
.ye3{bottom:61.812450px;}
.y11f{bottom:65.136495px;}
.y12e{bottom:65.384670px;}
.y1b9{bottom:66.000000px;}
.y144{bottom:67.779150px;}
.y125{bottom:68.736300px;}
.y215{bottom:70.980000px;}
.y20a{bottom:71.040000px;}
.y1dc{bottom:71.220000px;}
.y246{bottom:71.340000px;}
.y1d1{bottom:71.400000px;}
.y14a{bottom:71.412555px;}
.y20f{bottom:71.460000px;}
.y1fe{bottom:71.760000px;}
.y130{bottom:71.845500px;}
.y204{bottom:72.180000px;}
.y16c{bottom:73.800000px;}
.y21d{bottom:73.980000px;}
.y1a3{bottom:74.220000px;}
.y120{bottom:77.657220px;}
.y241{bottom:82.500000px;}
.y10d{bottom:84.053550px;}
.y1b7{bottom:87.240000px;}
.y126{bottom:89.074920px;}
.yea{bottom:91.728150px;}
.y245{bottom:92.940000px;}
.y1db{bottom:93.180000px;}
.y20e{bottom:93.420000px;}
.y1fd{bottom:93.720000px;}
.y203{bottom:94.140000px;}
.y10b{bottom:95.589000px;}
.y21c{bottom:95.940000px;}
.y178{bottom:96.480000px;}
.y1f6{bottom:108.000000px;}
.ye1{bottom:111.635400px;}
.y102{bottom:111.695100px;}
.ye4{bottom:113.221050px;}
.y105{bottom:113.280750px;}
.yc5{bottom:113.640000px;}
.y244{bottom:114.900000px;}
.y1da{bottom:115.140000px;}
.y166{bottom:117.000000px;}
.yd6{bottom:117.240000px;}
.y21b{bottom:117.900000px;}
.y14e{bottom:119.664510px;}
.y11d{bottom:120.000000px;}
.y122{bottom:120.660030px;}
.y1a0{bottom:121.500000px;}
.y14b{bottom:124.201200px;}
.y155{bottom:128.365020px;}
.y1d0{bottom:129.000000px;}
.y255{bottom:129.120000px;}
.y1d{bottom:135.000000px;}
.yec{bottom:135.142500px;}
.y10e{bottom:135.240000px;}
.y12c{bottom:135.356520px;}
.y25{bottom:136.320030px;}
.yc4{bottom:136.680000px;}
.y129{bottom:136.696920px;}
.y21{bottom:136.836315px;}
.y243{bottom:136.860000px;}
.y165{bottom:139.500000px;}
.y12f{bottom:140.092500px;}
.y127{bottom:141.143550px;}
.y24{bottom:141.752805px;}
.y23a{bottom:148.200000px;}
.y254{bottom:151.080000px;}
.yfa{bottom:153.000000px;}
.yff{bottom:153.060000px;}
.y153{bottom:156.105494px;}
.yc3{bottom:158.640000px;}
.y21a{bottom:159.360000px;}
.y150{bottom:160.829610px;}
.y164{bottom:162.000000px;}
.y23{bottom:163.581994px;}
.y239{bottom:170.160000px;}
.y253{bottom:173.040000px;}
.y124{bottom:176.431695px;}
.y217{bottom:177.000000px;}
.yc2{bottom:181.680000px;}
.y19e{bottom:187.500000px;}
.y12d{bottom:189.974100px;}
.y163{bottom:190.680000px;}
.y1c{bottom:194.280000px;}
.y252{bottom:195.000000px;}
.y1f0{bottom:196.500000px;}
.y219{bottom:199.500000px;}
.yc1{bottom:203.640000px;}
.y19c{bottom:210.000000px;}
.y162{bottom:212.640000px;}
.y238{bottom:213.000000px;}
.y251{bottom:216.960000px;}
.y1cd{bottom:217.500000px;}
.y214{bottom:220.500000px;}
.y1b{bottom:227.040000px;}
.y39{bottom:227.692945px;}
.y19a{bottom:234.000000px;}
.y70{bottom:234.240000px;}
.y161{bottom:234.600000px;}
.y237{bottom:234.960000px;}
.y1cf{bottom:240.000000px;}
.yc0{bottom:247.560000px;}
.y197{bottom:256.500000px;}
.y160{bottom:256.560000px;}
.y236{bottom:256.920000px;}
.y1a{bottom:260.160000px;}
.y1ca{bottom:261.000000px;}
.y38{bottom:261.551132px;}
.y250{bottom:261.924720px;}
.y6f{bottom:263.400000px;}
.y13c{bottom:276.720000px;}
.y15f{bottom:278.520000px;}
.y235{bottom:278.880000px;}
.y6d{bottom:286.500000px;}
.ybf{bottom:290.400000px;}
.y19{bottom:292.920000px;}
.y37{bottom:293.409948px;}
.y13b{bottom:299.040000px;}
.y15e{bottom:300.480000px;}
.yf7{bottom:307.500000px;}
.y212{bottom:309.000000px;}
.y24f{bottom:310.200000px;}
.ybe{bottom:313.440000px;}
.y36{bottom:315.435796px;}
.y234{bottom:322.080000px;}
.y15d{bottom:322.440000px;}
.y195{bottom:322.500000px;}
.y1ec{bottom:324.000000px;}
.y18{bottom:326.040000px;}
.y1c9{bottom:327.000000px;}
.y11b{bottom:328.500000px;}
.y6c{bottom:330.000000px;}
.y213{bottom:331.500000px;}
.ybd{bottom:336.480000px;}
.y13a{bottom:344.004720px;}
.y233{bottom:344.040000px;}
.y15c{bottom:344.400000px;}
.y35{bottom:347.097953px;}
.y1c7{bottom:351.000000px;}
.y6b{bottom:352.500000px;}
.y24e{bottom:353.040000px;}
.y17{bottom:358.800000px;}
.ybc{bottom:359.160000px;}
.y194{bottom:364.500000px;}
.y232{bottom:366.000000px;}
.yf6{bottom:370.320000px;}
.y1c5{bottom:373.500000px;}
.y24d{bottom:375.000000px;}
.ybb{bottom:382.200000px;}
.y6a{bottom:383.640000px;}
.y1eb{bottom:385.500000px;}
.y15b{bottom:386.484720px;}
.y231{bottom:387.960000px;}
.y16{bottom:391.920000px;}
.y11a{bottom:393.000000px;}
.y24c{bottom:396.960000px;}
.yba{bottom:404.160000px;}
.y193{bottom:406.500000px;}
.y230{bottom:409.920000px;}
.y69{bottom:412.800000px;}
.yf5{bottom:413.520000px;}
.y139{bottom:413.880000px;}
.y24b{bottom:418.920000px;}
.y15{bottom:425.040000px;}
.y192{bottom:426.000000px;}
.y34{bottom:426.955725px;}
.yb9{bottom:427.200000px;}
.y15a{bottom:429.639000px;}
.y95{bottom:434.040000px;}
.yf4{bottom:435.480000px;}
.y119{bottom:435.840000px;}
.y138{bottom:436.200000px;}
.y1c4{bottom:439.500000px;}
.y68{bottom:442.320000px;}
.yb8{bottom:449.880000px;}
.y33{bottom:450.948167px;}
.y1e8{bottom:451.500000px;}
.yf3{bottom:452.760000px;}
.y14{bottom:457.800000px;}
.y94{bottom:461.760000px;}
.y157{bottom:462.000000px;}
.y20b{bottom:463.500000px;}
.y67{bottom:465.000000px;}
.y190{bottom:468.000000px;}
.y22f{bottom:474.720000px;}
.y118{bottom:479.040000px;}
.y137{bottom:481.164720px;}
.yb7{bottom:481.920000px;}
.y1c1{bottom:483.000000px;}
.y32{bottom:484.773576px;}
.y93{bottom:485.520000px;}
.y20d{bottom:486.000000px;}
.y66{bottom:487.500000px;}
.y13{bottom:490.920000px;}
.y22e{bottom:496.680000px;}
.y142{bottom:507.000000px;}
.y24a{bottom:507.084720px;}
.y149{bottom:508.380000px;}
.y18e{bottom:508.500000px;}
.y65{bottom:510.000000px;}
.y1e7{bottom:513.000000px;}
.y117{bottom:516.840000px;}
.y31{bottom:518.598986px;}
.y22d{bottom:518.640000px;}
.y92{bottom:522.960000px;}
.y12{bottom:523.680000px;}
.yb6{bottom:525.120000px;}
.y136{bottom:529.080000px;}
.y63{bottom:532.500000px;}
.yb5{bottom:547.080000px;}
.y18c{bottom:550.500000px;}
.y30{bottom:552.424396px;}
.y61{bottom:555.000000px;}
.y11{bottom:556.800000px;}
.y91{bottom:557.520000px;}
.y22c{bottom:561.480000px;}
.yb4{bottom:569.040000px;}
.y18a{bottom:570.000000px;}
.y135{bottom:572.280000px;}
.y1c0{bottom:573.000000px;}
.y5f{bottom:577.500000px;}
.y1e6{bottom:579.000000px;}
.y2f{bottom:586.249806px;}
.y10{bottom:589.560000px;}
.yb3{bottom:591.000000px;}
.y90{bottom:592.440000px;}
.y1bc{bottom:594.000000px;}
.y134{bottom:594.240000px;}
.y208{bottom:595.500000px;}
.y5d{bottom:601.500000px;}
.y22b{bottom:606.804720px;}
.y189{bottom:612.000000px;}
.yb2{bottom:612.960000px;}
.y247{bottom:613.500000px;}
.y209{bottom:618.000000px;}
.yf{bottom:622.680000px;}
.y5b{bottom:624.000000px;}
.y8f{bottom:627.000000px;}
.y133{bottom:632.400000px;}
.y187{bottom:633.000000px;}
.yb1{bottom:634.920000px;}
.y207{bottom:639.000000px;}
.y1e5{bottom:640.500000px;}
.yd5{bottom:645.000000px;}
.y59{bottom:646.500000px;}
.yd{bottom:648.000000px;}
.y22a{bottom:648.240000px;}
.y185{bottom:654.000000px;}
.y1b6{bottom:660.000000px;}
.y8e{bottom:661.560000px;}
.yd4{bottom:666.960000px;}
.y57{bottom:669.000000px;}
.y229{bottom:669.840000px;}
.ya{bottom:670.500000px;}
.y183{bottom:675.000000px;}
.y240{bottom:679.500000px;}
.yb0{bottom:679.560000px;}
.y140{bottom:681.000000px;}
.yd3{bottom:688.920000px;}
.y228{bottom:691.800000px;}
.y180{bottom:694.500000px;}
.y8d{bottom:696.120000px;}
.yf2{bottom:697.200000px;}
.y56{bottom:699.360000px;}
.y205{bottom:705.000000px;}
.y1e2{bottom:708.000000px;}
.y227{bottom:713.760000px;}
.yf1{bottom:718.440000px;}
.yd2{bottom:722.004720px;}
.yaf{bottom:728.160000px;}
.y206{bottom:729.000000px;}
.y55{bottom:729.240000px;}
.y8c{bottom:730.680000px;}
.y226{bottom:735.720000px;}
.yf0{bottom:740.400000px;}
.y2d{bottom:740.660180px;}
.y1b8{bottom:741.000000px;}
.y13f{bottom:745.080000px;}
.y202{bottom:748.500000px;}
.y177{bottom:762.000000px;}
.y54{bottom:762.360000px;}
.y9{bottom:763.080000px;}
.y1b3{bottom:765.000000px;}
.y8b{bottom:765.600000px;}
.y225{bottom:766.680000px;}
.y1df{bottom:768.000000px;}
.yd1{bottom:770.280000px;}
.yae{bottom:771.000000px;}
.y2c{bottom:774.485590px;}
.y17d{bottom:784.500000px;}
.y52{bottom:787.500000px;}
.y13e{bottom:787.920000px;}
.y2e{bottom:790.843411px;}
.yd0{bottom:792.240000px;}
.yad{bottom:792.960000px;}
.y8a{bottom:800.160000px;}
.yef{bottom:801.564720px;}
.y17c{bottom:807.000000px;}
.y2b{bottom:808.311000px;}
.y224{bottom:809.520000px;}
.y50{bottom:811.500000px;}
.ycf{bottom:814.200000px;}
.yac{bottom:814.920000px;}
.y8{bottom:817.440000px;}
.y17b{bottom:829.500000px;}
.y1b1{bottom:831.000000px;}
.y13d{bottom:831.120000px;}
.y223{bottom:831.480000px;}
.y4e{bottom:834.000000px;}
.y89{bottom:834.720000px;}
.y1d9{bottom:835.500000px;}
.yab{bottom:836.880000px;}
.y2a{bottom:842.136410px;}
.yee{bottom:849.480000px;}
.y222{bottom:853.440000px;}
.y179{bottom:853.500000px;}
.y4c{bottom:856.500000px;}
.yaa{bottom:858.840000px;}
.y1ff{bottom:859.500000px;}
.y73{bottom:859.560000px;}
.y6{bottom:868.500000px;}
.y88{bottom:869.280000px;}
.yed{bottom:871.440000px;}
.y1af{bottom:874.500000px;}
.y221{bottom:875.400000px;}
.y29{bottom:875.961820px;}
.y174{bottom:876.000000px;}
.y4a{bottom:879.000000px;}
.ya9{bottom:880.800000px;}
.y201{bottom:882.000000px;}
.y116{bottom:888.000000px;}
.y72{bottom:889.080000px;}
.y48{bottom:901.500000px;}
.ya8{bottom:902.760000px;}
.y1fc{bottom:903.000000px;}
.y87{bottom:904.920000px;}
.y220{bottom:906.720000px;}
.yce{bottom:907.440000px;}
.y28{bottom:909.787230px;}
.yda{bottom:910.500000px;}
.y7f{bottom:912.000000px;}
.y45{bottom:924.000000px;}
.ycd{bottom:929.400000px;}
.y115{bottom:930.840000px;}
.y7d{bottom:934.500000px;}
.y27{bottom:938.352002px;}
.y16b{bottom:942.000000px;}
.y86{bottom:943.080000px;}
.y97{bottom:944.520000px;}
.ya7{bottom:945.960000px;}
.y23e{bottom:947.760000px;}
.y258{bottom:949.920000px;}
.ycc{bottom:951.360000px;}
.y21f{bottom:951.684706px;}
.y114{bottom:952.800000px;}
.y7c{bottom:957.000000px;}
.y171{bottom:964.500000px;}
.y9e{bottom:967.500000px;}
.ya6{bottom:967.920000px;}
.y23d{bottom:970.080000px;}
.y5{bottom:971.880000px;}
.ycb{bottom:973.320000px;}
.y113{bottom:974.760000px;}
.y44{bottom:976.560000px;}
.y7b{bottom:979.500000px;}
.y85{bottom:981.240000px;}
.ya3{bottom:985.560000px;}
.y16f{bottom:987.000000px;}
.ya5{bottom:989.880000px;}
.y9d{bottom:990.000000px;}
.y21e{bottom:993.120000px;}
.y257{bottom:993.840000px;}
.yca{bottom:995.280000px;}
.y112{bottom:997.080000px;}
.y7a{bottom:1002.000000px;}
.y43{bottom:1006.440000px;}
.y16d{bottom:1009.500000px;}
.ya4{bottom:1011.840000px;}
.y9b{bottom:1012.500000px;}
.y1ac{bottom:1013.640000px;}
.y1f9{bottom:1014.000000px;}
.y23c{bottom:1015.044720px;}
.yc9{bottom:1017.240000px;}
.y256{bottom:1017.600000px;}
.y84{bottom:1019.760000px;}
.y78{bottom:1024.500000px;}
.y1a2{bottom:1030.500000px;}
.y169{bottom:1033.500000px;}
.ya2{bottom:1033.800000px;}
.y99{bottom:1035.000000px;}
.y4{bottom:1037.760000px;}
.y42{bottom:1039.200000px;}
.y132{bottom:1040.280000px;}
.y111{bottom:1042.044720px;}
.y76{bottom:1047.000000px;}
.y1a8{bottom:1053.000000px;}
.ya1{bottom:1055.760000px;}
.y98{bottom:1057.500000px;}
.y83{bottom:1057.920000px;}
.y131{bottom:1062.240000px;}
.y23b{bottom:1062.960000px;}
.yd8{bottom:1063.500000px;}
.y74{bottom:1071.000000px;}
.y41{bottom:1071.600000px;}
.y1a5{bottom:1075.500000px;}
.ya0{bottom:1077.720000px;}
.yc8{bottom:1082.040000px;}
.y110{bottom:1084.200000px;}
.y1f8{bottom:1086.360000px;}
.y96{bottom:1093.200000px;}
.y3{bottom:1093.920000px;}
.y82{bottom:1094.280000px;}
.y167{bottom:1099.500000px;}
.y1d4{bottom:1101.000000px;}
.y1f7{bottom:1104.000000px;}
.yc7{bottom:1105.080000px;}
.y10f{bottom:1106.160000px;}
.y2{bottom:1115.880000px;}
.y40{bottom:1119.480000px;}
.y1a1{bottom:1122.000000px;}
.y81{bottom:1122.360000px;}
.y71{bottom:1122.720000px;}
.y1d6{bottom:1123.500000px;}
.yc6{bottom:1127.040000px;}
.yd7{bottom:1128.120000px;}
.y1{bottom:1137.840000px;}
.y3c{bottom:1149.360000px;}
.y3a{bottom:1165.500000px;}
.hd{height:0.000000px;}
.h15{height:21.000000px;}
.h7{height:22.500000px;}
.h19{height:24.000000px;}
.h29{height:37.500000px;}
.h1f{height:39.000000px;}
.h3e{height:42.000000px;}
.h20{height:42.052500px;}
.ha{height:43.410938px;}
.h28{height:43.411043px;}
.h25{height:43.411057px;}
.h26{height:43.411077px;}
.h23{height:43.411078px;}
.h34{height:43.411093px;}
.h2d{height:43.411118px;}
.h37{height:43.411154px;}
.h2a{height:43.411177px;}
.h27{height:43.411206px;}
.h2e{height:43.411238px;}
.h22{height:43.411250px;}
.h35{height:43.411334px;}
.h2b{height:43.411778px;}
.h33{height:43.411897px;}
.h31{height:43.412137px;}
.h13{height:43.500000px;}
.h17{height:45.000000px;}
.h3c{height:45.895781px;}
.h38{height:46.500000px;}
.h1b{height:47.988281px;}
.h14{height:48.656250px;}
.h49{height:49.218750px;}
.hb{height:49.257495px;}
.hc{height:49.472120px;}
.hf{height:49.773780px;}
.h39{height:50.811125px;}
.h1{height:51.679688px;}
.h18{height:52.277344px;}
.h9{height:52.500000px;}
.h4a{height:52.884141px;}
.h10{height:53.505174px;}
.h12{height:53.774044px;}
.h1a{height:56.801953px;}
.h1d{height:59.581406px;}
.h43{height:61.500000px;}
.h44{height:63.000000px;}
.h3f{height:66.000000px;}
.h1e{height:67.477247px;}
.h3a{height:67.500000px;}
.h1c{height:68.826797px;}
.he{height:68.907596px;}
.h16{height:69.250781px;}
.h8{height:71.982422px;}
.h5{height:81.000000px;}
.h41{height:82.500000px;}
.h47{height:88.500000px;}
.h6{height:89.850938px;}
.h3{height:90.000000px;}
.h3b{height:91.500000px;}
.h40{height:105.000000px;}
.h45{height:111.000000px;}
.h4{height:112.292578px;}
.h46{height:112.500000px;}
.h3d{height:114.000000px;}
.h42{height:133.500000px;}
.h48{height:136.500000px;}
.h2{height:143.964844px;}
.h24{height:153.360000px;}
.h2c{height:153.720000px;}
.h21{height:154.500000px;}
.h36{height:172.800000px;}
.h32{height:175.500000px;}
.h11{height:178.172228px;}
.h30{height:208.439970px;}
.h2f{height:210.000000px;}
.h0{height:1263.000000px;}
.w5{width:0.000000px;}
.w8{width:10.500000px;}
.w1d{width:19.500000px;}
.wd{width:33.000000px;}
.w15{width:52.500000px;}
.w22{width:54.360000px;}
.w20{width:57.000000px;}
.w23{width:63.000000px;}
.w21{width:64.500000px;}
.w1b{width:64.800000px;}
.w17{width:66.000000px;}
.w1f{width:67.500000px;}
.w4{width:71.550000px;}
.w18{width:75.000000px;}
.w1e{width:82.500000px;}
.we{width:84.000000px;}
.w26{width:84.240000px;}
.w14{width:85.500000px;}
.w1a{width:86.400000px;}
.w2{width:87.000000px;}
.w16{width:88.500000px;}
.w39{width:90.000000px;}
.w32{width:96.000000px;}
.w38{width:102.000000px;}
.w24{width:105.480000px;}
.w34{width:106.500000px;}
.wf{width:108.000000px;}
.w36{width:112.500000px;}
.wb{width:114.000000px;}
.w33{width:117.000000px;}
.w12{width:118.500000px;}
.w35{width:123.000000px;}
.w1c{width:126.720000px;}
.w19{width:129.000000px;}
.w6{width:147.000000px;}
.w27{width:148.320000px;}
.w2d{width:148.500000px;}
.w25{width:150.000000px;}
.w2f{width:178.500000px;}
.w9{width:183.000000px;}
.w10{width:190.500000px;}
.w31{width:223.500000px;}
.w2e{width:226.500000px;}
.w2c{width:235.500000px;}
.w2b{width:264.000000px;}
.w2a{width:291.000000px;}
.w11{width:306.000000px;}
.w37{width:361.500000px;}
.wa{width:496.500000px;}
.w7{width:516.000000px;}
.wc{width:537.000000px;}
.w30{width:553.500000px;}
.w13{width:561.000000px;}
.w3{width:586.500000px;}
.w29{width:628.500000px;}
.w3a{width:660.000000px;}
.w28{width:670.500000px;}
.w1{width:678.000000px;}
.w0{width:892.500000px;}
.x9{left:-3.479352px;}
.x0{left:0.000000px;}
.x11{left:1.080000px;}
.x13{left:7.859964px;}
.x4{left:9.000000px;}
.x22{left:10.614252px;}
.x2c{left:11.693040px;}
.x20{left:13.087992px;}
.x43{left:15.484560px;}
.x26{left:16.605468px;}
.x28{left:18.771600px;}
.x62{left:20.141400px;}
.x2a{left:21.147120px;}
.x31{left:23.940059px;}
.x5c{left:25.755612px;}
.x25{left:28.170396px;}
.x68{left:29.617800px;}
.x3b{left:33.479989px;}
.x2f{left:34.679932px;}
.x47{left:35.820000px;}
.x38{left:36.899999px;}
.x48{left:40.139910px;}
.x37{left:41.219922px;}
.x35{left:42.419941px;}
.x49{left:44.160120px;}
.x3a{left:45.779975px;}
.x5d{left:48.269904px;}
.x46{left:49.679970px;}
.x30{left:50.999994px;}
.x2e{left:52.184160px;}
.x39{left:55.619988px;}
.x4f{left:59.040030px;}
.x50{left:60.299970px;}
.x4b{left:61.380180px;}
.x33{left:62.459968px;}
.x51{left:63.779970px;}
.x7{left:66.153108px;}
.x63{left:69.273480px;}
.x3d{left:71.820052px;}
.x3e{left:73.080006px;}
.x5a{left:78.072000px;}
.x5{left:80.280036px;}
.x34{left:82.260012px;}
.x2{left:99.000000px;}
.x16{left:100.500000px;}
.x52{left:102.779820px;}
.x1{left:108.000000px;}
.xe{left:110.879892px;}
.x5b{left:112.057260px;}
.xb{left:113.604020px;}
.x1f{left:118.500000px;}
.x1a{left:126.000000px;}
.x54{left:129.000000px;}
.x1c{left:135.000000px;}
.x53{left:142.379850px;}
.x1d{left:162.000000px;}
.x65{left:164.619600px;}
.x17{left:183.000000px;}
.x6{left:184.500000px;}
.x41{left:189.000000px;}
.x69{left:193.237092px;}
.x21{left:204.000000px;}
.x8{left:208.871775px;}
.x14{left:211.500000px;}
.x64{left:214.500000px;}
.x1b{left:216.000000px;}
.x5e{left:225.000000px;}
.xf{left:244.500000px;}
.x23{left:255.000000px;}
.x3{left:260.400132px;}
.x12{left:280.500000px;}
.x18{left:289.500000px;}
.x24{left:337.500000px;}
.x32{left:338.580000px;}
.x5f{left:342.000000px;}
.x58{left:352.500000px;}
.x57{left:363.000000px;}
.xc{left:417.032393px;}
.x55{left:418.500000px;}
.x27{left:424.500000px;}
.x36{left:425.700000px;}
.x40{left:436.500000px;}
.x10{left:441.000000px;}
.x4d{left:446.474880px;}
.x19{left:478.500000px;}
.x42{left:480.000000px;}
.x29{left:490.500000px;}
.x60{left:522.000000px;}
.x44{left:543.000000px;}
.x4a{left:544.500000px;}
.xa{left:563.450925px;}
.x2b{left:565.500000px;}
.x66{left:576.000000px;}
.x59{left:579.000000px;}
.xd{left:583.594529px;}
.x4e{left:628.500000px;}
.x2d{left:639.000000px;}
.x3c{left:640.260000px;}
.x61{left:645.000000px;}
.x45{left:649.500000px;}
.x67{left:678.000000px;}
.x56{left:682.500000px;}
.x1e{left:743.834880px;}
.x15{left:747.000000px;}
.x4c{left:765.974880px;}
.x3f{left:785.880000px;}
@media print{
.v1{vertical-align:-5.593866pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.760000pt;}
.lsb{letter-spacing:-4.398877pt;}
.lsc{letter-spacing:-2.932584pt;}
.lsa{letter-spacing:-2.557865pt;}
.ls4c{letter-spacing:-0.397824pt;}
.ls11{letter-spacing:-0.385977pt;}
.lse{letter-spacing:-0.379544pt;}
.ls3b{letter-spacing:-0.370944pt;}
.ls35{letter-spacing:-0.368768pt;}
.ls54{letter-spacing:-0.365568pt;}
.ls42{letter-spacing:-0.311808pt;}
.ls4d{letter-spacing:-0.301056pt;}
.ls3f{letter-spacing:-0.295680pt;}
.ls4e{letter-spacing:-0.284928pt;}
.ls2e{letter-spacing:-0.283008pt;}
.ls41{letter-spacing:-0.274176pt;}
.ls23{letter-spacing:-0.265856pt;}
.ls38{letter-spacing:-0.263424pt;}
.ls19{letter-spacing:-0.257280pt;}
.ls3a{letter-spacing:-0.247296pt;}
.ls46{letter-spacing:-0.241920pt;}
.ls1f{letter-spacing:-0.240128pt;}
.ls45{letter-spacing:-0.236544pt;}
.ls2{letter-spacing:-0.235520pt;}
.ls2c{letter-spacing:-0.231552pt;}
.ls4b{letter-spacing:-0.231168pt;}
.ls43{letter-spacing:-0.225792pt;}
.ls39{letter-spacing:-0.220416pt;}
.ls6e{letter-spacing:-0.218604pt;}
.ls3d{letter-spacing:-0.215040pt;}
.ls3e{letter-spacing:-0.209664pt;}
.ls34{letter-spacing:-0.205824pt;}
.ls9{letter-spacing:-0.204288pt;}
.ls4{letter-spacing:-0.200192pt;}
.ls6{letter-spacing:-0.193536pt;}
.ls3{letter-spacing:-0.188416pt;}
.ls44{letter-spacing:-0.188160pt;}
.ls36{letter-spacing:-0.184973pt;}
.ls56{letter-spacing:-0.182528pt;}
.ls1a{letter-spacing:-0.180096pt;}
.ls40{letter-spacing:-0.172032pt;}
.ls55{letter-spacing:-0.168157pt;}
.ls62{letter-spacing:-0.164864pt;}
.ls4a{letter-spacing:-0.159749pt;}
.ls52{letter-spacing:-0.155904pt;}
.ls6a{letter-spacing:-0.151341pt;}
.ls5f{letter-spacing:-0.147200pt;}
.ls51{letter-spacing:-0.145152pt;}
.ls2d{letter-spacing:-0.137216pt;}
.ls59{letter-spacing:-0.135424pt;}
.ls4f{letter-spacing:-0.134400pt;}
.ls5b{letter-spacing:-0.129536pt;}
.ls3c{letter-spacing:-0.129024pt;}
.ls37{letter-spacing:-0.126118pt;}
.ls8{letter-spacing:-0.118272pt;}
.ls5a{letter-spacing:-0.117760pt;}
.ls53{letter-spacing:-0.107520pt;}
.ls6c{letter-spacing:-0.105984pt;}
.ls5d{letter-spacing:-0.100096pt;}
.ls5e{letter-spacing:-0.094208pt;}
.ls5c{letter-spacing:-0.088320pt;}
.ls60{letter-spacing:-0.076544pt;}
.ls68{letter-spacing:-0.075671pt;}
.ls57{letter-spacing:-0.070656pt;}
.ls7{letter-spacing:-0.069888pt;}
.ls61{letter-spacing:-0.064768pt;}
.ls58{letter-spacing:-0.058880pt;}
.ls63{letter-spacing:-0.052992pt;}
.ls47{letter-spacing:-0.050447pt;}
.ls1e{letter-spacing:-0.032000pt;}
.ls5{letter-spacing:-0.025600pt;}
.ls20{letter-spacing:-0.019200pt;}
.ls1c{letter-spacing:-0.012800pt;}
.ls24{letter-spacing:-0.006400pt;}
.ls1{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.004736pt;}
.ls1b{letter-spacing:0.006400pt;}
.ls29{letter-spacing:0.008320pt;}
.ls65{letter-spacing:0.009856pt;}
.ls14{letter-spacing:0.010240pt;}
.ls13{letter-spacing:0.012800pt;}
.ls12{letter-spacing:0.014208pt;}
.ls17{letter-spacing:0.019200pt;}
.ls30{letter-spacing:0.020480pt;}
.ls18{letter-spacing:0.025600pt;}
.ls21{letter-spacing:0.028288pt;}
.ls22{letter-spacing:0.032000pt;}
.ls15{letter-spacing:0.038400pt;}
.ls28{letter-spacing:0.043520pt;}
.ls6d{letter-spacing:0.070528pt;}
.ls25{letter-spacing:0.074240pt;}
.ls27{letter-spacing:0.101120pt;}
.ls6b{letter-spacing:0.135168pt;}
.ls48{letter-spacing:0.139392pt;}
.ls1d{letter-spacing:0.173184pt;}
.ls0{letter-spacing:0.186555pt;}
.lsd{letter-spacing:0.192988pt;}
.ls26{letter-spacing:0.200448pt;}
.ls69{letter-spacing:0.240768pt;}
.ls10{letter-spacing:0.250885pt;}
.ls2a{letter-spacing:0.300800pt;}
.lsf{letter-spacing:0.366678pt;}
.ls31{letter-spacing:0.476672pt;}
.ls2b{letter-spacing:1.410560pt;}
.ls2f{letter-spacing:2.808192pt;}
.ls64{letter-spacing:3.799040pt;}
.ls67{letter-spacing:5.432320pt;}
.ls49{letter-spacing:8.418560pt;}
.ls66{letter-spacing:30.782720pt;}
.ls50{letter-spacing:41.671808pt;}
.ls32{letter-spacing:47.971072pt;}
.ls33{letter-spacing:48.770560pt;}
.ws5{word-spacing:-162.921354pt;}
.ws6{word-spacing:-160.363489pt;}
.ws8{word-spacing:-159.988770pt;}
.ws7{word-spacing:-158.522478pt;}
.ws4{word-spacing:-64.329462pt;}
.ws0{word-spacing:-26.425344pt;}
.ws1{word-spacing:-26.413568pt;}
.ws10{word-spacing:-19.381760pt;}
.ws1b{word-spacing:-19.244544pt;}
.ws1e{word-spacing:-19.150208pt;}
.ws20{word-spacing:-19.141632pt;}
.ws19{word-spacing:-19.115904pt;}
.ws22{word-spacing:-19.098752pt;}
.ws35{word-spacing:-18.951277pt;}
.ws23{word-spacing:-18.816752pt;}
.ws1d{word-spacing:-16.978688pt;}
.ws1c{word-spacing:-16.852480pt;}
.wsa{word-spacing:-14.905136pt;}
.wsb{word-spacing:-14.789343pt;}
.ws9{word-spacing:-14.725014pt;}
.wsc{word-spacing:-14.538458pt;}
.ws18{word-spacing:-14.502400pt;}
.ws1a{word-spacing:-14.496000pt;}
.ws14{word-spacing:-14.489600pt;}
.ws16{word-spacing:-14.483200pt;}
.wsf{word-spacing:-14.476800pt;}
.ws11{word-spacing:-14.470400pt;}
.ws12{word-spacing:-14.464000pt;}
.ws46{word-spacing:-14.457600pt;}
.ws13{word-spacing:-14.451200pt;}
.ws17{word-spacing:-14.444800pt;}
.ws2{word-spacing:-14.438400pt;}
.ws1f{word-spacing:-14.432000pt;}
.wsd{word-spacing:-14.152482pt;}
.ws3e{word-spacing:-13.306880pt;}
.ws3d{word-spacing:-13.248000pt;}
.ws3c{word-spacing:-13.236224pt;}
.ws40{word-spacing:-13.218560pt;}
.ws41{word-spacing:-13.212672pt;}
.ws3f{word-spacing:-13.189120pt;}
.ws43{word-spacing:-13.159680pt;}
.ws42{word-spacing:-13.142016pt;}
.ws3b{word-spacing:-13.124352pt;}
.ws2d{word-spacing:-12.149760pt;}
.ws3{word-spacing:-12.079872pt;}
.ws39{word-spacing:-12.042240pt;}
.ws38{word-spacing:-12.031488pt;}
.ws27{word-spacing:-12.020736pt;}
.ws33{word-spacing:-11.977728pt;}
.ws2f{word-spacing:-11.961600pt;}
.ws34{word-spacing:-11.956224pt;}
.ws25{word-spacing:-11.945472pt;}
.ws29{word-spacing:-11.940096pt;}
.ws28{word-spacing:-11.934720pt;}
.ws2a{word-spacing:-11.929344pt;}
.ws30{word-spacing:-11.923968pt;}
.ws31{word-spacing:-11.913216pt;}
.ws32{word-spacing:-11.907840pt;}
.ws26{word-spacing:-11.902464pt;}
.ws24{word-spacing:-11.886336pt;}
.ws2c{word-spacing:-11.875584pt;}
.ws2b{word-spacing:-11.854080pt;}
.ws37{word-spacing:-11.848704pt;}
.ws2e{word-spacing:-11.837952pt;}
.ws3a{word-spacing:-11.784192pt;}
.ws44{word-spacing:-0.283008pt;}
.ws15{word-spacing:-0.215424pt;}
.ws36{word-spacing:-0.181632pt;}
.ws45{word-spacing:-0.177408pt;}
.ws47{word-spacing:-0.107648pt;}
.ws21{word-spacing:-0.064000pt;}
.wse{word-spacing:0.000000pt;}
._5{margin-left:-28.729491pt;}
._12{margin-left:-18.048768pt;}
._15{margin-left:-16.486528pt;}
._13{margin-left:-15.353205pt;}
._16{margin-left:-12.217984pt;}
._11{margin-left:-10.338048pt;}
._14{margin-left:-8.198272pt;}
._10{margin-left:-4.862569pt;}
._4{margin-left:-3.098303pt;}
._0{margin-left:-0.899456pt;}
._3{width:0.902773pt;}
._6{width:2.174553pt;}
._1c{width:3.755070pt;}
._2{width:5.079715pt;}
._1{width:6.175628pt;}
._1f{width:7.552000pt;}
._1a{width:8.655232pt;}
._19{width:9.600000pt;}
._1d{width:11.385088pt;}
._1e{width:13.160192pt;}
._24{width:15.563648pt;}
._20{width:16.736000pt;}
._25{width:17.760000pt;}
._23{width:18.662400pt;}
._26{width:21.484800pt;}
._21{width:22.656000pt;}
._1b{width:24.313600pt;}
._b{width:25.450693pt;}
._18{width:26.598400pt;}
._28{width:28.286592pt;}
._27{width:30.996352pt;}
._22{width:34.348800pt;}
._29{width:39.964544pt;}
._e{width:58.079360pt;}
._7{width:193.944004pt;}
._17{width:222.992768pt;}
._a{width:340.637552pt;}
._c{width:349.836665pt;}
._9{width:351.766549pt;}
._d{width:423.236581pt;}
._f{width:748.618240pt;}
._8{width:823.428764pt;}
.fs10{font-size:37.120000pt;}
.fsb{font-size:42.240000pt;}
.fs5{font-size:53.760000pt;}
.fsf{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:64.329462pt;}
.fse{font-size:67.764710pt;}
.fs7{font-size:69.923328pt;}
.fsc{font-size:74.240000pt;}
.fsd{font-size:84.078426pt;}
.fsa{font-size:85.760000pt;}
.fs4{font-size:96.000000pt;}
.fs3{font-size:117.760000pt;}
.fs2{font-size:149.760000pt;}
.fs8{font-size:162.921354pt;}
.fs1{font-size:192.000000pt;}
.fs9{font-size:232.844682pt;}
.y26{bottom:-24.888281pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:0.373333pt;}
.y1e{bottom:1.173333pt;}
.yf9{bottom:3.680000pt;}
.y3f{bottom:3.786667pt;}
.y18d{bottom:4.000000pt;}
.y22{bottom:4.020596pt;}
.y184{bottom:4.053333pt;}
.y1f3{bottom:4.106667pt;}
.y186{bottom:4.160000pt;}
.y188{bottom:4.266667pt;}
.y51{bottom:4.320000pt;}
.ye{bottom:4.373333pt;}
.y5e{bottom:4.426667pt;}
.y4f{bottom:4.480000pt;}
.y9f{bottom:4.533333pt;}
.y80{bottom:4.586667pt;}
.y4d{bottom:4.640000pt;}
.y75{bottom:4.693333pt;}
.y7e{bottom:4.746667pt;}
.y4b{bottom:4.800000pt;}
.y9c{bottom:4.853333pt;}
.y5c{bottom:4.906667pt;}
.y49{bottom:4.960000pt;}
.y9a{bottom:5.013333pt;}
.y5a{bottom:5.066667pt;}
.y47{bottom:5.120000pt;}
.y53{bottom:5.173333pt;}
.y58{bottom:5.226667pt;}
.y64{bottom:5.280000pt;}
.y1aa{bottom:5.333333pt;}
.y79{bottom:5.386667pt;}
.y62{bottom:5.440000pt;}
.y1a7{bottom:5.493333pt;}
.y77{bottom:5.546667pt;}
.y60{bottom:5.600000pt;}
.y1c8{bottom:5.653333pt;}
.y17a{bottom:5.706667pt;}
.y1a4{bottom:5.920000pt;}
.y19b{bottom:5.973333pt;}
.y17f{bottom:6.080000pt;}
.y17e{bottom:6.240000pt;}
.y173{bottom:6.400000pt;}
.y1ab{bottom:6.453333pt;}
.y172{bottom:6.560000pt;}
.y1a9{bottom:6.613333pt;}
.y19f{bottom:6.666667pt;}
.y170{bottom:6.720000pt;}
.y1a6{bottom:6.773333pt;}
.y19d{bottom:6.826667pt;}
.y16e{bottom:6.880000pt;}
.y3b{bottom:7.413333pt;}
.yc{bottom:8.693333pt;}
.y128{bottom:8.846400pt;}
.y20{bottom:10.453333pt;}
.ye5{bottom:10.569333pt;}
.y106{bottom:10.622400pt;}
.y12a{bottom:10.958933pt;}
.y159{bottom:11.626667pt;}
.y14d{bottom:12.517000pt;}
.y12b{bottom:14.367333pt;}
.y23f{bottom:14.400000pt;}
.y147{bottom:14.671867pt;}
.y249{bottom:14.880000pt;}
.y14f{bottom:15.268147pt;}
.y152{bottom:16.453067pt;}
.yeb{bottom:16.793333pt;}
.y143{bottom:18.106133pt;}
.yf8{bottom:20.000000pt;}
.y141{bottom:20.800000pt;}
.yd9{bottom:20.960000pt;}
.y11c{bottom:21.173333pt;}
.y1f2{bottom:22.026667pt;}
.y1e4{bottom:22.080000pt;}
.y191{bottom:22.293333pt;}
.y1ea{bottom:22.560000pt;}
.y3e{bottom:22.666667pt;}
.y18f{bottom:22.773333pt;}
.y1bb{bottom:22.826667pt;}
.y218{bottom:23.040000pt;}
.y20c{bottom:23.093333pt;}
.y18b{bottom:23.146667pt;}
.y1bf{bottom:23.200000pt;}
.y1d5{bottom:23.466667pt;}
.y1ce{bottom:23.520000pt;}
.y196{bottom:23.626667pt;}
.y200{bottom:23.733333pt;}
.y1b2{bottom:23.786667pt;}
.y1b5{bottom:23.893333pt;}
.y6e{bottom:23.946667pt;}
.y1ae{bottom:24.000000pt;}
.y1c6{bottom:24.053333pt;}
.y176{bottom:24.106667pt;}
.y1be{bottom:24.213333pt;}
.y1de{bottom:24.266667pt;}
.y1fb{bottom:24.320000pt;}
.y199{bottom:24.373333pt;}
.y1d3{bottom:24.426667pt;}
.y211{bottom:24.480000pt;}
.y1cc{bottom:24.533333pt;}
.y46{bottom:24.640000pt;}
.y1f5{bottom:24.746667pt;}
.y168{bottom:24.800000pt;}
.y1d8{bottom:24.906667pt;}
.y1c3{bottom:24.960000pt;}
.y1ef{bottom:25.013333pt;}
.y1e1{bottom:25.066667pt;}
.y182{bottom:25.120000pt;}
.y3d{bottom:26.453333pt;}
.ye8{bottom:26.669600pt;}
.y1f{bottom:26.773333pt;}
.y158{bottom:27.946667pt;}
.ye6{bottom:27.991200pt;}
.y107{bottom:28.044267pt;}
.yde{bottom:28.899467pt;}
.yfe{bottom:28.952533pt;}
.y123{bottom:29.145173pt;}
.ye9{bottom:29.198933pt;}
.y109{bottom:30.101467pt;}
.y14c{bottom:31.559893pt;}
.y10a{bottom:32.577467pt;}
.y248{bottom:34.400000pt;}
.ydc{bottom:34.433333pt;}
.yfc{bottom:34.486320pt;}
.ye2{bottom:36.278933pt;}
.y103{bottom:36.332133pt;}
.y100{bottom:37.190133pt;}
.ydf{bottom:37.190400pt;}
.y101{bottom:37.688267pt;}
.ye0{bottom:37.688533pt;}
.y1f1{bottom:39.946667pt;}
.y1e3{bottom:40.000000pt;}
.y1ed{bottom:40.213333pt;}
.y1e9{bottom:40.480000pt;}
.y1ba{bottom:40.746667pt;}
.y154{bottom:41.111333pt;}
.y145{bottom:42.839200pt;}
.y1b4{bottom:43.413333pt;}
.y16a{bottom:43.466667pt;}
.y1ad{bottom:43.520000pt;}
.y216{bottom:43.573333pt;}
.y175{bottom:43.626667pt;}
.y1bd{bottom:43.733333pt;}
.y1dd{bottom:43.786667pt;}
.y198{bottom:43.893333pt;}
.y1d2{bottom:43.946667pt;}
.y210{bottom:44.000000pt;}
.y1cb{bottom:44.053333pt;}
.y1fa{bottom:44.160000pt;}
.ydd{bottom:44.208667pt;}
.yb{bottom:44.213333pt;}
.yfd{bottom:44.261800pt;}
.y1f4{bottom:44.266667pt;}
.y1b0{bottom:44.320000pt;}
.y1d7{bottom:44.426667pt;}
.y1c2{bottom:44.480000pt;}
.y1ee{bottom:44.533333pt;}
.y1e0{bottom:44.586667pt;}
.y181{bottom:44.640000pt;}
.y10c{bottom:45.845867pt;}
.y151{bottom:45.873093pt;}
.y148{bottom:46.039027pt;}
.y11e{bottom:47.169973pt;}
.y156{bottom:47.660667pt;}
.ydb{bottom:53.075867pt;}
.yfb{bottom:53.128907pt;}
.y121{bottom:53.719467pt;}
.y242{bottom:53.813333pt;}
.y146{bottom:53.968667pt;}
.ye7{bottom:54.052400pt;}
.y108{bottom:54.105600pt;}
.y104{bottom:54.944133pt;}
.ye3{bottom:54.944400pt;}
.y11f{bottom:57.899107pt;}
.y12e{bottom:58.119707pt;}
.y1b9{bottom:58.666667pt;}
.y144{bottom:60.248133pt;}
.y125{bottom:61.098933pt;}
.y215{bottom:63.093333pt;}
.y20a{bottom:63.146667pt;}
.y1dc{bottom:63.306667pt;}
.y246{bottom:63.413333pt;}
.y1d1{bottom:63.466667pt;}
.y14a{bottom:63.477827pt;}
.y20f{bottom:63.520000pt;}
.y1fe{bottom:63.786667pt;}
.y130{bottom:63.862667pt;}
.y204{bottom:64.160000pt;}
.y16c{bottom:65.600000pt;}
.y21d{bottom:65.760000pt;}
.y1a3{bottom:65.973333pt;}
.y120{bottom:69.028640pt;}
.y241{bottom:73.333333pt;}
.y10d{bottom:74.714267pt;}
.y1b7{bottom:77.546667pt;}
.y126{bottom:79.177707pt;}
.yea{bottom:81.536133pt;}
.y245{bottom:82.613333pt;}
.y1db{bottom:82.826667pt;}
.y20e{bottom:83.040000pt;}
.y1fd{bottom:83.306667pt;}
.y203{bottom:83.680000pt;}
.y10b{bottom:84.968000pt;}
.y21c{bottom:85.280000pt;}
.y178{bottom:85.760000pt;}
.y1f6{bottom:96.000000pt;}
.ye1{bottom:99.231467pt;}
.y102{bottom:99.284533pt;}
.ye4{bottom:100.640933pt;}
.y105{bottom:100.694000pt;}
.yc5{bottom:101.013333pt;}
.y244{bottom:102.133333pt;}
.y1da{bottom:102.346667pt;}
.y166{bottom:104.000000pt;}
.yd6{bottom:104.213333pt;}
.y21b{bottom:104.800000pt;}
.y14e{bottom:106.368453pt;}
.y11d{bottom:106.666667pt;}
.y122{bottom:107.253360pt;}
.y1a0{bottom:108.000000pt;}
.y14b{bottom:110.401067pt;}
.y155{bottom:114.102240pt;}
.y1d0{bottom:114.666667pt;}
.y255{bottom:114.773333pt;}
.y1d{bottom:120.000000pt;}
.yec{bottom:120.126667pt;}
.y10e{bottom:120.213333pt;}
.y12c{bottom:120.316907pt;}
.y25{bottom:121.173360pt;}
.yc4{bottom:121.493333pt;}
.y129{bottom:121.508373pt;}
.y21{bottom:121.632280pt;}
.y243{bottom:121.653333pt;}
.y165{bottom:124.000000pt;}
.y12f{bottom:124.526667pt;}
.y127{bottom:125.460933pt;}
.y24{bottom:126.002493pt;}
.y23a{bottom:131.733333pt;}
.y254{bottom:134.293333pt;}
.yfa{bottom:136.000000pt;}
.yff{bottom:136.053333pt;}
.y153{bottom:138.760439pt;}
.yc3{bottom:141.013333pt;}
.y21a{bottom:141.653333pt;}
.y150{bottom:142.959653pt;}
.y164{bottom:144.000000pt;}
.y23{bottom:145.406217pt;}
.y239{bottom:151.253333pt;}
.y253{bottom:153.813333pt;}
.y124{bottom:156.828173pt;}
.y217{bottom:157.333333pt;}
.yc2{bottom:161.493333pt;}
.y19e{bottom:166.666667pt;}
.y12d{bottom:168.865867pt;}
.y163{bottom:169.493333pt;}
.y1c{bottom:172.693333pt;}
.y252{bottom:173.333333pt;}
.y1f0{bottom:174.666667pt;}
.y219{bottom:177.333333pt;}
.yc1{bottom:181.013333pt;}
.y19c{bottom:186.666667pt;}
.y162{bottom:189.013333pt;}
.y238{bottom:189.333333pt;}
.y251{bottom:192.853333pt;}
.y1cd{bottom:193.333333pt;}
.y214{bottom:196.000000pt;}
.y1b{bottom:201.813333pt;}
.y39{bottom:202.393729pt;}
.y19a{bottom:208.000000pt;}
.y70{bottom:208.213333pt;}
.y161{bottom:208.533333pt;}
.y237{bottom:208.853333pt;}
.y1cf{bottom:213.333333pt;}
.yc0{bottom:220.053333pt;}
.y197{bottom:228.000000pt;}
.y160{bottom:228.053333pt;}
.y236{bottom:228.373333pt;}
.y1a{bottom:231.253333pt;}
.y1ca{bottom:232.000000pt;}
.y38{bottom:232.489895pt;}
.y250{bottom:232.821973pt;}
.y6f{bottom:234.133333pt;}
.y13c{bottom:245.973333pt;}
.y15f{bottom:247.573333pt;}
.y235{bottom:247.893333pt;}
.y6d{bottom:254.666667pt;}
.ybf{bottom:258.133333pt;}
.y19{bottom:260.373333pt;}
.y37{bottom:260.808843pt;}
.y13b{bottom:265.813333pt;}
.y15e{bottom:267.093333pt;}
.yf7{bottom:273.333333pt;}
.y212{bottom:274.666667pt;}
.y24f{bottom:275.733333pt;}
.ybe{bottom:278.613333pt;}
.y36{bottom:280.387374pt;}
.y234{bottom:286.293333pt;}
.y15d{bottom:286.613333pt;}
.y195{bottom:286.666667pt;}
.y1ec{bottom:288.000000pt;}
.y18{bottom:289.813333pt;}
.y1c9{bottom:290.666667pt;}
.y11b{bottom:292.000000pt;}
.y6c{bottom:293.333333pt;}
.y213{bottom:294.666667pt;}
.ybd{bottom:299.093333pt;}
.y13a{bottom:305.781973pt;}
.y233{bottom:305.813333pt;}
.y15c{bottom:306.133333pt;}
.y35{bottom:308.531514pt;}
.y1c7{bottom:312.000000pt;}
.y6b{bottom:313.333333pt;}
.y24e{bottom:313.813333pt;}
.y17{bottom:318.933333pt;}
.ybc{bottom:319.253333pt;}
.y194{bottom:324.000000pt;}
.y232{bottom:325.333333pt;}
.yf6{bottom:329.173333pt;}
.y1c5{bottom:332.000000pt;}
.y24d{bottom:333.333333pt;}
.ybb{bottom:339.733333pt;}
.y6a{bottom:341.013333pt;}
.y1eb{bottom:342.666667pt;}
.y15b{bottom:343.541973pt;}
.y231{bottom:344.853333pt;}
.y16{bottom:348.373333pt;}
.y11a{bottom:349.333333pt;}
.y24c{bottom:352.853333pt;}
.yba{bottom:359.253333pt;}
.y193{bottom:361.333333pt;}
.y230{bottom:364.373333pt;}
.y69{bottom:366.933333pt;}
.yf5{bottom:367.573333pt;}
.y139{bottom:367.893333pt;}
.y24b{bottom:372.373333pt;}
.y15{bottom:377.813333pt;}
.y192{bottom:378.666667pt;}
.y34{bottom:379.516200pt;}
.yb9{bottom:379.733333pt;}
.y15a{bottom:381.901333pt;}
.y95{bottom:385.813333pt;}
.yf4{bottom:387.093333pt;}
.y119{bottom:387.413333pt;}
.y138{bottom:387.733333pt;}
.y1c4{bottom:390.666667pt;}
.y68{bottom:393.173333pt;}
.yb8{bottom:399.893333pt;}
.y33{bottom:400.842815pt;}
.y1e8{bottom:401.333333pt;}
.yf3{bottom:402.453333pt;}
.y14{bottom:406.933333pt;}
.y94{bottom:410.453333pt;}
.y157{bottom:410.666667pt;}
.y20b{bottom:412.000000pt;}
.y67{bottom:413.333333pt;}
.y190{bottom:416.000000pt;}
.y22f{bottom:421.973333pt;}
.y118{bottom:425.813333pt;}
.y137{bottom:427.701973pt;}
.yb7{bottom:428.373333pt;}
.y1c1{bottom:429.333333pt;}
.y32{bottom:430.909846pt;}
.y93{bottom:431.573333pt;}
.y20d{bottom:432.000000pt;}
.y66{bottom:433.333333pt;}
.y13{bottom:436.373333pt;}
.y22e{bottom:441.493333pt;}
.y142{bottom:450.666667pt;}
.y24a{bottom:450.741973pt;}
.y149{bottom:451.893333pt;}
.y18e{bottom:452.000000pt;}
.y65{bottom:453.333333pt;}
.y1e7{bottom:456.000000pt;}
.y117{bottom:459.413333pt;}
.y31{bottom:460.976877pt;}
.y22d{bottom:461.013333pt;}
.y92{bottom:464.853333pt;}
.y12{bottom:465.493333pt;}
.yb6{bottom:466.773333pt;}
.y136{bottom:470.293333pt;}
.y63{bottom:473.333333pt;}
.yb5{bottom:486.293333pt;}
.y18c{bottom:489.333333pt;}
.y30{bottom:491.043908pt;}
.y61{bottom:493.333333pt;}
.y11{bottom:494.933333pt;}
.y91{bottom:495.573333pt;}
.y22c{bottom:499.093333pt;}
.yb4{bottom:505.813333pt;}
.y18a{bottom:506.666667pt;}
.y135{bottom:508.693333pt;}
.y1c0{bottom:509.333333pt;}
.y5f{bottom:513.333333pt;}
.y1e6{bottom:514.666667pt;}
.y2f{bottom:521.110939pt;}
.y10{bottom:524.053333pt;}
.yb3{bottom:525.333333pt;}
.y90{bottom:526.613333pt;}
.y1bc{bottom:528.000000pt;}
.y134{bottom:528.213333pt;}
.y208{bottom:529.333333pt;}
.y5d{bottom:534.666667pt;}
.y22b{bottom:539.381973pt;}
.y189{bottom:544.000000pt;}
.yb2{bottom:544.853333pt;}
.y247{bottom:545.333333pt;}
.y209{bottom:549.333333pt;}
.yf{bottom:553.493333pt;}
.y5b{bottom:554.666667pt;}
.y8f{bottom:557.333333pt;}
.y133{bottom:562.133333pt;}
.y187{bottom:562.666667pt;}
.yb1{bottom:564.373333pt;}
.y207{bottom:568.000000pt;}
.y1e5{bottom:569.333333pt;}
.yd5{bottom:573.333333pt;}
.y59{bottom:574.666667pt;}
.yd{bottom:576.000000pt;}
.y22a{bottom:576.213333pt;}
.y185{bottom:581.333333pt;}
.y1b6{bottom:586.666667pt;}
.y8e{bottom:588.053333pt;}
.yd4{bottom:592.853333pt;}
.y57{bottom:594.666667pt;}
.y229{bottom:595.413333pt;}
.ya{bottom:596.000000pt;}
.y183{bottom:600.000000pt;}
.y240{bottom:604.000000pt;}
.yb0{bottom:604.053333pt;}
.y140{bottom:605.333333pt;}
.yd3{bottom:612.373333pt;}
.y228{bottom:614.933333pt;}
.y180{bottom:617.333333pt;}
.y8d{bottom:618.773333pt;}
.yf2{bottom:619.733333pt;}
.y56{bottom:621.653333pt;}
.y205{bottom:626.666667pt;}
.y1e2{bottom:629.333333pt;}
.y227{bottom:634.453333pt;}
.yf1{bottom:638.613333pt;}
.yd2{bottom:641.781973pt;}
.yaf{bottom:647.253333pt;}
.y206{bottom:648.000000pt;}
.y55{bottom:648.213333pt;}
.y8c{bottom:649.493333pt;}
.y226{bottom:653.973333pt;}
.yf0{bottom:658.133333pt;}
.y2d{bottom:658.364605pt;}
.y1b8{bottom:658.666667pt;}
.y13f{bottom:662.293333pt;}
.y202{bottom:665.333333pt;}
.y177{bottom:677.333333pt;}
.y54{bottom:677.653333pt;}
.y9{bottom:678.293333pt;}
.y1b3{bottom:680.000000pt;}
.y8b{bottom:680.533333pt;}
.y225{bottom:681.493333pt;}
.y1df{bottom:682.666667pt;}
.yd1{bottom:684.693333pt;}
.yae{bottom:685.333333pt;}
.y2c{bottom:688.431636pt;}
.y17d{bottom:697.333333pt;}
.y52{bottom:700.000000pt;}
.y13e{bottom:700.373333pt;}
.y2e{bottom:702.971921pt;}
.yd0{bottom:704.213333pt;}
.yad{bottom:704.853333pt;}
.y8a{bottom:711.253333pt;}
.yef{bottom:712.501973pt;}
.y17c{bottom:717.333333pt;}
.y2b{bottom:718.498667pt;}
.y224{bottom:719.573333pt;}
.y50{bottom:721.333333pt;}
.ycf{bottom:723.733333pt;}
.yac{bottom:724.373333pt;}
.y8{bottom:726.613333pt;}
.y17b{bottom:737.333333pt;}
.y1b1{bottom:738.666667pt;}
.y13d{bottom:738.773333pt;}
.y223{bottom:739.093333pt;}
.y4e{bottom:741.333333pt;}
.y89{bottom:741.973333pt;}
.y1d9{bottom:742.666667pt;}
.yab{bottom:743.893333pt;}
.y2a{bottom:748.565698pt;}
.yee{bottom:755.093333pt;}
.y222{bottom:758.613333pt;}
.y179{bottom:758.666667pt;}
.y4c{bottom:761.333333pt;}
.yaa{bottom:763.413333pt;}
.y1ff{bottom:764.000000pt;}
.y73{bottom:764.053333pt;}
.y6{bottom:772.000000pt;}
.y88{bottom:772.693333pt;}
.yed{bottom:774.613333pt;}
.y1af{bottom:777.333333pt;}
.y221{bottom:778.133333pt;}
.y29{bottom:778.632729pt;}
.y174{bottom:778.666667pt;}
.y4a{bottom:781.333333pt;}
.ya9{bottom:782.933333pt;}
.y201{bottom:784.000000pt;}
.y116{bottom:789.333333pt;}
.y72{bottom:790.293333pt;}
.y48{bottom:801.333333pt;}
.ya8{bottom:802.453333pt;}
.y1fc{bottom:802.666667pt;}
.y87{bottom:804.373333pt;}
.y220{bottom:805.973333pt;}
.yce{bottom:806.613333pt;}
.y28{bottom:808.699760pt;}
.yda{bottom:809.333333pt;}
.y7f{bottom:810.666667pt;}
.y45{bottom:821.333333pt;}
.ycd{bottom:826.133333pt;}
.y115{bottom:827.413333pt;}
.y7d{bottom:830.666667pt;}
.y27{bottom:834.090668pt;}
.y16b{bottom:837.333333pt;}
.y86{bottom:838.293333pt;}
.y97{bottom:839.573333pt;}
.ya7{bottom:840.853333pt;}
.y23e{bottom:842.453333pt;}
.y258{bottom:844.373333pt;}
.ycc{bottom:845.653333pt;}
.y21f{bottom:845.941961pt;}
.y114{bottom:846.933333pt;}
.y7c{bottom:850.666667pt;}
.y171{bottom:857.333333pt;}
.y9e{bottom:860.000000pt;}
.ya6{bottom:860.373333pt;}
.y23d{bottom:862.293333pt;}
.y5{bottom:863.893333pt;}
.ycb{bottom:865.173333pt;}
.y113{bottom:866.453333pt;}
.y44{bottom:868.053333pt;}
.y7b{bottom:870.666667pt;}
.y85{bottom:872.213333pt;}
.ya3{bottom:876.053333pt;}
.y16f{bottom:877.333333pt;}
.ya5{bottom:879.893333pt;}
.y9d{bottom:880.000000pt;}
.y21e{bottom:882.773333pt;}
.y257{bottom:883.413333pt;}
.yca{bottom:884.693333pt;}
.y112{bottom:886.293333pt;}
.y7a{bottom:890.666667pt;}
.y43{bottom:894.613333pt;}
.y16d{bottom:897.333333pt;}
.ya4{bottom:899.413333pt;}
.y9b{bottom:900.000000pt;}
.y1ac{bottom:901.013333pt;}
.y1f9{bottom:901.333333pt;}
.y23c{bottom:902.261973pt;}
.yc9{bottom:904.213333pt;}
.y256{bottom:904.533333pt;}
.y84{bottom:906.453333pt;}
.y78{bottom:910.666667pt;}
.y1a2{bottom:916.000000pt;}
.y169{bottom:918.666667pt;}
.ya2{bottom:918.933333pt;}
.y99{bottom:920.000000pt;}
.y4{bottom:922.453333pt;}
.y42{bottom:923.733333pt;}
.y132{bottom:924.693333pt;}
.y111{bottom:926.261973pt;}
.y76{bottom:930.666667pt;}
.y1a8{bottom:936.000000pt;}
.ya1{bottom:938.453333pt;}
.y98{bottom:940.000000pt;}
.y83{bottom:940.373333pt;}
.y131{bottom:944.213333pt;}
.y23b{bottom:944.853333pt;}
.yd8{bottom:945.333333pt;}
.y74{bottom:952.000000pt;}
.y41{bottom:952.533333pt;}
.y1a5{bottom:956.000000pt;}
.ya0{bottom:957.973333pt;}
.yc8{bottom:961.813333pt;}
.y110{bottom:963.733333pt;}
.y1f8{bottom:965.653333pt;}
.y96{bottom:971.733333pt;}
.y3{bottom:972.373333pt;}
.y82{bottom:972.693333pt;}
.y167{bottom:977.333333pt;}
.y1d4{bottom:978.666667pt;}
.y1f7{bottom:981.333333pt;}
.yc7{bottom:982.293333pt;}
.y10f{bottom:983.253333pt;}
.y2{bottom:991.893333pt;}
.y40{bottom:995.093333pt;}
.y1a1{bottom:997.333333pt;}
.y81{bottom:997.653333pt;}
.y71{bottom:997.973333pt;}
.y1d6{bottom:998.666667pt;}
.yc6{bottom:1001.813333pt;}
.yd7{bottom:1002.773333pt;}
.y1{bottom:1011.413333pt;}
.y3c{bottom:1021.653333pt;}
.y3a{bottom:1036.000000pt;}
.hd{height:0.000000pt;}
.h15{height:18.666667pt;}
.h7{height:20.000000pt;}
.h19{height:21.333333pt;}
.h29{height:33.333333pt;}
.h1f{height:34.666667pt;}
.h3e{height:37.333333pt;}
.h20{height:37.380000pt;}
.ha{height:38.587500pt;}
.h28{height:38.587594pt;}
.h25{height:38.587606pt;}
.h26{height:38.587624pt;}
.h23{height:38.587625pt;}
.h34{height:38.587639pt;}
.h2d{height:38.587660pt;}
.h37{height:38.587692pt;}
.h2a{height:38.587713pt;}
.h27{height:38.587739pt;}
.h2e{height:38.587767pt;}
.h22{height:38.587777pt;}
.h35{height:38.587852pt;}
.h2b{height:38.588247pt;}
.h33{height:38.588353pt;}
.h31{height:38.588567pt;}
.h13{height:38.666667pt;}
.h17{height:40.000000pt;}
.h3c{height:40.796250pt;}
.h38{height:41.333333pt;}
.h1b{height:42.656250pt;}
.h14{height:43.250000pt;}
.h49{height:43.750000pt;}
.hb{height:43.784440pt;}
.hc{height:43.975218pt;}
.hf{height:44.243360pt;}
.h39{height:45.165444pt;}
.h1{height:45.937500pt;}
.h18{height:46.468750pt;}
.h9{height:46.666667pt;}
.h4a{height:47.008125pt;}
.h10{height:47.560154pt;}
.h12{height:47.799150pt;}
.h1a{height:50.490625pt;}
.h1d{height:52.961250pt;}
.h43{height:54.666667pt;}
.h44{height:56.000000pt;}
.h3f{height:58.666667pt;}
.h1e{height:59.979775pt;}
.h3a{height:60.000000pt;}
.h1c{height:61.179375pt;}
.he{height:61.251196pt;}
.h16{height:61.556250pt;}
.h8{height:63.984375pt;}
.h5{height:72.000000pt;}
.h41{height:73.333333pt;}
.h47{height:78.666667pt;}
.h6{height:79.867500pt;}
.h3{height:80.000000pt;}
.h3b{height:81.333333pt;}
.h40{height:93.333333pt;}
.h45{height:98.666667pt;}
.h4{height:99.815625pt;}
.h46{height:100.000000pt;}
.h3d{height:101.333333pt;}
.h42{height:118.666667pt;}
.h48{height:121.333333pt;}
.h2{height:127.968750pt;}
.h24{height:136.320000pt;}
.h2c{height:136.640000pt;}
.h21{height:137.333333pt;}
.h36{height:153.600000pt;}
.h32{height:156.000000pt;}
.h11{height:158.375314pt;}
.h30{height:185.279973pt;}
.h2f{height:186.666667pt;}
.h0{height:1122.666667pt;}
.w5{width:0.000000pt;}
.w8{width:9.333333pt;}
.w1d{width:17.333333pt;}
.wd{width:29.333333pt;}
.w15{width:46.666667pt;}
.w22{width:48.320000pt;}
.w20{width:50.666667pt;}
.w23{width:56.000000pt;}
.w21{width:57.333333pt;}
.w1b{width:57.600000pt;}
.w17{width:58.666667pt;}
.w1f{width:60.000000pt;}
.w4{width:63.600000pt;}
.w18{width:66.666667pt;}
.w1e{width:73.333333pt;}
.we{width:74.666667pt;}
.w26{width:74.880000pt;}
.w14{width:76.000000pt;}
.w1a{width:76.800000pt;}
.w2{width:77.333333pt;}
.w16{width:78.666667pt;}
.w39{width:80.000000pt;}
.w32{width:85.333333pt;}
.w38{width:90.666667pt;}
.w24{width:93.760000pt;}
.w34{width:94.666667pt;}
.wf{width:96.000000pt;}
.w36{width:100.000000pt;}
.wb{width:101.333333pt;}
.w33{width:104.000000pt;}
.w12{width:105.333333pt;}
.w35{width:109.333333pt;}
.w1c{width:112.640000pt;}
.w19{width:114.666667pt;}
.w6{width:130.666667pt;}
.w27{width:131.840000pt;}
.w2d{width:132.000000pt;}
.w25{width:133.333333pt;}
.w2f{width:158.666667pt;}
.w9{width:162.666667pt;}
.w10{width:169.333333pt;}
.w31{width:198.666667pt;}
.w2e{width:201.333333pt;}
.w2c{width:209.333333pt;}
.w2b{width:234.666667pt;}
.w2a{width:258.666667pt;}
.w11{width:272.000000pt;}
.w37{width:321.333333pt;}
.wa{width:441.333333pt;}
.w7{width:458.666667pt;}
.wc{width:477.333333pt;}
.w30{width:492.000000pt;}
.w13{width:498.666667pt;}
.w3{width:521.333333pt;}
.w29{width:558.666667pt;}
.w3a{width:586.666667pt;}
.w28{width:596.000000pt;}
.w1{width:602.666667pt;}
.w0{width:793.333333pt;}
.x9{left:-3.092758pt;}
.x0{left:0.000000pt;}
.x11{left:0.960000pt;}
.x13{left:6.986635pt;}
.x4{left:8.000000pt;}
.x22{left:9.434891pt;}
.x2c{left:10.393813pt;}
.x20{left:11.633771pt;}
.x43{left:13.764053pt;}
.x26{left:14.760416pt;}
.x28{left:16.685867pt;}
.x62{left:17.903467pt;}
.x2a{left:18.797440pt;}
.x31{left:21.280053pt;}
.x5c{left:22.893877pt;}
.x25{left:25.040352pt;}
.x68{left:26.326933pt;}
.x3b{left:29.759990pt;}
.x2f{left:30.826606pt;}
.x47{left:31.840000pt;}
.x38{left:32.799999pt;}
.x48{left:35.679920pt;}
.x37{left:36.639931pt;}
.x35{left:37.706614pt;}
.x49{left:39.253440pt;}
.x3a{left:40.693311pt;}
.x5d{left:42.906581pt;}
.x46{left:44.159973pt;}
.x30{left:45.333328pt;}
.x2e{left:46.385920pt;}
.x39{left:49.439989pt;}
.x4f{left:52.480027pt;}
.x50{left:53.599973pt;}
.x4b{left:54.560160pt;}
.x33{left:55.519971pt;}
.x51{left:56.693307pt;}
.x7{left:58.802762pt;}
.x63{left:61.576427pt;}
.x3d{left:63.840047pt;}
.x3e{left:64.960005pt;}
.x5a{left:69.397333pt;}
.x5{left:71.360032pt;}
.x34{left:73.120011pt;}
.x2{left:88.000000pt;}
.x16{left:89.333333pt;}
.x52{left:91.359840pt;}
.x1{left:96.000000pt;}
.xe{left:98.559904pt;}
.x5b{left:99.606453pt;}
.xb{left:100.981351pt;}
.x1f{left:105.333333pt;}
.x1a{left:112.000000pt;}
.x54{left:114.666667pt;}
.x1c{left:120.000000pt;}
.x53{left:126.559867pt;}
.x1d{left:144.000000pt;}
.x65{left:146.328533pt;}
.x17{left:162.666667pt;}
.x6{left:164.000000pt;}
.x41{left:168.000000pt;}
.x69{left:171.766304pt;}
.x21{left:181.333333pt;}
.x8{left:185.663800pt;}
.x14{left:188.000000pt;}
.x64{left:190.666667pt;}
.x1b{left:192.000000pt;}
.x5e{left:200.000000pt;}
.xf{left:217.333333pt;}
.x23{left:226.666667pt;}
.x3{left:231.466784pt;}
.x12{left:249.333333pt;}
.x18{left:257.333333pt;}
.x24{left:300.000000pt;}
.x32{left:300.960000pt;}
.x5f{left:304.000000pt;}
.x58{left:313.333333pt;}
.x57{left:322.666667pt;}
.xc{left:370.695460pt;}
.x55{left:372.000000pt;}
.x27{left:377.333333pt;}
.x36{left:378.400000pt;}
.x40{left:388.000000pt;}
.x10{left:392.000000pt;}
.x4d{left:396.866560pt;}
.x19{left:425.333333pt;}
.x42{left:426.666667pt;}
.x29{left:436.000000pt;}
.x60{left:464.000000pt;}
.x44{left:482.666667pt;}
.x4a{left:484.000000pt;}
.xa{left:500.845267pt;}
.x2b{left:502.666667pt;}
.x66{left:512.000000pt;}
.x59{left:514.666667pt;}
.xd{left:518.750692pt;}
.x4e{left:558.666667pt;}
.x2d{left:568.000000pt;}
.x3c{left:569.120000pt;}
.x61{left:573.333333pt;}
.x45{left:577.333333pt;}
.x67{left:602.666667pt;}
.x56{left:606.666667pt;}
.x1e{left:661.186560pt;}
.x15{left:664.000000pt;}
.x4c{left:680.866560pt;}
.x3f{left:698.560000pt;}
}




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