
    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_abca3dd1c54011be6e270ec3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.897000;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_14fbb3fe595a741cd8547445.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.906000;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_9f07c35fb7ac5582510610ec.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.890000;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_210bcc0555836993be1d98f7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.364258;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_a30988a3e7a652237304055e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_dd3c0c4471658b61a5ed7cc2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_01c71336183df3c9f9143a94.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_9f510c9e6d1f6408c109327b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.665000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_88f37b97076c6818fb5792ae.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.708000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_7b1538e290f1682cbc685958.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_51f1bde09701e2590ab72e78.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.555000;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_af5502572c19a98bd3d4c781.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.909000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_42e9d9439b8aadaa6f4c9fae.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.922000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_3fe2b5355ba51cb82e21479b.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.683000;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_e25c135e8f8907c2add9c28f.woff2')format("woff");}.fff{font-family:fff;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_e25c135e8f8907c2add9c28f.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_7b1538e290f1682cbc685958.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_7b1538e290f1682cbc685958.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_a30988a3e7a652237304055e.woff2')format("woff");}.ff13{font-family:ff13;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;}
.m2{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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-16.878000px;}
.v3{vertical-align:-5.976000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:22.854000px;}
.v4{vertical-align:25.848000px;}
.v5{vertical-align:45.246000px;}
.ls0{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.012276px;}
.ls26{letter-spacing:0.013368px;}
.lsa{letter-spacing:0.019170px;}
.ls24{letter-spacing:0.019368px;}
.ls23{letter-spacing:0.024624px;}
.lsb{letter-spacing:0.025218px;}
.ls5{letter-spacing:0.028140px;}
.ls15{letter-spacing:0.044652px;}
.ls6{letter-spacing:0.048578px;}
.ls3{letter-spacing:0.050652px;}
.lse{letter-spacing:0.051596px;}
.ls28{letter-spacing:0.054587px;}
.ls18{letter-spacing:0.072792px;}
.ls16{letter-spacing:0.078792px;}
.ls9{letter-spacing:2.990652px;}
.ls11{letter-spacing:2.991000px;}
.ls25{letter-spacing:5.772132px;}
.ls13{letter-spacing:11.282652px;}
.lsc{letter-spacing:11.695170px;}
.ls1f{letter-spacing:12.299832px;}
.ls1e{letter-spacing:12.306996px;}
.ls21{letter-spacing:12.312996px;}
.ls4{letter-spacing:13.496652px;}
.ls14{letter-spacing:14.222652px;}
.ls19{letter-spacing:14.768652px;}
.ls8{letter-spacing:14.980620px;}
.ls20{letter-spacing:15.272652px;}
.ls1b{letter-spacing:15.378996px;}
.ls7{letter-spacing:16.184652px;}
.ls1a{letter-spacing:16.380276px;}
.lsf{letter-spacing:16.442652px;}
.ls1d{letter-spacing:18.060132px;}
.ls17{letter-spacing:18.558792px;}
.ls1{letter-spacing:23.654652px;}
.ls22{letter-spacing:24.587832px;}
.ls10{letter-spacing:26.181000px;}
.ls2{letter-spacing:26.594652px;}
.ls12{letter-spacing:29.886000px;}
.lsd{letter-spacing:29.936652px;}
.ls27{letter-spacing:65.913396px;}
.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;}
}
.ws143{word-spacing:-27.348000px;}
.ws99{word-spacing:-26.928000px;}
.ws163{word-spacing:-25.818000px;}
.ws156{word-spacing:-25.815000px;}
.ws164{word-spacing:-25.752000px;}
.ws117{word-spacing:-25.392420px;}
.wsd4{word-spacing:-21.015000px;}
.wscf{word-spacing:-11.946464px;}
.wsd0{word-spacing:-11.945253px;}
.wsce{word-spacing:-11.927280px;}
.wscd{word-spacing:-11.926070px;}
.ws144{word-spacing:-9.571581px;}
.ws150{word-spacing:-9.570980px;}
.ws146{word-spacing:-9.506165px;}
.ws145{word-spacing:-9.505563px;}
.wsd2{word-spacing:-9.345006px;}
.wsd3{word-spacing:-9.294570px;}
.ws9a{word-spacing:-8.972410px;}
.ws97{word-spacing:-8.962769px;}
.ws98{word-spacing:-8.962177px;}
.ws166{word-spacing:-8.571141px;}
.ws165{word-spacing:-8.569339px;}
.wsd1{word-spacing:-8.286298px;}
.wsf1{word-spacing:-0.103244px;}
.wsb7{word-spacing:-0.102374px;}
.ws3{word-spacing:-0.055290px;}
.wsb2{word-spacing:-0.053796px;}
.wsf0{word-spacing:-0.051648px;}
.wsf2{word-spacing:-0.043038px;}
.ws51{word-spacing:0.000000px;}
.ws140{word-spacing:7.650437px;}
.ws141{word-spacing:7.672063px;}
.ws39{word-spacing:10.449036px;}
.ws67{word-spacing:10.449644px;}
.wsb8{word-spacing:10.449725px;}
.ws70{word-spacing:10.450252px;}
.ws134{word-spacing:10.504271px;}
.wsd8{word-spacing:10.560058px;}
.ws184{word-spacing:10.615238px;}
.ws190{word-spacing:10.615846px;}
.ws104{word-spacing:10.780831px;}
.ws11b{word-spacing:10.781439px;}
.ws37{word-spacing:10.947033px;}
.ws8e{word-spacing:10.947641px;}
.ws5e{word-spacing:11.001659px;}
.ws90{word-spacing:11.002212px;}
.wsd7{word-spacing:11.058055px;}
.ws10e{word-spacing:11.058663px;}
.ws8f{word-spacing:11.112627px;}
.ws14e{word-spacing:11.113235px;}
.ws11d{word-spacing:11.168414px;}
.ws11c{word-spacing:11.223041px;}
.ws16{word-spacing:11.224810px;}
.ws66{word-spacing:11.279436px;}
.wsc5{word-spacing:11.334616px;}
.ws32{word-spacing:11.389242px;}
.ws187{word-spacing:11.445638px;}
.ws4d{word-spacing:11.500209px;}
.ws193{word-spacing:11.554836px;}
.ws18f{word-spacing:11.611232px;}
.ws14f{word-spacing:11.666411px;}
.ws11e{word-spacing:11.722199px;}
.ws7f{word-spacing:11.944188px;}
.ws181{word-spacing:11.996990px;}
.ws180{word-spacing:11.998206px;}
.ws59{word-spacing:12.052778px;}
.wsc1{word-spacing:12.053386px;}
.wsa4{word-spacing:12.107404px;}
.ws54{word-spacing:12.109173px;}
.ws17c{word-spacing:12.162584px;}
.ws8d{word-spacing:12.218371px;}
.ws5d{word-spacing:12.219588px;}
.ws142{word-spacing:12.233641px;}
.ws7e{word-spacing:12.273606px;}
.ws18b{word-spacing:12.275375px;}
.ws43{word-spacing:12.329394px;}
.wsf6{word-spacing:12.383965px;}
.wsf7{word-spacing:12.386398px;}
.wsfb{word-spacing:12.447821px;}
.ws18e{word-spacing:12.494379px;}
.wsfc{word-spacing:12.494987px;}
.ws120{word-spacing:12.495595px;}
.wsfa{word-spacing:12.550167px;}
.ws88{word-spacing:12.551383px;}
.wsa9{word-spacing:12.551991px;}
.wsa8{word-spacing:12.605954px;}
.wse7{word-spacing:12.607171px;}
.wsa2{word-spacing:12.660581px;}
.ws4c{word-spacing:12.716368px;}
.ws18d{word-spacing:12.716976px;}
.ws116{word-spacing:12.826174px;}
.ws6c{word-spacing:12.826782px;}
.ws2f{word-spacing:12.827335px;}
.ws15f{word-spacing:12.881354px;}
.ws7{word-spacing:12.882570px;}
.ws61{word-spacing:12.937141px;}
.ws15{word-spacing:12.938358px;}
.wsec{word-spacing:12.992376px;}
.ws14d{word-spacing:12.993537px;}
.ws46{word-spacing:13.047555px;}
.ws17f{word-spacing:13.048164px;}
.ws12{word-spacing:13.048772px;}
.ws91{word-spacing:13.049325px;}
.wsba{word-spacing:13.135758px;}
.wsad{word-spacing:13.157969px;}
.wsbb{word-spacing:13.159131px;}
.ws13c{word-spacing:13.214365px;}
.ws68{word-spacing:13.214918px;}
.ws35{word-spacing:13.269545px;}
.ws78{word-spacing:13.324116px;}
.wsc{word-spacing:13.325941px;}
.wsd5{word-spacing:13.341193px;}
.wsf{word-spacing:13.379351px;}
.ws16a{word-spacing:13.381120px;}
.ws83{word-spacing:13.394020px;}
.ws80{word-spacing:13.394612px;}
.ws82{word-spacing:13.395204px;}
.ws9b{word-spacing:13.395796px;}
.ws151{word-spacing:13.396388px;}
.wsaf{word-spacing:13.434530px;}
.ws65{word-spacing:13.435746px;}
.ws10{word-spacing:13.490318px;}
.wsef{word-spacing:13.490926px;}
.ws157{word-spacing:13.491534px;}
.ws11f{word-spacing:13.600732px;}
.ws179{word-spacing:13.601340px;}
.ws7d{word-spacing:13.711699px;}
.wsd6{word-spacing:13.765717px;}
.ws2{word-spacing:13.766325px;}
.ws1{word-spacing:13.766934px;}
.ws25{word-spacing:13.767542px;}
.ws6{word-spacing:13.768095px;}
.ws10d{word-spacing:13.771950px;}
.ws18a{word-spacing:13.781070px;}
.ws10c{word-spacing:13.799568px;}
.ws16e{word-spacing:13.822721px;}
.wsd9{word-spacing:13.877901px;}
.ws18{word-spacing:13.878509px;}
.wsed{word-spacing:13.933135px;}
.ws153{word-spacing:13.933688px;}
.ws172{word-spacing:13.988315px;}
.wsf3{word-spacing:14.029699px;}
.wsf4{word-spacing:14.030302px;}
.ws183{word-spacing:14.042886px;}
.ws168{word-spacing:14.099282px;}
.ws178{word-spacing:14.153300px;}
.ws13f{word-spacing:14.155125px;}
.ws5a{word-spacing:14.209088px;}
.ws14a{word-spacing:14.210304px;}
.ws115{word-spacing:14.265483px;}
.ws8c{word-spacing:14.319502px;}
.ws192{word-spacing:14.341830px;}
.ws1f{word-spacing:14.375289px;}
.ws5f{word-spacing:14.429916px;}
.ws9{word-spacing:14.431685px;}
.ws137{word-spacing:14.596062px;}
.wscb{word-spacing:14.596671px;}
.ws185{word-spacing:14.650689px;}
.ws12a{word-spacing:14.651905px;}
.ws12b{word-spacing:14.652458px;}
.wse6{word-spacing:14.706477px;}
.ws171{word-spacing:14.707085px;}
.ws113{word-spacing:14.707693px;}
.ws112{word-spacing:14.708301px;}
.ws158{word-spacing:14.762264px;}
.ws15b{word-spacing:14.816891px;}
.ws50{word-spacing:14.817499px;}
.wse{word-spacing:14.872070px;}
.wsbd{word-spacing:14.879849px;}
.wsbc{word-spacing:14.928466px;}
.ws175{word-spacing:14.929074px;}
.ws3e{word-spacing:14.983092px;}
.ws3c{word-spacing:14.989950px;}
.ws3d{word-spacing:14.994660px;}
.wsc3{word-spacing:15.094668px;}
.ws13b{word-spacing:15.095276px;}
.ws40{word-spacing:15.148686px;}
.ws29{word-spacing:15.149239px;}
.ws159{word-spacing:15.203865px;}
.ws118{word-spacing:15.204474px;}
.ws75{word-spacing:15.205082px;}
.ws16f{word-spacing:15.259045px;}
.ws18c{word-spacing:15.259653px;}
.ws100{word-spacing:15.260261px;}
.wsfe{word-spacing:15.303330px;}
.ws8b{word-spacing:15.315441px;}
.wsda{word-spacing:15.316049px;}
.ws57{word-spacing:15.316657px;}
.wsff{word-spacing:15.329568px;}
.ws58{word-spacing:15.335850px;}
.ws1b{word-spacing:15.371228px;}
.ws9f{word-spacing:15.425247px;}
.wse8{word-spacing:15.425855px;}
.ws1c{word-spacing:15.480426px;}
.ws31{word-spacing:15.482251px;}
.wsc2{word-spacing:15.535661px;}
.ws109{word-spacing:15.590840px;}
.wsae{word-spacing:15.591448px;}
.ws7c{word-spacing:15.647844px;}
.ws15d{word-spacing:15.702415px;}
.ws138{word-spacing:15.756434px;}
.ws122{word-spacing:15.757650px;}
.ws34{word-spacing:15.758258px;}
.ws17e{word-spacing:15.813438px;}
.ws44{word-spacing:15.867456px;}
.wsf5{word-spacing:15.869225px;}
.ws133{word-spacing:15.979031px;}
.ws8{word-spacing:15.979639px;}
.wsca{word-spacing:16.034211px;}
.ws48{word-spacing:16.034819px;}
.ws177{word-spacing:16.088229px;}
.wse5{word-spacing:16.089445px;}
.ws9e{word-spacing:16.089998px;}
.ws76{word-spacing:16.144017px;}
.ws47{word-spacing:16.200412px;}
.ws69{word-spacing:16.255039px;}
.wsb9{word-spacing:16.255592px;}
.wsc4{word-spacing:16.256200px;}
.ws3b{word-spacing:16.265760px;}
.ws135{word-spacing:16.309610px;}
.ws136{word-spacing:16.310218px;}
.wsd{word-spacing:16.310826px;}
.ws106{word-spacing:16.311435px;}
.ws12c{word-spacing:16.364789px;}
.ws131{word-spacing:16.420024px;}
.ws132{word-spacing:16.420632px;}
.ws30{word-spacing:16.421185px;}
.ws103{word-spacing:16.421793px;}
.wsb{word-spacing:16.477028px;}
.ws126{word-spacing:16.530991px;}
.ws125{word-spacing:16.542134px;}
.wsc9{word-spacing:16.586226px;}
.ws191{word-spacing:16.587387px;}
.ws152{word-spacing:16.587995px;}
.wsf8{word-spacing:16.640797px;}
.ws63{word-spacing:16.641405px;}
.ws41{word-spacing:16.642014px;}
.ws14b{word-spacing:16.642622px;}
.ws173{word-spacing:16.643175px;}
.ws49{word-spacing:16.751819px;}
.ws10f{word-spacing:16.752372px;}
.ws169{word-spacing:16.808768px;}
.ws16b{word-spacing:16.863395px;}
.ws4a{word-spacing:16.864611px;}
.ws174{word-spacing:16.917966px;}
.ws186{word-spacing:16.973201px;}
.ws2e{word-spacing:16.974362px;}
.ws1d{word-spacing:17.028380px;}
.ws79{word-spacing:17.084168px;}
.wsb5{word-spacing:17.140563px;}
.ws33{word-spacing:17.194582px;}
.ws170{word-spacing:17.195798px;}
.wsb6{word-spacing:17.237736px;}
.ws52{word-spacing:17.250978px;}
.ws119{word-spacing:17.304996px;}
.wsab{word-spacing:17.361392px;}
.ws55{word-spacing:17.361945px;}
.wsaa{word-spacing:17.365620px;}
.wsac{word-spacing:17.415963px;}
.ws10a{word-spacing:17.416571px;}
.ws7b{word-spacing:17.417179px;}
.ws15e{word-spacing:17.471142px;}
.ws121{word-spacing:17.527538px;}
.ws81{word-spacing:17.545764px;}
.ws36{word-spacing:17.636736px;}
.ws6e{word-spacing:17.637952px;}
.ws16c{word-spacing:17.692579px;}
.ws155{word-spacing:17.693132px;}
.ws9d{word-spacing:17.748366px;}
.ws2b{word-spacing:17.748975px;}
.wsc0{word-spacing:17.857564px;}
.ws160{word-spacing:17.858172px;}
.wsb4{word-spacing:17.858725px;}
.wsb3{word-spacing:17.859333px;}
.ws0{word-spacing:17.861344px;}
.ws12f{word-spacing:17.914568px;}
.ws129{word-spacing:17.967923px;}
.ws127{word-spacing:17.968531px;}
.ws9c{word-spacing:17.969139px;}
.wse9{word-spacing:18.023766px;}
.ws128{word-spacing:18.061810px;}
.ws95{word-spacing:18.078945px;}
.ws188{word-spacing:18.079554px;}
.ws45{word-spacing:18.080162px;}
.ws130{word-spacing:18.080715px;}
.ws114{word-spacing:18.134125px;}
.ws4f{word-spacing:18.134733px;}
.wse3{word-spacing:18.189304px;}
.ws1e{word-spacing:18.191129px;}
.ws21{word-spacing:18.245147px;}
.wse4{word-spacing:18.300327px;}
.ws4b{word-spacing:18.300935px;}
.ws13e{word-spacing:18.301543px;}
.ws56{word-spacing:18.356114px;}
.ws11a{word-spacing:18.357331px;}
.ws123{word-spacing:18.410741px;}
.ws124{word-spacing:18.411349px;}
.ws89{word-spacing:18.466528px;}
.ws28{word-spacing:18.576942px;}
.wsc8{word-spacing:18.632122px;}
.wsa5{word-spacing:18.633338px;}
.ws13{word-spacing:18.687301px;}
.ws23{word-spacing:18.743089px;}
.wsea{word-spacing:18.743697px;}
.wscc{word-spacing:18.744305px;}
.ws87{word-spacing:18.853503px;}
.ws60{word-spacing:18.854111px;}
.wsa6{word-spacing:18.963917px;}
.wsde{word-spacing:18.964525px;}
.wsdb{word-spacing:19.020313px;}
.ws53{word-spacing:19.074276px;}
.wsbe{word-spacing:19.184690px;}
.wsbf{word-spacing:19.185298px;}
.ws96{word-spacing:19.185906px;}
.wsee{word-spacing:19.240478px;}
.ws3f{word-spacing:19.241086px;}
.ws14{word-spacing:19.241694px;}
.ws26{word-spacing:19.296873px;}
.ws7a{word-spacing:19.350892px;}
.ws93{word-spacing:19.352108px;}
.wsa7{word-spacing:19.406679px;}
.ws6f{word-spacing:19.407288px;}
.ws8a{word-spacing:19.460698px;}
.ws6b{word-spacing:19.516485px;}
.ws6a{word-spacing:19.517094px;}
.ws15c{word-spacing:19.517702px;}
.ws14c{word-spacing:19.572273px;}
.ws108{word-spacing:19.627452px;}
.wsa1{word-spacing:19.683848px;}
.ws20{word-spacing:19.793654px;}
.wsa3{word-spacing:19.904676px;}
.ws2c{word-spacing:19.959856px;}
.ws62{word-spacing:20.014427px;}
.ws84{word-spacing:20.069662px;}
.ws2a{word-spacing:20.070270px;}
.ws10b{word-spacing:20.070878px;}
.ws105{word-spacing:20.124841px;}
.ws176{word-spacing:20.125449px;}
.ws107{word-spacing:20.126058px;}
.ws17d{word-spacing:20.126666px;}
.ws167{word-spacing:20.180629px;}
.ws3a{word-spacing:20.290435px;}
.ws1a{word-spacing:20.291043px;}
.ws5c{word-spacing:20.346831px;}
.ws94{word-spacing:20.400849px;}
.ws19{word-spacing:20.402618px;}
.ws13a{word-spacing:20.403226px;}
.ws42{word-spacing:20.512424px;}
.wse2{word-spacing:20.568212px;}
.ws27{word-spacing:20.733805px;}
.wsdc{word-spacing:20.789648px;}
.ws85{word-spacing:20.844219px;}
.ws139{word-spacing:20.900007px;}
.wsa{word-spacing:20.954025px;}
.ws17{word-spacing:21.010421px;}
.ws4e{word-spacing:21.011029px;}
.ws5{word-spacing:21.175407px;}
.wsdf{word-spacing:21.334215px;}
.wse0{word-spacing:21.340166px;}
.ws13d{word-spacing:21.341000px;}
.ws15a{word-spacing:21.342825px;}
.ws16d{word-spacing:21.396179px;}
.ws102{word-spacing:21.451950px;}
.wsf9{word-spacing:21.451967px;}
.wsdd{word-spacing:21.452575px;}
.ws24{word-spacing:21.453183px;}
.ws101{word-spacing:21.479568px;}
.ws38{word-spacing:21.507202px;}
.wsc6{word-spacing:21.507810px;}
.wsc7{word-spacing:21.508363px;}
.ws64{word-spacing:21.618777px;}
.wsfd{word-spacing:21.728583px;}
.ws149{word-spacing:21.783154px;}
.ws12e{word-spacing:21.839550px;}
.ws12d{word-spacing:21.840158px;}
.wsa0{word-spacing:22.059770px;}
.ws22{word-spacing:22.061539px;}
.wsb0{word-spacing:22.115558px;}
.ws189{word-spacing:22.170184px;}
.ws148{word-spacing:22.170737px;}
.ws2d{word-spacing:22.391565px;}
.ws17b{word-spacing:22.392726px;}
.ws154{word-spacing:22.779148px;}
.ws77{word-spacing:22.833719px;}
.wseb{word-spacing:22.888954px;}
.ws110{word-spacing:23.110335px;}
.ws111{word-spacing:23.165515px;}
.wse1{word-spacing:23.221911px;}
.ws86{word-spacing:23.553098px;}
.wsb1{word-spacing:23.554140px;}
.ws147{word-spacing:23.554922px;}
.ws5b{word-spacing:23.662904px;}
.ws71{word-spacing:23.884285px;}
.ws73{word-spacing:23.884893px;}
.ws6d{word-spacing:23.886109px;}
.ws74{word-spacing:24.051703px;}
.ws182{word-spacing:24.714077px;}
.ws72{word-spacing:27.212520px;}
.ws4{word-spacing:31.958268px;}
.ws17a{word-spacing:37.540915px;}
.ws11{word-spacing:46.940712px;}
.ws92{word-spacing:55.235373px;}
.ws161{word-spacing:184.563090px;}
.ws162{word-spacing:198.387090px;}
._0{margin-left:-6.599303px;}
._34{margin-left:-5.317022px;}
._1{margin-left:-4.304876px;}
._5{margin-left:-2.854193px;}
._2{margin-left:-1.290566px;}
._25{width:1.564710px;}
._29{width:2.980142px;}
._24{width:4.487150px;}
._26{width:10.061453px;}
._33{width:11.093336px;}
._b{width:12.412260px;}
._32{width:13.437073px;}
._16{width:15.113398px;}
._6{width:16.220359px;}
._9{width:17.379049px;}
._13{width:18.625747px;}
._a{width:19.673246px;}
._e{width:21.459929px;}
._3{width:22.800936px;}
._4{width:23.857225px;}
._8{width:25.914065px;}
._10{width:28.361393px;}
._12{width:30.391671px;}
._f{width:32.198229px;}
._c{width:33.561970px;}
._d{width:36.414765px;}
._7{width:38.703719px;}
._27{width:40.360926px;}
._15{width:42.222735px;}
._11{width:43.275054px;}
._17{width:44.295639px;}
._28{width:45.336584px;}
._14{width:46.996002px;}
._18{width:55.290663px;}
._2a{width:71.741190px;}
._2b{width:102.678703px;}
._19{width:151.633050px;}
._1d{width:180.771000px;}
._20{width:201.507000px;}
._1b{width:207.440426px;}
._1e{width:210.536666px;}
._2f{width:221.188380px;}
._2c{width:227.326380px;}
._31{width:233.462760px;}
._1f{width:236.790149px;}
._2e{width:239.600760px;}
._22{width:259.898430px;}
._21{width:265.980717px;}
._30{width:272.638290px;}
._2d{width:278.774670px;}
._1c{width:293.322149px;}
._1a{width:313.290949px;}
._23{width:402.405000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.868000px;}
.fsa{font-size:38.706000px;}
.fs7{font-size:42.030000px;}
.fs9{font-size:43.038000px;}
.fsb{font-size:47.820000px;}
.fs2{font-size:48.000000px;}
.fsf{font-size:51.504000px;}
.fsd{font-size:51.630000px;}
.fse{font-size:51.636000px;}
.fs8{font-size:51.648000px;}
.fs3{font-size:53.796000px;}
.fs4{font-size:53.856000px;}
.fsc{font-size:54.696000px;}
.fs1{font-size:55.290000px;}
.fs6{font-size:60.516000px;}
.fs0{font-size:71.730000px;}
.y0{bottom:0.000000px;}
.y18c{bottom:0.750000px;}
.y119{bottom:0.900000px;}
.y169{bottom:1.143000px;}
.y167{bottom:1.144500px;}
.y1c8{bottom:1.291500px;}
.y1cc{bottom:1.293000px;}
.yaa{bottom:1.351500px;}
.y51{bottom:2.526000px;}
.yf0{bottom:2.653500px;}
.yed{bottom:2.655000px;}
.y11c{bottom:2.991000px;}
.y11e{bottom:2.992500px;}
.y18e{bottom:3.261000px;}
.y116{bottom:3.411000px;}
.ye7{bottom:3.552000px;}
.ye9{bottom:3.553500px;}
.y1ca{bottom:3.795000px;}
.y1ce{bottom:3.796500px;}
.y16b{bottom:3.802500px;}
.y17d{bottom:3.804000px;}
.y192{bottom:3.964500px;}
.y190{bottom:3.966000px;}
.y1bc{bottom:3.967500px;}
.ya7{bottom:3.969000px;}
.y1d2{bottom:4.510500px;}
.y1c4{bottom:4.512000px;}
.y16f{bottom:4.561500px;}
.y165{bottom:4.563000px;}
.y50{bottom:16.926000px;}
.y52{bottom:35.760095px;}
.y35{bottom:106.299000px;}
.y1b6{bottom:108.723000px;}
.yb0{bottom:120.196500px;}
.y14c{bottom:120.496500px;}
.y34{bottom:122.472000px;}
.yaf{bottom:136.635000px;}
.y33{bottom:138.645000px;}
.y14b{bottom:138.912000px;}
.y1b5{bottom:139.918500px;}
.yae{bottom:153.073500px;}
.y14a{bottom:153.505500px;}
.y1b4{bottom:153.741000px;}
.y8a{bottom:153.775500px;}
.y32{bottom:154.818000px;}
.y1d6{bottom:155.823000px;}
.y1b3{bottom:167.565000px;}
.y31{bottom:170.991000px;}
.y149{bottom:176.271000px;}
.y1b2{bottom:181.387500px;}
.y202{bottom:182.472000px;}
.y89{bottom:184.081500px;}
.y114{bottom:185.661000px;}
.y30{bottom:187.164000px;}
.y18a{bottom:189.087000px;}
.y148{bottom:192.444000px;}
.y1b1{bottom:195.211500px;}
.y1d5{bottom:197.854500px;}
.y201{bottom:198.645000px;}
.y88{bottom:200.254500px;}
.y113{bottom:201.834000px;}
.y2f{bottom:203.337000px;}
.y189{bottom:205.260000px;}
.y147{bottom:208.617000px;}
.y1b0{bottom:209.034000px;}
.y1d4{bottom:214.293000px;}
.y200{bottom:214.818000px;}
.y87{bottom:216.427500px;}
.y112{bottom:218.007000px;}
.y2e{bottom:219.510000px;}
.y188{bottom:221.433000px;}
.y1af{bottom:223.455000px;}
.y146{bottom:224.790000px;}
.y4e{bottom:230.437500px;}
.y1d3{bottom:230.731500px;}
.y1ff{bottom:230.991000px;}
.y86{bottom:232.600500px;}
.y111{bottom:234.180000px;}
.y2d{bottom:235.683000px;}
.y187{bottom:237.606000px;}
.y145{bottom:240.963000px;}
.y4d{bottom:246.610500px;}
.y85{bottom:248.773500px;}
.y1ae{bottom:249.807000px;}
.y110{bottom:250.353000px;}
.y2c{bottom:251.856000px;}
.ye5{bottom:251.857500px;}
.y186{bottom:253.779000px;}
.y144{bottom:257.136000px;}
.y1fe{bottom:258.646500px;}
.y4c{bottom:262.783500px;}
.y84{bottom:264.946500px;}
.y1ad{bottom:265.980000px;}
.y10f{bottom:266.526000px;}
.y2b{bottom:268.029000px;}
.ye4{bottom:268.030500px;}
.y143{bottom:273.309000px;}
.y1fd{bottom:274.819500px;}
.y174{bottom:274.906500px;}
.y4b{bottom:278.956500px;}
.y1ac{bottom:282.153000px;}
.y10e{bottom:282.699000px;}
.y2a{bottom:284.202000px;}
.ye3{bottom:284.203500px;}
.y1fc{bottom:290.992500px;}
.y1d1{bottom:291.150000px;}
.y173{bottom:291.345000px;}
.y4a{bottom:295.129500px;}
.y185{bottom:295.611000px;}
.y83{bottom:297.987000px;}
.y1ab{bottom:298.326000px;}
.y10d{bottom:298.872000px;}
.y29{bottom:300.375000px;}
.y15f{bottom:300.376500px;}
.y1fb{bottom:307.165500px;}
.y172{bottom:307.783500px;}
.y142{bottom:309.078000px;}
.y49{bottom:311.302500px;}
.y184{bottom:312.049500px;}
.y1aa{bottom:314.499000px;}
.y10c{bottom:315.045000px;}
.y28{bottom:316.548000px;}
.y15e{bottom:316.549500px;}
.ye2{bottom:316.875000px;}
.y1fa{bottom:323.338500px;}
.y48{bottom:327.475500px;}
.y183{bottom:328.488000px;}
.y1a9{bottom:330.672000px;}
.y10b{bottom:331.218000px;}
.y15d{bottom:332.722500px;}
.ye1{bottom:333.048000px;}
.y82{bottom:339.295500px;}
.y141{bottom:341.872500px;}
.y47{bottom:343.648500px;}
.y1a8{bottom:346.846500px;}
.y27{bottom:347.320500px;}
.y15c{bottom:348.895500px;}
.ye0{bottom:349.221000px;}
.y1f9{bottom:350.992500px;}
.ya8{bottom:353.797500px;}
.ya6{bottom:354.789000px;}
.y81{bottom:355.468500px;}
.yab{bottom:355.687500px;}
.yac{bottom:356.878500px;}
.y140{bottom:358.045500px;}
.y46{bottom:359.821500px;}
.y10a{bottom:362.061000px;}
.y1a7{bottom:363.019500px;}
.y26{bottom:363.495000px;}
.y15b{bottom:365.068500px;}
.ydf{bottom:365.394000px;}
.y1f8{bottom:367.165500px;}
.ya9{bottom:369.465000px;}
.yad{bottom:369.754500px;}
.y80{bottom:371.641500px;}
.y13f{bottom:374.218500px;}
.y1c6{bottom:374.440500px;}
.y45{bottom:375.994500px;}
.y109{bottom:378.234000px;}
.y1a6{bottom:379.192500px;}
.y25{bottom:379.668000px;}
.y15a{bottom:381.241500px;}
.yde{bottom:381.567000px;}
.y1f7{bottom:383.338500px;}
.y7f{bottom:387.814500px;}
.y13e{bottom:390.391500px;}
.y44{bottom:392.167500px;}
.y108{bottom:394.407000px;}
.y1a5{bottom:395.365500px;}
.y24{bottom:395.841000px;}
.y159{bottom:397.414500px;}
.y170{bottom:397.489500px;}
.ydd{bottom:397.740000px;}
.ya5{bottom:398.161500px;}
.y7e{bottom:403.987500px;}
.y43{bottom:408.342000px;}
.y107{bottom:410.580000px;}
.y1f6{bottom:410.994000px;}
.y23{bottom:412.014000px;}
.y158{bottom:413.587500px;}
.ydc{bottom:413.913000px;}
.ya4{bottom:414.334500px;}
.y181{bottom:416.425500px;}
.y7d{bottom:420.160500px;}
.y13d{bottom:425.412000px;}
.y106{bottom:426.754500px;}
.y1a4{bottom:427.132500px;}
.y1f5{bottom:427.167000px;}
.y22{bottom:428.187000px;}
.y157{bottom:429.760500px;}
.ydb{bottom:430.086000px;}
.ya3{bottom:430.507500px;}
.y7c{bottom:436.333500px;}
.y105{bottom:442.927500px;}
.y1a3{bottom:443.305500px;}
.y1f4{bottom:443.340000px;}
.y21{bottom:444.360000px;}
.yda{bottom:446.260500px;}
.ya2{bottom:446.680500px;}
.y42{bottom:451.614000px;}
.y7b{bottom:452.506500px;}
.y1c5{bottom:455.848500px;}
.y104{bottom:459.100500px;}
.y1a2{bottom:459.478500px;}
.y1f3{bottom:459.513000px;}
.y20{bottom:460.533000px;}
.yd9{bottom:462.433500px;}
.ya1{bottom:462.853500px;}
.y156{bottom:462.948000px;}
.y41{bottom:467.788500px;}
.y7a{bottom:468.679500px;}
.y13c{bottom:469.126500px;}
.y103{bottom:475.273500px;}
.y1a1{bottom:475.651500px;}
.y1f{bottom:476.706000px;}
.yd8{bottom:478.606500px;}
.ya0{bottom:479.026500px;}
.y155{bottom:479.121000px;}
.y16e{bottom:482.655000px;}
.y40{bottom:483.961500px;}
.y13b{bottom:485.299500px;}
.y1f2{bottom:487.167000px;}
.y102{bottom:491.446500px;}
.y1a0{bottom:491.824500px;}
.y1e{bottom:492.879000px;}
.yd7{bottom:494.779500px;}
.y154{bottom:495.294000px;}
.y79{bottom:498.247500px;}
.y3f{bottom:500.134500px;}
.y13a{bottom:501.472500px;}
.y1f1{bottom:503.340000px;}
.y180{bottom:503.416500px;}
.y101{bottom:507.619500px;}
.y19f{bottom:507.997500px;}
.y1d{bottom:509.052000px;}
.y9f{bottom:510.154500px;}
.yd6{bottom:510.952500px;}
.y153{bottom:511.467000px;}
.y78{bottom:514.420500px;}
.y3e{bottom:516.307500px;}
.y139{bottom:517.645500px;}
.y1f0{bottom:519.513000px;}
.y100{bottom:523.792500px;}
.y1c{bottom:525.225000px;}
.yd5{bottom:527.125500px;}
.y152{bottom:527.640000px;}
.y77{bottom:530.593500px;}
.y3d{bottom:532.480500px;}
.y138{bottom:533.818500px;}
.y1c3{bottom:537.289500px;}
.y19e{bottom:539.764500px;}
.yff{bottom:539.965500px;}
.y9e{bottom:540.237000px;}
.y171{bottom:540.718500px;}
.y1b{bottom:541.398000px;}
.yd4{bottom:543.298500px;}
.y151{bottom:543.813000px;}
.y76{bottom:546.766500px;}
.y1ef{bottom:547.167000px;}
.y3c{bottom:548.653500px;}
.y137{bottom:549.993000px;}
.y19d{bottom:555.937500px;}
.yfe{bottom:556.138500px;}
.y9d{bottom:556.410000px;}
.y1a{bottom:557.571000px;}
.yd3{bottom:559.471500px;}
.y150{bottom:559.986000px;}
.y182{bottom:561.787500px;}
.y75{bottom:562.939500px;}
.y1ee{bottom:563.340000px;}
.y3b{bottom:564.826500px;}
.y136{bottom:566.166000px;}
.y19c{bottom:572.110500px;}
.yfd{bottom:572.311500px;}
.y9c{bottom:572.583000px;}
.y19{bottom:573.744000px;}
.yd2{bottom:575.644500px;}
.y14f{bottom:576.159000px;}
.y74{bottom:579.112500px;}
.y1ed{bottom:579.513000px;}
.y3a{bottom:580.999500px;}
.y135{bottom:582.339000px;}
.y19b{bottom:588.283500px;}
.yfc{bottom:588.484500px;}
.y9b{bottom:588.756000px;}
.y18{bottom:589.917000px;}
.y1cd{bottom:590.584500px;}
.y1c9{bottom:591.715500px;}
.yd1{bottom:591.817500px;}
.y1cb{bottom:592.050000px;}
.y14e{bottom:592.332000px;}
.y1c7{bottom:592.905000px;}
.y73{bottom:595.285500px;}
.y39{bottom:597.172500px;}
.y134{bottom:598.512000px;}
.y19a{bottom:604.456500px;}
.yfb{bottom:604.657500px;}
.y9a{bottom:604.929000px;}
.y17{bottom:606.090000px;}
.y1ec{bottom:607.168500px;}
.y1d0{bottom:607.572000px;}
.yd0{bottom:607.990500px;}
.y1cf{bottom:608.085000px;}
.y72{bottom:611.458500px;}
.y38{bottom:613.345500px;}
.y133{bottom:614.685000px;}
.yfa{bottom:620.830500px;}
.y99{bottom:621.102000px;}
.y16{bottom:622.263000px;}
.y1eb{bottom:623.341500px;}
.ycf{bottom:624.163500px;}
.y71{bottom:627.631500px;}
.y14d{bottom:627.739500px;}
.y132{bottom:630.858000px;}
.yf9{bottom:637.003500px;}
.y98{bottom:637.275000px;}
.y15{bottom:638.436000px;}
.y1ea{bottom:639.514500px;}
.y70{bottom:643.804500px;}
.y131{bottom:647.031000px;}
.y1c2{bottom:647.839500px;}
.y199{bottom:647.878500px;}
.yf8{bottom:653.176500px;}
.y97{bottom:653.448000px;}
.y14{bottom:654.609000px;}
.y1e9{bottom:655.687500px;}
.y37{bottom:656.619000px;}
.yce{bottom:656.835000px;}
.y6f{bottom:659.977500px;}
.y130{bottom:663.204000px;}
.y1c1{bottom:664.278000px;}
.y198{bottom:664.317000px;}
.y96{bottom:669.622500px;}
.y36{bottom:672.792000px;}
.ycd{bottom:673.008000px;}
.y6e{bottom:676.150500px;}
.y12f{bottom:679.377000px;}
.y1c0{bottom:680.716500px;}
.y197{bottom:680.755500px;}
.y95{bottom:685.795500px;}
.y1e8{bottom:688.521000px;}
.y13{bottom:688.965000px;}
.ycc{bottom:689.182500px;}
.yf7{bottom:690.511500px;}
.y6d{bottom:692.323500px;}
.y12e{bottom:695.550000px;}
.y1bf{bottom:697.153500px;}
.y196{bottom:697.194000px;}
.y94{bottom:701.968500px;}
.y215{bottom:703.591500px;}
.ycb{bottom:705.354000px;}
.y6c{bottom:708.496500px;}
.y12d{bottom:711.723000px;}
.y93{bottom:718.141500px;}
.yf6{bottom:719.668500px;}
.y214{bottom:719.764500px;}
.yca{bottom:721.528500px;}
.y168{bottom:724.587000px;}
.y6b{bottom:724.669500px;}
.y12c{bottom:727.896000px;}
.y1e7{bottom:729.568500px;}
.y92{bottom:734.314500px;}
.y213{bottom:735.937500px;}
.yc9{bottom:737.701500px;}
.y12{bottom:737.754000px;}
.y12b{bottom:744.069000px;}
.y1e6{bottom:745.741500px;}
.y17b{bottom:746.428500px;}
.yf5{bottom:748.827000px;}
.y91{bottom:750.487500px;}
.y212{bottom:752.110500px;}
.yc8{bottom:753.874500px;}
.y11{bottom:753.927000px;}
.y6a{bottom:754.237500px;}
.y12a{bottom:760.242000px;}
.y194{bottom:764.572500px;}
.y1bd{bottom:764.805000px;}
.y90{bottom:766.660500px;}
.yc7{bottom:770.047500px;}
.y10{bottom:770.100000px;}
.y69{bottom:770.410500px;}
.y129{bottom:776.415000px;}
.y1e5{bottom:778.576500px;}
.y211{bottom:780.238500px;}
.y8f{bottom:782.833500px;}
.yc6{bottom:786.220500px;}
.yf{bottom:786.273000px;}
.y68{bottom:786.583500px;}
.yf4{bottom:791.632500px;}
.y210{bottom:796.413000px;}
.y8e{bottom:799.006500px;}
.yc5{bottom:802.393500px;}
.ye{bottom:802.446000px;}
.y67{bottom:802.756500px;}
.yf3{bottom:808.071000px;}
.y164{bottom:812.380500px;}
.y20f{bottom:812.586000px;}
.y8d{bottom:815.179500px;}
.yc4{bottom:818.566500px;}
.yd{bottom:818.619000px;}
.y128{bottom:818.707500px;}
.y66{bottom:818.929500px;}
.y1e4{bottom:819.624000px;}
.yf2{bottom:824.509500px;}
.y179{bottom:832.915500px;}
.yc3{bottom:834.739500px;}
.yc{bottom:834.792000px;}
.y65{bottom:835.102500px;}
.y127{bottom:835.144500px;}
.y1e3{bottom:835.797000px;}
.y20e{bottom:840.714000px;}
.yf1{bottom:840.948000px;}
.yc2{bottom:850.912500px;}
.yb{bottom:850.965000px;}
.y64{bottom:851.275500px;}
.y1e2{bottom:851.970000px;}
.y8c{bottom:856.563000px;}
.y20d{bottom:856.887000px;}
.yc1{bottom:867.085500px;}
.ya{bottom:867.138000px;}
.y63{bottom:867.448500px;}
.y1e1{bottom:868.143000px;}
.y166{bottom:870.750000px;}
.y8b{bottom:873.001500px;}
.y20c{bottom:873.060000px;}
.y1bb{bottom:876.351000px;}
.y193{bottom:876.376500px;}
.yc0{bottom:883.258500px;}
.y9{bottom:883.311000px;}
.y62{bottom:883.621500px;}
.y1e0{bottom:884.316000px;}
.y17a{bottom:891.051000px;}
.y121{bottom:892.402500px;}
.ybf{bottom:899.431500px;}
.y8{bottom:899.484000px;}
.y61{bottom:899.794500px;}
.y1df{bottom:900.489000px;}
.y20b{bottom:901.188000px;}
.ybe{bottom:915.604500px;}
.y60{bottom:915.967500px;}
.y1de{bottom:916.663500px;}
.y20a{bottom:917.361000px;}
.ybd{bottom:931.777500px;}
.y7{bottom:931.830000px;}
.y5f{bottom:932.140500px;}
.y1dd{bottom:932.836500px;}
.y209{bottom:945.489000px;}
.y120{bottom:947.914500px;}
.ybc{bottom:947.950500px;}
.y5e{bottom:948.313500px;}
.y1dc{bottom:949.009500px;}
.y126{bottom:950.806500px;}
.y124{bottom:962.314500px;}
.ybb{bottom:964.123500px;}
.y5d{bottom:964.486500px;}
.y1db{bottom:965.182500px;}
.y208{bottom:973.617000px;}
.yeb{bottom:974.811000px;}
.y16c{bottom:978.502500px;}
.y16d{bottom:980.010000px;}
.yba{bottom:980.296500px;}
.y5c{bottom:980.659500px;}
.y1da{bottom:981.355500px;}
.y117{bottom:982.516500px;}
.y6{bottom:982.837500px;}
.y1ba{bottom:984.325500px;}
.y191{bottom:984.340500px;}
.y207{bottom:989.790000px;}
.y16a{bottom:994.441500px;}
.yef{bottom:994.684500px;}
.yb9{bottom:996.469500px;}
.y5b{bottom:996.832500px;}
.y1d9{bottom:997.528500px;}
.y17e{bottom:998.103000px;}
.y5{bottom:999.010500px;}
.y17f{bottom:999.412500px;}
.yea{bottom:1004.107500px;}
.y206{bottom:1005.963000px;}
.y125{bottom:1008.751500px;}
.y5a{bottom:1013.005500px;}
.y1d8{bottom:1013.701500px;}
.y17c{bottom:1013.862000px;}
.y123{bottom:1019.914500px;}
.yee{bottom:1023.979500px;}
.y59{bottom:1029.178500px;}
.y1d7{bottom:1029.874500px;}
.y163{bottom:1029.949500px;}
.y118{bottom:1030.341000px;}
.yb8{bottom:1031.529000px;}
.ye8{bottom:1033.402500px;}
.y205{bottom:1034.092500px;}
.y11f{bottom:1036.402500px;}
.y58{bottom:1045.353000px;}
.y178{bottom:1046.047500px;}
.y4{bottom:1047.381000px;}
.y204{bottom:1050.265500px;}
.yec{bottom:1053.276000px;}
.y11b{bottom:1059.466500px;}
.y57{bottom:1061.526000px;}
.y177{bottom:1062.220500px;}
.ye6{bottom:1062.699000px;}
.yb7{bottom:1062.724500px;}
.y3{bottom:1063.554000px;}
.y203{bottom:1066.438500px;}
.y11a{bottom:1070.205000px;}
.yb6{bottom:1076.548500px;}
.y56{bottom:1077.699000px;}
.y176{bottom:1078.393500px;}
.y162{bottom:1078.830000px;}
.yb5{bottom:1090.371000px;}
.y11d{bottom:1091.914500px;}
.y1b9{bottom:1092.300000px;}
.y18f{bottom:1092.303000px;}
.y55{bottom:1093.872000px;}
.y175{bottom:1094.566500px;}
.y2{bottom:1095.900000px;}
.yb4{bottom:1104.195000px;}
.y54{bottom:1110.045000px;}
.y161{bottom:1110.739500px;}
.yb3{bottom:1118.017500px;}
.y160{bottom:1126.912500px;}
.y115{bottom:1129.110000px;}
.yb2{bottom:1131.840000px;}
.y53{bottom:1143.085500px;}
.y1{bottom:1143.175500px;}
.y195{bottom:1144.041000px;}
.y1be{bottom:1144.042500px;}
.y18d{bottom:1144.057500px;}
.y1b8{bottom:1144.059000px;}
.y122{bottom:1145.169000px;}
.y18b{bottom:1146.067500px;}
.y1b7{bottom:1146.069000px;}
.yb1{bottom:1146.261000px;}
.y4f{bottom:1198.034784px;}
.h1e{height:9.271350px;}
.h1b{height:9.271950px;}
.h2f{height:10.463100px;}
.h34{height:10.463700px;}
.h15{height:10.560900px;}
.h17{height:10.561500px;}
.h1a{height:10.622400px;}
.h1d{height:11.364300px;}
.hd{height:11.378850px;}
.ha{height:11.379450px;}
.h3c{height:11.526600px;}
.h29{height:11.783250px;}
.h2d{height:11.783850px;}
.hc{height:12.052200px;}
.h31{height:12.477600px;}
.h36{height:12.478650px;}
.h18{height:13.133850px;}
.h2c{height:13.357050px;}
.h28{height:13.357650px;}
.hb{height:13.602600px;}
.h3d{height:13.689300px;}
.h3e{height:14.030850px;}
.h3f{height:14.031450px;}
.h33{height:14.384250px;}
.h32{height:14.384700px;}
.h37{height:14.385900px;}
.h38{height:14.386500px;}
.h27{height:14.442750px;}
.h14{height:14.668950px;}
.h12{height:14.669550px;}
.h8{height:14.671350px;}
.h3b{height:15.461700px;}
.h39{height:15.462300px;}
.h2a{height:15.961500px;}
.h23{height:15.962100px;}
.h26{height:23.859450px;}
.h2e{height:23.859900px;}
.h20{height:24.677184px;}
.h5{height:29.040150px;}
.h1c{height:30.298752px;}
.h16{height:31.480470px;}
.h21{height:33.187080px;}
.h19{height:36.360192px;}
.h7{height:37.011648px;}
.h40{height:37.763070px;}
.h3{height:38.039520px;}
.he{height:38.045520px;}
.h4{height:38.205390px;}
.hf{height:38.315520px;}
.h3a{height:38.628000px;}
.h30{height:38.670870px;}
.h35{height:38.675364px;}
.h11{height:40.347000px;}
.h9{height:40.392000px;}
.h24{height:41.022000px;}
.h13{height:45.326484px;}
.h10{height:46.706220px;}
.h1f{height:49.483728px;}
.h2{height:49.565430px;}
.h6{height:49.898438px;}
.h25{height:63.282450px;}
.h2b{height:63.283050px;}
.h22{height:85.593000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w1e{width:11.783250px;}
.w23{width:11.783850px;}
.w2a{width:11.990100px;}
.w2e{width:11.990700px;}
.w2f{width:11.991150px;}
.w4{width:13.346985px;}
.w24{width:14.021550px;}
.w1d{width:14.022000px;}
.w31{width:14.031450px;}
.w1c{width:14.188500px;}
.w22{width:14.189100px;}
.w17{width:20.232450px;}
.w28{width:20.456850px;}
.w2c{width:20.458650px;}
.w32{width:23.367150px;}
.w16{width:23.744550px;}
.w2b{width:29.073600px;}
.w30{width:29.076600px;}
.w13{width:30.240750px;}
.w12{width:32.347800px;}
.w1b{width:34.635300px;}
.w15{width:37.503450px;}
.w7{width:40.102800px;}
.w11{width:42.536700px;}
.w14{width:54.386700px;}
.w29{width:55.300200px;}
.w2d{width:55.305450px;}
.w33{width:61.280850px;}
.w9{width:61.869750px;}
.w8{width:65.722800px;}
.wc{width:69.320550px;}
.w6{width:71.594550px;}
.wb{width:72.086700px;}
.w1a{width:73.202400px;}
.w5{width:74.586300px;}
.w10{width:74.937900px;}
.wa{width:75.072600px;}
.w19{width:76.713900px;}
.wd{width:77.523600px;}
.wf{width:82.501200px;}
.we{width:87.320550px;}
.w21{width:98.392350px;}
.w27{width:98.392950px;}
.w35{width:99.230850px;}
.w34{width:102.091950px;}
.w20{width:102.186300px;}
.w26{width:102.186900px;}
.w25{width:102.781050px;}
.w1f{width:105.756450px;}
.w18{width:120.526200px;}
.w2{width:596.971500px;}
.w3{width:623.034000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:1.350000px;}
.x2e{left:10.218750px;}
.xd{left:13.348500px;}
.xb{left:49.735500px;}
.x5{left:85.039500px;}
.x2d{left:87.164700px;}
.x3b{left:90.914850px;}
.x28{left:93.625500px;}
.x3{left:95.490000px;}
.x1b{left:96.772500px;}
.x2c{left:101.506500px;}
.x3d{left:106.798500px;}
.x32{left:112.818150px;}
.x3e{left:121.594500px;}
.x1c{left:122.656500px;}
.x30{left:126.315750px;}
.x3a{left:128.461500px;}
.x9{left:132.036000px;}
.xa{left:134.943031px;}
.x8{left:147.974281px;}
.x4f{left:152.229000px;}
.x3c{left:170.098350px;}
.x2a{left:184.767300px;}
.x22{left:197.785500px;}
.x4d{left:202.233000px;}
.x1{left:205.819500px;}
.xe{left:207.174000px;}
.xf{left:209.530500px;}
.x6{left:210.802500px;}
.x2f{left:216.273000px;}
.x4e{left:227.259000px;}
.x50{left:230.188500px;}
.x39{left:233.905500px;}
.x29{left:240.189300px;}
.x26{left:247.738500px;}
.x20{left:279.610500px;}
.x2{left:297.298500px;}
.x51{left:305.404500px;}
.x31{left:310.956000px;}
.x21{left:328.617000px;}
.x1d{left:375.210000px;}
.x4{left:395.248500px;}
.x23{left:441.142500px;}
.x24{left:449.758500px;}
.x7{left:459.213000px;}
.x1f{left:460.335000px;}
.x36{left:461.335500px;}
.x18{left:463.354500px;}
.x43{left:465.088500px;}
.x10{left:467.275500px;}
.x37{left:468.573000px;}
.x42{left:470.059500px;}
.x19{left:473.226000px;}
.x4a{left:476.091000px;}
.x38{left:486.991500px;}
.x1a{left:495.183000px;}
.x34{left:499.897500px;}
.x41{left:502.639500px;}
.x48{left:506.518500px;}
.x14{left:528.016500px;}
.x44{left:544.272000px;}
.x4c{left:550.662000px;}
.x11{left:551.697000px;}
.x13{left:554.178000px;}
.x25{left:558.117000px;}
.x45{left:587.838000px;}
.x33{left:591.079500px;}
.x4b{left:597.009000px;}
.x40{left:608.094000px;}
.x27{left:630.117000px;}
.x15{left:643.474500px;}
.x47{left:652.578000px;}
.x49{left:672.142500px;}
.x35{left:684.582000px;}
.x17{left:701.188500px;}
.x1e{left:720.525000px;}
.x2b{left:729.283500px;}
.x16{left:732.832500px;}
.x3f{left:749.628000px;}
.x46{left:754.182000px;}
.xc{left:794.533356px;}
@media print{
.v2{vertical-align:-15.002667pt;}
.v3{vertical-align:-5.312000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:20.314667pt;}
.v4{vertical-align:22.976000pt;}
.v5{vertical-align:40.218667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.010912pt;}
.ls26{letter-spacing:0.011883pt;}
.lsa{letter-spacing:0.017040pt;}
.ls24{letter-spacing:0.017216pt;}
.ls23{letter-spacing:0.021888pt;}
.lsb{letter-spacing:0.022416pt;}
.ls5{letter-spacing:0.025013pt;}
.ls15{letter-spacing:0.039691pt;}
.ls6{letter-spacing:0.043180pt;}
.ls3{letter-spacing:0.045024pt;}
.lse{letter-spacing:0.045863pt;}
.ls28{letter-spacing:0.048521pt;}
.ls18{letter-spacing:0.064704pt;}
.ls16{letter-spacing:0.070037pt;}
.ls9{letter-spacing:2.658357pt;}
.ls11{letter-spacing:2.658667pt;}
.ls25{letter-spacing:5.130784pt;}
.ls13{letter-spacing:10.029024pt;}
.lsc{letter-spacing:10.395707pt;}
.ls1f{letter-spacing:10.933184pt;}
.ls1e{letter-spacing:10.939552pt;}
.ls21{letter-spacing:10.944885pt;}
.ls4{letter-spacing:11.997024pt;}
.ls14{letter-spacing:12.642357pt;}
.ls19{letter-spacing:13.127691pt;}
.ls8{letter-spacing:13.316107pt;}
.ls20{letter-spacing:13.575691pt;}
.ls1b{letter-spacing:13.670219pt;}
.ls7{letter-spacing:14.386357pt;}
.ls1a{letter-spacing:14.560245pt;}
.lsf{letter-spacing:14.615691pt;}
.ls1d{letter-spacing:16.053451pt;}
.ls17{letter-spacing:16.496704pt;}
.ls1{letter-spacing:21.026357pt;}
.ls22{letter-spacing:21.855851pt;}
.ls10{letter-spacing:23.272000pt;}
.ls2{letter-spacing:23.639691pt;}
.ls12{letter-spacing:26.565333pt;}
.lsd{letter-spacing:26.610357pt;}
.ls27{letter-spacing:58.589685pt;}
.ws143{word-spacing:-24.309333pt;}
.ws99{word-spacing:-23.936000pt;}
.ws163{word-spacing:-22.949333pt;}
.ws156{word-spacing:-22.946667pt;}
.ws164{word-spacing:-22.890667pt;}
.ws117{word-spacing:-22.571040pt;}
.wsd4{word-spacing:-18.680000pt;}
.wscf{word-spacing:-10.619079pt;}
.wsd0{word-spacing:-10.618003pt;}
.wsce{word-spacing:-10.602027pt;}
.wscd{word-spacing:-10.600951pt;}
.ws144{word-spacing:-8.508072pt;}
.ws150{word-spacing:-8.507537pt;}
.ws146{word-spacing:-8.449924pt;}
.ws145{word-spacing:-8.449389pt;}
.wsd2{word-spacing:-8.306672pt;}
.wsd3{word-spacing:-8.261840pt;}
.ws9a{word-spacing:-7.975475pt;}
.ws97{word-spacing:-7.966906pt;}
.ws98{word-spacing:-7.966380pt;}
.ws166{word-spacing:-7.618792pt;}
.ws165{word-spacing:-7.617190pt;}
.wsd1{word-spacing:-7.365598pt;}
.wsf1{word-spacing:-0.091773pt;}
.wsb7{word-spacing:-0.090999pt;}
.ws3{word-spacing:-0.049147pt;}
.wsb2{word-spacing:-0.047819pt;}
.wsf0{word-spacing:-0.045909pt;}
.wsf2{word-spacing:-0.038256pt;}
.ws51{word-spacing:0.000000pt;}
.ws140{word-spacing:6.800388pt;}
.ws141{word-spacing:6.819611pt;}
.ws39{word-spacing:9.288032pt;}
.ws67{word-spacing:9.288573pt;}
.wsb8{word-spacing:9.288645pt;}
.ws70{word-spacing:9.289113pt;}
.ws134{word-spacing:9.337129pt;}
.wsd8{word-spacing:9.386718pt;}
.ws184{word-spacing:9.435767pt;}
.ws190{word-spacing:9.436307pt;}
.ws104{word-spacing:9.582961pt;}
.ws11b{word-spacing:9.583502pt;}
.ws37{word-spacing:9.730696pt;}
.ws8e{word-spacing:9.731237pt;}
.ws5e{word-spacing:9.779253pt;}
.ws90{word-spacing:9.779744pt;}
.wsd7{word-spacing:9.829382pt;}
.ws10e{word-spacing:9.829923pt;}
.ws8f{word-spacing:9.877890pt;}
.ws14e{word-spacing:9.878431pt;}
.ws11d{word-spacing:9.927479pt;}
.ws11c{word-spacing:9.976036pt;}
.ws16{word-spacing:9.977609pt;}
.ws66{word-spacing:10.026166pt;}
.wsc5{word-spacing:10.075214pt;}
.ws32{word-spacing:10.123771pt;}
.ws187{word-spacing:10.173901pt;}
.ws4d{word-spacing:10.222408pt;}
.ws193{word-spacing:10.270965pt;}
.ws18f{word-spacing:10.321095pt;}
.ws14f{word-spacing:10.370143pt;}
.ws11e{word-spacing:10.419732pt;}
.ws7f{word-spacing:10.617056pt;}
.ws181{word-spacing:10.663991pt;}
.ws180{word-spacing:10.665072pt;}
.ws59{word-spacing:10.713580pt;}
.wsc1{word-spacing:10.714121pt;}
.wsa4{word-spacing:10.762137pt;}
.ws54{word-spacing:10.763710pt;}
.ws17c{word-spacing:10.811185pt;}
.ws8d{word-spacing:10.860774pt;}
.ws5d{word-spacing:10.861856pt;}
.ws142{word-spacing:10.874347pt;}
.ws7e{word-spacing:10.909872pt;}
.ws18b{word-spacing:10.911445pt;}
.ws43{word-spacing:10.959461pt;}
.wsf6{word-spacing:11.007969pt;}
.wsf7{word-spacing:11.010131pt;}
.wsfb{word-spacing:11.064730pt;}
.ws18e{word-spacing:11.106115pt;}
.wsfc{word-spacing:11.106655pt;}
.ws120{word-spacing:11.107196pt;}
.wsfa{word-spacing:11.155704pt;}
.ws88{word-spacing:11.156785pt;}
.wsa9{word-spacing:11.157325pt;}
.wsa8{word-spacing:11.205293pt;}
.wse7{word-spacing:11.206374pt;}
.wsa2{word-spacing:11.253849pt;}
.ws4c{word-spacing:11.303438pt;}
.ws18d{word-spacing:11.303979pt;}
.ws116{word-spacing:11.401044pt;}
.ws6c{word-spacing:11.401584pt;}
.ws2f{word-spacing:11.402076pt;}
.ws15f{word-spacing:11.450092pt;}
.ws7{word-spacing:11.451173pt;}
.ws61{word-spacing:11.499681pt;}
.ws15{word-spacing:11.500762pt;}
.wsec{word-spacing:11.548779pt;}
.ws14d{word-spacing:11.549811pt;}
.ws46{word-spacing:11.597827pt;}
.ws17f{word-spacing:11.598368pt;}
.ws12{word-spacing:11.598908pt;}
.ws91{word-spacing:11.599400pt;}
.wsba{word-spacing:11.676229pt;}
.wsad{word-spacing:11.695973pt;}
.wsbb{word-spacing:11.697005pt;}
.ws13c{word-spacing:11.746102pt;}
.ws68{word-spacing:11.746594pt;}
.ws35{word-spacing:11.795151pt;}
.ws78{word-spacing:11.843659pt;}
.wsc{word-spacing:11.845280pt;}
.wsd5{word-spacing:11.858838pt;}
.wsf{word-spacing:11.892756pt;}
.ws16a{word-spacing:11.894329pt;}
.ws83{word-spacing:11.905796pt;}
.ws80{word-spacing:11.906322pt;}
.ws82{word-spacing:11.906848pt;}
.ws9b{word-spacing:11.907374pt;}
.ws151{word-spacing:11.907900pt;}
.wsaf{word-spacing:11.941805pt;}
.ws65{word-spacing:11.942886pt;}
.ws10{word-spacing:11.991393pt;}
.wsef{word-spacing:11.991934pt;}
.ws157{word-spacing:11.992475pt;}
.ws11f{word-spacing:12.089539pt;}
.ws179{word-spacing:12.090080pt;}
.ws7d{word-spacing:12.188177pt;}
.wsd6{word-spacing:12.236193pt;}
.ws2{word-spacing:12.236734pt;}
.ws1{word-spacing:12.237274pt;}
.ws25{word-spacing:12.237815pt;}
.ws6{word-spacing:12.238306pt;}
.ws10d{word-spacing:12.241733pt;}
.ws18a{word-spacing:12.249840pt;}
.ws10c{word-spacing:12.266283pt;}
.ws16e{word-spacing:12.286863pt;}
.wsd9{word-spacing:12.335912pt;}
.ws18{word-spacing:12.336452pt;}
.wsed{word-spacing:12.385009pt;}
.ws153{word-spacing:12.385501pt;}
.ws172{word-spacing:12.434058pt;}
.wsf3{word-spacing:12.470844pt;}
.wsf4{word-spacing:12.471379pt;}
.ws183{word-spacing:12.482565pt;}
.ws168{word-spacing:12.532695pt;}
.ws178{word-spacing:12.580711pt;}
.ws13f{word-spacing:12.582333pt;}
.ws5a{word-spacing:12.630300pt;}
.ws14a{word-spacing:12.631381pt;}
.ws115{word-spacing:12.680430pt;}
.ws8c{word-spacing:12.728446pt;}
.ws192{word-spacing:12.748293pt;}
.ws1f{word-spacing:12.778035pt;}
.ws5f{word-spacing:12.826592pt;}
.ws9{word-spacing:12.828165pt;}
.ws137{word-spacing:12.974278pt;}
.wscb{word-spacing:12.974818pt;}
.ws185{word-spacing:13.022835pt;}
.ws12a{word-spacing:13.023916pt;}
.ws12b{word-spacing:13.024407pt;}
.wse6{word-spacing:13.072424pt;}
.ws171{word-spacing:13.072964pt;}
.ws113{word-spacing:13.073505pt;}
.ws112{word-spacing:13.074045pt;}
.ws158{word-spacing:13.122013pt;}
.ws15b{word-spacing:13.170569pt;}
.ws50{word-spacing:13.171110pt;}
.wse{word-spacing:13.219618pt;}
.wsbd{word-spacing:13.226532pt;}
.wsbc{word-spacing:13.269747pt;}
.ws175{word-spacing:13.270288pt;}
.ws3e{word-spacing:13.318304pt;}
.ws3c{word-spacing:13.324400pt;}
.ws3d{word-spacing:13.328587pt;}
.wsc3{word-spacing:13.417482pt;}
.ws13b{word-spacing:13.418023pt;}
.ws40{word-spacing:13.465499pt;}
.ws29{word-spacing:13.465990pt;}
.ws159{word-spacing:13.514547pt;}
.ws118{word-spacing:13.515088pt;}
.ws75{word-spacing:13.515628pt;}
.ws16f{word-spacing:13.563595pt;}
.ws18c{word-spacing:13.564136pt;}
.ws100{word-spacing:13.564677pt;}
.wsfe{word-spacing:13.602960pt;}
.ws8b{word-spacing:13.613725pt;}
.wsda{word-spacing:13.614266pt;}
.ws57{word-spacing:13.614806pt;}
.wsff{word-spacing:13.626283pt;}
.ws58{word-spacing:13.631867pt;}
.ws1b{word-spacing:13.663314pt;}
.ws9f{word-spacing:13.711330pt;}
.wse8{word-spacing:13.711871pt;}
.ws1c{word-spacing:13.760379pt;}
.ws31{word-spacing:13.762000pt;}
.wsc2{word-spacing:13.809476pt;}
.ws109{word-spacing:13.858525pt;}
.wsae{word-spacing:13.859065pt;}
.ws7c{word-spacing:13.909195pt;}
.ws15d{word-spacing:13.957702pt;}
.ws138{word-spacing:14.005719pt;}
.ws122{word-spacing:14.006800pt;}
.ws34{word-spacing:14.007341pt;}
.ws17e{word-spacing:14.056389pt;}
.ws44{word-spacing:14.104405pt;}
.wsf5{word-spacing:14.105978pt;}
.ws133{word-spacing:14.203583pt;}
.ws8{word-spacing:14.204124pt;}
.wsca{word-spacing:14.252632pt;}
.ws48{word-spacing:14.253172pt;}
.ws177{word-spacing:14.300648pt;}
.wse5{word-spacing:14.301729pt;}
.ws9e{word-spacing:14.302221pt;}
.ws76{word-spacing:14.350237pt;}
.ws47{word-spacing:14.400367pt;}
.ws69{word-spacing:14.448923pt;}
.wsb9{word-spacing:14.449415pt;}
.wsc4{word-spacing:14.449955pt;}
.ws3b{word-spacing:14.458453pt;}
.ws135{word-spacing:14.497431pt;}
.ws136{word-spacing:14.497972pt;}
.wsd{word-spacing:14.498512pt;}
.ws106{word-spacing:14.499053pt;}
.ws12c{word-spacing:14.546480pt;}
.ws131{word-spacing:14.595577pt;}
.ws132{word-spacing:14.596118pt;}
.ws30{word-spacing:14.596609pt;}
.ws103{word-spacing:14.597150pt;}
.wsb{word-spacing:14.646247pt;}
.ws126{word-spacing:14.694214pt;}
.ws125{word-spacing:14.704119pt;}
.wsc9{word-spacing:14.743312pt;}
.ws191{word-spacing:14.744344pt;}
.ws152{word-spacing:14.744885pt;}
.wsf8{word-spacing:14.791820pt;}
.ws63{word-spacing:14.792360pt;}
.ws41{word-spacing:14.792901pt;}
.ws14b{word-spacing:14.793442pt;}
.ws173{word-spacing:14.793933pt;}
.ws49{word-spacing:14.890506pt;}
.ws10f{word-spacing:14.890998pt;}
.ws169{word-spacing:14.941127pt;}
.ws16b{word-spacing:14.989684pt;}
.ws4a{word-spacing:14.990765pt;}
.ws174{word-spacing:15.038192pt;}
.ws186{word-spacing:15.087289pt;}
.ws2e{word-spacing:15.088322pt;}
.ws1d{word-spacing:15.136338pt;}
.ws79{word-spacing:15.185927pt;}
.wsb5{word-spacing:15.236056pt;}
.ws33{word-spacing:15.284073pt;}
.ws170{word-spacing:15.285154pt;}
.wsb6{word-spacing:15.322432pt;}
.ws52{word-spacing:15.334202pt;}
.ws119{word-spacing:15.382219pt;}
.wsab{word-spacing:15.432348pt;}
.ws55{word-spacing:15.432840pt;}
.wsaa{word-spacing:15.436107pt;}
.wsac{word-spacing:15.480856pt;}
.ws10a{word-spacing:15.481397pt;}
.ws7b{word-spacing:15.481937pt;}
.ws15e{word-spacing:15.529904pt;}
.ws121{word-spacing:15.580034pt;}
.ws81{word-spacing:15.596235pt;}
.ws36{word-spacing:15.677099pt;}
.ws6e{word-spacing:15.678180pt;}
.ws16c{word-spacing:15.726737pt;}
.ws155{word-spacing:15.727228pt;}
.ws9d{word-spacing:15.776326pt;}
.ws2b{word-spacing:15.776866pt;}
.wsc0{word-spacing:15.873390pt;}
.ws160{word-spacing:15.873931pt;}
.wsb4{word-spacing:15.874422pt;}
.wsb3{word-spacing:15.874963pt;}
.ws0{word-spacing:15.876750pt;}
.ws12f{word-spacing:15.924061pt;}
.ws129{word-spacing:15.971487pt;}
.ws127{word-spacing:15.972028pt;}
.ws9c{word-spacing:15.972568pt;}
.wse9{word-spacing:16.021125pt;}
.ws128{word-spacing:16.054943pt;}
.ws95{word-spacing:16.070174pt;}
.ws188{word-spacing:16.070714pt;}
.ws45{word-spacing:16.071255pt;}
.ws130{word-spacing:16.071746pt;}
.ws114{word-spacing:16.119222pt;}
.ws4f{word-spacing:16.119763pt;}
.wse3{word-spacing:16.168270pt;}
.ws1e{word-spacing:16.169892pt;}
.ws21{word-spacing:16.217909pt;}
.wse4{word-spacing:16.266957pt;}
.ws4b{word-spacing:16.267498pt;}
.ws13e{word-spacing:16.268038pt;}
.ws56{word-spacing:16.316546pt;}
.ws11a{word-spacing:16.317627pt;}
.ws123{word-spacing:16.365103pt;}
.ws124{word-spacing:16.365643pt;}
.ws89{word-spacing:16.414692pt;}
.ws28{word-spacing:16.512838pt;}
.wsc8{word-spacing:16.561886pt;}
.wsa5{word-spacing:16.562967pt;}
.ws13{word-spacing:16.610934pt;}
.ws23{word-spacing:16.660523pt;}
.wsea{word-spacing:16.661064pt;}
.wscc{word-spacing:16.661605pt;}
.ws87{word-spacing:16.758669pt;}
.ws60{word-spacing:16.759210pt;}
.wsa6{word-spacing:16.856815pt;}
.wsde{word-spacing:16.857356pt;}
.wsdb{word-spacing:16.906945pt;}
.ws53{word-spacing:16.954912pt;}
.wsbe{word-spacing:17.053058pt;}
.wsbf{word-spacing:17.053598pt;}
.ws96{word-spacing:17.054139pt;}
.wsee{word-spacing:17.102647pt;}
.ws3f{word-spacing:17.103187pt;}
.ws14{word-spacing:17.103728pt;}
.ws26{word-spacing:17.152776pt;}
.ws7a{word-spacing:17.200793pt;}
.ws93{word-spacing:17.201874pt;}
.wsa7{word-spacing:17.250382pt;}
.ws6f{word-spacing:17.250922pt;}
.ws8a{word-spacing:17.298398pt;}
.ws6b{word-spacing:17.347987pt;}
.ws6a{word-spacing:17.348528pt;}
.ws15c{word-spacing:17.349068pt;}
.ws14c{word-spacing:17.397576pt;}
.ws108{word-spacing:17.446624pt;}
.wsa1{word-spacing:17.496754pt;}
.ws20{word-spacing:17.594359pt;}
.wsa3{word-spacing:17.693046pt;}
.ws2c{word-spacing:17.742094pt;}
.ws62{word-spacing:17.790602pt;}
.ws84{word-spacing:17.839699pt;}
.ws2a{word-spacing:17.840240pt;}
.ws10b{word-spacing:17.840781pt;}
.ws105{word-spacing:17.888748pt;}
.ws176{word-spacing:17.889288pt;}
.ws107{word-spacing:17.889829pt;}
.ws17d{word-spacing:17.890370pt;}
.ws167{word-spacing:17.938337pt;}
.ws3a{word-spacing:18.035942pt;}
.ws1a{word-spacing:18.036483pt;}
.ws5c{word-spacing:18.086072pt;}
.ws94{word-spacing:18.134088pt;}
.ws19{word-spacing:18.135661pt;}
.ws13a{word-spacing:18.136201pt;}
.ws42{word-spacing:18.233266pt;}
.wse2{word-spacing:18.282855pt;}
.ws27{word-spacing:18.430049pt;}
.wsdc{word-spacing:18.479687pt;}
.ws85{word-spacing:18.528195pt;}
.ws139{word-spacing:18.577784pt;}
.wsa{word-spacing:18.625800pt;}
.ws17{word-spacing:18.675930pt;}
.ws4e{word-spacing:18.676471pt;}
.ws5{word-spacing:18.822584pt;}
.wsdf{word-spacing:18.963747pt;}
.wse0{word-spacing:18.969037pt;}
.ws13d{word-spacing:18.969778pt;}
.ws15a{word-spacing:18.971400pt;}
.ws16d{word-spacing:19.018826pt;}
.ws102{word-spacing:19.068400pt;}
.wsf9{word-spacing:19.068415pt;}
.wsdd{word-spacing:19.068956pt;}
.ws24{word-spacing:19.069496pt;}
.ws101{word-spacing:19.092949pt;}
.ws38{word-spacing:19.117513pt;}
.wsc6{word-spacing:19.118053pt;}
.wsc7{word-spacing:19.118545pt;}
.ws64{word-spacing:19.216691pt;}
.wsfd{word-spacing:19.314296pt;}
.ws149{word-spacing:19.362804pt;}
.ws12e{word-spacing:19.412933pt;}
.ws12d{word-spacing:19.413474pt;}
.wsa0{word-spacing:19.608685pt;}
.ws22{word-spacing:19.610257pt;}
.wsb0{word-spacing:19.658273pt;}
.ws189{word-spacing:19.706830pt;}
.ws148{word-spacing:19.707322pt;}
.ws2d{word-spacing:19.903614pt;}
.ws17b{word-spacing:19.904646pt;}
.ws154{word-spacing:20.248132pt;}
.ws77{word-spacing:20.296640pt;}
.wseb{word-spacing:20.345737pt;}
.ws110{word-spacing:20.542520pt;}
.ws111{word-spacing:20.591569pt;}
.wse1{word-spacing:20.641698pt;}
.ws86{word-spacing:20.936087pt;}
.wsb1{word-spacing:20.937013pt;}
.ws147{word-spacing:20.937709pt;}
.ws5b{word-spacing:21.033692pt;}
.ws71{word-spacing:21.230475pt;}
.ws73{word-spacing:21.231016pt;}
.ws6d{word-spacing:21.232097pt;}
.ws74{word-spacing:21.379291pt;}
.ws182{word-spacing:21.968069pt;}
.ws72{word-spacing:24.188907pt;}
.ws4{word-spacing:28.407349pt;}
.ws17a{word-spacing:33.369702pt;}
.ws11{word-spacing:41.725078pt;}
.ws92{word-spacing:49.098110pt;}
.ws161{word-spacing:164.056080pt;}
.ws162{word-spacing:176.344080pt;}
._0{margin-left:-5.866048pt;}
._34{margin-left:-4.726241pt;}
._1{margin-left:-3.826556pt;}
._5{margin-left:-2.537061pt;}
._2{margin-left:-1.147170pt;}
._25{width:1.390854pt;}
._29{width:2.649015pt;}
._24{width:3.988577pt;}
._26{width:8.943514pt;}
._33{width:9.860743pt;}
._b{width:11.033120pt;}
._32{width:11.944065pt;}
._16{width:13.434131pt;}
._6{width:14.418097pt;}
._9{width:15.448043pt;}
._13{width:16.556220pt;}
._a{width:17.487329pt;}
._e{width:19.075492pt;}
._3{width:20.267498pt;}
._4{width:21.206422pt;}
._8{width:23.034725pt;}
._10{width:25.210127pt;}
._12{width:27.014818pt;}
._f{width:28.620648pt;}
._c{width:29.832862pt;}
._d{width:32.368680pt;}
._7{width:34.403306pt;}
._27{width:35.876379pt;}
._15{width:37.531320pt;}
._11{width:38.466714pt;}
._17{width:39.373901pt;}
._28{width:40.299185pt;}
._14{width:41.774224pt;}
._18{width:49.147256pt;}
._2a{width:63.769947pt;}
._2b{width:91.269958pt;}
._19{width:134.784933pt;}
._1d{width:160.685333pt;}
._20{width:179.117333pt;}
._1b{width:184.391490pt;}
._1e{width:187.143703pt;}
._2f{width:196.611893pt;}
._2c{width:202.067893pt;}
._31{width:207.522453pt;}
._1f{width:210.480133pt;}
._2e{width:212.978453pt;}
._22{width:231.020827pt;}
._21{width:236.427304pt;}
._30{width:242.345147pt;}
._2d{width:247.799707pt;}
._1c{width:260.730799pt;}
._1a{width:278.480844pt;}
._23{width:357.693333pt;}
.fs5{font-size:31.882667pt;}
.fsa{font-size:34.405333pt;}
.fs7{font-size:37.360000pt;}
.fs9{font-size:38.256000pt;}
.fsb{font-size:42.506667pt;}
.fs2{font-size:42.666667pt;}
.fsf{font-size:45.781333pt;}
.fsd{font-size:45.893333pt;}
.fse{font-size:45.898667pt;}
.fs8{font-size:45.909333pt;}
.fs3{font-size:47.818667pt;}
.fs4{font-size:47.872000pt;}
.fsc{font-size:48.618667pt;}
.fs1{font-size:49.146667pt;}
.fs6{font-size:53.792000pt;}
.fs0{font-size:63.760000pt;}
.y0{bottom:0.000000pt;}
.y18c{bottom:0.666667pt;}
.y119{bottom:0.800000pt;}
.y169{bottom:1.016000pt;}
.y167{bottom:1.017333pt;}
.y1c8{bottom:1.148000pt;}
.y1cc{bottom:1.149333pt;}
.yaa{bottom:1.201333pt;}
.y51{bottom:2.245333pt;}
.yf0{bottom:2.358667pt;}
.yed{bottom:2.360000pt;}
.y11c{bottom:2.658667pt;}
.y11e{bottom:2.660000pt;}
.y18e{bottom:2.898667pt;}
.y116{bottom:3.032000pt;}
.ye7{bottom:3.157333pt;}
.ye9{bottom:3.158667pt;}
.y1ca{bottom:3.373333pt;}
.y1ce{bottom:3.374667pt;}
.y16b{bottom:3.380000pt;}
.y17d{bottom:3.381333pt;}
.y192{bottom:3.524000pt;}
.y190{bottom:3.525333pt;}
.y1bc{bottom:3.526667pt;}
.ya7{bottom:3.528000pt;}
.y1d2{bottom:4.009333pt;}
.y1c4{bottom:4.010667pt;}
.y16f{bottom:4.054667pt;}
.y165{bottom:4.056000pt;}
.y50{bottom:15.045333pt;}
.y52{bottom:31.786751pt;}
.y35{bottom:94.488000pt;}
.y1b6{bottom:96.642667pt;}
.yb0{bottom:106.841333pt;}
.y14c{bottom:107.108000pt;}
.y34{bottom:108.864000pt;}
.yaf{bottom:121.453333pt;}
.y33{bottom:123.240000pt;}
.y14b{bottom:123.477333pt;}
.y1b5{bottom:124.372000pt;}
.yae{bottom:136.065333pt;}
.y14a{bottom:136.449333pt;}
.y1b4{bottom:136.658667pt;}
.y8a{bottom:136.689333pt;}
.y32{bottom:137.616000pt;}
.y1d6{bottom:138.509333pt;}
.y1b3{bottom:148.946667pt;}
.y31{bottom:151.992000pt;}
.y149{bottom:156.685333pt;}
.y1b2{bottom:161.233333pt;}
.y202{bottom:162.197333pt;}
.y89{bottom:163.628000pt;}
.y114{bottom:165.032000pt;}
.y30{bottom:166.368000pt;}
.y18a{bottom:168.077333pt;}
.y148{bottom:171.061333pt;}
.y1b1{bottom:173.521333pt;}
.y1d5{bottom:175.870667pt;}
.y201{bottom:176.573333pt;}
.y88{bottom:178.004000pt;}
.y113{bottom:179.408000pt;}
.y2f{bottom:180.744000pt;}
.y189{bottom:182.453333pt;}
.y147{bottom:185.437333pt;}
.y1b0{bottom:185.808000pt;}
.y1d4{bottom:190.482667pt;}
.y200{bottom:190.949333pt;}
.y87{bottom:192.380000pt;}
.y112{bottom:193.784000pt;}
.y2e{bottom:195.120000pt;}
.y188{bottom:196.829333pt;}
.y1af{bottom:198.626667pt;}
.y146{bottom:199.813333pt;}
.y4e{bottom:204.833333pt;}
.y1d3{bottom:205.094667pt;}
.y1ff{bottom:205.325333pt;}
.y86{bottom:206.756000pt;}
.y111{bottom:208.160000pt;}
.y2d{bottom:209.496000pt;}
.y187{bottom:211.205333pt;}
.y145{bottom:214.189333pt;}
.y4d{bottom:219.209333pt;}
.y85{bottom:221.132000pt;}
.y1ae{bottom:222.050667pt;}
.y110{bottom:222.536000pt;}
.y2c{bottom:223.872000pt;}
.ye5{bottom:223.873333pt;}
.y186{bottom:225.581333pt;}
.y144{bottom:228.565333pt;}
.y1fe{bottom:229.908000pt;}
.y4c{bottom:233.585333pt;}
.y84{bottom:235.508000pt;}
.y1ad{bottom:236.426667pt;}
.y10f{bottom:236.912000pt;}
.y2b{bottom:238.248000pt;}
.ye4{bottom:238.249333pt;}
.y143{bottom:242.941333pt;}
.y1fd{bottom:244.284000pt;}
.y174{bottom:244.361333pt;}
.y4b{bottom:247.961333pt;}
.y1ac{bottom:250.802667pt;}
.y10e{bottom:251.288000pt;}
.y2a{bottom:252.624000pt;}
.ye3{bottom:252.625333pt;}
.y1fc{bottom:258.660000pt;}
.y1d1{bottom:258.800000pt;}
.y173{bottom:258.973333pt;}
.y4a{bottom:262.337333pt;}
.y185{bottom:262.765333pt;}
.y83{bottom:264.877333pt;}
.y1ab{bottom:265.178667pt;}
.y10d{bottom:265.664000pt;}
.y29{bottom:267.000000pt;}
.y15f{bottom:267.001333pt;}
.y1fb{bottom:273.036000pt;}
.y172{bottom:273.585333pt;}
.y142{bottom:274.736000pt;}
.y49{bottom:276.713333pt;}
.y184{bottom:277.377333pt;}
.y1aa{bottom:279.554667pt;}
.y10c{bottom:280.040000pt;}
.y28{bottom:281.376000pt;}
.y15e{bottom:281.377333pt;}
.ye2{bottom:281.666667pt;}
.y1fa{bottom:287.412000pt;}
.y48{bottom:291.089333pt;}
.y183{bottom:291.989333pt;}
.y1a9{bottom:293.930667pt;}
.y10b{bottom:294.416000pt;}
.y15d{bottom:295.753333pt;}
.ye1{bottom:296.042667pt;}
.y82{bottom:301.596000pt;}
.y141{bottom:303.886667pt;}
.y47{bottom:305.465333pt;}
.y1a8{bottom:308.308000pt;}
.y27{bottom:308.729333pt;}
.y15c{bottom:310.129333pt;}
.ye0{bottom:310.418667pt;}
.y1f9{bottom:311.993333pt;}
.ya8{bottom:314.486667pt;}
.ya6{bottom:315.368000pt;}
.y81{bottom:315.972000pt;}
.yab{bottom:316.166667pt;}
.yac{bottom:317.225333pt;}
.y140{bottom:318.262667pt;}
.y46{bottom:319.841333pt;}
.y10a{bottom:321.832000pt;}
.y1a7{bottom:322.684000pt;}
.y26{bottom:323.106667pt;}
.y15b{bottom:324.505333pt;}
.ydf{bottom:324.794667pt;}
.y1f8{bottom:326.369333pt;}
.ya9{bottom:328.413333pt;}
.yad{bottom:328.670667pt;}
.y80{bottom:330.348000pt;}
.y13f{bottom:332.638667pt;}
.y1c6{bottom:332.836000pt;}
.y45{bottom:334.217333pt;}
.y109{bottom:336.208000pt;}
.y1a6{bottom:337.060000pt;}
.y25{bottom:337.482667pt;}
.y15a{bottom:338.881333pt;}
.yde{bottom:339.170667pt;}
.y1f7{bottom:340.745333pt;}
.y7f{bottom:344.724000pt;}
.y13e{bottom:347.014667pt;}
.y44{bottom:348.593333pt;}
.y108{bottom:350.584000pt;}
.y1a5{bottom:351.436000pt;}
.y24{bottom:351.858667pt;}
.y159{bottom:353.257333pt;}
.y170{bottom:353.324000pt;}
.ydd{bottom:353.546667pt;}
.ya5{bottom:353.921333pt;}
.y7e{bottom:359.100000pt;}
.y43{bottom:362.970667pt;}
.y107{bottom:364.960000pt;}
.y1f6{bottom:365.328000pt;}
.y23{bottom:366.234667pt;}
.y158{bottom:367.633333pt;}
.ydc{bottom:367.922667pt;}
.ya4{bottom:368.297333pt;}
.y181{bottom:370.156000pt;}
.y7d{bottom:373.476000pt;}
.y13d{bottom:378.144000pt;}
.y106{bottom:379.337333pt;}
.y1a4{bottom:379.673333pt;}
.y1f5{bottom:379.704000pt;}
.y22{bottom:380.610667pt;}
.y157{bottom:382.009333pt;}
.ydb{bottom:382.298667pt;}
.ya3{bottom:382.673333pt;}
.y7c{bottom:387.852000pt;}
.y105{bottom:393.713333pt;}
.y1a3{bottom:394.049333pt;}
.y1f4{bottom:394.080000pt;}
.y21{bottom:394.986667pt;}
.yda{bottom:396.676000pt;}
.ya2{bottom:397.049333pt;}
.y42{bottom:401.434667pt;}
.y7b{bottom:402.228000pt;}
.y1c5{bottom:405.198667pt;}
.y104{bottom:408.089333pt;}
.y1a2{bottom:408.425333pt;}
.y1f3{bottom:408.456000pt;}
.y20{bottom:409.362667pt;}
.yd9{bottom:411.052000pt;}
.ya1{bottom:411.425333pt;}
.y156{bottom:411.509333pt;}
.y41{bottom:415.812000pt;}
.y7a{bottom:416.604000pt;}
.y13c{bottom:417.001333pt;}
.y103{bottom:422.465333pt;}
.y1a1{bottom:422.801333pt;}
.y1f{bottom:423.738667pt;}
.yd8{bottom:425.428000pt;}
.ya0{bottom:425.801333pt;}
.y155{bottom:425.885333pt;}
.y16e{bottom:429.026667pt;}
.y40{bottom:430.188000pt;}
.y13b{bottom:431.377333pt;}
.y1f2{bottom:433.037333pt;}
.y102{bottom:436.841333pt;}
.y1a0{bottom:437.177333pt;}
.y1e{bottom:438.114667pt;}
.yd7{bottom:439.804000pt;}
.y154{bottom:440.261333pt;}
.y79{bottom:442.886667pt;}
.y3f{bottom:444.564000pt;}
.y13a{bottom:445.753333pt;}
.y1f1{bottom:447.413333pt;}
.y180{bottom:447.481333pt;}
.y101{bottom:451.217333pt;}
.y19f{bottom:451.553333pt;}
.y1d{bottom:452.490667pt;}
.y9f{bottom:453.470667pt;}
.yd6{bottom:454.180000pt;}
.y153{bottom:454.637333pt;}
.y78{bottom:457.262667pt;}
.y3e{bottom:458.940000pt;}
.y139{bottom:460.129333pt;}
.y1f0{bottom:461.789333pt;}
.y100{bottom:465.593333pt;}
.y1c{bottom:466.866667pt;}
.yd5{bottom:468.556000pt;}
.y152{bottom:469.013333pt;}
.y77{bottom:471.638667pt;}
.y3d{bottom:473.316000pt;}
.y138{bottom:474.505333pt;}
.y1c3{bottom:477.590667pt;}
.y19e{bottom:479.790667pt;}
.yff{bottom:479.969333pt;}
.y9e{bottom:480.210667pt;}
.y171{bottom:480.638667pt;}
.y1b{bottom:481.242667pt;}
.yd4{bottom:482.932000pt;}
.y151{bottom:483.389333pt;}
.y76{bottom:486.014667pt;}
.y1ef{bottom:486.370667pt;}
.y3c{bottom:487.692000pt;}
.y137{bottom:488.882667pt;}
.y19d{bottom:494.166667pt;}
.yfe{bottom:494.345333pt;}
.y9d{bottom:494.586667pt;}
.y1a{bottom:495.618667pt;}
.yd3{bottom:497.308000pt;}
.y150{bottom:497.765333pt;}
.y182{bottom:499.366667pt;}
.y75{bottom:500.390667pt;}
.y1ee{bottom:500.746667pt;}
.y3b{bottom:502.068000pt;}
.y136{bottom:503.258667pt;}
.y19c{bottom:508.542667pt;}
.yfd{bottom:508.721333pt;}
.y9c{bottom:508.962667pt;}
.y19{bottom:509.994667pt;}
.yd2{bottom:511.684000pt;}
.y14f{bottom:512.141333pt;}
.y74{bottom:514.766667pt;}
.y1ed{bottom:515.122667pt;}
.y3a{bottom:516.444000pt;}
.y135{bottom:517.634667pt;}
.y19b{bottom:522.918667pt;}
.yfc{bottom:523.097333pt;}
.y9b{bottom:523.338667pt;}
.y18{bottom:524.370667pt;}
.y1cd{bottom:524.964000pt;}
.y1c9{bottom:525.969333pt;}
.yd1{bottom:526.060000pt;}
.y1cb{bottom:526.266667pt;}
.y14e{bottom:526.517333pt;}
.y1c7{bottom:527.026667pt;}
.y73{bottom:529.142667pt;}
.y39{bottom:530.820000pt;}
.y134{bottom:532.010667pt;}
.y19a{bottom:537.294667pt;}
.yfb{bottom:537.473333pt;}
.y9a{bottom:537.714667pt;}
.y17{bottom:538.746667pt;}
.y1ec{bottom:539.705333pt;}
.y1d0{bottom:540.064000pt;}
.yd0{bottom:540.436000pt;}
.y1cf{bottom:540.520000pt;}
.y72{bottom:543.518667pt;}
.y38{bottom:545.196000pt;}
.y133{bottom:546.386667pt;}
.yfa{bottom:551.849333pt;}
.y99{bottom:552.090667pt;}
.y16{bottom:553.122667pt;}
.y1eb{bottom:554.081333pt;}
.ycf{bottom:554.812000pt;}
.y71{bottom:557.894667pt;}
.y14d{bottom:557.990667pt;}
.y132{bottom:560.762667pt;}
.yf9{bottom:566.225333pt;}
.y98{bottom:566.466667pt;}
.y15{bottom:567.498667pt;}
.y1ea{bottom:568.457333pt;}
.y70{bottom:572.270667pt;}
.y131{bottom:575.138667pt;}
.y1c2{bottom:575.857333pt;}
.y199{bottom:575.892000pt;}
.yf8{bottom:580.601333pt;}
.y97{bottom:580.842667pt;}
.y14{bottom:581.874667pt;}
.y1e9{bottom:582.833333pt;}
.y37{bottom:583.661333pt;}
.yce{bottom:583.853333pt;}
.y6f{bottom:586.646667pt;}
.y130{bottom:589.514667pt;}
.y1c1{bottom:590.469333pt;}
.y198{bottom:590.504000pt;}
.y96{bottom:595.220000pt;}
.y36{bottom:598.037333pt;}
.ycd{bottom:598.229333pt;}
.y6e{bottom:601.022667pt;}
.y12f{bottom:603.890667pt;}
.y1c0{bottom:605.081333pt;}
.y197{bottom:605.116000pt;}
.y95{bottom:609.596000pt;}
.y1e8{bottom:612.018667pt;}
.y13{bottom:612.413333pt;}
.ycc{bottom:612.606667pt;}
.yf7{bottom:613.788000pt;}
.y6d{bottom:615.398667pt;}
.y12e{bottom:618.266667pt;}
.y1bf{bottom:619.692000pt;}
.y196{bottom:619.728000pt;}
.y94{bottom:623.972000pt;}
.y215{bottom:625.414667pt;}
.ycb{bottom:626.981333pt;}
.y6c{bottom:629.774667pt;}
.y12d{bottom:632.642667pt;}
.y93{bottom:638.348000pt;}
.yf6{bottom:639.705333pt;}
.y214{bottom:639.790667pt;}
.yca{bottom:641.358667pt;}
.y168{bottom:644.077333pt;}
.y6b{bottom:644.150667pt;}
.y12c{bottom:647.018667pt;}
.y1e7{bottom:648.505333pt;}
.y92{bottom:652.724000pt;}
.y213{bottom:654.166667pt;}
.yc9{bottom:655.734667pt;}
.y12{bottom:655.781333pt;}
.y12b{bottom:661.394667pt;}
.y1e6{bottom:662.881333pt;}
.y17b{bottom:663.492000pt;}
.yf5{bottom:665.624000pt;}
.y91{bottom:667.100000pt;}
.y212{bottom:668.542667pt;}
.yc8{bottom:670.110667pt;}
.y11{bottom:670.157333pt;}
.y6a{bottom:670.433333pt;}
.y12a{bottom:675.770667pt;}
.y194{bottom:679.620000pt;}
.y1bd{bottom:679.826667pt;}
.y90{bottom:681.476000pt;}
.yc7{bottom:684.486667pt;}
.y10{bottom:684.533333pt;}
.y69{bottom:684.809333pt;}
.y129{bottom:690.146667pt;}
.y1e5{bottom:692.068000pt;}
.y211{bottom:693.545333pt;}
.y8f{bottom:695.852000pt;}
.yc6{bottom:698.862667pt;}
.yf{bottom:698.909333pt;}
.y68{bottom:699.185333pt;}
.yf4{bottom:703.673333pt;}
.y210{bottom:707.922667pt;}
.y8e{bottom:710.228000pt;}
.yc5{bottom:713.238667pt;}
.ye{bottom:713.285333pt;}
.y67{bottom:713.561333pt;}
.yf3{bottom:718.285333pt;}
.y164{bottom:722.116000pt;}
.y20f{bottom:722.298667pt;}
.y8d{bottom:724.604000pt;}
.yc4{bottom:727.614667pt;}
.yd{bottom:727.661333pt;}
.y128{bottom:727.740000pt;}
.y66{bottom:727.937333pt;}
.y1e4{bottom:728.554667pt;}
.yf2{bottom:732.897333pt;}
.y179{bottom:740.369333pt;}
.yc3{bottom:741.990667pt;}
.yc{bottom:742.037333pt;}
.y65{bottom:742.313333pt;}
.y127{bottom:742.350667pt;}
.y1e3{bottom:742.930667pt;}
.y20e{bottom:747.301333pt;}
.yf1{bottom:747.509333pt;}
.yc2{bottom:756.366667pt;}
.yb{bottom:756.413333pt;}
.y64{bottom:756.689333pt;}
.y1e2{bottom:757.306667pt;}
.y8c{bottom:761.389333pt;}
.y20d{bottom:761.677333pt;}
.yc1{bottom:770.742667pt;}
.ya{bottom:770.789333pt;}
.y63{bottom:771.065333pt;}
.y1e1{bottom:771.682667pt;}
.y166{bottom:774.000000pt;}
.y8b{bottom:776.001333pt;}
.y20c{bottom:776.053333pt;}
.y1bb{bottom:778.978667pt;}
.y193{bottom:779.001333pt;}
.yc0{bottom:785.118667pt;}
.y9{bottom:785.165333pt;}
.y62{bottom:785.441333pt;}
.y1e0{bottom:786.058667pt;}
.y17a{bottom:792.045333pt;}
.y121{bottom:793.246667pt;}
.ybf{bottom:799.494667pt;}
.y8{bottom:799.541333pt;}
.y61{bottom:799.817333pt;}
.y1df{bottom:800.434667pt;}
.y20b{bottom:801.056000pt;}
.ybe{bottom:813.870667pt;}
.y60{bottom:814.193333pt;}
.y1de{bottom:814.812000pt;}
.y20a{bottom:815.432000pt;}
.ybd{bottom:828.246667pt;}
.y7{bottom:828.293333pt;}
.y5f{bottom:828.569333pt;}
.y1dd{bottom:829.188000pt;}
.y209{bottom:840.434667pt;}
.y120{bottom:842.590667pt;}
.ybc{bottom:842.622667pt;}
.y5e{bottom:842.945333pt;}
.y1dc{bottom:843.564000pt;}
.y126{bottom:845.161333pt;}
.y124{bottom:855.390667pt;}
.ybb{bottom:856.998667pt;}
.y5d{bottom:857.321333pt;}
.y1db{bottom:857.940000pt;}
.y208{bottom:865.437333pt;}
.yeb{bottom:866.498667pt;}
.y16c{bottom:869.780000pt;}
.y16d{bottom:871.120000pt;}
.yba{bottom:871.374667pt;}
.y5c{bottom:871.697333pt;}
.y1da{bottom:872.316000pt;}
.y117{bottom:873.348000pt;}
.y6{bottom:873.633333pt;}
.y1ba{bottom:874.956000pt;}
.y191{bottom:874.969333pt;}
.y207{bottom:879.813333pt;}
.y16a{bottom:883.948000pt;}
.yef{bottom:884.164000pt;}
.yb9{bottom:885.750667pt;}
.y5b{bottom:886.073333pt;}
.y1d9{bottom:886.692000pt;}
.y17e{bottom:887.202667pt;}
.y5{bottom:888.009333pt;}
.y17f{bottom:888.366667pt;}
.yea{bottom:892.540000pt;}
.y206{bottom:894.189333pt;}
.y125{bottom:896.668000pt;}
.y5a{bottom:900.449333pt;}
.y1d8{bottom:901.068000pt;}
.y17c{bottom:901.210667pt;}
.y123{bottom:906.590667pt;}
.yee{bottom:910.204000pt;}
.y59{bottom:914.825333pt;}
.y1d7{bottom:915.444000pt;}
.y163{bottom:915.510667pt;}
.y118{bottom:915.858667pt;}
.yb8{bottom:916.914667pt;}
.ye8{bottom:918.580000pt;}
.y205{bottom:919.193333pt;}
.y11f{bottom:921.246667pt;}
.y58{bottom:929.202667pt;}
.y178{bottom:929.820000pt;}
.y4{bottom:931.005333pt;}
.y204{bottom:933.569333pt;}
.yec{bottom:936.245333pt;}
.y11b{bottom:941.748000pt;}
.y57{bottom:943.578667pt;}
.y177{bottom:944.196000pt;}
.ye6{bottom:944.621333pt;}
.yb7{bottom:944.644000pt;}
.y3{bottom:945.381333pt;}
.y203{bottom:947.945333pt;}
.y11a{bottom:951.293333pt;}
.yb6{bottom:956.932000pt;}
.y56{bottom:957.954667pt;}
.y176{bottom:958.572000pt;}
.y162{bottom:958.960000pt;}
.yb5{bottom:969.218667pt;}
.y11d{bottom:970.590667pt;}
.y1b9{bottom:970.933333pt;}
.y18f{bottom:970.936000pt;}
.y55{bottom:972.330667pt;}
.y175{bottom:972.948000pt;}
.y2{bottom:974.133333pt;}
.yb4{bottom:981.506667pt;}
.y54{bottom:986.706667pt;}
.y161{bottom:987.324000pt;}
.yb3{bottom:993.793333pt;}
.y160{bottom:1001.700000pt;}
.y115{bottom:1003.653333pt;}
.yb2{bottom:1006.080000pt;}
.y53{bottom:1016.076000pt;}
.y1{bottom:1016.156000pt;}
.y195{bottom:1016.925333pt;}
.y1be{bottom:1016.926667pt;}
.y18d{bottom:1016.940000pt;}
.y1b8{bottom:1016.941333pt;}
.y122{bottom:1017.928000pt;}
.y18b{bottom:1018.726667pt;}
.y1b7{bottom:1018.728000pt;}
.yb1{bottom:1018.898667pt;}
.y4f{bottom:1064.919808pt;}
.h1e{height:8.241200pt;}
.h1b{height:8.241733pt;}
.h2f{height:9.300533pt;}
.h34{height:9.301067pt;}
.h15{height:9.387467pt;}
.h17{height:9.388000pt;}
.h1a{height:9.442133pt;}
.h1d{height:10.101600pt;}
.hd{height:10.114533pt;}
.ha{height:10.115067pt;}
.h3c{height:10.245867pt;}
.h29{height:10.474000pt;}
.h2d{height:10.474533pt;}
.hc{height:10.713067pt;}
.h31{height:11.091200pt;}
.h36{height:11.092133pt;}
.h18{height:11.674533pt;}
.h2c{height:11.872933pt;}
.h28{height:11.873467pt;}
.hb{height:12.091200pt;}
.h3d{height:12.168267pt;}
.h3e{height:12.471867pt;}
.h3f{height:12.472400pt;}
.h33{height:12.786000pt;}
.h32{height:12.786400pt;}
.h37{height:12.787467pt;}
.h38{height:12.788000pt;}
.h27{height:12.838000pt;}
.h14{height:13.039067pt;}
.h12{height:13.039600pt;}
.h8{height:13.041200pt;}
.h3b{height:13.743733pt;}
.h39{height:13.744267pt;}
.h2a{height:14.188000pt;}
.h23{height:14.188533pt;}
.h26{height:21.208400pt;}
.h2e{height:21.208800pt;}
.h20{height:21.935275pt;}
.h5{height:25.813467pt;}
.h1c{height:26.932224pt;}
.h16{height:27.982640pt;}
.h21{height:29.499627pt;}
.h19{height:32.320171pt;}
.h7{height:32.899243pt;}
.h40{height:33.567173pt;}
.h3{height:33.812907pt;}
.he{height:33.818240pt;}
.h4{height:33.960347pt;}
.hf{height:34.058240pt;}
.h3a{height:34.336000pt;}
.h30{height:34.374107pt;}
.h35{height:34.378101pt;}
.h11{height:35.864000pt;}
.h9{height:35.904000pt;}
.h24{height:36.464000pt;}
.h13{height:40.290208pt;}
.h10{height:41.516640pt;}
.h1f{height:43.985536pt;}
.h2{height:44.058160pt;}
.h6{height:44.354167pt;}
.h25{height:56.251067pt;}
.h2b{height:56.251600pt;}
.h22{height:76.082667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w1e{width:10.474000pt;}
.w23{width:10.474533pt;}
.w2a{width:10.657867pt;}
.w2e{width:10.658400pt;}
.w2f{width:10.658800pt;}
.w4{width:11.863987pt;}
.w24{width:12.463600pt;}
.w1d{width:12.464000pt;}
.w31{width:12.472400pt;}
.w1c{width:12.612000pt;}
.w22{width:12.612533pt;}
.w17{width:17.984400pt;}
.w28{width:18.183867pt;}
.w2c{width:18.185467pt;}
.w32{width:20.770800pt;}
.w16{width:21.106267pt;}
.w2b{width:25.843200pt;}
.w30{width:25.845867pt;}
.w13{width:26.880667pt;}
.w12{width:28.753600pt;}
.w1b{width:30.786933pt;}
.w15{width:33.336400pt;}
.w7{width:35.646933pt;}
.w11{width:37.810400pt;}
.w14{width:48.343733pt;}
.w29{width:49.155733pt;}
.w2d{width:49.160400pt;}
.w33{width:54.471867pt;}
.w9{width:54.995333pt;}
.w8{width:58.420267pt;}
.wc{width:61.618267pt;}
.w6{width:63.639600pt;}
.wb{width:64.077067pt;}
.w1a{width:65.068800pt;}
.w5{width:66.298933pt;}
.w10{width:66.611467pt;}
.wa{width:66.731200pt;}
.w19{width:68.190133pt;}
.wd{width:68.909867pt;}
.wf{width:73.334400pt;}
.we{width:77.618267pt;}
.w21{width:87.459867pt;}
.w27{width:87.460400pt;}
.w35{width:88.205200pt;}
.w34{width:90.748400pt;}
.w20{width:90.832267pt;}
.w26{width:90.832800pt;}
.w25{width:91.360933pt;}
.w1f{width:94.005733pt;}
.w18{width:107.134400pt;}
.w2{width:530.641333pt;}
.w3{width:553.808000pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:1.200000pt;}
.x2e{left:9.083333pt;}
.xd{left:11.865333pt;}
.xb{left:44.209333pt;}
.x5{left:75.590667pt;}
.x2d{left:77.479733pt;}
.x3b{left:80.813200pt;}
.x28{left:83.222667pt;}
.x3{left:84.880000pt;}
.x1b{left:86.020000pt;}
.x2c{left:90.228000pt;}
.x3d{left:94.932000pt;}
.x32{left:100.282800pt;}
.x3e{left:108.084000pt;}
.x1c{left:109.028000pt;}
.x30{left:112.280667pt;}
.x3a{left:114.188000pt;}
.x9{left:117.365333pt;}
.xa{left:119.949361pt;}
.x8{left:131.532695pt;}
.x4f{left:135.314667pt;}
.x3c{left:151.198533pt;}
.x2a{left:164.237600pt;}
.x22{left:175.809333pt;}
.x4d{left:179.762667pt;}
.x1{left:182.950667pt;}
.xe{left:184.154667pt;}
.xf{left:186.249333pt;}
.x6{left:187.380000pt;}
.x2f{left:192.242667pt;}
.x4e{left:202.008000pt;}
.x50{left:204.612000pt;}
.x39{left:207.916000pt;}
.x29{left:213.501600pt;}
.x26{left:220.212000pt;}
.x20{left:248.542667pt;}
.x2{left:264.265333pt;}
.x51{left:271.470667pt;}
.x31{left:276.405333pt;}
.x21{left:292.104000pt;}
.x1d{left:333.520000pt;}
.x4{left:351.332000pt;}
.x23{left:392.126667pt;}
.x24{left:399.785333pt;}
.x7{left:408.189333pt;}
.x1f{left:409.186667pt;}
.x36{left:410.076000pt;}
.x18{left:411.870667pt;}
.x43{left:413.412000pt;}
.x10{left:415.356000pt;}
.x37{left:416.509333pt;}
.x42{left:417.830667pt;}
.x19{left:420.645333pt;}
.x4a{left:423.192000pt;}
.x38{left:432.881333pt;}
.x1a{left:440.162667pt;}
.x34{left:444.353333pt;}
.x41{left:446.790667pt;}
.x48{left:450.238667pt;}
.x14{left:469.348000pt;}
.x44{left:483.797333pt;}
.x4c{left:489.477333pt;}
.x11{left:490.397333pt;}
.x13{left:492.602667pt;}
.x25{left:496.104000pt;}
.x45{left:522.522667pt;}
.x33{left:525.404000pt;}
.x4b{left:530.674667pt;}
.x40{left:540.528000pt;}
.x27{left:560.104000pt;}
.x15{left:571.977333pt;}
.x47{left:580.069333pt;}
.x49{left:597.460000pt;}
.x35{left:608.517333pt;}
.x17{left:623.278667pt;}
.x1e{left:640.466667pt;}
.x2b{left:648.252000pt;}
.x16{left:651.406667pt;}
.x3f{left:666.336000pt;}
.x46{left:670.384000pt;}
.xc{left:706.251872pt;}
}




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