
    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_2204d73c24c00703cd0d7274.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.015625;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_6b7394786d293e05845edc7a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.022461;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_51fea2c57cff87b81788d143.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.958630;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_f6958a31c0e82ccf34c86d28.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.041992;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_784fcb5ea80a74c6dc57a3ca.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.032715;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_dcb4827323818f5402b86e1a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.026855;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_42ace182ec5b1f8ed2572b9a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.011230;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_29a4fb64ceecaad4b2e2dcfe.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.964860;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_810247508f75146172760a89.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.041992;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_610c8b150f23127220ee07ef.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.710938;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_9e4279a5e911ffba2f264596.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.760342;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_e28f65e8556eb2944f75b424.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_07e974490c71b9618eb3c31e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.893066;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_a4b07af4c67eace8f3e05c46.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.880371;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_6d85dc3b2b6b681262268795.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_93ca4104412ea758ad6acde4.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_d5201b75b4b29f61dbfb600c.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_adce3c6b063286ea3db025ca.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.893066;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_37989499d70a154c55f96d1b.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.958556;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_85e1e8796142668294177ce9.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_e18ea77aa5a11189df129e1b.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_adce3c6b063286ea3db025ca.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.893066;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_8afc132683935b6449c1b592.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.917969;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_531fcee352603637198b0e93.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.973633;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;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.233957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233957,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.233959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233959,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);}
.m2{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);}
.v7{vertical-align:-28.649400px;}
.v8{vertical-align:-25.763864px;}
.v3{vertical-align:-19.980000px;}
.v6{vertical-align:-10.339200px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:15.984000px;}
.v2{vertical-align:19.980000px;}
.v1{vertical-align:21.978000px;}
.v4{vertical-align:40.960800px;}
.ls18{letter-spacing:-6.432000px;}
.ls3a{letter-spacing:-3.290940px;}
.ls3b{letter-spacing:-3.220920px;}
.ls26{letter-spacing:-3.124008px;}
.ls55{letter-spacing:-3.077984px;}
.ls27{letter-spacing:-3.046872px;}
.ls56{letter-spacing:-3.039984px;}
.ls1d{letter-spacing:-3.008304px;}
.ls57{letter-spacing:-2.963984px;}
.ls1a{letter-spacing:-2.931168px;}
.ls58{letter-spacing:-2.925985px;}
.ls2b{letter-spacing:-2.905830px;}
.ls20{letter-spacing:-2.892600px;}
.ls2a{letter-spacing:-2.870820px;}
.ls54{letter-spacing:-2.849985px;}
.ls25{letter-spacing:-2.815464px;}
.ls49{letter-spacing:-2.773985px;}
.ls38{letter-spacing:-2.765790px;}
.ls24{letter-spacing:-2.738328px;}
.ls48{letter-spacing:-2.735986px;}
.ls29{letter-spacing:-2.730780px;}
.ls32{letter-spacing:-2.625750px;}
.ls5a{letter-spacing:-2.621986px;}
.ls42{letter-spacing:-2.583986px;}
.ls2e{letter-spacing:-2.555730px;}
.ls2d{letter-spacing:-2.520720px;}
.ls4b{letter-spacing:-2.355988px;}
.ls3c{letter-spacing:-2.345670px;}
.ls1c{letter-spacing:-2.314080px;}
.ls30{letter-spacing:-2.310660px;}
.ls59{letter-spacing:-2.279988px;}
.ls31{letter-spacing:-2.275650px;}
.ls3d{letter-spacing:-2.170620px;}
.ls46{letter-spacing:-2.165989px;}
.ls2c{letter-spacing:-2.135610px;}
.ls47{letter-spacing:-2.127989px;}
.ls2f{letter-spacing:-2.100600px;}
.ls52{letter-spacing:-2.089989px;}
.ls39{letter-spacing:-2.065590px;}
.ls53{letter-spacing:-2.051989px;}
.ls1b{letter-spacing:-2.044104px;}
.ls36{letter-spacing:-2.030580px;}
.ls37{letter-spacing:-1.995570px;}
.ls33{letter-spacing:-1.820520px;}
.ls45{letter-spacing:-1.785991px;}
.ls34{letter-spacing:-1.785510px;}
.ls28{letter-spacing:-1.750500px;}
.ls44{letter-spacing:-1.747991px;}
.ls14{letter-spacing:-1.740000px;}
.ls43{letter-spacing:-1.709991px;}
.ls50{letter-spacing:-1.671991px;}
.ls1e{letter-spacing:-1.610460px;}
.ls1f{letter-spacing:-1.505430px;}
.ls4d{letter-spacing:-1.481992px;}
.ls35{letter-spacing:-1.470420px;}
.ls4a{letter-spacing:-1.405993px;}
.ls51{letter-spacing:-1.367993px;}
.ls23{letter-spacing:-1.295370px;}
.ls4f{letter-spacing:-1.291993px;}
.ls22{letter-spacing:-1.260360px;}
.ls4e{letter-spacing:-1.253993px;}
.ls21{letter-spacing:-1.225350px;}
.ls13{letter-spacing:-1.200000px;}
.ls41{letter-spacing:-1.020000px;}
.lsc{letter-spacing:-0.918000px;}
.ls4c{letter-spacing:-0.797996px;}
.ls40{letter-spacing:-0.780000px;}
.lsb{letter-spacing:-0.691200px;}
.lsd{letter-spacing:-0.660000px;}
.ls60{letter-spacing:-0.648000px;}
.ls5b{letter-spacing:-0.600000px;}
.lsa{letter-spacing:-0.408000px;}
.ls10{letter-spacing:-0.360000px;}
.ls5e{letter-spacing:-0.324000px;}
.ls5c{letter-spacing:-0.300000px;}
.ls19{letter-spacing:-0.270000px;}
.lse{letter-spacing:-0.240000px;}
.lsf{letter-spacing:-0.180000px;}
.ls8{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.001800px;}
.ls15{letter-spacing:0.002400px;}
.ls3e{letter-spacing:0.003000px;}
.ls3{letter-spacing:0.012000px;}
.ls5f{letter-spacing:0.015600px;}
.ls12{letter-spacing:0.016800px;}
.ls11{letter-spacing:0.017400px;}
.ls7{letter-spacing:0.025800px;}
.ls6{letter-spacing:0.270000px;}
.ls61{letter-spacing:0.300000px;}
.ls5d{letter-spacing:0.378000px;}
.ls9{letter-spacing:0.408000px;}
.ls62{letter-spacing:0.720000px;}
.ls4{letter-spacing:0.882000px;}
.ls5{letter-spacing:4.064400px;}
.ls3f{letter-spacing:4.223400px;}
.ls1{letter-spacing:43.181364px;}
.ls0{letter-spacing:43.181964px;}
.ls2{letter-spacing:43.201242px;}
.ls17{letter-spacing:245.393592px;}
.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;}
}
.wsf5{word-spacing:-60.000000px;}
.ws0{word-spacing:-25.602000px;}
.ws8{word-spacing:-17.928000px;}
.ws112{word-spacing:-16.434000px;}
.ws4{word-spacing:-14.940000px;}
.ws4e{word-spacing:-14.880000px;}
.wsbb{word-spacing:-14.820000px;}
.ws9{word-spacing:-14.700000px;}
.wsf6{word-spacing:-14.640000px;}
.ws41{word-spacing:-14.520000px;}
.wsbc{word-spacing:-14.460000px;}
.wsf7{word-spacing:-14.400000px;}
.ws10c{word-spacing:-14.340000px;}
.wsf4{word-spacing:-14.280000px;}
.wsf3{word-spacing:-14.100000px;}
.ws40{word-spacing:-14.040000px;}
.wsba{word-spacing:-13.920000px;}
.wsbd{word-spacing:-13.680000px;}
.ws7{word-spacing:-13.662000px;}
.ws6{word-spacing:-13.500000px;}
.ws7a{word-spacing:-13.446000px;}
.ws113{word-spacing:-13.392000px;}
.ws5{word-spacing:-13.230000px;}
.ws121{word-spacing:-13.068000px;}
.ws6d{word-spacing:-12.960000px;}
.wse{word-spacing:-12.150000px;}
.wsa{word-spacing:-11.772000px;}
.wsc{word-spacing:-11.232000px;}
.ws2{word-spacing:-10.896000px;}
.wsb{word-spacing:-10.854000px;}
.ws25{word-spacing:-10.800000px;}
.ws87{word-spacing:-10.721904px;}
.wsd1{word-spacing:-10.563944px;}
.wsf{word-spacing:-10.464000px;}
.ws8a{word-spacing:-9.732780px;}
.ws88{word-spacing:-9.642000px;}
.ws1{word-spacing:-9.542544px;}
.wsd0{word-spacing:-9.499950px;}
.ws3{word-spacing:-9.417600px;}
.ws86{word-spacing:-8.752500px;}
.ws4f{word-spacing:-8.675040px;}
.ws68{word-spacing:-6.940032px;}
.ws128{word-spacing:-5.184000px;}
.ws129{word-spacing:-5.130000px;}
.wsc1{word-spacing:-3.360000px;}
.wsc2{word-spacing:-3.300000px;}
.ws10e{word-spacing:-3.240000px;}
.wsec{word-spacing:-2.925985px;}
.wsa1{word-spacing:-2.870820px;}
.wsdb{word-spacing:-2.735986px;}
.ws10b{word-spacing:-2.700000px;}
.ws122{word-spacing:-2.646000px;}
.ws100{word-spacing:-2.580000px;}
.ws124{word-spacing:-2.538000px;}
.ws63{word-spacing:-2.520000px;}
.ws123{word-spacing:-2.484000px;}
.ws5e{word-spacing:-2.460000px;}
.wscc{word-spacing:-2.400000px;}
.wscb{word-spacing:-2.340000px;}
.wsf9{word-spacing:-2.280000px;}
.ws44{word-spacing:-2.220000px;}
.ws127{word-spacing:-2.214000px;}
.ws59{word-spacing:-2.160000px;}
.wsd9{word-spacing:-2.127989px;}
.ws1c{word-spacing:-2.106000px;}
.ws10a{word-spacing:-2.100000px;}
.wsc5{word-spacing:-2.040000px;}
.ws1e{word-spacing:-1.890000px;}
.ws1d{word-spacing:-1.836000px;}
.ws49{word-spacing:-1.800000px;}
.wsac{word-spacing:-1.785510px;}
.wsef{word-spacing:-1.782000px;}
.ws18{word-spacing:-1.674000px;}
.ws35{word-spacing:-1.620000px;}
.ws11a{word-spacing:-1.566000px;}
.ws103{word-spacing:-1.560000px;}
.ws7e{word-spacing:-1.404000px;}
.ws84{word-spacing:-1.380000px;}
.ws83{word-spacing:-1.320000px;}
.ws126{word-spacing:-1.134000px;}
.ws6c{word-spacing:-0.960000px;}
.wsff{word-spacing:-0.900000px;}
.ws133{word-spacing:-0.864000px;}
.ws3a{word-spacing:-0.840000px;}
.wsb9{word-spacing:-0.810000px;}
.ws22{word-spacing:-0.780000px;}
.ws57{word-spacing:-0.720000px;}
.ws10d{word-spacing:-0.660000px;}
.wsf0{word-spacing:-0.648000px;}
.ws31{word-spacing:-0.600000px;}
.ws13d{word-spacing:-0.594000px;}
.ws10f{word-spacing:-0.420000px;}
.ws116{word-spacing:-0.378000px;}
.ws46{word-spacing:-0.300000px;}
.ws12{word-spacing:-0.216000px;}
.ws104{word-spacing:-0.180000px;}
.ws56{word-spacing:-0.120000px;}
.ws110{word-spacing:-0.060000px;}
.wsd{word-spacing:-0.054000px;}
.ws26{word-spacing:-0.048000px;}
.ws10{word-spacing:0.000000px;}
.ws33{word-spacing:0.060000px;}
.ws64{word-spacing:0.120000px;}
.ws48{word-spacing:0.180000px;}
.ws45{word-spacing:0.240000px;}
.ws7d{word-spacing:0.270000px;}
.wsb6{word-spacing:0.300000px;}
.ws115{word-spacing:0.324000px;}
.ws4a{word-spacing:0.360000px;}
.ws139{word-spacing:0.378000px;}
.ws11{word-spacing:0.408000px;}
.wsfe{word-spacing:0.420000px;}
.ws11e{word-spacing:0.432000px;}
.ws101{word-spacing:0.540000px;}
.wsfa{word-spacing:0.600000px;}
.ws135{word-spacing:0.648000px;}
.ws43{word-spacing:0.660000px;}
.ws13{word-spacing:0.691200px;}
.wsbe{word-spacing:0.780000px;}
.wsdf{word-spacing:0.797996px;}
.ws19{word-spacing:0.918000px;}
.ws82{word-spacing:1.020000px;}
.ws61{word-spacing:1.140000px;}
.ws5c{word-spacing:1.200000px;}
.ws97{word-spacing:1.225350px;}
.ws12f{word-spacing:1.242000px;}
.wse1{word-spacing:1.253993px;}
.ws98{word-spacing:1.260360px;}
.wse2{word-spacing:1.291993px;}
.ws99{word-spacing:1.295370px;}
.wsf2{word-spacing:1.296000px;}
.wsf1{word-spacing:1.350000px;}
.wse4{word-spacing:1.367993px;}
.ws81{word-spacing:1.380000px;}
.wsdd{word-spacing:1.405993px;}
.ws51{word-spacing:1.440000px;}
.wsad{word-spacing:1.470420px;}
.wse0{word-spacing:1.481992px;}
.ws50{word-spacing:1.500000px;}
.ws95{word-spacing:1.505430px;}
.ws94{word-spacing:1.610460px;}
.ws53{word-spacing:1.620000px;}
.wse3{word-spacing:1.671991px;}
.ws36{word-spacing:1.680000px;}
.wsd4{word-spacing:1.709991px;}
.ws37{word-spacing:1.740000px;}
.wsd5{word-spacing:1.747991px;}
.ws9e{word-spacing:1.750500px;}
.wsab{word-spacing:1.785510px;}
.wsd6{word-spacing:1.785991px;}
.ws55{word-spacing:1.800000px;}
.wsaa{word-spacing:1.820520px;}
.ws8f{word-spacing:1.836000px;}
.ws58{word-spacing:1.860000px;}
.ws107{word-spacing:1.980000px;}
.wsaf{word-spacing:1.995570px;}
.wsae{word-spacing:2.030580px;}
.ws91{word-spacing:2.044104px;}
.wse6{word-spacing:2.051989px;}
.wsb1{word-spacing:2.065590px;}
.wse5{word-spacing:2.089989px;}
.ws109{word-spacing:2.100000px;}
.wsa6{word-spacing:2.100600px;}
.wsd8{word-spacing:2.127989px;}
.wsa3{word-spacing:2.135610px;}
.wsd7{word-spacing:2.165989px;}
.wsb5{word-spacing:2.170620px;}
.ws134{word-spacing:2.214000px;}
.ws85{word-spacing:2.220000px;}
.wsa8{word-spacing:2.275650px;}
.wsed{word-spacing:2.279988px;}
.wsa7{word-spacing:2.310660px;}
.ws92{word-spacing:2.314080px;}
.ws13c{word-spacing:2.322000px;}
.wsb4{word-spacing:2.345670px;}
.wsde{word-spacing:2.355988px;}
.ws15{word-spacing:2.430000px;}
.wsa4{word-spacing:2.520720px;}
.wsa5{word-spacing:2.555730px;}
.wsd3{word-spacing:2.583986px;}
.ws14{word-spacing:2.592000px;}
.wsee{word-spacing:2.621986px;}
.wsa9{word-spacing:2.625750px;}
.wscd{word-spacing:2.640000px;}
.ws102{word-spacing:2.700000px;}
.ws9f{word-spacing:2.730780px;}
.wsda{word-spacing:2.735986px;}
.ws9a{word-spacing:2.738328px;}
.ws27{word-spacing:2.760000px;}
.wsb0{word-spacing:2.765790px;}
.wsdc{word-spacing:2.773985px;}
.ws9b{word-spacing:2.815464px;}
.wse7{word-spacing:2.849985px;}
.ws11c{word-spacing:2.862000px;}
.wsa0{word-spacing:2.870820px;}
.ws4b{word-spacing:2.880000px;}
.ws96{word-spacing:2.892600px;}
.wsa2{word-spacing:2.905830px;}
.wseb{word-spacing:2.925985px;}
.ws90{word-spacing:2.931168px;}
.ws5d{word-spacing:2.940000px;}
.wsea{word-spacing:2.963984px;}
.ws93{word-spacing:3.008304px;}
.ws137{word-spacing:3.024000px;}
.wse9{word-spacing:3.039984px;}
.ws9d{word-spacing:3.046872px;}
.wsce{word-spacing:3.060000px;}
.wse8{word-spacing:3.077984px;}
.ws9c{word-spacing:3.124008px;}
.ws12a{word-spacing:3.186000px;}
.wsb3{word-spacing:3.220920px;}
.wsb2{word-spacing:3.290940px;}
.ws3b{word-spacing:3.300000px;}
.ws12e{word-spacing:3.348000px;}
.ws52{word-spacing:3.360000px;}
.ws7c{word-spacing:3.456000px;}
.ws3d{word-spacing:3.480000px;}
.ws105{word-spacing:3.540000px;}
.ws106{word-spacing:3.600000px;}
.ws3c{word-spacing:3.720000px;}
.ws13b{word-spacing:3.834000px;}
.ws13a{word-spacing:3.888000px;}
.wsc7{word-spacing:3.900000px;}
.ws29{word-spacing:3.960000px;}
.ws1a{word-spacing:4.050000px;}
.ws23{word-spacing:4.080000px;}
.ws1b{word-spacing:4.104000px;}
.ws32{word-spacing:4.140000px;}
.ws3e{word-spacing:4.200000px;}
.ws80{word-spacing:4.260000px;}
.ws16{word-spacing:4.266000px;}
.ws7f{word-spacing:4.320000px;}
.ws2f{word-spacing:4.380000px;}
.ws30{word-spacing:4.440000px;}
.ws28{word-spacing:4.620000px;}
.ws5f{word-spacing:4.680000px;}
.ws60{word-spacing:4.740000px;}
.wsca{word-spacing:4.800000px;}
.ws125{word-spacing:4.806000px;}
.wsc6{word-spacing:4.860000px;}
.wsfb{word-spacing:4.920000px;}
.ws3f{word-spacing:5.040000px;}
.ws62{word-spacing:5.100000px;}
.ws11d{word-spacing:5.130000px;}
.ws138{word-spacing:5.238000px;}
.ws120{word-spacing:5.346000px;}
.ws54{word-spacing:5.400000px;}
.ws42{word-spacing:5.460000px;}
.wsbf{word-spacing:5.580000px;}
.ws117{word-spacing:5.616000px;}
.wsc0{word-spacing:5.640000px;}
.ws2b{word-spacing:5.760000px;}
.ws2a{word-spacing:5.820000px;}
.ws17{word-spacing:5.832000px;}
.wsc9{word-spacing:5.940000px;}
.wsc8{word-spacing:6.000000px;}
.wsfc{word-spacing:6.060000px;}
.ws5a{word-spacing:6.120000px;}
.ws108{word-spacing:6.180000px;}
.ws4d{word-spacing:6.360000px;}
.ws11f{word-spacing:6.426000px;}
.ws132{word-spacing:6.480000px;}
.ws5b{word-spacing:6.660000px;}
.ws11b{word-spacing:6.696000px;}
.ws2c{word-spacing:6.720000px;}
.ws6b{word-spacing:6.780000px;}
.ws2d{word-spacing:6.840000px;}
.ws2e{word-spacing:6.900000px;}
.ws6a{word-spacing:7.020000px;}
.ws136{word-spacing:7.074000px;}
.ws130{word-spacing:7.236000px;}
.wsf8{word-spacing:7.260000px;}
.ws111{word-spacing:7.500000px;}
.ws13f{word-spacing:7.506000px;}
.wsb8{word-spacing:7.560000px;}
.wsb7{word-spacing:7.620000px;}
.wsfd{word-spacing:7.800000px;}
.ws47{word-spacing:8.100000px;}
.ws118{word-spacing:8.208000px;}
.ws20{word-spacing:8.532000px;}
.ws1f{word-spacing:8.586000px;}
.ws39{word-spacing:8.700000px;}
.ws12b{word-spacing:9.288000px;}
.ws119{word-spacing:9.558000px;}
.wsc4{word-spacing:10.680000px;}
.ws24{word-spacing:11.040000px;}
.ws34{word-spacing:12.060000px;}
.ws131{word-spacing:12.150000px;}
.ws21{word-spacing:12.660000px;}
.ws38{word-spacing:13.920000px;}
.ws4c{word-spacing:14.580000px;}
.ws12d{word-spacing:17.226000px;}
.ws12c{word-spacing:17.388000px;}
.ws114{word-spacing:21.330000px;}
.wsc3{word-spacing:22.800000px;}
.ws13e{word-spacing:24.786000px;}
.ws65{word-spacing:112.462800px;}
.ws8e{word-spacing:160.527600px;}
.ws8d{word-spacing:164.568000px;}
.ws8b{word-spacing:204.748800px;}
.ws8c{word-spacing:204.760800px;}
.wscf{word-spacing:222.569250px;}
.wsd2{word-spacing:258.246641px;}
.ws66{word-spacing:259.380000px;}
.ws69{word-spacing:283.981800px;}
.ws67{word-spacing:289.247400px;}
.ws89{word-spacing:313.721400px;}
.ws79{word-spacing:537.877200px;}
.ws70{word-spacing:558.231600px;}
.ws76{word-spacing:558.243600px;}
.ws71{word-spacing:558.268200px;}
.ws75{word-spacing:564.853200px;}
.ws73{word-spacing:564.901200px;}
.ws6f{word-spacing:658.068600px;}
.ws78{word-spacing:708.961200px;}
.ws6e{word-spacing:800.157000px;}
.ws72{word-spacing:849.970800px;}
.ws77{word-spacing:874.561200px;}
.ws74{word-spacing:879.838200px;}
.ws7b{word-spacing:1334.436526px;}
._51{margin-left:-798.936930px;}
._a{margin-left:-10.321800px;}
._10{margin-left:-8.064000px;}
._5f{margin-left:-7.010400px;}
._9{margin-left:-5.971200px;}
._1{margin-left:-4.573200px;}
._4{margin-left:-3.214200px;}
._0{margin-left:-1.377000px;}
._2{width:1.254600px;}
._3{width:2.509200px;}
._6{width:4.271400px;}
._7{width:5.635800px;}
._b{width:6.720600px;}
._8{width:7.848000px;}
._f{width:8.871600px;}
._d{width:10.938000px;}
._c{width:12.096000px;}
._e{width:13.356000px;}
._60{width:14.396400px;}
._62{width:15.816600px;}
._61{width:20.082600px;}
._5b{width:21.372000px;}
._5a{width:23.093400px;}
._5{width:36.624000px;}
._5e{width:43.338000px;}
._54{width:51.515400px;}
._53{width:54.388800px;}
._39{width:77.961000px;}
._52{width:82.539000px;}
._55{width:87.267000px;}
._3a{width:91.413600px;}
._13{width:104.148600px;}
._3b{width:105.736800px;}
._45{width:106.890000px;}
._56{width:113.580600px;}
._40{width:118.399800px;}
._3e{width:131.781600px;}
._59{width:134.317200px;}
._1e{width:145.353000px;}
._41{width:146.707800px;}
._1f{width:158.853000px;}
._21{width:160.075800px;}
._37{width:162.192600px;}
._36{width:163.612800px;}
._38{width:164.825400px;}
._12{width:167.434800px;}
._14{width:171.910800px;}
._46{width:173.010600px;}
._3c{width:176.910600px;}
._11{width:181.265400px;}
._20{width:186.247200px;}
._3d{width:189.873000px;}
._2d{width:191.320200px;}
._15{width:202.729200px;}
._2e{width:204.757800px;}
._25{width:211.077000px;}
._1b{width:216.873000px;}
._43{width:223.285800px;}
._26{width:224.553600px;}
._28{width:225.824400px;}
._1c{width:230.241000px;}
._1d{width:231.535800px;}
._44{width:236.714592px;}
._27{width:238.052400px;}
._57{width:239.292600px;}
._5c{width:240.796200px;}
._58{width:242.626800px;}
._5d{width:256.611300px;}
._33{width:265.005600px;}
._2f{width:268.516200px;}
._3f{width:274.223400px;}
._2b{width:276.291000px;}
._2c{width:277.429800px;}
._35{width:278.565000px;}
._42{width:284.628000px;}
._16{width:287.859600px;}
._34{width:292.016400px;}
._32{width:294.289200px;}
._23{width:296.037000px;}
._24{width:297.331800px;}
._17{width:301.500000px;}
._19{width:302.682600px;}
._18{width:315.123600px;}
._31{width:322.303200px;}
._22{width:323.722200px;}
._1a{width:331.524000px;}
._4e{width:342.476400px;}
._2a{width:353.626200px;}
._29{width:359.194200px;}
._30{width:374.062800px;}
._4a{width:781.954800px;}
._48{width:864.802800px;}
._49{width:875.230200px;}
._47{width:881.074800px;}
._4d{width:883.474800px;}
._4c{width:887.074800px;}
._4b{width:891.394800px;}
._4f{width:1189.275567px;}
._50{width:1197.919665px;}
.fcb{color:rgb(236,30,39);}
.fc9{color:rgb(94,39,145);}
.fc8{color:rgb(249,167,39);}
.fc5{color:rgb(17,15,13);}
.fcc{color:rgb(66,186,61);}
.fc4{color:rgb(38,64,138);}
.fc2{color:rgb(75,119,196);}
.fc1{color:rgb(65,102,168);}
.fca{color:rgb(128,204,42);}
.fc7{color:rgb(59,174,155);}
.fc6{color:rgb(82,174,229);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:27.984000px;}
.fs10{font-size:29.175000px;}
.fs9{font-size:34.980000px;}
.fsd{font-size:35.010000px;}
.fs11{font-size:37.999800px;}
.fs3{font-size:38.478000px;}
.fse{font-size:38.568000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:43.200000px;}
.fsc{font-size:44.989800px;}
.fs0{font-size:48.000000px;}
.fsf{font-size:52.515000px;}
.fs6{font-size:54.000000px;}
.fs12{font-size:57.000000px;}
.fs7{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fsb{font-size:67.484400px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y198{bottom:5.083200px;}
.yf8{bottom:6.985350px;}
.y107{bottom:16.124658px;}
.y108{bottom:16.126050px;}
.y197{bottom:20.124750px;}
.y10e{bottom:25.266000px;}
.ye1{bottom:26.272500px;}
.y10d{bottom:34.397400px;}
.y111{bottom:43.538100px;}
.y1ac{bottom:44.262258px;}
.y103{bottom:52.668312px;}
.y104{bottom:52.668900px;}
.y1b3{bottom:54.588703px;}
.yff{bottom:61.800000px;}
.y1a1{bottom:63.138658px;}
.y1{bottom:68.124750px;}
.y113{bottom:70.950300px;}
.y3e{bottom:71.212050px;}
.y3f{bottom:75.036150px;}
.y19e{bottom:78.566577px;}
.y114{bottom:80.081250px;}
.yfa{bottom:89.211750px;}
.y1b6{bottom:93.709497px;}
.yea{bottom:98.356373px;}
.ye5{bottom:107.498918px;}
.y1c7{bottom:109.317915px;}
.y6c{bottom:113.078700px;}
.y97{bottom:113.078850px;}
.ye6{bottom:116.627775px;}
.y2b{bottom:117.212550px;}
.y11{bottom:117.875550px;}
.y1e9{bottom:120.500850px;}
.y1c9{bottom:123.453841px;}
.y109{bottom:125.751113px;}
.y10{bottom:132.275550px;}
.y6b{bottom:134.078700px;}
.y96{bottom:134.078850px;}
.yfb{bottom:134.899800px;}
.y2a{bottom:138.212550px;}
.y1ef{bottom:139.529400px;}
.y1e8{bottom:140.300850px;}
.y1bc{bottom:140.610751px;}
.y189{bottom:143.234700px;}
.ye2{bottom:144.045900px;}
.yd8{bottom:145.355850px;}
.yf{bottom:146.675550px;}
.y112{bottom:153.163163px;}
.y19f{bottom:154.281179px;}
.y6a{bottom:155.078700px;}
.y95{bottom:155.078850px;}
.y29{bottom:159.212550px;}
.ye{bottom:161.075550px;}
.yed{bottom:162.308100px;}
.yd7{bottom:165.155850px;}
.y188{bottom:165.840900px;}
.y1c2{bottom:170.469093px;}
.ye8{bottom:171.448500px;}
.y69{bottom:176.078700px;}
.y94{bottom:176.078850px;}
.y28{bottom:180.212550px;}
.y10a{bottom:180.568020px;}
.y1bf{bottom:183.493525px;}
.y187{bottom:188.447250px;}
.yf1{bottom:189.710250px;}
.y1ab{bottom:192.062480px;}
.yd9{bottom:194.345850px;}
.y68{bottom:197.078700px;}
.y93{bottom:197.078850px;}
.yfe{bottom:198.845565px;}
.y3b{bottom:199.392600px;}
.y1ad{bottom:200.640935px;}
.y27{bottom:201.212550px;}
.y1ee{bottom:202.529400px;}
.y101{bottom:207.984255px;}
.y1bb{bottom:209.219389px;}
.y186{bottom:211.053600px;}
.y105{bottom:217.119623px;}
.y3a{bottom:217.392600px;}
.y1a5{bottom:217.788344px;}
.y67{bottom:218.078700px;}
.y92{bottom:218.078850px;}
.y26{bottom:222.212550px;}
.y10c{bottom:226.247235px;}
.y1a8{bottom:226.366799px;}
.y185{bottom:233.659800px;}
.y1ba{bottom:234.945254px;}
.y39{bottom:235.392600px;}
.y110{bottom:235.394100px;}
.y66{bottom:239.078700px;}
.y91{bottom:239.078850px;}
.y1b1{bottom:243.514209px;}
.y100{bottom:244.525943px;}
.y1b5{bottom:252.092664px;}
.y38{bottom:253.392600px;}
.yee{bottom:253.666695px;}
.y25{bottom:254.700300px;}
.y184{bottom:256.266150px;}
.y65{bottom:260.078700px;}
.y90{bottom:260.078850px;}
.y1a3{bottom:260.671119px;}
.yf5{bottom:262.793625px;}
.y1ed{bottom:265.937100px;}
.y1b8{bottom:269.240074px;}
.y37{bottom:271.392600px;}
.yf9{bottom:271.923525px;}
.yc5{bottom:272.506950px;}
.y1a9{bottom:277.828028px;}
.y64{bottom:281.078700px;}
.y8f{bottom:281.078850px;}
.ye4{bottom:281.087250px;}
.y1c6{bottom:286.406483px;}
.y183{bottom:286.748100px;}
.y36{bottom:289.392600px;}
.y10b{bottom:290.193000px;}
.y1af{bottom:294.975438px;}
.y1ec{bottom:295.441050px;}
.yf7{bottom:299.339400px;}
.y63{bottom:302.078700px;}
.y8e{bottom:302.078850px;}
.y1a4{bottom:303.553893px;}
.y35{bottom:307.392600px;}
.ye9{bottom:308.486393px;}
.y1a0{bottom:312.132348px;}
.yfd{bottom:317.616990px;}
.y1c5{bottom:320.710803px;}
.y62{bottom:323.078700px;}
.y8d{bottom:323.078850px;}
.yc4{bottom:325.119150px;}
.y34{bottom:325.392600px;}
.yf2{bottom:326.748142px;}
.y19d{bottom:329.279758px;}
.y24{bottom:335.227950px;}
.yf3{bottom:335.877000px;}
.y1be{bottom:337.867712px;}
.y33{bottom:343.392600px;}
.y61{bottom:344.078700px;}
.ya0{bottom:344.078850px;}
.yfc{bottom:345.029820px;}
.y19a{bottom:346.427167px;}
.yc3{bottom:347.725350px;}
.yf4{bottom:354.152220px;}
.y19b{bottom:355.005622px;}
.y23{bottom:355.027950px;}
.y8c{bottom:358.441050px;}
.y1c8{bottom:363.593577px;}
.y182{bottom:365.078700px;}
.y9f{bottom:365.078850px;}
.y102{bottom:367.855650px;}
.yc2{bottom:370.331700px;}
.y1c4{bottom:372.172032px;}
.y32{bottom:378.400500px;}
.y60{bottom:379.440900px;}
.y1c3{bottom:380.750487px;}
.y181{bottom:386.078700px;}
.y9e{bottom:386.078850px;}
.ye7{bottom:386.715300px;}
.y1bd{bottom:389.328942px;}
.yc1{bottom:392.938050px;}
.y22{bottom:396.087750px;}
.y31{bottom:396.400500px;}
.y1b4{bottom:397.888396px;}
.yf0{bottom:404.890068px;}
.y1a7{bottom:406.466851px;}
.y180{bottom:407.078700px;}
.y8b{bottom:407.078850px;}
.y30{bottom:414.400500px;}
.y1c1{bottom:415.054806px;}
.yc0{bottom:415.544250px;}
.y21{bottom:415.887750px;}
.yef{bottom:418.109250px;}
.y1eb{bottom:421.441050px;}
.y1b7{bottom:423.614261px;}
.y5f{bottom:428.078700px;}
.y8a{bottom:428.078850px;}
.yeb{bottom:431.733450px;}
.y1c0{bottom:432.202216px;}
.y20{bottom:435.687750px;}
.ybf{bottom:438.150600px;}
.y1b0{bottom:440.771171px;}
.y5e{bottom:449.078700px;}
.y89{bottom:449.078850px;}
.y1aa{bottom:449.349626px;}
.y2f{bottom:449.408400px;}
.yda{bottom:450.423150px;}
.y10f{bottom:450.911400px;}
.y1f{bottom:455.487750px;}
.y1a6{bottom:457.928080px;}
.ybe{bottom:460.756950px;}
.y1b2{bottom:466.497035px;}
.y2e{bottom:467.408400px;}
.y106{bottom:467.620950px;}
.y5d{bottom:470.078700px;}
.y88{bottom:470.078850px;}
.y1a2{bottom:475.075490px;}
.y1e{bottom:475.287750px;}
.ye3{bottom:482.083950px;}
.ybd{bottom:483.363150px;}
.y1b9{bottom:483.653945px;}
.y2d{bottom:485.408400px;}
.y5c{bottom:491.078700px;}
.y87{bottom:491.078850px;}
.yf6{bottom:491.195400px;}
.y199{bottom:492.222900px;}
.y1d{bottom:495.087750px;}
.y115{bottom:500.335950px;}
.yec{bottom:500.345922px;}
.y1ae{bottom:500.810855px;}
.y2c{bottom:503.408400px;}
.ybc{bottom:505.969500px;}
.y19c{bottom:509.379810px;}
.y124{bottom:510.473400px;}
.y15b{bottom:510.473550px;}
.y5b{bottom:512.078700px;}
.y86{bottom:512.078850px;}
.yd6{bottom:513.716700px;}
.y1c{bottom:514.887750px;}
.y17f{bottom:525.499050px;}
.y9d{bottom:525.513600px;}
.ybb{bottom:528.575850px;}
.y195{bottom:533.078700px;}
.y85{bottom:533.078850px;}
.y1b{bottom:534.687750px;}
.yd5{bottom:536.323050px;}
.y1e7{bottom:541.890750px;}
.y5a{bottom:546.513450px;}
.yba{bottom:551.182050px;}
.y194{bottom:554.078700px;}
.y84{bottom:554.078850px;}
.y1a{bottom:554.487750px;}
.y9c{bottom:557.811150px;}
.yd4{bottom:558.929400px;}
.y1e6{bottom:561.690750px;}
.yb9{bottom:573.788400px;}
.y19{bottom:574.287750px;}
.y193{bottom:575.078700px;}
.y83{bottom:575.078850px;}
.y59{bottom:578.811000px;}
.y1e5{bottom:581.490750px;}
.yd3{bottom:581.535600px;}
.ydf{bottom:582.358500px;}
.y18{bottom:594.087750px;}
.y192{bottom:596.078700px;}
.y82{bottom:596.078850px;}
.yb8{bottom:596.394750px;}
.y1e4{bottom:601.290750px;}
.yde{bottom:602.158500px;}
.yd2{bottom:604.141950px;}
.y17{bottom:613.887750px;}
.y191{bottom:617.078700px;}
.y81{bottom:617.078850px;}
.yb7{bottom:619.000950px;}
.y196{bottom:621.621000px;}
.ye0{bottom:622.488000px;}
.y1e3{bottom:626.704200px;}
.yd1{bottom:626.748300px;}
.y122{bottom:628.645972px;}
.y14a{bottom:631.513815px;}
.y16{bottom:633.687750px;}
.y58{bottom:638.078700px;}
.y80{bottom:638.078850px;}
.y15e{bottom:638.682225px;}
.yb6{bottom:641.607300px;}
.yd0{bottom:649.354500px;}
.y157{bottom:653.004308px;}
.y139{bottom:653.007150px;}
.y15{bottom:653.487750px;}
.y57{bottom:659.078700px;}
.y9b{bottom:659.078850px;}
.y143{bottom:660.163890px;}
.yb5{bottom:664.213650px;}
.y121{bottom:666.181069px;}
.y16e{bottom:667.329765px;}
.ycf{bottom:671.960850px;}
.y14{bottom:673.287750px;}
.y1f4{bottom:673.440900px;}
.y7f{bottom:673.441050px;}
.y14d{bottom:674.497343px;}
.y11b{bottom:677.629339px;}
.y56{bottom:680.078700px;}
.y9a{bottom:680.078850px;}
.y169{bottom:681.657608px;}
.y1d5{bottom:684.738766px;}
.yb4{bottom:686.819850px;}
.y173{bottom:688.825905px;}
.y1f8{bottom:693.513600px;}
.yce{bottom:694.567200px;}
.y177{bottom:695.994203px;}
.y1d4{bottom:697.877197px;}
.y55{bottom:701.078700px;}
.y99{bottom:701.078850px;}
.y14f{bottom:703.153028px;}
.y13{bottom:704.385150px;}
.y137{bottom:705.126982px;}
.y12a{bottom:706.177282px;}
.yb3{bottom:709.426200px;}
.y17b{bottom:710.312115px;}
.y1d3{bottom:710.702129px;}
.ycd{bottom:717.173400px;}
.y174{bottom:717.481590px;}
.y54{bottom:722.078700px;}
.y7e{bottom:722.078850px;}
.y1d2{bottom:722.102069px;}
.y151{bottom:724.640415px;}
.y1f7{bottom:725.811150px;}
.y155{bottom:731.803065px;}
.yb2{bottom:732.032550px;}
.y120{bottom:733.623457px;}
.y147{bottom:738.962648px;}
.ycc{bottom:739.779750px;}
.y11a{bottom:741.014944px;}
.y53{bottom:743.078700px;}
.y7d{bottom:743.078850px;}
.y13c{bottom:746.130945px;}
.y1d6{bottom:747.352936px;}
.y129{bottom:751.917847px;}
.y149{bottom:753.296100px;}
.yb1{bottom:754.638750px;}
.y136{bottom:756.539167px;}
.y1d1{bottom:760.196869px;}
.y156{bottom:760.458750px;}
.ycb{bottom:762.386100px;}
.y52{bottom:764.078700px;}
.y7c{bottom:764.078850px;}
.y141{bottom:767.618333px;}
.y1f3{bottom:769.529250px;}
.y14b{bottom:774.783488px;}
.yb0{bottom:777.245100px;}
.y14e{bottom:781.951785px;}
.y1d7{bottom:782.797250px;}
.yd{bottom:783.666900px;}
.yca{bottom:784.992300px;}
.y51{bottom:785.078700px;}
.y7b{bottom:785.078850px;}
.y168{bottom:789.112050px;}
.y11f{bottom:790.930451px;}
.y158{bottom:796.273980px;}
.y1cf{bottom:798.700166px;}
.y128{bottom:799.601467px;}
.y119{bottom:799.792357px;}
.yaf{bottom:799.851450px;}
.yc{bottom:801.666900px;}
.y135{bottom:802.192207px;}
.y140{bottom:803.433563px;}
.y50{bottom:806.078700px;}
.y7a{bottom:806.078850px;}
.yc9{bottom:807.598650px;}
.y190{bottom:809.143500px;}
.y166{bottom:810.607582px;}
.y161{bottom:817.775880px;}
.yc8{bottom:817.838850px;}
.y1e2{bottom:817.898550px;}
.yb{bottom:819.666900px;}
.yae{bottom:822.457650px;}
.y154{bottom:824.929665px;}
.y4f{bottom:827.078700px;}
.y79{bottom:827.078850px;}
.y18f{bottom:830.143500px;}
.y179{bottom:832.094400px;}
.y1d8{bottom:835.654972px;}
.ya{bottom:837.666900px;}
.y13e{bottom:839.248793px;}
.y1d0{bottom:844.233426px;}
.yad{bottom:845.064000px;}
.y160{bottom:846.431565px;}
.y1ce{bottom:847.966907px;}
.y4e{bottom:848.078700px;}
.y78{bottom:848.078850px;}
.y18e{bottom:851.143500px;}
.y14c{bottom:853.582245px;}
.y118{bottom:853.961580px;}
.y11e{bottom:854.801820px;}
.y9{bottom:855.666900px;}
.yc7{bottom:858.560850px;}
.y176{bottom:860.751263px;}
.y1dd{bottom:862.786050px;}
.y134{bottom:866.663122px;}
.yac{bottom:867.670200px;}
.y170{bottom:867.910808px;}
.y4d{bottom:869.078700px;}
.y77{bottom:869.078850px;}
.y18d{bottom:872.143500px;}
.y8{bottom:873.666900px;}
.y1f2{bottom:874.529250px;}
.y172{bottom:875.079105px;}
.yc6{bottom:878.360850px;}
.y145{bottom:882.232320px;}
.y16f{bottom:889.398195px;}
.y4c{bottom:890.078700px;}
.y76{bottom:890.078850px;}
.yab{bottom:890.276550px;}
.y7{bottom:891.666900px;}
.y18c{bottom:893.143500px;}
.y1d9{bottom:894.535662px;}
.y150{bottom:896.565772px;}
.y11d{bottom:903.273165px;}
.y15a{bottom:903.729900px;}
.y1cd{bottom:909.431583px;}
.y15d{bottom:910.893727px;}
.y4b{bottom:911.078700px;}
.y75{bottom:911.078850px;}
.yaa{bottom:912.882900px;}
.y1de{bottom:917.548800px;}
.y16b{bottom:918.045128px;}
.y117{bottom:924.843701px;}
.y17a{bottom:925.221000px;}
.y18b{bottom:925.440900px;}
.y6{bottom:926.674650px;}
.y133{bottom:930.783937px;}
.y4a{bottom:932.078700px;}
.y74{bottom:932.078850px;}
.y13f{bottom:932.375393px;}
.y127{bottom:933.742282px;}
.ya9{bottom:935.489100px;}
.y17c{bottom:939.540090px;}
.y5{bottom:946.474800px;}
.y153{bottom:946.711950px;}
.y49{bottom:953.078700px;}
.y73{bottom:953.078850px;}
.y16c{bottom:953.869110px;}
.y1da{bottom:957.681829px;}
.ya8{bottom:958.095450px;}
.y1f1{bottom:958.529250px;}
.y11c{bottom:959.831820px;}
.y15c{bottom:961.036800px;}
.y138{bottom:966.958020px;}
.y12f{bottom:967.509427px;}
.y17d{bottom:968.195775px;}
.y1cc{bottom:971.314258px;}
.y48{bottom:974.078700px;}
.y72{bottom:974.078850px;}
.y1df{bottom:974.206800px;}
.y13d{bottom:975.358920px;}
.ya7{bottom:980.701800px;}
.y175{bottom:982.533548px;}
.y12e{bottom:982.572480px;}
.y4{bottom:983.282550px;}
.y116{bottom:986.719500px;}
.y1ea{bottom:988.441050px;}
.y142{bottom:989.686763px;}
.y47{bottom:995.078700px;}
.ydd{bottom:995.078850px;}
.y171{bottom:996.861390px;}
.y126{bottom:1002.773250px;}
.y1db{bottom:1002.987091px;}
.ya6{bottom:1003.308150px;}
.y144{bottom:1004.014605px;}
.y12d{bottom:1007.070727px;}
.y71{bottom:1009.441050px;}
.y167{bottom:1011.181350px;}
.y164{bottom:1014.164475px;}
.y46{bottom:1016.078700px;}
.ydc{bottom:1016.078850px;}
.y3{bottom:1016.282550px;}
.y1cb{bottom:1016.990017px;}
.y17e{bottom:1025.340848px;}
.y12c{bottom:1025.372205px;}
.ya5{bottom:1025.914350px;}
.y98{bottom:1030.440900px;}
.y178{bottom:1032.672450px;}
.y1e0{bottom:1033.372800px;}
.y165{bottom:1036.763430px;}
.y45{bottom:1037.078700px;}
.ydb{bottom:1037.078850px;}
.y132{bottom:1038.562222px;}
.y148{bottom:1047.001050px;}
.ya4{bottom:1048.520700px;}
.y2{bottom:1049.282550px;}
.y15f{bottom:1050.426082px;}
.y125{bottom:1052.312400px;}
.y12b{bottom:1056.679897px;}
.y44{bottom:1058.078700px;}
.y70{bottom:1058.078850px;}
.ya3{bottom:1058.760900px;}
.y131{bottom:1059.095587px;}
.y159{bottom:1061.325900px;}
.y1dc{bottom:1066.209258px;}
.y13b{bottom:1066.945080px;}
.y152{bottom:1075.654500px;}
.y1ca{bottom:1077.257700px;}
.y16d{bottom:1077.874530px;}
.y43{bottom:1079.078700px;}
.y6f{bottom:1079.078850px;}
.y123{bottom:1082.421900px;}
.y1f6{bottom:1083.525300px;}
.y146{bottom:1092.904995px;}
.y1e1{bottom:1094.491050px;}
.ya2{bottom:1099.482900px;}
.y42{bottom:1100.078700px;}
.y6e{bottom:1100.078850px;}
.y162{bottom:1104.315225px;}
.y12{bottom:1109.815500px;}
.y163{bottom:1111.474770px;}
.y18a{bottom:1112.695800px;}
.y1f5{bottom:1115.822850px;}
.y16a{bottom:1118.626170px;}
.ya1{bottom:1119.282900px;}
.y41{bottom:1121.078700px;}
.y6d{bottom:1121.078850px;}
.y130{bottom:1123.041352px;}
.y1f0{bottom:1125.451800px;}
.y13a{bottom:1125.796890px;}
.y3d{bottom:1155.615300px;}
.y3c{bottom:1175.115300px;}
.y40{bottom:1178.691750px;}
.h1e{height:21.240198px;}
.h16{height:23.727480px;}
.h1d{height:25.488237px;}
.h21{height:25.753771px;}
.h18{height:26.138859px;}
.h22{height:27.664893px;}
.h17{height:28.078559px;}
.h14{height:30.469166px;}
.h19{height:33.939840px;}
.h6{height:34.446094px;}
.h1a{height:35.565579px;}
.h1b{height:35.591221px;}
.h1f{height:36.000000px;}
.h2{height:38.039062px;}
.h11{height:38.226562px;}
.he{height:38.273438px;}
.h5{height:38.531250px;}
.h23{height:38.603027px;}
.h24{height:38.630859px;}
.h12{height:39.000000px;}
.hd{height:42.793945px;}
.h7{height:43.004883px;}
.hc{height:43.057617px;}
.h9{height:43.875000px;}
.h27{height:45.615234px;}
.h13{height:45.736498px;}
.h8{height:47.343750px;}
.hb{height:48.750000px;}
.h25{height:49.218750px;}
.h26{height:50.176758px;}
.hf{height:52.078125px;}
.h4{height:53.625000px;}
.ha{height:56.812500px;}
.h10{height:79.187363px;}
.h3{height:81.231445px;}
.h15{height:514.611000px;}
.h1c{height:519.591000px;}
.h20{height:520.458000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:328.683000px;}
.w2{width:578.182500px;}
.w5{width:651.747000px;}
.w3{width:710.929500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x37{left:3.987300px;}
.x2{left:73.984200px;}
.xa{left:107.068950px;}
.xc{left:108.286950px;}
.xe{left:112.251900px;}
.x62{left:116.731940px;}
.x5{left:119.576400px;}
.x6{left:121.047600px;}
.x7{left:123.420750px;}
.x38{left:125.726550px;}
.x17{left:128.382900px;}
.x39{left:142.618875px;}
.x5a{left:161.599500px;}
.x18{left:164.498250px;}
.x3a{left:179.248087px;}
.x12{left:188.418450px;}
.x13{left:191.784750px;}
.x46{left:193.797300px;}
.xf{left:195.153900px;}
.x3b{left:199.483867px;}
.x10{left:205.050300px;}
.x3c{left:211.317247px;}
.xd{left:214.630350px;}
.x11{left:222.464400px;}
.x5b{left:234.797550px;}
.x3d{left:237.495975px;}
.x19{left:240.747000px;}
.x52{left:245.800140px;}
.x54{left:263.852985px;}
.x4d{left:270.389625px;}
.x3e{left:276.602145px;}
.x4f{left:287.297183px;}
.x4c{left:289.189995px;}
.x4b{left:291.623190px;}
.x49{left:295.325497px;}
.x50{left:297.698145px;}
.x4{left:300.189000px;}
.x51{left:303.063427px;}
.x16{left:304.440900px;}
.x57{left:305.698688px;}
.x1a{left:307.072950px;}
.x4e{left:310.100550px;}
.xb{left:317.196900px;}
.x47{left:324.926452px;}
.x55{left:345.540068px;}
.x4a{left:346.974000px;}
.x48{left:348.050557px;}
.x26{left:349.632000px;}
.x56{left:350.756558px;}
.x32{left:352.077300px;}
.x2c{left:356.372250px;}
.x58{left:359.092650px;}
.x14{left:360.130350px;}
.x53{left:365.508083px;}
.x59{left:371.700720px;}
.x64{left:373.496589px;}
.x31{left:377.153100px;}
.x1c{left:382.215300px;}
.x23{left:386.808128px;}
.x22{left:387.981150px;}
.x63{left:390.653498px;}
.x3{left:396.050700px;}
.x24{left:398.068500px;}
.x25{left:399.985171px;}
.x20{left:401.118450px;}
.x1b{left:402.716100px;}
.x34{left:403.925737px;}
.x33{left:405.369900px;}
.x1d{left:406.929900px;}
.x29{left:408.279910px;}
.x2b{left:410.530159px;}
.x2f{left:411.938100px;}
.x21{left:413.236927px;}
.x2d{left:414.382724px;}
.x27{left:415.393950px;}
.x1f{left:417.396900px;}
.x2a{left:419.147700px;}
.x2e{left:420.275250px;}
.x28{left:421.295250px;}
.x30{left:423.983400px;}
.x1e{left:425.965552px;}
.x61{left:435.996760px;}
.x65{left:442.950723px;}
.x66{left:456.022654px;}
.x3f{left:457.253745px;}
.x60{left:478.395037px;}
.x5c{left:482.078400px;}
.x5f{left:496.264443px;}
.x68{left:527.766277px;}
.x67{left:542.605199px;}
.x15{left:553.887150px;}
.x69{left:557.339621px;}
.x5d{left:561.348600px;}
.x40{left:566.204865px;}
.x41{left:570.721155px;}
.x5e{left:573.470536px;}
.x42{left:593.092545px;}
.x45{left:598.475332px;}
.x43{left:600.864765px;}
.x44{left:605.521095px;}
.x6b{left:649.597650px;}
.x9{left:652.471650px;}
.x8{left:672.129900px;}
.x6a{left:710.265600px;}
.x36{left:726.709185px;}
.x35{left:728.442180px;}
.x1{left:801.350850px;}
@media print{
.v7{vertical-align:-25.466133pt;}
.v8{vertical-align:-22.901213pt;}
.v3{vertical-align:-17.760000pt;}
.v6{vertical-align:-9.190400pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:14.208000pt;}
.v2{vertical-align:17.760000pt;}
.v1{vertical-align:19.536000pt;}
.v4{vertical-align:36.409600pt;}
.ls18{letter-spacing:-5.717333pt;}
.ls3a{letter-spacing:-2.925280pt;}
.ls3b{letter-spacing:-2.863040pt;}
.ls26{letter-spacing:-2.776896pt;}
.ls55{letter-spacing:-2.735986pt;}
.ls27{letter-spacing:-2.708331pt;}
.ls56{letter-spacing:-2.702208pt;}
.ls1d{letter-spacing:-2.674048pt;}
.ls57{letter-spacing:-2.634653pt;}
.ls1a{letter-spacing:-2.605483pt;}
.ls58{letter-spacing:-2.600875pt;}
.ls2b{letter-spacing:-2.582960pt;}
.ls20{letter-spacing:-2.571200pt;}
.ls2a{letter-spacing:-2.551840pt;}
.ls54{letter-spacing:-2.533320pt;}
.ls25{letter-spacing:-2.502635pt;}
.ls49{letter-spacing:-2.465765pt;}
.ls38{letter-spacing:-2.458480pt;}
.ls24{letter-spacing:-2.434069pt;}
.ls48{letter-spacing:-2.431987pt;}
.ls29{letter-spacing:-2.427360pt;}
.ls32{letter-spacing:-2.334000pt;}
.ls5a{letter-spacing:-2.330654pt;}
.ls42{letter-spacing:-2.296877pt;}
.ls2e{letter-spacing:-2.271760pt;}
.ls2d{letter-spacing:-2.240640pt;}
.ls4b{letter-spacing:-2.094211pt;}
.ls3c{letter-spacing:-2.085040pt;}
.ls1c{letter-spacing:-2.056960pt;}
.ls30{letter-spacing:-2.053920pt;}
.ls59{letter-spacing:-2.026656pt;}
.ls31{letter-spacing:-2.022800pt;}
.ls3d{letter-spacing:-1.929440pt;}
.ls46{letter-spacing:-1.925323pt;}
.ls2c{letter-spacing:-1.898320pt;}
.ls47{letter-spacing:-1.891546pt;}
.ls2f{letter-spacing:-1.867200pt;}
.ls52{letter-spacing:-1.857768pt;}
.ls39{letter-spacing:-1.836080pt;}
.ls53{letter-spacing:-1.823990pt;}
.ls1b{letter-spacing:-1.816981pt;}
.ls36{letter-spacing:-1.804960pt;}
.ls37{letter-spacing:-1.773840pt;}
.ls33{letter-spacing:-1.618240pt;}
.ls45{letter-spacing:-1.587547pt;}
.ls34{letter-spacing:-1.587120pt;}
.ls28{letter-spacing:-1.556000pt;}
.ls44{letter-spacing:-1.553770pt;}
.ls14{letter-spacing:-1.546667pt;}
.ls43{letter-spacing:-1.519992pt;}
.ls50{letter-spacing:-1.486214pt;}
.ls1e{letter-spacing:-1.431520pt;}
.ls1f{letter-spacing:-1.338160pt;}
.ls4d{letter-spacing:-1.317326pt;}
.ls35{letter-spacing:-1.307040pt;}
.ls4a{letter-spacing:-1.249771pt;}
.ls51{letter-spacing:-1.215994pt;}
.ls23{letter-spacing:-1.151440pt;}
.ls4f{letter-spacing:-1.148438pt;}
.ls22{letter-spacing:-1.120320pt;}
.ls4e{letter-spacing:-1.114661pt;}
.ls21{letter-spacing:-1.089200pt;}
.ls13{letter-spacing:-1.066667pt;}
.ls41{letter-spacing:-0.906667pt;}
.lsc{letter-spacing:-0.816000pt;}
.ls4c{letter-spacing:-0.709330pt;}
.ls40{letter-spacing:-0.693333pt;}
.lsb{letter-spacing:-0.614400pt;}
.lsd{letter-spacing:-0.586667pt;}
.ls60{letter-spacing:-0.576000pt;}
.ls5b{letter-spacing:-0.533333pt;}
.lsa{letter-spacing:-0.362667pt;}
.ls10{letter-spacing:-0.320000pt;}
.ls5e{letter-spacing:-0.288000pt;}
.ls5c{letter-spacing:-0.266667pt;}
.ls19{letter-spacing:-0.240000pt;}
.lse{letter-spacing:-0.213333pt;}
.lsf{letter-spacing:-0.160000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.001600pt;}
.ls15{letter-spacing:0.002133pt;}
.ls3e{letter-spacing:0.002667pt;}
.ls3{letter-spacing:0.010667pt;}
.ls5f{letter-spacing:0.013867pt;}
.ls12{letter-spacing:0.014933pt;}
.ls11{letter-spacing:0.015467pt;}
.ls7{letter-spacing:0.022933pt;}
.ls6{letter-spacing:0.240000pt;}
.ls61{letter-spacing:0.266667pt;}
.ls5d{letter-spacing:0.336000pt;}
.ls9{letter-spacing:0.362667pt;}
.ls62{letter-spacing:0.640000pt;}
.ls4{letter-spacing:0.784000pt;}
.ls5{letter-spacing:3.612800pt;}
.ls3f{letter-spacing:3.754133pt;}
.ls1{letter-spacing:38.383435pt;}
.ls0{letter-spacing:38.383968pt;}
.ls2{letter-spacing:38.401104pt;}
.ls17{letter-spacing:218.127637pt;}
.wsf5{word-spacing:-53.333333pt;}
.ws0{word-spacing:-22.757333pt;}
.ws8{word-spacing:-15.936000pt;}
.ws112{word-spacing:-14.608000pt;}
.ws4{word-spacing:-13.280000pt;}
.ws4e{word-spacing:-13.226667pt;}
.wsbb{word-spacing:-13.173333pt;}
.ws9{word-spacing:-13.066667pt;}
.wsf6{word-spacing:-13.013333pt;}
.ws41{word-spacing:-12.906667pt;}
.wsbc{word-spacing:-12.853333pt;}
.wsf7{word-spacing:-12.800000pt;}
.ws10c{word-spacing:-12.746667pt;}
.wsf4{word-spacing:-12.693333pt;}
.wsf3{word-spacing:-12.533333pt;}
.ws40{word-spacing:-12.480000pt;}
.wsba{word-spacing:-12.373333pt;}
.wsbd{word-spacing:-12.160000pt;}
.ws7{word-spacing:-12.144000pt;}
.ws6{word-spacing:-12.000000pt;}
.ws7a{word-spacing:-11.952000pt;}
.ws113{word-spacing:-11.904000pt;}
.ws5{word-spacing:-11.760000pt;}
.ws121{word-spacing:-11.616000pt;}
.ws6d{word-spacing:-11.520000pt;}
.wse{word-spacing:-10.800000pt;}
.wsa{word-spacing:-10.464000pt;}
.wsc{word-spacing:-9.984000pt;}
.ws2{word-spacing:-9.685333pt;}
.wsb{word-spacing:-9.648000pt;}
.ws25{word-spacing:-9.600000pt;}
.ws87{word-spacing:-9.530581pt;}
.wsd1{word-spacing:-9.390173pt;}
.wsf{word-spacing:-9.301333pt;}
.ws8a{word-spacing:-8.651360pt;}
.ws88{word-spacing:-8.570667pt;}
.ws1{word-spacing:-8.482261pt;}
.wsd0{word-spacing:-8.444400pt;}
.ws3{word-spacing:-8.371200pt;}
.ws86{word-spacing:-7.780000pt;}
.ws4f{word-spacing:-7.711147pt;}
.ws68{word-spacing:-6.168917pt;}
.ws128{word-spacing:-4.608000pt;}
.ws129{word-spacing:-4.560000pt;}
.wsc1{word-spacing:-2.986667pt;}
.wsc2{word-spacing:-2.933333pt;}
.ws10e{word-spacing:-2.880000pt;}
.wsec{word-spacing:-2.600875pt;}
.wsa1{word-spacing:-2.551840pt;}
.wsdb{word-spacing:-2.431987pt;}
.ws10b{word-spacing:-2.400000pt;}
.ws122{word-spacing:-2.352000pt;}
.ws100{word-spacing:-2.293333pt;}
.ws124{word-spacing:-2.256000pt;}
.ws63{word-spacing:-2.240000pt;}
.ws123{word-spacing:-2.208000pt;}
.ws5e{word-spacing:-2.186667pt;}
.wscc{word-spacing:-2.133333pt;}
.wscb{word-spacing:-2.080000pt;}
.wsf9{word-spacing:-2.026667pt;}
.ws44{word-spacing:-1.973333pt;}
.ws127{word-spacing:-1.968000pt;}
.ws59{word-spacing:-1.920000pt;}
.wsd9{word-spacing:-1.891546pt;}
.ws1c{word-spacing:-1.872000pt;}
.ws10a{word-spacing:-1.866667pt;}
.wsc5{word-spacing:-1.813333pt;}
.ws1e{word-spacing:-1.680000pt;}
.ws1d{word-spacing:-1.632000pt;}
.ws49{word-spacing:-1.600000pt;}
.wsac{word-spacing:-1.587120pt;}
.wsef{word-spacing:-1.584000pt;}
.ws18{word-spacing:-1.488000pt;}
.ws35{word-spacing:-1.440000pt;}
.ws11a{word-spacing:-1.392000pt;}
.ws103{word-spacing:-1.386667pt;}
.ws7e{word-spacing:-1.248000pt;}
.ws84{word-spacing:-1.226667pt;}
.ws83{word-spacing:-1.173333pt;}
.ws126{word-spacing:-1.008000pt;}
.ws6c{word-spacing:-0.853333pt;}
.wsff{word-spacing:-0.800000pt;}
.ws133{word-spacing:-0.768000pt;}
.ws3a{word-spacing:-0.746667pt;}
.wsb9{word-spacing:-0.720000pt;}
.ws22{word-spacing:-0.693333pt;}
.ws57{word-spacing:-0.640000pt;}
.ws10d{word-spacing:-0.586667pt;}
.wsf0{word-spacing:-0.576000pt;}
.ws31{word-spacing:-0.533333pt;}
.ws13d{word-spacing:-0.528000pt;}
.ws10f{word-spacing:-0.373333pt;}
.ws116{word-spacing:-0.336000pt;}
.ws46{word-spacing:-0.266667pt;}
.ws12{word-spacing:-0.192000pt;}
.ws104{word-spacing:-0.160000pt;}
.ws56{word-spacing:-0.106667pt;}
.ws110{word-spacing:-0.053333pt;}
.wsd{word-spacing:-0.048000pt;}
.ws26{word-spacing:-0.042667pt;}
.ws10{word-spacing:0.000000pt;}
.ws33{word-spacing:0.053333pt;}
.ws64{word-spacing:0.106667pt;}
.ws48{word-spacing:0.160000pt;}
.ws45{word-spacing:0.213333pt;}
.ws7d{word-spacing:0.240000pt;}
.wsb6{word-spacing:0.266667pt;}
.ws115{word-spacing:0.288000pt;}
.ws4a{word-spacing:0.320000pt;}
.ws139{word-spacing:0.336000pt;}
.ws11{word-spacing:0.362667pt;}
.wsfe{word-spacing:0.373333pt;}
.ws11e{word-spacing:0.384000pt;}
.ws101{word-spacing:0.480000pt;}
.wsfa{word-spacing:0.533333pt;}
.ws135{word-spacing:0.576000pt;}
.ws43{word-spacing:0.586667pt;}
.ws13{word-spacing:0.614400pt;}
.wsbe{word-spacing:0.693333pt;}
.wsdf{word-spacing:0.709330pt;}
.ws19{word-spacing:0.816000pt;}
.ws82{word-spacing:0.906667pt;}
.ws61{word-spacing:1.013333pt;}
.ws5c{word-spacing:1.066667pt;}
.ws97{word-spacing:1.089200pt;}
.ws12f{word-spacing:1.104000pt;}
.wse1{word-spacing:1.114661pt;}
.ws98{word-spacing:1.120320pt;}
.wse2{word-spacing:1.148438pt;}
.ws99{word-spacing:1.151440pt;}
.wsf2{word-spacing:1.152000pt;}
.wsf1{word-spacing:1.200000pt;}
.wse4{word-spacing:1.215994pt;}
.ws81{word-spacing:1.226667pt;}
.wsdd{word-spacing:1.249771pt;}
.ws51{word-spacing:1.280000pt;}
.wsad{word-spacing:1.307040pt;}
.wse0{word-spacing:1.317326pt;}
.ws50{word-spacing:1.333333pt;}
.ws95{word-spacing:1.338160pt;}
.ws94{word-spacing:1.431520pt;}
.ws53{word-spacing:1.440000pt;}
.wse3{word-spacing:1.486214pt;}
.ws36{word-spacing:1.493333pt;}
.wsd4{word-spacing:1.519992pt;}
.ws37{word-spacing:1.546667pt;}
.wsd5{word-spacing:1.553770pt;}
.ws9e{word-spacing:1.556000pt;}
.wsab{word-spacing:1.587120pt;}
.wsd6{word-spacing:1.587547pt;}
.ws55{word-spacing:1.600000pt;}
.wsaa{word-spacing:1.618240pt;}
.ws8f{word-spacing:1.632000pt;}
.ws58{word-spacing:1.653333pt;}
.ws107{word-spacing:1.760000pt;}
.wsaf{word-spacing:1.773840pt;}
.wsae{word-spacing:1.804960pt;}
.ws91{word-spacing:1.816981pt;}
.wse6{word-spacing:1.823990pt;}
.wsb1{word-spacing:1.836080pt;}
.wse5{word-spacing:1.857768pt;}
.ws109{word-spacing:1.866667pt;}
.wsa6{word-spacing:1.867200pt;}
.wsd8{word-spacing:1.891546pt;}
.wsa3{word-spacing:1.898320pt;}
.wsd7{word-spacing:1.925323pt;}
.wsb5{word-spacing:1.929440pt;}
.ws134{word-spacing:1.968000pt;}
.ws85{word-spacing:1.973333pt;}
.wsa8{word-spacing:2.022800pt;}
.wsed{word-spacing:2.026656pt;}
.wsa7{word-spacing:2.053920pt;}
.ws92{word-spacing:2.056960pt;}
.ws13c{word-spacing:2.064000pt;}
.wsb4{word-spacing:2.085040pt;}
.wsde{word-spacing:2.094211pt;}
.ws15{word-spacing:2.160000pt;}
.wsa4{word-spacing:2.240640pt;}
.wsa5{word-spacing:2.271760pt;}
.wsd3{word-spacing:2.296877pt;}
.ws14{word-spacing:2.304000pt;}
.wsee{word-spacing:2.330654pt;}
.wsa9{word-spacing:2.334000pt;}
.wscd{word-spacing:2.346667pt;}
.ws102{word-spacing:2.400000pt;}
.ws9f{word-spacing:2.427360pt;}
.wsda{word-spacing:2.431987pt;}
.ws9a{word-spacing:2.434069pt;}
.ws27{word-spacing:2.453333pt;}
.wsb0{word-spacing:2.458480pt;}
.wsdc{word-spacing:2.465765pt;}
.ws9b{word-spacing:2.502635pt;}
.wse7{word-spacing:2.533320pt;}
.ws11c{word-spacing:2.544000pt;}
.wsa0{word-spacing:2.551840pt;}
.ws4b{word-spacing:2.560000pt;}
.ws96{word-spacing:2.571200pt;}
.wsa2{word-spacing:2.582960pt;}
.wseb{word-spacing:2.600875pt;}
.ws90{word-spacing:2.605483pt;}
.ws5d{word-spacing:2.613333pt;}
.wsea{word-spacing:2.634653pt;}
.ws93{word-spacing:2.674048pt;}
.ws137{word-spacing:2.688000pt;}
.wse9{word-spacing:2.702208pt;}
.ws9d{word-spacing:2.708331pt;}
.wsce{word-spacing:2.720000pt;}
.wse8{word-spacing:2.735986pt;}
.ws9c{word-spacing:2.776896pt;}
.ws12a{word-spacing:2.832000pt;}
.wsb3{word-spacing:2.863040pt;}
.wsb2{word-spacing:2.925280pt;}
.ws3b{word-spacing:2.933333pt;}
.ws12e{word-spacing:2.976000pt;}
.ws52{word-spacing:2.986667pt;}
.ws7c{word-spacing:3.072000pt;}
.ws3d{word-spacing:3.093333pt;}
.ws105{word-spacing:3.146667pt;}
.ws106{word-spacing:3.200000pt;}
.ws3c{word-spacing:3.306667pt;}
.ws13b{word-spacing:3.408000pt;}
.ws13a{word-spacing:3.456000pt;}
.wsc7{word-spacing:3.466667pt;}
.ws29{word-spacing:3.520000pt;}
.ws1a{word-spacing:3.600000pt;}
.ws23{word-spacing:3.626667pt;}
.ws1b{word-spacing:3.648000pt;}
.ws32{word-spacing:3.680000pt;}
.ws3e{word-spacing:3.733333pt;}
.ws80{word-spacing:3.786667pt;}
.ws16{word-spacing:3.792000pt;}
.ws7f{word-spacing:3.840000pt;}
.ws2f{word-spacing:3.893333pt;}
.ws30{word-spacing:3.946667pt;}
.ws28{word-spacing:4.106667pt;}
.ws5f{word-spacing:4.160000pt;}
.ws60{word-spacing:4.213333pt;}
.wsca{word-spacing:4.266667pt;}
.ws125{word-spacing:4.272000pt;}
.wsc6{word-spacing:4.320000pt;}
.wsfb{word-spacing:4.373333pt;}
.ws3f{word-spacing:4.480000pt;}
.ws62{word-spacing:4.533333pt;}
.ws11d{word-spacing:4.560000pt;}
.ws138{word-spacing:4.656000pt;}
.ws120{word-spacing:4.752000pt;}
.ws54{word-spacing:4.800000pt;}
.ws42{word-spacing:4.853333pt;}
.wsbf{word-spacing:4.960000pt;}
.ws117{word-spacing:4.992000pt;}
.wsc0{word-spacing:5.013333pt;}
.ws2b{word-spacing:5.120000pt;}
.ws2a{word-spacing:5.173333pt;}
.ws17{word-spacing:5.184000pt;}
.wsc9{word-spacing:5.280000pt;}
.wsc8{word-spacing:5.333333pt;}
.wsfc{word-spacing:5.386667pt;}
.ws5a{word-spacing:5.440000pt;}
.ws108{word-spacing:5.493333pt;}
.ws4d{word-spacing:5.653333pt;}
.ws11f{word-spacing:5.712000pt;}
.ws132{word-spacing:5.760000pt;}
.ws5b{word-spacing:5.920000pt;}
.ws11b{word-spacing:5.952000pt;}
.ws2c{word-spacing:5.973333pt;}
.ws6b{word-spacing:6.026667pt;}
.ws2d{word-spacing:6.080000pt;}
.ws2e{word-spacing:6.133333pt;}
.ws6a{word-spacing:6.240000pt;}
.ws136{word-spacing:6.288000pt;}
.ws130{word-spacing:6.432000pt;}
.wsf8{word-spacing:6.453333pt;}
.ws111{word-spacing:6.666667pt;}
.ws13f{word-spacing:6.672000pt;}
.wsb8{word-spacing:6.720000pt;}
.wsb7{word-spacing:6.773333pt;}
.wsfd{word-spacing:6.933333pt;}
.ws47{word-spacing:7.200000pt;}
.ws118{word-spacing:7.296000pt;}
.ws20{word-spacing:7.584000pt;}
.ws1f{word-spacing:7.632000pt;}
.ws39{word-spacing:7.733333pt;}
.ws12b{word-spacing:8.256000pt;}
.ws119{word-spacing:8.496000pt;}
.wsc4{word-spacing:9.493333pt;}
.ws24{word-spacing:9.813333pt;}
.ws34{word-spacing:10.720000pt;}
.ws131{word-spacing:10.800000pt;}
.ws21{word-spacing:11.253333pt;}
.ws38{word-spacing:12.373333pt;}
.ws4c{word-spacing:12.960000pt;}
.ws12d{word-spacing:15.312000pt;}
.ws12c{word-spacing:15.456000pt;}
.ws114{word-spacing:18.960000pt;}
.wsc3{word-spacing:20.266667pt;}
.ws13e{word-spacing:22.032000pt;}
.ws65{word-spacing:99.966933pt;}
.ws8e{word-spacing:142.691200pt;}
.ws8d{word-spacing:146.282667pt;}
.ws8b{word-spacing:181.998933pt;}
.ws8c{word-spacing:182.009600pt;}
.wscf{word-spacing:197.839333pt;}
.wsd2{word-spacing:229.552570pt;}
.ws66{word-spacing:230.560000pt;}
.ws69{word-spacing:252.428267pt;}
.ws67{word-spacing:257.108800pt;}
.ws89{word-spacing:278.863467pt;}
.ws79{word-spacing:478.113067pt;}
.ws70{word-spacing:496.205867pt;}
.ws76{word-spacing:496.216533pt;}
.ws71{word-spacing:496.238400pt;}
.ws75{word-spacing:502.091733pt;}
.ws73{word-spacing:502.134400pt;}
.ws6f{word-spacing:584.949867pt;}
.ws78{word-spacing:630.187733pt;}
.ws6e{word-spacing:711.250667pt;}
.ws72{word-spacing:755.529600pt;}
.ws77{word-spacing:777.387733pt;}
.ws74{word-spacing:782.078400pt;}
.ws7b{word-spacing:1186.165801pt;}
._51{margin-left:-710.166160pt;}
._a{margin-left:-9.174933pt;}
._10{margin-left:-7.168000pt;}
._5f{margin-left:-6.231467pt;}
._9{margin-left:-5.307733pt;}
._1{margin-left:-4.065067pt;}
._4{margin-left:-2.857067pt;}
._0{margin-left:-1.224000pt;}
._2{width:1.115200pt;}
._3{width:2.230400pt;}
._6{width:3.796800pt;}
._7{width:5.009600pt;}
._b{width:5.973867pt;}
._8{width:6.976000pt;}
._f{width:7.885867pt;}
._d{width:9.722667pt;}
._c{width:10.752000pt;}
._e{width:11.872000pt;}
._60{width:12.796800pt;}
._62{width:14.059200pt;}
._61{width:17.851200pt;}
._5b{width:18.997333pt;}
._5a{width:20.527467pt;}
._5{width:32.554667pt;}
._5e{width:38.522667pt;}
._54{width:45.791467pt;}
._53{width:48.345600pt;}
._39{width:69.298667pt;}
._52{width:73.368000pt;}
._55{width:77.570667pt;}
._3a{width:81.256533pt;}
._13{width:92.576533pt;}
._3b{width:93.988267pt;}
._45{width:95.013333pt;}
._56{width:100.960533pt;}
._40{width:105.244267pt;}
._3e{width:117.139200pt;}
._59{width:119.393067pt;}
._1e{width:129.202667pt;}
._41{width:130.406933pt;}
._1f{width:141.202667pt;}
._21{width:142.289600pt;}
._37{width:144.171200pt;}
._36{width:145.433600pt;}
._38{width:146.511467pt;}
._12{width:148.830933pt;}
._14{width:152.809600pt;}
._46{width:153.787200pt;}
._3c{width:157.253867pt;}
._11{width:161.124800pt;}
._20{width:165.553067pt;}
._3d{width:168.776000pt;}
._2d{width:170.062400pt;}
._15{width:180.203733pt;}
._2e{width:182.006933pt;}
._25{width:187.624000pt;}
._1b{width:192.776000pt;}
._43{width:198.476267pt;}
._26{width:199.603200pt;}
._28{width:200.732800pt;}
._1c{width:204.658667pt;}
._1d{width:205.809600pt;}
._44{width:210.412971pt;}
._27{width:211.602133pt;}
._57{width:212.704533pt;}
._5c{width:214.041067pt;}
._58{width:215.668267pt;}
._5d{width:228.098933pt;}
._33{width:235.560533pt;}
._2f{width:238.681067pt;}
._3f{width:243.754133pt;}
._2b{width:245.592000pt;}
._2c{width:246.604267pt;}
._35{width:247.613333pt;}
._42{width:253.002667pt;}
._16{width:255.875200pt;}
._34{width:259.570133pt;}
._32{width:261.590400pt;}
._23{width:263.144000pt;}
._24{width:264.294933pt;}
._17{width:268.000000pt;}
._19{width:269.051200pt;}
._18{width:280.109867pt;}
._31{width:286.491733pt;}
._22{width:287.753067pt;}
._1a{width:294.688000pt;}
._4e{width:304.423467pt;}
._2a{width:314.334400pt;}
._29{width:319.283733pt;}
._30{width:332.500267pt;}
._4a{width:695.070933pt;}
._48{width:768.713600pt;}
._49{width:777.982400pt;}
._47{width:783.177600pt;}
._4d{width:785.310933pt;}
._4c{width:788.510933pt;}
._4b{width:792.350933pt;}
._4f{width:1057.133837pt;}
._50{width:1064.817480pt;}
.fsa{font-size:24.874667pt;}
.fs10{font-size:25.933333pt;}
.fs9{font-size:31.093333pt;}
.fsd{font-size:31.120000pt;}
.fs11{font-size:33.777600pt;}
.fs3{font-size:34.202667pt;}
.fse{font-size:34.282667pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:38.400000pt;}
.fsc{font-size:39.990933pt;}
.fs0{font-size:42.666667pt;}
.fsf{font-size:46.680000pt;}
.fs6{font-size:48.000000pt;}
.fs12{font-size:50.666667pt;}
.fs7{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fsb{font-size:59.986133pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y198{bottom:4.518400pt;}
.yf8{bottom:6.209200pt;}
.y107{bottom:14.333029pt;}
.y108{bottom:14.334267pt;}
.y197{bottom:17.888667pt;}
.y10e{bottom:22.458667pt;}
.ye1{bottom:23.353333pt;}
.y10d{bottom:30.575467pt;}
.y111{bottom:38.700533pt;}
.y1ac{bottom:39.344229pt;}
.y103{bottom:46.816277pt;}
.y104{bottom:46.816800pt;}
.y1b3{bottom:48.523292pt;}
.yff{bottom:54.933333pt;}
.y1a1{bottom:56.123252pt;}
.y1{bottom:60.555333pt;}
.y113{bottom:63.066933pt;}
.y3e{bottom:63.299600pt;}
.y3f{bottom:66.698800pt;}
.y19e{bottom:69.836957pt;}
.y114{bottom:71.183333pt;}
.yfa{bottom:79.299333pt;}
.y1b6{bottom:83.297331pt;}
.yea{bottom:87.427887pt;}
.ye5{bottom:95.554593pt;}
.y1c7{bottom:97.171480pt;}
.y6c{bottom:100.514400pt;}
.y97{bottom:100.514533pt;}
.ye6{bottom:103.669133pt;}
.y2b{bottom:104.188933pt;}
.y11{bottom:104.778267pt;}
.y1e9{bottom:107.111867pt;}
.y1c9{bottom:109.736747pt;}
.y109{bottom:111.778767pt;}
.y10{bottom:117.578267pt;}
.y6b{bottom:119.181067pt;}
.y96{bottom:119.181200pt;}
.yfb{bottom:119.910933pt;}
.y2a{bottom:122.855600pt;}
.y1ef{bottom:124.026133pt;}
.y1e8{bottom:124.711867pt;}
.y1bc{bottom:124.987334pt;}
.y189{bottom:127.319733pt;}
.ye2{bottom:128.040800pt;}
.yd8{bottom:129.205200pt;}
.yf{bottom:130.378267pt;}
.y112{bottom:136.145033pt;}
.y19f{bottom:137.138825pt;}
.y6a{bottom:137.847733pt;}
.y95{bottom:137.847867pt;}
.y29{bottom:141.522267pt;}
.ye{bottom:143.178267pt;}
.yed{bottom:144.273867pt;}
.yd7{bottom:146.805200pt;}
.y188{bottom:147.414133pt;}
.y1c2{bottom:151.528083pt;}
.ye8{bottom:152.398667pt;}
.y69{bottom:156.514400pt;}
.y94{bottom:156.514533pt;}
.y28{bottom:160.188933pt;}
.y10a{bottom:160.504907pt;}
.y1bf{bottom:163.105355pt;}
.y187{bottom:167.508667pt;}
.yf1{bottom:168.631333pt;}
.y1ab{bottom:170.722204pt;}
.yd9{bottom:172.751867pt;}
.y68{bottom:175.181067pt;}
.y93{bottom:175.181200pt;}
.yfe{bottom:176.751613pt;}
.y3b{bottom:177.237867pt;}
.y1ad{bottom:178.347497pt;}
.y27{bottom:178.855600pt;}
.y1ee{bottom:180.026133pt;}
.y101{bottom:184.874893pt;}
.y1bb{bottom:185.972791pt;}
.y186{bottom:187.603200pt;}
.y105{bottom:192.995220pt;}
.y3a{bottom:193.237867pt;}
.y1a5{bottom:193.589639pt;}
.y67{bottom:193.847733pt;}
.y92{bottom:193.847867pt;}
.y26{bottom:197.522267pt;}
.y10c{bottom:201.108653pt;}
.y1a8{bottom:201.214933pt;}
.y185{bottom:207.697600pt;}
.y1ba{bottom:208.840226pt;}
.y39{bottom:209.237867pt;}
.y110{bottom:209.239200pt;}
.y66{bottom:212.514400pt;}
.y91{bottom:212.514533pt;}
.y1b1{bottom:216.457075pt;}
.y100{bottom:217.356393pt;}
.y1b5{bottom:224.082368pt;}
.y38{bottom:225.237867pt;}
.yee{bottom:225.481507pt;}
.y25{bottom:226.400267pt;}
.y184{bottom:227.792133pt;}
.y65{bottom:231.181067pt;}
.y90{bottom:231.181200pt;}
.y1a3{bottom:231.707661pt;}
.yf5{bottom:233.594333pt;}
.y1ed{bottom:236.388533pt;}
.y1b8{bottom:239.324510pt;}
.y37{bottom:241.237867pt;}
.yf9{bottom:241.709800pt;}
.yc5{bottom:242.228400pt;}
.y1a9{bottom:246.958247pt;}
.y64{bottom:249.847733pt;}
.y8f{bottom:249.847867pt;}
.ye4{bottom:249.855333pt;}
.y1c6{bottom:254.583541pt;}
.y183{bottom:254.887200pt;}
.y36{bottom:257.237867pt;}
.y10b{bottom:257.949333pt;}
.y1af{bottom:262.200389pt;}
.y1ec{bottom:262.614267pt;}
.yf7{bottom:266.079467pt;}
.y63{bottom:268.514400pt;}
.y8e{bottom:268.514533pt;}
.y1a4{bottom:269.825683pt;}
.y35{bottom:273.237867pt;}
.ye9{bottom:274.210127pt;}
.y1a0{bottom:277.450976pt;}
.yfd{bottom:282.326213pt;}
.y1c5{bottom:285.076269pt;}
.y62{bottom:287.181067pt;}
.y8d{bottom:287.181200pt;}
.yc4{bottom:288.994800pt;}
.y34{bottom:289.237867pt;}
.yf2{bottom:290.442793pt;}
.y19d{bottom:292.693118pt;}
.y24{bottom:297.980400pt;}
.yf3{bottom:298.557333pt;}
.y1be{bottom:300.326855pt;}
.y33{bottom:305.237867pt;}
.y61{bottom:305.847733pt;}
.ya0{bottom:305.847867pt;}
.yfc{bottom:306.693173pt;}
.y19a{bottom:307.935260pt;}
.yc3{bottom:309.089200pt;}
.yf4{bottom:314.801973pt;}
.y19b{bottom:315.560553pt;}
.y23{bottom:315.580400pt;}
.y8c{bottom:318.614267pt;}
.y1c8{bottom:323.194291pt;}
.y182{bottom:324.514400pt;}
.y9f{bottom:324.514533pt;}
.y102{bottom:326.982800pt;}
.yc2{bottom:329.183733pt;}
.y1c4{bottom:330.819584pt;}
.y32{bottom:336.356000pt;}
.y60{bottom:337.280800pt;}
.y1c3{bottom:338.444877pt;}
.y181{bottom:343.181067pt;}
.y9e{bottom:343.181200pt;}
.ye7{bottom:343.746933pt;}
.y1bd{bottom:346.070170pt;}
.yc1{bottom:349.278267pt;}
.y22{bottom:352.078000pt;}
.y31{bottom:352.356000pt;}
.y1b4{bottom:353.678575pt;}
.yf0{bottom:359.902283pt;}
.y1a7{bottom:361.303868pt;}
.y180{bottom:361.847733pt;}
.y8b{bottom:361.847867pt;}
.y30{bottom:368.356000pt;}
.y1c1{bottom:368.937605pt;}
.yc0{bottom:369.372667pt;}
.y21{bottom:369.678000pt;}
.yef{bottom:371.652667pt;}
.y1eb{bottom:374.614267pt;}
.y1b7{bottom:376.546010pt;}
.y5f{bottom:380.514400pt;}
.y8a{bottom:380.514533pt;}
.yeb{bottom:383.763067pt;}
.y1c0{bottom:384.179747pt;}
.y20{bottom:387.278000pt;}
.ybf{bottom:389.467200pt;}
.y1b0{bottom:391.796596pt;}
.y5e{bottom:399.181067pt;}
.y89{bottom:399.181200pt;}
.y1aa{bottom:399.421889pt;}
.y2f{bottom:399.474133pt;}
.yda{bottom:400.376133pt;}
.y10f{bottom:400.810133pt;}
.y1f{bottom:404.878000pt;}
.y1a6{bottom:407.047183pt;}
.ybe{bottom:409.561733pt;}
.y1b2{bottom:414.664031pt;}
.y2e{bottom:415.474133pt;}
.y106{bottom:415.663067pt;}
.y5d{bottom:417.847733pt;}
.y88{bottom:417.847867pt;}
.y1a2{bottom:422.289325pt;}
.y1e{bottom:422.478000pt;}
.ye3{bottom:428.519067pt;}
.ybd{bottom:429.656133pt;}
.y1b9{bottom:429.914618pt;}
.y2d{bottom:431.474133pt;}
.y5c{bottom:436.514400pt;}
.y87{bottom:436.514533pt;}
.yf6{bottom:436.618133pt;}
.y199{bottom:437.531467pt;}
.y1d{bottom:440.078000pt;}
.y115{bottom:444.743067pt;}
.yec{bottom:444.751931pt;}
.y1ae{bottom:445.165204pt;}
.y2c{bottom:447.474133pt;}
.ybc{bottom:449.750667pt;}
.y19c{bottom:452.782053pt;}
.y124{bottom:453.754133pt;}
.y15b{bottom:453.754267pt;}
.y5b{bottom:455.181067pt;}
.y86{bottom:455.181200pt;}
.yd6{bottom:456.637067pt;}
.y1c{bottom:457.678000pt;}
.y17f{bottom:467.110267pt;}
.y9d{bottom:467.123200pt;}
.ybb{bottom:469.845200pt;}
.y195{bottom:473.847733pt;}
.y85{bottom:473.847867pt;}
.y1b{bottom:475.278000pt;}
.yd5{bottom:476.731600pt;}
.y1e7{bottom:481.680667pt;}
.y5a{bottom:485.789733pt;}
.yba{bottom:489.939600pt;}
.y194{bottom:492.514400pt;}
.y84{bottom:492.514533pt;}
.y1a{bottom:492.878000pt;}
.y9c{bottom:495.832133pt;}
.yd4{bottom:496.826133pt;}
.y1e6{bottom:499.280667pt;}
.yb9{bottom:510.034133pt;}
.y19{bottom:510.478000pt;}
.y193{bottom:511.181067pt;}
.y83{bottom:511.181200pt;}
.y59{bottom:514.498667pt;}
.y1e5{bottom:516.880667pt;}
.yd3{bottom:516.920533pt;}
.ydf{bottom:517.652000pt;}
.y18{bottom:528.078000pt;}
.y192{bottom:529.847733pt;}
.y82{bottom:529.847867pt;}
.yb8{bottom:530.128667pt;}
.y1e4{bottom:534.480667pt;}
.yde{bottom:535.252000pt;}
.yd2{bottom:537.015067pt;}
.y17{bottom:545.678000pt;}
.y191{bottom:548.514400pt;}
.y81{bottom:548.514533pt;}
.yb7{bottom:550.223067pt;}
.y196{bottom:552.552000pt;}
.ye0{bottom:553.322667pt;}
.y1e3{bottom:557.070400pt;}
.yd1{bottom:557.109600pt;}
.y122{bottom:558.796420pt;}
.y14a{bottom:561.345613pt;}
.y16{bottom:563.278000pt;}
.y58{bottom:567.181067pt;}
.y80{bottom:567.181200pt;}
.y15e{bottom:567.717533pt;}
.yb6{bottom:570.317600pt;}
.yd0{bottom:577.204000pt;}
.y157{bottom:580.448273pt;}
.y139{bottom:580.450800pt;}
.y15{bottom:580.878000pt;}
.y57{bottom:585.847733pt;}
.y9b{bottom:585.847867pt;}
.y143{bottom:586.812347pt;}
.yb5{bottom:590.412133pt;}
.y121{bottom:592.160950pt;}
.y16e{bottom:593.182013pt;}
.ycf{bottom:597.298533pt;}
.y14{bottom:598.478000pt;}
.y1f4{bottom:598.614133pt;}
.y7f{bottom:598.614267pt;}
.y14d{bottom:599.553193pt;}
.y11b{bottom:602.337190pt;}
.y56{bottom:604.514400pt;}
.y9a{bottom:604.514533pt;}
.y169{bottom:605.917873pt;}
.y1d5{bottom:608.656681pt;}
.yb4{bottom:610.506533pt;}
.y173{bottom:612.289693pt;}
.y1f8{bottom:616.456533pt;}
.yce{bottom:617.393067pt;}
.y177{bottom:618.661513pt;}
.y1d4{bottom:620.335286pt;}
.y55{bottom:623.181067pt;}
.y99{bottom:623.181200pt;}
.y14f{bottom:625.024913pt;}
.y13{bottom:626.120133pt;}
.y137{bottom:626.779540pt;}
.y12a{bottom:627.713140pt;}
.yb3{bottom:630.601067pt;}
.y17b{bottom:631.388547pt;}
.y1d3{bottom:631.735226pt;}
.ycd{bottom:637.487467pt;}
.y174{bottom:637.761413pt;}
.y54{bottom:641.847733pt;}
.y7e{bottom:641.847867pt;}
.y1d2{bottom:641.868506pt;}
.y151{bottom:644.124813pt;}
.y1f7{bottom:645.165467pt;}
.y155{bottom:650.491613pt;}
.yb2{bottom:650.695600pt;}
.y120{bottom:652.109740pt;}
.y147{bottom:656.855687pt;}
.ycc{bottom:657.582000pt;}
.y11a{bottom:658.679950pt;}
.y53{bottom:660.514400pt;}
.y7d{bottom:660.514533pt;}
.y13c{bottom:663.227507pt;}
.y1d6{bottom:664.313721pt;}
.y129{bottom:668.371420pt;}
.y149{bottom:669.596533pt;}
.yb1{bottom:670.790000pt;}
.y136{bottom:672.479260pt;}
.y1d1{bottom:675.730550pt;}
.y156{bottom:675.963333pt;}
.ycb{bottom:677.676533pt;}
.y52{bottom:679.181067pt;}
.y7c{bottom:679.181200pt;}
.y141{bottom:682.327407pt;}
.y1f3{bottom:684.026000pt;}
.y14b{bottom:688.696433pt;}
.yb0{bottom:690.884533pt;}
.y14e{bottom:695.068253pt;}
.y1d7{bottom:695.819778pt;}
.yd{bottom:696.592800pt;}
.yca{bottom:697.770933pt;}
.y51{bottom:697.847733pt;}
.y7b{bottom:697.847867pt;}
.y168{bottom:701.432933pt;}
.y11f{bottom:703.049290pt;}
.y158{bottom:707.799093pt;}
.y1cf{bottom:709.955703pt;}
.y128{bottom:710.756860pt;}
.y119{bottom:710.926540pt;}
.yaf{bottom:710.979067pt;}
.yc{bottom:712.592800pt;}
.y135{bottom:713.059740pt;}
.y140{bottom:714.163167pt;}
.y50{bottom:716.514400pt;}
.y7a{bottom:716.514533pt;}
.yc9{bottom:717.865467pt;}
.y190{bottom:719.238667pt;}
.y166{bottom:720.540073pt;}
.y161{bottom:726.911893pt;}
.yc8{bottom:726.967867pt;}
.y1e2{bottom:727.020933pt;}
.yb{bottom:728.592800pt;}
.yae{bottom:731.073467pt;}
.y154{bottom:733.270813pt;}
.y4f{bottom:735.181067pt;}
.y79{bottom:735.181200pt;}
.y18f{bottom:737.905333pt;}
.y179{bottom:739.639467pt;}
.y1d8{bottom:742.804419pt;}
.ya{bottom:744.592800pt;}
.y13e{bottom:745.998927pt;}
.y1d0{bottom:750.429712pt;}
.yad{bottom:751.168000pt;}
.y160{bottom:752.383613pt;}
.y1ce{bottom:753.748362pt;}
.y4e{bottom:753.847733pt;}
.y78{bottom:753.847867pt;}
.y18e{bottom:756.572000pt;}
.y14c{bottom:758.739773pt;}
.y118{bottom:759.076960pt;}
.y11e{bottom:759.823840pt;}
.y9{bottom:760.592800pt;}
.yc7{bottom:763.165200pt;}
.y176{bottom:765.112233pt;}
.y1dd{bottom:766.920933pt;}
.y134{bottom:770.367220pt;}
.yac{bottom:771.262400pt;}
.y170{bottom:771.476273pt;}
.y4d{bottom:772.514400pt;}
.y77{bottom:772.514533pt;}
.y18d{bottom:775.238667pt;}
.y8{bottom:776.592800pt;}
.y1f2{bottom:777.359333pt;}
.y172{bottom:777.848093pt;}
.yc6{bottom:780.765200pt;}
.y145{bottom:784.206507pt;}
.y16f{bottom:790.576173pt;}
.y4c{bottom:791.181067pt;}
.y76{bottom:791.181200pt;}
.yab{bottom:791.356933pt;}
.y7{bottom:792.592800pt;}
.y18c{bottom:793.905333pt;}
.y1d9{bottom:795.142810pt;}
.y150{bottom:796.947353pt;}
.y11d{bottom:802.909480pt;}
.y15a{bottom:803.315467pt;}
.y1cd{bottom:808.383630pt;}
.y15d{bottom:809.683313pt;}
.y4b{bottom:809.847733pt;}
.y75{bottom:809.847867pt;}
.yaa{bottom:811.451467pt;}
.y1de{bottom:815.598933pt;}
.y16b{bottom:816.040113pt;}
.y117{bottom:822.083290pt;}
.y17a{bottom:822.418667pt;}
.y18b{bottom:822.614133pt;}
.y6{bottom:823.710800pt;}
.y133{bottom:827.363500pt;}
.y4a{bottom:828.514400pt;}
.y74{bottom:828.514533pt;}
.y13f{bottom:828.778127pt;}
.y127{bottom:829.993140pt;}
.ya9{bottom:831.545867pt;}
.y17c{bottom:835.146747pt;}
.y5{bottom:841.310933pt;}
.y153{bottom:841.521733pt;}
.y49{bottom:847.181067pt;}
.y73{bottom:847.181200pt;}
.y16c{bottom:847.883653pt;}
.y1da{bottom:851.272737pt;}
.ya8{bottom:851.640400pt;}
.y1f1{bottom:852.026000pt;}
.y11c{bottom:853.183840pt;}
.y15c{bottom:854.254933pt;}
.y138{bottom:859.518240pt;}
.y12f{bottom:860.008380pt;}
.y17d{bottom:860.618467pt;}
.y1cc{bottom:863.390451pt;}
.y48{bottom:865.847733pt;}
.y72{bottom:865.847867pt;}
.y1df{bottom:865.961600pt;}
.y13d{bottom:866.985707pt;}
.ya7{bottom:871.734933pt;}
.y175{bottom:873.363153pt;}
.y12e{bottom:873.397760pt;}
.y4{bottom:874.028933pt;}
.y116{bottom:877.084000pt;}
.y1ea{bottom:878.614267pt;}
.y142{bottom:879.721567pt;}
.y47{bottom:884.514400pt;}
.ydd{bottom:884.514533pt;}
.y171{bottom:886.099013pt;}
.y126{bottom:891.354000pt;}
.y1db{bottom:891.544081pt;}
.ya6{bottom:891.829467pt;}
.y144{bottom:892.457427pt;}
.y12d{bottom:895.173980pt;}
.y71{bottom:897.280933pt;}
.y167{bottom:898.827867pt;}
.y164{bottom:901.479533pt;}
.y46{bottom:903.181067pt;}
.ydc{bottom:903.181200pt;}
.y3{bottom:903.362267pt;}
.y1cb{bottom:903.991126pt;}
.y17e{bottom:911.414087pt;}
.y12c{bottom:911.441960pt;}
.ya5{bottom:911.923867pt;}
.y98{bottom:915.947467pt;}
.y178{bottom:917.931067pt;}
.y1e0{bottom:918.553600pt;}
.y165{bottom:921.567493pt;}
.y45{bottom:921.847733pt;}
.ydb{bottom:921.847867pt;}
.y132{bottom:923.166420pt;}
.y148{bottom:930.667600pt;}
.ya4{bottom:932.018400pt;}
.y2{bottom:932.695600pt;}
.y15f{bottom:933.712073pt;}
.y125{bottom:935.388800pt;}
.y12b{bottom:939.271020pt;}
.y44{bottom:940.514400pt;}
.y70{bottom:940.514533pt;}
.ya3{bottom:941.120800pt;}
.y131{bottom:941.418300pt;}
.y159{bottom:943.400800pt;}
.y1dc{bottom:947.741563pt;}
.y13b{bottom:948.395627pt;}
.y152{bottom:956.137333pt;}
.y1ca{bottom:957.562400pt;}
.y16d{bottom:958.110693pt;}
.y43{bottom:959.181067pt;}
.y6f{bottom:959.181200pt;}
.y123{bottom:962.152800pt;}
.y1f6{bottom:963.133600pt;}
.y146{bottom:971.471107pt;}
.y1e1{bottom:972.880933pt;}
.ya2{bottom:977.318133pt;}
.y42{bottom:977.847733pt;}
.y6e{bottom:977.847867pt;}
.y162{bottom:981.613533pt;}
.y12{bottom:986.502667pt;}
.y163{bottom:987.977573pt;}
.y18a{bottom:989.062933pt;}
.y1f5{bottom:991.842533pt;}
.y16a{bottom:994.334373pt;}
.ya1{bottom:994.918133pt;}
.y41{bottom:996.514400pt;}
.y6d{bottom:996.514533pt;}
.y130{bottom:998.258980pt;}
.y1f0{bottom:1000.401600pt;}
.y13a{bottom:1000.708347pt;}
.y3d{bottom:1027.213600pt;}
.y3c{bottom:1044.546933pt;}
.y40{bottom:1047.726000pt;}
.h1e{height:18.880176pt;}
.h16{height:21.091094pt;}
.h1d{height:22.656211pt;}
.h21{height:22.892241pt;}
.h18{height:23.234542pt;}
.h22{height:24.591016pt;}
.h17{height:24.958719pt;}
.h14{height:27.083703pt;}
.h19{height:30.168747pt;}
.h6{height:30.618750pt;}
.h1a{height:31.613848pt;}
.h1b{height:31.636641pt;}
.h1f{height:32.000000pt;}
.h2{height:33.812500pt;}
.h11{height:33.979167pt;}
.he{height:34.020833pt;}
.h5{height:34.250000pt;}
.h23{height:34.313802pt;}
.h24{height:34.338542pt;}
.h12{height:34.666667pt;}
.hd{height:38.039062pt;}
.h7{height:38.226562pt;}
.hc{height:38.273438pt;}
.h9{height:39.000000pt;}
.h27{height:40.546875pt;}
.h13{height:40.654665pt;}
.h8{height:42.083333pt;}
.hb{height:43.333333pt;}
.h25{height:43.750000pt;}
.h26{height:44.601562pt;}
.hf{height:46.291667pt;}
.h4{height:47.666667pt;}
.ha{height:50.500000pt;}
.h10{height:70.388767pt;}
.h3{height:72.205729pt;}
.h15{height:457.432000pt;}
.h1c{height:461.858667pt;}
.h20{height:462.629333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:292.162667pt;}
.w2{width:513.940000pt;}
.w5{width:579.330667pt;}
.w3{width:631.937333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x37{left:3.544267pt;}
.x2{left:65.763733pt;}
.xa{left:95.172400pt;}
.xc{left:96.255067pt;}
.xe{left:99.779467pt;}
.x62{left:103.761725pt;}
.x5{left:106.290133pt;}
.x6{left:107.597867pt;}
.x7{left:109.707333pt;}
.x38{left:111.756933pt;}
.x17{left:114.118133pt;}
.x39{left:126.772333pt;}
.x5a{left:143.644000pt;}
.x18{left:146.220667pt;}
.x3a{left:159.331633pt;}
.x12{left:167.483067pt;}
.x13{left:170.475333pt;}
.x46{left:172.264267pt;}
.xf{left:173.470133pt;}
.x3b{left:177.318993pt;}
.x10{left:182.266933pt;}
.x3c{left:187.837553pt;}
.xd{left:190.782533pt;}
.x11{left:197.746133pt;}
.x5b{left:208.708933pt;}
.x3d{left:211.107533pt;}
.x19{left:213.997333pt;}
.x52{left:218.489013pt;}
.x54{left:234.535987pt;}
.x4d{left:240.346333pt;}
.x3e{left:245.868573pt;}
.x4f{left:255.375273pt;}
.x4c{left:257.057773pt;}
.x4b{left:259.220613pt;}
.x49{left:262.511553pt;}
.x50{left:264.620573pt;}
.x4{left:266.834667pt;}
.x51{left:269.389713pt;}
.x16{left:270.614133pt;}
.x57{left:271.732167pt;}
.x1a{left:272.953733pt;}
.x4e{left:275.644933pt;}
.xb{left:281.952800pt;}
.x47{left:288.823513pt;}
.x55{left:307.146727pt;}
.x4a{left:308.421333pt;}
.x48{left:309.378273pt;}
.x26{left:310.784000pt;}
.x56{left:311.783607pt;}
.x32{left:312.957600pt;}
.x2c{left:316.775333pt;}
.x58{left:319.193467pt;}
.x14{left:320.115867pt;}
.x53{left:324.896073pt;}
.x59{left:330.400640pt;}
.x64{left:331.996968pt;}
.x31{left:335.247200pt;}
.x1c{left:339.746933pt;}
.x23{left:343.829447pt;}
.x22{left:344.872133pt;}
.x63{left:347.247554pt;}
.x3{left:352.045067pt;}
.x24{left:353.838667pt;}
.x25{left:355.542374pt;}
.x20{left:356.549733pt;}
.x1b{left:357.969867pt;}
.x34{left:359.045100pt;}
.x33{left:360.328800pt;}
.x1d{left:361.715467pt;}
.x29{left:362.915475pt;}
.x2b{left:364.915697pt;}
.x2f{left:366.167200pt;}
.x21{left:367.321713pt;}
.x2d{left:368.340199pt;}
.x27{left:369.239067pt;}
.x1f{left:371.019467pt;}
.x2a{left:372.575733pt;}
.x2e{left:373.578000pt;}
.x28{left:374.484667pt;}
.x30{left:376.874133pt;}
.x1e{left:378.636046pt;}
.x61{left:387.552675pt;}
.x65{left:393.733976pt;}
.x66{left:405.353471pt;}
.x3f{left:406.447773pt;}
.x60{left:425.240033pt;}
.x5c{left:428.514133pt;}
.x5f{left:441.123949pt;}
.x68{left:469.125579pt;}
.x67{left:482.315732pt;}
.x15{left:492.344133pt;}
.x69{left:495.412997pt;}
.x5d{left:498.976533pt;}
.x40{left:503.293213pt;}
.x41{left:507.307693pt;}
.x5e{left:509.751588pt;}
.x42{left:527.193373pt;}
.x45{left:531.978073pt;}
.x43{left:534.102013pt;}
.x44{left:538.240973pt;}
.x6b{left:577.420133pt;}
.x9{left:579.974800pt;}
.x8{left:597.448800pt;}
.x6a{left:631.347200pt;}
.x36{left:645.963720pt;}
.x35{left:647.504160pt;}
.x1{left:712.311867pt;}
}




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