
    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_3da23f2ac8f7347f4f67506c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_f8c7337f10cd528dba83a2cd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_052069f6c6831c67d0af2a1e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.962000;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_efd27e7db6f2091083962977.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_37e3200289a72bb6aab358b6.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_91889c3405d9314e8a966e7a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666000;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_a0f060992c0fe4e06f0d1cb5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_cdff3ebcaf66211b69665f94.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.962000;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_00927e64f5f19aa8b1c8c7fa.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.988000;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_8b929c4e6cd2a7e0b8e90765.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.089000;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_5221440a38daba1cf43d1cdf.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.951000;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_8c9c03da0b5287dd0451de52.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.962000;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_73e38b0c4e9d6154455ef948.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.736816;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_7a63feebea9cc3ed17277e79.woff2')format("woff");}.fff{font-family:fff;line-height:0.681000;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_f8cd165fa0e97c131eeee017.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_f8cd165fa0e97c131eeee017.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_c3d7e606217827f50e83b360.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.712000;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_fad5e772b151b9817ad9301c.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.850000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-40.051800px;}
.v6{vertical-align:-12.870000px;}
.v8{vertical-align:-2.137800px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.400000px;}
.v1{vertical-align:6.000000px;}
.v2{vertical-align:12.000000px;}
.v7{vertical-align:14.850600px;}
.v5{vertical-align:17.820000px;}
.ls28{letter-spacing:-6.750000px;}
.ls31{letter-spacing:-2.244000px;}
.ls55{letter-spacing:-1.950000px;}
.ls30{letter-spacing:-1.224000px;}
.ls47{letter-spacing:-1.125000px;}
.ls5c{letter-spacing:-0.900000px;}
.ls66{letter-spacing:-0.899904px;}
.ls36{letter-spacing:-0.840000px;}
.ls43{letter-spacing:-0.607200px;}
.ls2f{letter-spacing:-0.540000px;}
.ls2a{letter-spacing:-0.486000px;}
.ls6d{letter-spacing:-0.450000px;}
.ls6e{letter-spacing:-0.441600px;}
.ls6f{letter-spacing:-0.386400px;}
.ls4c{letter-spacing:-0.384000px;}
.ls68{letter-spacing:-0.336000px;}
.ls35{letter-spacing:-0.330000px;}
.ls53{letter-spacing:-0.313200px;}
.ls62{letter-spacing:-0.294000px;}
.ls70{letter-spacing:-0.288000px;}
.ls34{letter-spacing:-0.276000px;}
.ls2b{letter-spacing:-0.270000px;}
.ls63{letter-spacing:-0.252000px;}
.ls48{letter-spacing:-0.240000px;}
.ls72{letter-spacing:-0.225000px;}
.ls46{letter-spacing:-0.220800px;}
.ls60{letter-spacing:-0.210000px;}
.ls49{letter-spacing:-0.192000px;}
.ls42{letter-spacing:-0.165600px;}
.ls2e{letter-spacing:-0.162000px;}
.ls71{letter-spacing:-0.144000px;}
.ls6c{letter-spacing:-0.135000px;}
.ls65{letter-spacing:-0.117000px;}
.ls45{letter-spacing:-0.110400px;}
.ls2c{letter-spacing:-0.108000px;}
.ls4b{letter-spacing:-0.096000px;}
.ls54{letter-spacing:-0.090000px;}
.ls44{letter-spacing:-0.055200px;}
.ls2d{letter-spacing:-0.054000px;}
.ls4a{letter-spacing:-0.048000px;}
.ls61{letter-spacing:-0.045000px;}
.ls56{letter-spacing:-0.039000px;}
.ls0{letter-spacing:0.000000px;}
.ls64{letter-spacing:0.022620px;}
.ls5f{letter-spacing:0.039000px;}
.ls40{letter-spacing:0.048000px;}
.ls39{letter-spacing:0.055200px;}
.ls69{letter-spacing:0.090000px;}
.lsa{letter-spacing:0.108000px;}
.ls38{letter-spacing:0.110400px;}
.ls6b{letter-spacing:0.144000px;}
.ls37{letter-spacing:0.165600px;}
.ls3f{letter-spacing:0.192000px;}
.ls67{letter-spacing:0.193200px;}
.ls52{letter-spacing:0.195000px;}
.ls3{letter-spacing:0.216000px;}
.ls25{letter-spacing:0.220800px;}
.ls4d{letter-spacing:0.240000px;}
.ls11{letter-spacing:0.270000px;}
.ls26{letter-spacing:0.276000px;}
.ls5b{letter-spacing:0.288000px;}
.ls12{letter-spacing:0.324000px;}
.ls33{letter-spacing:0.331200px;}
.ls23{letter-spacing:0.386400px;}
.ls3b{letter-spacing:0.414000px;}
.lsb{letter-spacing:0.432000px;}
.ls1d{letter-spacing:0.441600px;}
.ls57{letter-spacing:0.469200px;}
.ls5a{letter-spacing:0.480000px;}
.lse{letter-spacing:0.486000px;}
.ls19{letter-spacing:0.496800px;}
.ls59{letter-spacing:0.528000px;}
.ls5{letter-spacing:0.540000px;}
.ls20{letter-spacing:0.552000px;}
.ls5d{letter-spacing:0.576000px;}
.ls8{letter-spacing:0.594000px;}
.ls1{letter-spacing:0.600000px;}
.ls22{letter-spacing:0.607200px;}
.ls58{letter-spacing:0.624000px;}
.ls6a{letter-spacing:0.634800px;}
.ls16{letter-spacing:0.648000px;}
.ls32{letter-spacing:0.662400px;}
.ls5e{letter-spacing:0.672000px;}
.lsd{letter-spacing:0.702000px;}
.ls4f{letter-spacing:0.717600px;}
.lsc{letter-spacing:0.756000px;}
.ls50{letter-spacing:0.772800px;}
.ls15{letter-spacing:0.810000px;}
.ls3a{letter-spacing:0.828000px;}
.ls3e{letter-spacing:0.855600px;}
.ls27{letter-spacing:0.883200px;}
.ls18{letter-spacing:0.938400px;}
.ls7{letter-spacing:0.972000px;}
.ls3d{letter-spacing:0.993600px;}
.ls17{letter-spacing:1.048800px;}
.ls13{letter-spacing:1.080000px;}
.ls1e{letter-spacing:1.159200px;}
.ls9{letter-spacing:1.161000px;}
.ls29{letter-spacing:1.200000px;}
.ls3c{letter-spacing:1.214400px;}
.ls14{letter-spacing:1.242000px;}
.ls1f{letter-spacing:1.269600px;}
.ls4e{letter-spacing:1.324800px;}
.ls24{letter-spacing:1.380000px;}
.ls1a{letter-spacing:1.435200px;}
.ls21{letter-spacing:1.490400px;}
.ls1c{letter-spacing:1.545600px;}
.ls1b{letter-spacing:1.600800px;}
.ls10{letter-spacing:1.836000px;}
.ls51{letter-spacing:1.987200px;}
.ls6{letter-spacing:2.646000px;}
.lsf{letter-spacing:20.181000px;}
.ls2{letter-spacing:20.231400px;}
.ls4{letter-spacing:20.677800px;}
.ls41{letter-spacing:99.082800px;}
.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;}
}
.ws3{word-spacing:-20.400000px;}
.ws2{word-spacing:-19.176000px;}
.ws4{word-spacing:-18.156000px;}
.ws4e{word-spacing:-14.400000px;}
.ws85{word-spacing:-13.358400px;}
.ws86{word-spacing:-12.600000px;}
.ws10d{word-spacing:-12.240000px;}
.ws10e{word-spacing:-11.856000px;}
.ws10c{word-spacing:-11.472000px;}
.ws10b{word-spacing:-11.376000px;}
.ws10a{word-spacing:-11.040000px;}
.wsbf{word-spacing:-10.800000px;}
.ws10f{word-spacing:-9.360000px;}
.ws4f{word-spacing:-9.000000px;}
.wsef{word-spacing:-8.955000px;}
.ws111{word-spacing:-8.775000px;}
.ws110{word-spacing:-8.550000px;}
.wsf1{word-spacing:-8.148000px;}
.ws50{word-spacing:-7.875000px;}
.ws51{word-spacing:-7.800000px;}
.wsa5{word-spacing:-5.950800px;}
.wsa6{word-spacing:-5.850000px;}
.wsa7{word-spacing:-5.220000px;}
.wsf2{word-spacing:-4.546620px;}
.ws56{word-spacing:-3.091200px;}
.ws48{word-spacing:-2.925600px;}
.ws5f{word-spacing:-2.815200px;}
.ws99{word-spacing:-2.760000px;}
.ws67{word-spacing:-2.704800px;}
.ws66{word-spacing:-2.649600px;}
.wsf8{word-spacing:-2.594400px;}
.ws8c{word-spacing:-2.539200px;}
.ws18{word-spacing:-2.484000px;}
.ws125{word-spacing:-2.428800px;}
.ws9c{word-spacing:-2.373600px;}
.ws131{word-spacing:-2.352000px;}
.ws5{word-spacing:-2.322000px;}
.ws9a{word-spacing:-2.318400px;}
.ws12f{word-spacing:-2.304000px;}
.wsce{word-spacing:-2.263200px;}
.ws25{word-spacing:-2.160000px;}
.ws132{word-spacing:-2.064000px;}
.ws6b{word-spacing:-1.987200px;}
.ws80{word-spacing:-1.920000px;}
.ws7a{word-spacing:-1.872000px;}
.wsa0{word-spacing:-1.821600px;}
.ws8d{word-spacing:-1.766400px;}
.ws77{word-spacing:-1.728000px;}
.ws5e{word-spacing:-1.711200px;}
.ws83{word-spacing:-1.680000px;}
.ws69{word-spacing:-1.600800px;}
.ws81{word-spacing:-1.584000px;}
.wsbd{word-spacing:-1.560000px;}
.ws9e{word-spacing:-1.545600px;}
.ws7d{word-spacing:-1.488000px;}
.ws12c{word-spacing:-1.440000px;}
.wsd8{word-spacing:-1.435200px;}
.ws82{word-spacing:-1.392000px;}
.wsb1{word-spacing:-1.380000px;}
.ws11d{word-spacing:-1.269600px;}
.wsf7{word-spacing:-1.159200px;}
.wsec{word-spacing:-1.152000px;}
.wsf{word-spacing:-1.134000px;}
.wse2{word-spacing:-1.048800px;}
.ws7f{word-spacing:-0.960000px;}
.ws3c{word-spacing:-0.938400px;}
.ws117{word-spacing:-0.900000px;}
.ws6a{word-spacing:-0.883200px;}
.ws122{word-spacing:-0.828000px;}
.ws96{word-spacing:-0.772800px;}
.ws7b{word-spacing:-0.768000px;}
.ws41{word-spacing:-0.717600px;}
.ws11c{word-spacing:-0.496800px;}
.ws116{word-spacing:-0.450000px;}
.ws103{word-spacing:-0.441600px;}
.ws8{word-spacing:-0.432000px;}
.ws6c{word-spacing:-0.386400px;}
.ws9f{word-spacing:-0.331200px;}
.ws94{word-spacing:-0.276000px;}
.wsa2{word-spacing:-0.273000px;}
.wsa4{word-spacing:-0.270000px;}
.ws49{word-spacing:-0.220800px;}
.wsed{word-spacing:-0.195000px;}
.wsa3{word-spacing:-0.180000px;}
.ws127{word-spacing:-0.165600px;}
.ws109{word-spacing:-0.135000px;}
.ws135{word-spacing:-0.048000px;}
.ws0{word-spacing:0.000000px;}
.wsaf{word-spacing:0.055200px;}
.wsbb{word-spacing:0.090000px;}
.ws128{word-spacing:0.110400px;}
.ws126{word-spacing:0.165600px;}
.ws130{word-spacing:0.240000px;}
.ws6f{word-spacing:0.276000px;}
.wsff{word-spacing:0.294000px;}
.ws124{word-spacing:0.331200px;}
.ws107{word-spacing:0.336000px;}
.ws35{word-spacing:0.441600px;}
.ws79{word-spacing:0.528000px;}
.ws9b{word-spacing:0.607200px;}
.ws20{word-spacing:0.648000px;}
.wse7{word-spacing:0.672000px;}
.ws29{word-spacing:0.717600px;}
.ws53{word-spacing:0.772800px;}
.ws23{word-spacing:0.810000px;}
.wsf3{word-spacing:0.828000px;}
.wsb5{word-spacing:0.883200px;}
.wsd5{word-spacing:0.900000px;}
.wsb0{word-spacing:0.938400px;}
.ws78{word-spacing:0.960000px;}
.wsd6{word-spacing:0.993600px;}
.ws75{word-spacing:1.125000px;}
.ws7e{word-spacing:1.152000px;}
.ws5b{word-spacing:1.159200px;}
.wse9{word-spacing:1.200000px;}
.ws113{word-spacing:1.215000px;}
.ws6{word-spacing:1.242000px;}
.wsab{word-spacing:1.269600px;}
.wse5{word-spacing:1.296000px;}
.wseb{word-spacing:1.344000px;}
.ws21{word-spacing:1.350000px;}
.wsda{word-spacing:1.380000px;}
.ws58{word-spacing:1.435200px;}
.ws7c{word-spacing:1.440000px;}
.ws100{word-spacing:1.560000px;}
.ws6e{word-spacing:1.656000px;}
.ws72{word-spacing:1.711200px;}
.wsf6{word-spacing:1.766400px;}
.wsbc{word-spacing:1.833000px;}
.ws106{word-spacing:2.042400px;}
.ws76{word-spacing:2.112000px;}
.ws114{word-spacing:2.115000px;}
.ws11a{word-spacing:2.152800px;}
.ws7{word-spacing:2.160000px;}
.ws123{word-spacing:2.208000px;}
.ws12{word-spacing:2.214000px;}
.ws84{word-spacing:2.256000px;}
.wsb6{word-spacing:2.263200px;}
.wsea{word-spacing:2.304000px;}
.ws90{word-spacing:2.318400px;}
.ws12b{word-spacing:2.352000px;}
.ws55{word-spacing:2.373600px;}
.ws1c{word-spacing:2.484000px;}
.ws2c{word-spacing:2.539200px;}
.wse4{word-spacing:2.544000px;}
.ws95{word-spacing:2.594400px;}
.ws115{word-spacing:2.610000px;}
.ws47{word-spacing:2.649600px;}
.ws3b{word-spacing:2.704800px;}
.wse8{word-spacing:2.736000px;}
.ws26{word-spacing:2.754000px;}
.wsd4{word-spacing:2.760000px;}
.ws54{word-spacing:2.815200px;}
.ws112{word-spacing:2.835000px;}
.ws93{word-spacing:2.870400px;}
.ws12e{word-spacing:2.880000px;}
.ws136{word-spacing:2.928000px;}
.ws46{word-spacing:2.980800px;}
.wse6{word-spacing:3.024000px;}
.wsd7{word-spacing:3.036000px;}
.wsad{word-spacing:3.091200px;}
.ws92{word-spacing:3.146400px;}
.wsd1{word-spacing:3.201600px;}
.wse3{word-spacing:3.216000px;}
.ws5a{word-spacing:3.312000px;}
.ws1d{word-spacing:3.456000px;}
.ws11f{word-spacing:3.477600px;}
.ws42{word-spacing:3.588000px;}
.ws38{word-spacing:3.643200px;}
.wse1{word-spacing:3.698400px;}
.ws11b{word-spacing:3.808800px;}
.ws12a{word-spacing:3.840000px;}
.ws3f{word-spacing:3.864000px;}
.ws11{word-spacing:3.888000px;}
.ws59{word-spacing:4.029600px;}
.ws4a{word-spacing:4.084800px;}
.ws65{word-spacing:4.140000px;}
.wsfa{word-spacing:4.195200px;}
.ws8b{word-spacing:4.250400px;}
.ws6d{word-spacing:4.305600px;}
.wsdd{word-spacing:4.360800px;}
.ws30{word-spacing:4.416000px;}
.ws43{word-spacing:4.526400px;}
.ws1b{word-spacing:4.536000px;}
.ws57{word-spacing:4.581600px;}
.wsb{word-spacing:4.590000px;}
.ws2b{word-spacing:4.636800px;}
.ws137{word-spacing:4.656000px;}
.ws64{word-spacing:4.692000px;}
.ws87{word-spacing:4.747200px;}
.ws133{word-spacing:4.800000px;}
.ws9{word-spacing:4.806000px;}
.wsd0{word-spacing:4.857600px;}
.ws129{word-spacing:5.040000px;}
.ws2a{word-spacing:5.133600px;}
.ws63{word-spacing:5.188800px;}
.wsfc{word-spacing:5.244000px;}
.ws60{word-spacing:5.299200px;}
.ws98{word-spacing:5.354400px;}
.ws8f{word-spacing:5.409600px;}
.ws12d{word-spacing:5.424000px;}
.wsa8{word-spacing:5.520000px;}
.wsba{word-spacing:5.575200px;}
.wsfe{word-spacing:5.630400px;}
.ws4b{word-spacing:5.685600px;}
.wsd{word-spacing:5.724000px;}
.ws34{word-spacing:5.740800px;}
.ws3e{word-spacing:5.851200px;}
.wsd9{word-spacing:5.906400px;}
.ws89{word-spacing:6.016800px;}
.ws120{word-spacing:6.072000px;}
.ws62{word-spacing:6.127200px;}
.ws40{word-spacing:6.182400px;}
.ws37{word-spacing:6.237600px;}
.ws45{word-spacing:6.292800px;}
.ws104{word-spacing:6.348000px;}
.ws1{word-spacing:6.480000px;}
.wsfd{word-spacing:6.513600px;}
.wsf9{word-spacing:6.568800px;}
.ws5c{word-spacing:6.624000px;}
.ws28{word-spacing:6.642000px;}
.ws88{word-spacing:6.679200px;}
.wsae{word-spacing:6.789600px;}
.ws13{word-spacing:6.804000px;}
.ws17{word-spacing:6.858000px;}
.ws119{word-spacing:6.900000px;}
.wscc{word-spacing:6.955200px;}
.ws1a{word-spacing:6.966000px;}
.wsdb{word-spacing:7.065600px;}
.ws22{word-spacing:7.074000px;}
.wsb8{word-spacing:7.120800px;}
.wscf{word-spacing:7.176000px;}
.ws2d{word-spacing:7.341600px;}
.wsaa{word-spacing:7.396800px;}
.ws16{word-spacing:7.398000px;}
.wsdc{word-spacing:7.507200px;}
.ws102{word-spacing:7.617600px;}
.wsb2{word-spacing:7.672800px;}
.ws2f{word-spacing:7.728000px;}
.wsb3{word-spacing:7.783200px;}
.wsf5{word-spacing:7.838400px;}
.ws134{word-spacing:7.872000px;}
.ws2e{word-spacing:7.893600px;}
.wsb7{word-spacing:7.948800px;}
.wsdf{word-spacing:8.059200px;}
.ws10{word-spacing:8.100000px;}
.ws61{word-spacing:8.114400px;}
.ws9d{word-spacing:8.169600px;}
.wse0{word-spacing:8.280000px;}
.ws91{word-spacing:8.390400px;}
.ws8a{word-spacing:8.445600px;}
.ws73{word-spacing:8.556000px;}
.ws70{word-spacing:8.611200px;}
.ws118{word-spacing:8.721600px;}
.ws121{word-spacing:8.776800px;}
.wsac{word-spacing:9.052800px;}
.wsc{word-spacing:9.558000px;}
.ws8e{word-spacing:9.604800px;}
.wscd{word-spacing:9.660000px;}
.ws15{word-spacing:9.720000px;}
.wsfb{word-spacing:9.770400px;}
.ws1f{word-spacing:9.774000px;}
.ws71{word-spacing:9.825600px;}
.wsd3{word-spacing:10.046400px;}
.wsf4{word-spacing:10.212000px;}
.ws105{word-spacing:10.267200px;}
.ws74{word-spacing:10.322400px;}
.ws14{word-spacing:10.368000px;}
.wsd2{word-spacing:10.653600px;}
.ws3d{word-spacing:11.536800px;}
.ws32{word-spacing:11.592000px;}
.wse{word-spacing:11.610000px;}
.ws44{word-spacing:11.702400px;}
.ws4c{word-spacing:11.757600px;}
.ws5d{word-spacing:11.812800px;}
.ws68{word-spacing:11.923200px;}
.ws11e{word-spacing:12.033600px;}
.wsb4{word-spacing:12.199200px;}
.ws27{word-spacing:12.204000px;}
.ws108{word-spacing:12.600000px;}
.ws33{word-spacing:12.640800px;}
.ws39{word-spacing:12.916800px;}
.ws97{word-spacing:13.137600px;}
.ws4d{word-spacing:13.413600px;}
.ws1e{word-spacing:13.446000px;}
.wsbe{word-spacing:13.500000px;}
.ws24{word-spacing:13.554000px;}
.ws3a{word-spacing:13.634400px;}
.wsa9{word-spacing:13.910400px;}
.ws101{word-spacing:14.186400px;}
.wsa1{word-spacing:14.352000px;}
.wsde{word-spacing:14.628000px;}
.ws36{word-spacing:14.738400px;}
.ws31{word-spacing:15.400800px;}
.wsee{word-spacing:15.453000px;}
.ws19{word-spacing:18.198000px;}
.wsb9{word-spacing:19.872000px;}
.wsa{word-spacing:26.298000px;}
.wsf0{word-spacing:91.086000px;}
.ws52{word-spacing:196.639800px;}
.wsc8{word-spacing:282.442800px;}
.wsc3{word-spacing:398.587800px;}
.wsc6{word-spacing:404.442300px;}
.wsc0{word-spacing:430.582800px;}
.wsca{word-spacing:463.702800px;}
.wsc5{word-spacing:491.242800px;}
.wscb{word-spacing:491.512800px;}
.wsc9{word-spacing:493.627800px;}
.wsc2{word-spacing:510.502800px;}
.wsc4{word-spacing:527.550600px;}
.wsc7{word-spacing:540.657300px;}
.wsc1{word-spacing:549.150600px;}
._27{margin-left:-2940.714000px;}
._12{margin-left:-603.478200px;}
._6{margin-left:-52.734000px;}
._15{margin-left:-23.239200px;}
._14{margin-left:-22.024800px;}
._9{margin-left:-16.470000px;}
._c{margin-left:-14.691000px;}
._e{margin-left:-13.082400px;}
._a{margin-left:-10.314000px;}
._f{margin-left:-8.721600px;}
._13{margin-left:-6.727800px;}
._b{margin-left:-5.685600px;}
._8{margin-left:-4.644000px;}
._7{margin-left:-2.943000px;}
._4{margin-left:-1.593000px;}
._11{width:1.007880px;}
._5{width:2.025000px;}
._2a{width:3.036000px;}
._0{width:4.104000px;}
._2{width:5.832000px;}
._3{width:7.641000px;}
._10{width:11.916600px;}
._d{width:13.113240px;}
._26{width:17.633400px;}
._1{width:26.217000px;}
._17{width:31.200000px;}
._16{width:56.461200px;}
._25{width:156.604200px;}
._28{width:352.243800px;}
._23{width:377.754600px;}
._24{width:413.632800px;}
._29{width:422.136000px;}
._1f{width:536.163600px;}
._18{width:558.213600px;}
._22{width:559.777800px;}
._21{width:603.067800px;}
._19{width:620.077800px;}
._1d{width:628.312800px;}
._20{width:639.562800px;}
._1a{width:648.427800px;}
._1b{width:660.757800px;}
._1c{width:664.357800px;}
._1e{width:685.507800px;}
.fc6{color:rgb(48,88,159);}
.fc4{color:transparent;}
.fc1{color:rgb(23,62,125);}
.fc5{color:rgb(255,255,255);}
.fc3{color:rgb(35,31,32);}
.fc2{color:rgb(57,53,54);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:12.000000px;}
.fsf{font-size:22.620000px;}
.fs10{font-size:26.100000px;}
.fse{font-size:31.320000px;}
.fsc{font-size:39.000000px;}
.fs4{font-size:42.000000px;}
.fs11{font-size:44.995200px;}
.fsb{font-size:45.000000px;}
.fsd{font-size:48.000000px;}
.fs7{font-size:54.000000px;}
.fs9{font-size:55.200000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs6{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fsa{font-size:168.000000px;}
.fs5{font-size:270.000000px;}
.y0{bottom:0.000000px;}
.y51{bottom:18.507900px;}
.ye9{bottom:34.015800px;}
.y50{bottom:35.007900px;}
.y4f{bottom:51.507900px;}
.y25{bottom:61.237200px;}
.y5{bottom:66.525004px;}
.y4e{bottom:68.007900px;}
.y217{bottom:75.007350px;}
.y23d{bottom:75.035400px;}
.y9b{bottom:75.295200px;}
.y68{bottom:75.295350px;}
.y1de{bottom:75.353250px;}
.y1f2{bottom:75.720450px;}
.y18b{bottom:75.987450px;}
.y112{bottom:76.449750px;}
.y4d{bottom:83.007900px;}
.y18a{bottom:87.987450px;}
.y111{bottom:88.449750px;}
.y216{bottom:88.507350px;}
.ye7{bottom:92.281350px;}
.y23c{bottom:94.287450px;}
.y4{bottom:97.125005px;}
.y9a{bottom:97.795200px;}
.y67{bottom:97.795350px;}
.y1f3{bottom:100.914300px;}
.y215{bottom:102.007350px;}
.y189{bottom:103.204950px;}
.y110{bottom:103.449750px;}
.y1df{bottom:103.788900px;}
.y4c{bottom:106.110300px;}
.ye6{bottom:107.881350px;}
.y214{bottom:115.507350px;}
.y99{bottom:120.295200px;}
.y66{bottom:120.295350px;}
.y4b{bottom:122.610300px;}
.ye5{bottom:123.481350px;}
.y1f4{bottom:124.670400px;}
.y1d4{bottom:127.455450px;}
.y1d3{bottom:127.854450px;}
.y213{bottom:129.007350px;}
.y11c{bottom:131.545200px;}
.y237{bottom:131.846550px;}
.y192{bottom:132.114600px;}
.y1f6{bottom:133.940250px;}
.ye4{bottom:139.081350px;}
.y4a{bottom:139.110300px;}
.y21{bottom:139.264499px;}
.y212{bottom:142.507350px;}
.y98{bottom:142.795200px;}
.y65{bottom:142.795350px;}
.y1e0{bottom:142.937550px;}
.y191{bottom:144.114600px;}
.y1f7{bottom:150.554250px;}
.y236{bottom:151.098600px;}
.y16b{bottom:151.968750px;}
.y11b{bottom:154.045200px;}
.ye3{bottom:154.681350px;}
.y49{bottom:155.610300px;}
.y190{bottom:156.114600px;}
.y1d8{bottom:162.071250px;}
.y16a{bottom:163.968750px;}
.y97{bottom:165.295200px;}
.y64{bottom:165.295350px;}
.y1f8{bottom:167.168550px;}
.y18f{bottom:168.114600px;}
.ye2{bottom:170.281350px;}
.y48{bottom:172.110300px;}
.y169{bottom:175.968750px;}
.y11a{bottom:176.545200px;}
.y1d9{bottom:181.078050px;}
.y18e{bottom:183.114600px;}
.y1f9{bottom:183.782850px;}
.y168{bottom:185.368200px;}
.ye1{bottom:185.881350px;}
.y96{bottom:187.795200px;}
.y63{bottom:187.795350px;}
.y47{bottom:188.610300px;}
.y16d{bottom:192.991050px;}
.y18d{bottom:195.114600px;}
.y18{bottom:196.933500px;}
.y167{bottom:197.368200px;}
.y10c{bottom:199.045350px;}
.y1da{bottom:200.084700px;}
.y1f5{bottom:200.397000px;}
.y15b{bottom:200.590050px;}
.ye0{bottom:201.481350px;}
.y16c{bottom:204.991050px;}
.y46{bottom:205.110300px;}
.y18c{bottom:207.114600px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y95{bottom:210.295200px;}
.y62{bottom:210.295350px;}
.y1fa{bottom:217.011150px;}
.y1db{bottom:219.091350px;}
.ydf{bottom:219.207300px;}
.y15a{bottom:221.170950px;}
.y10b{bottom:221.545350px;}
.y45{bottom:221.610300px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y233{bottom:232.015800px;}
.y94{bottom:232.795200px;}
.y61{bottom:232.795350px;}
.y1fc{bottom:233.625300px;}
.y15c{bottom:234.605250px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.yde{bottom:234.807300px;}
.y44{bottom:236.610300px;}
.y1d7{bottom:238.098000px;}
.y195{bottom:245.875650px;}
.y232{bottom:247.765800px;}
.y1fb{bottom:249.367050px;}
.ydd{bottom:250.407300px;}
.y16f{bottom:254.892600px;}
.y93{bottom:255.295200px;}
.y60{bottom:255.295350px;}
.y1dc{bottom:257.104650px;}
.y194{bottom:259.375650px;}
.y43{bottom:259.712700px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.ydc{bottom:266.007300px;}
.y1a3{bottom:266.545200px;}
.y16e{bottom:266.892600px;}
.y231{bottom:267.767700px;}
.y17a{bottom:271.304850px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y193{bottom:272.875650px;}
.y1dd{bottom:276.111300px;}
.y42{bottom:276.212700px;}
.y92{bottom:277.795200px;}
.y5f{bottom:277.795350px;}
.y1fe{bottom:281.461500px;}
.ydb{bottom:281.607300px;}
.y179{bottom:283.304850px;}
.y178{bottom:283.415400px;}
.y230{bottom:283.517700px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y1a2{bottom:289.045200px;}
.y165{bottom:291.794400px;}
.y41{bottom:292.712700px;}
.y1fd{bottom:294.961500px;}
.y177{bottom:295.415400px;}
.yda{bottom:297.207300px;}
.y22f{bottom:299.267700px;}
.y91{bottom:300.295200px;}
.y5e{bottom:300.295350px;}
.y188{bottom:300.572700px;}
.y239{bottom:305.684400px;}
.y15f{bottom:306.312900px;}
.y1d6{bottom:309.094200px;}
.y40{bottom:309.212700px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y187{bottom:312.572700px;}
.yd9{bottom:312.807300px;}
.y19c{bottom:313.399500px;}
.y22e{bottom:319.269600px;}
.y164{bottom:319.496400px;}
.y171{bottom:320.088600px;}
.y1d5{bottom:322.594200px;}
.y90{bottom:322.795200px;}
.y5d{bottom:322.795350px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y238{bottom:324.936300px;}
.y19b{bottom:325.399500px;}
.y3f{bottom:325.712700px;}
.y200{bottom:330.318750px;}
.yd8{bottom:330.533250px;}
.y170{bottom:332.088600px;}
.y22d{bottom:335.019600px;}
.y166{bottom:336.439500px;}
.y19a{bottom:337.399500px;}
.y186{bottom:339.957750px;}
.y3e{bottom:340.712700px;}
.y8f{bottom:345.295200px;}
.y5c{bottom:345.295350px;}
.yd7{bottom:346.133250px;}
.yf{bottom:348.133500px;}
.y199{bottom:349.933950px;}
.y22c{bottom:350.769600px;}
.y1ff{bottom:351.096750px;}
.y176{bottom:351.304050px;}
.y185{bottom:351.957750px;}
.y1d1{bottom:355.075950px;}
.y15d{bottom:356.484450px;}
.y17c{bottom:358.443150px;}
.yd6{bottom:361.733250px;}
.y175{bottom:363.304050px;}
.y3d{bottom:363.814950px;}
.y1b7{bottom:365.373300px;}
.y19d{bottom:367.538850px;}
.y8e{bottom:367.795200px;}
.y5b{bottom:367.795350px;}
.y17b{bottom:370.443150px;}
.y22b{bottom:370.771650px;}
.y160{bottom:375.133650px;}
.y1d0{bottom:375.853950px;}
.y201{bottom:375.925950px;}
.yd5{bottom:377.333250px;}
.y1b6{bottom:377.373300px;}
.y184{bottom:378.376950px;}
.y3c{bottom:380.314950px;}
.y159{bottom:382.998300px;}
.y19e{bottom:384.508800px;}
.y22a{bottom:386.521650px;}
.ye{bottom:386.785499px;}
.y69{bottom:390.295200px;}
.y10a{bottom:390.295350px;}
.y183{bottom:390.376950px;}
.yd4{bottom:392.933250px;}
.y15e{bottom:393.416250px;}
.y17e{bottom:396.073050px;}
.y3b{bottom:396.814950px;}
.y1d2{bottom:400.683150px;}
.y19f{bottom:401.641350px;}
.y229{bottom:402.271650px;}
.y1ce{bottom:406.136850px;}
.y158{bottom:407.310150px;}
.y20a{bottom:407.576100px;}
.yd{bottom:408.044999px;}
.y17d{bottom:408.073050px;}
.yd3{bottom:408.533250px;}
.y5a{bottom:412.795200px;}
.y109{bottom:412.795350px;}
.y180{bottom:413.275050px;}
.y3a{bottom:413.314950px;}
.y228{bottom:418.021650px;}
.y1a0{bottom:419.014350px;}
.y209{bottom:419.576100px;}
.y8d{bottom:424.045200px;}
.yd2{bottom:424.133250px;}
.y1cd{bottom:424.420200px;}
.y17f{bottom:425.275050px;}
.y39{bottom:429.814950px;}
.y208{bottom:431.576100px;}
.y161{bottom:432.605100px;}
.y227{bottom:433.771650px;}
.y1e6{bottom:434.480250px;}
.y174{bottom:435.094500px;}
.y59{bottom:435.295200px;}
.y108{bottom:435.295350px;}
.y1a1{bottom:436.079250px;}
.y1cc{bottom:442.703700px;}
.y38{bottom:446.314950px;}
.y1e5{bottom:446.480250px;}
.y8c{bottom:446.545200px;}
.y207{bottom:446.576100px;}
.y173{bottom:447.094500px;}
.yd1{bottom:448.237200px;}
.y226{bottom:449.521650px;}
.y162{bottom:454.073700px;}
.y58{bottom:457.795200px;}
.y107{bottom:457.795350px;}
.y1e4{bottom:458.480250px;}
.y206{bottom:458.576100px;}
.y172{bottom:459.094500px;}
.y1cb{bottom:460.987200px;}
.y37{bottom:462.814950px;}
.y225{bottom:465.271650px;}
.y198{bottom:466.161600px;}
.y182{bottom:468.655500px;}
.y8b{bottom:469.045200px;}
.ye8{bottom:469.222500px;}
.y1e3{bottom:473.480250px;}
.y205{bottom:473.793600px;}
.y1ca{bottom:479.270700px;}
.y36{bottom:479.314950px;}
.y197{bottom:479.661600px;}
.y57{bottom:480.295200px;}
.y106{bottom:480.295350px;}
.y23b{bottom:480.651900px;}
.y181{bottom:480.655500px;}
.y157{bottom:483.133650px;}
.y224{bottom:485.273550px;}
.y1e2{bottom:485.480250px;}
.y196{bottom:493.161600px;}
.y35{bottom:495.814950px;}
.y1c9{bottom:497.554200px;}
.y23a{bottom:499.903800px;}
.y1e1{bottom:500.697750px;}
.y223{bottom:501.023550px;}
.y56{bottom:502.795200px;}
.y105{bottom:502.795350px;}
.yc{bottom:502.864502px;}
.y163{bottom:505.242900px;}
.ycd{bottom:510.147750px;}
.y34{bottom:510.814950px;}
.y1c8{bottom:515.837550px;}
.y222{bottom:516.773550px;}
.yb{bottom:520.864502px;}
.ycc{bottom:522.147750px;}
.y55{bottom:525.295200px;}
.y104{bottom:525.295350px;}
.y221{bottom:532.523550px;}
.y33{bottom:533.917350px;}
.y1c7{bottom:534.121050px;}
.ycb{bottom:534.147750px;}
.y155{bottom:537.670200px;}
.ya{bottom:538.864499px;}
.yca{bottom:546.147750px;}
.y8a{bottom:547.795200px;}
.y54{bottom:547.795350px;}
.yb6{bottom:549.710550px;}
.y32{bottom:550.417350px;}
.y1c6{bottom:552.404550px;}
.y220{bottom:552.525600px;}
.y9{bottom:556.864499px;}
.y156{bottom:559.470900px;}
.yc9{bottom:561.147750px;}
.y31{bottom:566.917350px;}
.y21f{bottom:568.275600px;}
.y89{bottom:570.295200px;}
.y53{bottom:570.295350px;}
.y1c5{bottom:570.687900px;}
.yc8{bottom:573.147750px;}
.ya9{bottom:573.719100px;}
.y30{bottom:583.417350px;}
.y21e{bottom:584.025600px;}
.yc7{bottom:585.147750px;}
.yb5{bottom:588.566100px;}
.y1c4{bottom:588.971400px;}
.y88{bottom:592.795200px;}
.y103{bottom:592.795350px;}
.y21d{bottom:599.775600px;}
.y2f{bottom:599.917350px;}
.y14c{bottom:605.856900px;}
.y1c3{bottom:607.254900px;}
.yb7{bottom:612.343800px;}
.ya8{bottom:613.711350px;}
.y87{bottom:615.295200px;}
.y102{bottom:615.295350px;}
.y21c{bottom:615.525600px;}
.y2e{bottom:616.417350px;}
.y14b{bottom:617.856900px;}
.y1c2{bottom:625.538400px;}
.y14a{bottom:629.856900px;}
.y21b{bottom:631.275600px;}
.y2d{bottom:632.917350px;}
.yaa{bottom:635.310300px;}
.y86{bottom:637.795200px;}
.y101{bottom:637.795350px;}
.y115{bottom:639.657300px;}
.y149{bottom:641.856900px;}
.y1c1{bottom:643.821750px;}
.y8{bottom:645.510000px;}
.y21a{bottom:647.025600px;}
.y2c{bottom:647.917350px;}
.y132{bottom:652.009650px;}
.y235{bottom:654.489750px;}
.y114{bottom:655.943100px;}
.y148{bottom:656.856900px;}
.yb8{bottom:657.694350px;}
.y85{bottom:660.295200px;}
.y100{bottom:660.295350px;}
.y1c0{bottom:662.105250px;}
.y131{bottom:664.009650px;}
.yc6{bottom:664.061850px;}
.y7{bottom:666.771000px;}
.y147{bottom:668.856900px;}
.ybd{bottom:669.176400px;}
.y2b{bottom:671.019750px;}
.y219{bottom:671.279550px;}
.y113{bottom:671.725950px;}
.y234{bottom:673.741650px;}
.yc5{bottom:677.561850px;}
.y130{bottom:680.239200px;}
.y1bf{bottom:680.388750px;}
.y146{bottom:680.856900px;}
.yb3{bottom:681.284550px;}
.y84{bottom:682.795200px;}
.yff{bottom:682.795350px;}
.ybc{bottom:686.106300px;}
.y116{bottom:687.285750px;}
.y2a{bottom:687.519750px;}
.y124{bottom:688.738350px;}
.y6e{bottom:691.056450px;}
.yad{bottom:693.006900px;}
.y1be{bottom:698.672250px;}
.yc4{bottom:701.074800px;}
.y117{bottom:702.899400px;}
.y133{bottom:703.219950px;}
.y29{bottom:704.019750px;}
.y83{bottom:705.295200px;}
.yfe{bottom:705.295350px;}
.y123{bottom:706.130250px;}
.yb2{bottom:709.947000px;}
.y6d{bottom:710.856450px;}
.y218{bottom:716.545200px;}
.y1bd{bottom:716.955750px;}
.y28{bottom:720.519750px;}
.yb4{bottom:724.178250px;}
.y6{bottom:726.298500px;}
.y125{bottom:727.005450px;}
.y82{bottom:727.795200px;}
.yfd{bottom:727.795350px;}
.yb9{bottom:729.000600px;}
.y119{bottom:732.670650px;}
.y1bc{bottom:735.239100px;}
.y27{bottom:737.019750px;}
.ybb{bottom:744.047400px;}
.y118{bottom:746.170650px;}
.y134{bottom:747.050700px;}
.yc3{bottom:749.008800px;}
.y81{bottom:750.295200px;}
.yfc{bottom:750.295350px;}
.yab{bottom:751.517250px;}
.y6c{bottom:751.916400px;}
.y26{bottom:752.019750px;}
.y1bb{bottom:752.512800px;}
.y3{bottom:752.599495px;}
.ya0{bottom:754.163250px;}
.y11f{bottom:755.451150px;}
.y13a{bottom:758.147850px;}
.y1ba{bottom:766.012800px;}
.y11e{bottom:768.951150px;}
.y1b8{bottom:769.950300px;}
.y10e{bottom:770.004900px;}
.ya7{bottom:770.184750px;}
.y9f{bottom:771.897000px;}
.y12e{bottom:772.501800px;}
.y80{bottom:772.795200px;}
.yfb{bottom:772.795350px;}
.yae{bottom:773.012850px;}
.yc2{bottom:773.362200px;}
.y139{bottom:774.510450px;}
.y11d{bottom:782.451150px;}
.y128{bottom:782.768250px;}
.y142{bottom:784.725450px;}
.y1b9{bottom:784.832100px;}
.ybe{bottom:785.577450px;}
.y10d{bottom:788.004900px;}
.y9e{bottom:789.630450px;}
.y7f{bottom:795.295200px;}
.yfa{bottom:795.295350px;}
.y6b{bottom:798.416250px;}
.y12d{bottom:799.140750px;}
.y1f1{bottom:800.920200px;}
.ya6{bottom:803.958300px;}
.ybf{bottom:806.116950px;}
.y9d{bottom:807.364050px;}
.y12f{bottom:808.642950px;}
.yac{bottom:809.526900px;}
.y10f{bottom:813.482100px;}
.y135{bottom:815.967000px;}
.y1b4{bottom:816.895800px;}
.y7e{bottom:817.795200px;}
.yf9{bottom:817.795350px;}
.y1f0{bottom:823.420200px;}
.y9c{bottom:825.097650px;}
.yc0{bottom:827.438250px;}
.yaf{bottom:831.923400px;}
.y141{bottom:833.178750px;}
.y1b3{bottom:834.895800px;}
.y126{bottom:839.317800px;}
.y7d{bottom:840.295200px;}
.yf8{bottom:840.295350px;}
.y23f{bottom:843.327450px;}
.yba{bottom:845.769000px;}
.y138{bottom:847.677450px;}
.y151{bottom:851.870550px;}
.y13b{bottom:852.805050px;}
.y24{bottom:853.419300px;}
.y6a{bottom:853.420200px;}
.ya4{bottom:855.470550px;}
.yb0{bottom:855.790200px;}
.y1b5{bottom:858.648150px;}
.y129{bottom:860.801550px;}
.y23e{bottom:862.579500px;}
.y7c{bottom:862.795200px;}
.yf7{bottom:862.795350px;}
.ya3{bottom:868.970550px;}
.y150{bottom:869.009700px;}
.y122{bottom:870.083550px;}
.ya5{bottom:871.559550px;}
.yc1{bottom:873.076050px;}
.y140{bottom:878.753100px;}
.y2{bottom:879.369000px;}
.y127{bottom:879.438600px;}
.ya2{bottom:882.470550px;}
.y7b{bottom:885.295200px;}
.yf6{bottom:885.295350px;}
.y14f{bottom:886.149150px;}
.y121{bottom:890.001300px;}
.y13c{bottom:890.499000px;}
.ya1{bottom:895.970550px;}
.yb1{bottom:896.635350px;}
.y14e{bottom:903.288300px;}
.y7a{bottom:907.795200px;}
.yf5{bottom:907.795350px;}
.y13d{bottom:908.979750px;}
.y1b1{bottom:914.008500px;}
.y12a{bottom:917.029200px;}
.y14d{bottom:920.427600px;}
.y137{bottom:921.074100px;}
.y1b0{bottom:929.758500px;}
.y79{bottom:930.295200px;}
.yf4{bottom:930.295350px;}
.y136{bottom:933.074100px;}
.y12b{bottom:935.844150px;}
.ycf{bottom:937.874850px;}
.y1af{bottom:945.508500px;}
.y154{bottom:950.303550px;}
.y13f{bottom:950.655000px;}
.y78{bottom:952.795200px;}
.yf3{bottom:952.795350px;}
.y120{bottom:955.337100px;}
.yce{bottom:955.874850px;}
.y1cf{bottom:958.420200px;}
.y1ae{bottom:961.258500px;}
.y13e{bottom:962.655000px;}
.y23{bottom:962.899650px;}
.y153{bottom:963.803550px;}
.y52{bottom:964.384800px;}
.y1{bottom:966.726000px;}
.y77{bottom:975.295200px;}
.yf2{bottom:975.295350px;}
.y1ad{bottom:977.008500px;}
.y152{bottom:977.303550px;}
.yd0{bottom:980.903250px;}
.y12c{bottom:985.950300px;}
.y20f{bottom:987.868650px;}
.y1ac{bottom:992.758500px;}
.y22{bottom:994.606350px;}
.y76{bottom:997.795200px;}
.yf1{bottom:997.795350px;}
.y20e{bottom:1003.292850px;}
.y1ab{bottom:1008.508500px;}
.y1e9{bottom:1010.191500px;}
.y243{bottom:1017.165300px;}
.y20d{bottom:1019.124300px;}
.y75{bottom:1020.295200px;}
.yf0{bottom:1020.295350px;}
.y144{bottom:1022.922300px;}
.y1aa{bottom:1024.258500px;}
.y1e8{bottom:1025.615550px;}
.y242{bottom:1032.165300px;}
.y210{bottom:1034.720550px;}
.y1a9{bottom:1040.008500px;}
.y143{bottom:1040.922300px;}
.y1e7{bottom:1041.447300px;}
.y74{bottom:1042.795200px;}
.yef{bottom:1042.795350px;}
.y241{bottom:1047.165300px;}
.y211{bottom:1050.372750px;}
.y1a8{bottom:1055.758500px;}
.y1ea{bottom:1057.043400px;}
.y73{bottom:1065.295200px;}
.yee{bottom:1065.295350px;}
.y145{bottom:1065.935550px;}
.y240{bottom:1066.417350px;}
.y1a7{bottom:1071.508500px;}
.y1eb{bottom:1072.695600px;}
.y20c{bottom:1079.222700px;}
.y1a6{bottom:1087.258500px;}
.y72{bottom:1087.795200px;}
.yed{bottom:1087.795350px;}
.y20b{bottom:1092.722700px;}
.y1ed{bottom:1097.293500px;}
.y1a5{bottom:1103.008500px;}
.y71{bottom:1110.295200px;}
.yec{bottom:1110.295350px;}
.y1ec{bottom:1110.793500px;}
.y203{bottom:1117.997250px;}
.y1a4{bottom:1127.262450px;}
.y70{bottom:1132.795200px;}
.yeb{bottom:1132.795350px;}
.y202{bottom:1135.997250px;}
.y1ee{bottom:1136.326650px;}
.y1b2{bottom:1150.981950px;}
.y6f{bottom:1155.295200px;}
.yea{bottom:1155.295350px;}
.y204{bottom:1161.474300px;}
.y1ef{bottom:1161.803700px;}
.h1e{height:16.965000px;}
.h16{height:29.250000px;}
.h23{height:31.500000px;}
.h7{height:32.130000px;}
.h2b{height:33.030000px;}
.h24{height:33.733800px;}
.h27{height:33.734400px;}
.h25{height:33.746400px;}
.h15{height:33.750000px;}
.h28{height:34.424400px;}
.h26{height:34.425000px;}
.h1f{height:34.425600px;}
.h19{height:35.088000px;}
.h2c{height:35.232000px;}
.h21{height:36.000000px;}
.h18{height:36.018000px;}
.h1b{height:36.150000px;}
.h1c{height:36.750000px;}
.h22{height:37.800000px;}
.hd{height:39.474000px;}
.h17{height:39.636000px;}
.h2a{height:40.128000px;}
.h29{height:40.516800px;}
.h1d{height:40.808880px;}
.hf{height:41.344800px;}
.ha{height:45.000000px;}
.hc{height:45.474000px;}
.h6{height:45.900000px;}
.h1a{height:46.053000px;}
.h10{height:46.147200px;}
.h20{height:47.250000px;}
.h3{height:48.195000px;}
.h11{height:48.444000px;}
.h13{height:49.500000px;}
.h14{height:54.000000px;}
.h2{height:55.080000px;}
.h5{height:78.030000px;}
.he{height:88.500000px;}
.h4{height:119.055004px;}
.h12{height:122.808000px;}
.h9{height:197.370000px;}
.hb{height:816.168300px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:246.657600px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:19.247700px;}
.x97{left:23.028450px;}
.x9{left:26.609400px;}
.x8b{left:42.165300px;}
.x3d{left:43.194750px;}
.x9a{left:45.050250px;}
.x89{left:47.309250px;}
.x98{left:49.409250px;}
.x7a{left:51.023700px;}
.x2c{left:54.000000px;}
.x8a{left:55.187250px;}
.x99{left:57.323400px;}
.x3f{left:60.202500px;}
.x70{left:63.882000px;}
.x71{left:65.582700px;}
.x5c{left:66.852300px;}
.x5d{left:68.553150px;}
.x5{left:69.732300px;}
.x8c{left:71.314050px;}
.x2b{left:73.133850px;}
.x8{left:75.035400px;}
.x6{left:76.535400px;}
.x21{left:80.900550px;}
.x56{left:82.827450px;}
.x5b{left:83.860200px;}
.x8f{left:87.632850px;}
.x44{left:88.665450px;}
.x6c{left:91.741500px;}
.x7{left:95.669250px;}
.x51{left:97.986900px;}
.x1{left:102.045000px;}
.x22{left:103.409550px;}
.x2{left:106.297500px;}
.x2a{left:112.677150px;}
.x6f{left:123.321150px;}
.x5a{left:129.661800px;}
.x75{left:130.850550px;}
.x61{left:134.245950px;}
.x6b{left:136.328700px;}
.x31{left:138.401550px;}
.x20{left:140.053200px;}
.x59{left:142.009950px;}
.x26{left:145.271250px;}
.x50{left:146.323500px;}
.x24{left:150.029850px;}
.x78{left:152.677200px;}
.x30{left:154.892250px;}
.x54{left:156.212250px;}
.x60{left:159.456600px;}
.x27{left:161.634900px;}
.x33{left:164.976450px;}
.x76{left:166.702350px;}
.x62{left:169.112100px;}
.x32{left:171.141750px;}
.x77{left:174.390150px;}
.x52{left:176.372100px;}
.x53{left:178.059600px;}
.x96{left:182.110950px;}
.x11{left:183.120750px;}
.x95{left:184.202550px;}
.x23{left:193.487700px;}
.x55{left:202.206000px;}
.x4{left:203.484001px;}
.x2f{left:206.220450px;}
.x35{left:211.747950px;}
.x28{left:216.650100px;}
.x2d{left:220.252050px;}
.x58{left:224.587800px;}
.x4f{left:227.088450px;}
.x6e{left:228.136050px;}
.x29{left:229.806300px;}
.x6a{left:231.310950px;}
.x1f{left:232.511100px;}
.x25{left:233.651850px;}
.x5e{left:240.718800px;}
.x72{left:242.014200px;}
.x4c{left:257.872050px;}
.x63{left:259.376400px;}
.x68{left:261.471300px;}
.x1c{left:263.812200px;}
.x57{left:269.525100px;}
.x79{left:272.326350px;}
.x64{left:275.290650px;}
.x73{left:277.200150px;}
.x5f{left:278.340150px;}
.x6d{left:281.628300px;}
.x36{left:282.635250px;}
.x4d{left:283.731750px;}
.x34{left:285.944850px;}
.x1d{left:289.154400px;}
.x74{left:292.566000px;}
.x2e{left:301.889850px;}
.x4e{left:309.811950px;}
.x69{left:313.411200px;}
.x1e{left:318.311550px;}
.xd{left:322.481850px;}
.xc{left:323.518650px;}
.xe{left:335.936100px;}
.x7b{left:344.095050px;}
.x3a{left:354.060300px;}
.x18{left:355.828800px;}
.x3b{left:359.354100px;}
.x3c{left:363.052350px;}
.x39{left:366.676650px;}
.x4b{left:368.714100px;}
.x1b{left:374.694300px;}
.x1a{left:377.978850px;}
.x7d{left:379.864650px;}
.x37{left:383.001150px;}
.x15{left:388.846500px;}
.x38{left:391.044750px;}
.x16{left:394.246500px;}
.x65{left:398.548050px;}
.x17{left:399.646350px;}
.x66{left:400.682550px;}
.x42{left:403.168500px;}
.x41{left:404.223150px;}
.x81{left:408.350550px;}
.x7e{left:411.360750px;}
.x43{left:416.723550px;}
.x94{left:417.884850px;}
.x49{left:418.965750px;}
.x7f{left:421.619850px;}
.x93{left:423.063150px;}
.x48{left:424.366950px;}
.x19{left:426.747000px;}
.x46{left:427.759350px;}
.x47{left:430.020900px;}
.x7c{left:440.194500px;}
.x67{left:448.537350px;}
.x3e{left:450.005850px;}
.x8d{left:451.139700px;}
.x3{left:454.959000px;}
.x40{left:456.364050px;}
.x90{left:473.903250px;}
.x14{left:509.467650px;}
.x12{left:510.704250px;}
.x13{left:523.022700px;}
.xf{left:591.309750px;}
.x83{left:592.587000px;}
.x10{left:603.810150px;}
.x87{left:629.083350px;}
.x88{left:638.895000px;}
.x8e{left:661.213650px;}
.x91{left:662.624250px;}
.x82{left:681.450750px;}
.x84{left:723.083850px;}
.x85{left:728.680500px;}
.xb{left:755.642100px;}
.x86{left:777.954000px;}
.x92{left:810.694200px;}
.x45{left:811.848300px;}
.x80{left:818.490000px;}
.x4a{left:842.849700px;}
@media print{
.v3{vertical-align:-35.601600pt;}
.v6{vertical-align:-11.440000pt;}
.v8{vertical-align:-1.900267pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.133333pt;}
.v1{vertical-align:5.333333pt;}
.v2{vertical-align:10.666667pt;}
.v7{vertical-align:13.200533pt;}
.v5{vertical-align:15.840000pt;}
.ls28{letter-spacing:-6.000000pt;}
.ls31{letter-spacing:-1.994667pt;}
.ls55{letter-spacing:-1.733333pt;}
.ls30{letter-spacing:-1.088000pt;}
.ls47{letter-spacing:-1.000000pt;}
.ls5c{letter-spacing:-0.800000pt;}
.ls66{letter-spacing:-0.799915pt;}
.ls36{letter-spacing:-0.746667pt;}
.ls43{letter-spacing:-0.539733pt;}
.ls2f{letter-spacing:-0.480000pt;}
.ls2a{letter-spacing:-0.432000pt;}
.ls6d{letter-spacing:-0.400000pt;}
.ls6e{letter-spacing:-0.392533pt;}
.ls6f{letter-spacing:-0.343467pt;}
.ls4c{letter-spacing:-0.341333pt;}
.ls68{letter-spacing:-0.298667pt;}
.ls35{letter-spacing:-0.293333pt;}
.ls53{letter-spacing:-0.278400pt;}
.ls62{letter-spacing:-0.261333pt;}
.ls70{letter-spacing:-0.256000pt;}
.ls34{letter-spacing:-0.245333pt;}
.ls2b{letter-spacing:-0.240000pt;}
.ls63{letter-spacing:-0.224000pt;}
.ls48{letter-spacing:-0.213333pt;}
.ls72{letter-spacing:-0.200000pt;}
.ls46{letter-spacing:-0.196267pt;}
.ls60{letter-spacing:-0.186667pt;}
.ls49{letter-spacing:-0.170667pt;}
.ls42{letter-spacing:-0.147200pt;}
.ls2e{letter-spacing:-0.144000pt;}
.ls71{letter-spacing:-0.128000pt;}
.ls6c{letter-spacing:-0.120000pt;}
.ls65{letter-spacing:-0.104000pt;}
.ls45{letter-spacing:-0.098133pt;}
.ls2c{letter-spacing:-0.096000pt;}
.ls4b{letter-spacing:-0.085333pt;}
.ls54{letter-spacing:-0.080000pt;}
.ls44{letter-spacing:-0.049067pt;}
.ls2d{letter-spacing:-0.048000pt;}
.ls4a{letter-spacing:-0.042667pt;}
.ls61{letter-spacing:-0.040000pt;}
.ls56{letter-spacing:-0.034667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls64{letter-spacing:0.020107pt;}
.ls5f{letter-spacing:0.034667pt;}
.ls40{letter-spacing:0.042667pt;}
.ls39{letter-spacing:0.049067pt;}
.ls69{letter-spacing:0.080000pt;}
.lsa{letter-spacing:0.096000pt;}
.ls38{letter-spacing:0.098133pt;}
.ls6b{letter-spacing:0.128000pt;}
.ls37{letter-spacing:0.147200pt;}
.ls3f{letter-spacing:0.170667pt;}
.ls67{letter-spacing:0.171733pt;}
.ls52{letter-spacing:0.173333pt;}
.ls3{letter-spacing:0.192000pt;}
.ls25{letter-spacing:0.196267pt;}
.ls4d{letter-spacing:0.213333pt;}
.ls11{letter-spacing:0.240000pt;}
.ls26{letter-spacing:0.245333pt;}
.ls5b{letter-spacing:0.256000pt;}
.ls12{letter-spacing:0.288000pt;}
.ls33{letter-spacing:0.294400pt;}
.ls23{letter-spacing:0.343467pt;}
.ls3b{letter-spacing:0.368000pt;}
.lsb{letter-spacing:0.384000pt;}
.ls1d{letter-spacing:0.392533pt;}
.ls57{letter-spacing:0.417067pt;}
.ls5a{letter-spacing:0.426667pt;}
.lse{letter-spacing:0.432000pt;}
.ls19{letter-spacing:0.441600pt;}
.ls59{letter-spacing:0.469333pt;}
.ls5{letter-spacing:0.480000pt;}
.ls20{letter-spacing:0.490667pt;}
.ls5d{letter-spacing:0.512000pt;}
.ls8{letter-spacing:0.528000pt;}
.ls1{letter-spacing:0.533333pt;}
.ls22{letter-spacing:0.539733pt;}
.ls58{letter-spacing:0.554667pt;}
.ls6a{letter-spacing:0.564267pt;}
.ls16{letter-spacing:0.576000pt;}
.ls32{letter-spacing:0.588800pt;}
.ls5e{letter-spacing:0.597333pt;}
.lsd{letter-spacing:0.624000pt;}
.ls4f{letter-spacing:0.637867pt;}
.lsc{letter-spacing:0.672000pt;}
.ls50{letter-spacing:0.686933pt;}
.ls15{letter-spacing:0.720000pt;}
.ls3a{letter-spacing:0.736000pt;}
.ls3e{letter-spacing:0.760533pt;}
.ls27{letter-spacing:0.785067pt;}
.ls18{letter-spacing:0.834133pt;}
.ls7{letter-spacing:0.864000pt;}
.ls3d{letter-spacing:0.883200pt;}
.ls17{letter-spacing:0.932267pt;}
.ls13{letter-spacing:0.960000pt;}
.ls1e{letter-spacing:1.030400pt;}
.ls9{letter-spacing:1.032000pt;}
.ls29{letter-spacing:1.066667pt;}
.ls3c{letter-spacing:1.079467pt;}
.ls14{letter-spacing:1.104000pt;}
.ls1f{letter-spacing:1.128533pt;}
.ls4e{letter-spacing:1.177600pt;}
.ls24{letter-spacing:1.226667pt;}
.ls1a{letter-spacing:1.275733pt;}
.ls21{letter-spacing:1.324800pt;}
.ls1c{letter-spacing:1.373867pt;}
.ls1b{letter-spacing:1.422933pt;}
.ls10{letter-spacing:1.632000pt;}
.ls51{letter-spacing:1.766400pt;}
.ls6{letter-spacing:2.352000pt;}
.lsf{letter-spacing:17.938667pt;}
.ls2{letter-spacing:17.983467pt;}
.ls4{letter-spacing:18.380267pt;}
.ls41{letter-spacing:88.073600pt;}
.ws3{word-spacing:-18.133333pt;}
.ws2{word-spacing:-17.045333pt;}
.ws4{word-spacing:-16.138667pt;}
.ws4e{word-spacing:-12.800000pt;}
.ws85{word-spacing:-11.874133pt;}
.ws86{word-spacing:-11.200000pt;}
.ws10d{word-spacing:-10.880000pt;}
.ws10e{word-spacing:-10.538667pt;}
.ws10c{word-spacing:-10.197333pt;}
.ws10b{word-spacing:-10.112000pt;}
.ws10a{word-spacing:-9.813333pt;}
.wsbf{word-spacing:-9.600000pt;}
.ws10f{word-spacing:-8.320000pt;}
.ws4f{word-spacing:-8.000000pt;}
.wsef{word-spacing:-7.960000pt;}
.ws111{word-spacing:-7.800000pt;}
.ws110{word-spacing:-7.600000pt;}
.wsf1{word-spacing:-7.242667pt;}
.ws50{word-spacing:-7.000000pt;}
.ws51{word-spacing:-6.933333pt;}
.wsa5{word-spacing:-5.289600pt;}
.wsa6{word-spacing:-5.200000pt;}
.wsa7{word-spacing:-4.640000pt;}
.wsf2{word-spacing:-4.041440pt;}
.ws56{word-spacing:-2.747733pt;}
.ws48{word-spacing:-2.600533pt;}
.ws5f{word-spacing:-2.502400pt;}
.ws99{word-spacing:-2.453333pt;}
.ws67{word-spacing:-2.404267pt;}
.ws66{word-spacing:-2.355200pt;}
.wsf8{word-spacing:-2.306133pt;}
.ws8c{word-spacing:-2.257067pt;}
.ws18{word-spacing:-2.208000pt;}
.ws125{word-spacing:-2.158933pt;}
.ws9c{word-spacing:-2.109867pt;}
.ws131{word-spacing:-2.090667pt;}
.ws5{word-spacing:-2.064000pt;}
.ws9a{word-spacing:-2.060800pt;}
.ws12f{word-spacing:-2.048000pt;}
.wsce{word-spacing:-2.011733pt;}
.ws25{word-spacing:-1.920000pt;}
.ws132{word-spacing:-1.834667pt;}
.ws6b{word-spacing:-1.766400pt;}
.ws80{word-spacing:-1.706667pt;}
.ws7a{word-spacing:-1.664000pt;}
.wsa0{word-spacing:-1.619200pt;}
.ws8d{word-spacing:-1.570133pt;}
.ws77{word-spacing:-1.536000pt;}
.ws5e{word-spacing:-1.521067pt;}
.ws83{word-spacing:-1.493333pt;}
.ws69{word-spacing:-1.422933pt;}
.ws81{word-spacing:-1.408000pt;}
.wsbd{word-spacing:-1.386667pt;}
.ws9e{word-spacing:-1.373867pt;}
.ws7d{word-spacing:-1.322667pt;}
.ws12c{word-spacing:-1.280000pt;}
.wsd8{word-spacing:-1.275733pt;}
.ws82{word-spacing:-1.237333pt;}
.wsb1{word-spacing:-1.226667pt;}
.ws11d{word-spacing:-1.128533pt;}
.wsf7{word-spacing:-1.030400pt;}
.wsec{word-spacing:-1.024000pt;}
.wsf{word-spacing:-1.008000pt;}
.wse2{word-spacing:-0.932267pt;}
.ws7f{word-spacing:-0.853333pt;}
.ws3c{word-spacing:-0.834133pt;}
.ws117{word-spacing:-0.800000pt;}
.ws6a{word-spacing:-0.785067pt;}
.ws122{word-spacing:-0.736000pt;}
.ws96{word-spacing:-0.686933pt;}
.ws7b{word-spacing:-0.682667pt;}
.ws41{word-spacing:-0.637867pt;}
.ws11c{word-spacing:-0.441600pt;}
.ws116{word-spacing:-0.400000pt;}
.ws103{word-spacing:-0.392533pt;}
.ws8{word-spacing:-0.384000pt;}
.ws6c{word-spacing:-0.343467pt;}
.ws9f{word-spacing:-0.294400pt;}
.ws94{word-spacing:-0.245333pt;}
.wsa2{word-spacing:-0.242667pt;}
.wsa4{word-spacing:-0.240000pt;}
.ws49{word-spacing:-0.196267pt;}
.wsed{word-spacing:-0.173333pt;}
.wsa3{word-spacing:-0.160000pt;}
.ws127{word-spacing:-0.147200pt;}
.ws109{word-spacing:-0.120000pt;}
.ws135{word-spacing:-0.042667pt;}
.ws0{word-spacing:0.000000pt;}
.wsaf{word-spacing:0.049067pt;}
.wsbb{word-spacing:0.080000pt;}
.ws128{word-spacing:0.098133pt;}
.ws126{word-spacing:0.147200pt;}
.ws130{word-spacing:0.213333pt;}
.ws6f{word-spacing:0.245333pt;}
.wsff{word-spacing:0.261333pt;}
.ws124{word-spacing:0.294400pt;}
.ws107{word-spacing:0.298667pt;}
.ws35{word-spacing:0.392533pt;}
.ws79{word-spacing:0.469333pt;}
.ws9b{word-spacing:0.539733pt;}
.ws20{word-spacing:0.576000pt;}
.wse7{word-spacing:0.597333pt;}
.ws29{word-spacing:0.637867pt;}
.ws53{word-spacing:0.686933pt;}
.ws23{word-spacing:0.720000pt;}
.wsf3{word-spacing:0.736000pt;}
.wsb5{word-spacing:0.785067pt;}
.wsd5{word-spacing:0.800000pt;}
.wsb0{word-spacing:0.834133pt;}
.ws78{word-spacing:0.853333pt;}
.wsd6{word-spacing:0.883200pt;}
.ws75{word-spacing:1.000000pt;}
.ws7e{word-spacing:1.024000pt;}
.ws5b{word-spacing:1.030400pt;}
.wse9{word-spacing:1.066667pt;}
.ws113{word-spacing:1.080000pt;}
.ws6{word-spacing:1.104000pt;}
.wsab{word-spacing:1.128533pt;}
.wse5{word-spacing:1.152000pt;}
.wseb{word-spacing:1.194667pt;}
.ws21{word-spacing:1.200000pt;}
.wsda{word-spacing:1.226667pt;}
.ws58{word-spacing:1.275733pt;}
.ws7c{word-spacing:1.280000pt;}
.ws100{word-spacing:1.386667pt;}
.ws6e{word-spacing:1.472000pt;}
.ws72{word-spacing:1.521067pt;}
.wsf6{word-spacing:1.570133pt;}
.wsbc{word-spacing:1.629333pt;}
.ws106{word-spacing:1.815467pt;}
.ws76{word-spacing:1.877333pt;}
.ws114{word-spacing:1.880000pt;}
.ws11a{word-spacing:1.913600pt;}
.ws7{word-spacing:1.920000pt;}
.ws123{word-spacing:1.962667pt;}
.ws12{word-spacing:1.968000pt;}
.ws84{word-spacing:2.005333pt;}
.wsb6{word-spacing:2.011733pt;}
.wsea{word-spacing:2.048000pt;}
.ws90{word-spacing:2.060800pt;}
.ws12b{word-spacing:2.090667pt;}
.ws55{word-spacing:2.109867pt;}
.ws1c{word-spacing:2.208000pt;}
.ws2c{word-spacing:2.257067pt;}
.wse4{word-spacing:2.261333pt;}
.ws95{word-spacing:2.306133pt;}
.ws115{word-spacing:2.320000pt;}
.ws47{word-spacing:2.355200pt;}
.ws3b{word-spacing:2.404267pt;}
.wse8{word-spacing:2.432000pt;}
.ws26{word-spacing:2.448000pt;}
.wsd4{word-spacing:2.453333pt;}
.ws54{word-spacing:2.502400pt;}
.ws112{word-spacing:2.520000pt;}
.ws93{word-spacing:2.551467pt;}
.ws12e{word-spacing:2.560000pt;}
.ws136{word-spacing:2.602667pt;}
.ws46{word-spacing:2.649600pt;}
.wse6{word-spacing:2.688000pt;}
.wsd7{word-spacing:2.698667pt;}
.wsad{word-spacing:2.747733pt;}
.ws92{word-spacing:2.796800pt;}
.wsd1{word-spacing:2.845867pt;}
.wse3{word-spacing:2.858667pt;}
.ws5a{word-spacing:2.944000pt;}
.ws1d{word-spacing:3.072000pt;}
.ws11f{word-spacing:3.091200pt;}
.ws42{word-spacing:3.189333pt;}
.ws38{word-spacing:3.238400pt;}
.wse1{word-spacing:3.287467pt;}
.ws11b{word-spacing:3.385600pt;}
.ws12a{word-spacing:3.413333pt;}
.ws3f{word-spacing:3.434667pt;}
.ws11{word-spacing:3.456000pt;}
.ws59{word-spacing:3.581867pt;}
.ws4a{word-spacing:3.630933pt;}
.ws65{word-spacing:3.680000pt;}
.wsfa{word-spacing:3.729067pt;}
.ws8b{word-spacing:3.778133pt;}
.ws6d{word-spacing:3.827200pt;}
.wsdd{word-spacing:3.876267pt;}
.ws30{word-spacing:3.925333pt;}
.ws43{word-spacing:4.023467pt;}
.ws1b{word-spacing:4.032000pt;}
.ws57{word-spacing:4.072533pt;}
.wsb{word-spacing:4.080000pt;}
.ws2b{word-spacing:4.121600pt;}
.ws137{word-spacing:4.138667pt;}
.ws64{word-spacing:4.170667pt;}
.ws87{word-spacing:4.219733pt;}
.ws133{word-spacing:4.266667pt;}
.ws9{word-spacing:4.272000pt;}
.wsd0{word-spacing:4.317867pt;}
.ws129{word-spacing:4.480000pt;}
.ws2a{word-spacing:4.563200pt;}
.ws63{word-spacing:4.612267pt;}
.wsfc{word-spacing:4.661333pt;}
.ws60{word-spacing:4.710400pt;}
.ws98{word-spacing:4.759467pt;}
.ws8f{word-spacing:4.808533pt;}
.ws12d{word-spacing:4.821333pt;}
.wsa8{word-spacing:4.906667pt;}
.wsba{word-spacing:4.955733pt;}
.wsfe{word-spacing:5.004800pt;}
.ws4b{word-spacing:5.053867pt;}
.wsd{word-spacing:5.088000pt;}
.ws34{word-spacing:5.102933pt;}
.ws3e{word-spacing:5.201067pt;}
.wsd9{word-spacing:5.250133pt;}
.ws89{word-spacing:5.348267pt;}
.ws120{word-spacing:5.397333pt;}
.ws62{word-spacing:5.446400pt;}
.ws40{word-spacing:5.495467pt;}
.ws37{word-spacing:5.544533pt;}
.ws45{word-spacing:5.593600pt;}
.ws104{word-spacing:5.642667pt;}
.ws1{word-spacing:5.760000pt;}
.wsfd{word-spacing:5.789867pt;}
.wsf9{word-spacing:5.838933pt;}
.ws5c{word-spacing:5.888000pt;}
.ws28{word-spacing:5.904000pt;}
.ws88{word-spacing:5.937067pt;}
.wsae{word-spacing:6.035200pt;}
.ws13{word-spacing:6.048000pt;}
.ws17{word-spacing:6.096000pt;}
.ws119{word-spacing:6.133333pt;}
.wscc{word-spacing:6.182400pt;}
.ws1a{word-spacing:6.192000pt;}
.wsdb{word-spacing:6.280533pt;}
.ws22{word-spacing:6.288000pt;}
.wsb8{word-spacing:6.329600pt;}
.wscf{word-spacing:6.378667pt;}
.ws2d{word-spacing:6.525867pt;}
.wsaa{word-spacing:6.574933pt;}
.ws16{word-spacing:6.576000pt;}
.wsdc{word-spacing:6.673067pt;}
.ws102{word-spacing:6.771200pt;}
.wsb2{word-spacing:6.820267pt;}
.ws2f{word-spacing:6.869333pt;}
.wsb3{word-spacing:6.918400pt;}
.wsf5{word-spacing:6.967467pt;}
.ws134{word-spacing:6.997333pt;}
.ws2e{word-spacing:7.016533pt;}
.wsb7{word-spacing:7.065600pt;}
.wsdf{word-spacing:7.163733pt;}
.ws10{word-spacing:7.200000pt;}
.ws61{word-spacing:7.212800pt;}
.ws9d{word-spacing:7.261867pt;}
.wse0{word-spacing:7.360000pt;}
.ws91{word-spacing:7.458133pt;}
.ws8a{word-spacing:7.507200pt;}
.ws73{word-spacing:7.605333pt;}
.ws70{word-spacing:7.654400pt;}
.ws118{word-spacing:7.752533pt;}
.ws121{word-spacing:7.801600pt;}
.wsac{word-spacing:8.046933pt;}
.wsc{word-spacing:8.496000pt;}
.ws8e{word-spacing:8.537600pt;}
.wscd{word-spacing:8.586667pt;}
.ws15{word-spacing:8.640000pt;}
.wsfb{word-spacing:8.684800pt;}
.ws1f{word-spacing:8.688000pt;}
.ws71{word-spacing:8.733867pt;}
.wsd3{word-spacing:8.930133pt;}
.wsf4{word-spacing:9.077333pt;}
.ws105{word-spacing:9.126400pt;}
.ws74{word-spacing:9.175467pt;}
.ws14{word-spacing:9.216000pt;}
.wsd2{word-spacing:9.469867pt;}
.ws3d{word-spacing:10.254933pt;}
.ws32{word-spacing:10.304000pt;}
.wse{word-spacing:10.320000pt;}
.ws44{word-spacing:10.402133pt;}
.ws4c{word-spacing:10.451200pt;}
.ws5d{word-spacing:10.500267pt;}
.ws68{word-spacing:10.598400pt;}
.ws11e{word-spacing:10.696533pt;}
.wsb4{word-spacing:10.843733pt;}
.ws27{word-spacing:10.848000pt;}
.ws108{word-spacing:11.200000pt;}
.ws33{word-spacing:11.236267pt;}
.ws39{word-spacing:11.481600pt;}
.ws97{word-spacing:11.677867pt;}
.ws4d{word-spacing:11.923200pt;}
.ws1e{word-spacing:11.952000pt;}
.wsbe{word-spacing:12.000000pt;}
.ws24{word-spacing:12.048000pt;}
.ws3a{word-spacing:12.119467pt;}
.wsa9{word-spacing:12.364800pt;}
.ws101{word-spacing:12.610133pt;}
.wsa1{word-spacing:12.757333pt;}
.wsde{word-spacing:13.002667pt;}
.ws36{word-spacing:13.100800pt;}
.ws31{word-spacing:13.689600pt;}
.wsee{word-spacing:13.736000pt;}
.ws19{word-spacing:16.176000pt;}
.wsb9{word-spacing:17.664000pt;}
.wsa{word-spacing:23.376000pt;}
.wsf0{word-spacing:80.965333pt;}
.ws52{word-spacing:174.790933pt;}
.wsc8{word-spacing:251.060267pt;}
.wsc3{word-spacing:354.300267pt;}
.wsc6{word-spacing:359.504267pt;}
.wsc0{word-spacing:382.740267pt;}
.wsca{word-spacing:412.180267pt;}
.wsc5{word-spacing:436.660267pt;}
.wscb{word-spacing:436.900267pt;}
.wsc9{word-spacing:438.780267pt;}
.wsc2{word-spacing:453.780267pt;}
.wsc4{word-spacing:468.933867pt;}
.wsc7{word-spacing:480.584267pt;}
.wsc1{word-spacing:488.133867pt;}
._27{margin-left:-2613.968000pt;}
._12{margin-left:-536.425067pt;}
._6{margin-left:-46.874667pt;}
._15{margin-left:-20.657067pt;}
._14{margin-left:-19.577600pt;}
._9{margin-left:-14.640000pt;}
._c{margin-left:-13.058667pt;}
._e{margin-left:-11.628800pt;}
._a{margin-left:-9.168000pt;}
._f{margin-left:-7.752533pt;}
._13{margin-left:-5.980267pt;}
._b{margin-left:-5.053867pt;}
._8{margin-left:-4.128000pt;}
._7{margin-left:-2.616000pt;}
._4{margin-left:-1.416000pt;}
._11{width:0.895893pt;}
._5{width:1.800000pt;}
._2a{width:2.698667pt;}
._0{width:3.648000pt;}
._2{width:5.184000pt;}
._3{width:6.792000pt;}
._10{width:10.592533pt;}
._d{width:11.656213pt;}
._26{width:15.674133pt;}
._1{width:23.304000pt;}
._17{width:27.733333pt;}
._16{width:50.187733pt;}
._25{width:139.203733pt;}
._28{width:313.105600pt;}
._23{width:335.781867pt;}
._24{width:367.673600pt;}
._29{width:375.232000pt;}
._1f{width:476.589867pt;}
._18{width:496.189867pt;}
._22{width:497.580267pt;}
._21{width:536.060267pt;}
._19{width:551.180267pt;}
._1d{width:558.500267pt;}
._20{width:568.500267pt;}
._1a{width:576.380267pt;}
._1b{width:587.340267pt;}
._1c{width:590.540267pt;}
._1e{width:609.340267pt;}
.fs8{font-size:10.666667pt;}
.fsf{font-size:20.106667pt;}
.fs10{font-size:23.200000pt;}
.fse{font-size:27.840000pt;}
.fsc{font-size:34.666667pt;}
.fs4{font-size:37.333333pt;}
.fs11{font-size:39.995733pt;}
.fsb{font-size:40.000000pt;}
.fsd{font-size:42.666667pt;}
.fs7{font-size:48.000000pt;}
.fs9{font-size:49.066667pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs6{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fsa{font-size:149.333333pt;}
.fs5{font-size:240.000000pt;}
.y0{bottom:0.000000pt;}
.y51{bottom:16.451467pt;}
.ye9{bottom:30.236267pt;}
.y50{bottom:31.118133pt;}
.y4f{bottom:45.784800pt;}
.y25{bottom:54.433067pt;}
.y5{bottom:59.133337pt;}
.y4e{bottom:60.451467pt;}
.y217{bottom:66.673200pt;}
.y23d{bottom:66.698133pt;}
.y9b{bottom:66.929067pt;}
.y68{bottom:66.929200pt;}
.y1de{bottom:66.980667pt;}
.y1f2{bottom:67.307067pt;}
.y18b{bottom:67.544400pt;}
.y112{bottom:67.955333pt;}
.y4d{bottom:73.784800pt;}
.y18a{bottom:78.211067pt;}
.y111{bottom:78.622000pt;}
.y216{bottom:78.673200pt;}
.ye7{bottom:82.027867pt;}
.y23c{bottom:83.811067pt;}
.y4{bottom:86.333337pt;}
.y9a{bottom:86.929067pt;}
.y67{bottom:86.929200pt;}
.y1f3{bottom:89.701600pt;}
.y215{bottom:90.673200pt;}
.y189{bottom:91.737733pt;}
.y110{bottom:91.955333pt;}
.y1df{bottom:92.256800pt;}
.y4c{bottom:94.320267pt;}
.ye6{bottom:95.894533pt;}
.y214{bottom:102.673200pt;}
.y99{bottom:106.929067pt;}
.y66{bottom:106.929200pt;}
.y4b{bottom:108.986933pt;}
.ye5{bottom:109.761200pt;}
.y1f4{bottom:110.818133pt;}
.y1d4{bottom:113.293733pt;}
.y1d3{bottom:113.648400pt;}
.y213{bottom:114.673200pt;}
.y11c{bottom:116.929067pt;}
.y237{bottom:117.196933pt;}
.y192{bottom:117.435200pt;}
.y1f6{bottom:119.058000pt;}
.ye4{bottom:123.627867pt;}
.y4a{bottom:123.653600pt;}
.y21{bottom:123.790666pt;}
.y212{bottom:126.673200pt;}
.y98{bottom:126.929067pt;}
.y65{bottom:126.929200pt;}
.y1e0{bottom:127.055600pt;}
.y191{bottom:128.101867pt;}
.y1f7{bottom:133.826000pt;}
.y236{bottom:134.309867pt;}
.y16b{bottom:135.083333pt;}
.y11b{bottom:136.929067pt;}
.ye3{bottom:137.494533pt;}
.y49{bottom:138.320267pt;}
.y190{bottom:138.768533pt;}
.y1d8{bottom:144.063333pt;}
.y16a{bottom:145.750000pt;}
.y97{bottom:146.929067pt;}
.y64{bottom:146.929200pt;}
.y1f8{bottom:148.594267pt;}
.y18f{bottom:149.435200pt;}
.ye2{bottom:151.361200pt;}
.y48{bottom:152.986933pt;}
.y169{bottom:156.416667pt;}
.y11a{bottom:156.929067pt;}
.y1d9{bottom:160.958267pt;}
.y18e{bottom:162.768533pt;}
.y1f9{bottom:163.362533pt;}
.y168{bottom:164.771733pt;}
.ye1{bottom:165.227867pt;}
.y96{bottom:166.929067pt;}
.y63{bottom:166.929200pt;}
.y47{bottom:167.653600pt;}
.y16d{bottom:171.547600pt;}
.y18d{bottom:173.435200pt;}
.y18{bottom:175.052000pt;}
.y167{bottom:175.438400pt;}
.y10c{bottom:176.929200pt;}
.y1da{bottom:177.853067pt;}
.y1f5{bottom:178.130667pt;}
.y15b{bottom:178.302267pt;}
.ye0{bottom:179.094533pt;}
.y16c{bottom:182.214267pt;}
.y46{bottom:182.320267pt;}
.y18c{bottom:184.101867pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y95{bottom:186.929067pt;}
.y62{bottom:186.929200pt;}
.y1fa{bottom:192.898800pt;}
.y1db{bottom:194.747867pt;}
.ydf{bottom:194.850933pt;}
.y15a{bottom:196.596400pt;}
.y10b{bottom:196.929200pt;}
.y45{bottom:196.986933pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y233{bottom:206.236267pt;}
.y94{bottom:206.929067pt;}
.y61{bottom:206.929200pt;}
.y1fc{bottom:207.666933pt;}
.y15c{bottom:208.538000pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.yde{bottom:208.717600pt;}
.y44{bottom:210.320267pt;}
.y1d7{bottom:211.642667pt;}
.y195{bottom:218.556133pt;}
.y232{bottom:220.236267pt;}
.y1fb{bottom:221.659600pt;}
.ydd{bottom:222.584267pt;}
.y16f{bottom:226.571200pt;}
.y93{bottom:226.929067pt;}
.y60{bottom:226.929200pt;}
.y1dc{bottom:228.537467pt;}
.y194{bottom:230.556133pt;}
.y43{bottom:230.855733pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.ydc{bottom:236.450933pt;}
.y1a3{bottom:236.929067pt;}
.y16e{bottom:237.237867pt;}
.y231{bottom:238.015733pt;}
.y17a{bottom:241.159867pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y193{bottom:242.556133pt;}
.y1dd{bottom:245.432267pt;}
.y42{bottom:245.522400pt;}
.y92{bottom:246.929067pt;}
.y5f{bottom:246.929200pt;}
.y1fe{bottom:250.188000pt;}
.ydb{bottom:250.317600pt;}
.y179{bottom:251.826533pt;}
.y178{bottom:251.924800pt;}
.y230{bottom:252.015733pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y1a2{bottom:256.929067pt;}
.y165{bottom:259.372800pt;}
.y41{bottom:260.189067pt;}
.y1fd{bottom:262.188000pt;}
.y177{bottom:262.591467pt;}
.yda{bottom:264.184267pt;}
.y22f{bottom:266.015733pt;}
.y91{bottom:266.929067pt;}
.y5e{bottom:266.929200pt;}
.y188{bottom:267.175733pt;}
.y239{bottom:271.719467pt;}
.y15f{bottom:272.278133pt;}
.y1d6{bottom:274.750400pt;}
.y40{bottom:274.855733pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y187{bottom:277.842400pt;}
.yd9{bottom:278.050933pt;}
.y19c{bottom:278.577333pt;}
.y22e{bottom:283.795200pt;}
.y164{bottom:283.996800pt;}
.y171{bottom:284.523200pt;}
.y1d5{bottom:286.750400pt;}
.y90{bottom:286.929067pt;}
.y5d{bottom:286.929200pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y238{bottom:288.832267pt;}
.y19b{bottom:289.244000pt;}
.y3f{bottom:289.522400pt;}
.y200{bottom:293.616667pt;}
.yd8{bottom:293.807333pt;}
.y170{bottom:295.189867pt;}
.y22d{bottom:297.795200pt;}
.y166{bottom:299.057333pt;}
.y19a{bottom:299.910667pt;}
.y186{bottom:302.184667pt;}
.y3e{bottom:302.855733pt;}
.y8f{bottom:306.929067pt;}
.y5c{bottom:306.929200pt;}
.yd7{bottom:307.674000pt;}
.yf{bottom:309.452000pt;}
.y199{bottom:311.052400pt;}
.y22c{bottom:311.795200pt;}
.y1ff{bottom:312.086000pt;}
.y176{bottom:312.270267pt;}
.y185{bottom:312.851333pt;}
.y1d1{bottom:315.623067pt;}
.y15d{bottom:316.875067pt;}
.y17c{bottom:318.616133pt;}
.yd6{bottom:321.540667pt;}
.y175{bottom:322.936933pt;}
.y3d{bottom:323.391067pt;}
.y1b7{bottom:324.776267pt;}
.y19d{bottom:326.701200pt;}
.y8e{bottom:326.929067pt;}
.y5b{bottom:326.929200pt;}
.y17b{bottom:329.282800pt;}
.y22b{bottom:329.574800pt;}
.y160{bottom:333.452133pt;}
.y1d0{bottom:334.092400pt;}
.y201{bottom:334.156400pt;}
.yd5{bottom:335.407333pt;}
.y1b6{bottom:335.442933pt;}
.y184{bottom:336.335067pt;}
.y3c{bottom:338.057733pt;}
.y159{bottom:340.442933pt;}
.y19e{bottom:341.785600pt;}
.y22a{bottom:343.574800pt;}
.ye{bottom:343.809333pt;}
.y69{bottom:346.929067pt;}
.y10a{bottom:346.929200pt;}
.y183{bottom:347.001733pt;}
.yd4{bottom:349.274000pt;}
.y15e{bottom:349.703333pt;}
.y17e{bottom:352.064933pt;}
.y3b{bottom:352.724400pt;}
.y1d2{bottom:356.162800pt;}
.y19f{bottom:357.014533pt;}
.y229{bottom:357.574800pt;}
.y1ce{bottom:361.010533pt;}
.y158{bottom:362.053467pt;}
.y20a{bottom:362.289867pt;}
.yd{bottom:362.706666pt;}
.y17d{bottom:362.731600pt;}
.yd3{bottom:363.140667pt;}
.y5a{bottom:366.929067pt;}
.y109{bottom:366.929200pt;}
.y180{bottom:367.355600pt;}
.y3a{bottom:367.391067pt;}
.y228{bottom:371.574800pt;}
.y1a0{bottom:372.457200pt;}
.y209{bottom:372.956533pt;}
.y8d{bottom:376.929067pt;}
.yd2{bottom:377.007333pt;}
.y1cd{bottom:377.262400pt;}
.y17f{bottom:378.022267pt;}
.y39{bottom:382.057733pt;}
.y208{bottom:383.623200pt;}
.y161{bottom:384.537867pt;}
.y227{bottom:385.574800pt;}
.y1e6{bottom:386.204667pt;}
.y174{bottom:386.750667pt;}
.y59{bottom:386.929067pt;}
.y108{bottom:386.929200pt;}
.y1a1{bottom:387.626000pt;}
.y1cc{bottom:393.514400pt;}
.y38{bottom:396.724400pt;}
.y1e5{bottom:396.871333pt;}
.y8c{bottom:396.929067pt;}
.y207{bottom:396.956533pt;}
.y173{bottom:397.417333pt;}
.yd1{bottom:398.433067pt;}
.y226{bottom:399.574800pt;}
.y162{bottom:403.621067pt;}
.y58{bottom:406.929067pt;}
.y107{bottom:406.929200pt;}
.y1e4{bottom:407.538000pt;}
.y206{bottom:407.623200pt;}
.y172{bottom:408.084000pt;}
.y1cb{bottom:409.766400pt;}
.y37{bottom:411.391067pt;}
.y225{bottom:413.574800pt;}
.y198{bottom:414.365867pt;}
.y182{bottom:416.582667pt;}
.y8b{bottom:416.929067pt;}
.ye8{bottom:417.086667pt;}
.y1e3{bottom:420.871333pt;}
.y205{bottom:421.149867pt;}
.y1ca{bottom:426.018400pt;}
.y36{bottom:426.057733pt;}
.y197{bottom:426.365867pt;}
.y57{bottom:426.929067pt;}
.y106{bottom:426.929200pt;}
.y23b{bottom:427.246133pt;}
.y181{bottom:427.249333pt;}
.y157{bottom:429.452133pt;}
.y224{bottom:431.354267pt;}
.y1e2{bottom:431.538000pt;}
.y196{bottom:438.365867pt;}
.y35{bottom:440.724400pt;}
.y1c9{bottom:442.270400pt;}
.y23a{bottom:444.358933pt;}
.y1e1{bottom:445.064667pt;}
.y223{bottom:445.354267pt;}
.y56{bottom:446.929067pt;}
.y105{bottom:446.929200pt;}
.yc{bottom:446.990669pt;}
.y163{bottom:449.104800pt;}
.ycd{bottom:453.464667pt;}
.y34{bottom:454.057733pt;}
.y1c8{bottom:458.522267pt;}
.y222{bottom:459.354267pt;}
.yb{bottom:462.990669pt;}
.ycc{bottom:464.131333pt;}
.y55{bottom:466.929067pt;}
.y104{bottom:466.929200pt;}
.y221{bottom:473.354267pt;}
.y33{bottom:474.593200pt;}
.y1c7{bottom:474.774267pt;}
.ycb{bottom:474.798000pt;}
.y155{bottom:477.929067pt;}
.ya{bottom:478.990666pt;}
.yca{bottom:485.464667pt;}
.y8a{bottom:486.929067pt;}
.y54{bottom:486.929200pt;}
.yb6{bottom:488.631600pt;}
.y32{bottom:489.259867pt;}
.y1c6{bottom:491.026267pt;}
.y220{bottom:491.133867pt;}
.y9{bottom:494.990666pt;}
.y156{bottom:497.307467pt;}
.yc9{bottom:498.798000pt;}
.y31{bottom:503.926533pt;}
.y21f{bottom:505.133867pt;}
.y89{bottom:506.929067pt;}
.y53{bottom:506.929200pt;}
.y1c5{bottom:507.278133pt;}
.yc8{bottom:509.464667pt;}
.ya9{bottom:509.972533pt;}
.y30{bottom:518.593200pt;}
.y21e{bottom:519.133867pt;}
.yc7{bottom:520.131333pt;}
.yb5{bottom:523.169867pt;}
.y1c4{bottom:523.530133pt;}
.y88{bottom:526.929067pt;}
.y103{bottom:526.929200pt;}
.y21d{bottom:533.133867pt;}
.y2f{bottom:533.259867pt;}
.y14c{bottom:538.539467pt;}
.y1c3{bottom:539.782133pt;}
.yb7{bottom:544.305600pt;}
.ya8{bottom:545.521200pt;}
.y87{bottom:546.929067pt;}
.y102{bottom:546.929200pt;}
.y21c{bottom:547.133867pt;}
.y2e{bottom:547.926533pt;}
.y14b{bottom:549.206133pt;}
.y1c2{bottom:556.034133pt;}
.y14a{bottom:559.872800pt;}
.y21b{bottom:561.133867pt;}
.y2d{bottom:562.593200pt;}
.yaa{bottom:564.720267pt;}
.y86{bottom:566.929067pt;}
.y101{bottom:566.929200pt;}
.y115{bottom:568.584267pt;}
.y149{bottom:570.539467pt;}
.y1c1{bottom:572.286000pt;}
.y8{bottom:573.786667pt;}
.y21a{bottom:575.133867pt;}
.y2c{bottom:575.926533pt;}
.y132{bottom:579.564133pt;}
.y235{bottom:581.768667pt;}
.y114{bottom:583.060533pt;}
.y148{bottom:583.872800pt;}
.yb8{bottom:584.617200pt;}
.y85{bottom:586.929067pt;}
.y100{bottom:586.929200pt;}
.y1c0{bottom:588.538000pt;}
.y131{bottom:590.230800pt;}
.yc6{bottom:590.277200pt;}
.y7{bottom:592.685334pt;}
.y147{bottom:594.539467pt;}
.ybd{bottom:594.823467pt;}
.y2b{bottom:596.462000pt;}
.y219{bottom:596.692933pt;}
.y113{bottom:597.089733pt;}
.y234{bottom:598.881467pt;}
.yc5{bottom:602.277200pt;}
.y130{bottom:604.657067pt;}
.y1bf{bottom:604.790000pt;}
.y146{bottom:605.206133pt;}
.yb3{bottom:605.586267pt;}
.y84{bottom:606.929067pt;}
.yff{bottom:606.929200pt;}
.ybc{bottom:609.872267pt;}
.y116{bottom:610.920667pt;}
.y2a{bottom:611.128667pt;}
.y124{bottom:612.211867pt;}
.y6e{bottom:614.272400pt;}
.yad{bottom:616.006133pt;}
.y1be{bottom:621.042000pt;}
.yc4{bottom:623.177600pt;}
.y117{bottom:624.799467pt;}
.y133{bottom:625.084400pt;}
.y29{bottom:625.795333pt;}
.y83{bottom:626.929067pt;}
.yfe{bottom:626.929200pt;}
.y123{bottom:627.671333pt;}
.yb2{bottom:631.064000pt;}
.y6d{bottom:631.872400pt;}
.y218{bottom:636.929067pt;}
.y1bd{bottom:637.294000pt;}
.y28{bottom:640.462000pt;}
.yb4{bottom:643.714000pt;}
.y6{bottom:645.598667pt;}
.y125{bottom:646.227067pt;}
.y82{bottom:646.929067pt;}
.yfd{bottom:646.929200pt;}
.yb9{bottom:648.000533pt;}
.y119{bottom:651.262800pt;}
.y1bc{bottom:653.545867pt;}
.y27{bottom:655.128667pt;}
.ybb{bottom:661.375467pt;}
.y118{bottom:663.262800pt;}
.y134{bottom:664.045067pt;}
.yc3{bottom:665.785600pt;}
.y81{bottom:666.929067pt;}
.yfc{bottom:666.929200pt;}
.yab{bottom:668.015333pt;}
.y6c{bottom:668.370133pt;}
.y26{bottom:668.462000pt;}
.y1bb{bottom:668.900267pt;}
.y3{bottom:668.977329pt;}
.ya0{bottom:670.367333pt;}
.y11f{bottom:671.512133pt;}
.y13a{bottom:673.909200pt;}
.y1ba{bottom:680.900267pt;}
.y11e{bottom:683.512133pt;}
.y1b8{bottom:684.400267pt;}
.y10e{bottom:684.448800pt;}
.ya7{bottom:684.608667pt;}
.y9f{bottom:686.130667pt;}
.y12e{bottom:686.668267pt;}
.y80{bottom:686.929067pt;}
.yfb{bottom:686.929200pt;}
.yae{bottom:687.122533pt;}
.yc2{bottom:687.433067pt;}
.y139{bottom:688.453733pt;}
.y11d{bottom:695.512133pt;}
.y128{bottom:695.794000pt;}
.y142{bottom:697.533733pt;}
.y1b9{bottom:697.628533pt;}
.ybe{bottom:698.291067pt;}
.y10d{bottom:700.448800pt;}
.y9e{bottom:701.893733pt;}
.y7f{bottom:706.929067pt;}
.yfa{bottom:706.929200pt;}
.y6b{bottom:709.703333pt;}
.y12d{bottom:710.347333pt;}
.y1f1{bottom:711.929067pt;}
.ya6{bottom:714.629600pt;}
.ybf{bottom:716.548400pt;}
.y9d{bottom:717.656933pt;}
.y12f{bottom:718.793733pt;}
.yac{bottom:719.579467pt;}
.y10f{bottom:723.095200pt;}
.y135{bottom:725.304000pt;}
.y1b4{bottom:726.129600pt;}
.y7e{bottom:726.929067pt;}
.yf9{bottom:726.929200pt;}
.y1f0{bottom:731.929067pt;}
.y9c{bottom:733.420133pt;}
.yc0{bottom:735.500667pt;}
.yaf{bottom:739.487467pt;}
.y141{bottom:740.603333pt;}
.y1b3{bottom:742.129600pt;}
.y126{bottom:746.060267pt;}
.y7d{bottom:746.929067pt;}
.yf8{bottom:746.929200pt;}
.y23f{bottom:749.624400pt;}
.yba{bottom:751.794667pt;}
.y138{bottom:753.491067pt;}
.y151{bottom:757.218267pt;}
.y13b{bottom:758.048933pt;}
.y24{bottom:758.594933pt;}
.y6a{bottom:758.595733pt;}
.ya4{bottom:760.418267pt;}
.yb0{bottom:760.702400pt;}
.y1b5{bottom:763.242800pt;}
.y129{bottom:765.156933pt;}
.y23e{bottom:766.737333pt;}
.y7c{bottom:766.929067pt;}
.yf7{bottom:766.929200pt;}
.ya3{bottom:772.418267pt;}
.y150{bottom:772.453067pt;}
.y122{bottom:773.407600pt;}
.ya5{bottom:774.719600pt;}
.yc1{bottom:776.067600pt;}
.y140{bottom:781.113867pt;}
.y2{bottom:781.661334pt;}
.y127{bottom:781.723200pt;}
.ya2{bottom:784.418267pt;}
.y7b{bottom:786.929067pt;}
.yf6{bottom:786.929200pt;}
.y14f{bottom:787.688133pt;}
.y121{bottom:791.112267pt;}
.y13c{bottom:791.554667pt;}
.ya1{bottom:796.418267pt;}
.yb1{bottom:797.009200pt;}
.y14e{bottom:802.922933pt;}
.y7a{bottom:806.929067pt;}
.yf5{bottom:806.929200pt;}
.y13d{bottom:807.982000pt;}
.y1b1{bottom:812.452000pt;}
.y12a{bottom:815.137067pt;}
.y14d{bottom:818.157867pt;}
.y137{bottom:818.732533pt;}
.y1b0{bottom:826.452000pt;}
.y79{bottom:826.929067pt;}
.yf4{bottom:826.929200pt;}
.y136{bottom:829.399200pt;}
.y12b{bottom:831.861467pt;}
.ycf{bottom:833.666533pt;}
.y1af{bottom:840.452000pt;}
.y154{bottom:844.714267pt;}
.y13f{bottom:845.026667pt;}
.y78{bottom:846.929067pt;}
.yf3{bottom:846.929200pt;}
.y120{bottom:849.188533pt;}
.yce{bottom:849.666533pt;}
.y1cf{bottom:851.929067pt;}
.y1ae{bottom:854.452000pt;}
.y13e{bottom:855.693333pt;}
.y23{bottom:855.910800pt;}
.y153{bottom:856.714267pt;}
.y52{bottom:857.230933pt;}
.y1{bottom:859.312000pt;}
.y77{bottom:866.929067pt;}
.yf2{bottom:866.929200pt;}
.y1ad{bottom:868.452000pt;}
.y152{bottom:868.714267pt;}
.yd0{bottom:871.914000pt;}
.y12c{bottom:876.400267pt;}
.y20f{bottom:878.105467pt;}
.y1ac{bottom:882.452000pt;}
.y22{bottom:884.094533pt;}
.y76{bottom:886.929067pt;}
.yf1{bottom:886.929200pt;}
.y20e{bottom:891.815867pt;}
.y1ab{bottom:896.452000pt;}
.y1e9{bottom:897.948000pt;}
.y243{bottom:904.146933pt;}
.y20d{bottom:905.888267pt;}
.y75{bottom:906.929067pt;}
.yf0{bottom:906.929200pt;}
.y144{bottom:909.264267pt;}
.y1aa{bottom:910.452000pt;}
.y1e8{bottom:911.658267pt;}
.y242{bottom:917.480267pt;}
.y210{bottom:919.751600pt;}
.y1a9{bottom:924.452000pt;}
.y143{bottom:925.264267pt;}
.y1e7{bottom:925.730933pt;}
.y74{bottom:926.929067pt;}
.yef{bottom:926.929200pt;}
.y241{bottom:930.813600pt;}
.y211{bottom:933.664667pt;}
.y1a8{bottom:938.452000pt;}
.y1ea{bottom:939.594133pt;}
.y73{bottom:946.929067pt;}
.yee{bottom:946.929200pt;}
.y145{bottom:947.498267pt;}
.y240{bottom:947.926533pt;}
.y1a7{bottom:952.452000pt;}
.y1eb{bottom:953.507200pt;}
.y20c{bottom:959.309067pt;}
.y1a6{bottom:966.452000pt;}
.y72{bottom:966.929067pt;}
.yed{bottom:966.929200pt;}
.y20b{bottom:971.309067pt;}
.y1ed{bottom:975.372000pt;}
.y1a5{bottom:980.452000pt;}
.y71{bottom:986.929067pt;}
.yec{bottom:986.929200pt;}
.y1ec{bottom:987.372000pt;}
.y203{bottom:993.775333pt;}
.y1a4{bottom:1002.011067pt;}
.y70{bottom:1006.929067pt;}
.yeb{bottom:1006.929200pt;}
.y202{bottom:1009.775333pt;}
.y1ee{bottom:1010.068133pt;}
.y1b2{bottom:1023.095067pt;}
.y6f{bottom:1026.929067pt;}
.yea{bottom:1026.929200pt;}
.y204{bottom:1032.421600pt;}
.y1ef{bottom:1032.714400pt;}
.h1e{height:15.080000pt;}
.h16{height:26.000000pt;}
.h23{height:28.000000pt;}
.h7{height:28.560000pt;}
.h2b{height:29.360000pt;}
.h24{height:29.985600pt;}
.h27{height:29.986133pt;}
.h25{height:29.996800pt;}
.h15{height:30.000000pt;}
.h28{height:30.599467pt;}
.h26{height:30.600000pt;}
.h1f{height:30.600533pt;}
.h19{height:31.189333pt;}
.h2c{height:31.317333pt;}
.h21{height:32.000000pt;}
.h18{height:32.016000pt;}
.h1b{height:32.133333pt;}
.h1c{height:32.666667pt;}
.h22{height:33.600000pt;}
.hd{height:35.088000pt;}
.h17{height:35.232000pt;}
.h2a{height:35.669333pt;}
.h29{height:36.014933pt;}
.h1d{height:36.274560pt;}
.hf{height:36.750933pt;}
.ha{height:40.000000pt;}
.hc{height:40.421333pt;}
.h6{height:40.800000pt;}
.h1a{height:40.936000pt;}
.h10{height:41.019733pt;}
.h20{height:42.000000pt;}
.h3{height:42.840000pt;}
.h11{height:43.061333pt;}
.h13{height:44.000000pt;}
.h14{height:48.000000pt;}
.h2{height:48.960000pt;}
.h5{height:69.360000pt;}
.he{height:78.666667pt;}
.h4{height:105.826671pt;}
.h12{height:109.162667pt;}
.h9{height:175.440000pt;}
.hb{height:725.482933pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:219.251200pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:17.109067pt;}
.x97{left:20.469733pt;}
.x9{left:23.652800pt;}
.x8b{left:37.480267pt;}
.x3d{left:38.395333pt;}
.x9a{left:40.044667pt;}
.x89{left:42.052667pt;}
.x98{left:43.919333pt;}
.x7a{left:45.354400pt;}
.x2c{left:48.000000pt;}
.x8a{left:49.055333pt;}
.x99{left:50.954133pt;}
.x3f{left:53.513333pt;}
.x70{left:56.784000pt;}
.x71{left:58.295733pt;}
.x5c{left:59.424267pt;}
.x5d{left:60.936133pt;}
.x5{left:61.984267pt;}
.x8c{left:63.390267pt;}
.x2b{left:65.007867pt;}
.x8{left:66.698133pt;}
.x6{left:68.031467pt;}
.x21{left:71.911600pt;}
.x56{left:73.624400pt;}
.x5b{left:74.542400pt;}
.x8f{left:77.895867pt;}
.x44{left:78.813733pt;}
.x6c{left:81.548000pt;}
.x7{left:85.039333pt;}
.x51{left:87.099467pt;}
.x1{left:90.706667pt;}
.x22{left:91.919600pt;}
.x2{left:94.486667pt;}
.x2a{left:100.157467pt;}
.x6f{left:109.618800pt;}
.x5a{left:115.254933pt;}
.x75{left:116.311600pt;}
.x61{left:119.329733pt;}
.x6b{left:121.181067pt;}
.x31{left:123.023600pt;}
.x20{left:124.491733pt;}
.x59{left:126.231067pt;}
.x26{left:129.130000pt;}
.x50{left:130.065333pt;}
.x24{left:133.359867pt;}
.x78{left:135.713067pt;}
.x30{left:137.682000pt;}
.x54{left:138.855333pt;}
.x60{left:141.739200pt;}
.x27{left:143.675467pt;}
.x33{left:146.645733pt;}
.x76{left:148.179867pt;}
.x62{left:150.321867pt;}
.x32{left:152.126000pt;}
.x77{left:155.013467pt;}
.x52{left:156.775200pt;}
.x53{left:158.275200pt;}
.x96{left:161.876400pt;}
.x11{left:162.774000pt;}
.x95{left:163.735600pt;}
.x23{left:171.989067pt;}
.x55{left:179.738667pt;}
.x4{left:180.874667pt;}
.x2f{left:183.307067pt;}
.x35{left:188.220400pt;}
.x28{left:192.577867pt;}
.x2d{left:195.779600pt;}
.x58{left:199.633600pt;}
.x4f{left:201.856400pt;}
.x6e{left:202.787600pt;}
.x29{left:204.272267pt;}
.x6a{left:205.609733pt;}
.x1f{left:206.676533pt;}
.x25{left:207.690533pt;}
.x5e{left:213.972267pt;}
.x72{left:215.123733pt;}
.x4c{left:229.219600pt;}
.x63{left:230.556800pt;}
.x68{left:232.418933pt;}
.x1c{left:234.499733pt;}
.x57{left:239.577867pt;}
.x79{left:242.067867pt;}
.x64{left:244.702800pt;}
.x73{left:246.400133pt;}
.x5f{left:247.413467pt;}
.x6d{left:250.336267pt;}
.x36{left:251.231333pt;}
.x4d{left:252.206000pt;}
.x34{left:254.173200pt;}
.x1d{left:257.026133pt;}
.x74{left:260.058667pt;}
.x2e{left:268.346533pt;}
.x4e{left:275.388400pt;}
.x69{left:278.587733pt;}
.x1e{left:282.943600pt;}
.xd{left:286.650533pt;}
.xc{left:287.572133pt;}
.xe{left:298.609867pt;}
.x7b{left:305.862267pt;}
.x3a{left:314.720267pt;}
.x18{left:316.292267pt;}
.x3b{left:319.425867pt;}
.x3c{left:322.713200pt;}
.x39{left:325.934800pt;}
.x4b{left:327.745867pt;}
.x1b{left:333.061600pt;}
.x1a{left:335.981200pt;}
.x7d{left:337.657467pt;}
.x37{left:340.445467pt;}
.x15{left:345.641333pt;}
.x38{left:347.595333pt;}
.x16{left:350.441333pt;}
.x65{left:354.264933pt;}
.x17{left:355.241200pt;}
.x66{left:356.162267pt;}
.x42{left:358.372000pt;}
.x41{left:359.309467pt;}
.x81{left:362.978267pt;}
.x7e{left:365.654000pt;}
.x43{left:370.420933pt;}
.x94{left:371.453200pt;}
.x49{left:372.414000pt;}
.x7f{left:374.773200pt;}
.x93{left:376.056133pt;}
.x48{left:377.215067pt;}
.x19{left:379.330667pt;}
.x46{left:380.230533pt;}
.x47{left:382.240800pt;}
.x7c{left:391.284000pt;}
.x67{left:398.699867pt;}
.x3e{left:400.005200pt;}
.x8d{left:401.013067pt;}
.x3{left:404.408000pt;}
.x40{left:405.656933pt;}
.x90{left:421.247333pt;}
.x14{left:452.860133pt;}
.x12{left:453.959333pt;}
.x13{left:464.909067pt;}
.xf{left:525.608667pt;}
.x83{left:526.744000pt;}
.x10{left:536.720133pt;}
.x87{left:559.185200pt;}
.x88{left:567.906667pt;}
.x8e{left:587.745467pt;}
.x91{left:588.999333pt;}
.x82{left:605.734000pt;}
.x84{left:642.741200pt;}
.x85{left:647.716000pt;}
.xb{left:671.681867pt;}
.x86{left:691.514667pt;}
.x92{left:720.617067pt;}
.x45{left:721.642933pt;}
.x80{left:727.546667pt;}
.x4a{left:749.199733pt;}
}




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